/* Minified Eric Meyer reset CSS; see css/_reset.css */
/* stylelint-disable
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}html{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
/* stylelint-enable*/

#main {
	background-color: white;
	padding: 1em;
	position: absolute;
	top: 0;
	width: 75%;
}

.articletitle {
	font-weight: bold;
	font-size: 1pc;
	font-family: Arial, Helvetica, Geneva, sans-serif
}

.linktext {
	font-size: 0.8pc;
	line-height: 0.8pc;
	font-family: Arial, Helvetica, Geneva, sans-serif
}

.subhead {
	color: #666;
	font-weight: bold;
	font-size: 1.2em;
	font-family: Arial, Helvetica, Geneva, sans-serif
}

.subtext {
	color: black;
	font-size: 0.8em;
	line-height: 0.8em;
	font-family: Arial, Helvetica, Geneva, sans-serif
}

.subtitle {
	color: #666;
	font-style: italic;
	font-weight: bold;
	font-size: 1.2em;
	font-family: Arial, Helvetica, Geneva, sans-serif
}

a:active {
	color: white;
	text-decoration: none;
	background-color: #f00;
}

a:hover {
	color: #f00;
}

a:link {
	color: #c00;
	text-decoration: none;
}

a:visited {
	color: #900;
	text-decoration: none;
}

h1 {
	color: #369;
	font-size: 1.5em;
	font-family: Arial, Helvetica, Geneva, sans-serif;
}

h2 {
	color: #369;
	font-weight: bold;
	font-size: 1.2em;
	font-family: Arial, Helvetica, Geneva, sans-serif;
}

p {
	font-size: 1em;
	line-height: 1.2em;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

blockquote {
	font-size: 0.9em;
	line-height: 1.2em;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

li {
	font-size: 1em;
	line-height: 1.2em;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

ol {
	font-size: 1em;
	line-height: 1.2em;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

ul {
	font-size: 1em;
	line-height: 1.2em;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-image: url("media/bg.png");
	background-repeat: repeat;
}

/* Accordion */
.accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
}

.panel {
	padding: 0 18px;
	display: none;
	background-color: white;
	overflow: hidden;
}

.int-box {
	position: relative;
	background-color: #eee;
	padding: 18px;
	width: 100%;
}

.active,
.int-box:hover {
	background-color: #ccc;
	transition: 0.4s;
}

.int-box .accordion {
  position: absolute;
  inset: 0;              
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.int-box audio {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Style the header */
header {
	min-width: 350px;
	background-color: white;
	color: black;
	padding: 1em;
	display: inline-block;
}

header p {
	font-family: "Orbitron", serif;
	letter-spacing: 0.2rem;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	width: 0;
	/* Removes h1 from container width calculation initially */
	min-width: 100%;
	/* Forces h1 to match the now-established container width */

}

header img {
	max-width: 100%;
	/* Image stays within container, scales down if needed */
	height: auto;
	/* Maintains aspect ratio */
	display: block;
	/* Helps with alignment issues */
}

/* Create two columns/boxes that floats next to each other */
nav {
	float: left;
	width: 25%;
	min-width: 300px;
	border-left: solid black 2px;
	border-top: solid black 2px;
	background:
		linear-gradient(black, black) bottom left / 80% 2px,
		white;
	background-repeat: no-repeat;
	padding-left: 1em;
	font-size: 14px;
}

nav p {
	font-family: "Orbitron", serif;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	font-weight: bold;
}

nav li {
	font-family: "Orbitron", serif;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	font-weight: bold;
}

/* Style the list inside the menu */
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: white;
}

nav li a {
	display: block;
	color: black;
	text-decoration: none;
	padding: .5em 0
}

/* Change the link and background color on hover */
nav li a:hover {
	background-color: black;
	color: white;
}

article {
	float: left;
	padding: 1em;
	width: 50%;
	background-color: white;
	border-top: solid black 2px;
	border-bottom: solid black 2px;
	background:
		linear-gradient(black, black) top right / 2px 1em,
		white;
	background-repeat: no-repeat;
}

/* Clear floats after the columns */
section::after {
	content: "";
	display: table;
	clear: both;
}

/* Style the footer */
footer {
	background-color: #777;
	padding: 10px;
	text-align: center;
	color: white;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {

	nav,
	article {
		width: 100%;
		height: auto;
		margin-top: 1em;
	}

	article {
		border-left: solid black 2px;
	}

	nav {
		border: solid black 2px;
		background:
			linear-gradient(black, black) top right / 0 0, white;
		background-repeat: no-repeat;
	}

}

/* Moved internal css styles */
.b0 {
	border: 0;
}

.al {
	box-align: left;
}

.w100 {
	width: 100%;
}

.h500p {
	height: 500px;
}

.ltn {
	list-style-type: none;
}