/**************************************/
/* formatting #menutop div and level 1 ul */
/**************************************/
#menutop {
	color: #FFFFFF;
	height: 20px;
	background-image: url(../layout/menubar_back.png);
	background-repeat: repeat-y;
	background-position: left;
	background-color: #5C5C5A;
	padding-top:5px;
	width:100%;
	text-align:center;
	
}
#menutop ul {
	list-style-type: none;
	margin-top: 0px;
	padding: 0px;
	margin-left:10px;
}
#menutop ul li {
	float:left;
	margin-right:8px;
	margin-left:8px;
	text-align:left;
}
/**************************************/
/* formatting the <h2> headings and the <a> anchors */
/**************************************/
#menutop ul li h2 {
	margin:0;
	padding:0;
	font-size:12px;
}
#menutop h2 a {
	color:#FFFFFF; 
	text-decoration:none;
}
#menutop h2 a:hover {
	color:#CCFF00;
}
#menutop li.selected h2 a {color:#000000;}
/**************************************/
/* Positioning the Pop-out Drops */
/**************************************/

#menutop li {position: relative;}

#menutop ul ul {
	position: absolute;
	top:10px;
	left:-5px;	
	text-align:left;
	padding:10px 0px 3px 0px;
	width:108px;
}
#menutop ul ul li {
	background-color: #48450B;
	padding:4px 3px 5px 5px;
	width:100px;
	margin:0px;
	border-top: #5a5515 solid 1px;
	opacity:0.8;
	filter:alpha(opacity=80);
}
#menutop ul ul li:first-child{border-top-width:0px;}
#menutop ul ul li:hover {
	opacity:1;
	filter:alpha(opacity=100);
	background-color: #3e3b09;
}
#menutop ul ul li.selected {
	opacity:0.9;
	filter:alpha(opacity=90);
	background-color: #2D2B06;
}
/**************************************/
/* Hiding and Revealing using :hover level 2 and 3*/
/**************************************/

div#menutop ul ul {
display: none;
}
div#menutop ul li:hover ul
{display: block;}


div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}



