.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0px;
	padding: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: white url(/images/minus.gif);
	background-repeat:no-repeat; 
	background-position:right center!important;
	background-position:right top;
	list-style-type: none;
	line-height:25px!important;
	line-height:7px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: white url(/images/plus.gif); 
	background-repeat:no-repeat; 
	background-position:right 11px!important;
	background-position:right top;	
	cursor: pointer !important;
}
.treeview li a span{
	display:block;
	padding-right:8px;
}
.selected{
	color:#993333;
	font-weight:bold;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	margin-top:0px!important;
	margin-top:15px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
}

ul{
	padding:0px;
	margin:0px;
}

