/* CSS Document */
#nav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #851f26;
	}
/*styles for the navbar -- remove padding, margin and bullets*/
#nav ul {
	margin: 0;
	padding: 10px 10px;
	list-style: none;
	}
/* float each list element inline */
#nav ul li {
	display: inline;
	}
/* style the links in the nav list */
#nav a {
	background-color: #851F26;
	color: #FFF;
	margin: 0 0 0 33px;
	height: 1em;
	padding: 10px 0 12px 0px;
	text-decoration: none;
	font-variant: small-caps;
	}
#nav a:hover {
	color: #FF0000;
	background-color: #FFF;
	}
/* trigger "Layout" in IE6 and earlier */
* html a .nav a { height: 1px; }