.treeview ul{ /*CSS for Simple Tree Menu*/
	
	padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding:0 0 0 10px;
	margin:0;
	border-bottom:1px solid #EFEFEF;
	
}

.treeview li a {

	padding-top:10px;
	padding-bottom:10px;
	display:block;
	border-bottom:1px solid #D1D9E0;
	text-decoration:none;
	font-weight:bold;
	color:#5f89af;
} 

.treeview li a:hover {

	background-color:#E3E7EB;

}


.treeview li.submenu {
	background-image: url(../pics/arrow_side.gif);
	background-position: left 13px;
	background-repeat: no-repeat;
	cursor: hand !important;
	cursor: pointer !important;
}

.treeview li.submenu a:hover {

	background-color:#E3E7EB;

}


.treeview li 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;
margin:0;
}

.treeview .submenu ul li a {
	
	border:0;
	padding:5px 0 5px 0;
	font-size:0.9em;

}