.scroll {
	position:relative;
	font-size:1.3em;
	margin-top:20px;
	display:inline-block;
	height:100px;
}
.scroll:hover {
	text-decoration:none;
}
.scroll:after {
	content:'';
	width:40px;
	height:40px;
	position:absolute;
	margin:auto;
	top:10px;
	right:0;
	left:0;
	-webkit-animation:3s arrow infinite ease;
	animation:3s arrow infinite ease;
}
.scroll:after {
	background-image:url(../images/arrow-down.png);/*
	border-right:2px solid #FFF;
	border-bottom:2px solid #FFF;
	-ms-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
	*/
}
.tagline {
	font-size:2.3em;
	letter-spacing:0.02em;
	padding:0;
}
.panel {
	position: relative;
	border-bottom:1px solid #666;
	overflow-x: hidden;
}
.home {
	background: #65c2cf;
	background:hsl(184, 65%, 49%);
	text-align:center;
}
.overview {
	background:#e14456;
	background:hsl(350, 92%, 59%);
}
.configuration {
	background:#6dcb94;
	background:hsl(158, 58%, 52%);
}
.options {
	background:#ec8200;
	background:hsl(28, 100%, 52%);
}
.methods {
	background:#64a0d4;
	background:hsl(200, 60%, 55%);
}
.options .inner, .methods-continued .inner, .methods .inner {
	padding-bottom:45px;
}
.methods-continued {
	background:#9b59b6;
}
.inner {
	width:1300px;
	margin:0 auto;
	text-align:right;
}
pre {
	background:rgba(0, 0, 0, 0.2);
	padding:1.5em 0 1.5em 0;
	font-size:2.1em;
	margin-top:0.7em;
	margin-bottom: 1.6em;
	overflow-x:auto;
}
pre.single {
	padding:0.7em 0.5em 0 0.5em;
	font-size:2.1em;
	margin-top:0.8em;
	margin-bottom: 0.3em;
	/*display:inline-block;*/
	max-width:80%;
}
@-webkit-keyframes arrow {
 0%, 100% {
 top:10px;
}
 50% {
 top:30px;
}
}
@keyframes arrow {
 0%, 100% {
 top:10px;
}
 50% {
 top:30px;
}
}
