div#menu {
    width:          100%;
    z-index:        2;
    position: relative;
    margin-top: 20px;
    height: 123px;
}
/**************************************
*
* Level 0
*
***************************************/

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

div#menu li.level_0 {
    float: left;
}

div#menu li.level_0 > a {
    background: white;
    display:        block;
    text-decoration: none;
    font-size: 12pt;
    color: #555;
    padding:         15px 20px;
    font-weight: bold;
}
div#menu li.level_0.active > a {
    background: #007EB3;
    color: white;
}
div#menu li.level_0 > a:hover {
    background: #555;
    color: white;
}
/**************************************
*
* Level 1
*
***************************************/

div#menu ul.level_1 {
    position: absolute;
    width: 100%;
    background: #007EB3;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

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

div#menu li.level_1:hover {
    background-color: #0CA9E9;
    padding-right: 1px;
    margin-right: -1px;
    padding-left: 1px;
    margin-left: -1px;
}
div#menu li.level_1:first-child:hover {
    padding-left: 0px;
    margin-left: 0px;
}

div#menu div.level_1_seperator {
    float: left;
    width: 1px;
    height: 40px;
    margin-top: 6px;
    background: #60A7C4;
}

div#menu li.level_1 a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 11pt;
    padding: 15px 20px;
    font-weight: normal;
    position: relative;
}

div#menu li.level_1:hover ul.level_2 {
    display: block;
}

div#menu a div.level_1.active_indicator {
    background: url('../images/common/partials/menu/arrow-down-medium-blue.png') center no-repeat;
    height: 10px;
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    left: 0px;
    bottom: 0px;
    margin-bottom: -10px;
}

/* Set the background color back when hovering over menu items */
div#menu ul.level_1:hover li.level_1.active {
    background: #007EB3;
}
/* Do not show the active indicator when hovering over menu items */
div#menu ul.level_1:hover div.level_1.active_indicator {
    display: none;
}

/* This has to be down here, so it is more important than the hover css */
div#menu ul.level_1 li.level_1.active:hover,
div#menu li.level_1.active,
div#menu li.level_1:hover {
    background-color: #0CA9E9;
}
/**************************************
*
* Level 2
*
***************************************/

div#menu ul.level_2 {
    display:        none;
    position:       absolute;
    padding-left:   0px;
    width:          160px;
}


div#menu li.level_2 {
    width:          100%;
    list-style-type: none;
    float:          left;
}
div#menu li.level_2 a.more {
    background-image: url('../images/common/partials/menu/icons/sub_more_right.png');
    background-repeat: no-repeat;
    background-position: 180px center;
}

div#menu li.level_2 a {
    font-size:      13px;
    color:          white;
    width:          100%;
    text-decoration: none;
    display:        block;
    padding:         10px 20px;
    float:          left;
    background-color: #0CA9E9;
    font-weight: normal;
}

div#menu li.level_2 a:hover {
    text-decoration: underline;
}

div#menu li.level_2:hover a {
    background-color: #19B6EC;
}

div#menu li.level_2 a:active {
    color:          white;
    background-color: #19B6EC;
}


div#menu li.level_2:hover ul.level_3 {
    display:        block;
}

/**************************************
*
* Level 3
*
***************************************/

div#menu ul.level_3 {
    display:        none;
    position:       absolute;
    margin:         0px;
    padding-left:   0px;
    width:          160px;
    margin-left:    200px;
}

div#menu li.level_3 {
    position:       relative;
    width:          100%;
    list-style-type: none;
}

div#menu li.level_3 a {
    font-size:      13px;
    color:          white;
    width:          100%;
    padding:        10px 20px;
    text-decoration: none;
    display:        block;
    background: #19b6ec;
    font-weight: normal;
}

div#menu li.level_3:hover a {
    color:          #fff;
}

div#menu li.level_3 a:hover {
    text-decoration: underline;
}
