
.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
	font: normal 13px;
	margin: 0 0 0 0;
	padding: 0;
	position: absolute;
	text-align: left;
	left: 0;
	top: 0;
	list-style-type: none;
	background: #6a747c;
	border: 2px solid #53004c;
	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: 100px; /*width of menu (not including side paddings)*/
	color: #fff;
	border-bottom: 2px solid #53004c;
	text-decoration: none;
	padding: 6px 10px;
	line-height: 130%; 
}

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

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
	background-color: #9a2396;
	color: #ffffff;
	background-image: url('/graphics/style/bg-nav-sub-on.gif');
	background-repeat: no-repeat;
	background-position: left center;
}

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

