.menu {
z-index:1000;
font-size:90%;
float:right;
}

.menu ul li a.active{
background-image: url('/gfx/navicon.gif');
background-image: url('/gfx/navicon_zwart.png');
background-repeat: no-repeat;
z-index:0;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:160px;
}
/* hack for IE5.5 */
* html .menu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.menu li {
position:relative;
float:right;
height:22px;
font-size: 11px;
}

/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:22px;
line-height:20px;
width:139px;
color:#000; 
text-indent:16px;
}

.menu ul li a:hover,
.menu ul li a.active,
.menu ul li.active a,
.menu ul li.active {
color: #efd600;
}

/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
text-align:right;
top:0;
left:-130px; 
background:none;
width:139px;
}

.menu ul ul a,
.menu ul ul a:visited{
color:#999; 
}

.menu ul ul ul{
visibility:hidden;
position:absolute;
text-align:right;
top:0;
left:-141px; 
background:none;
width:139px
}

.menu ul ul li{
border-bottom:1px solid #666;
}


.menu ul ul li:hover,
.menu ul ul li a.active{
background:#333;
}

.menu ul ul ul li:hover,
.menu ul ul ul li a.active{
background:#444;
}


.menu ul ul {
border:1px solid #666;
border-bottom:0px;
background:#191919;
}


.menu ul ul ul{
border:1px solid #666;
border-bottom:0px;
background:#333;
top:-1px;
}

/* 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;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
text-align:right;
}
/* 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;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}


