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

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

/*0 to 320px */
	@import url("mobile.css")
	all and (max-device-width: 320px);

/*321 to 480px */
	@import url("mobile.css")
	all and (min-device-width: 321px) and (max-device-width: 480px);

/*481 to 767px */
	@import url("mobile.css")
	all and (min-device-width: 481px) and (max-device-width: 767px);

/*768 to 979px */
	@import url("small.css")
	all and (min-device-width: 768px) and (max-device-width: 979px);

/*980 to 1023px */
	@import url("medium.css")
	all and (min-device-width: 980px) and (max-device-width: 1223px);
	
/*1024px to 1281px */
	@import url("large.css")
	all and (min-device-width: 1224px) and (max-device-width: 1581px);

/* 1281+ */
	@import url("mobile.css")
	all and (min-device-width: 1282px) and (max-width: 679px);

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

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

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



























