.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	border-bottom-width: 0;
	display: none; /*collapse all sub menus to begin with*/
	box-shadow: 3px 3px 8px #818181; /*shadow for CSS3 capable browsers.*/
	-webkit-box-shadow: 1px 1px 5px #818181;
	-moz-box-shadow: 1px 1px 5px #818181;
	font-family: Verdana;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color: #FFF;
	background-color: #000;
	visibility: hidden;
}


.flexdropdownmenu li{
position: relative;
}

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

	text-decoration: none;
	padding: 4px 5px;
	background-color: #F0FFB6;
}

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

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
	color:#FFF;
background-color:#8ac100;
}

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

