#menubar {
	background-image: url(../images/menuback.gif);
	background-repeat:repeat-x;
	margin-top: 0px;
	width: 100%;
	height: 61px;
	padding-top: .5em;/* vertically centers links in horizontal menubar */
	}

#nav a {
	color: #FFFFFF;	
	background-color: #596C33;
	text-decoration: none;
	font-weight: bold;
}

#nav a:hover {
	background: #990B17;
}
#nav li#first {
	margin-left: 1em; /* moves top nav 1em right to move away from left edge */
}
#nav li li#top {
	margin-top: 10px; /* moves top nav 1em right to move away from left edge */
}
#nav li li a {
	display: block;
	font-weight: normal;	
	color: #FFFFFF;
	padding: 0.4em 10px;/* add to vertical padding to separate drop-down
	menu items vertically */
	text-align: left;/* text-align:center causes column-crunching */
	background: #0A4187;
	width: 8.5em;/* have to give this a width or IE chokes */
}

#nav li li a:hover {
	/*padding: 0.2em 5px; this was causing the links to jump around on hover*/
	background-color: #990B17;/* change the dropdown link hover color here */
	}

#nav li {/* added #nav selector to separate top-level from drop-down li elements */
	float: left;
	width: 13%;
	/*width: auto; causes inconsistency in width of dropdown li -- use percentage instead*/
	position: relative;
	text-align: center;
	cursor: default;
/*	background: #990B17 top left no-repeat;
*/	/*border-width: 1px 0;
	border-left-width: 1em;*/
	
	}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: bold;
	background-color: #596C33;
	/*padding: 0.5em 0 1em 0; makes the drop-down ul look funny*/
}

li>ul {
	top: auto;
	left: auto;
}

li li {
	display: block;
	float: none;
	clear: left;
	border: 0;
	width: 8em;
}

li:hover ul, li.over ul {
	display: block;
}