/*  GRID OF FIVE   ============================================================================= */

	
.span_5_of_5 {
	width: 100%;
}

.span_4_of_5 {
  	width: 79.68%; 
	text-align: center;
	
}

.span_4b_of_5 {
  	width: 79.68%; 
	text-align: center;
	background-image: url(images/gradient.gif);
	background-position: top right;
	background-repeat: no-repeat;
}

.span_3_of_5 {
  	width: 59.36%; 
}

.span_2_of_5 {
  	width: 39.04%;
}

.span_1_of_5 {
  	width: 18.72%;
	text-align: left;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 720px) {
	.span_5_of_5 {
		width: 100%; 
	}
	.span_4_of_5 {
		width: 100%; 
		text-align: center;
	}
	.span_4b_of_5 {
		width: 100%; 
		text-align: center;
		background-image: none !important;
	}
	.span_3_of_5 {
		width: 100%; 
	}
	.span_2_of_5 {
		width: 100%; 
	}
	.span_1_of_5 {
		width: 100%; 
		text-align: center;
	}
}