@charset "utf-8";
/* CSS Document */
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
	font: normal 12px Verdana;
	margin: 6px 0 0 0;
	/*padding: 0;	
	top: 0;
	left: 0;*/
	position: absolute;
	list-style-type: none;
	border-bottom-width: 0;
	visibility: hidden;
	display: none; /*collapse all sub menus to begin with*/
	background-color: #74CD93;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #328B51;
	border-right-color: #328B51;
	border-bottom-color: #328B51;
	border-left-color: #328B51;
}


.flexdropdownmenu li{
	position: relative;
}

.flexdropdownmenu li a{
	display: block;
	width: 170px; /*width of menu (not including side paddings)*/
	color: #303030;
	background: #74CD93;
	border-bottom: 1px solid #328B51;
	text-decoration: none;
	padding: 4px 5px 4px 5px;
}

* html .flexdropdownmenu li{ /*IE6 CSS hack*/
display: inline-block;
width: 180px; /*width of menu (including side paddings of LI A*/
}

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
background: #328B51; /* #74CD93; This is submenu bg color while hovering*/
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}



