.treeview {
	width: 190px;
	font-family: arial, helvetica, sans-serif;
	color: #006fce;
	text-align: center;
	background-color: #ffc65f;
	margin: 0px;
	padding: 0px;
	/*margin-left: 47px;*/
}

.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-color: #ffc65f;
list-style-type: none;
padding-top: 1px;
padding-bottom: 1px;
border-bottom: 1px solid #000;
color: #006fce;
	font-size: 11px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background-color: #ffc65f;
padding-left:5px;
padding-top: 1px;
padding-bottom: 1px;
border-bottom: 1px solid #80a540;
cursor: hand !important;
cursor: pointer !important;
}

.treeview li a:link, .treeview li a:visited {
	color: #006fce;
	text-decoration: none;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
background-color: #ffc65f;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
background-color: #fff;
list-style: none;
list-style-image: none;
padding-left: 10px;
padding-top: 1px;
padding-bottom: 1px;
/*border-bottom: 1px solid #000000;*/
}


