﻿.TreeView 
{
    font: Arial;
    line-height: 20px;
	cursor: pointer; 
	font-style: normal;
}

.TreeView LI
{
    /* The padding is for the tree view nodes */
    padding: 0 0 0 18px;
    float: left;
    width: 100%;
    list-style: none;
}

.TreeView LI h2 a
{
    font-size: 12px;
    text-decoration: none;
}
	        
	        .TreeView LI h2 a:link, .TreeView LI h2 a:visited {
		        color: #0D1F51;
		        text-decoration: none;
	        }
	        .TreeView LI h2 a:hover {
		        color: #0D1F51;
		        text-decoration: underline;
	        }	
.TreeView LI h3 a
{
    font-size: 11px;
    text-decoration: none;
}	       
	        .TreeView LI h3 a:link, .TreeView LI h3 a:visited {
		        color: #0D1F51;
		        text-decoration: none;
	        }
	        .TreeView LI h3 a:hover {
		        color: #0D1F51;
		        text-decoration: underline;
	        }

.TreeView LI  a
{
    font-size: 10px;
    text-decoration: none;
}
	        .TreeView LI  a:link, .TreeView LI a:visited {
		        color: #666666;
		        text-decoration: none;
	        }
	        .TreeView LI  a:hover {
		        color: #666666;
		        text-decoration: underline;
	        }


.TreeView, .TreeView ul
{
    margin: 0;
    padding: 0;
}

LI.Expanded 
{
    background: url('/images/minus.gif') no-repeat left top;
}

LI.Expanded ul
{
    display: block;
}

LI.Collapsed 
{
    background: url('/images/plus.gif') no-repeat left top;
}

LI.Collapsed ul
{
    display: none;
}

.Highlighted
{
    color: red;
}

.AlternateHighlight
{
    color: blue;
}

