﻿
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-repeat:no-repeat;
	text-decoration:none;
	color:#FFFFFF;
}

ul.AspNet-Menu li .AspNet-Menu-Selected
{
	background-repeat:no-repeat;
	text-decoration: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;
}




/* Add more rules here if your menus have more than three (3) tiers */
ul.AspNet-Menu li:hover ul ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul ul
{
    visibility: visible;
}








/* Top tier */
.LeftNav .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 185px;
}

/* 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 #CEB07E;
	padding-top:10px;
	padding-bottom:10px;
}



/* 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
{
	text-decoration:none;
	font-size:11px;
	line-height:14px;
	font-family:Arial, Helvetica, sans-serif; 
}

/* Top Level Menu item */
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren span
{
    color:#FFFFFF;
	text-decoration:none;
	font-size:17px;
	width:200px;
	line-height:17px;
	font-family:Arial, Helvetica, sans-serif; 
	font-weight:bold;
}


/* 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. */

/* Top Level Hover */
.LeftNav ul.AspNet-Menu li a:hover,
.LeftNav ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: white;
    background-image: none;
}

/* 2nd Level Hover */
.LeftNav ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
	color:white;
    background-image: none;
}

/* 3rd level */



.LeftNav ul.AspNet-Menu ul li
{
	border:none;
	margin:0;
	margin-top:10px;
	padding:0;
	padding-bottom:0;
	padding-left:18px;
	display:inline;
	background-image: url('images/menubullet.jpg');
	background-repeat:no-repeat;
}

.LeftNav ul.AspNet-Menu ul
{
    visibility: hidden;
    display:none;
}




.LeftNav ul.AspNet-Menu li.AspNet-Menu-Selected ul ,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-ChildSelected ul 
{
    visibility: visible;    
    display:block;
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-Selected ul li ul,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-ChildSelected ul li ul
{
    visibility: hidden;
    display:none;
}

.LeftNav ul.AspNet-Menu li ul li.AspNet-Menu-Selected ul,
.LeftNav ul.AspNet-Menu li ul li.AspNet-Menu-ChildSelected ul
{
    visibility: visible;
    display:block;
}





.LeftNav ul.AspNet-Menu li.AspNet-Menu-Selected
{
	background-image:none;
	color:#DD193D;
}


.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:165px;
	line-height:11px;
}


/* child menu items */
.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:#E9CC92;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:165px;
	line-height:16px;
}

.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
{
    color:white;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:165px;
	line-height:16px;
	
}

.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul ul li a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul ul li.AspNet-Menu-WithChildren span
{
    color:#E9CC92;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:140px;
	line-height:11px;
}


.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul ul li.AspNet-Menu-Selected a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul ul li.AspNet-Menu-Selected span,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul ul li.AspNet-Menu-ParentSelected a,
.LeftNav ul.AspNet-Menu li.AspNet-Menu-WithChildren ul ul li.AspNet-Menu-ParentSelected span
{
    color:white;
	text-decoration:none;
	font-size:11px;
	letter-spacing:0;
	width:140px;
	line-height:11px;
	
}


.LeftNav ul.AspNet-Menu ul li.AspNet-Menu-Selected
{
	border:none;
	background-image: url('images/menubullet.jpg');
	background-repeat:no-repeat;
	background-position:left top;
}

.LeftNav ul.AspNet-Menu ul li ul li.AspNet-Menu-Selected
{
	border:none;
	background-image: none;
	background-repeat:no-repeat;
	background-position:left top;
}

.LeftNav ul.AspNet-Menu ul li ul li
{
	border:none;
	background-image: none;
	background-repeat:no-repeat;
	background-position:left top;
}