.treeview a {
	color: #223D51;
	text-decoration: none;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 3;
padding: 3;
margin-left: 5px;
margin-bottom: 3px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(../images/tick.png) no-repeat left center;
list-style-type: none;
padding-left: 20px;

line-height:13px;
margin-bottom: 10px;
margin-top: 10px;
margin-left: -40px;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #223D51;
font-weight:bold;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../images/tick.png) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
margin-bottom: 10px;
margin-top: 10px;


font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: 656565;
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-bottom: 10px;
margin-top: 10px;
margin-left: 30px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}