@charset "UTF-8";
body {
	font-family:Georgia, "Times New Roman", Times, serif;
	background: #190900;
	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: #fff;
	background-image:url(images/bg.jpg);
	background-repeat:repeat-x;
}

h1 {
	color:#FC3;
	font-size:24px;
	font-style:normal;
}

h3 {
	color:#f5d167;
	font-style:normal;
}

hr {
border-color:#FFCC33;
border-style:none none solid;
border-width:1px;
color:#FFCC33;

}

#container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position:relative;
}

ul#navlist
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}

#navlist li
{
display: inline;
list-style-type: none;
}

#navlist a { padding: 3px 15px; }

#navlist a:link, #navlist a:visited
{
color: #fff;
background-color: #130900;
text-decoration: none;
}

#navlist a:hover
{
color: #f7e56c;
background-color: #130900;
text-decoration: none;
}

#navlist li a#current
{
	color:#b2b86c;
}


a:link {color:#FC3; text-decoration:none;}
a:visited {color: #FC3; text-decoration:none;}
a:hover {color:#9C6; text-decoration:underline;}
a:active {color: #FC3; text-decoration:none;}