ul#hoofdmenu{ 
white-space: nowrap; /*zorgt ervoor dat je menu niet ineens over meerdere regels komt te staan*/
margin: 0;/*zorgt ervoor dat hoofdmenuvak geen margin en padding heeft, dus linksboven in de hoek begint*/
padding: 0;}

ul#hoofdmenu li{
display: inline;/*zorgt voor een horizontaal menu*/
float: left;
height:33px;
width:140px ;
background:url(../images/ontwerp/menu.png);
background-repeat:no-repeat;
background-position: center;
}

ul#hoofdmenu li a{ 	
list-style:none; 
color:#ffffff;/*wit*/ 
text-decoration:none;
padding:0px 0px 0px 50px;}

ul#hoofdmenu li a:hover{
text-decoration: none;
background:url('../images/ontwerp/button.jpg') left no-repeat;}

/*****************************************************************************************************submenu*/
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font: normal 13px Verdana;
margin-top: 10px;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: white;
border: 1px solid black;
border-bottom-width: 0;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/
box-shadow: 3px 3px 8px #818181; /*shadow for CSS3 capable browsers.*/
-webkit-box-shadow: 3px 3px 8px #818181;
-moz-box-shadow: 3px 3px 8px #818181;
}


.flexdropdownmenu li{
position: relative;
}

.flexdropdownmenu li a{
display: block;
width: 130px; /*width of menu (not including side paddings)*/
color: white;
background: #76A6C6;
border-bottom: 1px solid black;
text-decoration: none;
padding: 4px 5px;
}

* html .flexdropdownmenu li{ /*IE6 CSS hack*/
display: inline-block;
width: 130px; /*width of menu (include side paddings of LI A*/
}

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
background: #E42524;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

