/* Son of Suckerfish Dropdowns
---------------------------------------------------------
Originally developed by Patrick Griffiths and Dan Webb
http://www.htmldog.com/articles/suckerfish/dropdowns/
---------------------------------------------------------
NOTE: After a deep research, we decide to divide this
CSS into 2 parts. The first part will define the layout.
The second part will define the visual look for this menu.
---------------------------------------------------------*/

#ja-nav { /* all lists */
        margin: 0;
        padding: 0;
        height: 30px;
}

#ja-nav ul { /* all lists */
        margin: 0;
        padding: 0;
        height: 24px;
}

#ja-nav li { /* all list items */
        margin: 0;
        padding: 0;
        background: none;
        display: block;
        float: left;
        line-height: 24px;
}

#ja-nav li ul { /* second-level lists */
        position: absolute;
        z-index: 99;
        left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
        width: 14.4em;
        w\idth: 13.9em;
        height: auto;
}

#ja-nav li ul ul { /* third-and-above-level lists */
        margin: -1.5em 0 0 12em;
}

#ja-nav li li {
        padding: 0 1em 0 0;
        margin: 0;
        width: 13em;
}

#ja-nav ul a {
        width: 13em;
        w\idth: 9em;
}

#ja-nav li:hover ul ul, #ja-nav li:hover ul ul ul,
#ja-nav li.sfhover ul ul, #ja-nav li.sfhover ul ul ul {
        left: -999em;
}

/* This "unhides" the sub-menus (left: -999em is what hides them) */
#ja-nav li:hover ul, #ja-nav li li:hover ul, #ja-nav li li li:hover ul,
#ja-nav li.sfhover ul, #ja-nav li li.sfhover ul, #ja-nav li li li.sfhover ul {
        left: auto;
}

/* STYLING THE MENU
-----------------------------------*/
#ja-nav li ul {
        background: url(nav-bg00.gif) #E88E46;
        border: 1px solid #CD7D3E;
        border-top: none;
}

#ja-nav li ul a:hover {
        color: #003399;
}

#ja-nav li a {
        padding: 0 15px;
        display: block;
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
}

#ja-nav li a:hover {
        color: #FFFFFF;
}

#ja-nav li a.active {
        background: #ffffff;
        color: #003399;
}

#ja-nav li a.active:hover, #ja-nav li a.active:active {
        color: #003399;
}

#ja-nav li li a.active {
        background: none;
        color: #465D65;
}

#ja-nav li.havechild {
        background: url(arrow-og.gif) center right no-repeat;
}

#ja-nav li.havesubchild {
        background: url(arrow-oo.gif) center right no-repeat;
}

#ja-nav li:hover,
#ja-nav li.sfhover {
        background: url(nav-on-b.gif) no-repeat top right #EFAD79;
}

#ja-nav ul li:hover, #ja-nav ul ul li:hover,
#ja-nav ul li.sfhover, #ja-nav ul ul li.sfhover {
}

#ja-nav ul li a, #ja-nav ul ul li a {
        background: none;
        font-weight: normal;
        padding: 0 10px;
}