.treeview, .treeview ul
{
padding: 0;
margin: 0;
list-style: none;
}
.treeview
{
width: 159px;
}
.treeview .hitarea
{
background: url(images/treeview.png) 0px 0px no-repeat;
height: 16px;
width: 16px;
/*margin-left: -16px;*/
margin-top: 2px;
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: #48348b;
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: #6755a2;
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: #877ab4;
}
.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: #A197C3;
padding-left: 10px;
}
.treeview ul ul ul li a, .treeview ul ul ul li a:visited
{
color: #fff;
}
.treeview ul ul ul li a:hover
{
color: #cdcdcd;
}
