@charset "utf-8";
/* CSS Document */

#navigatie {
	position: relative;
	width: 835px;
	height: 36px;
	margin-left: 20px;
	margin-top: -30px;
	z-index: 100;
	background:url(images/bg-nav-a.jpg) repeat-x;	
}

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

#nav a {
	display: block;
	width: auto;
	height:36px;
	text-align:center;
	text-decoration:none;
	font-weight:bold;
	
}

#nav a:hover {

	background:url(images/bg-nav.jpg);
	color:#FFFFFF;
}

#nav li { /* all list items */
	float: left;
	width: 137px; /* width needed or else Opera goes nuts */	
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: yellow;
	width: 180px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	font-size:10px;
	line-height:2em;
	font-weight:normal;z-index:100;
}	

#nav li ul li {
	
	width:180px;
	border-bottom:1px solid white;

}
#nav li ul li a {
	height:20px;	
	FONT-WEIGHT:normal;
	
}
#nav li ul ul { /* third-and-above-level lists */
	margin-left:180px; margin-top:-20px;
}

#nav li ul ul li { /* third-and-above-level lists */
	background:green;
	color:#FFFFFF;
}

#nav li ul ul li a {
color:#FFFFFF;
}
#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:hover, #nav li.hover {
    position: static;
}

#content {
	clear: left;
	color: #ccc;
}