.simpleTree
{
	margin:0;
	padding:0;
	width:100%;
	/*height:350px;*/
	/*border: 1px solid #444444;*/
}
.simpleTree li
{
	list-style: none;
	margin:0;
	padding:0 0 0 16px;
	line-height: 14px;
	font-weight: normal;
}
.simpleTree li span
{
	display: inline;
	clear: left;
	white-space: nowrap;

	font: 1em Georgia;
}
.simpleTree .inactive
{
	color: #888;
}
.simpleTree ul
{
	margin: 0; 
	padding: 0;
	margin-left: 20px;
}
.simpleTree li.root > span
{
	
	background: url(./images/root.png) no-repeat 0 transparent;
	font-weight:bold;
	
	background-color: #DFDFDF;
	color: #000;
	font: 0.9em Tahoma;
	padding: 1px 7px;
	padding-left: 24px;
	width: 91%;
	display: block;
	display: none;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.simpleTree .line
{
	margin:0 0 0 -16px;
	padding:0;
	line-height: 3px;
	height:3px;
	font-size:3px;
}
.simpleTree .line-last
{
	margin:0 0 0 -16px;
	padding:0;
	line-height: 3px;
	height:3px;
	font-size:3px;
}
.simpleTree .line-over
{
	margin:0 0 0 -16px;
	padding:0;
	line-height: 3px;
	height:3px;
	font-size:3px;
	background: url(./images/spacer.gif) 0 0 no-repeat transparent;
}
.simpleTree .line-over-last
{
	margin:0 0 0 -16px;
	padding:0;
	line-height: 3px;
	height:3px;
	font-size:3px;
	background: url(./images/spacer.gif) 0 0 no-repeat transparent;
}
.simpleTree .folder-open,
.simpleTree .folder-open-last
{
	background: url(./images/collapsable.png) 0 -2px no-repeat transparent;
}
.simpleTree .folder-close,
.simpleTree .folder-close-last
{
	background: url(./images/expandable.png) 0 -2px no-repeat transparent;
}

.simpleTree .doc,
.simpleTree .doc-last
{
	background: url(./images/leaf.png) 0 0px no-repeat transparent;
	padding-left: 20px; 
}

.simpleTree .doc span,
.simpleTree .doc-last span
{
	font-style: italic;
	font-family: Georgia;
}

.simpleTree .folder-open.selected > span.text,
.simpleTree .folder-open.selected > span.active,
.simpleTree .folder-open-last.selected > span.text,
.simpleTree .folder-open-last.selected > span.active
.selected-text
{
	/*background-color: #DFDFDF;*/
	color: blue;
	font-style: italic;
	font-family: Georgia;
}

.simpleTree .doc.selected,
.simpleTree .doc-last.selected
{
	/*background-image: url( ./images/leaf_active.png );*/
}
	

.simpleTree .ajax
{
	background: url(./images/spinner.gif) no-repeat 0 0 transparent;
	height: 16px;
	display:none;
}
.simpleTree .ajax li
{
	display:none;
	margin:0; 
	padding:0;
}
.simpleTree .trigger
{
	display:inline;
	margin-left:-16px;
	width: 16px;
	height: 11px;
	cursor:pointer;
}
.simpleTree .text
{
	cursor: default;
}

.simpleTree .folder-open span,
.simpleTree .folder-open-last span,
.simpleTree .folder-close span,
.simpleTree .folder-close-last span
{
	cursor: pointer;
	cursor: default;
}

.simpleTree .doc span,
.simpleTree .doc-last span
{
	cursor: default
}

.simpleTree .folder-open .active,
.simpleTree .folder-open-last .active,
.simpleTree .folder-close .active,
.simpleTree .folder-close-last .active,

.simpleTree .doc .active,
.simpleTree .doc-last .active
{
	cursor: default;
	/*background-color:#99d6e9; /*#F7BE77*/
	padding:0px 2px;
	border-bottom: 1px solid #e7e7dd;
	background-color: #F5F5F5;
	background-color: #DFFFFE;
	
	color: blue;
}
.simpleTree .doc.selected.active-node,
.simpleTree .doc-last.selected.active-node
{
	/*background-image: url(./images/leaf_active_blue.png);*/
	background-image: url(./images/leaf_active_red.png);
}
.simpleTree .action {
	white-space:nowrap;
}
/*
.simpleTree .selected
{
	border: 1px solid #444;
}
*/
#drag_container
{
	background:transparent;
	color:#000;
	font: normal 11px arial, tahoma, helvetica, sans-serif;
	border: 1px dashed #767676;
}
#drag_container ul
{
	list-style: none;
	padding:0;
	margin:0;
}

#drag_container li
{
	list-style: none;
	background-color:transparent;
	line-height:18px;
	white-space: nowrap;
	padding:1px 1px 0px 16px;
	margin:0;
}
#drag_container li span
{
	padding:0;
}

#drag_container li.doc, #drag_container li.doc-last
{
	background: url(./images/leaf.gif) no-repeat -17px 0 transparent;
}
#drag_container .folder-close, #drag_container .folder-close-last
{
	background: url(./images/expandable.gif) no-repeat -17px 0 transparent;
}

#drag_container .folder-open, #drag_container .folder-open-last
{
	background: url(./images/collapsable.gif) no-repeat -17px 0 transparent;
}
.contextMenu
{
	display:none;
}



/************************************************************************************
************************************************************************************/

.simpleTree.tably
{
	margin:0;
	padding:0;
	width:100%;
	/*height:350px;*/
	/*border: 1px solid #444444;*/
}
.simpleTree.tably li
{
	list-style: none;
	margin: 0;
	padding: 0 0 0 15px;
	line-height: 14px;
	font-weight: normal;
	
	display: table;

	width: 100%;
	
}
.simpleTree.tably li span
{
	display:inline;
	clear: left;
	white-space: nowrap;
	font-size:12px;
	
	display: table-cell;
}
.simpleTree.tably .inactive
{
	color:#888;
}
.simpleTree.tably ul
{
	margin:0; 
	padding:0;
}
.simpleTree.tably li.root
{
	margin-left: -16px;
	background: transparent;
	font-weight:bold;
}
.simpleTree.tably .line
{
	/*margin:0 0 0 -16px;*/
	padding:0;
	line-height: 1px;
	line-height: 1px;
	height: 1px;
	font-size: 1px;
	margin: 3px 0;
	background: #D3D3D3 url(./images/line_bg.gif) 0 0 no-repeat;
}
.simpleTree.tably .line-last
{
	margin:0 0 0 -16px;
	padding:0;
	line-height: 3px;
	height:3px;
	font-size:3px;
	background: url(./images/spacer.gif) 0 0 no-repeat transparent;
}
.simpleTree.tably .line-over
{
	margin:0 0 0 -16px;
	padding:0;
	line-height: 3px;
	height:3px;
	font-size:3px;
	background: url(./images/line_bg_over.gif) 0 0 no-repeat transparent;
}
.simpleTree.tably .line-over-last
{
	margin:0 0 0 -16px;
	padding:0;
	line-height: 3px;
	height:3px;
	font-size:3px;
	background: url(./images/line_bg_over_last.gif) 0 0 no-repeat transparent;
}
.simpleTree.tably .folder-open,
.simpleTree.tably .folder-open-last,
.simpleTree.tably .folder-close,
.simpleTree.tably .folder-close-last,
.simpleTree.tably .doc,
.simpleTree.tably .doc-last
{
	background: transparent;
}
.simpleTree.tably .ajax
{
	background: url(./images/spinner.gif) no-repeat 0 0 transparent;
	height: 16px;
	display:none;
}
.simpleTree.tably .ajax li
{
	display:none;
	margin:0; 
	padding:0;
}
.simpleTree.tably .trigger
{
	display:inline;
	margin-left:-15px;
	width: 15px;
	height: 15px;
	cursor: pointer;
}

.simpleTree.tably .folder-open .trigger,
.simpleTree.tably .folder-open-last .trigger
{
	background: url(./images/minus.gif) no-repeat center;
}

.simpleTree.tably .folder-close .trigger,
.simpleTree.tably .folder-close-last .trigger
{
	background: url(./images/plus.gif) no-repeat center;
}

.simpleTree.tably .text
{
	cursor: default;
	display: none;
}
.simpleTree.tably .active
{
	cursor: default;
	/*background-color:#99d6e9; #F7BE77*/
	padding:0px 2px;
	/*border: 1px dashed #444;*/
}
.simpleTree.tably .action {
	white-space:nowrap;
}
/*
.simpleTree.tably .selected
{
	border: 1px solid #444;
}
*/

.simpleTree.tably .field
{
	display: block;
	float: right;
	
	/*display: table-cell;*/
	
	width: 100px;
	font-size: 0.8em;
}

.contextMenu
{
	display:none;
}