@charset "UTF-8";
/* CSS Document */

#treemenu2 {
margin:0px;
list-style-type: none;
padding:0px
}
.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
text-align:left;
margin-bottom: 3px;
padding:0px;
padding-left:20px;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:14px;
color:#036EB4;
text-transform: uppercase;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(closed.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
h
}
.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;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:12px;
color:#17b7da;
font-weight:normal;
text-transform:none;
}
.treeview a {
text-decoration: none;
}