
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
font: normal 13px  Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: #f6f5f3;

border: 1px solid #808080;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/
	-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px; /* future proofing */
-khtml-border-radius: 10px; /* for old Konqueror browsers */

}


.flexdropdownmenu li{
position: relative;

}

.flexdropdownmenu li a{
display: block;
width: 200px; /*width of menu (not including side paddings)*/
color: #000;

text-decoration: none;
padding:5px 5px 5px 5px;
margin:3px 5px 3px 5px;



}

* 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: #e7e7e7;
color:#000;

}

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

}

