ul.treeview {
	margin: 0;
	padding: 0;
	
	margin-top:20px;
	position: absolute;
	z-index: 40;
}

.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)*/
	float:left;
	width:115px;
	
	color:#5a5757;
	list-style-type: none;
	font-size:14px;
	font-weight:bold;
	text-transform:uppercase;
}

.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. */
}

li.submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;

	color:#F26337;
	font-size:11px;
	font-weight:normal;
}
li.submenu ul li:hover {
	color:#52BE61;
}
li.submenu ul li a {
	color:#F26337;
}
li.submenu ul li a:hover {
	color:#52BE61;
}


li.submenu ul.subsubmenu {
	margin-left:0px;
}
li.submenu ul.subsubmenu li a {
	color:#999;
	font-size:11px;
	font-weight:normal;
	text-transform:none;
}

li.submenu ul.subsubmenu li a:hover {
	color:#06C;
}
