﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */

/* When the Menu control's Orientation property is Vertical the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Vertical. */
/* Note that the example menu in this web site uses relative 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. */
.MainMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 300;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.MainMenu ul
{
    background-color:#820002;
    font-family:Times New Roman;
    color:#ffffff;
    font-size:11px;
    font-weight:bold;
}

/* Top tier */
.MainMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    background-color:#820002;
    font-family:Times New Roman;
    color:#ffffff;
    font-size:11px;
    font-weight:bold;
    padding-top:4px;
    padding-bottom:4px;
}
/* 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. */

.MainMenu ul.AspNet-Menu ul
{
    top: 21;
    z-index: 400;
    font-family:Arial;
    color:#000000;
    font-size:8pt;
    font-weight:normal;
}

.MainMenu ul.AspNet-Menu ul ul
{
    color:#ffffff;
    background:#820002;
    font-style:normal;
    
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.MainMenu ul.AspNet-Menu li
{

}

/* 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). */
.MainMenu ul.AspNet-Menu li a,
.MainMenu ul.AspNet-Menu li span
{
    padding-top:4px;
    padding-bottom:4px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
  
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.MainMenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* 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). */
.MainMenu ul.AspNet-Menu li:hover, 
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
}
.MainMenu ul.AspNet-Menu li:hover a, 
.MainMenu ul.AspNet-Menu li:hover span,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
    background-color:#cf4002;
    padding-top:4px;
    padding-bottom:4px;
}
.MainMenu ul.AspNet-Menu li:hover li:hover a, 
.MainMenu ul.AspNet-Menu li:hover li:hover span,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
    background-color:#be3b01;
}
.MainMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.MainMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.MainMenu ul.AspNet-Menu li:hover ul a, 
.MainMenu ul.AspNet-Menu li:hover ul span,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.MainMenu ul.AspNet-Menu li:hover li:hover ul a, 
.MainMenu ul.AspNet-Menu li:hover li:hover ul span,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.MainMenu ul.AspNet-Menu li a:hover,
.MainMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #000000;
    background-color:#f06d00;
    padding-left:4px;
    padding-right:4px;
    padding-top:4px;
    padding-bottom:4px;    
}
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
}



/* -------------------------------------------------------------------------- */
/* 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. */

.MainMenu .AspNet-Menu-Horizontal
{
    position:relative;
    left: 0px;
    top: 0;
    z-index: 300;
}

/* 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. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 700px;
}

/* 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. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 93px;
    text-align:center;
    left: 0px;
}

.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: 0;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 93px;
    height:21px;
    text-align:center;
    color: #ffffff;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:left;
    width: 165px;
}

.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 165px;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: 0 0 0 0px;
}
/* */
/*---------------FREE STANDING HORIZONTAL MENU-----------------*/
/*---------------FREE STANDING HORIZONTAL MENU-----------------*/
/*---------------FREE STANDING HORIZONTAL MENU-----------------*/
/*---------------FREE STANDING HORIZONTAL MENU-----------------*/
/* */
/* When the Menu control's Orientation property is Vertical the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Vertical. */
/* Note that the example menu in this web site uses relative 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. */
.HorizMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 300;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.HorizMenu ul
{
    background-color:#820002;
    font-family:Times New Roman;
    color:#ffffff;
    font-size:11px;
    font-weight:bold;
}

/* Top tier */
.HorizMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    background-color:#820002;
    font-family:Times New Roman;
    color:#ffffff;
    font-size:11px;
    font-weight:bold;
    padding-top:4px;
    padding-bottom:4px;
}
/* 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. */

.HorizMenu ul.AspNet-Menu ul
{
    top: 21;
    z-index: 400;
    font-family:Arial;
    color:#000000;
    font-size:8pt;
    font-weight:normal;
}

