body {
	background-color: #f5f5f5;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif; /* font control for the entire document. */
	color: #333; /* font color */
	margin: 0;
	padding: 0; /* set margin and padding to 0 so that the top and bottom are flush with the window */
}
#container {
	width: 800px;
	margin: 0 auto;/* centers the div */	
	border: 1px solid #ccc;/* grey one-pixel border around the entire content area */	
	background-color: #fff; /* white div background that sits on top of the grey body background */
}
#header {
	height: 180px; /* sets height of the div */
	background-color: #336699; /* blue layer on top of white containainer */
	padding: 0px;
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 0px;
}
#nav {
	height: 48px;
	background-color: #6699FF;
	border-bottom: 0px solid #ccc; /* border just on the bottom of the div */
	font-weight: bold; /* everything in this div will be bold */
	background-repeat: repeat;
	padding-left: 120px;
	padding-right: 120px;
}
#content, #list {
	padding: 20px; /* 20 pixels of padding on three different divs */
	padding-left: 145px;
	padding-right: 145px;
}
#content p {
	line-height: 20px; /* a leading of 20 pixels, which gives my 11px font some breathing room */
}
#footer {
	height: 37px;
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: center top;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #333;	 /* font color */
}

#footer a, #footer a:link, #footer a:visited, #footer a:active, #footer a:hover {
	color: #333;
}

<!--
a:link {
	color: #2E4898;
	text-decoration: none;
}
a:visited {
	color: #2E4898;
	text-decoration: none;
}
a:hover {
	color: #2E4898;
	text-decoration: none;
}
a:active {
	color: #2E4898;
	text-decoration: none;
}
-->


