/* Horizontal navigation w/ 2 Tier dropdown */

#navigation {
height: 44px;
background: url(/assets/nav-bg.gif) repeat-x;
}

#navigation ul {
list-style: none;
margin: 0;
padding: 0;
}

#navigation a {
display: block;
position: relative;
margin: 0;
padding: 15px 8px;
text-align: center;
color: #fff;
text-decoration: none;
}

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

#navigation li {
float: left;
border-right: 1px solid #1453a7;
}

#navigation li:hover {
background: url(/assets/nav-bg-hover.gif) repeat-x;
}

/* First Tier LIST HOVER Style */
#navigation ul ul li:hover {

background: url(assets/nav-bg.gif) repeat-x;
list-style: none;

}

#navigation ul ul {
position: absolute;
background: url(assets/nav-bg.gif) repeat-x;
z-index: 500;
}

/* First Tier LIST Style */
#navigation ul ul li {

clear: left;
background: url(assets/nav-bg.gif) repeat-x;
border-bottom: 1px solid #281504;
list-style: none;
width: 130px;

}

#navigation ul ul li:hover {

background: url(assets/nav-bg-hover.gif) repeat-x;

}

#navigation ul ul a {

text-align:left;
padding: 8px 5px;

}

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

/* Second Tier LINK */
#navigation ul ul ul a {

cursor: pointer;

}

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

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