.HorizMenu ul.AspNet-Menu ul ul
{
    color:#ffffff;
    background:#820002;
    font-style:normal;
    
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.HorizMenu ul.AspNet-Menu li
{

}

/* 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). */
.HorizMenu ul.AspNet-Menu li a,
.HorizMenu ul.AspNet-Menu li span
{
    padding-top:4px;
    padding-bottom:4px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
  
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.HorizMenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* 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). */
.HorizMenu ul.AspNet-Menu li:hover, 
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
}
.HorizMenu ul.AspNet-Menu li:hover a, 
.HorizMenu ul.AspNet-Menu li:hover span,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
    background-color:#cf4002;
    padding-top:4px;
    padding-bottom:4px;
}
.HorizMenu ul.AspNet-Menu li:hover li:hover a, 
.HorizMenu ul.AspNet-Menu li:hover li:hover span,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
    background-color:#be3b01;
}
.HorizMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.HorizMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.HorizMenu ul.AspNet-Menu li:hover ul a, 
.HorizMenu ul.AspNet-Menu li:hover ul span,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.HorizMenu ul.AspNet-Menu li:hover li:hover ul a, 
.HorizMenu ul.AspNet-Menu li:hover li:hover ul span,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.HorizMenu ul.AspNet-Menu li a:hover,
.HorizMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #000000;
    background-color:#f06d00;
    padding-left:4px;
    padding-right:4px;
    padding-top:4px;
    padding-bottom:4px;    
}
.HorizMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
}



/* -------------------------------------------------------------------------- */
/* 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. */

.HorizMenu .AspNet-Menu-Horizontal
{
    position:relative;
    left: 0px;
    top: 0;
    z-index: 300;
}

/* 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. */
.HorizMenu .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. */
.HorizMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 150px;
    text-align:center;
    left: 0px;
}

.HorizMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: 0;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.HorizMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 150px;
    height:21px;
    text-align:center;
    color: #ffffff;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.HorizMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:left;
    width: 150px;
}

.HorizMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 150px;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.HorizMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: 0 0 0 0px;
}
/* */
/*---------------FREE STANDING MENU-----------------*/
/*---------------FREE STANDING MENU-----------------*/
/*---------------FREE STANDING MENU-----------------*/
/*---------------FREE STANDING MENU-----------------*/
/* */

.FreeStandMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 150;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.FreeStandMenu ul
{
    font-size: 8pt;
    font-weight:normal;
    font-family:Arial;
    text-align:center;
}

/* Top tier */
.FreeStandMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width:120px;
    color: #ffffff; 
}
/* 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. */

.FreeStandMenu ul.AspNet-Menu ul
{
    top: 0;
    z-index: 0;
    color: #000000;
    border-bottom-color:#555555;
    border-bottom-style:solid;
    border-bottom-width:0px;
    
}

.FreeStandMenu ul.AspNet-Menu ul ul
{
    width: 150px;
    left: 0px;
    top: 0;
    z-index: 0;
    color: #ffffff;
    border-bottom-color:#555555;
    border-bottom-style:solid;
    border-bottom-width:0px;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.FreeStandMenu ul.AspNet-Menu li
{
    color: #ffffff;
}

/* 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). */
.FreeStandMenu ul.AspNet-Menu li a,
.FreeStandMenu ul.AspNet-Menu li span
{
    color:#ffffff;
    background-color:#666666;
    padding: 4px 4px 4px 4px;
    border-bottom-color:#555555;
    border-bottom-style:solid;
    border-bottom-width:0px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
   
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.FreeStandMenu ul.AspNet-Menu li a img
{
    vertical-align: middle;
}

/* 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). */
.FreeStandMenu ul.AspNet-Menu li:hover, 
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#000000;
}
.FreeStandMenu ul.AspNet-Menu li:hover a, 
.FreeStandMenu ul.AspNet-Menu li:hover span,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #000000;
}
.FreeStandMenu ul.AspNet-Menu li:hover li:hover a, 
.FreeStandMenu ul.AspNet-Menu li:hover li:hover span,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #000000;
}
.FreeStandMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.FreeStandMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #000000;
}
.FreeStandMenu ul.AspNet-Menu li:hover ul a, 
.FreeStandMenu ul.AspNet-Menu li:hover ul span,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.FreeStandMenu ul.AspNet-Menu li:hover li:hover ul a, 
.FreeStandMenu ul.AspNet-Menu li:hover li:hover ul span,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.FreeStandMenu ul.AspNet-Menu li a:hover,
.FreeStandMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #000000;
    background-color:#999999;
    border-bottom-color:#555555;
    border-bottom-style:solid;
    border-bottom-width:0px;
}
.FreeStandMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #000000;
    background-color:#999999;
    border-bottom-color:#ffffff;
    border-bottom-style:solid;
    border-bottom-width:0px;
}
/* ===================================================================================== */
/* ===================================================================================== */
/* ===================================================================================== */
/* ===================================================================================== */
/* ===================================================================================== */
/* */

