.treeview ul{ /*CSS for Simple Tree Menu*/
margin-left: 0px;
padding: 2px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/

background: #f6f8fa  url('images/list.jpg') no-repeat left center;
list-style-type: none;
width:350px;
font-weight:normal;
padding-left: 15px;
margin-bottom: 3px
background-color:#f6f8fa;
}

.treeview li a { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
text-decoration:none;
color:#205090;
font-size:12px;
width:350px;
font-weight:normal;
background:url('images/bw.gif');
}

.treeview li a:hover { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
text-decoration:underline;
color:red;
font-size:12px;
width:350px;
padding-left:5px;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #f6f8fa url('images/closed.gif') no-repeat left 1px;
font-size:13px;
font-weight:bold;
padding-top:2px;
color:#205060;
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. */
color:black;

}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
padding-left:20px;
color:#205070;
font-size:13px;
font-weight:normal;

}