.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
color:#FFFFFF;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;

font:Arial, Helvetica, sans-serif;
font-size:12px ;
text-align:left;
font-weight: bold; 
margin-left:1px;
padding-bottom:2px


}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
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. */
padding-left:7px;
padding-top:4px;
padding-bottom:1px

}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin-left:5px;
}

a{
 color:#FFFFFF
}

a:link {
    text-decoration:none;
	color: #FFFFFF;
}

a:visited {
    text-decoration:none;
	color:  #FFFFFF;
}
a:hover {
	text-decoration:none;
	color:  #FFFFFF;
}
a:active {
	text-decoration:none;
	color: #FFFFFF;