#admin_tree_cont {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 0px;
	bottom: 25px;
	z-index: 1000;
}

#admin_tree_cont .show_tree {
	position: absolute;
	right: -35px;
	width: 35px;
	top: 120px;
	bottom: 120px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	box-shadow: 3px 3px 3px #555555;
	background-color: #25252D;
	cursor: pointer;
}

#admin_tree_cont .show_tree span {
	color: #FFFFFF;
	width: 150px;
	display: block;
	height: 30px;
	line-height: 30px;
	position: relative;
	top: 150px;
	left: 30px;
	-moz-transform: rotate(-90deg);
	-moz-transform-origin: bottom left;
	-webkit-transform: rotate(-90deg);
	-webkit-transform-origin: bottom left;
}

#admin_tree_cont #admin_tree {
	margin: 0px;
	padding: 0px;
	border-right: 1px solid #25252D;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	overflow: auto;
	display: none;
	background: #CFD0D1;
	box-shadow: 3px 3px 3px #555555;
}

#admin_tree_cont ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px 0px 0px 0px;
}

#admin_tree_cont #admin_tree li {
	padding: 2px 0px 2px 13px;
	line-height: 24px;
	position: relative;
}

#admin_tree_cont #admin_tree li .node, #admin_tree_cont #admin_tree li .leaf {
	display: block;
	height: 24px;
	cursor: pointer;
	overflow: hidden;
}

#admin_tree_cont #admin_tree li .node {
	padding: 0px 0px 0px 25px;
}

#admin_tree_cont #admin_tree li .leaf {
	padding: 0px 0px 0px 20px;
}

#admin_tree_cont #admin_tree li span:hover {
	background-color: #F9CA81;
}

#admin_tree li .expander, #admin_tree li .contractor {
	position: absolute;
	top: 10px;
	left: 2px;
	display: block;
	width: 9px;
	height: 9px;
	cursor: pointer;
}
	
#admin_tree li .expander {
	background: url('../images/list_item_sub_plus.png');
}

#admin_tree li .contractor {
	background: url('../images/list_item_sub_minus.png');
}

#admin_tree li a {
	float: right;
	display: block;
	height: 24px;
	line-height: 24px;
	padding: 0px 20px 0px 0px;
}

/* -------------------------------------------------------------------------- */

#admin_tree_cont .toggle_button {
	width: 19px;
	height: 25px;
	position: absolute;
	top: 10px;
	left: 8px;
	background: url('../images/unpinned.png');
}

#admin_tree_cont .toggle_button.active {
	background: url('../images/pinned.png');
}