@import url("https://use.typekit.net/oqu2mir.css");

* {
	font-family: neo-sans, sans-serif;
}
body{
	max-width: 1100px;
}

h1{
	font-size: 28px;
}
h2{
	font-size: 24px;
}
h3{
	font-size: 18px;
}
p{
	font-size: 16px;
	text-align: justify;
}

.section,
.item-content {
	display: none;
	margin-left: 20px;
}
.chapter{
	margin-bottom: 90px;
}
.chapter .section{
	margin-top: 30px;
}
.content{
	margin-bottom: 50px;
}

.display {
	display: block;
}

label {
	display: block;
	margin: 6px 0;
}
label h2{
	display: inline;
}
label h3{
	display: inline;
}
label h4{
	display: inline;
}
figure{
	margin: 0;
	margin-top: 50px;
	margin-bottom: 50px;
	width: 100%;
	max-width: 800px;
}

img{
	max-width: 100%;
	height: auto;
}
img.smaller{
	max-height: 170px;
}
img#logo{
	max-height: 170px;
}
img#logo2{
	max-height: 170px;
}
.logos{
	display: flex;
	flex-wrap: wrap;
}

figure figcaption{
	color: #565657;
	font-size: 14px;
	max-width: 750px;
}

select{
	font-size: 18px;
	width: 100%;
	padding: 7px;
}

table,
th,
td {
	border: 1px solid black;
	border-collapse: collapse;
}

th,
td {
	padding: 15px;
}

.button {
	display: inline-block;
	border: 1px solid #194b4b;
	border-radius: 5px;
	background: #194b4b;
	color: #fff;
	transition: all .2 linear;
	margin: 5px 10px 5px 0;
	padding: 5px 15px;
	text-decoration: none;
	font-size: 22px;
}

.button:hover{
	background: #fff;
	color: #194b4b;
}

#topdf{
	
}


/* The container */
.checkboxContainer {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input~.checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked~.checkmark {
	background-color: #194b4b;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}