/* Horizontal Menu w/ 2 Tier dropdown */

#nav {
width: 566px;
height: 54px;
background: #526067;
}

#nav ul {
list-style: none;
margin: 0;
padding: 0;
float: left;
}

#nav a {
display: block;
position:relative;
margin: 0;
padding: 20px 10px;
_padding: 24px 10px;
text-align: center;
font-size: 12px;
color: #fff;
text-decoration: none;
}

#nav a:hover {
color: #fff;
}

#nav li {
float: left;
position: relative;
border-right: 1px solid #697a82;
background: #526067;
}

#nav li:hover {
background-color: #697a82;
}


#nav ul ul li {
background: #ebebeb;
margin: 0 !important;
width: 150px;
border-top: 1px solid #cad0d3;
border-right: 0 !important;
}

#nav ul ul li:hover {
background: #dbdddf;
}

#nav ul ul li.menu-arrow {
background: url("./themes/site_themes/gilbertaz/assets/arrow.gif") no-repeat #ebebeb;
background-position: 132px 5px;
}

#nav ul ul li.menu-arrow:hover {
background: url("./themes/site_themes/gilbertaz/assets/arrow.gif") no-repeat #dbdddf;
background-position: 132px 5px;
}

#nav ul ul li a {
padding: 5px;
text-align: left;
color: #445056 !important;
}

#nav ul ul {
position: absolute;
z-index: 500;
margin: 0;
padding: 0;
width: 150px;
}

#nav ul ul ul {
padding: 0 0 0 0;
margin-top: -1px;
position: absolute;
top: 0;
left: 100%;
border-left: 1px solid #cad0d3;
}

div#nav ul ul,
div#nav ul li:hover ul ul,
div#nav ul ul li:hover ul ul
{display: none;}

div#nav ul li:hover ul,
div#nav ul ul li:hover ul,
div#nav ul ul ul li:hover ul
{display: block;}


