@charset "UTF-8";
/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* 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  */
ul.MenuBarHorizontal {
	width: auto;
	height: 80px;
	background: #CECED7 url(../CSS-images/nav.jpg);
	margin: 0 0 0 195px;
	text-transform:uppercase;
	padding:0;
	font-size: 13px;
}
/* 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 {
	z-index: 1000;
}
/* Menu item containers, position children relative to this container  */
ul.MenuBarHorizontal li {
	position: relative;
	display:inline;
	font-size: 13px;
}
/* Submenus should appear below their parent with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul {
	top: 65px;
	z-index: 1020;
	width: auto;
	position: absolute;
	left: -1000em;

}
/* Submenu that is showing with class designation MenuBarSubmenuVisible */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {
	left: auto;
	margin: 0 0 0 -130px;	
}
html>ul.MenuBarHorizontal ul.MenuBarSubmenuVisible{
	display:none;

}
/* Menu item containers are same auto width as parent */
ul.MenuBarHorizontal ul li {
	width: auto;
	clear: both;
	
}
/*******************************************************************************
 DESIGN INFORMATION: describes color scheme, borders, fonts
 *******************************************************************************/
ul.MenuBarHorizontal a {
	float: left;
	width: auto;
	border-right: 1px none #3333CC;
	border-left: 1px solid #3366FF;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0px;
	color: #fff;
	background-image:url(../CSS-images/nav.jpg);
	font-family: "Century Gothic", "Trebuchet MS", Helvetica, Arial, Geneva, sans-serif;
	font-size: 13px;
	line-height: 40px;
	font-weight: bold;
	padding-top: 0;
	padding-right: 12px;
	padding-bottom: 0;
	padding-left: 12px;
}
ul.MenuBarHorizontal a:hover {
	background: url(../CSS-images/nav-current2.jpg) repeat-x;
}
ul.MenuBarHorizontal#current a {
	background: url(../CSS-images/nav-current2.jpg) repeat-x;
	}
ul.MenuBarHorizontal ul li a {
	float: left;
	width: 165px;
	font: bold 12px/30px "Century Gothic", "Trebuchet MS", Helvetica, Arial, Geneva, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: normal;
	color: #0066CC;
	background:#F3FBFE url(none);
	margin-top: 0px;
	display:block;
	padding-top: 0;
	padding-right: 14px;
	padding-bottom: 0;
}
ul.MenuBarHorizontal ul li a:hover {
	color: #66B3FF;
	background:#F3FBFE url(none);
}
/*******************************************************************************
 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 {
	position: absolute;
	display:none;
	z-index: 1010;
}
/* 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	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
