/*
 * angepasste styles von flexdropdown
 */


.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font: normal 13px Verdana;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: white;
border: none;
border-bottom-width: 0;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/
}


.flexdropdownmenu li {
position: relative;
}

.flexdropdownmenu li a {
display: block;
width: 130px; /*width of menu (not including side paddings)*/
color: black;
background-color: #F5F6F8;
border: none;
text-decoration: none;
padding: 2px 1px;
}

.flexdropdownmenu li a:visited,
.flexdropdownmenu li a:active {
	color: #000000 !important;
}

* 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{
color:#000000;
font-weight: bold;
text-decoration: none;
}

.rightarrowclass {
position: absolute;
top: 6px;
right: 5px;
}

