#divNav {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    height: 100px;
    width: 947px;
    position: relative;
}
#nav {
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    height: 100px;
    width: 947px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 130%;
    border-top: 2px solid #999;
}

#nav li.on ul, #nav li.off ul {
    margin: 0;
    padding: 0;
}

#nav a {
    text-decoration: none;
}

#nav li {/*float the main list items*/
    margin: 0px 0px 0px 0px;
    float: left;
    display: block;
    padding: 0px 10px 0px 10px;
}

#nav li ul {
    display: none;
}

#nav li.off ul, #nav li.on ul {/*put the subnav below*/
    position: absolute;
    left: 0px;
    padding: 6px 0px 6px 0px;
    background: #7d7d70;
    height: 48px;
    width: 947px;
}


#nav li.on:hover ul, #nav li.over ul {/*for ie*/
    background:#7d7d70;
}

#nav li a {
    /*for all links in the list*/
    color: #ffffcc;
    font-weight: bold;
    display: block;
    width: auto;
    padding: 10px 10px 10px 10px;
    border: 0;
}

#nav li.on a {
    /*change border color for active topic area*/
    background:#7d7d70;
    color: #ffffcc;
}

#nav li.on ul a, #nav li.off ul a {
    /* cancel inherit of border
    on subnav of active topic */

    border: 0;
    background: #7d7d70;
    float: left; /*ie doesn't inherit the float*/
    color: #ffffcc;
    width: auto;
    padding: 0px 0px 0px 10px;
    margin: 0px 0px 3px 10px;
    border-left: 2px solid #999;
}

#nav li.on:hover ul a, #nav li.over ul li a {/*for ie - the specificity is necessary*/
    background:#7d7d70;
}

#nav li.on ul {
    /*display active subnav list*/
    display: block;
}

#nav li.off:hover ul, #nav li.over ul {
    /* display the other topics when
    their parent is hovered */
    background:#7d7d70;
    display: block;
    width: 946px;
    z-index: 6000;
}


/*subnav formatting*/

#nav li.off ul a, #nav li.on ul a {
    display: block;
    background: #7d7d70;
    color: #ffffcc;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: small;
}

#nav li.on ul a {
    background: #7d7d70;
}
#nav li.off a:hover, #nav li.on a:hover {
    /*background on hovered tabs*/
    background:#7d7d70;
    color: #CC0000;
}
