/**
 * 12 column grid system with 1.8% gutter
 * http://www.responsivegridsystem.com/calculator/
 */

/*  SITE WIDTH  */
.site-width {
	width:calc(100% - 60px);
	max-width:1400px;
	margin:0px auto;
	padding-left:30px;
	padding-right:30px;
	position:relative;
}

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

/*  COLUMN SETUP  */
.col {
	display: block;
	position:relative;
	float:left;
	margin: 1% 0 1% 1.8%;
	/*background:rgba(255,0,0,0.1);*/
}
.col:first-child { margin-left: 0; }

/*  COLUMN PULL LEFT/RIGHT  */
.col.pull-right {
	float:right;
}
.col.pull-left {
	float:left;
}

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

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

.span_11_of_12 {
  	width: 91.51%;
}
.span_10_of_12 {
  	width: 83.03%;
}

.span_9_of_12 {
  	width: 74.55%;
}

.span_8_of_12 {
  	width: 66.06%;
}

.span_7_of_12 {
  	width: 57.58%;
}

.span_6_of_12 {
  	width: 49.1%;
}

.span_5_of_12 {
  	width: 40.61%;
}

.span_4_of_12 {
  	width: 32.13%;
}

.span_3_of_12 {
  	width: 23.65%;
}

.span_2_of_12 {
  	width: 15.16%;
}

.span_1_of_12 {
  	width: 6.683%;
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 800px) {
	.col {  margin: 1% 0 1% 0%; }
    
    .span_1_of_12:not(.responsive), 
    .span_2_of_12:not(.responsive), 
    .span_3_of_12:not(.responsive), 
    .span_4_of_12:not(.responsive), 
    .span_5_of_12:not(.responsive), 
    .span_6_of_12:not(.responsive), 
    .span_7_of_12:not(.responsive), 
    .span_8_of_12:not(.responsive), 
    .span_9_of_12:not(.responsive), 
    .span_10_of_12:not(.responsive), 
    .span_11_of_12:not(.responsive), 
    .span_12_of_12:not(.responsive) {
	width: 100%; 
	}
}