/*  GRID OF TWO   ============================================================================= */


.span_2_of_2 {
	width: 100%;
}

.span_1_of_2 {height: 40px; background: #444444; border-right: 1px solid orange; text-align:center;
	width: 49.6%; font-size: 15px;
}

.span_1a_of_2 {height: 40px; background: #1e1e1e; border-left: 1px solid orange; text-align:center;
	width: 49.6%;font-size: 15px;
}

.span_1b_of_2 {height: 40px; background: #444444; border-left: none; text-align:center;
	width: 49.6%;font-size: 15px;
}

/*  GO FULL WIDTH AT LESS THAN 300PIXELS */

@media only screen and (max-width: 300px) {
	.span_2_of_2 {
		width: 100%; 
	}
	.span_1_of_2, .span_1a_of_2, .span_1b_of_2	{
		width: 100%; 
	}
}