/*  GRID OF FOUR   ============================================================================= 
 *
 * 
 * Responsive Web Layout
 * for Desktop, Pad and Phone
 * see for futher information: http://www.responsivegridsystem.com/
 * */


/* FOUR COLUMNS LAYOUT AS DEFAULT */
	
.span_4_of_4 {
	width: 100%; 
}
.span_3_of_4 {
	width: 73.8%; 
}
.span_2_of_4 {
	width: 48.8%; 
}
.span_1_of_4 {
	width: 23.8%; 
}


/*  GO TWO COLUMNS LAYOUT AT LESS THAN 960 PIXELS */

@media only screen and (max-width: 960px) {
	.span_4_of_4 {
		width: 100%; 
	}
	.span_3_of_4 {
		width: 100%; 
	}
	.span_2_of_4 {
		width: 48.8%;  
	}
	.span_1_of_4 {
		width: 48.8%; 
	}
}

/*  GO ONE COlUMN LAYOUT AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.span_4_of_4 {
		width: 100%; 
	}
	.span_3_of_4 {
		width: 100%; 
	}
	.span_2_of_4 {
		width: 100%; 
	}
	.span_1_of_4 {
		width: 100%; 
	}
}

