<!--
/**
 * Set the margins of the page to zero, so that the absolute
 * positions of the menus will be consistent across all browsers.
 * Note the 'marginwidth' and 'marginheight' attributes in 
 * the <body> tag that are required for NSN4 compatibility.
 */
body { 
  margin: 0px;
  padding: 0px;
}

/**
 * Sets style attributes for popup menus. 
 * Note the 'width' property, which is required for Opera
 * compatibility. This value must jive with the menuItemWidth
 * JavaScript value above. The menu width should be two
 * pixels larger than the menu item width to allow for the
 * 1-pixel border on either side.
 */
.menu {
  position: absolute;
  top: 150px;
  width: 120px;
  visibility: hidden;
  background-color: #000000;
}

/**
 * Sets style attributes for popup menu items. 
 * Note the 'width' and 'height' properties, which are
 * required for Opera compatibility. These values must
 * match the menuItemWidth and menuItemHeight JavaScript
 * values above.
 */
.menuitem {
  position: absolute;
  left: 1px; width: 118px; height: 19px;
  background-color: #F4FFFE;
  color: #000000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  cursor: pointer;
}

/**
 * Sets style attributes for highlighted popup menu items. 
 * Note the 'width' and 'height' properties, which are
 * required for Opera compatibility. These values must
 * match the menuItemWidth and menuItemHeight JavaScript
 * values above.
 */
.menuitemon {
  position: absolute;
  left: 1px; width: 118px; height: 19px;
  visibility: hidden;
  background-color: #0099FF;
  color: #FFFFFF;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  cursor: pointer;
}

/**
 * Hides the links that are used in hilighted menu
 * items to make the menu item text clickable in NSN4
 */
.menuitemon a { text-decoration: none; color: #FFFFFF; }

/**
 * Sets the horizontal position and height of each menu. 
 * The height values are calculated and set automatically
 * for NSN4 by the JavaScript code above, which does not
 * support this, but all other browsers rely on these
 * values. Make sure they jive with the JavaScript
 * menuItemHeight variable according to the following
 * relationship:
 *   Menu Height = (menuItemHeight+1)*numMenuItems)+1
 */
#menu1 { left: 141px; height: 61px; top: 150px; }
#menu2 { left:141px; height: 61px; top:171px; }
#menu3 { left:141px; height: 41px; top: 192px;}
#menu4 { left:141px; height: 41px; top: 213px;}
#menu5 { left:141px; height: 81px; top: 234px;}
#menu6 {}
--> 