@media screen, print { 
/* Turn off list bullets */
ul.mktree  li {
	list-style: none;
	font-size: 8pt;
	font-weight: normal;
} 
/* Control how "spaced out" the tree is */
ul.mktree, ul.mktree li {
	margin-left:15px; padding:0px; text-indent: -30px;
}
ul.mktree ul {
	background-color: #E9E8DB;
	margin-left:0px; padding:0px; text-indent: -15px;
}
ul.mktree ul ul { background-color: #F1F0E8; }
ul.mktree ul ul ul { background-color: #FFFFFF; }
/* Provide space for our own "bullet" inside the LI */
ul.mktree  li .bullet { padding-left: 12px; }
/* 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(../icons/minus.gif)  center left no-repeat; }
ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url(../icons/plus.gif)   center left no-repeat; }
ul.mktree  li.liBullet  .bullet { cursor: default; background: none;}
/* 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; }
}

