/*Most Smartphones like the iPhone and some Android don't recognize the handheld.min.css. They took the mediatype="screen" */

/*@media /*ratio 1.1 to 1.9
	all	and (min-width: 2001px)	and (-webkit-min-device-pixel-ratio: 1.1)  // Webkit-based browsers 
	and (-webkit-max-device-pixel-ratio: 1.9),

	all	and (min-width: 2001px)	and (min--moz-device-pixel-ratio: 1.1)  // Older Firefox browsers (prior to Firefox 16) 
	and (max--moz-device-pixel-ratio: 1.9),
	
	all	and (min-width: 2001px)	and (-o-min-device-pixel-ratio: 11/10)	and (-o-max-device-pixel-ratio: 19/10),  //opera

	all	and (min-width: 2001px)	and (min-device-pixel-ratio: 1.1)  	and (max-device-pixel-ratio: 1.9),  //ratio for non webkit

	all	and (min-width: 2001px)	and (min-resolution: 1.1dppx)  // The standard way 
	and (max-resolution: 1.9dppx),

	all
	and (min-width: 2001px)	and (min-resolution: 110dpi)  // dppx fallback  
	and (max-resolution: 190dpi)

	{// Styles 
		.mobile{display: block;}
	}*/


/*
@import url("landscape.min.css")	all and (orientation: landscape);
@import url("portrait.min.css")	all and (orientation: portrait);
*/

@import url("large.min.css?v=30133B2") all;


/*
	@import url("mobile.min.css?v=2373B3") all and (max-device-width: 320px);


	@import url("mobile.min.css?v=2373B1") all and (min-device-width: 321px) and (max-device-width: 480px);


	@import url("mobile.min.css?v=2373B1") all and (min-device-width: 481px) and (max-device-width: 767px);


	@import url("small.min.css?v=2373B1") all and (min-device-width: 768px) and (max-device-width: 979px);


	@import url("small.min.css?v=2373B1") all and (min-device-width: 980px) and (max-device-width: 1023px);
	

	@import url("medium.min.css?v=2373B1") all and (min-device-width: 1024px) and (max-device-width: 1281px);



	@import url("mobile.min.css?v=2373B1") all and (min-device-width: 1282px) and (max-width: 679px);

	@import url("small.min.css?v=2373B1") all and (min-device-width: 1282px) and (min-width: 680px) and (max-width: 1001px);

	@import url("medium.min.css?v=2373B1") all and (min-device-width: 1282px) and (min-width: 1002px) and (max-width: 1282px);

	@import url("large.min.css?v=2373B1") all and (min-device-width: 1282px) and (min-width: 1283px);

*/