/* -- Please ask questions if you need help -- */

#nav {
	z-index: 500;
	position: absolute;
	top: 77px;
	right: 0px;
	/* height: 34px; -- If the nav_bg.png image has a specific height, please put it here.  The set padding for the links may add more height than the design should show. -- */
}

.menu {
	margin: 0;
	padding: 0;
	position: relative;
}

.menu li {
	list-style: none outside;
	float: left;
	position: relative;
}

.menu li a {
	color: #f3e8df;
	display: block;
	padding: 0px 3px 1px;
	margin: 0px 12px;
	text-decoration: none;
	/*border-bottom: #c67138 solid 3px;*/
	font-size: 16px;
}

.menu li.first a {
	/* -- For specific CSS on the first link in the Main Menu.  For example, nav dividers and borders. -- */
}

.menu li.last a {
	/* -- For specific CSS on the last link in the Main Menu.  For example, nav dividers and borders. -- */
	border-right: none;
}

.menu li a:hover {
	border-bottom: rgba(178, 44, 41, 0.5) solid 3px;
}

.menu ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0%;
	width: 100%;
}

.menu ul li {
	float: none;
	text-align: center; /* -- Take this line of css out if links need to be left aligned. -- */
}

.menu ul li a {
	padding: 4px 10px;
	background: #984b17; /* -- Sub menu background color.  This will also affect the sub sub background color. -- */
	border-bottom: #bd6830 solid 1px;
	border-right: none;
	font-size: 14px;
	color: #fff;
}

.menu ul li a:hover {
	background: #c64538; /* -- Sub menu hover color. -- */
	color: #fff;
}

.menu ul ul {
	top: 0%;
	left: 100%;
}

.menu ul ul li a:hover {
	background: #c64538; /* -- Sub sub menu hover color. -- */
	color: #fff;
}

/* -- The CSS below does not need to be edited in any way.  It is for multiple sub menus if they appear on the site. -- */

.menu li:hover ul ul {display: none; }
.menu li:hover ul, .menu ul li:hover ul { display: block; }

.menu li:hover ul ul ul { display: none; }
.menu ul ul li:hover ul { display: block; }