﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

.FoxyMenu
{
	vertical-align:text-bottom;
	     position: absolute;	
      bottom: 0;	
      right: 0;
}

.menufooter
{

}

/* 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... */
.FoxyMenu ul
{
    background-color:#fff;
      padding:5px;
      text-align:right;
      
}




/* 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. */
.FoxyMenu 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). */
.FoxyMenu ul.AspNet-Menu li a, .FoxyMenu ul.AspNet-Menu li span
{
	color: #666;
	
	
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.FoxyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.FoxyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
      margin-right:10px;
    padding-left:8px;
}




/* 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). */
.FoxyMenu ul.AspNet-Menu li:hover, 
.FoxyMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
   /*background: url(hoverbg.gif) no-repeat  center;*/
   background-color:#F4543C;
   color:#fff;
}



/* 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. */
.FoxyMenu ul.AspNet-Menu li a:hover,
.FoxyMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color:#fff;
}

.FoxyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    
}


/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Vertical the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Vertical. */
/* THIS IS THE WHOLE MENU YOU CAN POSITION IT WITH THIS RULE */

.FoxyMenu .AspNet-Menu-Vertical
{
	
}

/* This rule controls the width of the top tier of the Vertical 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. */
.FoxyMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 150px;
}



/* 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. */
.FoxyMenu .AspNet-Menu-Vertical ul.AspNet-Menu li
{
     
    text-align:right;
    margin-right: 6px;
}



/*Selected menu item styles*/
.FoxyMenu .AspNet-Menu-Selected /* SELECTED MENU ITEM*/
{

}

.FoxyMenu .AspNet-Menu-Vertical-Selected:hover, .FoxyMenu .AspNet-Menu-Vertical-Selected li:hover /* SELECTED MENU ITEM HOVER */
{
	background-color:#fff;
}


.FoxyMenu .AspNet-Menu-Vertical-Selected a /* SELECTED MENU ITEM a*/
{
background-color:#fff;
}


.FoxyMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{

}


