@charset "utf-8";
/* CSS Document */

/* -----   EXPANDING FOLDERS   ----- */

.css-treeview ul,
.css-treeview li
{
	padding: 0;
	margin: 0;
	list-style: none;
}

.css-treeview input
{
	position: absolute;
	opacity: 0;
}

.css-treeview
{
	font: normal 13px "Segoe UI", Arial, Sans-serif;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.css-treeview a
{
	text-decoration: none;
}

.css-treeview a:hover
{
	text-decoration: underline;
	color: #c85d16;
}

.css-treeview input + label + ul
{
	margin: 0 0 10px 32px;
}

.css-treeview input + label + ul
{
	display: none;
}

.css-treeview input + label
{
	background-image:url(../images/menu_list.png);
	background-repeat:no-repeat;	
}

.css-treeview label,
.css-treeview label::before
{
	cursor: pointer;
	margin-bottom:5px;
}

.css-treeview input:disabled + label
{
	cursor: default;
	opacity: .6;
}

.css-treeview input:checked:not(:disabled) + label + ul
{
	display: block;
}

.css-treeview label,
.css-treeview label::before
{
	background: url("images/menu_list.png") no-repeat;
}

.css-treeview_doc
{
	display: block;
	color: #666;
	font-weight: normal;
	text-decoration: none;
}


.css-treeview label,
.css-treeview a,
.css-treeview label::before
{
	display: inline-block;
	height: 16px;
	line-height: 16px;,
	vertical-align: middle;
}

.css-treeview label
{
	background-position: 18px 0;
}

.css-treeview label::before
{
	content: "";
	width: 16px;
	margin: 0 22px 0 0;
	vertical-align: middle;
	background-position: 0 -32px;
}

.css-treeview label a:hover
{
	color:#FF0000;
}

.css-treeview input:checked + label::before
{
	background-position: 0 -16px;
}

/* webkit adjacent element selector bugfix */
@media screen and (-webkit-min-device-pixel-ratio:0)
{
	.css-treeview 
	{
		-webkit-animation: webkit-adjacent-element-selector-bugfix infinite 1s;
	}
	
	@-webkit-keyframes webkit-adjacent-element-selector-bugfix 
	{
		from 
		{ 
			padding: 0;
		} 
		to 
		{ 
			padding: 0;
		}
	}
}
/* end of expanding folders */
