/*********************************************************/
/* CLEAR FIX - used on the content div to make sure it expands to contain all of it's floated content!*/
/*http://www.positioniseverything.net/easyclearing.html*/
/*********************************************************/
.clearfix:after {  
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

/*********************************************************/
/* MINBOX - replaces min-height, requires blank div wrapper*/
/*********************************************************/
/* for Mozilla/Safari/Opera */
*>.minbox {
 padding-top: 350px;
 min-height: 1px;
}
*>.minbox div {
 margin-top: -350px;
}
/* for IE, with IE5/Mac backslash filter \*/
* html .minbox {
 height: 350px;
}
/* end filter */