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

body {
	font: .9em Verdana, Arial, Helvetica, sans-serif;
	background: #085F6A;
	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: #000000;
}
#header {
	width: 780px;  /* 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 */
	text-align: left;
	padding-top: 0px;
}
#logo {
	padding-top: 5px;
	padding-left: 10px;
}
#nav {
	font-size: 0.9em;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
	background: #8C4623;
	text-align:right;
	height: 25px;
	border-bottom: 1px solid #FFF;/*
	border-top: 1px solid #FFF;*/
}
#nav ul {
	list-style: url(../none) none;
	margin: 0 0 0.5em;
	padding: 0.3em 0 0.5em;
}
#nav li {
	display: inline;
}
#nav a:link {
	padding: 0.2em 1em;
	color: #FFF;
	text-decoration: none;
	margin: 0px 2px 2px;
}
#nav a:visited {
	padding: 0.2em 1em;
	color: #D5D5CA;
	text-decoration: none;
	margin: 0px 2px 2px;
}
#nav a:hover {
	color: #642D11;
	background: #FFFFFF;
}
.share {
	font-size: .7em;
	color: #CCCCCC;
}
