﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

.SideMenuContainer
{
	position: relative;
	top: 20px;
	left: 0px;
}

.SideMenuLabel
{
	clear:both;
	width: 16em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #636363;
	text-transform: capitalize;
	border-bottom: solid 1px #CCC;
	padding-bottom: 1px;
}

/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */
.SideMenu .AspNet-Menu-Vertical
{
    position:relative;
    left: 0px;
    white-space: nowrap;
}

/* 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... */
.SideMenu ul
{
}

/* Top tier */
.SideMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 9em;
    padding-top: 2px;
}

/* 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. */
.SideMenu ul.AspNet-Menu ul
{
    width: 10.5em;
    left: 8.9em;
    top: -1em;
    z-index: 400;
}

.SideMenu 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. */
.SideMenu 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). */
.SideMenu ul.AspNet-Menu li a,
.SideMenu ul.AspNet-Menu li span
{
    color: #636363;
    padding: 3px 0px 3px 3px;
    border-bottom: 0;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
    background-image: none;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.SideMenu 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). */
.SideMenu ul.AspNet-Menu li:hover, 
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
	color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.SideMenu ul.AspNet-Menu li:hover a, 
.SideMenu ul.AspNet-Menu li:hover span, 
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover span,
.SideMenu ul.AspNet-Menu li:hover li:hover a, 
.SideMenu ul.AspNet-Menu li:hover li:hover span, 
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.SideMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.SideMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #000000;
}

.SideMenu ul.AspNet-Menu li:hover ul a, 
.SideMenu ul.AspNet-Menu li:hover ul span, 
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.SideMenu ul.AspNet-Menu li:hover li:hover ul a, 
.SideMenu ul.AspNet-Menu li:hover li:hover ul span, 
.SideMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.SideMenu 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. */
.SideMenu ul.AspNet-Menu li a:hover, .SideMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
	color: #CD3333;
	text-decoration: none;
	font-weight: Bold;
}

.SideMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}

.SideMenu .AspNet-Menu-Selected /* this tier is selected */
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	/* list-style-type: disc; */
}

A.PagerLink, A.PagerLink:link
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal; 
	background-color: #FFFFFF;
	color: #636363;
	text-decoration: none;
	padding-left: 4px;
}

A.PagerLink:hover
{
	color: #CD3333;
	text-decoration: none;
	font-weight: bold; 
}

A.PagerLinkSelected
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #636363;
	text-decoration: underline;
}

A.PagerSimple
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal; 
	color: #636363;
	text-decoration: none;
}

A.ProductDetailLink, A.ProductDetailLink:link
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal; 
	background-color: #FFFFFF;
	color: #636363;
	text-decoration: underline;
	white-space: nowrap;
}

A.ProductDetailLink:hover
{
	color: #CD3333;
	text-decoration: none;
	font-weight: bold; 
}