.treeview ul{ /*CSS for Simple Tree Menu*/


font-size:12px; font-family:Verdana, Arial, Helvetica, sans-serif;
margin:0px; padding:0px;
color:#050505;
list-style-type:none;
width:300px;



}

.treeview  li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(images/list.gif)no-repeat left;
list-style-type: none;
padding-left: 18px;
margin-bottom: 3px;
margin-top:4px;
font-size:12px; font-family:Verdana, Arial, Helvetica, sans-serif;
color:#050505;
width:200px;





}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(images/closed.gif) no-repeat left 5px;

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. */

}

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

}
.treeview  li a{color:#050505; text-decoration:none;}
.treeview  li a:hover{color:#050505; text-decoration: underline;}