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