.treeview a{ /*CSS for Simple Tree Menu*/
cursor:hand;
}

.treeview a:hover{
font-weight:bold;
}

.treeview a:visited{
}


.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
font-size:0.7em;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
margin-bottom:4px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
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. */
padding-left:10px;
margin-bottom:0;
}

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

}

.treeview2 ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
font-size:0.7em;
}

.treeview2 li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
margin-bottom:4px;
font-family:Verdana, Arial, Helvetica, sans-serif;
padding-left:14px;
background: url(../images/pil.gif) no-repeat;
background-position:0 7px;
}

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


.treeview2 li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
padding-left:10px;
margin-bottom:0;
}

.treeview2 .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin-bottom:0;

}