/* Sticky footer code from @http://twohourblogger.com/sticky-footer-wordpress/ */

HTML, BODY
{
 height: 100%;
}
 
#wrap
{
 min-height: 75%;
_display: table; /*ie hack*/
_height: 75%; /*ie hack*/
}
 
#inner
{
 padding-top: 0;
 padding-right: 0;
 padding-bottom: 30px; /*same height as footer*/
 padding-left: 0;
 overflow: auto;
}
#footer
{
 clear: both;
 margin-top: -30px !important;  /*negative value of footer height*/
 margin-right: auto;
 margin-bottom: 0;
 margin-left: auto;
 height: 30px;
/*padding: 5px 0;*/
}
#footer .wrap
{
 padding: 5px 0; /*originally in #footer*/
}
/*Opera Fix*/
body:before {
 content:"";
 height:100%;
 float:left;
 width:0;
 margin-top:-32767px;/
}