/*LIST-BASED MENU*/

/*body {behavior:url(../css/csshover.htc);
	}
*/	
/* the horizontal menu starts here */
div#listmenu {
	font-size:11px;
	width: 526px;
	height: 2.8em;
	float: right;
	background-color: #737373;
	padding: 0;
	}
*html div#listmenu {
	height: 2.2em;
}
	
div#listmenu ul {margin:0; padding: 0;/* indents ul from edge of container */
}
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none; /*sets the background of the menu items */
	}
div#listmenu li:first-child {
	/*border-left:1px solid #DE8703;*/ /*the first vertical line on the menu */
	}
div#listmenu li.eerste {
	background-color: #003399;}
div#listmenu li.tweede {
	background-color: #66cccc;}	
div#listmenu li.derde {
	background-color: #cccccc;}	
div#listmenu li:hover {
	background-color: #0099cc;
	}
div#listmenu a {
	display:block;
	padding: 0.4em 4em 0.4em; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#fff;	/* sets the type color */
	}
div#listmenu a:hover {
	color:#fff;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#listmenu ul li ul {
	border-top: 1px solid #fff;
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:15em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-0.1em; /*aligns the drop exactly under the menu */
	}
div#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #fff; /*  three sides of each drop-down item */
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
	background-color: #DDDDDD;
	}
div#listmenu ul li ul li a {
	color: #333333;}
	
div#listmenu ul li ul li:first-child {
	border-top:0px solid #DE8703; /*the top edge of the dropdown */
	}

/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */


/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left;
	}
* html div#listmenu a {display:block;} /* makes IE5 & 5.5 accept the padding on the link */
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	/*border-top:1px solid #DE8703;*/
	width:17em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* end of hack zone */
/* END OF LIST-BASED MENU */

