#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	float:left;
}
 
#nav a {
    font-size:13px;
	display: block;
	padding:6px 10px 7px;
	text-decoration:underline;
	color:#315725;
}

#nav ul ul a{
    padding:8px;
}

#nav a:hover {
    color:#315725;
}

#nav li.active {
    font-weight:bold;
}

/* all list items */
#nav li { 
	float: left;
	/*width: 10em;*/ /* width needed or else Opera goes nuts */
}

/* opmaak subitems */        
#nav li li {
    float: none;
    border-bottom: 1px solid white;
    background-color:#484848;
}
 
#nav li ul { /* second-level lists */
	position: absolute;
	min-width: 100px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
 
#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}
 
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}
 
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}   

#nav li.sep{
	color:#315725;
    padding:5px 0px 0;
    font-size:14px;
}                

