.treeview ul{margin:15px 0;}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
border-bottom:1px solid #ccc;
display:block;
padding:7px 15px 7px 20px;
background:url(/images/bg/list_bullet_2.png) no-repeat 5px center;
}

.treeview li a:link, .treeview li a:visited {color:#666;}
.treeview li a:hover, .treeview li a:active {color:#CC0000;}
.treeview li span {color:#999;font-size:85%;}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(/images/icons/closed.gif) no-repeat left 7px;
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:5px 0;
/*font-size:85%;*/
}

.treeview .submenu ul li { /*Style for LIs of ULs that are children of LIs (submenu) */
border-bottom:0px none;
display:block;
padding:5px 15px 5px 20px;
/*background: url(/images/bg/list_bullet.png) no-repeat 3px 10px;*/
cursor: default;
font-size:85%;
}

.treeview .submenu ul li span {color:#999;font-size:100%;}
.treeview .submenu ul li ul li {font-size:100%;}