<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* SpryMenuBasicSkin.css - version 0.5 - Spry Pre-Release 1.7 */

/* Copyright (c) 2010. Adobe Systems Incorporated. All rights reserved. */

/* This is the skinning css for a basic Spry 2 MenuBar.
 * You can use this CSS as a starting point for skinning an instance of the SpryMenuBar widget */
 
 /* The rules in this file  assume the following widget classes for menu layout: 
		MenuBar - Applies to all menubars - default is horizontal bar, all submenus are vertical. 2nd level subs
				  and beyond are pull-right.
		MenuBarVertical - vertical main bar; all submenus are pull-right.
 	These should be set as the 'WidgetClass' in the widget constructor. If the menu is to be vertical, pass both names, 
	space-delimited. For example: WidgetClass: "MenuBar MenuBarVertical".
	
	You can also pass in extra classnames to set your desired top level menu bar layout. They only apply to horizontal menu bars:
		MenuBarLeftShrink - The menu bar will be horizontally 'shrinkwrapped' to be just large enough to hold its items, and left aligned
		MenuBarRightShrink - Just like MenuBarLeftShrink, but right aligned
		MenuBarFixedLeft - Fixed at a specified width set in the rule '.MenuBarFixedLeft', and left aligned.  
		MenuBarFixedCentered -  - Fixed at a specified width set in the rule '.MenuBarFixedCentered', 
						and centered in its parent container.
		MenuBarFullwidth - Grows to fill its parent container width.
		
		eg: WidgetClass: "MenuBar MenuBarLeftShrink"
*/

/* colors: 
		rollover: #4A97A2;
		standard: #1d788e; 
		TRP Blue: #00425f;
		TRP 138 Orange: #df7a00;
		
*/


.MenuBar  {
	background-color:#1d788e;
	/* need background image for standard web version */
	background-image:url(../../../../images/nav_bg_400x45.gif);
	background-position:bottom;
	font-family:Verdana, Geneva, sans-serif; /* Specify fonts on on MenuBar and subMenu MenuItemContainer, so MenuItemContainer,
												MenuItem, and MenuItemLabel
												at a given level all use same definition for ems.
												Note that this means the size is also inherited to child submenus, 
												so use caution in using relative sizes other than
												100% on submenu fonts. */
	font-weight: normal;
	font-size: 11px;
	font-style: normal;
	padding:0;	
	border-color: #ffffff #ffffff #ffffff #ffffff; 
	border-width:0px;
	border-style: none none none none;
}
/* Caution: because ID+class selectors do not work properly in IE6, but we want to restrict these rules to just this
widget instance, we have used string-concatenated classnames for our selectors for the layout type of the menubar 
in this section. These have very low specificity, so be careful not to accidentally override them. */

.MenuBar br { /* using just a class so it has same specificity as the ".MenuBarFixedCentered br" rule bleow */
	display:none;
}
.MenuBarLeftShrink {
	float: left; /* shrink to content, as well as float the MenuBar */
	width: auto;
}
.MenuBarRightShrink {
	float: right; /* shrink to content, as well as float the MenuBar */
	width: auto;
}
.MenuBarFixedLeft {
	float: left;
	width: 80em;
}
.MenuBarFixedCentered {
	float: none;
	width: 80em;
	margin-left:auto;
	margin-right:auto;
}
.MenuBarFixedCentered br {
	clear:both;
	display:block;
}
.MenuBarFixedCentered .SubMenu br {
	display:none;
}
.MenuBarFullwidth {
	float: left;
	width: 100%;
}

/* Top level menubar items - these actually apply to all items, and get overridden for 1st or successive level submenus */
.MenuBar  .MenuItemContainer {
	padding: 0px 0px 0px 0px; 
	margin: 0; 	/* Zero out margin  on the item containers. The MenuItem is the active hover area.
				For most items, we have to do top or bottom padding or borders only on the MenuItem 
				or a child so we keep the entire submenu tiled with items.
				Setting this to 0 avoids "dead spots" for hovering. */
}
.MenuBar  .MenuItem {
	background-color:#1d788e; /* affects: right side of nav UL box, not rollover */	
	/* add image */
	background-image:url(../../../../images/nav_bg_400x45.gif);
	background-position:bottom;
	border-width:1px;
	border-color: #cccccc #ffffff #cccccc #ffffff; 
	border-style: none solid none none;
}
.MenuBar  .MenuItemFirst {
	border-style: none solid none none;
}
.MenuBar .MenuItemLast {
	border-style: none none none none;
}

