@charset "utf-8";
/* CSS Document */

.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-left: 22px;
	margin-bottom: 3px;
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
	background-repeat: no-repeat;
	background-position: left center;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
	background-image: url(closed.gif);
	background-repeat: no-repeat;
	background-position: left 1px;
	white-space: normal;
	margin-top: 10px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
	text-decoration: none;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
	text-decoration: none;
}

