/*
Easy way of clearing divs
Code is from: 
http://css-tricks.com/snippets/css/clear-fix/
-------------------------*/
.group:before,
.group:after {
    content: "";
    display: table;
} 
.group:after {
    clear: both;
}
.group {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}
