/* CSS Document */

body {
	background: url(images/bg.gif) repeat-x top;
	margin: 0 auto 0 auto;

}
#container {
	margin:0 auto 0 auto;
	width:680px;
	font-family:Arial, Helvetica, sans-serif;
}
#header {
	width:100%;
	height:83px;
	text-align:center;
	color: #FF9900;

}
.kop {
	text-align:center;
	font-size: 24pt;
	color: #FF9900;

}
.kop2 {
font-size:14px;

}
h2 {
color:#F78C00;
}

#content {
color:#008000;
font-family:Arial, Helvetica, sans-serif;

}

/* ---- menu ---- */
#menu {
	background:#FF9900;
	width:100%;
	height:35px;

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

#nav a {
	display: block;
	padding-left:4px;
	width: 110px;
	height:35px;
	line-height:35px;
	color:#008000;
	background:#FF9900;
	font-family: Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
}
#nav a:hover {
	color:#FF9900;
	background:#008000;
}
/* submenu*/
#nav li ul li a {
	display: block;
	width: 110px;
	border-top:1px solid #ffcc66;
	height:25px;
	line-height:25px;
	color:#008000;
	background:#FF9900;
	font-family: Helvetica, Arial, sans-serif;
	font-size:12px;
	font-weight:normal;
	text-decoration:none;

}
/* end submenu */

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

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

#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;
}

/* ---- Einde menu ---- */