﻿.foo {} 
.DropDownMenu
{
	position:absolute;
	margin-left:-2px;
	/*top:161px;*/
	top:146px;
	z-index:50;
}
.DropDownMenu .AspNet-Menu-Vertical 
{
	width:248px; 
	height:250px;
	background:url(../../Img/DropDownImages/menu_1.png) no-repeat;
	_background:url(../../Img/DropDownImages/menu_1_new3.gif) no-repeat;
    position:absolute;
    margin-left: 60px;
    z-index: 41;
    margin-top:4px;
    padding-top:18px;
 
}


/* 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... */
.DropDownMenu ul
{
	padding-top:10px;
    /*background:#7795BD;*/
}

/* Top tier */
.DropDownMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    /*width:235px;*/
    width:241px;
    /*padding-top:5px;*/
}

/* 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. */
.DropDownMenu .AspNet-Menu-Vertical ul.AspNet-Menu ul
{
	width:207px;
	background:url(../../Img/DropDownImages/menu_2.png) no-repeat;
	padding-top:15px;
	height: 165px;
    left: 220px;
    top: -15px;
    z-index: 400;
    /*padding-top:5px;*/
}

.DropDownMenu .AspNet-Menu-Vertical ul.AspNet-Menu ul li
{
	width:201px;
    margin-left:3px;
    /*width:195px;
    margin-left:5px;*/ 
}

.DropDownMenu ul.AspNet-Menu ul ul
{
    width: 11.5em;
    left: 10.4em;
}

/* 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. */
.DropDownMenu ul.AspNet-Menu li
{
    /*background:#7795BD url(bg_nav.gif) repeat-x;*/
}

/* 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). */
.DropDownMenu ul.AspNet-Menu li a,
.DropDownMenu ul.AspNet-Menu li span
{
    color: black;
    padding: 2px 2px 2px 10px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.DropDownMenu 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. */
.DropDownMenu 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). */
.DropDownMenu ul.AspNet-Menu li:hover, 
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
     background-color:#7cd6a0;
}

.DropDownMenu ul.AspNet-Menu li:hover a, 
.DropDownMenu ul.AspNet-Menu li:hover span, 
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover span,
.DropDownMenu ul.AspNet-Menu li:hover li:hover a, 
.DropDownMenu ul.AspNet-Menu li:hover li:hover span, 
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.DropDownMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.DropDownMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: White;
}

.DropDownMenu ul.AspNet-Menu li:hover ul a, 
.DropDownMenu ul.AspNet-Menu li:hover ul span, 
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.DropDownMenu ul.AspNet-Menu li:hover li:hover ul a, 
.DropDownMenu ul.AspNet-Menu li:hover li:hover ul span, 
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
    color: Black;
}

/* 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. */
.DropDownMenu ul.AspNet-Menu li a:hover,
.DropDownMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: White;
}

.DropDownMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}


ul.AspNet-Menu 
{
	position:relative;
    
}


ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    /*margin: 0;*/
    margin-left: 3pt;
    padding: 0pt 0pt 0pt 0pt;
    /* padding: 5px 0pt 0pt 0pt; */
    display: block;

}

ul.AspNet-Menu li
{
    position: relative;
    list-style: none;
    float: left;
}

ul.AspNet-Menu li a,
ul.AspNet-Menu li span
{
    display: block;
    text-decoration: none;
}

ul.AspNet-Menu ul
{
    position: absolute;
    visibility: hidden;    
}

/* 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: hidden;
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.AspNet-Menu li:hover ul,
ul.AspNet-Menu li li:hover ul,
ul.AspNet-Menu li li li:hover ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul,
ul.AspNet-Menu li li.AspNet-Menu-Hover ul,
ul.AspNet-Menu li li li.AspNet-Menu-Hover ul
{
    visibility: visible;
}

.AspNet-Menu-Vertical ul.AspNet-Menu li
{
    width: 100%;
}


/* left menu treeview */

