.sitemap a {
	color: #CCCCCC;
	
}

#navcontainer {	
	position: absolute;
	left: 250px;
	width: 590px;
	
	top: 120px;

	font-size: 12px;
	
/*
	border-width: 1px;
	border-color: red;
	border-style: solid;
*/
	padding: 0;
	margin: 0px 0px 0px 4px;
}

#navcontainer #current {
	font-weight: bold;
	/*color: #BBBBBB;*/
	text-decoration:underline;
}

#navcontainer #current:hover {
}

#navcontainer .currentAncestor {
	font-weight: bold;
}

/* Parent - Level 0 */

#navcontainer ul{
	list-style: none;
	padding: 0;
	margin: 0 0 0 10px;
}

#navcontainer li {
	display: inline;
	float: left;
	margin: 0 0 0 20px;
}

#navcontainer a{
/*	width: 60px; */
	height: 32px;
/*	display: block; */
	margin: 0;
	text-align: center;
	vertical-align: top;
	text-decoration: none;
	color: white;
	padding: 5px 0px 0px 0px;
	font-weight: bold;
}

#navcontainer a:hover {
	text-decoration:underline;
}

#navcontainer a:active {

}

/* Child - Level 1 */

#navcontainer ul ul {
	position: absolute;
	left: 0;
	top: 25px;
}

#navcontainer ul ul li {
}

#navcontainer ul ul a {
	background: none;
	color: black;
}

#navcontainer ul ul a:hover {
	background: none;
}

#navcontainer ul ul #current {
	background: none;
}

/* Child - Level 2 */

#navcontainer ul ul ul {
	display: none;
}

