/*
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: block;
  margin: 0;
  padding: 0;
  background:transparent;
  color: white;
}

ul.nde-menu-system li
{
  margin: 0;
  
}

/* 
top level items in ul are blocked vertically 
down the page
*/

ul.nde-menu-system li
{
  border:none;
  background: transparent;
  display: block;
  list-style-type: square;
  position: relative;
  margin: 0;
}

/* 
nested lists inside of the top level items are initially 
not displayed
*/
ul.nde-menu-system li ul
{
  background:white;
  display: block;
  margin-left: 100px;
  visibility: hidden;
  width: 9em;
  z-index: 1000;
  margin-top:-.7em;
  border:none;
}

/*
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
{
  border: 1px groove #022A4D;
  display: block;
  width: 100%;
  margin-top:0;
  voice-family: "\"}\""; voice-family: inherit;
}

ul.nde-menu-system li ul li a
{
  display: block;
  border:none;
  voice-family: "\"}\""; voice-family: inherit;
  width: 90%;
}

/* needed to keep IE from bubbling events
from items that are not contained but only
cove#cc6600. */
ul.nde-menu-system
{
  background-color: #022A4D rgb(100%,100%,100%);
}

