/* Navigation in a tree view */
ul.navTree {
	font-size: 14px;
	font-family: Helvetica, sans-serif;
	color: #061524;
	font-weight: 800;
	margin: 10px 0 0 0;
	padding: 24px 0 0 8px;
	text-align: left;
	height: 456px;
}

ul.navTree a.selected, ul.navTree a.selected:visited {
	color: #CCCCCC;
}

ul.navTree a.selected:hover, ul.navTree a.selected:active {
	color: #99CC33;
}

ul.navTree a, ul.navTree a:visited {
	color: #061524;
	text-decoration: none;
}

ul.navTree a:hover, ul.navTree a:active {
	color: #99CC33;
	text-decoration: none;
}

ul.navTree li {
	margin-left: 16px;
	list-style-type: square;
	padding-top: 10px;
	padding-left: 0;
	white-space: nowrap;  /* Needed for Safari */
}

ul.navTree li.selected, ul.navTree li.selected a, ul.navTree li.selected a:visited {
	color: #CCCCCC;
}

ul.navTree li.selected ul li, ul.navTree li.selected ul li a, ul.navTree li.selected ul li a:visited {
	color: #061524;
}

ul.navTree li ul {
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	margin: 0;
	padding-left: 0;
}

ul.navTree li ul li {
	list-style-type: circle;
	padding-top: 2px;
}

ul.navTree li ul li ul li {
	list-style-type: none;
	padding-top: 0;
}

