
/* Turn off list bullets */
#content ul.mktree li {
	list-style: none;
} 
/* Control how "spaced out" the tree is */
#content ul{
	text-decoration:none;
	margin-left:20px;
	padding:0px;
}
#content ul.mktree{
	margin:0px;
}

/* Provide space for our own "bullet" inside the LI */
#content ul.mktree  li           .bullet {
	padding-left: 15px;
}
/* Show "bullets" in the links, depending on the class of the LI that the link's in */
#content ul.mktree  li.liOpen    .bullet { 
	cursor: pointer; 
	background: url(../images/mktree_minus.gif)  center left no-repeat; 
}
#content ul.mktree  li.liClosed  .bullet { 
	cursor: pointer; 
	background: url(../images/mktree_plus.gif)   center left no-repeat; 
}
#content ul.mktree  li.liBullet  .bullet { 
	cursor: default; 
	background: url(../images/mktree_bullet.gif) center left no-repeat; 
}
/* Sublists are visible or not based on class of parent LI */
#content ul.mktree  li.liOpen    ul { 
	display: block; 
	font-weight:normal;
}
#content ul.mktree  li.liClosed  ul { 
	display: none; 
}
/* Format menu items differently depending on what level of the tree they are in */
#content ul.mktree  li { 
	font-size: 12px; 
	font-weight:bold;
	line-height:20px;
}
