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

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

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

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

/* Show "bullets" in the links, depending on the class of the
   LI that the link's in */
ul.TreeView li.aq3open a {
    background: url(/images/treeview_minus.gif) center left no-repeat;
}
ul.TreeView li.aq3closed a {
    background: url(/images/treeview_plus.gif) center left no-repeat;
}
ul.TreeView li.aq3bullet a {
    background: url(/images/treeview_bullet.gif) center left no-repeat;
}

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