.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0px;
	top: 0px;
	list-style-type: none;
	background: black;
	visibility: hidden;
	display: none; /*collapse all sub menus to begin with*/
	font-size: 10px;
	font: Helvetica;
}


.flexdropdownmenu li{
position: relative;
}

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

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

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

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