/* CSS Document */

#menu {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	font-size: 12px;
	line-height: 1.166;
}

/* remove the indents and bullets */
/* define the width of the menu items */
#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 200px;
	border-bottom: 1px solid #000;
	float: right;
	background-color: transparent;
}

/* li's relative because the ul's will be positioned */
/* absolutely within them */
#menu li, #menu ul li {
	position: relative;
}

/* sub-menu's will be positioned at the right */
/* of the parent menu */
/* left is 1px (border width) less because of the overlapping border */
#menu li ul {
	position: absolute;
	left: -999px; 
	top: 0;
	display: block;
}

/* stylize the a's */
/* display must be set to block because the a must take the */
/* whole li */
/* BACKGROUND DEFINITION HERE */
#menu ul li a, ul#menu li a{
	display: block;
	text-decoration: none;
	color: #000;
	background-color: transparent;
	padding: 5px;
	border-top: 1px solid #000;
}

#menu ul li a {
	background-color: transparent;
}

#menu ul li ul li a {
	background-color: transparent;
}

#menu ul li ul li ul li a {
	background-color: transparent;
}

/* Holly Hack */
/* Fix IE. Hide from IE Mac \*/
* html ul#menu li, * html #menu ul li { float: left; height: 1%; }
* html ul#menu li a, * html #menu ul li a { height: 1%; }
/* End */

#menu li a:hover {
	color: white;
	background-color: #000000;
	font-weight: bold;
}

/* 5 levels voorzien (hoofdmenu inbegrepen) */
/* Hogere levels worden automatisch meegetoond */
/******** VOEG REGEL TOE INDIEN NODIG *********/
#menu li:hover ul ul, 
#menu li:hover ul ul ul, 
#menu li:hover ul ul ul ul {
	left: -999px;
}

#menu li:hover ul,  
#menu li li:hover ul, 
#menu li li li:hover ul, 
#menu li li li li:hover ul { 
	left: 199px; 
}
/******** STOP MET TOEVOEGEN *********/

#menu a.selected {
	font-weight: bold;	
}

#menu a.none {
	font-weight: normal;	
}