/* CSS Document */
/* style sheets for the tree.
 Idealy need to be extracted and moved to the separate file
		   along with javascript code below. */
		   
		/* style sheet for a tree object UL element and any sub-elements */
		/* NOTE: this style will be automatically assigned by the javascript */
		ul.__tree__, ul.__tree__ ul {
			background: url(images/dtree/vline.gif) repeat-y;	/* vertical line repeated vertically to fill up any gaps */
			margin: 0 0 0 10px;						/* changes default UL margins and padding */
			padding: 0;
		}
		/* style sheet for the each tree item */
		ul.__tree__ li {					
			background: url(images/dtree/node.gif) no-repeat;	/* |- image to prefix each node */
			list-style: none;						/* do not display any default LI markings */
			padding: 0 12px;
		}
		ul.__tree__ li.__last_child__ {				/* |_ image for the last child */
			background: #fff url(images/dtree/lastnode.gif) no-repeat;
		}
		ul.__tree__ span.__selected__ {				/* show text for the selected node in different color */
			background: blue !important;
			color: white;
			
		}


