/* 
Sticky footer by Ryan Fait
This is the basic CSS you need along with the one extra 
empty div (push) and the wrapper required to achieve the effect. 
*/

html, body {
	height: 100%;
	margin: 0;
	}
.wrapper {
	margin: 0 auto -22px; /* the bottom margin is the negative value of the footer's height */
	min-height: 100%;
	height: auto !important;
	height: 100%;
	}
#footer, #push {
	height: 22px; /* .push must be the same height as .footer */
	}
