body { background: #c9d9e7 url() repeat-x fixed top left}


.treeview{
	margin: 0;
	padding: 0;
	padding-top: 0px;
	padding-left: 5px;
	width:185px;
}

.treeview a { /* CSS for Links */
color: white;
font-family: Arial;
font-size: 12px;
text-decoration: none;
}


.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
color: white;
font-family: Arial;
font-size: 12px;
text-decoration: none;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #355F93 url(list.gif) no-repeat;
background-position: left center; 
list-style-type: none;
padding-left: 20px;
margin-bottom: 1px;
color: white;
font-family: Arial;
font-size: 12px;
text-decoration: none;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #355F93 url(closed.gif) no-repeat;
background-position: left 3px; 
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;
}
