body  { 
	/* background-color: transparent */
	background-color: #00092F;
}

.menu {
	/* padding: 0px; */
	margin: 0px;
	border-style: solid; /* ridge */
	border-width: 1px;
	border-color: #AAAAAA; /* lightblue darkblue darkblue lightblue; */
	position: absolute;
	visibility: hidden;
	text-align: left;
}

.menuItem {

	color: white;
	linkColor: red;

	position: relative;
	display: block;
	margin: 0px; /* Must be 0 for NS4 to wrap lines correctly. */

  /* This next line MUST!!! start with double slashes so NS will ignore and
     IE will pickup. NS shouldn't have padding, is already line height, IE does
     need padding else will be very tight vertically.
  */
  //padding: 2px 1px 4px 4px;

	font-style: normal;
	font-size: 12px; /* smaller is NS4 bug. small*/
	font-family: sans-serif;

	border-bottom: 1px solid #000000;
}

/* linkColor for NS4 and color for all others */
a.menuItem:hover  {
  color: black;
  background-color: #738AA5;  /*white;*/
  cursor: default;
}
/* Redundant font and color info as .menuItem for NS4. All other browsers use
   consistent .menuItem style.
*/
a.menuItem:link  {
  color: white;
	font-style: normal;
	font-family: sans-serif;
	font-size: 12px; /* smaller is NS4 bug. small*/

}


/* linkColor: green; color: purple; */
/* UNUSED
	border-style: solid; compound possibility example: thick solid red; 3D example: groove
	border-color: white;
	font-weight: bold;
	text-decoration: none;
	background-color: black;
	background: red;
*/