/* layout controller for frontpage, defines common header & footer layout */
html {
	background-color: #fff;
	background-repeat: repeat-x;
}
body {
	text-align: center;
	background: none;
}
div
{
	text-align: left;
}
#header, #content, #footer
{
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	clear: both;
}
#header:after
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
#footer
{
	text-align: center;
	line-height: 1.5;
	margin-top: 8px;
	clear: both;
}
#maincolumn
{
	float:left;
}
#sidecolumn
{
	float: right;
}
#leftcolumn
{
	float: left;
}
#rightcolumn
{
	float: right;
}
 
