/*
 :::  Reset
-------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	border: 0;
	padding: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

body {
	line-height: 1;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}

button {
	appearance: none;
	overflow: visible;
	margin: 0;
	border: 0;
	padding: 0;
	text-transform: none;
	background-color: transparent;
	cursor: pointer;
}

button:focus {
	outline: 0;
}

button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

img {
	border: 0;
}

ol,
ul {
	list-style: none;
}

pre {
	overflow: auto;
}

svg:not(:root) {
	overflow: hidden;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*
 :::  General Text Formattings
-------------------------------------------------- */
b,
strong {
	font-weight: 700;
}

i,
em,
dfn {
	font-style: italic;
}

address {
	font-style: normal;
}



/*
 :::  General Form Formattings
-------------------------------------------------- */
input:focus,
textarea:focus {
	outline: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 1;
	text-overflow: ellipsis;
	color: #999;
	transition: color 0.2s ease-out;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: #fff;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 1;
	text-overflow: ellipsis;
	color: #999;
	transition: color 0.2s ease-out;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
	color: #fff;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 1;
	text-overflow: ellipsis;
	color: #999;
	transition: color 0.2s ease-out;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
	color: #fff;
}



/*
 :::  Global
-------------------------------------------------- */
html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

[hidden] {
	display: none !important;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "adelle-sans", sans-serif;
	font-size: 100%;
	font-weight: 400;
	line-height: 1;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	color: #000;
	background-color: #fff;
}

.dialog-is-open {
	position: fixed; /* fixes scrolling issue on iOS */
	overflow: hidden;
}



/*
 :::  Links
-------------------------------------------------- */
a:link,
a:visited {
	position: relative;
	text-decoration: none;
	color: #016597;
}

a:focus {
	outline: 0;
}



/*
 :::  Images
-------------------------------------------------- */
img {
	display: block;
	max-width: 100%;
	width: 100%;
}



/*
 :::  iFrames
-------------------------------------------------- */
iframe {
	display: block;
	max-width: 100%;
	width: 100%;
}



/*
 :::  Page Dialog
-------------------------------------------------- */
.b-page-dialog {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	z-index: 10;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: #fff;
	background-color: #000;
}

.b-page-dialog[aria-hidden="true"] {
	visibility: hidden;
	opacity: 0;
}

.b-page-dialog .box {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.b-page-dialog .content {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding: 0 20px;
}

.b-page-dialog .title {
	clip: rect(0 0 0 0);
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
}

.b-page-dialog .close {
	overflow: hidden;
	position: absolute;
	top: 24px;
	right: 24px;
	width: 36px;
	height: 36px;
	font: 0/0 serif;
	text-shadow: none;
	color: transparent;
	transform: translateZ(0);
}

.b-page-dialog .close::before,
.b-page-dialog .close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 36px;
	height: 5px;
	background-color: #fff;
	transition: transform 0.2s ease-out;
}

@media only screen and (max-width: 384px) {
	.b-page-dialog .close {
		top: 16px;
		right: 16px;
	}

	.b-page-dialog .close::before,
	.b-page-dialog .close::after {
		width: 24px;
		height: 4px;
	}
}

.b-page-dialog .close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.b-page-dialog .close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.b-page-dialog .close:focus::before,
.b-page-dialog .close:hover::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.b-page-dialog .close:focus::after,
.b-page-dialog .close:hover::after {
	transform: translate(-50%, -50%) rotate(-135deg);
}


