.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
color:#606060;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
//background:#e0e0e0 url(images/chow/sch/sidebarbg.gif) top right repeat-y;
list-style-type: none;
padding-left: 22px;
margin:5px -18px 5px 0;
color:#606060;
font-size:1.8em; font-weight:normal; text-decoration:none; letter-spacing:-2px;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). LEVEL1*/
background: #e0e0e0 url(images/chow/sch/closed.gif) left no-repeat 6px;
color:#606060;
cursor: hand !important;
cursor: pointer !important;
margin: -5px 18px 5px 0;
}



.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) LEVEL2*/
cursor: default;
margin:8px 0 5px 0;
color:#606060;
font-size:0.8em; font-weight:normal; text-decoration:none; letter-spacing:-2px;
}

.treeview .submenu ul li ul li:hover 
{
color:#303030; background:#f0f0f0 ;
}



