/* Turn off list bullets */
ul {
  margin: 0px;
  padding-left: 9px;
  text-indent: 0px;
  list-style: none;
  text-transform: none;
}
ul.aqtree3clickable li {
  list-style: none;
}
li {
  text-indent: 0px;
}
ul.aqtreeclickable, ul.aqtreeclickable ul, ul.aqtreeclickable li {
  margin: 0; padding: 0;
}

/* Provide space for our own "bullet" inside the link */
ul.aqtree3clickable li a {
  padding-left: 20px;
}

/* Show "bullets" in the links, depending on the class of the
   LI that the link's in */

ul.aqtree3clickable li.aq3open a {
    background: url(/img/minus.gif) center left no-repeat;
}
ul.aqtree3clickable li.aq3closed a {
    background: url(/img/plus.gif) center left no-repeat;
}
ul.aqtree3clickable li.aq3bullet a {
    background: url(/img/bullet.gif) center left no-repeat;
}

/* Actually show and hide sublists */
ul.aqtree3clickable li.aq3open ul {
  display: block;
}
ul.aqtree3clickable li.aq3closed ul {
  display: none;
}
