@charset "utf-8";
/* CSS Document */

.TreeView 
{
    /*font: Verdana;*/
    line-height: 20px;
	cursor: pointer; 
	font-style: normal;
	font-weight:bold;
}

.TreeView LI
{
    /* The padding is for the tree view nodes */
    padding: 0 0 0 10px;
    float: left;
    width: 100%;
    list-style: none;
	border-bottom:1px solid #DEDBCC;
}

.TreeView, .TreeView ul
{
    margin: 0;
    padding: 0;
}

LI.Expanded 
{
    background: url(minus.gif) no-repeat left top;
	border:none;
}

LI.Expanded ul
{
    display: block;
}

LI.Collapsed 
{
    background:#e4e2d7 url(plus.gif) no-repeat left top;
}

LI.Collapsed ul
{
    display: none;
}

.Highlighted
{
    color: #5d574b;
}

.AlternateHighlight
{
    color:#000;
}