ul#nav { /* all lists */
	padding: 0;
	margin: 22px 30px 0 130px;
	list-style: none;
	text-align:right;
}

ul#nav li { /* all list items */
	list-style: none;
	float: left;
	position: relative;
}

ul#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 45px;
	left: 0;
	width: 120px
}
ul#nav li ul li { 
	float: none;
}
ul#nav 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;
}

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

ul#nav li a, ul#nav li a:visited {
	text-decoration: none;
	display: block;
	color:#894119;
	text-align: center;
	padding:15px;
	font-size: 1.4em;
}
ul#nav li a:hover {
	color: #fff;
	text-decoration: none;
	background:#ad5627 url(../images/) no-repeat bottom center;
}
ul#nav li li a, ul#nav li li a:visited {
	text-align: left;
	width: 100%;
	padding: 10px 15px;
	font-size: 1.3em;
}
ul#nav li li a:hover {
	background-image: none !important;

}
