/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print {
        
        /* Control how "spaced out" the tree is */
        /*ul.mktree { padding:0px; }*/
        ul.mktree li { 
	        /* Turn off list bullets */
	        list-style: none; 
	        padding:0px;
	        margin:0px;
        }
        ul.mktree ul {         
	        position:relative; 
	        left:10px;
	        padding:0px;
	        margin:0px;
        }
        
        /* 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 */
        .liOpen { 
        	background-color: white;
        	width:100%;
        }
         
         li.liOpen .bullet{
         	background-image: url('/images/minus.gif');
         }
        
         li.liClosed  .bullet {        
	        background-image: url('/images/plus.gif');	    
         }
        .liOpen span.bullet,  li.liClosed  span.bullet{ 
        	  left:0px;
        	  width:24px;
	        margin-left:0px;
	        margin-right:0px;
	        padding-left:0px;
	        padding-right: 10px; 
	        cursor: pointer; 	        
	        background-repeat:no-repeat;
	        background-position:left center; 
	        border:none;
        }
        
	    .liBullet  .bullet { 
	        cursor: default;
	        padding-left:14px;
	        list-style: none; 
	        background:none; 
	    }
	    
	    .liOpen .liBullet  .bullet { 
	        cursor: default;
	        padding-left:14px;
	        list-style: none; 
	        background:none; 
	    }
	    
        /* Sublists are visible or not based on class of parent LI */
        .liOpen .liOpen {
        	width:210px;
        }
        .liOpen    ul { display: block;}
        .liClosed  ul { display: none; }
        /* Format menu items differently depending on what level of the tree they are in */
        ul.mktree  li { font-size: 8pt; }
        ul.mktree  li ul li { font-size: 8pt; }
        ul.mktree  li ul li ul li { font-size: 8pt; }
        ul.mktree  li ul li ul li ul li { font-size: 6pt; }
}