.Level2Menu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 150;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.Level2Menu ul
{
    font-size: 8pt;
    font-weight:normal;
    font-family:Arial;
    text-align:left;
}

/* Top tier */
.Level2Menu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width:148px;
    color: #000000; 
}
/* 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. */

.Level2Menu ul.AspNet-Menu ul
{
    top: 0;
    z-index: 0;
    color: #000000;
    border-bottom-color:#ffffff;
    border-bottom-style:solid;
    border-bottom-width:0px;
    
}

.Level2Menu ul.AspNet-Menu ul ul
{
    width: 148px;
    left: 0px;
    top: 0;
    z-index: 0;
    color: #000000;
    border-bottom-color:#ffffff;
    border-bottom-style:solid;
    border-bottom-width:0px;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.Level2Menu ul.AspNet-Menu li
{
    color: #000000;
}

/* 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). */
.Level2Menu ul.AspNet-Menu li a,
.Level2Menu ul.AspNet-Menu li span
{
    color:#000000;
    background-color:#f06d00;
    padding: 4px 4px 4px 4px;
    border-bottom-color:#ffffff;
    border-bottom-style:solid;
    border-bottom-width:0px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
   
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.Level2Menu ul.AspNet-Menu li a img
{
    vertical-align: middle;
}

/* 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). */
.Level2Menu ul.AspNet-Menu li:hover, 
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
}
.Level2Menu ul.AspNet-Menu li:hover a, 
.Level2Menu ul.AspNet-Menu li:hover span,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.Level2Menu ul.AspNet-Menu li:hover li:hover a, 
.Level2Menu ul.AspNet-Menu li:hover li:hover span,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.Level2Menu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.Level2Menu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.Level2Menu ul.AspNet-Menu li:hover ul a, 
.Level2Menu ul.AspNet-Menu li:hover ul span,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.Level2Menu ul.AspNet-Menu li:hover li:hover ul a, 
.Level2Menu ul.AspNet-Menu li:hover li:hover ul span,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.Level2Menu ul.AspNet-Menu li a:hover,
.Level2Menu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #ffffff;
    background-color:#be3b01;
    border-bottom-color:#ffffff;
    border-bottom-style:solid;
    border-bottom-width:0px;
}
.Level2Menu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
    background-color:#be3b01;
    border-bottom-color:#ffffff;
    border-bottom-style:solid;
    border-bottom-width:0px;
}
/* */
/*---------------AUDIO MENU-----------------*/
/*---------------AUDIO MENU-----------------*/
/*---------------AUDIO MENU-----------------*/
/*---------------AUDIO MENU-----------------*/
/* */

.AudioMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 25;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.AudioMenu ul
{
    font-size: 8pt;
    font-weight:normal;
    font-family:Arial;
    text-align:center;
}

/* Top tier */
.AudioMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width:25px;
    height:25px;
    color: #ffffff; 
}
/* 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. */

.AudioMenu ul.AspNet-Menu ul
{
    top: 0;
    z-index: 0;
    color: #ffffff;
}

