
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
	font: normal 13px ft;
	margin: 3px 0 0px 0;
	padding: 0;
	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: 150px; /*width of menu (not including side paddings)*/
	color: #fff;
	border-bottom: 1px solid black;
	text-decoration: none;
	padding: 8px;
	margin:3px 0 0 0;
	border-radius:0 10px;
	background-color: #00705a;
}

* 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-color:#2e3192;
	border-radius:0 10px;
}

.rightarrowclass{
position: absolute;
top: 15px;
right: 10px;
}
