@charset "utf-8";
/* CSS Document */


/*top menu css*/
 
a{color: #6b6b67;	text-decoration: none; font-family:Arial, Helvetica, sans-serif; font-weight: bold; font-size:11px; font-variant:small-caps}
a:hover {	color:#445538;}

#nav li {/* added #nav selector to separate top-level from drop-down li elements */
	float: left;
	width: 33%;
	/*width: auto; causes inconsistency in width of dropdown li -- use percentage instead*/
	position: relative;
	text-align: left;
	cursor: default; display:block;
	list-style:none; }


#nav a {color: #6b6b67;	text-decoration: none; font-family:Arial, Helvetica, sans-serif; font-weight: bold; font-size:11px; font-variant:small-caps}

#nav a:hover {	color:#445538;}

#nav li li#top {
	margin-top: 20px; /* moves top nav 1em right to move away from left edge */
}
#nav li li a {
	display: block;
	font-weight: normal;	
	color: #6b6b67;
	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: #FFFFFF;
	width: 10.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: #445538;/* change the dropdown link hover color here */
	color: #FFFFFF;
	}
	
li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: bold;
	background-color: #FFFFFF;
		margin-left: -20px;

}

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;
}