@charset "UTF-8";

/* Sprynavigation.css - version 0.6 - Spry Pre-Release 1.6.1 */

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

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.navigation
{
	margin: 0;
	margin-top:5px;
	margin-bottom:5px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 15em;
	float:left;
	background-color:white;

}

/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.navigation li
{
	background-color:white;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 12em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.navigation ul
{
	margin: 
	0 0 5% 5%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 15em;
	top: 0;
	
}
/* Submenu that is showing with class designation link, we set left to 0 so it comes onto the screen */
ul.navigation ul.link
{
	border : 1px solid #565656;
	background-color:white;
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.navigation ul li
{	
	margin-top:2px;
	width: 15em;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.navigation
{

}
/* Submenu containers have borders on all sides */
ul.navigation ul
{

}
/* Menu items are a light gray block with padding and no text decoration */
ul.navigation a
{
	display: block;
	line-height: 14px;
	margin-top: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	color: #808080;
	text-decoration: none;	
	font-size: 11px;
	margin-left: 15px;
	margin-right: 5px;	
	padding-left:14px;
	font-weight:bold;
	background-color:white;

}



/* Menu items that have mouse over or focus have a blue background and white text */
ul.navigation a:hover, ul.navigation a:focus
{
	background-color:white;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.navigation a.MenuBarItemHover, ul.navigation a.MenuBarItemSubmenuHover, ul.navigation a.link
{
	
	background-color:white;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.navigation a.linkup
{
	text-transform:uppercase;
	background: url('./arrowClosed.jpg') no-repeat -1px 0px !important;
	color:#565656;
	font-family: Arial, Helvetica, sans-serif;
	margin-top:5px;
	margin-bottom:10px;
	}

ul.navigation a.linknormal
{
	background: url('./arrowClosed.jpg') no-repeat -1px 0px !important;
	color:#565656;
	font-family: Arial, Helvetica, sans-serif;
	margin-top:10px;
	margin-left:20px;
}


ul.a{
color:#565656;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.navigation a.MenuBarItemSubmenuHover
{

}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.navigation iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.navigation li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
