/*CSS for Simple Tree Menu*/

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

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

}


.treeview ul
{
	margin: 0;
	padding: 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #c9ddbe;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #c9ddbe;

}

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

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


}

/*Style for ULs that are children of LIs (submenu) */
/*Hide them by default. Don't delete. */
.treeview li.submenu ul
{
	display: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #c9ddbe;
	font-weight: normal;
		background-image: url(http://www.camonet.eu/images/openbg.jpg);
	background-repeat: repeat-x;
}

a.treeview li.submenu ul:link
{
	
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #c9ddbe;
	font-weight: normal;

}

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