/* 
http://www.javascripttoolbox.com/jquery/ 
*/

div.tree div {
 padding-left:16px;
}
div.tree div.parent div {
 display:none;
 cursor:default;
}
div.tree div.parent {
 cursor:pointer !important;
 background:transparent url('../images/plus.png') no-repeat top left;
}
div.tree div.expanded {
 background:transparent url('../images/minus.png') no-repeat top left;
}

div.tree div.parent:hover,div.tree div.parent:active,div.tree div.parent:focus{
	display: block;
	text-decoration: none;
	line-height:1;
	background-color: #CCCCCC;
	color:#FF3300;
	letter-spacing: .01px;
}

