.treeview, .treeview ul
{
    padding: 0;
    margin: 0;
    list-style: none;
}
.treeview
{
    width: 159px;
}
.treeview .hitarea
{
    background: url(images/treeview.gif) 0px 0px no-repeat;
    height: 12px;
    width: 12px;
    margin-left: -16px;
    margin-top: 4px;
    margin-right:4px;
    float: right;
    cursor: pointer;
}
/* fix for IE6 */
* html .hitarea
{
    display: inline;
    float: none;
}
.treeview .expandable-hitarea
{
    background-position: -16px 0px;
}
.treeview .collapsable-hitarea
{
    background-position: 0px 0px;
}

/********************************************/
/* Define the menu level styles*/
.treeview a
{
    text-decoration: none;
}
/* level 1 */
.treeview li
{
    background-color: #58774a;
    font-weight: bold;
    color: #fff;
    border-top: solid 1px white;
}
.treeview li a, .treeview li a:visited
{
    margin: 4px 0 4px 0;
    line-height: 20px;
    padding-left: 6px;
    color: #fff;
}
.treeview li a:hover
{
    color: #cdcdcd;
}

/* level 2*/
.treeview ul li
{
    background-color: #a7c772;
    font-weight: normal;
    color: #666;
}
.treeview ul li a, .treeview ul li a:visited
{
    color: #fff;
}
.treeview ul li a:hover
{
    color: #cdcdcd;
}
/* level 3*/
.treeview ul ul li
{
    background-color: #CFE0B1;
}
.treeview ul ul li a, .treeview ul ul li a:visited
{
    color: #666;
    padding-left: 22px;
}
.treeview ul ul li a:hover
{
    color: #cdcdcd;
}
/* level 4 and more */
.treeview ul ul ul li
{
    background-color: #fff;
    padding-left: 10px;
}
.treeview ul ul ul li a, .treeview ul ul ul li a:visited
{
    color: #666;
}
.treeview ul ul ul li a:hover
{
    color: #cdcdcd;
}
