#cssnav, #cssnav ul {
	padding: 0px;
	margin: 0px 0px 0px 4px;
	list-style: none;
}

#cssnav li {
	float: left;
	position: relative;
}

.navitems {
}

.navitems a {
	display: block;
	padding: 3px 5.5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999999;
	text-decoration: none;
}

.navitems .navdot {
	display: block;
	padding: 3px 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999999;
}



.navitems a:hover {
	color: #FFFFFF;
	text-decoration: none;
}

.subitemsHolder
{
	position: relative;
	top: 0px;
	left: 0px;
}

.subitems {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 13.5em;

	background-color: #000000;
	display: none;
}

.subitems li {
	width: 100%;
	border: solid 1px #000000;
}

.subitems li a {
	display: block;
	padding: 3px 8px;
	text-decoration: none;
/*	border-bottom: solid 1px #FFFFFF;*/
	border: solid 1px #999999;
	color: #999999;
}

.subitems li a:hover {
	text-decoration: none;
	border: solid 1px #FFFFFF;
	color: #FFFFFF;
}

#cssnav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#cssnav li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}