﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain RARELY CHANGED rules used when the Menu control adapter is enabled. */
/* These rules correspond to the "pure CSS menu" technique that have been evolving over the past several years. */ 
/* See WhitePaper.aspx for details. */

ul.AspNet-Menu 
{
    position: relative;
}


ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    margin: 0;
    padding-left: 1em;
    padding-top: 1em;
    display: block;
}

ul.AspNet-Menu li
{
    position: relative;
    list-style: none;
    float: left;
    background-color: #000044;
    padding-left: 1em;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}
ul.AspNet-Menu li:hover
{
    background-color: #444488;
}

ul.AspNet-Menu li a,
ul.AspNet-Menu li span
{
    display: block;
    text-decoration: none;
}

.AspNet-Menu-Vertical
{
    width: 163px;
}
.AspNet-Menu-Vertical ul.AspNet-Menu li
{
    width: 7em;
}
.AspNet-Menu a
{
    color: #8888FF;
}
.AspNet-Menu a:hover
{
    color: White;
}