.menu {
z-index:1000;
font-size:90%;
margin:10px 0 50px 2px;z-index:500;
}

.menu ul {
padding:0;
margin:30;
list-style-type:none;
width:181px;z-index:400;
}
/* hack for IE5.5 and IE6 */
* html .menu ul {margin-left:-16px; ma\rgin-left:0;z-index:500;}
/* position relative so that you can position the sub levels */
.menu li {
position:relative;
height:27px;z-index:500;
}

/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;z-index:500;}

/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:27px;
line-height:27px;
width:181px;
color:#fff;
font-weight:bold;
text-indent:30px;
background:url(images/anchor.gif) repeat-y;
z-index:500;
}
/* style the volgende links */
.menu ul ul a, .menu ul ul a:visited {
display:block; 
text-decoration:none;
background:url(images/anchor2.gif) repeat-y;
z-index:500;
}
/* hack for IE5.5 and IE6*/
* html .menu a, * html .menu a:visited {background:background:url(images/anchor.gif) repeat-y; width:181px;z-index:500;}
/* style the link hover alleen voor IE6 of lager */
* html .menu a:hover {color: #e37600; background:#fff;z-index:500;}

.menu :hover > a {
color: #e37600; 
background: url(images/hover.jpg) repeat-y;z-index:500;
}
/*de fly-out links */
.menu ul ul :hover > a {
	color: #e37600;
	background: url(images/hover2.gif) repeat-y;z-index:500;
	}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:0;
left:181px; 
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
visibility:visible;
border:1px solid #ebe6e2;z-index:500;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;z-index:500;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;z-index:500;
}