/* Horizontal navigation w/ 2 Tier dropdown */

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

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

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

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

#navigation li {
float: left;
position: relative;
background: url(/assets/images/nav-divider.gif) no-repeat top right;
z-index: 999;

}

#navigation li:hover {
background: #27277d url(/assets/images/nal_nav-bg-o.gif) repeat-x;
}

#navigation ul ul {
position: absolute;
z-index: 999;
_width: 200px;
}

#navigation ul ul li{
	clear: left;
	width: 100%;
	min-width: 180px;
	zoom: 1;

	border-bottom: 1px solid #313131;
	border-top: 1px solid #656565;
	background: #444;
z-index: 999;
}

#navigation ul ul li a{
	text-indent: 5px;
	padding: 10px;
	text-align: left;
}

#navigation ul ul ul {
position: absolute;
top: 0;
left: 100%;
padding-top: 0;
margin-top: -1px;
}

#navigation ul ul ul>li:first-child{
	border-top:1px solid #313131;
}

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;}