@mixin clearfix { // this is the micro clearfix version
	// For IE 6/7 (trigger hasLayout)
	zoom: 1;
	//For modern browsers
	&:before,
	&:after {
			content: "";
			display: table;
	}
	&:after {
			clear: both;
	}
}