

/* Turn off list bullets */
ul.aqtree3clickable li { 
	list-style: none; 
}

ul.aqtree3clickable, ul.aqtree3clickable ul, ul.aqtree3clickable li {
  margin: 0; padding: 0; 
}

/* This controls the indent for each sublist */
ul.aqtree3clickable ul {
  padding-left: 20px !important;
}

/* Provide space for our own "bullet" inside the link */
ul.aqtree3clickable li a {
  padding-left: 20px !important;
  text-decoration: none;
  color: #006 !important;
}

/* 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 !important;
}
ul.aqtree3clickable li.aq3closed a {
    background: url(../img/plus.gif) center left no-repeat !important;
}
ul.aqtree3clickable li.aq3bullet a {
    background: url(../img/bullet.gif) center left no-repeat !important;
}

li.aq3open a:hover, li.aq3closed a:hover, li.aq3bullet a:hover {
	background-color: #FFF !important;
	color: #006 !important;
}

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

