@charset "utf-8";
/* CSS Document */

.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	background: white;
	border-bottom-width: 0;
	visibility: hidden;
	display: none; /*collapse all sub menus to begin with*/
	box-shadow: 3px 3px 8px #000; /*shadow for CSS3 capable browsers.*/
	-webkit-box-shadow: 3px 3px 8px #000;
	-moz-box-shadow: 3px 3px 8px #000;
	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: #333;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #333;
}


.flexdropdownmenu li{
position: relative;
}

.flexdropdownmenu li a{
	display: block;
	width: 130px; /*width of menu (not including side paddings)*/
	color: #FFF;
	background: #000;
	text-decoration: none;
	padding: 4px 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
	text-transform: uppercase;
	font-weight: bold;
	font-family: Arial;
	font-size: 10px;
}

* html .flexdropdownmenu li{ /*IE6 CSS hack*/
display: inline-block;
width: 130px; /*width of menu (include side paddings of LI A*/
}

.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
	background-color: #1c1c1c;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

