﻿     
/* =====================================================================
	RESPONSIVE GRID
===================================================================== */
/*  SECTIONS    ==== */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  GROUPING    ==== */
.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

/*  GRID COLUMN SETUP    ==== */
.col {
	display: inline-block;
    vertical-align: top;
	margin: 1% 0 1% 1.6%;
}

.col:first-child {margin-left: 0;} /* all browsers except IE6 and lower */
.fullcolmultirows .col:nth-child(even) {margin-left: 0;} /* all browsers except IE6 and lower */
.twocolmultirows .col:nth-child(odd) {margin-left: 0;} /* all browsers except IE6 and lower */
.threecolmultirows .col:nth-child(3n+1) {margin-left: 0;} /* all browsers except IE6 and lower */
.fourcolmultirows .col:nth-child(4n+1) {margin-left: 0;} /* all browsers except IE6 and lower */
/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */

@media only screen and (max-width: 480px) {
	.col { 
		margin: 1% 0 1% 0%;
	}
}

/* =====================================================================
	TWO COLUMN GRID
===================================================================== */
.span_2_of_2 {
	width: 100%;
}

.span_1_of_2 {
	width: 49.2%;
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.span_2_of_2 {
		width: 100%; 
	}
	.span_1_of_2 {
		width: 100%; 
	}
}

/* =====================================================================
	THREE COLUMN GRID
===================================================================== */
.span_3_of_3 {
	width: 100%; 
}

.span_2_of_3 {
	width: 66.13%; 
}

.span_1_of_3 {
	width: 31.20%; 
}


/* =====================================================================
	FOUR COLUMN GRID
===================================================================== */
.span_4_of_4 {
	width: 100%; 
}

.span_3_of_4 {
	width: 74.6%; 
}

.span_2_of_4 {
	width: 49.2%; 
}

.span_1_of_4 {
	width: 23.8%; 
}

/*  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_2_of_4 {
		width: 100%; 
	}
	.span_1_of_4 {
		width: 100%; 
	}
}