.MenuBar  .MenuItem  .MenuItemLabel{
	text-align:center;
	font-weight: normal;
	line-height:1.4em;
	color:#ffffff;
	/*background-color:#1d788e; /* affects: label area of non-rollover area, removing this and background image solved issue with disappearing arrows */
	/*background-image:url(../../../../images/nav_bg_400x45.gif);*/ /* this got rid of arrow image */
	padding: 8px 33px 8px 32px; /* .MenuBar  .MenuItem had padding-right of 24px -- removed */
	width:auto; 
}


/* First level submenu items */
.MenuBar .SubMenu  .MenuItem {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	font-size: 11px;
	font-style: normal;
	color:#00425f; /* TRP Blue */
	background-color:#ffffff;
	padding:0px 0px 0px 0px; /* right padding was 2px */
	border-width:1px;
	border-color: #00425f #00425f #00425f #00425f; 
	/* Border styles are overriden by first and last items */
	border-style: none solid solid solid;
}
.MenuBar  .SubMenu .MenuItemFirst {
	border-style: none solid solid solid;
}
.MenuBar  .SubMenu .MenuItemFirst .MenuItemLabel{
	padding-top: 8px; 
}
.MenuBar .SubMenu .MenuItemLast {
	border-style: none solid solid solid;
}
.MenuBar .SubMenu .MenuItemLast .MenuItemLabel{
	padding-bottom: 8px; 
}
.MenuBar .SubMenu .MenuItem .MenuItemLabel{
	text-align:left;
	line-height:1em;	
	background-color:#ffffff;
	/* color should be TRP blue */
	color:#00425f;
	padding: 10px 63px 10px 30px; /* padding around sub-menu items. needs to be fairly big for finger target zones */
	width: auto; /* was 7em */
}

/* Hover states for containers, items and labels */
.MenuBar .MenuItemHover {
	/* background-color: #4A97A2; /* affects: IE right side of top menu  */
	background-image:url(../../../../images/nav_rollover_bg_400x45.gif);
	background-position:bottom;
	border-color: #cccccc #cccccc #cccccc #cccccc; 
	background-color:#4A97A2;
}

.MenuBar .MenuItemWithSubMenu.MenuItemHover .MenuItemLabel{
	/* consider exposing this prop separately*/
	color: #ffffff;
}
.MenuBar .MenuItemHover .MenuItemLabel{
	/* affects hover over top nav */
	color: #ffffff;
}
.MenuBar .SubMenu .MenuItemHover {
	background-color: #ffffff; 
	color: #df7a00;
}

.MenuBar .SubMenu .MenuItemHover .MenuItemLabel{
	background-color: #ffffff; 
	color: #df7a00;
}
/* Submenu properties -- First level of submenus */
.MenuBar .SubMenuVisible {
	background-color: #ffffff;
	min-width:0%;  /* This keeps the menu from being skinnier than the parent MenuItemContainer - nice to have but not available on ie6 */
	border-color: #ffffff #ffffff #ffffff #ffffff; 
	border-width:0px;
	border-style: none none none none;
}
.MenuBar.MenuBar .SubMenuVisible {/* For Horizontal menubar only */
	top: 100%;	/* 100% is at the bottom of parent menuItemContainer */
	left:0px; /* 'left' may need tuning depending upon borders or padding applied to menubar MenuItemContainer or MenuItem, 
					and your personal taste.
					0px will left align the dropdown with the content area of the MenuItemContainer. Assuming you keep the margins 0 
					on MenuItemContainer and MenuItem on the parent
					menubar, making this equal the sum of the MenuItemContainer &amp; MenuItem padding-left will align 
					the dropdown with the left of the menu item label.*/
	z-index:10;
}
.MenuBar.MenuBarVertical .SubMenuVisible {
	top: 0px;	
	left:100%;
	min-width:0px; /* Do not neeed to match width to parent MenuItemContainer - items will prevent total collapse */
}
/* Submenu properties -- Second level submenu and beyond - these are visible descendents of .MenuLevel1 */
.MenuBar .MenuLevel1 .SubMenuVisible {
	background-color: #ffffff;
	min-width:0px; /* Do not neeed to match width to parent MenuItemContainer - items will prevent total collapse*/
	top: 0px;	/* If desired, you can move this down a smidge to separate top item''s submenu from menubar - 
				that is really only needed for submenu on first item of MenuLevel1, or you can make it negative to make submenu more
				vertically 'centered' on its invoking item */
	left:100%; /* If you want to shift the submenu left to partially cover its invoking item, you can add a margin-left with a 
				negative value to this rule. Alternatively, if you use fixed-width items, you can change this left value
				to use px or ems to get the offset you want. */
}
/* IE6 rules - you can delete these if you do not want to support IE6 */

