/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print { 
	/* Turn off list bullets */
	ul.mktree  li { list-style: none; } 
	/* Control how "spaced out" the tree is */
	ul.mktree, ul.mktree ul , ul.mktree li { margin-left:5px; padding: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 */
	
	
	/* IMPORTANT 
    ***************************************************
	Eddie has to take additional look of the posititions - center left  - chaged from center left -> top left 
	***************************************************
	*/
	
	ul.mktree  li.liOpen    .bullet { cursor: pointer; background: url(minus.gif)  top left no-repeat; width:19px} 
	/* ul.mktree  li.liOpen    .bullet:before { cursor: pointer; content: "--"; } */
	/* ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url(plus.gif)  center left no-repeat; } */
	
	ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url(plus.gif)  top left no-repeat; width:19px } 
	/* ul.mktree  li.liClosed .bullet:before { cursor: pointer; content: "+"; } */
	ul.mktree  li.liBullet  .bullet { cursor: default; background: url(bullet.gif) top left no-repeat;width:19px }
	/* 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 */
	ul.mktree  li { /* font-size: 12pt; */ list-style-image: none;  }
	ul.mktree  li ul li { /* font-size: 10pt; */ }
	ul.mktree  li ul li ul li { /* font-size: 8pt; */ }
	ul.mktree  li ul li ul li ul li { /* font-size: 6pt; */ }
	ul.mktree { padding-left: 10px; text-indent: -20px; }
}

#treebox{
/*	position: absolute; */
	border: 1px solid #aaa;
	background-color: #f9f9f9;
	padding: 0px;
	padding-left: 4px;
	font-size: 95%; 
	/* Edited by Rado */
	float:left;
	margin-right: 0px;
	margin-bottom: 10px;	
	width: 190px;

}
/* ADD THIS TO CSS */
div#preloaded-images {
   position: absolute;
   overflow: hidden;
   left: -9999px; 
   top: -9999px;
   height: 1px;
   width: 1px;
}

