/* 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.Menu 
{
    position: relative;
}


ul.Menu, 
ul.Menu ul
{
    margin: 0;
    padding: 0;
    display: block;

}

ul.Menu li
{
    position: relative;
    list-style: none;
}

ul.Menu li a,
ul.Menu li span
{
	display: block;
	text-decoration: none;
	font-weight: bold;
}

ul.Menu ul
{
    position: absolute;
    display: none;    
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.Menu li:hover ul ul,
ul.Menu li:hover ul ul ul,
ul.Menu li.Menu-Hover ul ul,
ul.Menu li.Menu-Hover ul ul ul
{
    display: none;
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.Menu li:hover ul,
ul.Menu li li:hover ul,
ul.Menu li li li:hover ul,
ul.Menu li.Menu-Hover ul,
ul.Menu li li.Menu-Hover ul,
ul.Menu li li li.Menu-Hover ul
{
    display: block;
}


/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. This allows us to force the top tier of the menu to layout */
/* horizontally, whereas all subsequent tiers of the menu lay out vertically. */

.Menu-Horizontal ul.Menu li
{
    float: left;
}

.Menu-Horizontal ul.Menu li li
{
    float: none;
}
