.treeview { /*CSS for Simple Tree Menu*/
margin: 0 0 0 20px;
padding: 0;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0 0 0 0px;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(/glj/list.png) no-repeat left center;
list-style-type: none;
cursor:pointer;
color: #BE0003;
font-size:11px; font-weight:bold; font-family:Arial, Helvetica, sans-serif;
}
/*
.treeview li:hover {color: #28883B;}
*/
.treeview li a {
	color:#292929; font-size:11px; text-decoration:none;
}
.treeview li a:hover {
	text-decoration:underline;
}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(main_close.png) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
padding-bottom:14px;
padding-left: 16px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	padding-top:4px;
	padding-left: 10px;
}

li.disabled div {
	color: #999;
}