ul.tree li {
	list-style: none;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
} 
ul.tree {
	display: block;
	height: 340px;
	margin: 0px;
	overflow: auto;
	background-color: #a7d59e;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
	/* Control how "spaced out" the tree is */

ul.tree ul , ul.tree li {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
}
	/* Provide space for our own "bullet" inside the LI */
ul.tree li .bullet {
	padding-left: 24px;
	padding-top: 2px;
}
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
ul.tree li.liOpen .bullet {
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: left center;
	line-height: 30px;
	background-image: url(../images/greenMinus.gif);
	
}
ul.tree li.liClosed .bullet {
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/greenPlus.gif);
}
ul.tree li.liBullet .bullet {
	cursor: default; /*background: none;*/
}
	/* Sublists are visible or not based on class of parent LI */
ul.tree li.liOpen ul {
	display: block;
}
ul.tree li.liClosed ul {
	display: none;
}
ul.tree  li ul {
	list-style-type: none;
}
ul.tree  li ul li ul li ul li .bullet{
	display: none
}

ul.tree  li ul li {
	font-size: 14px;
	padding-left: 0px;
	line-height: 32px;
	margin-left: 5px;
}
ul.tree  li ul li ul li {
	font-weight: normal;
	line-height: 30px;
}
ul.tree  li ul li ul li ul li {
	line-height: 30px;	
}
