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