.toc {
	overflow-y:auto
}
.toc>.toc-list {
	overflow:hidden;
	position:relative
}
.toc>.toc-list li::before {
	content:"\f054" !important;
	font-family:"FontAwesome" !important;
	font-size:10px;
	padding-right:5px;
	color: #fec768;
}

.toc>.toc-list li {
	list-style:none
}
.toc-list {
	margin:0;
	padding-left:12px
}

a.toc-link {
	color:currentColor;
	height:100%
}
.toc-link:hover {
	overflow-y:auto;
	color:#ff5544;
}
.is-collapsible {
	max-height:1000px;
	overflow:hidden;
	transition:all 300ms ease-in-out
}
.is-collapsed {
	max-height:0
}
.is-position-fixed {
	position:fixed !important;
	top:0
}

.toc-link::before {
	background-color:#676767;
	content:' ';
	display:inline-block;
	height:inherit;
	right:0;
	margin-top:-1px;
	position:absolute;
	width:2px
}
.is-active-link::before {
	background-color: #3a92ffcc
}


.is-active-link {
	animation: blinker-toc-title 2s linear infinite;
}
@keyframes blinker-toc-title {
	0% {
		opacity: 0.3;
	}
  50% {
		opacity: 1.0;
  }
	100% {
		opacity: 0.3;
}