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

 LAYOUT INFORMATION: describes box model, positioning, z-order

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

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
a {outline:none;}
ul.MenuBarHorizontal
{	
	float: right;
	margin:10px 0 0 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 944px;
	background-color:#d2dbcc;
	height:30px;
}
img{outline:none;}

/* 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 li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	text-align: left;
	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 (-100em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 70%;
	z-index: 1020;
	cursor: default;
	width: 9em;
	position: absolute;
	left: -100em;
}
ul.MenuBarHorizontal ul
{
	padding-top: 0.4em ;
}
ul.MenuBarHorizontal ul a
{
	border-left:none;
	padding: 0.5em .5em;
}
/* 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
{
	width: 15em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 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

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


/* Menu items are a light gray block with right border, padding, and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #d2dbcc;		
	/*padding: 0.5em 1.2em;*/
	font: normal .85em verdana;
	color: #000;
	text-decoration: none;
	
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #81dd54;
	color: #000;
	text-decoration: none;

}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal ul a.MenuBarItemHover, ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul a.MenuBarSubmenuVisible
{
	background-color: #81dd54;
	color: #000;
	text-decoration: none;
}

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

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

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

/* Main menu items are set to use a background image for normal and hover states */
ul.MenuBarHorizontal a.MenuBarItemSubmenu_hom
{
	background-image: url(../images/nav/home.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 54px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;

}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_hom
{
	background-image: url(../images/nav/home.png);
	background-repeat: no-repeat;
	background-position:0 -30px ;
	width: 54px;
	height: 30px;
	margin: 0;
	padding: 0;
	text-decoration: none;
	border:none;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_goals
{
	background-image: url(../images/nav/goals.png);
	background-repeat: no-repeat;
	background-position:0 0;
	width: 80px;
	height: 30px;
	margin: 0;
	padding: 0;
	text-decoration: none;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_goals
{
	background-image: url(../images/nav/goals.png);
	background-repeat: no-repeat;
	background-position: 0 -30px;
	width: 80px;
	height: 30px;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_inv
{
	background-image: url(../images/nav/involved.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 122px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_inv
{
	background-image: url(../images/nav/involved.png);
	background-repeat: no-repeat;
	background-position: 0 -30px;
	width: 122px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_score
{
	background-image: url(../images/nav/scorecard.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 147px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
		}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_score
{
	background-image: url(../images/nav/scorecard.png);
	background-repeat: no-repeat;
	background-position: 0 -30px;
	width: 147px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu_news
{
	background-image: url(../images/nav/news.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 121px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_news
{
	background-image: url(../images/nav/news.png);
	background-repeat: no-repeat;
	background-position: 0 -30px;
	width: 121px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu_mem
{
	background-image: url(../images/nav/members.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 159px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
		}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_mem
{
	background-image: url(../images/nav/members.png);
	background-repeat: no-repeat;
	background-position: 0 -30px;
	width: 159px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu_gov
{
	background-image: url(../images/nav/governance.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 93px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_gov
{
	background-image: url(../images/nav/governance.png);
	background-repeat: no-repeat;
	background-position: 0 -30px;
	width: 93px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu_platypus
{
	background-image: url(../images/nav/platypus.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 111px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_platypus
{
	background-image: url(../images/nav/platypus.png);
	background-repeat: no-repeat;
	background-position: 0 -30px;
	width: 111px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
}
/*you are here states*/
#body_hom ul.MenuBarHorizontal a.MenuBarItemSubmenu_hom {
background-position: 0 -60px;
}
#body_goals ul.MenuBarHorizontal a.MenuBarItemSubmenu_goals {
background-position: 0 -60px;
}
#body_inv ul.MenuBarHorizontal a.MenuBarItemSubmenu_inv {
background-position: 0 -60px;
}
#body_score ul.MenuBarHorizontal a.MenuBarItemSubmenu_score {
background-position: 0 -60px;
}
#body_news ul.MenuBarHorizontal a.MenuBarItemSubmenu_news {
background-position: 0 -60px;
}
#body_mem ul.MenuBarHorizontal a.MenuBarItemSubmenu_mem {
background-position: 0 -60px;
}
#body_gov ul.MenuBarHorizontal a.MenuBarItemSubmenu_gov {
background-position: 0 -60px;
}
#body_platypus ul.MenuBarHorizontal a.MenuBarItemSubmenu_platypus {
background-position: 0 -60px;
}


span.hidden
{
	display: none;
}

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

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

ul.MenuBarHorizontal a.selected{
		background-color: #6d6f71;
		}
/* sub nav*/

#subnav ul{	
	margin:0 0 10px 0;
	padding:0;
	list-style-type: none;
	cursor: default;
	font-size: 100%;
	display:block;
}
#subnav ul li{
	margin: 0 0 2px 0;
	padding:2px 5px 2px 15px;
	list-style-type: none;
	font-size: 80%;
	font-weight:bold;
	text-align: left;
	cursor: pointer;
	background:url(../images/arrow-orange.png) no-repeat left center;
	
}
/*#subnav ul li{
	margin: 0 0 10px 0;
	padding:2px 5px 2px 5px;
	list-style-type: none;
	font-size: 80%;
	font-weight:bold;
	text-align: left;
	cursor: pointer;
	float: left;
	display: inline;
	border-left:1px solid #000;
	
}*/

#subnav ul li a:hover{	color:#000;}*/






