/* Put this inside a @media qualifier so Netscape 4 ignores it */

/* check http://www.javascripttoolbox.com/lib/mktree/ */

@media screen, print { 
  
	/* Turn off list bullets */
	#main ul.mktree  li { 
	  list-style-image: none;
    padding-left: 0;
	  list-style-type: none; 
	  background-image: none; } 
	/* Control how "spaced out" the tree is */
    
  #main ul.mktree {
    padding: 0;
    margin: 0; 
    position: relative;
    left: -5px; }

	#main ul.mktree ul {
		margin-left: 10px; }
	      
  #main ul.mktree a {
    text-decoration: none; }
    
	/* Provide space for our own "bullet" inside the LI */
	ul.mktree  li           .bullet { padding-left: 15px; }
	/* 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(../images/sitemap_minus.gif)  center left no-repeat; }
	ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url(../images/sitemap_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; }
	
	/* font-size */
	#main ul.mktree li { font-size: 110%; }
	#main ul.mktree li ul li { font-size: 95%; }
	

}