.treeview ul{ /*CSS for Simple Tree Menu*/
margin-left: 0;
padding-left: 0;
margin-bottom: 5;
}

ul{
margin-left: 0;
padding-left: 0;
margin-bottom: 5;
color: blue
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background-color: #ADC7E1;
	background-image: url("list.jpg");
	background-repeat: no-repeat;
	background-position: left center;
	list-style-type: none;
	padding-left: 15;
	margin-bottom: 5;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background-color: #ADC7E1;
	background-image: url("closed.jpg");
	background-repeat: no-repeat;
	background-position: 0 1;
	cursor: hand;
	cursor: pointer;
}


.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;
}

.treeview a:link			{
					text-decoration: none; 
					color: blue;
				}

.treeview a:hover			{
					text-decoration: underline; 
					color: blue;
				}
				
.treeview a:active		{
					text-decoration: underline;
					color: yellow;
				}
				
.treeview a:visited		{
					text-decoration: none; 
					color: blue;
				}