.treeview {
  font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-align: left;	
	background: #EBEBEB; 
	padding-top: 2px;	
	padding-left: 0px;	
	margin-left: 2px;
	margin-bottom: 0px;
	WHITE-SPACE: nowrap;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: #EBEBEB url(../images/list.gif) no-repeat left center;
	list-style-type: none;
	padding-left: 21px;
	margin-bottom: 3px;
}

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


.treeview li {
	color : #322929;
}


.treeview a,
.treeview a:link {
	text-decoration : none;
	color : #322929;
}

.treeview a:focus,
.treeview a:hover {
	color : #cc0000;
}

.treeview a:active {
    color : #cc6666;
}

.treeview li.currentpage a {
	color: #993333; 
	font-style: normal; 
	text-decoration: underline; 
}    

* html .treeview li.currentpage a:visited {
	color: #993333; 
	font-style: normal; 
	text-decoration: underline; 
} 