/*

	CSS for Simple Tree Menu
	Nolgard, 2008

*/

.treeview ul{ 
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	margin-bottom: 3px;
	background-color: white;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	margin-left: 0.5em;
	background-color: white;
	background-image: url(../pics/bkg/closed.gif);
	background-repeat: no-repeat;
	background-position: 0px 5px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	margin-left: 0.5em;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}



.treeview a, .treeview a:visited {
	text-decoration: none;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	line-height: 1.9em;
	color: #666666;
	padding-left: 20px;
}
.treeview a:hover {
	color: #000000;
	text-decoration: underline;
}
