.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
margin-top:2px;
border-radius:8px;
-moz-box-border-radius:8px;
-webkit-border-radius:8px;
	font: normal 13px Verdana;
	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*/
	box-shadow: 3px 3px 8px #818181; /*shadow for CSS3 capable browsers.*/
	-webkit-box-shadow: 3px 3px 8px #818181;
	-moz-box-shadow: 3px 3px 8px #818181;
	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: #cccccc;
	border-right-color: #cccccc;
	border-bottom-color: #cccccc;
	border-left-color: #cccccc;
	background:url(../images/dropdownmenu-bg.png);
	/*opacity:0.9;
filter:alpha(opacity=90);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=90)";*/
}


.flexdropdownmenu li{
position: relative;

}

.flexdropdownmenu li a{
	display: block;
	color:#FFFFFF;
	text-decoration: none;
	padding: 5px 15px;
	background:url(../images/drop_down_menu_divider.png) repeat-x bottom;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding-left:10px;
	text-transform:capitalize;
	
	 /* For IE8 and earlier */
}

* 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: #fff;
color:#333333;
}

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



/*-----------class for a-------------*/