/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print { 
/*
ul.mktree {
	clear:both;
}
*/

/* Turn off list bullets */
ul.mktree  li { 
	/*list-style-type: none;*/ 
	list-style: none;
	color: #333; 
	font-size: 12px; 
	font-family: Arial, Helvetica, sans-serif;
}
 
/* Control how "spaced out" the tree is */
ul.mktree {
	padding: 15px 0 20px 17px;
	border-bottom: 2px solid #fff;
}

ul.mktree a {
	color: #66f;
}

ul.mktree ul {
	margin:4px 0 0 5px; 
	padding:0;
}

ul.mktree li {
	padding: 0 0 4px 8px;
	margin-left: 0;
	text-indent: -8px;
}
 
/*ul.mktree ul,
ul.mktree li { 
	margin-left:5px; 
	padding:0; 
}*/
	
/* Provide space for "bullet" image inside the LI */
ul.mktree  li .bullet { padding-left: 6px; }
ul.mktree  ul li .bullet { padding-left: 5px; }
ul.mktree ul ul li .bullet { padding-left: 5px;}
	
/* 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/downArrow.gif)  center left no-repeat; }
ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url(../images/rightArrow.gif)   center left no-repeat; }
ul.mktree  li.liBullet  .bullet { cursor: default; background: url(../images/bullet.gif) 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; }
*/
	

}
