@charset "UTF-8";


/* SpryMenuBarHorizontal.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, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	/* [disabled]font-size: 100%; */
	/* [disabled]cursor: default; */
	/* [disabled]background-color: #02756a; */
	text-align: center;
	/* [disabled]float: none; */
	border-top-width: 1px;
	border-top-style: none;
	border-bottom-width: 1px;
	font-weight: bold;
	margin-right: 2%;
	margin-left: 2%;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	/* [disabled]z-index: 1000; */
	/* [disabled]text-align: center; */
	/* [disabled]border-bottom-width: thin; */
	/* [disabled]border-bottom-style: solid; */
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	list-style-type: none;
	/* [disabled]font-size: 100%; */
	/* [disabled]text-align: center; */
	/* [disabled]cursor: pointer; */
	width: 37.45%;
	float: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	height: 20px;
	margin-left: -8%;
	/* [disabled]margin-bottom: 0px; */
	margin-right: -5%;
	/* [disabled]padding-left: -5%; */
	padding-top: 1%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFF;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	/* [disabled]margin: 20; */
	/* [disabled]padding: 0; */
	/* [disabled]list-style-type: none; */
	/* [disabled]font-size: 100%; */
	/* [disabled]z-index: 1020; */
	/* [disabled]cursor: default; */
	/* [disabled]width: 9em; */
	/* [disabled]position: absolute; */
	/* [disabled]left: -1000em; */
	/* [disabled]text-align: center; */
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	/* [disabled]left: auto; */
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	/* [disabled]width: 9em; */
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	/* [disabled]position: absolute; */
	/* [disabled]margin: 0; */
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	/* [disabled]left: auto; */
	/* [disabled]top: 0; */
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	/* [disabled]border: 1px solid #CCC; */
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	/* [disabled]display: block; */
	/* [disabled]cursor: pointer; */
	/* [disabled]color: #333; */
	text-decoration: none;
	/* [disabled]padding-top: 0px; */
	/* [disabled]padding-right: 0px; */
	/* [disabled]padding-bottom: 10px; */
	/* [disabled]padding-left: 0px; */
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	/* [disabled]color: #FFF; */
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #669999;
	/* [disabled]color: #FFF; */
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 20px;
	padding-left: 20px;
}

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

 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.MenuBarHorizontal a.MenuBarItemSubmenu
{
	/* [disabled]background-image: url(SpryMenuBarDown.gif); */
	/* [disabled]background-repeat: no-repeat; */
	/* [disabled]background-position: 95% 50%; */
	/* [disabled]font-family: Arial, Helvetica, sans-serif; */
	/* [disabled]font-size: 10px; */
	/* [disabled]font-weight: bold; */
	/* [disabled]color: #FFF; */
}
/* 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.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	/* [disabled]background-image: url(SpryMenuBarRight.gif); */
	/* [disabled]background-repeat: no-repeat; */
	/* [disabled]background-position: 95% 50%; */
	/* [disabled]background-color: #02756a; */
}
/* 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.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	/* [disabled]background-image: url(SpryMenuBarDownHover.gif); */
	/* [disabled]background-repeat: no-repeat; */
	/* [disabled]background-position: 95% 50%; */
}
/* 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.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	/* [disabled]background-image: url(SpryMenuBarRightHover.gif); */
	/* [disabled]background-repeat: no-repeat; */
	/* [disabled]background-position: 95% 50%; */
}

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

 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.MenuBarHorizontal iframe
{
	/* [disabled]position: absolute; */
	/* [disabled]z-index: 1010; */
	/* [disabled]border-bottom-color: #FFF; */
}
/* 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.MenuBarHorizontal li.MenuBarItemIE
	{
	/* [disabled]display: inline; */
	/* [disabled]f\loat: left; */
	}
}

.Arial_Form {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 12px;
	font-weight: bold;
	color: #FFF;
	text-align: left;
	padding-left: 10px;
}
.container .content p a {
	text-align: center;
}

