/* Stylesheet for the MenuControl UserControl */

.menuContainer {
    position: relative;    
    z-index: 2;
    width: 100%;
    height: 25px;
    background: #ea6a03 url(../_images/linksborderbg.gif) no-repeat left top;
}
.menuContainer ul {
    /* Menu containing Ul Element */
    position: absolute;
    margin: 0px 0px 0px 20px;
    padding: 0px;
    list-style: none;
}
.menuContainer ul li {
    /* Li element of top level MenuItem */
    float: left;
    margin: 0px;
}
.menuContainer ul li.selected a {
    /* Href element of top level selected MenuItem */
}
.menuContainer ul li a {
    /* Href element of top level MenuItem */
    display: block;
    margin: 0;
    padding: 5px 10px 6px 10px;
    color: #fff;
    font-size: 1.0em;
    font-weight: bold;
    border-right: solid 1px white;
}
.menuContainer ul li a:visited {
    color: #fff;
}
.menuContainer ul li a:hover {
    /* Hover state of Href element of MenuItem */
    background-color: #FFFFFF;
    color: #666666;
}
.menuContainer li.selected li a {
    /* Href element of child MenuItem of selected top level MenuItem */
    background: none;
}
.menu li li a {
    /* Href element of child MenuItem */
    margin: 0px;
    background: none !important;
    color: #e2924a;
}
.menuContainer li.green {
    background-color: #055631;
}
.menuContainer li.orange {
    background-color: #ea6903;
}

.menuContainer li.green.selected {
    background-color: #749b16;
}
.menuContainer li.orange.selected {
    background-color: #ff9933;
}


.menuContainer li.orange ul {
    /* Ul element of MenuItem */
    border: 1px solid #ea6903;
}
.menuContainer li.orange li a {
    /* Href element of child MenuItem */
    color: #e79750;
}
.menuContainer li.orange li a:hover {
    /* Hover state of Href element of child MenuItem */
    color: #c85b05;
}
.menuContainer li.orange.selected li.selected a {
    /* Href element of selected child MenuItem of selected top level MenuItem */
    color: #c85b05;
}
