/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print {
	/* Turn off list bullets */
	ul.treeview li { list-style: none outside none; }
	
	/* Control how "spaced out" the tree is */
	ul.treeview, ul.treeview ul, ul.treeview li { padding: 0; }
	ul.treeview { margin: 10px 0; }
	ul.treeview ul { margin: 10px 0 0 10px; }
	ul.treeview li li { margin: 0 0 0 10px; }
	
	/* Provide space for our own "bullet" inside the LI */
	ul.treeview li .bullet { padding-left: 15px; }
	
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.treeview li.liOpen .bullet { cursor: pointer; background: url(http://images.acswebnetworks.com/1010/21/collapse.gif) center left no-repeat; }
	ul.treeview li.liClosed .bullet { cursor: pointer; background: url(http://images.acswebnetworks.com/1010/21/expand.gif) center left no-repeat; }
	ul.treeview li.liBullet .bullet { cursor: default; background: url(http://images.acswebnetworks.com/1010/21/bullet.gif) center left no-repeat; }
	
	/* Sublists are visible or not based on class of parent LI */
	ul.treeview li.liOpen ul { display: block; }
	ul.treeview li.liClosed ul { display: none; }
	
	/* Format menu items differently depending on what level of the tree they are in */
	/* Uncomment this if you want your fonts to decrease in size the deeper they are in the tree */
	/* ul.treeview  li ul li { font-size: 90% }*/
}
