/*Style for LI elements in general (not LIs that contains sub lists)*/
.treeview li { 
background: url(../img/list.gif) no-repeat left center;
list-style-type: none;
padding-left: 12px;
margin-bottom: 3px;
}


/* Style for LI that contains sub lists (other ULs).*/
.treeview li.submenu { 
background: url(../img/closed.gif) no-repeat left 6px;
cursor: hand !important;
cursor: pointer !important;
color: #8a2529;
}

/*
.treeview li.submenu a {   Style for LI that contains sub lists (other ULs). 
font-size: 10px;
font-weight: bold;
color: #83334a;
}
*/

/*Style for SECOND level ULs (submenu)*/
.treeview li.submenu ul{ 
display: none; /* Hide them by default. Don't delete. */
}


/* Style for SECOND level LIs (submenu) */
.treeview .submenu ul li{ 
cursor: default;
background: url(../img/list.gif) no-repeat left center;
margin: 3px 0;
font-size: 12px;
font-weight: normal;
color: #8a2529;
}


/*Style for THIRD level LI that contains sub lists */
.treeview li.submenu ul li.submenu { 
background: url(../img/closed.gif) no-repeat left 6px;
cursor: hand !important;
cursor: pointer !important;
}


/* Style for THIRD level LIs (submenu) */
.treeview .submenu ul li ul li { 
cursor: default;
background: url(../img/list.gif) no-repeat left center;
font-weight: normal;
font-size: 11px;
margin: 3px 0; 
}
