/**
 * containers clears floats
 */ 

.clearfix:before {
    content: "."; 
    display: block;
		width: 0; 
    height: 0; 
    clear: both;
		font-size: 0; 
    visibility: hidden;
		overflow: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

