@charset "utf-8";
/**************************************/
/* formatting #menu div and level 1 ul */
/**************************************/

.menutop {margin:0;}
.menutop ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
	color:#FFFFFF;
}
.menutop a {font-weight:normal;}
/**************************************/
/* formatting the <h2> headings and the <a> anchors */
/**************************************/

.menutop h2 a, .menutop h2 {
	font-size:11px;
	font-weight: normal;
	font-style:normal;
	color:#FFFFFF;
	display: block;
	padding: 0px;
}
.menutop h2 {
	margin: 0px 20px;
		padding-bottom:3px;
}
.menutop a {
	color:#FFFFFF;
	text-decoration:none;
}

.menutop a:hover {
	color:#FFFF00;
}
.menutop .selected a {font-weight:bold;}
.menutop .selected ul a {font-weight:normal;}
/**************************************/
/* Positioning the Pop-out Drops */
/* styling the Pop-out Drops */
/**************************************/

.menutop li {
	position: relative;
}

.menutop ul ul ul {
	position: absolute;
	/*margin: -19px 0px 0px 155px;*/
	width:150px;
	left:170px;
	top:0px;
}

.menutop ul ul {
	position: absolute;
	margin:0px -20px 0px -10px;
	z-index: 500;
	text-align:left;
	background-image: url(../layout/back_drop-down.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
}
.menutop ul ul li {
	padding: 5px 5px 5px 5px;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #B9D7E1;
}
.menutop ul ul li a {width:150px;display:block;}
.menutop ul ul li:first-child {border-top-width:0px;}

/**************************************/
/* Hiding and Revealing using :hover level 2 and 3*/
/**************************************/

.menutop ul ul {
display: none;
}
.menutop ul li:hover ul
{display: block;}


.menutop ul ul,
.menutop ul li:hover ul ul,
.menutop ul ul li:hover ul ul
{display: none;}

.menutop ul li:hover ul,
.menutop ul ul li:hover ul,
.menutop ul ul ul li:hover ul
{display: block;}

