.treeview ul{ /*CSS for Simple Tree Menu*/
	padding: 0px;
	margin: 0px;
}
#sidebar #arbol {
	margin-left: -50px;
}


.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	margin-bottom: 3px;
	text-decoration: none;
	padding-left: 10px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: pointer !important;
	background-repeat: repeat-x;
	background-position: 10px;
	padding-left: 10px;
}


.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) */
	text-decoration: none;
}
.treeview li a {
	list-style-type: none;
	margin-bottom: 3px;
	background-repeat: repeat-x;
	background-position: left center;
	padding-left: 10px;
	text-decoration: none;
	font-size: small;
	font-style: italic;
	color: #6C6F3C;
}
.treeview .submenu ul li a {
	background-repeat: repeat-x;
	background-position: left bottom;
	text-decoration: none;
	font-size: small;
	font-style: italic;
	color: #6C6F3C;
}
.treeview li a:hover {
	list-style-type: none;
	margin-bottom: 3px;
	background-repeat: repeat-x;
	background-position: left center;
	padding-left: 10px;
	text-decoration: none;
	font-size: small;
	font-style: italic;
	color: #FF9900;
}
.treeview .submenu ul li a:hover {
	background-repeat: repeat-x;
	background-position: left bottom;
	text-decoration: none;
	font-size: small;
	font-style: italic;
	color: #FF9900;
}
