
/** LEVEL 1 **/

div#nav ul.level_1 {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

div#nav li.level_1 {
    float: left;
}

div#nav li.level_1.active {
    background: #3C88AB;
}

div#nav li.level_1 > a {
    display: block;
    padding: 16px;
    color: #444444;
    text-decoration: none;
    font-size: 12pt;
    font-weight: bold;
}

div#nav li.level_1.active > a {
    color: white;
}

div#nav li.level_1 > a[href]:hover {
    color: white;
    background-color: #444444;
}

div#nav li.level_1 ul.level_2 {
    display: none;
}

div#nav li.level_1.active ul.level_2 {
    display: block;
}

div#nav div.active_indicator,
div#nav div.seperator {
    display: none;
}

/** LEVEL 2 **/

div#nav ul.level_2 {
    padding: 0px;
    margin: 0px;
    list-style: none;
    position: absolute;
    left: 0px;
    z-index: 1;
    width: 100%;
    background: #3C88AB;
}

div#nav li.level_2 {
    float: left;
}

div#nav li.level_2.active,
div#nav li.level_2:hover > a {
    background: #73A9C3;
    border-left: 1px solid #73A9C3;
    margin-left: -1px;
    border-right: 1px solid #73A9C3;
    margin-right: -1px;
}
div#nav li.level_2.active:first-child,
div#nav li.level_2:hover:first-child > a {
    border-left: 0;
    margin-left: 0;
}

div#nav ul.level_2:hover li.level_2.active {
    background: #3C88AB;
    border-left: 0;
    margin-left: 0;
    border-right: 0;
    margin-right: 0;
}

div#nav li.level_2 > a {
    display: block;
    padding: 16px;
    color: white;
    text-decoration: none;
    font-size: 10.3pt;
    font-weight: normal;
    position: relative;
}

div#nav li.level_2.active > a {
    font-weight: bold;
}

div#nav li.level_2 > a[href]:hover {
}

/** on hover show children **/
div#nav.css li.level_2:hover ul.level_3 {
    visibility: visible;
}

div#nav div.level_2.seperator {
    background-color: #73A9C3;
    width: 1px;
    height: 40px;
    display: block;
    margin-top: 5px;
    float: left;
}

div#nav li.level_2:hover a div.level_2.active_indicator,
div#nav a div.level_2.active_indicator {
    background: url('../images/common_segments/arrow-down-blue_30.png') center no-repeat;
    height: 10px;
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    left: 0px;
    bottom: 0px;
    margin-bottom: -10px;
}

div#nav ul.level_2:hover a div.active_indicator {
    background: url('../images/common_segments/arrow-down-blue_20.png') center no-repeat;
}

/** LEVEL 3 **/

div#nav ul.level_3 {
    padding: 20px;
    width: 920px;
    height: 230px;
    visibility: hidden;
    position: absolute;
    left: 0px;
    overflow: hidden;
    background-color: #73A9C3;
    z-index: 1000;
    margin: 0px;
    list-style: none;
    margin-right: 20px;
}

div#nav li.level_3 {
    padding: 0px;
    margin: 0px;
}
div#nav li.level_3.top_spaced {
    margin-top: 20px;
}

div#nav li.level_3 > a {
    color: #F3F9FB;
    display: block;
    text-decoration: none;
    font-weight: normal;
}

div#nav li.level_3 > a.active,
div#nav li.level_3.active > a {
    color: white;
    font-weight: bold;
}

div#nav li.level_3 > a[href]:hover {
    text-decoration: underline;
}

/** LEVEL 4 **/

div#nav ul.level_4 {
    list-style: none;
    padding: 0px;
}

div#nav li.level_4 {
    padding: 0px;
    margin: 0px;
}
div#nav li.level_4.top_spaced {
    margin-top: 20px;
}

div#nav li.level_4 > a {
    font-weight: normal;
    color: #F3F9FB;
    display: block;
    text-decoration: none;
    margin-left: 10px;
    font-size: 8pt;
}

div#nav li.level_4.active > a {
    color: white;
    font-weight: bold;
}

div#nav li.level_4 > a[href]:hover {
    text-decoration: underline;
}

