/* -------------------------------------------------------------- 

   clears.css
   * List all clearing classes/id's
   
-------------------------------------------------------------- */


.wrapper:after,
.header:after,
.content:after,
.footer:after,
.container:after,
.row:after 
{ content: ".";  display: block;  height: 0;  clear: both;  visibility: hidden; overflow:hidden; }


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-block;}
* html .clearfix {height: 1%;}
.clearfix {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }
