
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: #61abdc;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/
border:1px solid #9ac2dc;
border-bottom-width:0px;
border-top-width:0px;
margin-left: -1px;
}


.flexdropdownmenu li{
position: relative;
}

.flexdropdownmenu li a{
display: block;
width: 119px; /*width of menu (not including side paddings)*/
color: white;
text-decoration: none;
padding: 5px 5px;
border-bottom:1px solid #9ac2dc;
}

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

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
background: white;
color:#333333;
}

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

