/* Base styles */

body {
	background-color: #222222;
	color: #ffffdd;
	font-family: 'Open Sans',sans-serif;
	font-size: 18px;
	font-weight: 400;
}

a {
	color: #aaaaaa;
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	color: #dd0000;
}

h1,h2 {
	margin-top: 10px;
	margin-bottom: 5px;
	font-family: Arvo, serif;
	font-weight: 700;
}

h3 {
	margin-top: 10px;
	margin-bottom: 5px;
	font-family: Arvo, serif;
	font-weight: 400;
}

p {
	margin-top: 10px;
	margin-bottom: 10px;
}

ul.playul {
	list-style: none;
	padding: 0;
}

li.playli {
	background: url(/media/playbtnsm.png) no-repeat left top;
	background-size: 20px;
	padding-left: 30px;
	min-height: 20px;
	margin: 0 0 10px 0;
}

/* Header */

@media screen and (max-width: 679px) {
	/* stacked layout for narrow window width */
	.header {
		align-items: top;
	}
}

@media screen and (min-width: 680px) {
	/* inline layout for narrow window width */
	.header {
		display: flex;
		align-items: top;
		justify-content: space-between;
	}
}

.headleft {
	display: flex;
}

.headlogo {
	height: 150px;
}

.headlinks {
	list-style: none;
	display: flex;
	margin-top: 10px;
	padding-left: 0px;
	justify-content: center;
}

.headlink-item {
	margin-left: 5px;
	margin-right: 5px;
}

.headlink {
	font-size: 22px;
}

/* Body */

.container169 {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
  
/* Then style the iframe to fit in the container div with full height and width */
iframe.expanding {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.thumbs {
	line-height: 0;
}

img.thumb {
	margin: 1px;
}

img.thumb:hover {
	filter: brightness(150%);
}

@media screen and (max-width: 679px) {
	/* single column layout for screens less than or equal to 629 pixels */
	#primary {
		float: none ;
		width: 100% ;
	}
	#secondary {
		float: none;
		width: 100%;
	}
	.rightpadded {
	}
	.boxed {
		border-style: hidden;
	}	
}

@media screen and (min-width: 680px) {
	/* two-column layout for screens greater than or equal to 630 pixels */
	#primary {
		float: left ;
		width: 55% ;
	}
	#secondary {
		float: right;
		width: 45%;
	}
	.rightpadded {
		padding-right: 10px;
	}
	.boxed {
		padding-left: 10px;
		padding-right: 10px;
		border-width: 1px;
		border-style: hidden hidden hidden solid;
	}
}

/* Footer */

.footer {
	clear: both;
}