.flexdropdownmenu, .flexdropdownmenu ul { /*topmost and sub ULs, respectively*/
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	background: white;
	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;
	background: #9a0000;
	color:#FFF;
	border: 1px solid #FFF;
	text-decoration: none;
	padding:5px 0 5px 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: #c6c6c6;
	color:#000;
}
.rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}