.LefMenuTree div.AspNet-TreeView ul li
{
    white-space: nowrap;
    padding: 3px 0 2px 0; 
    font-size: small;
    font-family: Tahoma;
}

.LefMenuTree div.AspNet-TreeView ul ul
{
    margin:0 2px 0 2px 10px;
}

.LefMenuTree div.AspNet-TreeView ul li img
{
    border: none;
    vertical-align: middle;
    margin: 0 2px 0 0;
}

.LefMenuTree div.AspNet-TreeView li a
{
    text-decoration: none;
}

.LefMenuTree div.AspNet-TreeView li.AspNet-TreeView-Root
{
}

.LefMenuTree div.AspNet-TreeView li.AspNet-TreeView-Root A
{
	text-decoration: none;
}

.LefMenuTree div.AspNet-TreeView li.AspNet-TreeView-Parent
{
}

.LefMenuTree div.AspNet-TreeView li.AspNet-TreeView-Leaf
{
    margin-left: 20px;
}

.LefMenuTree div.AspNet-TreeView li.AspNet-TreeView-Leaf a 
{
    text-decoration: none;
}


/* Consider changing the cursor value (below) to something like */
/*     cursor: n-resize;                                        */
.LefMenuTree div.AspNet-TreeView .AspNet-TreeView-ClickableNonlink
{
    cursor: pointer;
}

/* Consider changing the cursor value (below) to something like */
/*     cursor: n-resize;                                        */
.LefMenuTree div.AspNet-TreeView .AspNet-TreeView-Collapse
{
    background: url(collapse.gif) 0 0 no-repeat;
    width: 15px;
    margin-right: 5px;
    float:left;
    cursor: pointer;
    font-family: Courier;
    font-size: large;
    line-height: 15px;
}

/* Consider changing the cursor value (below) to something like */
/*     cursor: n-resize;                                        */
.LefMenuTree div.AspNet-TreeView .AspNet-TreeView-Expand
{
    background:  url(expand.gif) 0 0 no-repeat;
    width: 15px;
    margin-right: 5px;
    float:left;
    cursor: pointer;
    font-family: Courier;
    font-size: large;
    line-height: 15px;
}

.LefMenuTree div.AspNet-TreeView a,
.LefMenuTree div.AspNet-TreeView a:visited,
.LefMenuTree div.AspNet-TreeView a:active,
.LefMenuTree div.AspNet-TreeView a:hover,
.LefMenuTree div.AspNet-TreeView a:link
{
    color: #00008B;
    text-decoration: none !important;
}
    

.LefMenuTree div.AspNet-TreeView .AspNet-TreeView-Selected a
{
    font-weight: bold !important;
    color: #8A2BE2 !important;
    text-decoration: none !important;
}

.LefMenuTree div.AspNet-TreeView .AspNet-TreeView-Selected ul a
{
    font-weight: normal !important;
    color: #00008B !important;
    text-decoration: none !important;
}


/* ------------------------------------------------------------------- */
/* Specific to this sample web site. */
/* These rules are probably not useful in your site. */

#SampleTreeView
{
    background: #B9D3EE;
    position: relative;
    width: 100%;
}

#SampleTreeView #Sample-Control
{
    position: relative;
    float: left;
    width: 17em;
    background: #F5F5F5;
    margin-right: 2em;
    z-index: 500;
}

#SampleTreeView #Sample-Content
{
    padding: 0.5em 2em 0.5em 1em;
    color: Black;
    position: relative;
    font-size: small;
    font-family: Times New Roman;
}

#SampleTreeView #Sample-Content h1,
#SampleTreeView #Sample-Content p
{
    margin: 0;
}

#SampleTreeView .clearing
{
    clear:both;
    height: 1px;
}


div.AspNet-TreeView
{
    margin: 0;
    padding: 0;
}

div.AspNet-TreeView ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

/*.AspNet-TreeView-Collapse
{
	margin-right:-20px;
}*/

.AspNet-TreeView-Show
{
}

.AspNet-TreeView-Hide
{
    display:none;
}

