.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)*/
list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #8b2c85;
	font-size:13px;
	margin-left:-40px;
	padding-bottom:4px;
	padding-top:4px;
}

.treeview li{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
}


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

.treeview ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	margin-left:0px;
	text-decoration:none;
	display:block;
	font-size:12px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-bottom:-9px;
}
.treeview ul li a {
	text-decoration:none;
	display:block;
	padding:4px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
} 
.treeview ul li a:hover {
	color: #FFFFFF;
	background-color: #79186C;

}

.treeview li ul { 
	padding-bottom:6px;
}
.treeview ul li ul {
	padding-bottom:4px;
}

.treeview ul li ul li a {
	text-decoration:none;
	display:block;
	padding:4px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	font-size:11px;
	color:#333333;
} 
.treeview ul li ul li a:hover {
	color: #FFFFFF;
	background-color: #79186C;

}
#submenu a {
	text-decoration:none;
	display:block;
}

#submenu ul li a {
	color:#000000;
}
#submenu ul li ul li a {
	color:#79186C;
}
#submenu ul li ul li a:hover {
	color:#ffffff;
}
#submenu ul li ul li ul li a {
	color:#000000;
}
#submenu ul li ul li ul li a:hover {
	color:#ffffff;
}
