/* -- Please ask questions if you need help -- */

#nav {
	z-index: 500;
	position: relative;
	/* 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;
	float: right;
}

.menu li {
	list-style: none outside;
	float: left;
	position: relative;
}

.menu li a {
	color: #fff;
	display: block;
	padding: 17px 18px 18px;
	text-decoration: none;
	font-weight: 300;
	font-size: 19px;
	border-left: #ae0808 solid 1px;
}

.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 {
	background: #ae0808; /* -- Main menu hover color. -- */
}

.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: #3e3e3e; /* -- Sub menu background color.  This will also affect the sub sub background color. -- */
	border-bottom: #5d5d5d solid 1px;
	border-right: none;
	color: #fff;
	font-size: 15px;
}

.menu ul li a:hover {
	background: #5d5d5d; /* -- Sub menu hover color. -- */
	color: #fff;
}

.menu ul ul {
	top: 0%;
	left: 100%;
}

.menu ul ul li a:hover {
	background: #5d5d5d; /* -- 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; }