#lodgingsNav {
	position: absolute;
	right: 25px;
	top: 46px;
	margin: 0;
	padding: 0;
	z-index: 100;
}
#lodgingsNav *, #otherNav *{
	margin: 0;
	padding: 0;
}
/* position:relative keeps the secondary menu aligned properly, float:left keeps the items from shifting  */
#lodgingsNav li, #otherNav li {
	margin: 0 0 0 20px;
	list-style-type: none;
	position: relative;
	float: right;
}
#lodgingsNav a, #otherNav a {
	display: block;
	padding: 0 0 20px 10px;
	color: #c18a33;
	font: 11px "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1pt;
}
#lodgingsNav a:hover, #lodgingsNav a:active, #otherNav a:hover, #otherNav a:active {
	color: #5d671f;
	text-decoration: none;
}

/* 2nd-level navigation */
#lodgingsNav li ul {
	position: absolute; 
	left: 0px;
	top: 26px;
	display: none;
	margin: 0;
	padding: 0;
	z-index: 200;
}
#lodgingsNav li ul li {
	background-color: #b68232;
	text-align: left;
	margin: -1px 0;
	padding: 0;
	float: none;
}
/* the li.over is for when the javascript changes :hover to .over */
#lodgingsNav li:hover ul, #lodgingsNav li.over ul {
	display: block;
}
#lodgingsNav li li a {
	padding: 7px 10px;
	color: #000;
	width: 7em;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: normal;
}
#lodgingsNav #adobe li a {
	width: 15em;
}
#lodgingsNav li li a:hover {
	background-color: #0a0708;
	color: #fff;
}
