#container {
	width:150px;
}


.treeMenu, .treeMenuRoot {
	list-style-type:none;
	padding-left:0px;
	margin:0;
}
.treeMenu {
	/* Indentation of a sub-item compared to its parent */
	padding-left:10px;
	margin-left:3px;
	border-left:1px dotted #aaa;
}
.treeNode {
	/* Top and bottom space for a node item */
	margin-top:3px;margin-bottom:3px;
	/* Height of the node item */
	height:10px;
	/* Node background color */
	background:#fff;
	/* Font specifications for a node */
	font-family:verdana;
	font-weight:bold;
	font-size:10px;
	color:black;
	cursor:pointer;
}
.treeLeaf {
	/* Top and bottom space for a leaf item */
	margin-top:2px;margin-bottom:2px;
	/* Height of the leaf item */
	height:10px;
	/* Leaf background color */
	background:#fff;
	/* Font specifications for a leaf */
	font-family:verdana;
	font-weight:normal;
	font-size:9px;
	color:black;
}
.treeNode a {
	text-decoration:none;
	color:black;
}
.treeNode a:hover {
	color:red;
	text-decoration:underline;
}
.treeLeaf a {
	text-decoration:none;
	color:black;
}
.treeLeaf a:hover {
	color:red;
	text-decoration:none;
	background:#eee;
}