.treeview
{
margin-left:0px;
font-family:"Trebuchet MS", Verdana, Arial;
font-size:12px;
background-color:white;
width:180px;
color:#0090F9;
text-transform:uppercase;
font-weight:bold;
}


.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: url(list2.gif) no-repeat 2px 3px;
list-style-type: none;
padding-left: 0px;
margin-bottom: 0px;
color:#0090F9;
padding:2px;



}

.treeview li a:link, .treeview li a:visited, .treeview li a:active
{
display:block;
color:#0090F9;
text-decoration:none;
font-family:"Trebuchet MS", Verdana, Arial;
font-size:1em;

}

.treeview li a:hover
{
color:#0090F9;
background-color:#E6F2FF
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(closed2.gif) no-repeat 2px 3px;
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. */

}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}


