#navigation {
	width: 150px;
	font-size: .8em;
}

#navigation ul {
	margin: 0;
	padding: 0;
}

#navigation li {
	list-style: none;
	height: 40px;
}

ul.top-level {
	background: #6d1112;
}
 
ul.top-level li {
	border-bottom: 2px solid #fff1e2;
	border-top: 2px solid #fff1e2;

}

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

#navigation li:hover {
	background: #666;
	position: relative;
}

ul.sub-level {
	display: none;
}

li:hover .sub-level {
	background: #666;
	display: block;
	position: absolute;
	left: 150px;
	top: 5px;
}

ul.sub-level li {
	border: none;
	float: left;
	width: 200px;
}