/*
menubar credits 2 devedge.netscape.com
*/
div#nav {
	z-index: 1001;
	text-align: left;
  	background-color: #69c;
	font-family: Verdana, sans-serif; 
	position: absolute;
	margin: 0;
	padding: 0 0 0 0;
	border: 1px solid #eef;
	border-width: 0px;
	left: 0;
	top: 6em;
	width: 100%;
}
/*
use xb settings to make ul/li appear the 
same in mozilla, ie and opera
*/

ul.menubar, ul.menubar ul
{
  display: block;
  margin: 0;
  padding: 4px 0;
  background-color: #69c;
}
ul.menubar
{
border-bottom: 1px solid #036;
}

ul.menubar li
{
  margin: 0;
}

/* 
top level items in ul are inline to display horizontally 
across page
*/

ul.menubar li
{
  display: inline;
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0;
  background: #69c;
}

ul.menubar li a
{
  text-align: center;
  margin: 0;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: normal;
  text-decoration: none;
  color: #fff;
  background: #69c;
  border-left: 1px solid #ed0;
}
ul.menubar li a:hover
{
  color: #ed0;
}

/* 
nested lists inside of the top level items are initially 
not displayed
*/
ul.menubar li ul
{
  border: 1px solid #fe6;
  border-width: 0 0 1px 1px;
  background: #69c;
  padding: 0;
  margin: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 1.3em; /* required for NS 7.x/Gecko 1.0.x but not Gecko 1.3 */
  visibility: hidden;
  width: 12em;
  z-index: 901;
}

/*
fix up the submenu items
voice-family lines screen correct CSS values from browsers that
improperly lay out block-level boxes and have broken CSS parsers
(IE5.5/Win)
*/
ul.menubar li ul li
{
  border: 1px solid #eee;
  border-width: 0;
  background: #69c;
  margin: 0 0 0 0;
  padding: 0;
  display: block;
  width: 100%;
  voice-family: "\"}\""; voice-family: inherit;
  margin-left: 0;
}

ul.menubar li ul li a
{
  display: block;
  font-weight: normal;
  font-size: 11px;
  text-align: left;
  border: 1px solid #eee;
  border-width: 0;
  background: #69c;
  margin: 0;
  padding: 0 1% 2% 1.4em;
  width: 100%;
  voice-family: "\"}\""; voice-family: inherit;
  width: 90%;
 }

/* needed to keep IE from bubbling events
from items that are not contained but only
covered. */
ul.menubar
{
}