/* Put this inside a @media qualifier so Netscape 4 ignores it */

a.toggle {
	padding-top:10px;
	vertical-align:bottom;
	alignment-baseline:middle;
	}

@media screen, print { 

	/* Turn off list bullets */
	ul.mktree li { 
		list-style: none;  
		} 
	
	ul.mktree, ul.mktree ul, ul.mktree { /* removed li */
		/* Control tree indent from the left */
		margin-left: 0px; 
		/* Control spacing around each ul and li*/
		padding:2px; 
		}
	
	/* Space between bullet and text. */
	ul.mktree li .bullet { 
		padding-left: 7px; 
		}
		
	/* Show "bullets" in the links, depending on the class of the LI that the link is in */
	ul.mktree ul { 
		margin-left: 0px;
		}
	
	/* Show "bullets" in the links, depending on the class of the LI that the link is in */
	ul.mktree li.liOpen .bullet { 
		cursor: pointer; 
		background: url(../images/minus.gif)  center left no-repeat; 
		}
		
	ul.mktree li.liClosed  .bullet { 
		cursor: pointer; 
		background: url(../images/plus.gif)   center left no-repeat; 		
		}
		
	/* No bullets for level 3*/
	ul.mktree  li.liBullet  .bullet { 
		cursor: default; 
		background: url(../images/whitebullet.png) 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; }

	/* Format menu items differently depending on what level of the tree they are in */
	/* Uncomment this if you want your fonts to decrease in size the deeper they are in the tree */

/*	ul.mktree  li ul li { font-size: 80% }*/

	}
	
	
}