.AudioMenu ul.AspNet-Menu ul ul
{
    width: 25px;
    height: 25px;
    left: 0px;
    top: 0;
    z-index: 0;
    color: #ffffff;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.AudioMenu ul.AspNet-Menu li
{
    color: #ffffff;
     background:#ffffff url(http://www.knoxannarbor.org/images/SermonListen.jpg) no-repeat;
}

/* 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). */
.AudioMenu ul.AspNet-Menu li a,
.AudioMenu ul.AspNet-Menu li span
{
    color:#ffffff;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
   
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.AudioMenu ul.AspNet-Menu li a img
{
    vertical-align: middle;
}

/* 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). */
.AudioMenu ul.AspNet-Menu li:hover, 
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
     background: #ffffff url(http://www.knoxannarbor.org/images/SermonListenOn.jpg) no-repeat;
}
.AudioMenu ul.AspNet-Menu li:hover a, 
.AudioMenu ul.AspNet-Menu li:hover span,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.AudioMenu ul.AspNet-Menu li:hover li:hover a, 
.AudioMenu ul.AspNet-Menu li:hover li:hover span,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.AudioMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.AudioMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.AudioMenu ul.AspNet-Menu li:hover ul a, 
.AudioMenu ul.AspNet-Menu li:hover ul span,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.AudioMenu ul.AspNet-Menu li:hover li:hover ul a, 
.AudioMenu ul.AspNet-Menu li:hover li:hover ul span,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.AudioMenu ul.AspNet-Menu li a:hover,
.AudioMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #ffffff;
}
.AudioMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
}
/* */
/*---------------READ MENU-----------------*/
/*---------------READ MENU-----------------*/
/*---------------READ MENU-----------------*/
/*---------------READ MENU-----------------*/
/* */

.ReadMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 25;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.ReadMenu ul
{
    font-size: 8pt;
    font-weight:normal;
    font-family:Arial;
    text-align:center;
}

/* Top tier */
.ReadMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width:25px;
    height:25px;
    color: #ffffff; 
}
/* 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. */

.ReadMenu ul.AspNet-Menu ul
{
    top: 0;
    z-index: 0;
    color: #ffffff;
}

.ReadMenu ul.AspNet-Menu ul ul
{
    width: 25px;
    height: 25px;
    left: 0px;
    top: 0;
    z-index: 0;
    color: #ffffff;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.ReadMenu ul.AspNet-Menu li
{
    color: #ffffff;
     background:#ffffff url(http://www.knoxannarbor.org/images/ReadDoc.jpg) no-repeat;
}

/* 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). */
.ReadMenu ul.AspNet-Menu li a,
.ReadMenu ul.AspNet-Menu li span
{
    color:#ffffff;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
   
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.ReadMenu ul.AspNet-Menu li a img
{
    vertical-align: middle;
}

/* 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). */
.ReadMenu ul.AspNet-Menu li:hover, 
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
     background: #ffffff url(http://www.knoxannarbor.org/images/ReadDocON.jpg) no-repeat;
}
.ReadMenu ul.AspNet-Menu li:hover a, 
.ReadMenu ul.AspNet-Menu li:hover span,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.ReadMenu ul.AspNet-Menu li:hover li:hover a, 
.ReadMenu ul.AspNet-Menu li:hover li:hover span,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.ReadMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.ReadMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.ReadMenu ul.AspNet-Menu li:hover ul a, 
.ReadMenu ul.AspNet-Menu li:hover ul span,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.ReadMenu ul.AspNet-Menu li:hover li:hover ul a, 
.ReadMenu ul.AspNet-Menu li:hover li:hover ul span,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.ReadMenu ul.AspNet-Menu li a:hover,
.ReadMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #ffffff;
}
.ReadMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
}
/* */
/*---------------kdz MENU-----------------*/
/*---------------kdz MENU-----------------*/
/*---------------kdz MENU-----------------*/
/*---------------kdz MENU-----------------*/
/* */

.kdzMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 25;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.kdzMenu ul
{
    font-size: 10pt;
    font-weight:bold;
    font-style: italic;
    font-family:Verdana, Arial, Sans-Serif;
    text-align:center;
}

/* Top tier */
.kdzMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width:208px;
    height:24px;
    color: #ffffff; 
}
/* 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. */

.kdzMenu ul.AspNet-Menu ul
{
    width: 208px;
    height: 24px;
    left: 208px;
    top: 0;
    z-index: 208;
    color: #ffffff;
}

.kdzMenu ul.AspNet-Menu ul ul
{
    width: 208px;
    height: 24px;
    left: 0px;
    top: 0;
    z-index: 0;
    color: #ffffff;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.kdzMenu ul.AspNet-Menu li
{
    color: #ffffff;
    background: url(http://www.knoxannarbor.org/images/kdzButtonOFF.png) no-repeat;
}

/* 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). */
.kdzMenu ul.AspNet-Menu li a,
.kdzMenu ul.AspNet-Menu li span
{
    color:#ffffff;
    padding:3px 0px 3px 0px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
   
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.kdzMenu ul.AspNet-Menu li a img
{
    vertical-align: middle;
}

/* 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). */
.kdzMenu ul.AspNet-Menu li:hover, 
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
     background: url(http://www.knoxannarbor.org/images/kdzButtonON.png) no-repeat;
}
.kdzMenu ul.AspNet-Menu li:hover a, 
.kdzMenu ul.AspNet-Menu li:hover span,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.kdzMenu ul.AspNet-Menu li:hover li:hover a, 
.kdzMenu ul.AspNet-Menu li:hover li:hover span,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.kdzMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.kdzMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.kdzMenu ul.AspNet-Menu li:hover ul a, 
.kdzMenu ul.AspNet-Menu li:hover ul span,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.kdzMenu ul.AspNet-Menu li:hover li:hover ul a, 
.kdzMenu ul.AspNet-Menu li:hover li:hover ul span,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.kdzMenu ul.AspNet-Menu li a:hover,
.kdzMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #ffffff;
}
.kdzMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
}
/* -------------------------------------------------------------------------- */
/* 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. */

.kdzMenu .AspNet-Menu-Horizontal
{
    position:relative;
    left: 0px;
    top: 0;
    z-index: 300;
}

/* 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. */
.kdzMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 898px;
}

/* 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. */
.kdzMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 208px;
    text-align:center;
    left: 0px;
}

.kdzMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: 0;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.kdzMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 208px;
    height:24px;
    text-align:center;
    color: #ffffff;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.kdzMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:center;
    width: 208px;
}

.kdzMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 208px;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.kdzMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: 0 0 0 0px;
}
/* */
/*---------------kdz2 MENU-----------------*/
/*---------------kdz2 MENU-----------------*/
/*---------------kdz2 MENU-----------------*/
/*---------------kdz2 MENU-----------------*/
/* */

.kdz2Menu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 25;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.kdz2Menu ul
{
    font-size: 8pt;
    font-weight:bold;
    font-style: italic;
    font-family:Verdana, Arial, Sans-Serif;
    text-align:center;
}

/* Top tier */
.kdz2Menu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width:160px;
    height:24px;
    color: #ffffff; 
}
/* 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. */

.kdz2Menu ul.AspNet-Menu ul
{
    top: 0;
    z-index: 0;
    color: #ffffff;
}

