body {
	width:100%;
	height:100%;
	background-color:#000;
	font-family: 'PT Mono', monospace;
	color: white;
	font-size:16px;
	font-size: 100%;
}

* {
	margin:0;
	padding:0;
}

.clearer{
	clear: both;
}

.menu-toggle,
.closebtn
 {
	display:none;	
}

.emphasis {
	font-style: italic;
}

hr {
	margin: 20px;
}

header {
	text-align: center;
}

header img {
	margin:10px auto;
	max-width:95%;
	height: auto;
}

.hero img {
	display: block;
	margin:0 auto;
	margin-top:50px;
	width:100%;
	height: auto;
}
/* ----- fonts ---- */

h1, h2, h3, h4 {
  margin: 1.414em 0 0.5em;
  font-weight: inherit;
  line-height: 1.2;
}

h1 {
  margin-top: 0;
  font-size: 3.998em;
}

h2 {font-size: 2.827em;}

h3 {font-size: 1.999em;}

h4 {font-size: 1.414em;}

small, .font_small {font-size: 0.707em;}




h1, h2, h3 {
	font-family: 'PT Mono', monospace;
}
/*
h1{
	font-size:3.998em;
}
*/
p{
	font-family: 'PT Mono', monospace;
	color:#aaa;
	line-height: 1.5;
	margin-bottom: 1em;
}

.epkQuote {
	font-style: italic;
	font-weight:bold;
	color:red;
}

ul, ol {
	font-family: 'PT Mono', monospace;
	color:#aaa;
	line-height: 1.5;
	margin-bottom: 1em;
	font-size: 16px;
}

li a {
	color:#fff;
	text-decoration: none;
}

li a:hover {
	color:red;
}

.center-bullets {
	text-align: center;
}

ul.bullets-music {
	display: inline-block;
	text-align: left;
	
}

/* --- table --- */
table {
	margin:0 auto;
	border:1px solid #fff;
	padding:5px;
}

td {
	padding:5px;
}


/* ----- nav ---- */
nav ul {
	list-style: none;
	display: flex;
	justify-content: space-around;
	max-width:1200px;
	margin:0 auto;
}

nav ul li {
	display: inline-block;
	border-bottom: 1px solid #000;
}

nav ul li a{
	text-decoration: none;
	font-size:24px;
	color: #fff;
	padding-bottom:5px;
}

nav ul li a:hover {
	color:#666;}

nav ul li:hover {
	border-bottom: 1px solid red;
}

nav ul li.active a {
	color:#666;
}

nav ul li.active {
	border-bottom: 1px solid red;
}

.mainWrapper a, h3 a {
	color:white;
	text-decoration: underline;
}


.mainWrapper a:hover, h3 a:hover {
	color:red;
	text-decoration:none;
}

/* ---- scaffolding ---- */
.mainWrapper {
	max-width:1000px;
	margin: 30px auto;
}

.musicWrapper {
	max-width: 700px;
	margin:0px auto;
}

.mainWrapper  {
	text-align: center;
}

#archiveImages {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
}

#archiveImages img {
	margin-bottom: 50px;
}


.imageContainer {
	display: flex;
	flex-wrap: nowrap;
}

.imageContainer img {
	margin-left:5px;
	margin-right:5px;
}

.ed {
	max-width:85%;
	margin-right: auto;
	margin-left: auto;
}
/* contact form */

.contactForm {
	background:#999;
	padding:20px;
	border-radius:10px;
	overflow:hidden;
}

.formElement {
	clear:both;
	width:90%;
	padding-left:5%;
	padding-right:5%;
	padding-top:10px;
	padding-bottom:10px;
	margin-bottom:15px;
	background:black;
	border-radius:5px;
}

.formElement .formText {
	float:left;
	width:40%;
	margin:0;
	line-height:1;
}

.formElement .formField, .formElement .formComment {
	float:left;
	width:55%;
	background:#bbb;
	margin-top:0px;
	margin-bottom:0px;
}

.formErrors {
	margin:0;
	line-height:1.3;
	color:#f15823;
	list-style: none;
	margin-bottom: 20px;
}

/*--- responsive code  --- */
@media only screen and (max-width:1199px){
		/*.hero,
		.mainWrapper,
		#archiveImages
		 {
			display: none;
		}*/

		.mainWrapper {
			max-width: 98%;
			margin:0 1%;
		}

		.footerImage {
			max-width: 50%;
			height:auto;
			/*display: block;
			margin: 0 auto;*/
		}

		#archiveImages img	{
			max-width:45%;
			height:auto;
		}
		.mainWrapper img{
			max-width:85%;
			height:auto;
		}

	}


@media only screen and (max-width:700px){
		/*nav,
		.hero,
		.mainWrapper,
		#archiveImages,
		.footerMenu
		 {
			display: none;
		}
*/
		

body {
		font-size: 50%;
	}

	p{
		font-size:16px;
	}
		

/* ---- responsive menu ---*/
.menu-toggle { /* --- open button --- */
	display: block;
	font-size:16px;
		padding:5px;
		border-radius: 5px;
		margin-left:20px;
		color:#bf4e28;
		color:#aaa;
		background-color:#333;
		text-shadow:1px 1px 1px #666;
}

.mainMenu {
    height: 100%;
    width: 0px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    background-color:rgba(0,0,0, 0.8);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

nav ul,
ul.footerMenu
 {
	flex-direction: column;
}

nav ul li {
	margin-bottom:30px;
	border-bottom: 0px
}

nav ul li.active,
nav ul li:hover {
	border-bottom: none;
}

.mainMenu .closebtn {
    text-decoration: none;
    font-size: 40px;
    position: absolute;
    top: 0;
    right: 25px;
    margin-left: 50px;
    color:#aaa;
    display: block;
}

.imageContainer {
	flex-direction: column;
	flex-wrap: wrap;
	align-items:  center;
}

.imageContainer img {
	max-width: 75%;
	margin:5px 0;
}
	
}