﻿.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.levelTop
{
    position: relative;
}


ul.levelTop, 
ul.levelTop ul
{
    margin: 0;
    padding: 0;
    display: block;

}

ul.levelTop li
{
    display: block;
    position: relative;
    list-style: none;
    float: left;
}

ul.levelTop li a,
ul.levelTop li span
{

    text-decoration: none;
}

ul.levelTop ul
{
    position: absolute;
    visibility: hidden;    
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.levelTop li:hover ul ul,
ul.levelTop li.AspNet-Menu-Hover ul ul
{
    visibility: hidden;
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.levelTop li:hover ul,
ul.levelTop li li:hover ul,
ul.levelTop li li li:hover ul,
ul.levelTop li.AspNet-Menu-Hover ul,
ul.levelTop li li.AspNet-Menu-Hover ul,
ul.levelTop li li li.AspNet-Menu-Hover ul
{
    visibility: visible;
}

.AspNet-Menu-Vertical ul.levelTop li
{
    width: 100%;
}

