.maintree{
margin: 0px;
padding: 0px;
text-align: left;
border: 0px solid yellow;
}
.treeview{ /*CSS for Simple Tree Menu*/
margin: 0px;
padding: 0px;
text-align: left;
border: 0px solid yellow;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0px;
padding: 0px;
text-align: left;
height:100%;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
/*background: url(../images/list.gif) no-repeat left center;*/
list-style-type: none;
padding-left: 13px;
font-family: Arial,Helvetica,sans-serif;
font-size:9pt;
font-weight:bold;
color:#71A9F6;
text-align: left;
border: 0px solid red;
/*padding-left: 22px;  */ 
margin:0px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs).   no-repeat left 1px*/
background-image: url(../images/closed.gif);
background-position: left 2px;
background-repeat:no-repeat;
cursor: hand !important;
cursor: pointer !important;
margin:0px;
/*margin-right:2px;
margin-top:4px;*/
}


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

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
color:#666666;
font-family:Arial,Helvetica,sans-serif;
font-size:11px;
font-weight:normal;
text-decoration:none;
padding-left: 0px;
height:auto;
}

.treeview .submenu ul li a{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: pointer;
color:#989c45;
font-family:Arial,Helvetica,sans-serif;
font-size:8pt;
font-weight:normal;
text-decoration:none;
padding-left: 7px;
}