.kdz2Menu ul.AspNet-Menu ul ul
{
    width: 160px;
    height: 24px;
    left: 0px;
    top: 0;
    z-index: 0;
    color: #ffffff;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.kdz2Menu ul.AspNet-Menu li
{
    color: #ffffff;
    background:#ffffff url(http://www.knoxannarbor.org/images/kdz2ButtonOFF.jpg) no-repeat;
}

/* 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). */
.kdz2Menu ul.AspNet-Menu li a,
.kdz2Menu ul.AspNet-Menu li span
{
    color:#ffffff;
    padding:5px 0px 4px 0px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
   
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.kdz2Menu ul.AspNet-Menu li a img
{
    vertical-align: middle;
}

/* 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). */
.kdz2Menu ul.AspNet-Menu li:hover, 
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
     background: #ffffff url(http://www.knoxannarbor.org/images/kdz2ButtonON.jpg) no-repeat;
}
.kdz2Menu ul.AspNet-Menu li:hover a, 
.kdz2Menu ul.AspNet-Menu li:hover span,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.kdz2Menu ul.AspNet-Menu li:hover li:hover a, 
.kdz2Menu ul.AspNet-Menu li:hover li:hover span,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.kdz2Menu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.kdz2Menu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.kdz2Menu ul.AspNet-Menu li:hover ul a, 
.kdz2Menu ul.AspNet-Menu li:hover ul span,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.kdz2Menu ul.AspNet-Menu li:hover li:hover ul a, 
.kdz2Menu ul.AspNet-Menu li:hover li:hover ul span,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.kdz2Menu ul.AspNet-Menu li a:hover,
.kdz2Menu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #ffffff;
}
.kdz2Menu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
}
/* -------------------------------------------------------------------------- */
/* 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. */

.kdz2Menu .AspNet-Menu-Horizontal
{
    position:relative;
    left: 0px;
    top: 0;
    z-index: 300;
}

/* 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. */
.kdz2Menu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 800px;
}

/* 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. */
.kdz2Menu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 160px;
    text-align:center;
    left: 0px;
}

.kdz2Menu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: 0;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.kdz2Menu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 160px;
    height:24px;
    text-align:center;
    color: #ffffff;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.kdz2Menu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:center;
    width: 160px;
}

.kdz2Menu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 160px;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.kdz2Menu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: 0 0 0 0px;
}
/* */
/*---------------oak MENU-----------------*/
/*---------------oak MENU-----------------*/
/*---------------oak MENU-----------------*/
/*---------------oak MENU-----------------*/
/* */

.oakMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 0;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.oakMenu ul
{
    font-size: 16px;
    font-weight:normal;
    font-style:normal;
    font-family:Palatino Linotype, Times New Roman;
    text-align:center;
}

/* Top tier */
.oakMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 174px;
    height: 38px;
    color: #ffffff; 
}
/* 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. */

.oakMenu ul.AspNet-Menu ul
{
    width: 174px;
    height: 38px;
    left: 0px;
    top: 0;
    z-index: 0;
    color: #ffffff; 
}

.oakMenu ul.AspNet-Menu ul ul
{
    width: 174px;
    height: 38px;
    left: 0px;
    top: 0;
    z-index: 0;
    color: #ffffff;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
/* OFF STATE */
.oakMenu ul.AspNet-Menu li
{
    color: #ffffff;
    font-weight: normal                      ;
    background: url(http://www.knoxannarbor.org/images/oakBttnBG.jpg) no-repeat;
}

/* 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). */
.oakMenu ul.AspNet-Menu li a,
.oakMenu ul.AspNet-Menu li span
{
    color:#ffffff;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
   
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.oakMenu ul.AspNet-Menu li a img
{
    vertical-align: middle;
}

/* 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). */
/* ON STATE */
.oakMenu ul.AspNet-Menu li:hover, 
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
    background: url(http://www.knoxannarbor.org/images/oakBttnBGON.jpg) no-repeat;
}
.oakMenu ul.AspNet-Menu li:hover a, 
.oakMenu ul.AspNet-Menu li:hover span,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.oakMenu ul.AspNet-Menu li:hover li:hover a, 
.oakMenu ul.AspNet-Menu li:hover li:hover span,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
}
.oakMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.oakMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.oakMenu ul.AspNet-Menu li:hover ul a, 
.oakMenu ul.AspNet-Menu li:hover ul span,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.oakMenu ul.AspNet-Menu li:hover li:hover ul a, 
.oakMenu ul.AspNet-Menu li:hover li:hover ul span,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.oakMenu ul.AspNet-Menu li a:hover,
.oakMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #ffffff;
}
.oakMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
}
/* -------------------------------------------------------------------------- */
/* 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. */

