/*
  css used to correctly clear floats accross all browsers
  put the container class on any 'container' with floats inside
  **clearfix method
  .clearfix exists for compatibility.  For semantic perposes, .container should be used.
*/

/* For modern browsers */
.container:before, .clearfix:before,
.container:after, .clearfix:after {
    content:"";
    display:table;
}

.container:after, .clearfix:after {
    clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.container, .clearfix {
    *zoom:1;
}
