/* CSS Document */
#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	list-style: none;
}
#nav a {
	display: block;
	width: 10em;
	text-decoration: none;
}
#nav li {
	position: relative;
	width: 10em;
}
#nav li:hover ul, #nav li.sfhover ul {
	/*left: auto;
*/
	left: 100px;
	top: -80px;
	z-index: 100;
}
#nav li ul {
	position: absolute;
	width: 8em;
	left: -999em;
}
#nav li a {
	font-family: 'Trebuchet MS';
	display: block;
	text-decoration: none;
	color: #28673c;
	padding: 0px 0px 0px 13px;
	border-left: 5px solid white;
	font-size: 10.5pt;
	font-weight: bold;
	height: 28px;
	line-height: 28px;
}
/* #nav li a:hover {
	border-left: 5px solid #28673c;
}
*/
#nav li ul li a:hover {
	border-left: 5px solid white;
}
#nav li ul.subnav li a {
	font-family: 'Trebuchet MS';
	display: block;
	text-decoration: none;
	color: #28673c;
	padding: 0px 0px 0px 4px;
	border-left: 0px solid white;
	font-size: 10.5pt;
	font-weight: bold;
}
#nav li.active    a {
	border-left: 5px solid #28673c;
}
ul.subnav {
	border: 1px solid #28673c;
	background-color: white;
}
 
