#floatBtns {
	position: fixed;
	width: 70px;
	height: 182px;
	border: 1px solid lightgray;
	bottom: 30%;
	right: 20px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: white;
	border-radius: 5px;
	z-index: 10;
}

.floatBtn {
	cursor: pointer;
	padding: 0px;
	margin: 0px;
	width: auto;
	height: 60px;
	align-items: center;
	text-align: center;
	padding: 10px;
	list-style: none;
	border-bottom-color: lightgray;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.floatBtn:last-of-type {
	border: 0px;
}

.floatBtn img {
	cursor: pointer;
	width: 100%;
	height: 40px;
	animation: floatBtnAnimation 1.5s infinite;
}

.floatbtnText {
	color: dodgerblue;
	line-height: 20px;
	height: 40px;
	width: 100%;
	font-size: 18px;
	display: none;
}


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

.contentBlock {
	margin-top: 20px;
	background-color: white;
	border: 1px solid #D3D3D3;
	padding: 15px;
	padding-top: 10px;
	border-radius: 10px;
}

ol {
	margin-left: 30px;
}

ol p {
	padding: 5px;
	padding-top: 0px;
	font-size: 80%;
	color: gray;
}

ol li {
	padding: 5px;
}

strong {
	color: red;
	font-weight: bold;
	padding-left: 5px;
	padding-right: 5px;
}

code {
	border: 1px solid lightgray;
	background-color: lightyellow;
	color: #800080;
	display: block;
	width: auto;
	height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 30px;
	padding: 20px;
	padding-left: 30px;
	padding-right: 30px;
	text-align: left;
	word-spacing: inherit;
	word-break: break-word;
	white-space: pre-wrap;
	border-radius: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 5px;
}

h3 {
	padding-top: 20px;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-left: 20px;
	margin-right: 20px;
	width: auto;
	border-top: 1px solid lightgray;
}

h6 {
	margin-left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

button {
	cursor: pointer;
}

#documentInfo {
	overflow: hidden;
	padding-top: 10px;
	width: 100%;
	height: auto;
}

#documentInfoPage {
	overflow: hidden;
	padding-top: 10px;
	padding-right: 40px;
	width: 100%;
	height: auto;
}

#outliList {
	position: fixed;
	width: 60px;
	font-size: 50px;
	height: 140px;
	bottom: 400px;
	color: white;
	font-weight: bold;
	text-align: center;
	right: 20px;
	cursor: pointer;
	background-color: cornflowerblue;
}

@keyframes floatBtnAnimation {
	from {
		margin-top: 2px;
	}
	to {
		margin-top: -2px;
	}
}