.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0px;
padding: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(list.gif) no-repeat left center;
list-style-type: none;
padding-left: 0px;
margin-left: 0px;
/* padding-left: 22px;
margin-bottom: 3px; */
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(closed.gif) no-repeat left 1px;
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;
padding-left: 7px;
margin-left: 7px;
}

.menu-level-1 {
background-image: url(images/main-menu-line.gif);
background-repeat:no-repeat;
font-family: Arial, Helvetica, sans-serif;
color: #000000;
font-size: 12px;
height: 20px;
line-height: 180%;
margin-left: 43px;
}

.menu-level-1 a{
text-decoration: none;
color: #000000;
}

.menu-level-2 {
background-image: url(images/sub-menu-line.gif);
background-repeat:no-repeat;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
height: 20px;
line-height: 180%;
margin-left: 43px;
color: #333333;
}

.menu-level-2 a{
text-decoration: none;
color: #333333;
}

.menu-level-3 {
background-image: url(images/sub-sub-menu-line.gif);
background-repeat:no-repeat;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
height: 20px;
line-height: 180%;
margin-left: 43px;
color: #666666;
}

.menu-level-3 a{
text-decoration: none;
color: #666666;
}

