﻿/*CSS for Simple Tree Menu*/
.treeview ul
{
margin: 0px;
padding: 0px;
}

/*Style for LI elements in general (excludes an LI that contains sub lists)*/
.treeview li
{
	list-style-type: none;
	padding-left: 0px;
	margin-bottom: 7px;
}

/* Style for LI that contains sub lists (other ULs). */
.treeview li.submenu
{ 
cursor: hand !important;
cursor: pointer !important;
}

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

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