@import url('https://fonts.googleapis.com/css2?family=Commissioner');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, hr,
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;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
	}
	
body {
	line-height: 1;
	}

ol, ul {
	list-style: none;
	}

blockquote, q {
	quotes: none;
	}

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

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

/* Layout */

* {
	box-sizing: border-box;
	}

html, body {
	min-height: 100%;
 	font-size: max(11pt, 1.4vmax);
 	line-height: 1.4;
 	text-align:justify;
 	text-justify: inter-word;
	}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	padding: 0;
	border: 0;
 	font-family: "Commissioner", sans-serif;
	background-color:#666;
	}

.header {
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	position: sticky;
	top:0;
	z-index: 2;
	width: 92vw;
	max-width: 45rem;
	border-bottom: 1vw solid #666;
	padding: 1rem;
	background-color: #FFF;
	}

.content {
	flex: 1 0 auto;
	width: 92vw;
	max-width: 45rem;
	margin: 0vw 0vw 1vw 0vw;
	padding: 1rem;
	background-color: #FFF;
	}
	
.hero {
	margin-right:auto;
	}
	
.menu {
	margin-left: 2rem;
	}
	
/* Styling */

h1, h2, h3 {
	font-family: "Oswald", "Tahoma", sans-serif;
	font-weight:bold;
	margin-bottom: .5em;
	}
	
h1 {
	font-size: 180%;
	}
	
h2 {
	font-size: 150%;
	}
	
h3 {
	font-size: 120%;
	}
	
a:link {
	color: #D00;
	text-decoration-thickness: .1rem;
	}
	
a:visited {
	color: #A06;
	}
	
a:hover {
	color: #F00;
	text-decoration-thickness: .2rem;
	}
	
p {
	margin-bottom: 1em;
	}
	
hr {
	border: .1rem solid #aaa;
	margin:auto;
	margin-bottom: 1rem;
	width:89vw;
	max-width: 43rem;
	 }
	 
em {
	font-style: italic;
	}
	
strong {
	font-weight: bold;
	}
	
sup {
    vertical-align: super;
    font-size: smaller;
	} 
	 
/* Accordions */
	 
input {
	opacity: 0;
	z-index: -1;
	margin: 0;
	display:none;
	}

.accordion {
	overflow: hidden;
	margin-bottom: 1rem;
	}

.accordion-label {
	cursor: pointer;
	color: #d00;
	margin: .5rem;
	font-size: 87%;
  	text-decoration: underline;
	text-decoration-thickness: .08rem;
	}

.accordion-content {
	max-height: 0;
	padding: .5rem 1rem 0 .5rem;
	margin: .5rem 0 0 0;
	border-left: .2rem solid #ccc;
	margin-left: .5rem;
	display:none;
	}

input:checked ~ .accordion-content {
	max-height: 1000vh;
	display:block;
	}

#faq {
	margin:none;
	padding:none;
	font-size: 100%;
	}

/* Mobile changes */
	
@media screen and (max-width:450pt) {
	.hero {display:none;}
	.menu {font-size: 120%; margin:0; font-family: "Oswald", "Tahoma", sans-serif; font-weight: bold;}
	.header {justify-content:space-between; width:100%; max-width:none;}
	.content {width:100%; max-width:none;}
	.accordion-label {margin:0;}
	.accordion-content {padding:.5rem 0 0 0rem; margin:0; border:0; border-bottom:1px solid #aaa;}
	h1, h2, h3 {text-align:left; text-justify: none;}
	}