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

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-image: url(../images/clickable/minus.gif);
	background-repeat: no-repeat;
	background-position: center;
}
ul.aqtree3clickable li.aq3closed a
{
	background-image: url(../images/clickable/plus.gif);
	background-repeat: no-repeat;
	background-position: center;
}
ul.aqtree3clickable li.aq3bullet a
{
	background-image: url(../images/clickable/bullet.gif);
	background-repeat: no-repeat;
	background-position: center;
}

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