BODY {
	BEHAVIOR: url("/_stylesheets/csshover.htc")
}

a {
	font-weight:bold;
	text-decoration:none;
 	FONT-SIZE: 11px;
	FONT-WEIGHT: bold;
    COLOR: #000000;
    TEXT-DECORATION: none;
}


/* algemene positionering */

.menu-container
{
	margin-left:-490px;
    BORDER-top: #e67e08 1px dotted;
    Z-INDEX: 2;
    LEFT: 50%;
    WIDTH: 980px;
    POSITION: absolute;
	height: 20px;
    TOP: 0px;
}

ul#menu {
	position:absolute;
	left:0px;
	top: 2px;
}


/* hier ben ik */

#CurrentLocation {
	color: #e67e08;
}


/* Het 100% CSS menu */

ul, li, a {
	margin:0;
	padding:0;
	display:block;
}  

ul {
	list-style:none;
	/* width:150px; desgewenst instellen breedte  */
	padding:0px;
	border:0px;
	background:#ffffff;
} 

li {
	position:relative;
	padding-left: 20px;
	padding-right: 20px;
	border: 0px;
	z-index:9;
	float: left;
	white-space:nowrap;
	cursor:pointer;
	border-right: 1px solid #000000;

}
li li {
	width: 140px;
	float: none;
	background-color: #333333;
}
li li li { 
	width: 140px;
	float: none;
}

li.folder {
	border: 0px; /* alleen gebruiken om te laten zien dat er een submenu onder een item  zit */
}


/* decoratieve hover */

li:hover {
	border:0px;
	border-right: 1px solid #000000;
}
  
li:hover a {
	color: #e67e08; /* om te zorgen dat a verandert bij li:hover 1e niveau*/
}

li li:hover {
	background-color: #666666;
}

li li:hover a {
	color: #e67e08; /* om te zorgen dat a verandert bij li:hover 2e niveau */
}

li li li:hover a {
	color: #e67e08; /* om te zorgen dat a verandert bij li:hover 2e niveau */
}


 /* Alle subnavigatie verbergen */
 
ul ul {
	position:absolute; /* positie 2e niveau */
	display:none;
	float: left;
	left: 0px;
	top:14px;
	border-top: solid white 3px;
}

ul ul ul {
	position:absolute; /* positie 3e niveau */
	display:none;
	left: 120px;
	top:0px;
	float: left;
	border-top: 0px;
}   


  /* :hover, met specificity */

li:hover ul ul {
   display:none;
   background:transparent; /*fixing bug background derde niveau blijft staan */
}

li:hover ul, li:hover li:hover ul {
   display:block;
   background: #000000; /*fixing bug background derde niveau blijft staan */
}
  
  
.menu LI
{
    Z-INDEX: 9;
    FLOAT: left;
    WIDTH: auto;
    POSITION: relative;
    BACKGROUND-COLOR: #ffffff;
	DISPLAY: block;
	border-left: 1px solid #000000;
}




