/* Internal layout of navigation bar
Based on version of Suckerfish dropdowns at http://simeons.net/suckerfish_ie5mac_fix.htm */

#nav, #nav ul { /* all lists */
                vertical-align:top;
                font-family:  Arial, Helvetica, sans-serif;
        font-weight: bold;
        color; #000;
        margin: 6px 0 0 0px !important;  /* new */
        margin: 6px 0 0 0px;
        position:relative;
        z-index:1;
        left:96px !important;
        left: 136px;
        top: -44px !important;
        top: -58px;
        width:804px !important;
        width: 688px;
        height: auto;
        list-style:none;
        line-height: 1.0;
        padding: 16px 0 -4px 0;
        font-size:90%;
        text-transform:capitalize;
        background:transparent;
}

html:lang(en)>body #nav {
/* rules ignored by Safari,*/
     font-size: 90%;
}

#nav ul { /* all lists */
        float: left;
        padding: 0px;
        margin: 0px;
        list-style: none;
        line-height: 0.8;
        font-size: xx-small;
        width: 688px;
        display:none;
        visibility:hidden;
}

#nav table {
        width:684px;
        padding:-10px;
        margin:-10px;
        }

#nav tr, td {
        padding: 0px;
        width: 10px;
}

#nav a {
        display: block;
        color: #fff;
        width:auto;
        }

#nav a:hover {
                color: #ab3131;
                color:#156;
                background:#fff;
                }

#nav h3 { /* all horiz list items and width of navbar items */
        display: block;
        float: none;
        width:84px; /* was 100px then 70 width needed or else Opera goes nuts */
        text-align: center;
        padding-top:4px 8px 0px 2px;
        font-size:120%; /* new */
        color:white;
        visibility:hidden;
        }

#nav li { /* all vert list items and width of navbar items */
        display: block;
        float:left;
        width:84px !important;
        width:84px; /* was auto */
        text-align: left;
        padding:0px;
        position:relative;
        top:auto;
        }

/*Mac IE5.2 hack\*/
#nav li {
        position:static;
        }
/*end hack*/

/* nav bar text colour & underline
#nav li a {
        color: #fff;
        text-decoration: none;
        }
#nav li a:hover {
        color: #fff;
        text-decoration: none;
        }

/* drop down panels background */
#nav li li { /* all list items */
        text-align: left;
        width: 74px; /* 84 width needed or else Opera goes nuts */
        padding: 2px 5px 2px 5px;
        margin:0px;
        background-color: transparent;
        z-index:1;
        }

/* top & bottom borders of drop downs */
 /* drop down menus */
#nav li ul { /* drop down menus */
        display:none;
        position:relative;
        top:-16px !important;
        top:-4px;
        /*z-index:0;*/
        filter:alpha(opacity=100);
        opacity: 1;
        visibility:visible;
        text-align: left;
        background-color: #fff;
        background-color:#e7e8e8;
        width:83px !important;
        width:62px; /*needed or else Opera goes nuts */
        text-transform: lowercase;
        border:1px solid #900;
        border:1px solid #156;
        height:auto; /*
        left: -2999em !important;
        left: -999em; *//* using left instead of display to hide menus because display: none isn't read by screen readers */
        }

#nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
        top: auto;
        left: auto;
}

/* Use this to adjust positioning of drop downs */
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
     display:block;
                position:relative;
                z-index:100;
        left: 0px !important;
        left: auto;
        top:-9px !important;
        top:-4px;
        text-decoration: none;
        }

/* drop down text colour and panel width for each item */
#nav ul li a {
        color: #ab3131;
        color:#156;
        width: 72px;
        display: block;
        padding-bottom: 2px;
        text-decoration: none;
        margin-left:0px;
        background:#fff;
        background-color:#e7e8e8;
        position:relative;
        left:0px;
        z-index:10;
        border-bottom:1px solid #eee;
        font-size:xx-small;
        font-weight:normal;
        line-height:1.2;
        }

#nav ul li a:hover {
        background:#fff;
        border-bottom:1px solid #eee;
        }
/* ends menus */




