.treeview{
margin:10px 0 0 0;
padding:0;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
padding:0;
margin: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(../images/closed.gif) no-repeat 3px center;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
text-decoration:none;
color:#484A95;
list-style-type: none;
padding:5px 0 5px 20px;
margin:0 0 2px 0;
/*border-bottom:1px solid #e1e1e1;*/
}

.treeview li a{
text-decoration:none;
color:#484A95;

}

.treeview li:hover, li a:hover{
color:#ffa000;
}

/*.treeview .submenu ul :visited, a:visited{
color:#ffa000;
}*/



.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../images/closed.gif) no-repeat 3px 8px;
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. */
margin:0;
padding:10px 0 0 0;


}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
padding:0 10px 5px 20px;
background: white url(../images/list1.gif) no-repeat left 4px;
}


.treeview .submenu ul li a:hover{
color:#ffa000;
}
