
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font: normal 12px Verdana;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: white;
height: 20px;
border-bottom-width: 0;
border-top: 1px solid #3FB0F2;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/

}


.flexdropdownmenu li{
position: relative;

}

.flexdropdownmenu li a{

display: block;
width: 185px; /*width of menu (not including side paddings)*/
color: #285E8A;
background: #F9F9ED;
border-bottom: 1px solid #3FB0F2;
border-left: 1px solid #3FB0F2;
border-right: 1px solid #3FB0F2;
text-decoration: none;
height: 20px;
padding: 6px 0 0px 10px;
margin: 0;
cursor: default;
}

.flexdropdownmenu li li li a{
cursor: pointer;
white-space:nowrap;
overflow: hidden;
}

.flexdropdownmenu li li li a:hover{
background: #3FB0F2;
text-decoration: underline;
color: #ffffff;
}

#dropdownlink a{
cursor: pointer;
white-space:nowrap;
overflow: hidden;
}

#dropdownlink a:hover{
background: #3FB0F2;
text-decoration: underline;
color: #ffffff;
}

* html .flexdropdownmenu li{ /*IE6 CSS hack*/
display: inline-block;
width: 195px; /*width of menu (include side paddings of LI A*/
}

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
text-decoration: none;

}

.rightarrowclass{
position: absolute;
top: 10px;
right: 5px;
}


