/* Sticky footer CSS */
html, body 
{
    margin: 0;
    height: 100%;
    font-family: Trebuchet MS,Tahoma,Arial;
    font-size: 0.9em;
}

#wrap 
{
    min-height: 99.9%;
}

#main  
{
    overflow:auto;
    padding-bottom: 20px; /* must be same height as the footer */
}  

#footer 
{
    position: relative;
    margin-top: -20px; /* negative value of footer height */
    height: 20px;
    clear:both;
}

/*Opera Fix*/
body:before {
    content:"";
    height:100%;
    float:left;
    width:0;
    margin-top:-32767px;
}
/* End sticky footer CSS */