/* -- Please ask questions if you need help -- */

#mobileMenu {
display:none;
}

#nav {
	background: #7c4622;
	z-index: 500;
	position: relative;
	/* min-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. -- */
}

#nav .menu {
	margin: 0;
	padding: 0;
	position: relative;
    float:right;
}

#nav .menu li {
	list-style: none outside;
	float: left;
	position: relative;
}

#nav .menu li a {
	color: #ceb09d;
	display: block;
	padding: 10px 30px;
	text-decoration: none;
    font-weight:100;
    text-transform:uppercase;
        transition:all .5s;
    -webkit-transition:all .5s;
    -moz-transition:all .5s;
}

#nav .menu li.first a {
	/* -- For specific CSS on the first link in the Main Menu.  For example, nav dividers and borders. -- */
}

#nav .menu li.last a {
	/* -- For specific CSS on the last link in the Main Menu.  For example, nav dividers and borders. -- */
	border-right: none;
}

#nav .menu li a:hover {
	background: #8E522A; /* -- Main menu hover color. -- */
    transition:all .5s;
    -webkit-transition:all .5s;
    -moz-transition:all .5s;
}

#nav .menu ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0%;
	width: 100%;
}

#nav .menu ul li {
	float: none;
	text-align: center; /* -- Take this line of css out if links need to be left aligned. -- */
}

#nav .menu ul li a {
	padding: 6px 8px;
	background: #353A3D; /* -- Sub menu background color.  This will also affect the sub sub background color. -- */
	border-bottom: #333 solid 1px;
	border-right: none;
}

#nav .menu ul li a:hover {
	background: #333; /* -- Sub menu hover color. -- */
}

#nav .menu ul ul {
	top: 0%;
	left: 100%;
}

#nav .menu ul ul li a:hover {
	background: #333; /* -- Sub sub menu hover color. -- */
}

/* -- The CSS below does not need to be edited in any way.  It is for multiple sub menus if they appear on the site. -- */

#nav .menu li:hover ul ul {display: none; }
#nav .menu li:hover ul, #nav .menu ul li:hover ul { display: block; }

#nav .menu li:hover ul ul ul { display: none; }
#nav .menu ul ul li:hover ul { display: block; }

@media (min-width:769px) {
    #nav .menu li:hover ul, #nav .menu ul li:hover ul {
        display: block;
    }

    #nav .menu ul ul li:hover ul {
        display: block;
    }

    #nav button.subMenu {
        display: none;
    }
}