/* The fonts set below and all other properties, displays the first level text that appears in the menu bar. for example:
COMPANY, PRODUCTS, CUSTOMERS etc... */
div.menuBar,
div.menuBar a.menuButton,
div.menu,
div.menu a.menuItem {
  font-family: "arial";
  font-size: 8pt;
  font-style: normal;
  font-weight: normal;
  color: #ff0000;
}


/* First level menu: BG color, Border, and text alignment for COMPANY, PRODUCTS, CUSTOMERS etc... Padding: Starts with the top, right, bottom, and left positions of the menu, */
div.menuBar {
  background-color: #3d3d3d;
  border: 2px outset #3d3d3d;
  padding: 0px 0px 0px 0px;
  text-align: left;
}

/* First level menu only:*/
div.menuBar a.menuButton {
  background-color: transparent;
  border: 0px solid #3d3d3d;
  color: #FFFFFF;
  cursor: hand;
  left: 0px;
  margin: 0px;
  padding: 3px 52px 3px 6px;
  position: relative;
  text-decoration: none;
  top: 0px;
  z-index: 100;
}

/* table data text size and font */
div.menuBar a.menuButton:hover {
  background-color: transparent;
  border: 1px outset #3d3d3d;
  color: #000000;
}

/* First level menu hover properties only: */
div.menuBar a.menuButtonActive,
div.menuBar a.menuButtonActive:hover {
	background-color: #595959;
	border: 0px inset #3d3d3d;
	color: #ffffff;
	left: 0px;
	top: 0px;
	
}

/* Sub menu & Child menu properties: padding the 1- top , 2- hover area left*/
div.menu {
  background-color: #3d3d3d;
  border: 1px outset #3d3d3d;
  left: 0px;
  padding: 0px 0px 10px 0px;
  position: absolute;
  top: 0px;
  visibility: hidden;
  z-index: 101;
}



/* Sub menu properties: Font Color, Cursor Type, Padding */
div.menu a.menuItem {
  color: #FFFFFF;
  cursor: hand;
  display: block;
  padding: 3px 1em;
  text-decoration: none;
  white-space: nowrap;
}

/* Sub menu highlight color, highlight text color */
div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
	background-color: #595959;
	color: #ffffff;
}

/* table data text size and font */
div.menu a.menuItem span.menuItemText {}

/* table data text size and font */
div.menu a.menuItem span.menuItemArrow {
  margin-right: -.75em;
}

/* table data text size and font */
div.menu div.menuItemSep {
  border: 1px inset #3d3d3d;
  margin: 4px 2px;
}



