.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)*/
/*background: white url(list.gif) no-repeat left center; initially centered but did not match*/
background: white url(../cat/list.gif) no-repeat left 2px;
list-style-type: none;
padding-left: 22px;
/*padding-left: 22px;*/
/*margin-left changes the indentation of main links*/
margin-left:-35px;
margin-bottom:0;
color: #0000CC;
font-size:14px;
}

.treeview a{
text-decoration:none;
font-size:14px;
color: #0000CC;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs).*/ 
background: white url(../cat/closed.gif) no-repeat left 2px;
margin-bottom:0;
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. */
margin-left:35px;/*this changes indentation of sub links*/
}

.treeview li.submenu ul li a{ /*Style for links that are children of LIs (submenu) */
color: #000;
font-size:12px;
}

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