/* CSS Document */
.treeview ul{ /*CSS for Simple Tree Menu*/
	margin:0px;
	padding: 0px;
	}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: #FCFCFC url(list.gif) no-repeat 1% 3px;
	border-bottom:2px solid #ffffff;
	list-style-type: none;
	padding:2px 5px 2px 20px;
	line-height:15px;
		}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: url(closed.gif) no-repeat left 5px;
	cursor: pointer;
	}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	background: url(open.gif) no-repeat left center;
	list-style-type: none;
	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;
	margin-left:-20px;
	line-height:15px;
	}
/* ----- Link Class ----- */

.treeview li a { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding:0px;
	margin:0px;
	font-size:11px;
	color:#4c4c4c;
	text-decoration:none;
	}
.treeview li a:hover { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding:0px;
	margin:0px;
	font-size:11px;
	color:#D40000;
	text-decoration:none;
	}