#dropdownmenuclass {
	float: right; 
	text-align: left; 
	height: 32px;
	margin: 0;
	padding: 0px;
	z-index: 100;
}

/* remove all the bullets, borders and padding from the default list styling */
#dropdownmenuclass ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	z-index: 100;
}

#dropdownmenuclass ul ul {width:149px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#dropdownmenuclass li {
	float: left;
	position: relative;
	z-index: 100;
}

/* style the links for the top level */
#dropdownmenuclass a, #dropdownmenuclass a:visited {
	display: block;
	font-size: 12px;
	/* font-weight: bold; */
	text-decoration: none; 
	color: #fff; 
	height: 30px; 
	border: 1px solid #000; 
	padding-left: 10px; 
	line-height: 24px;
	padding: 3px 11px 0px 0px;
	background: URL(/images/interfaces/blacklight/menu-dropdown-divider.gif) no-repeat right; 	
}
/* a hack so that IE5.5 faulty box model is corrected */
* html #dropdownmenuclass a, * html #dropdownmenuclass a:visited {width:30px; w\idth:19px;}
/* style the second level background */
#dropdownmenuclass ul ul a.drop, #dropdownmenuclass ul ul a.drop:visited {background:#d4d8bd bottom right no-repeat;}
/* style the second level hover */
#dropdownmenuclass ul ul a.drop:hover{background:#000 bottom right no-repeat;}
#dropdownmenuclass ul ul :hover > a.drop {background:#000 bottom right no-repeat;}
/* style the third level background */
#dropdownmenuclass ul ul ul a, #dropdownmenuclass ul ul ul a:visited {background:#F69401;}
/* style the third level hover */
#dropdownmenuclass ul ul ul a:hover {
	background: #F69401;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#dropdownmenuclass ul ul {
	visibility: hidden; 
	position: absolute; 
	height: 0; 
	top: 28px; 
	left: 0; 
	width: 149px; 
	border-top: 1px solid #000;
}
/* another hack for IE5.5 */
* html #dropdownmenuclass ul ul {top:27px;t\op:28px;}

/* position the third level flyout menu */
#dropdownmenuclass ul ul ul{left:149px; top:-1px; width:149px;}

/* position the third level flyout menu for a left flyout */
#dropdownmenuclass ul ul ul.left {left:-149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#dropdownmenuclass table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* 2nd lvl (dropdown) style */
#dropdownmenuclass ul ul a, #dropdownmenuclass ul ul a:visited {
	background: black; 
	color: #fff; 
	height: 10px; 
	line-height: 1em; 
	padding: 6px 10px; 
	width:150px;
	border-width:0 1px 1px 1px;
	}
/* yet another hack for IE5.5 */
* html #dropdownmenuclass ul ul a, * html #dropdownmenuclass ul ul a:visited {width:172px;w\idth:150px;}

/* style the top level hover */
#dropdownmenuclass a:hover, #dropdownmenuclass ul ul a:hover{color:#F69401; background-color:#000;}
#dropdownmenuclass :hover > a, #dropdownmenuclass ul ul :hover > a {color:#F69401;background-color:#000;}

/* make the second level visible when hover on first level list OR link */
#dropdownmenuclass ul li:hover ul,
#dropdownmenuclass ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
#dropdownmenuclass ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
#dropdownmenuclass ul :hover ul :hover ul{ visibility:visible;}
