﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* 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.AspNet-Menu 
{
    position: relative;

}


ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    margin: 0;
    padding: 0;
    display: block;

}

ul.AspNet-Menu li
{
    position: relative;
    list-style: none;
    float: left;
}

ul.AspNet-Menu li a:hover
{
	background-image:url('topnavrollover.jpg');
	background-repeat:no-repeat;
	text-decoration:none;
	color:#FFFFFF;
}


ul.AspNet-Menu li.AspNet-Menu-ChildSelected
{
	background-image:url('topnavrollover.jpg');
	background-repeat:no-repeat;
	text-decoration:none;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-ChildSelected
{
	background-image:none;
}

ul.AspNet-Menu li a,
ul.AspNet-Menu li span
{
    display: block;
    text-decoration: none;
    color:#FFFFFF;
	text-decoration:none;
	font-size:11px;
	line-height:21px;
	letter-spacing:1px;
	width:95px;
}


/* Original ends here */

.AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Selected
{
	background-image:url('topnavrollover.jpg');
	background-repeat:no-repeat;
	text-decoration:none;
}
.AspNet-Menu-Horizontal ul.AspNet-Menu ul li a
{
    text-decoration: none;
    color:white;
	text-decoration:none;
	font-size:11px;
	line-height:21px;
	letter-spacing:1px;
	background-color:#414141;
	display: block;
	width:150px;
	padding-left:5px;
	border:solid 1px #636363;
	border-top: none;
	background-image: url('dropdownbg.jpg');
	background-repeat:repeat-y;
}



.AspNet-Menu-Horizontal ul.AspNet-Menu ul li a:hover
{
   text-decoration: none;
    color:#e9314b;
	text-decoration:none;
	font-size:11px;
	line-height:21px;
	letter-spacing:1px;
	background-color:#414141;
	display: block;
	background-image:none;
	border:solid 1px #636363;
	border-top: none;
}

.AspNet-Menu-Horizontal ul.AspNet-Menu ul li.AspNet-Menu-LineHeight-Adjust a, .AspNet-Menu-Horizontal ul.AspNet-Menu ul li.AspNet-Menu-LineHeight-Adjust a:hover
{
	line-height:13px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    position: absolute;
    visibility: hidden;    
}

.AspNet-Menu-Horizontal ul.AspNet-Menu li:hover ul ul,
.AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Hover ul ul
{
    visibility: hidden;
}

.AspNet-Menu-Horizontal ul.AspNet-Menu li:hover ul ul ul,
.AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Hover ul ul ul
{
    visibility: hidden;
}


/* Add more rules here if your menus have more than three (3) tiers */
.AspNet-Menu-Horizontal ul.AspNet-Menu li:hover ul,
.AspNet-Menu-Horizontal ul.AspNet-Menu li li:hover ul,
.AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Hover ul,
.AspNet-Menu-Horizontal ul.AspNet-Menu li li.AspNet-Menu-Hover ul
{
    visibility: visible;
    display:block;
}

.AspNet-Menu-Horizontal ul.AspNet-Menu ul li.AspNet-Menu-Hidden-Home,
.AspNet-Menu-Horizontal ul.AspNet-Menu ul li.AspNet-Menu-Hidden ul
{
	visibility: hidden;
	display:none;
}


.AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 150px;
    left: 0;
    top: 100%;
    z-index: 400;
    
}


.AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    width: 150px;
    left: 156px;
    top:0;
    z-index: 500;
}

.AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:left;
}




/* Top tier */

.LeftNav ul.AspNet-Menu li ul li
{
    visibility: hidden;
    display:none;
}



.LeftNavHome ul.AspNet-Menu li ul li
{
    visibility: visible;
    display:block;
}

.LeftNav ul.AspNet-Menu li ul li.AspNet-Menu-ParentSelected,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-ChildSelected ul li,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-ChildSelected ul ul li
{
    visibility: visible;
    display:block;
}