.oakMenu .AspNet-Menu-Horizontal
{
    position:relative;
    left: 0px;
    top: 0;
    z-index: 300;
}

/* 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. */
.oakMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 1px;
}

/* 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. */
.oakMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 174px;
    text-align:center;
    left: 0px;
}

.oakMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: 0;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.oakMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 174px;
    height:38px;
    text-align:center;
    color: #ffffff;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.oakMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:center;
    width: 174px;
}

.oakMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 174px;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.oakMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: 0 0 0 0px;
}
/* */















.AdminMenu .AspNet-Menu-Vertical
{
    position:relative;
    top: 0;
    left:0;
    z-index: 300;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.AdminMenu ul
{
    background-color:#820002;
    font-family:Times New Roman;
    color:#ffffff;
    font-size:11px;
    font-weight:bold;
}

/* Top tier */
.AdminMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    background-color:#820002;
    font-family:Times New Roman;
    color:#ffffff;
    font-size:11px;
    font-weight:bold;
    padding-top:4px;
    padding-bottom:4px;
}
/* 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. */

.AdminMenu ul.AspNet-Menu ul
{
    top: 21;
    z-index: 400;
    font-family:Arial;
    color:#000000;
    font-size:8pt;
    font-weight:normal;
}

.AdminMenu ul.AspNet-Menu ul ul
{
    color:#ffffff;
    background:#820002;
    font-style:normal;
    
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.AdminMenu ul.AspNet-Menu li
{

}

/* 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). */
.AdminMenu ul.AspNet-Menu li a,
.AdminMenu ul.AspNet-Menu li span
{
    padding-top:4px;
    padding-bottom:4px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
  
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.AdminMenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* 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). */
.AdminMenu ul.AspNet-Menu li:hover, 
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    color:#ffffff;
}
.AdminMenu ul.AspNet-Menu li:hover a, 
.AdminMenu ul.AspNet-Menu li:hover span,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover span
{
    color: #ffffff;
    background-color:#cf4002;
    padding-top:4px;
    padding-bottom:4px;
}
.AdminMenu ul.AspNet-Menu li:hover li:hover a, 
.AdminMenu ul.AspNet-Menu li:hover li:hover span,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: #ffffff;
    background-color:#be3b01;
}
.AdminMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.AdminMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #ffffff;
}
.AdminMenu ul.AspNet-Menu li:hover ul a, 
.AdminMenu ul.AspNet-Menu li:hover ul span,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.AdminMenu ul.AspNet-Menu li:hover li:hover ul a, 
.AdminMenu ul.AspNet-Menu li:hover li:hover ul span,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
/* 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. */
.AdminMenu ul.AspNet-Menu li a:hover,
.AdminMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #000000;
    background-color:#f06d00;
    padding-left:4px;
    padding-right:4px;
    padding-top:4px;
    padding-bottom:4px;    
}
.AdminMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    color: #ffffff;
}



/* -------------------------------------------------------------------------- */
/* 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. */

.AdminMenu .AspNet-Menu-Horizontal
{
    position:relative;
    left: 0px;
    top: 0;
    z-index: 300;
}

/* 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. */
.AdminMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
width: 600px;
}

/* 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. */
.AdminMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 100px;
    text-align:center;
    left: 0px;
}

.AdminMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: 0;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.AdminMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 100px;
    height:21px;
    text-align:center;
    color: #ffffff;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.AdminMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:left;
    width: 150px;
}

.AdminMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 150px;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.AdminMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: 0 0 0 0px;
}







