/*
	(c)2012 - visuallizard.com
	
	Mobile styles using Media Queries
*/


/* !Media Queries ============================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

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

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
		.container,
		#content .container,
		#footer .container { width: 100%; padding: 0; }
		#header .container { background: url("../../img/header-logo-bk.png") no-repeat -30px top }
		#nav { display: none; }
		#banner-block { display: none; }
		#sidebar { display: none; }
		#main { box-sizing: border-box; width: 100%; padding: 3%; }
		#footer img#footer-logo { width: 60%; padding: 5% 20%; margin: 0; }
		#footer ul.fnav_1 { clear: both; width: 90%; }
		#footer p#address { clear: both; width: 90%; padding: 5%; }
	}