.js dl.tabs {
	background-color: #ccc;
	border: 1px solid #ccc;
	border-radius: 5px 5px 0 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
dl.tabs dt {
	font-size: 1.2em;
	font-weight: bold;
}
.js dl.tabs dt {
	align-self: flex-end;
	background: linear-gradient(to bottom, #f6f6f6, #d6d6d6);
	border-radius: 4px 4px 0 0;
	box-shadow: 0 0 1px #666;
	cursor: pointer;
	display: block;
	margin: 10px 2px 0 10px;
	padding: 6px 10px;
}
.js dl.tabs dt:hover,
.js dl.tabs dt.active {
	color: #000;
}
.js dl.tabs dt.active {
	background: #f6f6f6;
	border-top: 1px solid #008f36;
	box-shadow: 0 0 3px #666;
	padding-top: 8px;
	padding-bottom: 8px;
}
.js dl.tabs dd {
	background-color: #f6f6f6;
	display: none;
	-webkit-order: 2;
	order: 2;
	padding: 1.2em 1.5em;
	width: 100%;
}
.js dl.tabs dd.row {
	margin: 0;
	padding: 1.2em 8px;
}
.js dl.tabs dt.active + dd {
	display: block;
}
.js dl.tabs dt.active + dd.row {
	display: flex;
}

.js dl.tabs.dropdown {
	background-color: transparent;
	border: 0;
	display: block;
}
.js dl.tabs.dropdown dt {
	border: 0;
	margin: 4px 0 0;
	z-index: 1;
}
.js dl.tabs.dropdown dt::after {
	content: "\25BC";
	float: right;
	font-size: .8em;
}
.js dl.tabs.dropdown dd {
	display: block;
	max-height: 0;
	overflow: hidden;
	transition: padding .3s, max-height .8s cubic-bezier(0, 1, 0, 1) -.3s;
}
.js dl.tabs.dropdown dd.row {
	display: flex;
}
.js dl.tabs.dropdown dd::before,
.js dl.tabs.dropdown dd::after {
	content: ' ';
	display: block;
	height: 1.5em;
}
.js dl.tabs.dropdown dt.active {
	background: linear-gradient(to bottom, #f6f6f6 0px, #d6d6d6 100%);
	box-shadow: none;
}
.js dl.tabs.dropdown dt.active::after {
	content: "\25B6";
	font-size: .7em;
	padding: 2px 1px;
}
.js dl.tabs.dropdown dt.active + dd {
	max-height: 9999px;
	transition: padding .3s, max-height .8s cubic-bezier(0.5, 0, 1, 0) 0s;
}
.js dl.tabs.dropdown dt:not(.active) + dd {
	padding: 0;
}