
.flexdropdownmenu, .flexdropdownmenu ul
{
	/*topmost and sub ULs, respectively*/
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	visibility: hidden;
	display: none; /*collapse all sub menus to begin with*/
}


.flexdropdownmenu li
{
	height: 22px;
	position: relative;
}

.flexdropdownmenu li a
{
	/*cursor: pointer;*/
	display: block;
	width: 100px;
	text-decoration: none;
}

* 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
{
	color: #cccccc;
}

.rightarrowclass
{
	position: absolute;
	top: 6px;
	right: 5px;
}

