/* This is stylesheet for hTree */

/* WITHOUT JavaScript */
.hTree { }
.hTree li { }
.hTree ul li { }
.hTree a { }

/* WITH JavaScript */
.hTreeJS, .hTreeJS ul, .hTreeJS li {
	margin:0;
	padding:0;
}
.hTreeJS li {
	list-style-type:none;
	list-style-position: outside;
	list-style-image: none;
}
.hTreeJS li img {
	border:0;
	color:#f00; /* color for alt-text when img fail to load */
	font-weight:bold;
	cursor:pointer;
}
.hTreeJS ul li {
	margin-left:1em;	/* Indent */
}
.hTreeJS a {
	padding:.1em .5em .1em .1em;
	text-decoration:none;
	color:black;
}
.hTreeJS a:focus,
.hTreeJS a:active {
	background: #316ac5;
	color:#fff;
}
.hTreeJS a:hover {
	color:#000080;
	text-decoration:underline;
}
.hTreeJS a:focus:hover {
	color:#fff;
}


