/* Put this inside a @media qualifier so Netscape 4 ignores it */
 @media screen, print { 
	/* Turn off list bullets */
	ul.menutree  li { list-style-type: none; } 
	/* Control how "spaced out" the tree is */
	ul.menutree, ul.menutree ul, ul.menutree li { margin: 0;  }
	/* Provide space for our own "bullet" inside the LI */
	ul.menutree li           .bullet { padding: 0 0 0 15; }
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.menutree  li.liOpen    .bullet { cursor: pointer; background: url("img/minus.gif") center left no-repeat; }
	ul.menutree  li.liClosed  .bullet { cursor: pointer; background: url("img/plus.gif") center left no-repeat;  }
	/* ul.menutree  li.liBullet  .bullet { cursor: default; background: url("img/bullet.gif") center left no-repeat; } */
	ul.menutree  li.liBullet  .bullet { cursor: default; background: url("img/blank.gif") center left no-repeat; }	
	/* Sublists are visible or not based on class of parent LI */
	ul.menutree  li.liOpen    ul { display: block; }
	ul.menutree  li.liClosed  ul { display: none; }
	/* Format menu items differently depending on what level of the tree they are in 
	ul.menutree  li { font-size: 12pt; }*/
	ul.menutree  li ul li { margin: 0 0 0 5;  list-style-type: none; }
	ul.menutree  li ul li ul li { font-size: 8pt; }
	ul.menutree  ul li ul li ul li li { font-size: 6pt; }
}
