/* =================================================================== */
/* Boxed Layout
====================================================================== */

	body {
		overflow-x: hidden;
	 }
	 
	#wrapper {
		background: #fff;
        box-shadow:  0 0 6px 0 rgba(0, 0, 0, 0.2);
		width: 960px;
		padding: 20px 35px 20px ;
		margin: 50px auto;
	}
	
	/* Smaller than standard 1029 (devices and browsers)
====================================================================== */
@media only screen and (max-width: 1029px) {

	body { background: #fff }
	
	#wrapper {
		margin: 0 auto;
		padding: 25px 0 30px 0;
        box-shadow: none;
		width: 100% !important;
	}
		
	#footer {
		margin: 0 auto;
		padding: 15px 0 0 0;
		width: 100% !important;
	}
	
}
	
/* Tablet Portrait (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) {

	body { background: #fff }

	#wrapper {
		margin: 0 auto;
		padding: 15px 0 30px 0;
        box-shadow: none;
		width:100%;
	}
		
	
}
