/*CSS for Simple Tree Menu*/#navigation ul {	padding: 0px;	margin: 0px;	text-decoration: none;}#navigation a {	text-decoration: none;}.treeview ul {	margin: 10px;	padding: 0px;	text-decoration: none;}.treeviewTitle {	text-decoration: none;}.treeviewTitle a {	background: white url(../images/list.gif) no-repeat left center;	list-style-type: none;	margin-bottom: 6px;		font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 11px;	color: #000000;	font-weight: bold;	text-decoration: none;}.treeviewTitle a:hover {	color: #339933;	text-decoration: none;}	.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/	background: white url(../images/list.gif) no-repeat left center;	list-style-type: none;	padding-left: 12px;	margin-bottom: 3px;		font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 11px;	color: #666666;	text-decoration: none;}.treeview li a { /* Style for LI that contains sub lists (other ULs). */	font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 11px;	color: #666666;	text-decoration: none;		cursor: default !important;}.treeview li a:hover {	font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 11px;	color: #339933;	text-decoration: none;}.treeview li.submenu { /* Style for LI that contains sub lists (other ULs). */	background: white url(../images/closed.gif) no-repeat left 1px;	cursor: default !important;		font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 11px;	color: #666666;	text-decoration: none;	/*	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 a { /*Style for LIs of ULs that are children of LIs (submenu) */	cursor: default;		font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 10px;	color: #666666;	text-decoration: none;}.treeview .submenu ul li a:hover {	cursor: default;		font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 10px;	color: #339933;	text-decoration: none;}
