
.ChildMenu .AspNet-Menu-Horizontal
{
    position:relative;
    width: 100%;
    z-index: 1;  
    font-size:small;
    font-family: arial, helvetica, sans-serif; 
}

.ChildMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 100%;
}

.ChildMenu .AspNet-Menu-Selected
{
    background-color: #5D7B9D;
    font-weight:bolder;
    text-decoration: underline;
}

.ChildMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 130px;
    text-align:center;
    background-color: #5D7B9D;
}


/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
.ChildMenu ul.AspNet-Menu li a,
.ChildMenu ul.AspNet-Menu li span
{
    color: #ffffff;
    padding: 0.5em 2px 0.5em 8px;
}

/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.ChildMenu ul.AspNet-Menu li:hover, 
.ChildMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:White;
}

.ChildMenu ul.AspNet-Menu li:hover a, 
.ChildMenu ul.AspNet-Menu li:hover span, 
.ChildMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.ChildMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: White;
    text-decoration:underline;

}

/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
.ChildMenu ul.AspNet-Menu li a:hover,
.ChildMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: White;
    background: transparent url(activeArrowRight.gif) right center no-repeat;
}

.ChildMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}







