#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	/*width: 20em;*/
	font-size:12px;
	padding:10px 8px 10px 9px;
	color:#008393;
	line-height:10px;
}

#nav li { /* all list items */
	float: left;
	/*width: 20em;*/ /* width needed or else Opera goes nuts FUCK OPERA */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: lightblue;
	width: 20em;
	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 20em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav li.active a {
	color:#FFF;
	background-color:#FF3617;
	background-image:url(/image/menu_pijltje.gif);
	background-position:bottom center;
	background-repeat:no-repeat;
}
#nav li#navitem4 a {
	padding-left:11px;
	padding-right:11px;
}