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