/* The CSS that's required to make the page expand 100% vertically */

html
{
	height: 100%;
}

body
{
	height: 80%;
}

#pageContainer
{
	position: relative;
	min-height: 100%;
}

* html #pageContainer
{
	height: 100%;
}

#footer
{
	position: relative;
	margin: -1.5em auto 0 auto;
}

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

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