ClearFix CSS. Forces height on a container of "floater elements".
/* source: http://css-tricks.com/snippets/css/clear-fix/ */
.float-group:after {
visibility: hidden;
display: block;
content: "";
clear: both;
height: 0;
}
* html .float-group { zoom: 1; } /* IE6 */
*:first-child+html .float-group { zoom: 1; } /* IE7 */