/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print 
{
	ul.nbtree 
	{	z-index:4;
		position:relative;
		font-family:arial;
		font-size:12px;
	}
	/* Turn off list bullets */
	ul.nbtree  li { list-style: none; width:450px;} 
	/* Control how "spaced out" the tree is */
	ul.nbtree, ul.nbtree ul , ul.nbtree li {  margin:0px;  padding:0px; padding-left:10px; }
	/* Provide space for our own "bullet" inside the LI */
	ul.nbtree  li           .bullet { padding-left: 15px; }
	ul.nbtree  li.liOpen		.bullet { cursor: pointer; background: url(./img/minus.gif)  center left no-repeat; }
	ul.nbtree  li.liClosed		.bullet { cursor: pointer; background: url(./img/plus.gif)   center left no-repeat; }
	ul.nbtree  li.liBullet		.bullet { cursor: default; background: url(./img/bullet.gif) center left no-repeat; }
	/* Sublists are visible or not based on class of parent LI */
	ul.nbtree  li.liOpen    ul { display: block; }
	ul.nbtree  li.liClosed  ul { display: none; }
	
	ul.nbtree a {
		text-decoration:none;
		color:Black;
	}

}
