.treeview ul{ /*CSS for Simple Tree Menu*/
/*margin: 0;
padding: 0;
*/
margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(../../images/list.gif) no-repeat 10px 8px;
list-style-type: none;
padding-left: 15px;
margin-bottom: 3px;
	color: #f47f00;	
	font-weight: bold;
	text-decoration:none;
	padding: 2px 0 7px 25px;
	width:350px;
	background-color:#e9e8e8;
}
.treeview li ul li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
width:250px;
}
.treeview ul li a{
	color: #4a4a4a;
	text-decoration:none;
	
}
.treeview ul li a:hover{
	list-style-type: none;
	color: #f47f00;
	
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(../../images/closed.gif) no-repeat left 1px;
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. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}