/*  GRID OF TWO   ============================================================================= */


.span_2_of_2 {
	width: 100%;
}

.span_1_of_2 {
	width: 49.2%;
}

.span-l_1_of_2 {
	width: 49.0%;
	float: left;
}

.span-r_1_of_2 {
	width: 49.0%;
	float: right;
}

.span-f_1_of_2 {
	width: 46.0%;
}

.span-psl_1_of_2 {
	width: 38%;
}

.span-psr_1_of_2 {
	width: 60%;
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 700px) {
	.span_2_of_2 {
		width: 100%; 
	}

	.span_1_of_2 {
		width: 100%; 
	}

	.span-l_1_of_2 {
		width: 100%;
		text-align: center;
	}

	.span-r_1_of_2 {
		width: 100%;
		text-align: center;
	}

	.span-f_1_of_2 {
		width: 100%; 
	}

	.span-psl_1_of_2 {
		width: 100%;
	}

	.span-psr_1_of_2 {
		width: 100%;
	}
}