/* How To Clear Floats Without Structural Markup */
/*.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}*/
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
/* End hide from IE-mac */


/* My standard clear fix */
div.clear {
    clear: both; 
    float: none;
    height: 0px; 
    width: 0px;
    overflow: hidden;
}