/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print { 
  ul.outline {font-family:arial,helvetica,sans-serif;}
	/* Turn off list bullets */
	ul.outline  li {list-style:none;} 
	/* Control how "spaced out" the tree is */
	ul.outline, ul.outline ul , ul.outline li {margin-left:10px;padding:0px;}
	/* Provide space for our own "bullet" inside the LI */
	ul.outline  li .bullet {padding-left:15px;}
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.outline  li.liOpen .bullet {cursor:pointer;background:url(../img/buttons/minus_b.gif) top left no-repeat; }
	ul.outline  li.liClosed .bullet {cursor:pointer;background:url(../img/buttons/plus_b.gif) top left no-repeat; }
	ul.outline  li.liBullet .bullet {cursor:default;background:url(../img/buttons/white.gif) top left no-repeat;}
	/* Sublists are visible or not based on class of parent LI */
	ul.outline  li.liOpen    ul {display:block}
	ul.outline  li.liClosed  ul {display:none}
	/* Format menu items differently depending on what level of the tree they are in */
	ul.outline  li {font-size:13px;line-height:20px;color:#006}
  ul.outline li span.bg_grey{background:#DDD}
	ul.outline  li ul li {font-size:12px}
  ul.outline  li ul p{margin:0;padding:0 10px 20px 10px;color:#004080}
	ul.outline  li ul li ul li {font-size:8pt}
	ul.outline  li ul li ul li ul li {font-size:6pt}
}
