﻿/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */

.HorizontalMenuTheme .AspNet-Menu-Horizontal
{
}

/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accommodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. */
.HorizontalMenuTheme .AspNet-Menu-Horizontal ul.AspNet-Menu
{
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.HorizontalMenuTheme .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
}

.HorizontalMenuTheme .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
}

.HorizontalMenuTheme .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
}

.AspNet-Menu-Horizontal .AspNet-Menu-Leaf
{
    margin: 0px 11px 0px 11px;
    font-size: 9px;
}