.treeview ul { /*CSS for Simple Tree Menu*/
	margin: 0px;
	padding: 0px;
}

.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-top: 5px;
	text-align:right;
	border-bottom: 1px solid white;
	/*height:45px;*/
}

/*.treeview li:hover { background-color:#84adc6; }*/

.treeview li.nav-head {
	font-weight:bold;
	color:white;
	background-color:black;
	height:25px;
	margin-top:-15px;
}

.treeview li a { /*Style for LI elements having links */
	color:white;
	text-decoration:none;
	display:block;
	height:45px;
}

.treeview li a:hover { /*Style for LI elements having links */
	color:white;
	background-color:#84adc6;
}

.treeview li.submenu { /* Style for LI that contains sub lists (other ULs). */
	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;
	padding-top: 5px;
	background-color:#edecec;
}

.treeview .submenu ul li a { /*Style for LIs Links of ULs that are children of LIs (submenu) */
	color:#333;
	text-decoration:none;
	display:block;
	height:45px;
}