@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

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

/************************************************s*******************************

 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_2
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 99%;
	cursor: default;
	width: auto;
		height: 98px;

}
/* 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 and are a fixed width */
ul.MenuBarHorizontal_2 li
{
	padding: 0;
	list-style-type: none;
	font-size: 99%;
	position: relative;
	text-align: left;
	cursor: pointer;
	height: 98px;
	background-repeat: repeat-x;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5;
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal_2 ul li
{
	width: 145px;
height: 98px;
	background-repeat: repeat-x;
}


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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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


/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal_2 a
{
	display: block;
	cursor: pointer;
	color: #999999;
	text-decoration: none;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
	height: 98px;
	background-repeat: repeat-x;
	padding-top: 25px;
	padding-right: 0.4em;
	padding-bottom: 0.2em;
	padding-left: 0.4em;
	margin-left: 25px;
	background-image: url(../style/menu.png);
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal_2 a:hover, ul.MenuBarHorizontal_2 a:focus
{

	
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal_2 a.MenuBarItemHover, ul.MenuBarHorizontal_2 a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal_2 a.MenuBarSubmenuVisible
{
	color: #990000;
	background-image: url(../style/menu_hover.png);
	height: 98px;
	background-repeat: repeat-x;
	font-size: 1em;
}






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

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

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



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

 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_2 iframe
{
	position: absolute;
	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_2 li.MenuBarItemIE
	{
	display: inline;
	f\loat: left;
	background-color: #EDEDED;
	background-image: url(../style/menu.png);
	}
}

