/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print { 
	/* Turn off list bullets */
	ul.mktree  li { list-style-type: none; } 
	/* Control how "spaced out" the tree is */
	ul.mktree, ul.mktree ul , ul.mktree li { margin-left:0px; padding:0px; }
	/* Provide space for our own "bullet" inside the LI */
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.mktree  li.liOpen    .bullet { padding-left: 15px; cursor: pointer; background: url(/giddens6/blog/images/minus.gif)  center left no-repeat; }
	ul.mktree  li.liClosed  .bullet { padding-left: 15px; cursor: pointer; background: url(/giddens6/blog/images/plus.gif)   center left no-repeat; }
	ul.mktree  li.liBullet  .bullet { padding-left: 0px; cursor: default; background: url(/giddens6/blog/images/bullet.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; padding-top:10px;}
	/* Format menu items differently depending on what level of the tree they are in */
	ul.mktree  li { font-size: 10pt; line-height:35px; list-style-position: outside; padding-top:10px; }
	ul.mktree  li ul li { font-size: 9pt; line-height:25px; list-style-position: outside; }
	ul.mktree  li ul li ul li { font-size: 8pt;line-height:18px; list-style-position: outside;  }
	ul.mktree  li ul li ul li ul li { font-size: 7pt; line-height:14px; list-style-position: outside; }
}


