/*****************************************************************************
 * Sticky Footer CSS by Ryan Fait (http://ryanfait,com)               Part 1 *
 * Provides a centered page with a footer that sticks to the bottom edge of  *
 * the window on short pages.  This file defines the main layout: the styles *
 * applied to these elements are in Part 2 (lait-styles.css).                *
 *****************************************************************************/

* {
	margin: 0;
}
html, body {
	height: 100%;
}
.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -90px;   /* bottom margin is the negative value of the footer's height */
}
.footer, .push {
	height: 90px;           /* .push must be the same height as .footer */
	clear: both;             /* Added by Michael Mason.  Fairly essential, so don't remove */
}