﻿/* Move to styles.css */
/* existing styles*/
.seeAllLink
{
	padding-top: .5em;
}


/* General Menu Styles */
#nav
{
	background-color: #0098eb;
	/*position: absolute;*/
	z-index: 999;
	width: 960px;
}
#navBar
{
	background-color: #0098eb;
	color: #ffffff;
	height: 32px;
	padding: 0px;
}
.safari #navBar
{
	height: 31px;
}
#menuFav
{
	height: 34px;
	padding: 0;
}

/**********************************************/
/* Menu controls - Left Menu                  */
/**********************************************/
/* Width of whole menu */
.LeftMenu
{
	float: left;
	width: 50%;
}
.LeftMenu div.AspNet-Menu-Horizontal
{
	float: left;
	width: 100%;
}
.LeftMenu div.AspNet-Menu-Horizontal ul.AspNet-Menu
{
	float: left;
	width: 100%;
}
/* Individual menu items (top level items - level 0) */
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-Leaf
{
	float: left;
	text-align: center;
	width: 85px;	
}
/* Individual menu items link (top level items - level 0) */
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a.AspNet-Menu-Link
{
	/*float: left;*/
	color: #ffffff;
	padding: 8px 5px 8px 5px;
	/*width: 85px;*/
}
/* Individual menu items that have sub menu items (still top level item - level 0)*/
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren
{
	/*float: left;*/
	text-align: left;
	margin-right: 0px;
	width: 90px;	
}
/* Links for individual menu items that have sub menu items (still top level item - level 0)*/
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren a.AspNet-Menu-Link
{
	/*float: left;*/
	color: #ffffff;
	padding: 8px 8px 8px 8px;
	
	/*width: 85px;*/
}
/* Sub menu item container (level 1)*/
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul
{
	width: 200px;
	border-top: solid 1px #2b68a7;
	border-left: 0;
	border-bottom: 0;
	padding-right: 2px;
}
/* Individual menu items (second level items - level 1)*/
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf
{
	width: 200px;	
	text-align: left;
	border: solid 1px #2b68a7;
	border-top: none;
}
/* Individual menu item links (second level items - level 1)*/
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf a.AspNet-Menu-Link
{
	color: #ffffff;
	width: 200px;
	padding: 5px 2px 5px 2px;
}
.LeftMenu li
{
    background: #0098eb;
}
/* 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).*/
.LeftMenu ul.AspNet-Menu li:hover, 
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    background:#2b68a7;
}
/* 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). */
 .LeftMenu ul.AspNet-Menu li a
{
    background: transparent url(../images/browse.gif) right no-repeat; 
    background-position: 80% 50%;   
}
/* 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. */
.LeftMenu ul.AspNet-Menu li a:hover,
.LeftMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    background: transparent url(../images/browse.gif) right no-repeat;
    background-position: 80% 50%;  
}
/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span,
.LeftMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}
/* 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. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.LeftMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    left: 0px;
    top: 31px;
}
.safari .LeftMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    top: 30px;
}




/**********************************************/
/* Menu controls - Right Menu                 */
/**********************************************/

/* Width of whole menu */
 .RightMenu div.AspNet-Menu-Horizontal,
 .RightMenu div.AspNet-Menu-Horizontal ul.AspNet-Menu
{
	float: right;
}
.RightMenu
{
	float:right;
	width: 25%;
}
/* Individual menu items (top level items - level 0) */
.RightMenu ul.AspNet-Menu li.AspNet-Menu-Leaf
{
	/*width: 75px;	*/
	width: 75px;
	text-align: center;	
	/*float: right;*/ 
}
/* Individual menu items link (top level items - level 0) */
.RightMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a.AspNet-Menu-Link
{
	color: #ffffff;
	padding: 8px 8px 8px 8px;	
}
/* Individual menu items that have sub menu items (still top level item - level 0)*/
.RightMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren
{
	text-align: left;
	width: 75px;
	margin-right: 0px;
}
/* Links for individual menu items that have sub menu items (still top level item - level 0)*/
.RightMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren a.AspNet-Menu-Link
{
	color: #ffffff;
	padding: 8px 5px 8px 5px;
}
/* Sub menu item container (level 1)*/
.RightMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul
{
	width: 100px;
	border-top: solid 1px #2b68a7;
	border-left: 0;
	border-bottom: 0;
	padding-right: 2px;
}
/* Individual menu items (second level items - level 1)*/
.RightMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf
{
	width: 100px;	
	text-align: left;
	border: solid 1px #2b68a7;
	border-top: none;
}
/* Individual menu item links (second level items - level 1)*/
.RightMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf a.AspNet-Menu-Link
{
	color: #ffffff;
	width: 100px;
	padding: 5px 2px 5px 2px;
}
.RightMenu li
{
    background: #0098eb;
    z-index: 999;
}
/* 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). */
.RightMenu ul.AspNet-Menu li:hover, 
.RightMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    background:#2b68a7;
}
/* 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). */
 .RightMenu ul.AspNet-Menu li a
{
    background: transparent url(../images/browse.gif) right no-repeat; 
    background-position: 80% 50%;   
}
/* 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. */
.RightMenu ul.AspNet-Menu li a:hover,
.RightMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    background: transparent url(../images/browse.gif) right no-repeat;
    background-position: 80% 50%;  
}
/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.RightMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.RightMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span,
.RightMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}
/* 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. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.RightMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    left: 0px;
    top: 31px;
}
.safari .RightMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    top: 30px;
}



/**********************************************/
/* Menu controls - Favourites Menu                  */
/**********************************************/

/* Width of whole menu */
.favMenu
{
	float: right;
	width: 130px;
}
.favMenu div.AspNet-Menu-Horizontal,
.favMenu div.AspNet-Menu-Horizontal ul.AspNet-Menu
{
	float: right;
}

/* Individual menu items that have sub menu items (still top level item - level 0)*/
.favMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren
{
	width: 92px;
}
/* Links for individual menu items that have sub menu items (still top level item - level 0)*/
.favMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren a.AspNet-Menu-Link
{
	color: #ffffff;
	width: 92px;
	padding: 8px 3px 5px 3px;
}
.opera .favMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren a.AspNet-Menu-Link
{
	
	padding-bottom: 4px;
}
.safari .favMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren a.AspNet-Menu-Link
{
	padding-bottom: 6px;
}
/* Sub menu item container (level 1)*/
.favMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren ul
{
	width: 102px;
	border-top: solid 1px #2b68a7;
}
/* Individual menu items (second level items - level 1)*/
.favMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf
{
	width: 100px;	
	text-align: left;
	border: solid 1px #2b68a7;
	border-top: none;
}
/* Individual menu item links (second level items - level 1)*/
.favMenu ul.AspNet-Menu li.AspNet-Menu-WithChildren li.AspNet-Menu-Leaf a.AspNet-Menu-Link
{
	color: #ffffff;
	width: 100px;
	padding: 5px 2px 5px 2px;
}
.favMenu li
{
    background: #0098eb;
}
/* 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). */
.favMenu ul.AspNet-Menu li:hover, 
.favMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    background:#2b68a7;
}
/* 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). */
 .favMenu ul.AspNet-Menu li a
{
    background: transparent url(../images/browse.gif) right no-repeat; 
    background-position:90% 50%;   
}
/* 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. */
.favMenu ul.AspNet-Menu li a:hover,
.favMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    background: transparent url(../images/browse.gif) right no-repeat;
    background-position:90% 50%;  
}
/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.favMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.favMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span,
.favMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}
/* 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. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.favMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    left: -10px;
    top: 26px;
}
.opera .favMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    top: 24px;
}