/* Horizontal navigation w/ 2 Tier dropdown */

#navigation {

}

li.bluearrow a {      
background: url('/asset/arrow-blue.gif') no-repeat top left;
background-position: 210px 8px;
}

#navigation ul {
list-style: none;
margin: 0;
padding: 0;
font-size: 15px;
color: #3a75ac;
}

#navigation a {
display: block;
position: relative;
margin: 0;
color: #004893;
padding: 15px 17px;
text-align: center;
text-decoration: none;
cursor: default !important;
}

#navigation a:hover {
color: #fff;

}

#navigation li {
float: left;
position: static;
border-right: 1px solid #c9c9c9;
overflow: hidden;
}

#navigation li:hover {
background : url(/asset/menu-hover.gif) repeat-x;
}

#navigation li.last {
border-right: none;
}

#navigation ul ul {
position: absolute;
z-index: 500;
background: #fff;
font-size: 12px;
border-left: 1px solid #c9c9c9;
border-bottom: 1px solid #c9c9c9;
}

#navigation ul ul li {
clear: left;
width: 230px;
color: #767676;
border-top: 1px solid #c9c9c9;
background : url(/asset/menu-bg-sub.gif) repeat-x;
}

#navigation ul ul li:hover {
background-image: none;
background : #c6e0fe;
}

#navigation ul ul li a {
padding: 5px 15px;
position: relative;
text-align: left;
color: #767676 !important;
cursor: pointer !important;
}

#navigation ul ul li a:hover {
color: #3a75ac !important;
}

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

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

#navigation ul ul ul li a {
background: none;
}

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