.treeview {
	margin: 10px 0;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	/* background: url('arrow_bullet.gif') no-repeat center left #fff; */
	list-style-type: none;
	padding-left: 0;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	/* background: url('arrow_bullet2.gif') no-repeat 1px left #fff; */
	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. */
	font-weight: normal;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	padding: 0 0 0 12px;
}
.treeview a {
	display: block;
	height: 20px;
	line-height: 20px;
	color: #30b0cf;
	font-size:13px;
	text-decoration: none;
	text-indent: 15px;
	border-bottom: 1px solid #ddd;
}
.treeview a:hover {
	background-color: #eee;
}
.treeview span {
	display: block;
	height: 20px;
	line-height: 20px;
	color: #30b0cf;
	font-size:13px;
	text-decoration: none;
	text-indent: 15px;
	border-bottom: 1px solid #ddd;
	font-weight:bold;
}
.treeview a.all {
	color: #30b0cf;
	font-size:11px;
	text-decoration: none;
	border: 0;
}
.submenu li a {
	font-size: 11px;
	color: #666;
	border: 0;
}
.submenu li a:hover {
	background-color: #fff;
	color: #30b0cf;
}
