	/* basics */
* {
	margin: auto;
	padding: 0;
	font-family: 'IM Fell English';
	font-size: 20px;
	box-sizing: border-box;
}

	/* -----fonts----- */

@font-face {	/* IM fell english regular */
	font-family: "IM Fell English";
	src: url('fonts/IMFellEnglish-Regular.ttf') format('truetype');
}

@font-face {	/* im fell english italic */
	font-family: "IM Fell English";
	src: url('fonts/IMFellEnglish-Italic.ttf') format('truetype');
	font-style: italic;
}

@font-face {	/* jacquard 12 */
	font-family: "Jacquard 12";
	src: url('fonts/Jacquard12-Regular.ttf') format('truetype');
}

@font-face {	/* jacquard 24 */
	font-family: "Jacquard 24";
	src: url('fonts/Jacquard24-Regular.ttf') format('truetype');
}

	/* -----general----- */

body {
	background-color: #808080;
	background-image: url("slatebg.jpg");
	background-attachment: fixed;
	height: auto;
	color: #cccccc;
}

/* for div tracking purposes
div {
	border-style: dotted;
}
*/

a {
	color: #299C29;
	text-decoration: none;
}

a:visited {
	color: #3F9595;
}

p {
	hyphens: auto;
	padding: 10px 0;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.1em;
}

img {
	max-width: 100%;
}

ul {
	list-style-position: inside;
	margin-left: 10px;
}

ul.a {list-style-type: circle;}
ul.b {list-style-type: disc;}
ul.c {list-style-type: square;}

li {
	text-align: left;
	font-size: 1em;
}

tr:nth-child(odd) {
	background-color: #363636;
}

tr:nth-child(even) {
	background-color: #3E454B;
}

tr:hover {
	background-color: #222021;
}

td {
	padding: 5px;
}


	/* -----all pages----- */
.td-left {
	width: 35%;
	text-align: center;
}

.td-right {
	font-size: 0.8em;
}

.td-right b {
	font-size: 1em;
}
	
.separator {
	margin: auto;
	width: 50%;
	padding: 20px;
}

.wrapper {
	width: 900px;
	justify-content: center;
	background-color: #222021;
	border-radius: 10px;
}

.header {
	top: 0;
	position: sticky;
	margin-top: 50px;
	width: 100%;
	z-index: 1;
	background-color: #222021;
	border-radius: 10px;
	
}

.body {
	overflow: auto;
	width: 90%;
	height: 100%;
	z-index: 0;
}

#jcb {
	font-family: "Jacquard 12";
	font-size: 6em;
}

.keyholders {
	float: right;
	width: 50%;
	border-style: solid;
	background-color: #808080;
	color: black;
	padding: 0 10px;
}

.keyholders p {
	padding: 5px 0;
}

	/* //index.html */
	
#line-sep {
	display: block;
	max-width: 80%;
	margin: auto;
	padding: 10px 0;
}		

#topBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 85%;
	box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.3);
	z-index: 1;
	font-size: 1.2em;
	border: none;
	outline: none;
	background-color: #555;
	color: white;
	cursor: pointer;
	padding: 10px 20px 10px 20px;
	border-radius: 4px;
}

#topBtn:hover {
	background-color: #6C8266;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #cccccc;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
} 

.collapsible:after {
  content: '\2B9F'; /* Unicode character for "plus" sign (+) */
  font-size: 1em;
  color: black;
  margin-left: 10px;
}

.active:after {
  content: "\2B9D"; /* Unicode character for "minus" sign (-) */
}

@media screen and (max-width: 620px) {	
	* {
		font-size: 12pt;
	}
	.wrapper {
		margin: auto; 
		width: 98%;
		padding: 0;
		height: 100%;
	}
	.header {
		width: 100%;
		top: 0;
		margin-top: 10px;
		height: 100%;
	}
	#jcb {
		font-size: 14vw;
	}
	.keyholders {
		float: none;
		width: 80%;
	}
}