/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen { 
	/* Turn off list bullets */
	ul.mktree li { list-style: none; padding: 0px; margin: 0px; border-bottom: 1px solid #9592DB; } 
	ul.mktree		{ margin: 0px; padding: 0px; font-size: 0.7em; line-height: 1.7em; }
	/* margin-left controls how "spaced out" the tree is ; DON'T TOUCH THE PADDING */
	ul.mktree ul  {  padding: 0px; margin-left:5px; }
	/* Provide space for our own "bullet" inside the LI */
	ul.mktree  li           .bullet { padding: 3px 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; cursor: hand; background: url(../images/void.gif)  center left no-repeat; }
	ul.mktree  li.liClosed  .bullet { cursor: pointer; cursor: hand; background: url(../images/void.gif)   center left no-repeat; }
	ul.mktree  li.liBullet  .bullet { cursor: default; background: url(../images/void.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; }
	ul.mktree  li.liOpen { color: #1347AA; }
	/* Format menu items differently depending on what level of the tree they are in */
	ul.mktree  li { font-size: 1em; }
	ul.mktree  li ul li { font-size: 0.9em; border-bottom: 0px; line-height: 1.3em; }
	ul.mktree  li ul li ul li { font-size: 0.9em; }
	ul.mktree  ul li ul li ul li li { font-size: 0.9em; }
}