/* A note about multiple classes in IE6.
 * Some of the rules above use multiple class names on an element for selection, such as "hover" (MenuItemHover) and "has a subMenu" (MenuItemWithSubMenu),
 * giving the selector '.MenuItemWithSubMenu.MenuItemHover'.
 * Unfortunately IE6 does not support using mutiple classnames in a selector for an element. For a selector such as '.foo.bar.baz', IE6 ignores
 * all but the final classname (here, '.baz'), and sets the specificity accordingly, counting just one of those classs as significant. To get around this 
 * problem, we use the plugin in SpryMenuBarIEWorkaroundsPlugin.js to generate compound classnames for IE6, such as 'MenuItemWithSubMenuHover'. 
 * Since there are a lot of these needed, the plugin does not generate the extra classes for modern browsers, and we use the CSS2 style mutltiple class
 * syntax for that. Since IE6 both applies rules where 
 * it should not, and gets the specificity wrong too, we have to order rules carefully, so the rule misapplied in IE6 can be overridden. 
 * So, we put the multiple class rule first. IE6 will mistakenly apply this rule.  We follow this with the single-class rule that it would 
 * mistakenly override, making sure the  misinterpreted IE6 specificity is the same as the single-class selector, so the latter wins. 
 * We then create a copy of the multiple class rule, adding a '.SpryIsIE6' class as context, and making sure the specificity for
 * the selector is high enough to beat the single-class rule in the "both classes match" case. We place the IE6 rule at the end of the 
 * css style block to make it easy to delete if you want to drop IE6 support.
 * If you decide you do not need IE6 support, you can get rid of these, as well as the inclusion of the SpryMenuBarIEWorkaroundsPlugin.js script.
 * The 'SpryIsIE6' class is placed on the HTML element by  the script in SpryMenuBarIEWorkaroundsPlugin.js if the browser is Internet Explorer 6. This avoids the necessity of IE conditional comments for these rules.
 */

.SpryIsIE6 .MenuBar .MenuBarView .MenuItemWithSubMenuHover .MenuItemLabel {
	background-image:url(../../../../images/nav_rollover_bg_400x45.gif);
	background-position:bottom;
	background-color:#4A97A2;
	color:#ffffff;
}

.SpryIsIE6 .MenuBar .MenuBarView .SubMenu .MenuItemWithSubMenuHover .MenuItemLabel/* IE6 selector  */{
	background-color: #ffffff; /* consider exposing this prop separately*/
	color: #df7a00;
}
.SpryIsIE6 .MenuBar .SubMenu .SubMenu  /* IE6 selector  */{
	margin-left: -0px; /* Compensates for at least part of an IE6 "double padding" version of the "double margin" bug */
}

.SpryIsIE6 .MenuBar  .MenuItem  .MenuItemLabel {
	width:auto; /* this value was 1 em which did not work in IE8 */
}

/* above fixes IE8 label width issue */

/* overrides to designate a specific page */

a:link.selectedMenu {
	background-color: #4A97A2;/* currently custom color for rollover */
	color: #FFF;
	background-image: url(../images/nav_rollover_bg_400x45.gif);
	background-repeat: no-repeat;
	background-position: bottom left;
}

/* the following item designates a "home" sub page effect for nav rollover */
#mypage {
	background-color: #4A97A2;
	position:relative; /* is position necessary on this item? */
	background-image: url(../images/nav_rollover_bg_400x45.gif);
}

</pre></body></html>