/* This is the CSS code to run the expandable tree for the resource library */

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

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

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

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

/* Show "bullets" in the links, depending on the class of the
   LI that the link's in */
ul.aqtree3clickable li.aq3open a {
    background: url(graphics/minus.gif) top left no-repeat;
}
ul.aqtree3clickable li.aq3closed a {
    background: url(graphics/plus.gif) top left no-repeat;
}
ul.aqtree3clickable li.aq3bullet {
list-style-image:url(graphics/bullet.gif);
line-height:1.2em;
}
ul.aqtree3clickable li.aq3bullet a {
	padding-left: 0px;
	background:none;
}

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

ul.aqtree3clickable p{
font-size:0.7em;
margin:1px 0 3px 24px;
font-family:Arial, Helvetica, sans-serif;
color:#999999;
}

ul.aqtree3clickable p>a{
font-weight:normal;
color:#999999;
}