
#nav {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	z-index: 500;
}
#nav li.top {
	display: block;
	float: left;
	width:auto;
}
#nav li a.top_link {
	display: block;	
	float: left;
	text-decoration: none;
	cursor: pointer; cursor: hand;
}

/* Default list styling */

#nav li:hover {
	position: relative;
	z-index: 200;
}

#nav li:hover ul.sub {
	left: 0px;
	top: 12px;
	background: #4A2802;
	padding: 3px;
	border: 1px solid #823a00;
	white-space: nowrap;
	width: 75px;
	height: auto;
	z-index: 300;
	cursor: pointer; cursor: hand;
	color: #D69E56;
}
#nav li:hover ul.sub li {
	display: block;
	height: 20px;
	width: 75px;
	position: relative;
	float: left;
	font-weight: normal;
	cursor: pointer; cursor: hand;
}
#nav li:hover ul.sub li {
	display: block;
	font-size: 11px;
	height: 18px;
	width: 73px;
	line-height: 18px;
	text-indent: 5px;
	color: #D69E56;
	text-decoration: none;
	border: 1px solid #4A2802;
	cursor: pointer; cursor: hand;
}
#nav li:hover ul.sub li:hover {
	background: #351D03;
	color: #FFE38E;
	border-color: #823a00;
	cursor: pointer; cursor: hand;
}
#nav ul.sub {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}


