@charset "UTF-8";

/* Navbar Overlay Links */
.Navbar
{
    height:25px;
	
/* Z-Index of 3 overlaps the news scroller */	
	z-index:3;
}
/* Submenus should appear to the right of highlighted item. (0%) (0%) (0%) (100%)
Leftmost Number is up/down location in relation to current item. Negative number moves item up. Positive number moves item down.
Rightmost item determines left/right location. In relation to 100%, lower percentage moves item left. Higher moves item right.
*/
ul.MenuBarHorizontal ul ul
{
	margin: 0 0 0 100%;
	position: absolute;
}
/* Menuitem Container Width - Must Also Change ul.MenuBarHorizontal ul Width to refect this amount.*/
ul.MenuBarHorizontal ul li
{
	width: 14em;
}
/* Menuitem Container Links - Background colors and Font Styles */
ul.MenuBarHorizontal ul li a
{
	border: 1px solid #000000;
	background:#000000;
	color:#FFFF0D;
	text-indent:7px;
	text-align:left;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
/* Do Not Change - Breaks Navbar - Start */	
	display: block;
	width:100%;
	filter:blendTrans(duration=0.50);
/* Do Not Change - Breaks Navbar - End */	
}
/* Menuitem Container Hover Links - Background colors and Font Styles - When Mouse Hovers Over Link */
ul.MenuBarHorizontal ul li a:hover
{
	background:#FFFF0D;
	color:#000000;
}
/* 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
{
	left:auto;
}
/*******************************************************************************

 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
{
    margin: 0; 
	padding: 0;
	list-style-type: none;
	cursor: default;
	width: auto;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	cursor: pointer;
	float: left;
}
/* 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
{
	margin: 0;
	padding: 0;
	z-index: 2;
	list-style-type: none;
	cursor: default;
	width:12em;
	position: absolute;
	left: -1000em;
	
}
/* Design for Navigation Bar UL Links */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
/*	Greyed out to maintain transparency for navigation bar image
	background-color: #EEE;
*/
}
/*******************************************************************************

 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 ul a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	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
{
	position: absolute;
	z-index: 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		
	}
}
