#treeMenuContainer ul {
	padding-left:5px;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
color:#666666;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(../mainimg/list.gif) no-repeat left top;
list-style-type: none;
line-height:15px;
padding-left: 22px;
padding-right:5px;
margin-bottom: 5px;
font-size:12px;
color:#666666;
font-weight:bold;
}

.treeview li a:link {color:#666666;	text-decoration: none;}
.treeview li a:visited {color:#666666; text-decoration: none;}
.treeview li a:active {color:#333333; text-decoration: none;}
.treeview li li a:hover {color:#255829; text-decoration: none;}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(../mainimg/closed.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
}


.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) */
cursor: default;
margin-top:5px;
}

