

.tree { /*CSS for Simple Tree Menu*/
position: relative;
margin top: 100px;
padding-top: 0px;
width: 150px;
margin-left: 0px;

}

.treeview ul{ /*CSS for Simple Tree Menu*/
position: relative;
background: # url() no-repeat left center;
margin top: 0px;
padding-top: 0px;
width: 150px;
left: 0px;

}

.treeview li{ /*Style for LI elements in general (excludes any LI that contains sub lists)*/
background: #E7F7FE;
list-style-type: none;
padding: 4px;
margin-bottom: 3px;
width: 150px;
margin-left: -30px;

}



.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #D6F1FE url(closed.gif) no-repeat right;
padding-left: 4px;
padding-right: 4px;
cursor: hand !important;
cursor: pointer !important;
width: 150px;
margin-left: -30px;

}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
margin-left: 4px;


}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-family: verdana, sans-serif;

/* non IE */
margin-left: -36px;

width: 130px;

}

.treeview .submenu ul li ul{ 
cursor: default;
font-family: verdana, sans-serif;
margin-left: 4px;
background: #336699 url() no-repeat right;

}
.treeview .submenu ul { 
cursor: default;
font-family: verdana, sans-serif;
margin-left: 4px;
background: #336699 url() no-repeat right;

/* non IE */
width: 100px;

}

