@charset "UTF-8";
body {
	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: #FFFFFF;
	font-family: "Gill Sans", Verdana, Helvetica, sans-serif;
}
#container {
	border: 1px solid #4d2817;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: url(images/brn_bkgd-tile2.jpg) repeat-y;
	width: 800px;
	margin: 0px auto;
}
#header {
	background: #000000 url(images/crownBanner.jpg) no-repeat left top;
	padding: 0;
	height: 280px;
	margin: 0px;
}
#footer {
	padding: 0 10px;
}
#footer img {
}
#mainContent {
	margin: 0px;
	padding: 10px;
	text-align: justify;
}
#mainContent h1, h2, h3, h4, h5 {
	margin-bottom: .25em;
	margin-top: 0px;
}
#mainContent p {
	margin-top: 0px;
	margin-bottom: 1em;
}
#mainContent li {
	margin-bottom: 0.5em;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: .8em;
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
/*
background: #FFFFFF;
	color: #000000;
	margin: 0px; 
	background: #8F5A31;
	padding: 10px;
	border-right: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;


#nav li {
	display: inline;
	margin: 0px;
	padding: 5px;
	list-style: none;
	text-align: left;
	list-style: none;
	text-align: left;
	width: 150px;
 }
*/
#nav {
	font-size: .9em;
	margin: 0px;
	padding: 5px 0px;
	text-align: center;
	}
 #nav ul {
	margin-left: 0;
	background-color: #8F5A31;
	width: 100%;
	float: left;
	padding: 0;	
}
#nav ul li {
	display: inline;
}
#nav ul li a {
	padding: 0.2em 1em;
		background-color: #cccc99;
	text-decoration: none;
	float: left;
		border-left: .5em solid #000000;
border-right: 1px solid #fff;
}
#nav li a:link {
	color: #000000;
}
#nav li a:visited {
	color: #666666;
}
#nav ul li a:hover {
	color: #fff;
	border-left: 1em solid;
	background-color: #000000;
	border-top-color: #FFFFFF;
}
a:link {
	color: #FFFFFF;
	text-decoration: underline;
}
a:visited {
	color: #999999;
	text-decoration: underline;
}
a:active {
	color: #FF0000;
}
a:hover {
	color: #FF0000;
}
