
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font:  "Trebuchet MS", Times, serif;
margin: 0;
padding: 0;
background: #fff;
border-bottom:2px dashed #e76436;
position: absolute;
left: 0;
top: 0;

list-style-type: 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: 160px; /*width of menu (not including side paddings)*/
color: black;

text-decoration: none;
padding: 6px 6px;
font-family:"Trebuchet MS", Times, serif;
text-align:left;

font-size:14px;
font-weight:500px;
}

* 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: #f9f9f9; color:#000; */
background: #e76436; color:#ffffff;
}

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