/*
 :::  Page Main
-------------------------------------------------- */
.b-page-main {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.b-page-main > .blog {
	clip: rect(0 0 0 0);
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
}

.b-page-main > .result {
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.1667;
}

.b-page-main > .result mark {
	font-weight: 700;
	color: inherit;
	background-color: inherit;
}



/*
 :::  Page Header
-------------------------------------------------- */
.b-page-header {
	position: relative;
	margin-bottom: 45px;
	text-align: center;
	background-color: #000;
}

@media only screen and (max-width: 384px) {
	.b-page-header {
		margin-bottom: 30px;
	}
}

.b-page-header > .box {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 20px 30px;
}

@media only screen and (max-width: 384px) {
	.b-page-header > .box {
		padding: 60px 20px 30px;
	}
}

.b-page-header .link {
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.b-page-header .logo {
	width: 640px;
}

@media only screen and (max-width: 768px) {
	.b-page-header .logo {
		width: 100%;
		max-width: 360px;
	}
}

.b-page-header .subline {
	display: block;
	margin-top: -5px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	.b-page-header .subline {
		margin-top: 0;
		font-size: 10px;
	}
}

.b-page-header .actions {
	display: flex;
	position: absolute;
	top: 18px;
	right: 20px;
}

.b-page-header .open-search {
	position: relative;
	padding-left: 26px;
	font-size: 16px;
	line-height: 1.25;
	color: #fff;
}

@media only screen and (max-width: 384px) {
	.b-page-header .open-search {
		padding-left: 24px;
	}
}

.b-page-header .open-search::before {
	content: "";
	position: absolute;
	top: -3px;
	left: 0;
	width: 20px;
	height: 20px;
	border: 4px solid #fff;
	border-radius: 50%;
	transition: transform 0.2s ease-out;
}

@media only screen and (max-width: 384px) {
	.b-page-header .open-search::before {
		top: -2px;
		width: 18px;
		height: 18px;
		border: 3px solid #fff;
	}
}

.b-page-header .open-search:focus::before,
.b-page-header .open-search:hover::before {
	transform: scale(1.1);
}

.b-page-header .open-search::after {
	content: "";
	position: absolute;
	top: 10px;
	left: -1px;
	width: 4px;
	height: 12px;
	transform: rotate(45deg);
	background-color: #fff;
	transition: transform 0.2s ease-out;
}

@media only screen and (max-width: 384px) {
	.b-page-header .open-search::after {
		top: 11px;
		width: 3px;
		height: 10px;
	}
}

.b-page-header .open-search:focus::after,
.b-page-header .open-search:hover::after {
	transform: rotate(45deg) scale(1.1) translateY(1px);
}

.b-page-header .open-navigation {
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	line-height: 1.25;
	margin-left: 30px;
	color: #fff;
}

@media only screen and (max-width: 384px) {
	.b-page-header .open-navigation {
		padding-left: 27px;
	}
}

.b-page-header .open-navigation::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 24px;
	height: 4px;
	margin-top: -2px;
	box-shadow: inset 0 0 0 2px, 0 -8px, 0 8px;
	transition: box-shadow 0.2s ease-out;
}

@media only screen and (max-width: 384px) {
	.b-page-header .open-navigation::before {
		width: 20px;
		height: 3px;
		margin-top: -1px;
	}
}

.b-page-header .open-navigation:focus::before,
.b-page-header .open-navigation:hover::before {
	box-shadow: inset 0 0 0 2px, 0 -10px, 0 10px;
}



/*
 :::  Page Footer
-------------------------------------------------- */
.b-page-footer {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 14px;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-page-footer {
		font-size: 10px;
	}
}

.b-page-footer > .box {
	border-top: 1px solid #000;
	padding: 10px 0;
}



/*
 :::  Page Navigation
-------------------------------------------------- */
.b-page-navigation {
	opacity: 0;
	padding: 60px 0;
	transform: translateY(-100%) rotateX(90deg);
	transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

@media only screen and (max-width: 384px) {
	.b-page-navigation {
		padding: 40px 0;
	}
}

.dialog-is-open .b-page-navigation {
	opacity: 1;
	transform: translateY(0) rotateX(0deg);
}

.b-page-navigation > .title {
	clip: rect(0 0 0 0);
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
}

.b-page-navigation > .navlist > .item {
	text-align: center;
}

.b-page-navigation > .navlist > .item:nth-child(1),
.b-page-navigation > .navlist > .item:nth-child(3),
.b-page-navigation > .navlist > .item:nth-child(5),
.b-page-navigation > .navlist > .item:nth-child(7) {
	margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
	.b-page-navigation > .navlist > .item:nth-child(1),
	.b-page-navigation > .navlist > .item:nth-child(3),
	.b-page-navigation > .navlist > .item:nth-child(5),
	.b-page-navigation > .navlist > .item:nth-child(7) {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 384px) {
	.b-page-navigation > .navlist > .item:nth-child(1),
	.b-page-navigation > .navlist > .item:nth-child(3),
	.b-page-navigation > .navlist > .item:nth-child(5),
	.b-page-navigation > .navlist > .item:nth-child(7) {
		margin-bottom: 10px;
	}
}

.b-page-navigation > .navlist .link {
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 10px 15px;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	transition: color 0.4s ease-out;
}

@media only screen and (max-width: 768px) {
	.b-page-navigation > .navlist .link {
		font-size: 32px;
	}
}

@media only screen and (max-width: 384px) {
	.b-page-navigation > .navlist .link {
		padding: 8px 10px;
		font-size: 20px;
	}
}

.b-page-navigation > .navlist .link:focus,
.b-page-navigation > .navlist .link:hover,
.b-page-navigation > .navlist .link:active {
	color: #016597;
}

.b-page-navigation > .navlist .is-active::before,
.b-page-navigation > .navlist .is-active::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 60px;
	height: 5px;
	margin-top: 2px;
	background-color: #fff;
}

.b-page-navigation > .navlist .is-active::before {
	left: -60px;
}

.b-page-navigation > .navlist .is-active::after {
	right: -60px;
}

@media only screen and (max-width: 384px) {
	.b-page-navigation > .navlist .is-active::before,
	.b-page-navigation > .navlist .is-active::after {
		width: 40px;
		height: 4px;
		margin-top: -1px;
	}

	.b-page-navigation > .navlist .is-active::before {
		left: -40px;
	}

	.b-page-navigation > .navlist .is-active::after {
		right: -40px;
	}
}



/*
 :::  Search
-------------------------------------------------- */
.b-search {
	opacity: 0.5;
	transform: translateY(-60%) rotateX(60deg);
	transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.dialog-is-open .b-search {
	opacity: 1;
	transform: translateY(0) rotateX(0deg);
}

.b-search label {
	clip: rect(0 0 0 0);
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
}

.b-search input {
	appearance: none;
	display: block;
	width: 100%;
	border: 0;
	border-bottom: 4px solid #999;
	border-radius: 0;
	padding: 20px 40px;
	font-family: "adelle-sans", sans-serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
	background-color: transparent;
	transform: translateZ(0);
	transition: border-bottom-color 0.2s ease-out;
}

@media only screen and (max-width: 384px) {
	.b-search input {
		border-bottom: 3px solid #999;
		padding: 10px 20px;
		font-size: 24px;
	}
}

.b-search input:focus,
.b-search input:hover {
	border-bottom-color: #fff;
}



/*
 :::  Meta Navigation
-------------------------------------------------- */
.b-meta-nav {
	float: right;
}

.b-meta-nav > .item {
	float: left;
}

.b-meta-nav > .item + .item::before {
	content: "|";
	padding: 0 3px 0 5px;
}

.b-meta-nav .link {
	background-size: 204% auto;
	background-position: 0 0;
	background-image: linear-gradient(to right, transparent 50%, #016597 50%);
	transition: color 0.4s ease-out, background-position 0.4s ease-out;
}

.b-meta-nav .link:focus,
.b-meta-nav .link:hover,
.b-meta-nav .link:active {
	color: #fff;
	background-position: -98% 0;
}



/*
 :::  Result-List
-------------------------------------------------- */
.b-result-list {
	overflow: hidden;
	margin-bottom: 60px;
}

.b-result-list > .item {
	margin-bottom: 20px;
	border-top: 1px dashed #000;
	padding-top: 20px;
}

@media only screen and (max-width: 384px) {
	.b-result-list > .item {
		overflow: hidden;
	}
}

.b-result-list .title {
	margin-bottom: 8px;
	font-family: "adelle", serif;
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
}

@media only screen and (max-width: 384px) {
	.b-result-list .title {
		font-size: 32px;
	}
}

.b-result-list .title > .link {
	background-size: 204% auto;
	background-position: 0 0;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #016597 50%);
	transition: color 0.4s ease-out, background-position 0.4s ease-out;
}

@media only screen and (max-width: 384px) {
	.b-result-list .title > .link {
		overflow-wrap: break-word;
		word-wrap: break-word;
		word-break: break-word;
		-webkit-hyphens: auto;
		hyphens: auto;
	}
}

.b-result-list .title > .link:focus,
.b-result-list .title > .link:hover,
.b-result-list .title > .link:active {
	color: #fff;
	background-position: -98% 0;
}

.b-result-list .meta {
	font-size: 16px;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-result-list .meta {
		font-size: 14px;
	}
}

.b-result-list .author {
	text-transform: capitalize;
}



/*
 :::  Article Basics
-------------------------------------------------- */
.b-article {
	margin-bottom: 60px;
}

.b-article > .header {
	overflow: hidden;
	margin-bottom: 8px;
	border-bottom: 1px solid #000;
	padding-bottom: 8px;
}

.b-article > .footer {
	margin-top: 45px;
}

.b-article > .footer::before,
.b-article > .footer::after {
	content: "";
	display: table;
}

.b-article > .footer::after {
	clear: both;
}

.b-article > .footer .btn {
	float: left;
	margin-right: 5px;
}

.b-article > .footer .btn:not(:last-child) {
	margin-bottom: 5px;
}

@media only screen and (max-width: 384px) {
	.b-article > .footer .btn {
		float: none;
		display: block;
		margin-right: 0;
		text-align: center;
	}

	.b-article > .footer .btn:not(:last-child) {
		margin-bottom: 10px;
	}
}

.b-article .meta {
	margin-top: 6px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.25px;
}

@media only screen and (max-width: 384px) {
	.b-article .meta {
		font-size: 14px;
	}
}

.b-article .author {
	text-transform: capitalize;
}



/*
 :::  Article Headings
-------------------------------------------------- */
.b-article h1,
.b-article h2,
.b-article h3,
.b-article h4,
.b-article h5,
.b-article h6 {
	font-family: "adelle", serif;
}

.b-article h1:not(:first-child),
.b-article h2:not(:first-child),
.b-article h3:not(:first-child),
.b-article h4:not(:first-child),
.b-article h5:not(:first-child),
.b-article h6:not(:first-child) {
	margin-top: 45px;
}

.b-article h1 {
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
}

@media only screen and (max-width: 768px) {
	.b-article h1 {
		overflow-wrap: break-word;
		word-wrap: break-word;
		word-break: break-word;
		-webkit-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width: 384px) {
	.b-article h1 {
		font-size: 32px;
	}
}

.b-article h1 a {
	background-size: 204% auto;
	background-position: 0 0;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #016597 50%);
	transition: color 0.4s ease-out, background-position 0.4s ease-out;
}

.b-article h1 a:focus,
.b-article h1 a:hover,
.b-article h1 a:active {
	color: #fff;
	background-position: -98% 0;
}

.b-article h2 {
	margin-bottom: 6px;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.076925;
	text-transform: uppercase;
}

@media only screen and (max-width: 384px) {
	.b-article h2 {
		font-size: 24px;
	}
}

.b-article h2:first-child {
	margin-top: 18px;
}

.b-article h3 {
	margin-bottom: 3px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.125;
}

@media only screen and (max-width: 384px) {
	.b-article h3 {
		font-size: 20px;
	}
}

.b-article h2 + h3:not(:last-child) { /* :not() -> to raise specifity */
	margin-top: 8px;
}

.b-article h4 {
	margin-bottom: 3px;
	font-size: 24px;
	line-height: 1.125;
}

@media only screen and (max-width: 384px) {
	.b-article h4 {
		font-size: 20px;
	}
}

.b-article h5 {
	margin-bottom: 3px;
	padding-top: 3px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
}

@media only screen and (max-width: 384px) {
	.b-article h5 {
		font-size: 16px;
	}
}

.b-article h6 {
	margin-bottom: 3px;
	padding-top: 3px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
}

@media only screen and (max-width: 384px) {
	.b-article h6 {
		font-size: 16px;
	}
}



/*
 :::  Article Content Text
-------------------------------------------------- */
.b-article .content > p {
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-article .content > p {
		font-size: 16px;
	}
}

/* Hyphenation */
.b-article .content > p {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.b-article.is-teaser .content > p:nth-last-child(2),
.b-article.is-teaser .content > figure:nth-last-child(2) {
	margin-bottom: 0;
}

.b-article .content > .btn {
	margin-top: 15px;
	background-image: none;
}

@media only screen and (max-width: 384px) {
	.b-article .content > .btn {
		font-size: 14px;
	}
}

.b-article .content small {
	font-size: 16px;
	line-height: 1;
}

@media only screen and (max-width: 384px) {
	.b-article .content small {
		font-size: 14px;
	}
}


/*
 :::  Article Content Links
-------------------------------------------------- */
.b-article .content p a,
.b-article .content li a {
	border-bottom: 1px solid #016597;
	box-shadow: inset 0 -6px 0 #016597;
	color: #000;
	background-color: transparent;
	transition: color 0.2s ease-out, background-color 0.2s ease-out;
}

.b-article .content p a:focus,
.b-article .content p a:hover,
.b-article .content p a:active,
.b-article .content li a:focus,
.b-article .content li a:hover,
.b-article .content li a:active {
	color: #fff;
	background-color: #016597;
}



/*
 :::  Article Content Figures
-------------------------------------------------- */
.b-article .content > figure:not(:last-child) {
	margin-bottom: 30px;
}

.b-article .content > p:first-child + figure {
	margin-top: -15px;
}

.b-article .content figcaption {
	margin-top: 5px;
	font-size: 16px;
	line-height: 1.125;
	color: #666;
}

@media only screen and (max-width: 384px) {
	.b-article .content figcaption {
		font-size: 14px;
		line-height: 1;
	}
}



/*
 :::  Article Content Unordered Lists
-------------------------------------------------- */
.b-article .content > ul {
	margin-bottom: 30px;
	margin-left: 25px;
	list-style: square outside;
	font-size: 20px;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-article .content > ul {
		font-size: 16px;
	}
}

.content > ul ul,
.content > ul ol {
	margin-left: 22px;
}

.content > ul ul {
	list-style-type: circle;
}



/*
 :::  Article Content Ordered Lists
-------------------------------------------------- */
.b-article .content > ol {
	margin-bottom: 30px;
	margin-left: 21px;
	list-style: decimal outside;
	font-size: 20px;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-article .content > ol {
		font-size: 16px;
	}
}

.b-article .content > ol ul,
.b-article .content > ol ol {
	margin-left: 19px;
}

.content > ol ol {
	list-style-type: lower-alpha;
}



/*
 :::  Article Content Description Lists [Markdown extra feature]
-------------------------------------------------- */
.b-article .content > dl {
	margin-bottom: 30px;
}

.b-article .content dt {
	margin-top: 20px;
	font-family: "adelle", serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-article .content > dt {
		font-size: 16px;
	}
}

.b-article .content dt:first-of-type {
	margin-top: 0;
}

.b-article .content dd {
	font-size: 20px;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-article .content > dd {
		font-size: 16px;
	}
}



/*
 :::  Article Content Tables [Markdown extra feature]
-------------------------------------------------- */
.b-article .content > table {
	width: 100%;
	margin-bottom: 30px;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 16px;
	line-height: 1.125;
}

@media only screen and (max-width: 384px) {
	.b-article .content > table {
		font-size: 14px;
		line-height: 1;
	}
}

.b-article .content > h2 + table {
	margin-top: 8px;
}

.b-article .content > table thead {
	border-right: 2px solid #000;
	border-left: 2px solid #000;
}

.b-article .content > table th,
.b-article .content > table td {
	vertical-align: top;
}

.b-article .content > table th {
	padding: 14px 18px;
	color: #fff;
	background-color: #000;
}

.b-article .content > table th:not(:first-child) {
	border-left: 2px solid #ddd;
}

.b-article .content > table td {
	border: 2px solid #ddd;
	padding: 14px 18px;
	background-color: #eee;
}



/*
 :::  Article Content Blockquotes
-------------------------------------------------- */
.b-article .content > blockquote {
	margin-bottom: 30px;
	border-left: 10px solid #000;
	padding: 5px 15px;
	font-family: "adelle", serif;
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-article .content > blockquote {
		font-size: 16px;
	}
}

.b-article .content > blockquote p {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.b-article .content > blockquote > p:last-of-type {
	margin-bottom: 0;
}



/*
 :::  Article Content Code
-------------------------------------------------- */
.b-article .content > pre {
	overflow: auto;
	margin-bottom: 30px;
	padding: 20px 30px;
	background-color: #f5f5f5;
}

.b-article .content code {
	font-family: "Menlo", Courier, monospace;
	font-size: 16px;
	line-height: 1.5;
}

@media only screen and (max-width: 384px) {
	.b-article .content code {
		font-size: 14px;
	}
}

.b-article .content > p code {
	padding: 2px 5px;
	background-color: #eee;
}



/*
 :::  Article Content Videos
-------------------------------------------------- */
.b-article .content .video-box {
	overflow: hidden;
	position: relative;
	max-width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.b-article .content .video-box iframe,
.b-article .content .video-box object,
.b-article .content .video-box embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*
 :::  Video
-------------------------------------------------- */
.b-video > video {
	width: 100%;
}



/*
 :::  Short-Info
-------------------------------------------------- */
.b-short-info {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 30px;
}

h2 + .b-short-info {
	margin-top: 8px;
}

.b-short-info > table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 16px;
	line-height: 1.125;
}

@media only screen and (max-width: 384px) {
	.b-short-info > table {
		font-size: 14px;
		line-height: 1;
	}
}

.b-short-info th {
	width: 25%;
	text-align: left;
}

.b-short-info th,
.b-short-info td {
	border: 2px solid #ddd;
	padding: 15px 20px;
	background-color: #eee;
}

@media only screen and (max-width: 384px) {
	.b-short-info th,
	.b-short-info td {
		padding: 15px;
	}
}

.b-short-info a {
	border-bottom: 1px solid #016597;
	box-shadow: inset 0 -4px 0 #016597;
	color: #000;
	background-color: transparent;
	transition: color 0.2s ease-out, background-color 0.2s ease-out;
}

.b-short-info a:focus,
.b-short-info a:hover,
.b-short-info a:active {
	color: #fff;
	background-color: #016597;
}

.b-short-info small {
	margin-left: 7px;
	font-size: 14px;
	line-height: 1;
}

@media only screen and (max-width: 384px) {
	.b-short-info small {
		display: block;
		margin-left: 0;
	}
}



/*
 :::  Pedigree
-------------------------------------------------- */
.b-pedigree {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 30px;
	border: 1px solid #ddd;
	background-color: #eee;
}

h2 + .b-pedigree {
	margin-top: 8px;
}

.b-pedigree .level-1 {
	min-width: 600px;
}

.b-pedigree .level-1,
.b-pedigree .level-2,
.b-pedigree .level-3,
.b-pedigree .level-4 {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.b-pedigree .item {
	display: table-row;
}

.b-pedigree .name {
	display: table-cell;
	vertical-align: middle;
	border: 1px solid #ddd;
	padding: 10px 15px;
	font-size: 16px;
	line-height: 1.125;
}

@media only screen and (max-width: 384px) {
	.b-pedigree .name {
		font-size: 14px;
		line-height: 1;
	}
}

.b-pedigree .level-1 > .item > .name {
	width: 25%;
}

.b-pedigree .level-2 > .item > .name {
	width: 33.3334%;
}

.b-pedigree .level-3 > .item > .name {
	width: 50%;
}

.b-pedigree .level-4 > .item > .name {
	width: 100%;
}



/*
 :::  Info-Table
-------------------------------------------------- */
.b-info-table {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 30px;
}

h2 + .b-info-table {
	margin-top: 8px;
}

.b-info-table > table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 16px;
	line-height: 1.125;
}

@media only screen and (max-width: 384px) {
	.b-info-table > table {
		font-size: 14px;
		line-height: 1;
	}
}

.b-info-table thead {
	border-right: 2px solid #000;
	border-left: 2px solid #000;
}

.b-info-table th,
.b-info-table td {
	vertical-align: top;
}

.b-info-table th {
	padding: 14px 18px;
	text-align: left;
	color: #fff;
	background-color: #000;
}

@media only screen and (max-width: 384px) {
	.b-info-table th {
		padding: 15px;
	}
}

.b-info-table th:not(:first-child) {
	border-left: 2px solid #ddd;
}

.b-info-table td {
	border: 2px solid #ddd;
	padding: 14px 18px;
	background-color: #eee;
}

@media only screen and (max-width: 384px) {
	.b-info-table td {
		padding: 15px;
	}
}

.b-info-table a {
	border-bottom: 1px solid #016597;
	box-shadow: inset 0 -4px 0 #016597;
	color: #000;
	background-color: transparent;
	transition: color 0.2s ease-out, background-color 0.2s ease-out;
}

.b-info-table a:focus,
.b-info-table a:hover,
.b-info-table a:active {
	color: #fff;
	background-color: #016597;
}


/*
 :::  Tags
-------------------------------------------------- */
.b-tags {
	display: inline;
}

.b-tags > .item {
	display: inline-block;
	margin-right: 3px;
}

.b-tags .link {
	background-size: 204% auto;
	background-position: 0 0;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #016597 50%);
	transition: color 0.4s ease-out, background-position 0.4s ease-out;
}

.b-tags .link:focus,
.b-tags .link:hover,
.b-tags .link:active {
	color: #fff;
	background-position: -98% 0;
}



/*
 :::  Pagination
-------------------------------------------------- */
.b-pagination {
	margin: 45px 0 30px;
}

.b-pagination > .title {
	clip: rect(0 0 0 0);
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
}

.b-pagination .pagelist {
	display: flex;
}

@media only screen and (max-width: 384px) {
	.b-pagination .pagelist {
		display: block;
	}
}

.b-pagination .item.is-first {
	margin-right: 5px;
}

@media only screen and (max-width: 384px) {
	.b-pagination .item.is-first {
		margin-right: 0;
	}
}

.b-pagination .item.is-prev {
	margin-right: auto;
}

.b-pagination .item.is-next {
	margin-left: auto;
}

.b-pagination .item.is-last {
	margin-left: 5px;
}

@media only screen and (max-width: 384px) {
	.b-pagination .item.is-last {
		margin-left: 0;
	}
}

@media only screen and (max-width: 384px) {
	.b-pagination .item:not(:last-child) {
		margin-bottom: 5px;
	}
}

.b-pagination .is-first .btn::before {
	content: "«";
	margin-right: 3px;
}

.b-pagination .is-prev .btn::before {
	content: "‹";
	margin-right: 3px;
}

.b-pagination .is-next .btn::after {
	content: "›";
	margin-left: 3px;
}

.b-pagination .is-last .btn::after {
	content: "»";
	margin-left: 3px;
}

@media only screen and (max-width: 384px) {
	.b-pagination .btn {
		display: inline-block;
		vertical-align: top;
		width: 100%;
		font-size: 14px;
		text-align: center;
	}
}



/*
 :::  Buttons
-------------------------------------------------- */
a.btn {
	display: inline-block;
	padding: 8px 16px;
	color: #fff;
	background-color: #000;
	transition: background-color 0.4s ease-out;
}

a.btn:focus,
a.btn:hover,
a.btn:active {
	background-color: #016597;
}
