ul.treeview {
	margin: 0px;
	padding-left:0px;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0px;
	padding-top:5px;
	padding-left:0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(/imagenes/flechita.gif) no-repeat left 2px;
list-style-type: none;
padding-left: 22px;
margin-bottom: 1px;
padding-bottom:5px;
font-family: "Trebuchet MS";
font-size: 11px;
color: #3E576A;
text-decoration: none;
font-weight: normal;
vertical-align:middle;


}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
background: white url(/imagenes/flechita.gif) no-repeat left 2px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
padding-left: 1px;
margin-bottom: 1px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}