@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 with no margin or padding */
ul.MenuBarHorizontal {
  list-style-type: none;
  cursor: default;
  width: 800px;
  margin: 0;
  padding: 0;
}

/* Set the z-index to accomodate IE rendering bug:  */
ul.MenuBarActive { z-index: 1000; }

/* Fixed width menu item containers, position children relative to this container 
change width to fit list items on the bar */
ul.MenuBarHorizontal li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 6px; /* font-size: 80%; /* was font-size: 80%; */
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 98px; /* IE loses last li if this is set to 8 * 100 */
  float: left;
  border-bottom: 1px solid #000000;
}

/* Submenus appear below 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;
 list-style-type: none;
 z-index: 1020;
 cursor: default;
 width: 130px;
 position: absolute;
 left: -1000em;
 background-color: #87a231; color: #000000;
 border-bottom: 1px solid #000;
}

ul.MenuBarHorizontal ul li {
 width: 130px; /* bump this up a little higher than the parent - gw */
 border-bottom: 1px solid #000;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul {
 position: absolute;
 margin: -5% 0 0 95%; /* no effect */
}

/* 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: 0;
}

/*******************************************************************************
 SUBMENU INDICATION: styles if there is a submenu under a given menu item
 *******************************************************************************/
/* 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 { /* THIS CONTROLS THE SUBMENU; BUT SEE BELOW FOR MAIN MENU*/
	left: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px; /* doesn't work - SEE #container p IN MAIN CSS */
}

/* 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 { /* controls FOR MAIN MENU WHEN THERE IS A SUBMENU */
 background-image: none; 
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 14px; /* doesn't work  - SEE #container p IN MAIN CSS */
}

ul.MenuBarHorizontal ul a.MenuBarItemSubmenu, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover,
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover { background-image: none; }

/*******************************************************************************
 DESIGN INFORMATION: describes color scheme, borders, fonts
 *******************************************************************************/
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul {
 margin: 1px 0 0 0; /* allow the bottom border above to show since submenus don't have a top border*/
 border: 1px solid #000000;
}

ul.MenuBarHorizontal a { /* this and the :visited element below determine menu and subitem properties */
 display: block;
 cursor: pointer;
 background-color: #87a231; color: #000000;
 padding: 0.5em 0.75em;
 text-decoration: none;
}

ul.MenuBarHorizontal a:visited { /* this and the element above determine menu and subitem properties */
 display: block;
 cursor: pointer;
 background-color: #87a231; color: #000000;
 padding: 0.5em 0.75em;
 text-decoration: none;
}

ul.MenuBarHorizontal a:active {
 display: block;
 cursor: pointer;
 padding: 0.5em 0.75em;
 color: #000000;
 text-decoration: none;
}

/* Mouse over properties */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, 
ul.MenuBarHorizontal a.MenuBarSubmenuVisible,
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {
 background-color: #5d6e2d; /* this is the highlight color*/
 color: #000000; 
}

/* HACK FOR IE: to make sure the sub menus show above form controls, underlay each submenu with an iframe */
ul.MenuBarHorizontal 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 li.MenuBarItemIE {
   display: inline;
   f\loat: left;
   background: #FFF;
} }
