@charset "UTF-8";
body {
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	background-color: #FFF;
}
#navbar {
	text-align: right;
	color: #333;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-right: 0px;
}
.oneColFixCtrHdr #container {
	width: 700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #FFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	background-color: #FFF;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
	text-align: justify;
	font-size: medium;
}
.oneColFixCtrHdr #footer {
	padding: 0 0px;
	background-color: #FFF;
	text-align: right;
	color: #666;
	font-size: 65%;
	font-family: Arial, Helvetica, sans-serif;
}
#navbar ul {
	margin: 0px;
	padding: 0px;
	text-align: left;
}
#navbar li {
	list-style-type: none;
	display: inline;
	padding-top: 0px;
	padding-right: 25px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: left;
}
#navbar a {
	text-decoration: none;
	color: #333;
}
.grey {
	color: #999;
}

