/* The CSS that's required to position the footer at the bottom of the page or screen (whichever is lowest*/
html
{
	height: 100%;
}

body
{
	height: 100%;
}

/* A CSS hack that only applies to IE -- specifies a different height for the footer */

* html #footer
{
	margin-top: -7.4em;
}

