/*
	CSS Style for APNSoft TreeView
	Version 1.1 for Absolute positioning
	Created: 06/13/2006
	Updated: 
	Copyright 2003-2008 APNSoft. All rights reserved.
	http://www.apnsoft.com

	Free for commercial and non-commercial use.
	You can distribute and modify it freely.
*/


.TreeViewDIV /*Main Container DIV*/
{
	overflow:auto;
	height:280px;
	width:240;
	border:solid 1px silver;
	background-color:white;
	padding:12px;
	position:absolute;
	left:30px;
	top:30px;
	
	filter:alpha(opacity=90);/*Semi-Transparency for IE*/
	-moz-opacity:0.9;/*Semi-Transparency for Mozilla*/
	opacity:0.9;/*Semi-Transparency for Gecko*/
}

.TreeViewDIV img /*TreeView Images*/
{
	display:block;
}

.ItemDIVd /*Item DIV*/
{
	font-family:Tahoma;
	font-size:11px;
	color:Black;
	font-weight:normal;
	white-space:nowrap;
	padding:1px;
	padding-left:4px;
	padding-right:4px;
	height:16px;
	background-color:Transparent;
	border:none;
	cursor:default;
}

.ItemDIVe /*Item DIV (hovered)*/
{
	font-family:Tahoma;
	font-size:11px;
	color:Black;
	font-weight:normal;
	white-space:nowrap;
	text-decoration:underline;
	padding:1px;
	padding-left:4px;
	padding-right:4px;
	height:16px;
	background-color:Transparent;
	border:none;
	cursor:default;
}

.ItemSelDIVd /*Item DIV (selected)*/
{
	font-family:Tahoma;
	font-size:11px;
	color:Black;
	font-weight:normal;
	white-space:nowrap;
	padding:1px;
	padding-left:4px;
	padding-right:4px;
	height:16px;
	background-color:#D4D0C8;
	border:none;
	cursor:default;
}

.ItemSelDIVe /*Item DIV (selected & hovered)*/
{
	font-family:Tahoma;
	font-size:11px;
	color:Black;
	font-weight:normal;
	white-space:nowrap;
	padding:1px;
	padding-left:4px;
	padding-right:4px;
	height:16px;
	background-color:#D4D0C8;
	border:none;
	cursor:default;
}

.OpenCloseTD /*TD for the Open/Close button*/
{
	width:18px;
	text-align:center;
}


