.show-on-desktops{
	position: static!important;
}
.hide-on-desktops,
.show-on-tablets,
.show-on-phones,
.show-on-phones-portrait{
	position: absolute!important;
	left: -9999px!important;
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
.hide-on-desktops{
	position: static!important;
}
.show-on-tablets,
.show-on-phones,
.show-on-phones-portrait{
	position: absolute!important;
	left: -9999px!important;
}
}/* end of Smaller than standard 960 (devices and browsers) */

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
.show-on-tablets {
	position: static!important;
}
.hide-on-tablets{
	position: absolute!important;
	left: -9999px!important;
}
}/* end of Tablet Portrait size to standard 960 (devices and browsers) */

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
.show-on-phones{
	position: static!important;
}
.hide-on-phones{
	position: absolute!important;
	left: -9999px!important;
}
}/* end of All Mobile Sizes (devices and browser) */

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}/* end of Mobile Landscape Size to Tablet Portrait (devices and browsers) */

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
.show-on-phones-portrait{
	position: static!important;
}
.hide-on-phones-portrait{
	position: absolute!important;
	left: -9999px!important;
}
}/* end of Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */