/* Horizontal Menu w/ 2 Tier dropdown */

#menu {
margin-bottom: 20px;
height: 32px;
background: url(asset/menu-bg.gif) repeat-x;
}

#menu .left {
background: url(asset/menu-left.gif) no-repeat top left;	
height: 32px;
}

#menu .right {
background: url(asset/menu-right.gif) no-repeat top right;	
height: 32px;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0 0 0 15px;
}

#menu a {
display: block;
position: relative;
margin: 0;
padding: 7px 10px;
text-align: center;
color: #fff;
text-decoration: none;
}

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

#menu li {
list-style: none;
float: left;
border-right: 1px solid #4592b4;
}

#menu li:hover {
background-color: #4592b4;
}

#menu ul ul {
position: absolute;
z-index: 500;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

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

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