/* 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:400px;} 
	/* 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; }
	ul.nbtree  li.row1 {background-color:#F4F4F4;position:relative;}
	ul.nbtree  li.row2 {background-color:#F0F0F0;position:relative;}
.filedata {
	position:absolute;
	right:2px;	
	top:-2px;
}
	/* 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;
	}
	/* 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.nbtree  li ul li { font-size: 90% }
*/

}
