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

#navigation {
	font-size:14px;
	width:190px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-left: 10px;
	margin-bottom: 15px;
	margin-right: 5px;
}
#navigation ul {margin:0px; padding:0px;}
#navigation li {
	list-style: none;
	background-image: url(../images/list.png);
	background-repeat: no-repeat;
	background-position: 5px 14px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	z-index: 1;
} 

ul.top-level {
	background-color: #333;
}
ul.top-level li {
	border-bottom-style: dotted;
	border-bottom-color: #C96;
	border-bottom-width: 1px;
}

#navigation a {
	cursor: pointer;
	display:block;
	height:25px;
	line-height: 25px;
	text-indent: 10px;
	text-decoration:none;
	width:100%;
	color: #FFF;
}
#navigation a:hover{
	text-decoration:none;
	color: #333;
}

#navigation li:hover {
	position: relative;
	background-color: #F93;
	color: #333;
}
ul.sub-level {
	display: none;
}
li:hover .sub-level {
	display: block;
	position: absolute;
	left: 188px;
	top: -5px;
}
ul.sub-level li {
	border: none;
	float:left;
	width:175px;
	background-color: #600;
}
.c96 {
	color: #C96;
}
