@charset "utf-8";
body {
	background-color: #0b3247;
	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;
	height: 100%;
}


#container {
	width: 792px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #333;
	text-align: left;
	position: relative;
}

#header  {
	margin: 0px;
	padding: 0px;
	width: 792px;
	border-style: none;
	height: 26px;
	vertical-align: top;
	
} 
#pagename {
	margin: 0px;
	padding: 0px;
	width: 792px;
	border-style: none;
	height: 19px;
	vertical-align: top;
	background: #000;
	float: left;
} 
#menu-container {
	background: #000;
	width: 792px;
	float: left;
}
#nav {
	width: 758px;
	background: #000;
	float: left;
	font: x-small Arial, Helvetica, sans-serif;
	color: #D89D27;
	margin-left: 17px;
	margin-right: 17px;
	text-align: center;
	display: inline;
}
#nav a:link {
	color: #CA6328;
	text-decoration: none;
	}
#nav a:visited {
	color: #CA6328;
	text-decoration: none;
	}
#nav a:hover {
	color: #D89D27;
	text-decoration: none;
}

#footer {
	margin: 0px;
	padding: 0px;
	border-style: none;
	background: #000;
	float: left;
	position: relative;
	bottom: 0px;
	height: 45px;
	width: 792px;
} 


