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