/* Turn off list bullets */
ul.aqtree3clickable li {
	list-style: none;
  }

ul.aqtree3clickable, ul.aqtree3clickable ul, ul.aqtree3clickable li {
  margin: 2px; padding: 2px;
}

/* 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;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Show "bullets" in the links, depending on the class of the
   LI that the link's in */
ul.aqtree3clickable li.aq3open a {
  background: url(http://www.kwantlen.ca/images/minus.gif) center left no-repeat;
}
ul.aqtree3clickable li.aq3closed a {
  background: url(http://www.kwantlen.ca/images/plus.gif) center left no-repeat;
}
ul.aqtree3clickable li.aq3bullet a {
  background: url(http://www.kwantlen.ca/images/bullet.gif) center left no-repeat;
  background-position: 0 .03em;
  text-indent: -.75em;
  list-style-position: outside;
}

/* Actually show and hide sublists */
ul.aqtree3clickable li.aq3open ul {
  display: block;
}
ul.aqtree3clickable li.aq3closed ul {
  display: none;
  }
