.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)*/
background:transparent url(../templates/img/freccia_off.png) 0px 50% no-repeat;
list-style-type: none;
padding-left: 22px;
margin-bottom: 3px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background:transparent url(../templates/img/sub_menu_closed.png) 0 3px no-repeat;
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;
}
.treeview a:link, .treeview a:visited {
font-family:Arial, Helvetica, sans-serif;
display:block;
padding:4px 0;
background:transparent;
font-weight:bold;
font-size:12px;
text-decoration:none;
color:#960111;
}
.treeview a:hover, .treeview a:visited:hover {
display:block;
padding:4px 0;
background:transparent url(../templates/img/box_gray_01.png) 0 -48px repeat-x;
color:#333333;
}
.treeview ul li a:link, .treeview ul li a:visited {
display:block;
padding:4px 0;
background:transparent;
font-weight:normal;
color:#666666;
}
.treeview ul li a:hover, .treeview ul li a:visited:hover {
display:block;
padding:4px 0;
background:transparent url(../templates/img/box_gray_01.png) 0 -48px repeat-x;
color:#333333;
}

