/*  GRID OF FOUR   ============================================================================= */

	
.span_4_of_4 {
	width: 100%; 
}

.span_3_of_4 {
	width: 75%; 
}

.span_3_of_4Header {
	height: 84px;
	width: 75%; 
	border-left: solid 2px #101010;
}

.span_2_of_4 {
	width: 49.2%; 
}

.span_1_of_4 {
	width: 24%;
}

.span_1_of_4Header {
	position: relative;
	height: 84px;
	width: 24%;
	border-right: solid 2px #101010; 
}


/*  GO FULL WIDTH 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_3_of_4Header {
	height: 250px;
		width: 100%;
		border: 0px; 
	}
	.span_2_of_4 {
		width: 100%; 
	}
	.span_1_of_4 {
		width: 100%;
	}
	.span_1_of_4Header {
	height: 84px;
		width: 100%;
		border: 0px; 
	}
}