.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-style: normal;
	font-weight: bold;
	margin: 5px;
	padding: 8px;
	position: absolute;
	left: 2px;
	top: 0;
	list-style-type: none;
	background: #ffffff;
	border: 1px solid black;
	border-bottom-width: 1px;
	visibility: hidden;
	display: none; /*collapse all sub menus to begin with*/
}

.flexdropdownmenu li{
position: relative;
}

.flexdropdownmenu li a{
	display: block;
	width: 230px; /*width of menu (not including side paddings)*/
	color: #ff0000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-style: normal;
	font-weight: bold;
	text-decoration: underline;
	background: #ffffff;
	/*border-bottom: 1px solid black;*/
}

* html .flexdropdownmenu li{ /*IE6 CSS hack*/
display: inline-block;
width: 230px; /*width of menu (include side paddings of LI A*/
}

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	color: #020056;
	text-transform: none;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}