.LeftNav ul.AspNet-Menu li ul ul
{
    visibility: hidden;
    display:none;
}


.LeftNav ul.AspNet-Menu li.AspNet-Menu-Selected
{
	background-image:none;
}
.LeftNav ul.AspNet-Menu li .AspNet-Menu-ChildSelected
{
	background-image:none;
}

.LeftNav .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 134px;
}

/* 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. */


/* 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. */
.LeftNav ul.AspNet-Menu li
{
	border-bottom:solid 2px white;
	padding-top:10px;
	padding-bottom:10px;
}

.LeftNav ul.AspNet-Menu li .AspNet-Menu-Selected
{
	background-image:none;
	color:#DD193D;
}

/* 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). */
.LeftNav ul.AspNet-Menu li a,
.LeftNav ul.AspNet-Menu li span
{
    color:#000000;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:136px;
	line-height:14px;
	padding-left:8px;
	font-family:Georgia, "Times New Roman", Times, serif;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren span
{
    color:black;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:136px;
	line-height:14px;
	padding-left:8px;
	font-family:Georgia, "Times New Roman", Times, serif;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-Selected a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Selected span
{
    color:#DD193D;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:136px;
	line-height:14px;
	padding-left:8px;
	font-family:Georgia, "Times New Roman", Times, serif;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-ChildSelected a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-ChildSelected span
{
    color:#DD193D;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:136px;
	line-height:14px;
	padding-left:8px;
	font-family:Georgia, "Times New Roman", Times, serif;
}


/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    background-image: none;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.LeftNav 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). */
.LeftNav ul.AspNet-Menu li:hover, 
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover
{
}

.LeftNav ul.AspNet-Menu li:hover a, 
.LeftNav ul.AspNet-Menu li:hover span, 
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover span,
.LeftNav ul.AspNet-Menu li:hover li:hover a, 
.LeftNav ul.AspNet-Menu li:hover li:hover span, 
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.LeftNav ul.AspNet-Menu li:hover li:hover ul a:hover, 
.LeftNav ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{

}

.LeftNav ul.AspNet-Menu li:hover ul a, 
.LeftNav ul.AspNet-Menu li:hover ul span, 
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.LeftNav ul.AspNet-Menu li:hover li:hover ul a, 
.LeftNav ul.AspNet-Menu li:hover li:hover ul span, 
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.LeftNav 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. */
.LeftNav ul.AspNet-Menu li a:hover,
.LeftNav ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #DD193D;
    background-image: none;
    text-decoration:underline;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
	color: #DD193D;
    background-image: none;
    text-decoration:underline;
}

/* 3rd level */



.LeftNav ul.AspNet-Menu ul li
{
	border:none;
	margin:0;
	margin-left:9px;
	margin-top:10px;
	padding:0;
	padding-bottom:0;
	display:inline;
	background-image: url('redarrow.gif');
	background-repeat:no-repeat;
	background-position:0 2px;
}

.LeftNav ul.AspNet-Menu ul
{
    visibility: visible;    
}


.LeftNav ul.AspNet-Menu ul li a,
.LeftNav ul.AspNet-Menu ul li span
{
    color:black;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:110px;
	line-height:11px;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-WithChildren span
{
    color:black;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:110px;
	line-height:11px;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Selected a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Selected span,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-ChildSelected a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-ChildSelected span
{
    color:#DD193D;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:110px;
	line-height:11px;
}

.LeftNav ul.AspNet-Menu ul li.AspNet-Menu-Selected
{
	border:none;
	background-image: url('redarrow.gif');
	background-repeat:no-repeat;
	background-position:0 2px;
}

.LeftNav ul.AspNet-Menu ul li.AspNet-Menu-ChildSelected
{
	border:none;
	background-image: url('redarrow.gif');
	background-repeat:no-repeat;
	background-position:0 2px;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul li.AspNet-Menu-Selected
{
	border:none;
	background-image: url('redarrow.gif');
	background-repeat:no-repeat;
	background-position:0 2px;
}

