
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font-size:11px ;
font-family:Tahoma;
margin: 5px;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
text-align:left;
background: #d39f34;
border: 1px solid #c99019;
border-bottom-width: 0;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/

}


.flexdropdownmenu li{
position: relative;
background: linear-gradient();
}

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

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

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
background: #ba820f;

}

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

