.treeview ul
{ /*CSS for Simple Tree Menu*/
margin: 0 0;
float: left;
display: inline;
list-style-type: none;
width: 140px;
padding-left: 0px;

}

.treeview li
{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(../images/resources/blank.gif) no-repeat left center;
font-weight: bold;
list-style-type: none;
padding-left: 1px;
margin-left: -37px;
margin-bottom: 3px;
width: 150px;
float: left;
display: inline;
background-color: transparent;
}


.treeview li a {
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	font-size: 1em;
	padding: 0 0;
	margin: 0;
}

.treeview li a:hover, .treeview li a.active {
	color: #CC071E;
}
.treeview ul ul {
	margin: 0 0 5px 0;
	padding: 0;
}

.treeview li li {
	margin: 0 0 0 10px;
	padding: 0;
	width: 140px;
}

.treeview li li a {
	font-weight: normal;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../images/resources/blank.gif) no-repeat left 1px;
text-indent: 2px;
cursor: auto;
cursor: pointer;
}

.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;
}
