/* 
 * This layout pushes the footer
 * to the bottom of the page
 */
html, body {
   	margin: 0;
  	padding: 0;
   	height: 100%;
}

/* Container wrapping header and body */
div#main {
	min-height: 100%;
	height: auto !important;
	height: 100%;		/* Support for IE 5.5 & 6 */
	margin: 0 auto -65px;	/* the negative of the footer's height (including any padding) */
}

/* Footer container */
div.footer, div.push {
	height: 65px;  		/* Height of the footer */
}