/* CSS file for MenuControl UserControl */

.menuContainer {    
    z-index: 2;
    width: 565px;
    height: 30px;
    background-color: #ffda00; 
    float: left;   
}
.menuCorner {
    background: transparent url(../_images/menuCorner.jpg) no-repeat left top;
    width:9px;
    height:30px;
    float:left;
}
#ulMenuItems {
    z-index: 2;
}
.menuContainer ul {
    /* Menu containing Ul Element */
    position: absolute;
    margin: 2px 0px 0px 0px;
    padding: 0px;
    list-style: none;
}
.menuContainer ul li {
    /* Li element of MenuItem */
    float: left;
    margin: 0px;
}
.menuContainer ul li a {
    /* Href element of top level MenuItem */
    display: block;
    margin: 0;
    padding: 4px 15px 4px 15px;
    color: #403718;
    font-size: 1.0em;
    font-weight: bold;
    text-decoration:none;
}
.menuContainer li.selected a {
    /* Li element of selected MenuItem */
    color: #FF0000;
}
.menuContainer ul li.selected a {
    /* Href element of top level selected MenuItem */
    color: #FF0000 !important;
}
.menuContainer ul li a:visited {
    color: #403718;
}
.menuContainer ul li a:hover {
    /* Hover state of Href element of MenuItem */
    color: #FF0000;
}
.menuContainer ul li li {
    /* Li element of MenuItem */
    clear:left;
    margin: 0px;
    width:200px;    
}


.menuContainer li ul {
    /* Ul element of MenuItem */
    margin-top: 3px;
    display:none;
    background-color: #fdf2b1;
    border: solid 1px #bab69e;
}
.menuContainer li li a {
    /* Href element of child MenuItem */
    margin: 0px;
    text-decoration:none;  
    color: #403718 !important;  
}
.menuContainer li.selected li a {
    /* Href element of child MenuItem */
    color: #403718 !important;  
}
.menuContainer li li a:hover {
    /* Hover state of Href element of child MenuItem */
    color: #FF0000 !important;
}
.menuContainer li.selected li.selected a:hover {
    /* Href element of child MenuItem of selected top level MenuItem */
    background:transparent none;
}
.menuContainer li.selected li.selected a {
    /* Href element of selected child MenuItem of selected top level MenuItem */
    color: #FF0000 !important;
}
.btnSitemap a {
    background:transparent url(../_images/btnSitemap.gif) no-repeat center top;
    width:30px;
    height:20px;
    float:right;
    margin-top:5px;
    margin-right:20px;
}
.btnSitemap a:hover {
    background:transparent url(../_images/btnSitemapOver.gif) no-repeat center top;
}