/*
*************************************************************
   Drop Down Menu Prefs
*************************************************************
*/
a.mnav {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration : underline;
}

a:hover.mnav {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration : none;
}

/**
 * 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: 125px;
  width: 252px;
  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: 250px;
	height: 25px;
	background-color: #CCCC99;	/*Background color for the dropdowns*/
	color: #A90101; /*Background color for the test in the dropdowns*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 10px;
	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: 250px;
  height: 25px;
  visibility: hidden;
  background-color: #999966;
  color: #333366;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
  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:153px; 
	height: 27px;
}

#menu2 { 
	left:200px; 
	height: 142px;
}

#menu3 { 
	left:433px; 
	height: 165px;
}

#menu4 { 
	left:582px; 
	height: 142px;
}

#menu5 { 
	left:582px; 
	height: 119px;
}
-->




