/* Page and footer layout */

/* Footer code from: http://www.themaninblue.com/experiment/footerStickAlt/ */
html
{
	height: 100%;
}

body
{
	height: 100%;
	margin: 0;
	padding: 0;
}

.hidden
{
	position: absolute;
	left: -10000px;
}

#content
{
	padding-bottom: 3em;
}

* html #content
{
	height: 100%;
}

#nonFooter
{
	position: relative;
	min-height: 100%;
}

* html #nonFooter
{
	height: 100%;
}

#footer
{
	position: relative;
	height: 3em;
	margin: -3em 0 0 0;
}

#page
{
	width: 100%;
	margin: 0 auto;
	min-height: 100%;
	text-align: left;
}

* html #page
{
	height: 100%;
}

.clearer
{
	clear: both;
	display: block;
	height: 1px;
	margin-bottom: -1px;
	font-size: 1px;
	line-height: 1px;
}

.overflow_fix
{
	overflow: hidden;
}

