
div.docs ul {
	padding: 0% 25px;
	list-style-type: none;
}
div.docs ul + ul {
	margin-top: 5px;
}
div.docs ul li.dir-name {
	cursor: pointer;
	color:#006cb6;
	transition: color .3s;
	text-transform: uppercase;
	font-weight: 400;
	padding-left: 15px;
	margin-left: -15px;
	font-size: 18px;
	line-height: 24px;
}
div.docs ul li.dir-name::before {
	left:3px;
	border-left: 5px solid #000;
	border-bottom: 5px solid transparent;
	border-top: 5px solid transparent;
	top:50%;
	transform:translateY(-50%) rotate(0deg);
}
div.docs ul li.dir-name:hover {
	color:#000;
}
div.docs ul li.dir-name.closed ~ ul {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}
div.docs ul li.dir-name.opened::before {
	transition: transform .5s;
	transform:translateY(-50%) rotate(90deg);
}
div.docs ul li.dir-name.opened ~ ul {
	position: relative;
	transition: all .5s;
	opacity: 1;
	visibility: visible;
}
div.docs ul.files {
	padding:10px 25px;
}
div.docs ul.files li a {
	padding-left: 22px;
	display: block;
}
div.docs ul.files li i {
	text-transform: lowercase;
	font-size: 12px;
}
div.docs ul.files li a::before {
	width:16px;
	height:20px;
	background: url(../images/file.png) left top no-repeat;
	left:0px;
	top:50%;
	transform: translateY(-50%);
}
div.docs ul.files li+li {
	margin-top: 5px;
}
#content #main div.docs ul.files a {
	color: #7d7d7d;
}
#content #main div.docs ul.files a:hover {
	color: #000;
}