/* --------------------------------------------------------------
AH (10-08-09): Changed MenuGroup background-position to bottom.

AH (01-22-10): Upgraded the Menu Styles - Changed MenuItem font color, family, size and weight; Replaced background-image with background-color; Changed height to 25px.
-------------------------------------------------------------- */

.MenuGroup {
  background-position: bottom; /* overides default of top */
/*  background-image: url(/images/layout/nav_bg.gif); Removed */
  background-color: #009900; /* Added */
}

.MenuItem {
  color: #ffffff; /* was #1b6e39; was #006600; was #000000; */
  font-family: verdana; /* was Arial; */
  font-weight: normal; /* was bold; */
  font-size: 9pt; /* was 14px; */
  cursor: pointer;
  height: 25px; /* was 31px; */
  text-align: center;
  border-bottom: 1px solid #ffffff; /* Added */
}

.MenuItemOver {
  color: #005595; 
  background-color: #c5e59a; /* Changed, was #FFFFFF */
  font-family: verdana; /* was Arial; */
  font-weight: normal; /* was bold; */
  font-size: 9pt; /* was 14px; */
  cursor: pointer;
  height: 25px; /* was 31px; */
  text-align: center;
}

/* ----- Sub Department Navigation ----- */

.MenuGroupSubCustom {
  text-align:center;
  color:#FFFFFF;
  background-color:#005595; 
  font-family:Arial; 
  font-weight:bold;
  font-size:10pt;
}

.MenuItemSubCustom {
  color:#FFFFFF; 
  cursor:pointer; /* AH (11-23-09): was "hand" - incorrect css */
  padding:2px;
  text-decoration:none;
  border:1px;
  border-style:solid;
  border-color:#005595;
  white-space: nowrap;
}

.MenuItemOverSubCustom {
  color:#000000; 
  background-color:#8cc63f;
  padding:2px;
  cursor:pointer; /* AH (11-23-09): was "hand" - incorrect css */
  text-decoration:none;
  border:1px;
  border-style:solid;
  border-color:#FFFFFF;
  white-space: nowrap;
}


/* --------------------------------------------------------------
AH (02-05-10): Added class "placeholder" to show the default pointer (arrow) instead of the hand for menu items that are not linked to any page. NOTE: Add "<div class=placeholder>" to the menu item folder name in QContent navigation pane.
-------------------------------------------------------------- */

.placeholder {
  cursor:default;
}