.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font: bold 11px ARIAL;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0px;
margin-top:-1px;
margin-left:-1px;
list-style-type: none;
background: white;
border: 0px solid #48627c;
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: 187px; /*width of menu (not including side paddings)*/
color: WHITE;
background:#80B107;
border-bottom: 1px solid #96D108;
text-decoration: none;
padding:8px;
}

* 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: url(../images/button_hover_X.png) repeat-x;*/
background:#1D93AB;
}

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


