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