@charset "utf-8";
/* CSS Document */

 
/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
	text-align: center;
}
/*  COLUMN SETUP  */
.col {
	display: block;
	float: left;
	margin-top: 1%;
	margin-right: .8;
	margin-bottom: 1%;
	margin-left: .8%;
}
.col:first-child {
	margin-left: 0;
}
/*  GROUPING  */
.group:before, .group:after {
	content: "";
	display: table;
}
.group:after {
	clear: both;
}
/*  GRID OF THREE  */
.span_3_of_3 {
	width: 100%;
}
.span_2_of_3 {
	width: 64.2%;
}
.span_1_of_3 {
	width: 31%;
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
.col {
	margin: 1% 0 1% 0%;
}
.span_3_of_3, .span_2_of_3, .span_1_of_3 {
	width: 100%;
}
}
/* Create two equal columns that floats next to each other */

.column {
	float: left;
	width: 45%;
	padding: 5px;
}
/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width:600px) {
.column {
	width: 100%;
}
}
 