/* @group Menu System */

/* Toolbar Styles */

#navcontainer {
	font-size: 12px;
	padding-right: 0;
	padding-left: 0;
	position: relative;
	width: 900px;
	height: 40px; 
	letter-spacing: 1px; 
	white-space: nowrap; 
	margin: 5px 0 25px; 
}

#navcontainer #current {
	font-weight: bold;
	color: white;

}

#navcontainer #current:hover {
	color: #fdcc00;
}

#navcontainer .currentAncestor {
	color: #b3b3b3;
}

/* Parent - Level 0 */

#navcontainer ul{
	list-style: none;
	height: 16px;
	border-width: 0;
	padding: 0; 
	margin: 0; 
}

#navcontainer li {
	border-bottom: 1px solid #999999;
	display: inline;
	float: left; 
	padding-right: 5px; 
	padding-left: 5px; 
}

#navcontainer a{
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #999;
	margin-right: 15px;
}

#navcontainer a:hover{
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #fdcc00;
}

#navcontainer a:active {

}

/* Child - Level 1 */

#navcontainer ul ul {
	border-bottom-style: none;
	border-width: 1px;
	padding: 0;
	position: absolute;
	left: 15px;
	width: 840px;
}

#navcontainer ul ul li {
}

#navcontainer ul ul a {
	color: #999;
	font-weight: normal;
	font-style: normal;
}

#navcontainer ul ul a:hover {
	padding-top: 0;
	font-weight: normal;
	font-style: normal;
}

#navcontainer ul ul #current {
	color: #999;
	font-weight: normal;
	font-style: normal;

}

#navcontainer ul ul #current:hover {
	color: #b3b3b3;
	font-weight: normal;
	font-style: normal;
}

/* Child - Level 2 */

#navcontainer ul ul ul {
	display: none;
}

/* @end */
