﻿
.MainMenu .AspNet-Menu-Horizontal
{
	width:100%;									/* background of menu itself not menu items */
	background-color:Transparent;
	font-size:smaller;
	font-family:'Microsoft Sans Serif';/*Arial Narrow;*/
}

.MainMenu ul.AspNet-Menu /* Tier 1 **** The root UL */	
{
    width:100%;		
    background: url(bg_nav.jpg) repeat-x;
}

.MainMenu .AspNet-Menu-WithChildren 
{	
	width:100px;		/* width of the root level li */
	background-color:Transparent;
	/*color: yellow;*/					/*gets top row except for 'selected' entry*/
}

.MainMenu ul.AspNet-Menu ul  /* Tier 2 */
{		/* effects how many li items are displayed on a single line under the ul. */
    width: 100px;
    top: 100%;
    left: 0;
}

.MainMenu ul.AspNet-Menu ul ul  /* Tier 3+ */
{
    top: -0.5em;
    left: 6em;
}

.MainMenu li /* all list items */
{
    width: 120px;
   /*background: url(bg_nav.jpg) repeat;*/
   background-color: #B02E1E;
    color: White;
}

.MainMenu li:hover, /* list items being hovered over */
.MainMenu li.AspNet-Menu-Hover
{
    /*background: Black;*/			/*WORKS*/
    /*color:yellow;	*/							/*DOESN"T WORK*/
  
}

.MainMenu a, /* all anchors and spans (nodes with no link) */
.MainMenu span
{
    color: yellow;							 /*gets top row */
    padding: 4px 2px 4px 8px;
   /* border:1px solid yellow;*/
    background: transparent url(arrowRight.gif) right center no-repeat;
        
}

.MainMenu li.AspNet-Menu-Leaf a, /* leaves */		
.MainMenu li.AspNet-Menu-Leaf span				/* if a menu item is text only it gets a span rather than a hyperlink */
{		/* for a drop down item off a parent*/
    background-image: none !important;
		
}

.MainMenu li:hover a, /* hovered text */
.MainMenu li:hover span,
.MainMenu li.AspNet-Menu-Hover a,
.MainMenu li.AspNet-Menu-Hover span,
.MainMenu li:hover li:hover a,
.MainMenu li:hover li:hover span,
.MainMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.MainMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.MainMenu li:hover li:hover li:hover a,
.MainMenu li:hover li:hover li:hover span,
.MainMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.MainMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li.AspNet-Menu-Hover span
{
    color: silver;
    background: transparent url(activeArrowRight.gif) right center no-repeat;
}

.MainMenu li:hover li a, /* the tier above this one is hovered */
.MainMenu li:hover li span,
.MainMenu li.AspNet-Menu-Hover li a,
.MainMenu li.AspNet-Menu-Hover li span,
.MainMenu li:hover li:hover li a,
.MainMenu li:hover li:hover li span,
.MainMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li a,
.MainMenu li.AspNet-Menu-Hover li.AspNet-Menu-Hover li span
{
    color: yellow;
    background: transparent url(arrowRight.gif) right center no-repeat;
}

.MainMenu .AspNet-Menu-Selected /* this tier is selected */
{
    /*border: solid 1px #00ff00 !important;*/
}

.MainMenu .AspNet-Menu-ChildSelected /* a tier below this one is selected */
{
   /* border: solid 1px #ff0000 !important;*/
}

.MainMenu .AspNet-Menu-ParentSelected /* a tier above this one is selected */
{
   /* border: solid 1px #0000ff !important;*/
}