﻿/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */

/* 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... */
.sidemenubody 
{
	background-color:#00535d;
}

.sidemenu { 
	/*position:relative; */
	/*width:159px;*/
	/*height:100%;*/
	text-align:center; 
	float:left; 
	/*margin-left:-163px;*/
	padding-top:5px;
} 

.SideMenuPanel {
	padding-top:7px;
}

.SideMenu .AspNet-Menu-Vertical
{
    text-align:left;
    margin-left:10px;
    margin-right:10px;
    font-size: 0.85em;
}

/* 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). */
.SideMenu ul.AspNet-Menu li a, .SideMenu ul.AspNet-Menu li span
{
    color: White;
    padding-top: 6px;
}

.SideMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span.AspNet-Menu-NonLink
{
	display:none;
}

.SideMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren span
{
	font-weight:bold;
}

.SideMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf a
{
	padding-left:5px;
}

/* 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. */
.SideMenu ul.AspNet-Menu li a:hover,
.SideMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    text-decoration:underline;
}
