/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}


/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0 0 -4% 0;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 0 0 4% 4%;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }
.col_no_mrgn .col { margin-bottom: 0; }

/*  GRID OF TWELVE  */
.span_12_of_12 {
	width: 100%;
}

.span_11_of_12 {
  	width: 91.33%;
}
.span_10_of_12 {
  	width: 82.66%;
}

.span_9_of_12 {
  	width: 74%;
}

.span_8_of_12 {
  	width: 65.33%;
}

.span_7_of_12 {
  	width: 56.66%;
}

.span_6_of_12 {
  	width: 48%;
}
.span_6_of_12:nth-child(2n+1) {
	clear: left;
	margin-left: 0;
}
.span_5_of_12 {
  	width: 39.33%;
}

.span_4_of_12 {
  	width: 30.66%;
}
.span_4_of_12:nth-child(3n+1) {
	clear: left;
	margin-left: 0;
}

.span_3_of_12 {
  	width: 22%;
}
.span_3_of_12:nth-child(4n+1) {
  	clear: left;
	margin-left: 0;
}

.span_2_of_12 {
  	clear: left;
	margin-left: 0;
}

.span_1_of_12 {
  	width: 4.666%;
}

@media only screen and (max-width: 1024px) {
	
	.col.tab_full {
		width: 100%;
		margin: 0 0 4% 0;
	}
	.col.tab_full:last-child {
		margin-bottom: 0 !important;
	}
	.span_3_of_12 {
		width: 48%;
	}
	.span_3_of_12:nth-child(2n+1) {
		margin-left: 0;
		clear: left;
	}
	
}

@media only screen and (max-width: 768px) {
	
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 568px) {
	.col, .span_4_of_12:nth-child(3n+1), .span_3_of_12:nth-child(3n+1), .col_no_mrgn .col {  margin: 0 0 30px 0 !important; }
    
    .span_1_of_12, .span_2_of_12, .span_3_of_12, .span_4_of_12, .span_5_of_12, .span_6_of_12, .span_7_of_12, .span_8_of_12, .span_9_of_12, .span_10_of_12, .span_11_of_12, .span_12_of_12 {
	width: 100% !important; 
	}

}