.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)*/
	list-style-type: none;
	padding-top: 0px;
	padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
	
	margin-top: 0px;
	margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
	
}

.treeview li.submenu
{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	padding-top: 0px;
	padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
	
	background-image: url(../images/tplus.gif);
	background-repeat: no-repeat;
}

.line
{ 
	padding-top: 0px;
	padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
	
}


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

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


.treeview a:hover
{
	text-decoration:underline;
}