/*
use xb settings to make ul/li appear the 
same in mozilla, ie and opera
*/

ul.nde-menu-system, ul.nde-menu-system ul
{
  display: compact;
  margin: 0;
  padding: 0;
  background-color:;
}

ul.nde-menu-system li
{
  margin: 0;
}

/* 
top level items in ul are inline to display horizontally 
across page
*/

ul.nde-menu-system li
{
  display:inline;
  list-style: none;
  position: relative;
  width:100%;
  margin: 0;
  width: 7em;
  text-align:left;
  vertical-align:middle;
  background-color:#000000;
}

/* 
nested lists inside of the top level items are initially 
not displayed
*/
ul.nde-menu-system li ul
{
  display: block;
  background-color:#000000;
  position: absolute;
  text-align:left;
  left: 0;
  visibility: hidden;
  width: 7em;
  z-index: 1000;
}

/*
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.nde-menu-system li ul li
{
  margin: 0 0 0 0em;
  padding: 0;
  display:;
  width: 100%;
  text-align:left;
  voice-family: "\"}\""; voice-family:inherit;
  margin-left: 0;
}

ul.nde-menu-system li ul li a
{
  display: compact;
  margin: 0;
  padding: 0 0 0 0%;
  width: 100%;
  voice-family: "\"}\""; voice-family: inherit;
  width: 100%;
  vertical-align:middle;
  background-color:#000000;
}

/* needed to keep IE from bubbling events
from items that are not contained but only
covered. */
ul.nde-menu-system
{
  background-color:;
  width:100%;
}


