@charset "UTF-8";


#topnav{             /*Div around spry top nav to make background pale green*/
text-align: center;
margin-top:12px;

background-color:#87a132;
padding-bottom:40px;

border-bottom:1px;
border-bottom-style:solid;
border-bottom-color:#ffffff;

border-top:1px;
border-top-style:solid;
border-top-color:#ffffff;}



/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal{
    margin-left:auto;
	margin-right:auto;
	padding-left: 0px;
	padding-bottom:3px;
	list-style-type: none;
	cursor: default;
}



/* 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;}

/* TOP Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{   list-style-type:none;
    cursor: pointer;
	width: 108px;
	float:left;
	text-align:center;
	padding-left: 2px;}



/* 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;
	list-style-type: none;
	font-size: 87%;
	z-index: 1000;
	cursor: default;
	width: 108px;
	position: absolute;
	left: -1000em;}

/* 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;}

/* DROPDOWN WIDTH Menu item containers are same-slightly wider fixed width as parent */
ul.MenuBarHorizontal ul li
{width: 108px;}


/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{position: absolute;
	margin: 18% 0 0 95%;}

/* 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;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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


/* TOP LEVEL NAV */
ul.MenuBarHorizontal a
{
    display: block;
	cursor: pointer;
	padding-top: 0.5em;
    padding-bottom: 0.5em;
    color:#ffffff;
	font-size:90%;
	font-weight:bold;
	text-decoration: none;
	background-color:#87a132;}



/*  FIRST SUBNAV, then             HOVER AND OPEN NAV TEXT Menu items that are open with submenus are set to MenuBarItemHover with darker text  */
ul.MenuBarHorizontal a.MenuBarItemHover,  ul.MenuBarHorizontal a.MenuBarItemSubmenuHover,   ul.MenuBarHorizontal a.MenuBarSubmenuvisited
{color:#d4e49d;}

ul.MenuBarHorizontal .dropdown {    /*Styling of the submenus*/
padding-top: 0.9em;
padding-right: 1px;
padding-bottom: 0.9em;
padding-left: 1px;

background-color:#87a132;

font-size:.9em;
border:1px;
border-style:solid;
border-color:#ffffff;}


ul.MenuBarHorizontal .dropdowntop {    /*Styling of the top submenus to POSITION THEM CORRECTLY*/
background-color:#87a132;
font-size:.9em;

border: 1px;
border-style:solid;
border-color:#ffffff;
margin-top:14px;}



ul.MenuBarHorizontal iframe {
position : absolute;
z-index : 1010;
} 








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

 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: 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;
		background-color:#87a132;
	}
}
