@charset "UTF-8";
/* CSS Document */

body {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	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: #FFFF00;
}
.oneColElsCtr #container {
	width: 700px;
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtr #mainContent,
.oneColElsCtr #mainContent img {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: center; /* this overrides the text-align: center on the body element. */

}
-->
div#nav {
	height: 30px;
	width: 100%;
	border-top: solid #000 1px;
	border-bottom: solid #000 1px;
}
div#nav ul {
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: small;
	line-height: 30px;
	white-space: nowrap;
}
div#nav li {
	list-style-type: none;
	display: inline;
}
div#nav li a {
	text-decoration: underline;
	padding: 7px 10px;
	color: #FFFF00;
}
div#nav li a:link,
div#blurb p a:link {
	color: #FFFF00;
}
div#nav li a:visited,
div#blurb p a:visited {
	color: #FFFF00;
}
div#nav li a:hover,
div#blurb p a:hover {
	text-decoration: underline;
	font-weight: bold;
	color: #FFFFFF;
}
div#blurb p {
	text-align: left;
	font-weight: bold;
}


