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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
/*background: #C1D3F6 url(./list.gif) no-repeat left center;*/
list-style-type: none;
margin-top: 0px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
/*background-color:#C1D3F6;*/
/*background-color:#d9dcc5;*/
background-image:url(./pil_closed.gif);
background-repeat:no-repeat;
/*background-attachment:fixed;*/
background-position: top left;
cursor: pointer;
margin-left: -35px;
margin-top: 5px;
padding:0px 3px 0px 3px;
color:#000000;
font-family:Arial;
font-weight: bold;
font-size:14px;
text-decoration:none;
border-width:1px 0px 1px 0px;
border-style:none;
/*border-color:#4D597F;*/
}


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

.treeview .submenu ul li a{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: pointer;
margin-left: 15px;
font-size:12px;
font-weight:lighter;
color: #000000;
text-decoration: none;
padding: 0px 0px 0px 0px;
border: none;
}

.treeview .submenu a:hover {
text-decoration: underline;
}

.treeview img {
vertical-align: bottom;
}

