body {
	background-color: #fafafa;
}

header {
	height: 80px;
	background: url(../images/header_bg.jpg) no-repeat center top;
	background-size: 2160px 80px;
	margin-bottom: 20px;
	width: 100%;
}

.embedded header {
	display: none;	
}

#wrapper {
	margin: 0;
}

@media screen and (max-width: 736px) {
header {
	height: 50px;
	background: url(../images/header_bg.jpg) no-repeat center top;
	background-size: 1350px 50px;
	top: 0;
}
header img {
	width: 291px;
	height: 50px;
}
}

section {
	margin: 15px 0 30px 0;
}
section h1 {
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 20px 10px;
}

section h2 {
	font-weight: 400;
	font-size: 14px;
}

section h3 {
	font-weight: 400;
	font-size: 12px;
	margin: 10px 0 10px 15px;
}

section .description {
	margin: 0 10px 15px 15px;
	color: #666;
	font-size: 14px;
}
section .contents {
	margin: 10px 0;
}

.steps {
	overflow-y: none;
	overflow-x: scroll;
	width: 100%;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	margin: 0;
	padding: 0;
}

.step {
	display: inline-block;
	min-width: 250px;
	min-height: 250px;
	vertical-align: top;
	margin-right: 20px;
}
.step:first-child {
	margin-left: 5px;
}

.step .desc {
	min-height: 30px;
	max-width: 240px;
	font-size: 14px;
	white-space: normal;
	padding-right: 15px;
}
.step .img-container {
	margin-top: 10px;
} 

section .contents h2.expandable {
	padding: 10px 0;
	border-bottom: 1px solid #EFEFEF;
	text-indent: 15px;
	background-color: #fff;
	position: relative;
}

section .contents h2.expandable:after {
	content: "";
	position: absolute;
	width: 13px;
	height: 8px;
	right: 15px;
	top: 50%;
	margin-top: -3px;
	background: url(../images/chevron.png) no-repeat center center;
	background-size: 13px 8px;
}

section .contents h2.expandable.expanded:after {
	transform: scaleY(-1);
}

section .contents .expandable.active,
section .contents .expandable:active {
	background-color: #f0f0f0;
}

section .contents h2:first-child {
	border-top: 1px solid #EFEFEF;
}

section .contents .details {
	background-color: #202020;
	padding: 15px;
	box-sizing: border-box;
	color: #ccc;
	display: none;
}

section .contents .details.has-subitems {
	background-color: #fcfcfc;
	color: #000;
	padding: 0;
}

section .contents h3.expandable {
	padding: 10px 0;
	border-bottom: 1px solid #EFEFEF;
	text-indent: 20px;
	margin: 0;
	position: relative;
}

section .contents h3.expandable:after {
	content: "";
	position: absolute;
	width: 13px;
	height: 8px;
	right: 15px;
	top: 50%;
	margin-top: -3px;
	background: url(../images/chevron.png) no-repeat center center;
	background-size: 13px 8px;
}

section .contents h3.expandable.expanded:after {
	transform: scaleY(-1);
}

section .contents .details .desc {
	
}

.desc strong {
	color: #fff;
	font-weight: normal;	
}

dl {
	width: 280px;
	overflow: hidden;
	margin-top: 10px;
}

dt {
	float: left;
	width: 40%;
	clear: left;
	padding: 3px 0;	
}
dd {
	float: left;
	width: 60%;
	padding: 3px 0 3px 10px;
	white-space: normal;
	box-sizing: border-box;
}

.screenshot {
	box-shadow: 0 4px 10px rgba(0,0,0,0.5);
	border-radius: 3px;
}

.screenshot.noshadow {
	box-shadow: none;
	border-radius: 0;
}

@media screen and (min-width: 768px) {
section h1 {
    margin-left: 30px;
}

section .description {
	margin-left: 30px;
	color: #666;
	font-size: 12px;
}

section .contents h2.expandable {
	text-indent: 30px;
}

section .contents h3.expandable {
	text-indent: 35px;
}

section .contents h2.expandable:after {
	right: 30px;
}

section .contents h3.expandable:after {
	right: 30px;
}

.step:first-child {
	margin-left: 20px;
}

section .contents .details > .desc {
	margin-left: 20px;
}

}


@media (prefers-color-scheme: dark) {
	body {
		background-color: #111;
		color: #ccc;
	}

	section .contents h2.expandable {
		border-bottom: 1px solid #444;
		background-color: #333;
	}

	section .contents .expandable.active,
	section .contents .expandable:active {
		background-color: #444;
	}
	
	section .contents h2:first-child {
		border-top: 1px solid #444;
	}

	a {
		color: rgb(30, 210, 255);
	}
}