@charset "UTF-8";
/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
	{
	padding:0px;
	list-style:none;
	font-size:100%;
	width:980px;
	height:38px;
	position:relative;
	background-color: #993333;
	border-right-width: medium;
	border-left-width: medium;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #666666;
	border-left-color: #666666;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	}
	
/* 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:5000;
	}
	
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
	{
	margin:0px;
	padding:0px;
	list-style:none;
	position:relative;
	float:left;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #FFDC2A;
	border-left-style: none;
	}

ul.MenuBarHorizontal li li
	{
	padding:0px;
	}
	
/* 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:0px;
	clear:both;
	background-color:#ffc913;
	padding:0px;
	list-style-type:none;
	font-size:100%;
	z-index:5020;
	cursor:default;
	width:200px;
	position:absolute;
	left:-1100em;
	top:38px; 
	border:2px solid #242424; 
	}
	
/* 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;
	}
	
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
	{
	height:20px;
	}
	
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
	{
	position absolute;
	margin:0% 0 0 100%;
	}
	
/* 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
	{
	left:auto;
	top:0px;
	}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
	{
	display:block;
	float:left;
	color:#000000;
	padding:13px 16px 0px 16px;
	margin:0px;
	text-decoration:none;
	height:25px;
	background:url(file:///C|/Users/Launa/AppData/Local/Temp/images/tnav_reg.jpg) repeat-x;
	border-left:1px solid #ffdc2a;
	border-right:1px solid #ff9d04;
	}

ul.MenuBarHorizontal a.first
	{
	border-left:none;
	}
	
/* Menu items are a light gray block with padding and no text decoration */

ul.MenuBarHorizontal ul a, ul.MenuBarHorizontal ul a:visited, ul.MenuBarHorizontal ul a:link, ul.MenuBarHorizontal ul a:active
	{
	display:block;
	float:left;
	font-size:13px;
	color:#000000;
	cursor:pointer;
	padding:3px 20px 0px 20px;
	height:17px;
	text-decoration:none;
	background-color:#ffc913;
	background-image:none;
	border:none;
	width:160px;
	}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
	{
	display:block;
	color:#ffffff;
	background:url(file:///C|/Users/Launa/AppData/Local/Temp/images/tnav_hover.jpg) repeat-x;
	}
	
ul.MenuBarHorizontal a.active
	{
	display:block;
	color:#ffffff;
	background:url(file:///C|/Users/Launa/AppData/Local/Temp/images/tnav_hover.jpg) repeat-x;
	text-decoration:none;
	}

ul.MenuBarHorizontal ul a:hover, ul.MenuBarHorizontal ul a:focus
	{
	display:block;
	background-color:#6c6c6c;
	background-image:none;
	color:#ffffff;
	text-decoration:none;
	}
	
/* 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:5010;
	}
	
/* 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;
		float:left;
		}
	}
