/*
  $Log: gtDropdown.css $
  Revision 1.4  2009-03-18 09:15:19-04  Battersby
  - added #gtDropdownHide

  Revision 1.3  2008-12-24 14:23:34-04  Battersby
  - corrected syntax error

  Revision 1.2  2008-10-05 11:45:02-04  Battersby
  - changed gtDropDown to gtDropdown

  Revision 1.1  2008-10-03 21:03:22-04  Battersby
  Initial revision

*/

.gtDropdown {
  border-bottom: 2px solid black;
  margin-left : 0px; /* set menu indent from left edge here */
}

.gtDropdown ul {
  padding: 3px 0;
  margin-left: 0px;
  margin-top: 1px;
  margin-bottom: 0;
  font: bold 12px Verdana;
  list-style-type: none;
  text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.gtDropdown li {
  display: inline;
  margin: 0;
}

.gtDropdown li a {
  text-decoration: none;
  padding: 3px 7px;
  margin-right: 3px;
  border: 1px solid #778;
  color: #2d2b2b; /* text colour of tabs */
  /*background: transparent url(shade.gif) top left repeat-x; */ /*THEME CHANGE HERE*/
  background-color: #ffffff; /* background tab colour */
}

.gtDropdown li a:visited {
  color: #2d2b2b; /* text colour of tabs */
}

.gtDropdown li a:hover {
  text-decoration: underline;
  color: #2d2b2b; /* text colour of tabs */
}

.gtDropdown li.selected {
}

.gtDropdown li.selected a { /* selected main tab style */
  /* background-image: url(shadeactive.gif);*/ /*THEME CHANGE HERE*/
  /* background-color : #00ff00; */ /* colour of tab under mouse cursor */
  background-color : #c7c7c7; /* colour of tab under mouse cursor */
}

.gtDropdown li.selected a:hover{ /* selected main tab style */
  text-decoration: none;
}

/* ######### Style for Drop Down Menu ######### */

.gtDropdownSub {
  position:absolute;
  top: 0;
  border: 1px solid #918d8d; /*THEME CHANGE HERE*/
  border-width: 0 1px;
  font:normal 12px Verdana;
  line-height: 18px;
  z-index: 100;
  background-color: white;
  width: 200px; /* default width unless otherwise specified */
  visibility: hidden;
}

.gtDropdownSub a {
  width: auto;
  display: block;
  /*text-indent: 5px; */
  border: 0 solid #918d8d; /*THEME CHANGE HERE*/
  border-bottom-width: 1px;
  padding-left: 3px;
  padding-right: 3px;
  text-decoration: none;
  color: black !important;
}

* html .gtDropdownSub a { /*IE only hack*/
  width: 100%;
}

.gtDropdownSub a:hover{ /*THEME CHANGE HERE*/
  color: black !important;
  background-color: #edf3f3; /* hover colour of sub menu */
}

#gtDropdownHide {
  display : none; /* used to hide the menu until after it is formatted */
}
