
/*  SECTIONS  ============================================================================= */

.section {
	clear: both;
	padding: 0px; /* to adjust the gap at the edge (only) of the container- justo*/
	margin: 0px;
	overflow: hidden;
	
}

/*  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: block;
	float:left;
	margin: 0; /* MAKES NO GAP BELOW AND TOP */
	max-width: 100% !important;
	margin-bottom: -6px; /* I can't fix the space at the bottom of the margin so I add this. also at the 3cols.css have this */
}

.col:first-child { 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: 0;
	}
}

.col2 {
	display: block;
	float:left;
	margin-top: 10px; 
	max-width: 100% !important;
	
}

.col:first-child { 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) {
	.col2 { 
		margin: 0;
	}
}

