
/* common styling */
.menuDD{
font-family: tahoma, arial; font-size:14px; color:#00A620;
}

/* remove the bullets, padding and margins from the lists */
.menuDD ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menuDD li{
float:right;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menuDD table{
position:absolute;
border-collapse:collapse;
z-index:80;
left: -50px;
bottom:0px;
}

/* style all the links */
.menuDD ul li a{
font-family: tahoma, arial; 
display:block;
font-size:14px;
width:100px;
padding:4px 0;
color:#00A620;
background:url("../images/achtergr_gradient_geel_O2.gif");
text-decoration:none;
margin-right:1px;
text-align:center;
border:1px solid #ffffbf;
}

/* style uitschuifmenu */
.menuDD ul li ul li a{
font-family: tahoma, arial; 
display:block;
font-size:14px;
width:150px;
padding:4px 0;
color:#00A620;
background:#ffff00;
text-decoration:none;
margin-right:1px;
text-align:right;
border:1px solid #ffffbf;
}


/* style the links hover */
.menuDD :hover{
color:#00A620;
background:#ffffbf;
}

/* hide the sub level links */
.menuDD ul ul {
visibility:hidden;
position:absolute;
width:100px;
height:0;
}
/* make the sub level visible on hover list or link */
.menuDD ul li:hover ul,
.menuDD ul a:hover ul{
visibility:visible;
}

