/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print { 
	/* Turn off list bullets */
	ul.tree  li { list-style: none; } 
	/* Control how "spaced out" the tree is */
	ul.tree, ul.tree ul , ul.tree li { margin-left:10px; padding:0px; }
	/* Provide space for our own "bullet" inside the LI */
	ul.tree  li           .bullet { padding-left: 15px; }
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.tree  li.liOpen    .bullet { cursor: pointer; background: url(../image/minus.GIF)center left no-repeat; }
	ul.tree  li.liClosed  .bullet { cursor: pointer; background: url(../image/plus.GIF)center left no-repeat; }
	ul.tree  li.liBullet  .bullet { cursor: default; background: url(../image/bullet.png)center left no-repeat; }
	/* Sublists are visible or not based on class of parent LI */
	ul.tree  li.liOpen    ul { display: block; }
	ul.tree  li.liClosed  ul { display: none; }
	/* Format menu items differently depending on what level of the tree they are in */
	ul.tree  li { color:#375d03 }
	ul.tree  li ul li { color:#4B7E05; }
	ul.tree  li ul li ul li { color:#51761e}
	ul.tree  li ul li ul li ul li { color:#6c903a}
	#test { overflow:hidden; width:200px;}
}
