/*CSS for Simple Tree Menu*/

.treeview
{
	font-family:arial;
	font-size:8pt;
	margin:0;
	padding:0;
	font-weight: normal;
	text-decoration: none;
	color: #00FF00;
}

a.treeview:link
{
	font-family:arial;
	font-size:8pt;
	margin:0;
	padding:0;
	font-weight: normal;
	text-decoration: none;
}


.treeview ul
{ 
	margin: 0;
	padding: 0;
}

/*Style for LI elements in general (excludes an LI that contains sub lists)*/
.treeview li
{ 
	background: white url(http://www.fineline-imports.nl/images/list.gif) no-repeat left center;
	list-style-type: none;
	padding-left: 14px; 
	margin-bottom: 0px;
}

/* Style for LI that contains sub lists (other ULs). */
.treeview li.submenu
{ 
	background: white url(http://www.fineline-imports.nl/images/closed.gif) no-repeat left 1px;
	cursor: hand !important;
	cursor: pointer !important;
}

/*Style for ULs that are children of LIs (submenu) */
/*Hide them by default. Don't delete. */
.treeview li.submenu ul
{ 
	display: none; 
}

/*Style for LIs of ULs that are children of LIs (submenu) */
.treeview .submenu ul li
{ 
	cursor: default;
}