﻿/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen { 
	/* Turn off list bullets */
	ul.mkTree  li { margin-left: 0; padding-left: 0; list-style: none;}
	/*ul.mkTree  li { list-style: none; } */
	/* Control how "spaced out" the tree is */
	ul.mkTree, ul.mkTree ul , ul.mkTree li { margin-left: 0; padding-left: 0; }
	/* Provide space for our own "bullet" inside the LI */
	ul.mkTree  li           .bullet { padding-left: 0px; margin-left: 0px;}
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.mkTree  li.liOpen    .bullet { cursor: pointer; font-family: "Verdana"; color:#71AA02; margin-left: 1px;}
	ul.mkTree  li.liClosed  .bullet { cursor: pointer; font-family: "Verdana"; color:#71AA02; margin-left: 1px;}
	ul.mkTree  li.liBullet  .bullet { cursor: default; font-family: "Verdana"; color:#71AA02; margin-left: 1px;}

	/* Sublists are visible or not based on class of parent LI */
	ul.mkTree  li.liOpen    ul { display: block; margin-left: 1px }
	ul.mkTree  li.liClosed  ul { display: none; margin-left: 1px }
	/* Format menu items differently depending on what level of the tree they are in */
	ul.mkTree  li { font-size: 8pt; margin-left: 1px; margin-bottom:-15px; padding-bottom:-15px;}
	ul.mkTree  li ul li { font-size: 8pt; margin-left: 1px;}
	ul.mkTree  li ul li ul li { font-size: 8pt; margin-left: 1px;}
	ul.mkTree  ul li ul li ul li li { font-size: 6pt; margin-left: 1px;}
}