.treeview {
	margin: 0 0 0 15px;
	padding: 0 0 20px 0;
	color: #666;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
	color: #666;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding: 3px 0 3px 15px;
	margin: 4px 0;
	color: #333;
	background:url(../images/arrow.gif) 0 6px no-repeat; 
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: url(../images/tree_menu/plus.gif) no-repeat left 5px;
	cursor: hand !important;
	cursor: pointer !important;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}

.treeview a {
	text-decoration: none !important;
	color: #666;
}

.treeview a:hover {
	text-decoration: none !important;
	font-weight:bold;
	color: #666;
}