#menu1 {
z-index:500;
font-size:12px;
font-weight: normal; 
font-family: Arial, Helvetica, sans-serif; 
}

/* remove all the bullets, borders and padding from the default list styling */
#menu1 ul {
list-style-type:none;
padding:0;
margin:0;
background:transparant;
background-image: url(../afb/trans.gif);
background-repeat: no-repeat;
}

/* hack for IE5.5 */
* html #menu1 ul {margin-left:-16px; margin-left:0;}

/* position relative so that you can position the sub levels */
#menu1 li {
position:relative;
float:left;
width:148px;
height:23px;
}

/* get rid of the table */
#menu1 table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:50; font-size:12px;}

/* style the links */
#menu1 a, #menu1 a:visited {
display:block; 
text-decoration:none;
width:147px;
height:23px;
line-height:23px;
color:#FFFFFF;
text-indent:5px;
border-top-width: 0;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 1px;
border-style: solid;
border-color: #F49622;
background:#CC2126;
padding-top: 0px;
margin-top: 0px;
}
/* hack for IE5.5 */
* html #menu1 a, * html #menu1 a:visited {background:#CC2127; width:147px;}

/* style the link hover */
* html #menu1 a:hover {color:#F49622; background:#d33327;}

#menu1 :hover > a {
color:#F49622; 
background:#d33327;
}

/* style the links op 2e en verdere niveau */
#menu1 ul li ul li a, #menu1 ul li ul li a:visited {
width:147px;
border-color: #F49622;
border-width:0 1px 0px 1px;
}
/* hack for IE5.5 */
* html #menu1 ul li ul li a, * html #menu1 ul li ul li a:visited {width:147px;}



#menu1 ul ul{
width:147px;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu1 ul ul {
visibility:hidden;
position:absolute;
top:23px;
left:0px; 
}
/* make the second level visible when hover on first level list OR link */
#menu1 ul li:hover ul,
#menu1 ul a:hover ul {
visibility:visible;
z-index:501;
}

/* keep the third level hidden when you hover on first level list OR link */
#menu1 ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
#menu1 ul :hover ul :hover ul ul{
visibility:hidden;
}
/* keep the 5de level hidden when you hover on second level list OR link */
#menu1 ul :hover ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
#menu1 ul :hover ul :hover ul{ 
visibility:visible;
left:148px;
top:0px; 
}
/* make the fourth level visible when you hover over third level list OR link */
#menu1 ul :hover ul :hover ul :hover ul { 
visibility:visible;
z-index:503;
}
/* make the 5de level visible when you hover over third level list OR link */
#menu1 ul :hover ul :hover ul :hover ul :hover ul { 
visibility:visible;
z-index:504;
}