/*
   This style sheet is used to format the main menu for the DHTML drop
   downs. It is activated by JavaScript, so any styles placed here for the
   menu will ONLY appear when JavaScript is enabled on a browser. CSS 1.0
   and 2.0 styles are used and this file is hidden from 4.0 and older
   browsers.
*/

#subNavTop .hasSubs a {
  background: transparent url(/vimages/L6/skin2/navArrows.gif) no-repeat scroll 100% 50%;
  padding-right: 15px; /* Width of sub nav arrow + 2 */
}

#subNavTop .hasSubs {
  position: relative;
}

#subNavTop ul ul {
  margin-top: .5em;
}

/* Undo indenting from that may be there from other CSS files */
#subNavTop li li a,
#subNavTop li li span {
  padding-left: 5px;
  margin-left: 0;
}

/* IE-Win doesn't layer menu items correctly. The drop down menu items will
   appear under all top level section menu items, even if given a z-index.
   The workaround is to position the sub nav 100% from the left side of the
   left column. */
#subNavTop ul.subs {
  left: 100%;
  position: absolute;
  top: -7px; /* Vertical positioning of fly-out menu */
  visibility: hidden;
  z-index: 100;
}

#subNavTop ul.subs,
#subNavTop li li a {
  width: 175px;  /* Widen dropdowns for more text room */
}

