﻿/* This style sheet is intended to contain OFTEN CHANGED rules used when the TreeView control adapter is enabled. */
/* Empty rules are provided merely as a convenience for your future use or experimentation. */


.PrettyTree div.AspNet-TreeView ul li
{
    white-space: nowrap;
    padding: 3px 0 2px 0; 
    font-size: 8pt;
    font-family: verdana;
}


.PrettyTree div.AspNet-TreeView ul ul
{
    margin: 2px 0 2px 4px;
}


.PrettyTree div.AspNet-TreeView ul li img
{
    border: none;
    vertical-align: middle;
    margin: 0 2px 0 0;
}

.PrettyTree div.AspNet-TreeView li a
{
    text-decoration: none;
    color:Black;
}

.PrettyTree div.AspNet-TreeView li a:visited
{
    color:Black;
    text-decoration: none;
}

.PrettyTree div.AspNet-TreeView li a:link
{
    color:Black;
    text-decoration: none;
}



.PrettyTree div.AspNet-TreeView li.AspNet-TreeView-Root
{
	font-size:10pt;
	font-weight:bold;
	color:White;
	margin-left:0;
}

.PrettyTree div.AspNet-TreeView li.AspNet-TreeView-Parent
{
	font-size:8pt;
	font-weight:normal;
	color:Black;
	margin-left:0;	
	
}

.PrettyTree div.AspNet-TreeView li.AspNet-TreeView-Leaf
{
	font-size: 8pt;
	font-weight: bold;
	color: Black;
	margin-left:10px;
}

/* Consider changing the cursor value (below) to something like */
/*     cursor: n-resize;                                        */
.PrettyTree div.AspNet-TreeView .AspNet-TreeView-ClickableNonlink
{
    cursor: pointer;
}

/* Consider changing the cursor value (below) to something like */
/*     cursor: n-resize;                                        */
.PrettyTree div.AspNet-TreeView .AspNet-TreeView-Collapse
{
    background: url(collapse.gif) 0 -2px no-repeat;
    width: 15px;
    float:left;
    cursor: pointer;
}

/* Consider changing the cursor value (below) to something like */
/*     cursor: n-resize;                                        */
.PrettyTree div.AspNet-TreeView .AspNet-TreeView-Expand
{
	background: url(expand.gif) no-repeat 0px -2px;
	width: 15px;
	float: left;
	cursor: pointer;
}

/* ------------------------------------------------------------------- */
/* Specific to this sample web site. */
/* These rules are probably not useful in your site. */

#SampleTreeView
{
    background: #B9D3EE;
}

#SampleTreeView #Sample-Control
{
    float:left;
    width: 170px;
    background: #F5F5F5;
    padding: 10px;
    position:relative;
}

#SampleTreeView #Sample-Content
{
    margin: 30px 10px 30px 200px;
    font-family: "Times New Roman";
    font-size:small;
    font-style:italic;
    color: Black;    
}

#SampleTreeView .getBelowFloats
{
    clear:both;
}
