@charset "utf-8";
/* CSS Document */

/*Main Navigation*/

#navcontainer
{
	margin: 0;
	padding: 0;
	height: 30px;
	border-top: 1px dashed #CCC;
	border-bottom: 1px dashed #CCC;
	background:#EBEBEB;
}

#navcontainer ul
{
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}

#navcontainer li
{
display: block;
margin: 0;
padding: 0;
float: left;
width: auto;
}

#navcontainer a
{
	color: #666666;
	display: block;
	width: auto;
	text-decoration: none;
	background: #ebebeb;
	margin: 0;
	padding: 5px 10px 6px;
	border-right: 1px solid #CCC;
	font-size: 100%;
	font-weight: bold;
}

#navcontainer a:hover, #navcontainer a:active {
	
	color: #960;
	background-color:#CCC;
	text-decoration:none;
	border-right: 1px solid #999;
	}
	
#navcontainer li a#current
{ 
	background:#666;	
	color:#CCC;
	cursor:default;
}	
/*End of Navigation*/