.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}
.treeview li a {text-decoration:none; color:#FFFFFF;}
.treeview li a:hover {text-decoration:none; color:#000000;}


.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
margin-bottom: 3px;
border-bottom:1px dotted #ffb726;
text-align:right;
}

.treeview li a.here{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
color:#000000;

}           

.treeview li a.main{padding:9px 0px 9px 0px; display:block; font:bold 13px/13px Verdana, Arial, Helvetica, sans-serif; text-decoration:none; color:#fff;}
.treeview li a:hover.main {color:#fff;}

.treeview li.here a.main {color: #000;}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
color: #000;
/*cursor: hand !important; */
cursor: pointer !important;

}

.treeview li ul li {
border-bottom:0px;  padding-left:20px;

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

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}

ul#treemenu1 {margin: 0px 10px;padding:0; width:140px;}