@charset "utf-8";
/* CSS Document */

/* SEARCH FOR PHONES */
/* Media Queries XS - SM */
@media only screen 
and (max-width: 767px) {
	
	.development-notice {
		display:block !important;
	}


}

/* SEARCH FOR IPAD PORTRAITS */
/* Media Queries SM - MD */
@media only screen 
and (min-width : 768px) 
and (max-width : 991px) {
	



}

/* SEARCH FOR IPAD LANDSCAPE */
/* Media Queries MD - LG */
@media only screen 
and (min-width : 992px) 
and (max-width : 1200px) { 


}

/* Media Queries Ipads Landscape */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
	.development-notice {
		display:block !important;
	}

}

/* Media Queries Ipads Portrait */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {

	.development-notice {
		display:block !important;
	}
}


/* Media Queries Iphones Landscape */
@media only screen 
and (max-device-width : 767px) 
and (orientation : landscape) {
	.development-notice {
		display:block !important;
	}
}