.help-box {
	position: fixed;
	top: 51px;
	right: -301px;
	width: 300px;
	height: 100vh;
	padding: 0;
	margin: 0;
	background-color: #ffffff;
	border-left: 1px solid #444444;
	z-index: 1000;
}
.help-inner {
	position: relative;
	height: 100%;
	padding: 10px;
}
.btn.btn-help {
	position: absolute;
	top: 0px;
	left: -30px;
	width: 30px;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	line-height: 29px;
	padding: 0;
	margin: 0;
	background-color: #444444;
	border-radius: 0px;
	transition: all 0.4s ease;
}
.btn.btn-help:hover {
	background-color: #666666;
}
.help-content {
	width: 100%;
	height: 90%;
	overflow-y: auto;
}
.help-box .help-header {
	text-align: center;
	padding: 20px 0;
	background-color: #f2f2f2;
}
.help-box .help-header h3,
.help-box .help-header h4 {
	padding: 0;
	margin: 0;
}
.help-box .help-body {
	margin-top: 20px;
}
.help-box .help-body ol {
	list-style: decimal;
}
.help-box .help-body ol,
.help-box .help-body ul {
	padding: 0 0 0 20px;
	margin: 0;
}
.help-box .help-body ol li,
.help-box .help-body ul li {
	line-height: 18px;
	margin-bottom: 10px;
}
.help-box .help-body p {
	padding: 0 10px;
}
.help-box .help-footer {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #dddddd;
}