body  {
	background-color: #FAF3E3;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666666;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
}
#container {
	text-align: left;
	width: 760px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFFFFF;
	border-left: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	padding: 10px;
}
#inner {
	overflow: hidden;
	float: left;
	margin-top: 10px;
	margin-bottom: 15px;
}
#left {
	float: left;
	width: 165px;
	border-right: 1px dotted #CCCCCC;
	margin-right: 5px;
	padding-right: 5px;
}
#centre {
	float: left;
	width: 408px;
}
#right {
	float: left;
	width: 165px;
	margin-left: 5px;
	padding-left: 5px;
	border-left: 1px dotted #CCCCCC;
}
#inner #left, #inner #centre, #inner #right {
	padding-bottom: 4000px;
	margin-bottom: -4000px;
}
