@charset "utf-8";
/* CSS Document */
ul { /* all lists */
	padding: 4px;
	list-style: none;
	margin: 0;
	background-color:#746141;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	text-indent: 4px;
	line-height: 22px;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 132px;
	background-color:#746141;

}



li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;	
}

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;
	background-color:#706247;
}

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

#content {
	clear: left;
}




