/**
 * 	Name: boxed.css
 *
 *	-
 *
 * 	This file contains an alternative styling to make the layout boxed. 
 * 	The boxed version also comes with a few background options that you can choose from.
 *
 */
 
/* ==========================================================================
   =Boxed Layout 
   ========================================================================== */

	/**
	 * 1. An alternative background can be chosen, just uncomment the one you want
	 * 	  The backgrounds can be seen in the /images folder 	
	 */
		 
	body { 
		background: #fff 
		
	}
	
	#wrap {
		max-width: 1140px; 
		margin: 0 auto;
		/*
		-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);  
		   -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);    
		        box-shadow: 0 0 6px rgba(0, 0, 0, 0.3); 
				*/ 
	}
	
	#header { max-width: 1140px; }
	
	@media (min-width: 1200px) {
		
		#wrap {	max-width: 1340px; }
		
		#header { max-width: 1340px; }
		
	}
	
	@media (max-width: 1140px) {
	
		#wrap {
			-webkit-box-shadow: none;  
			   -moz-box-shadow: none;     
		            box-shadow: none;  
		}
	
	}
