﻿#header {
	width: 100%;
	margin: 0;
	background-color: black;
	text-align: left;
}
	#header img {
		display: block;
		box-sizing: border-box;
		width: 100%;
	}
#layout-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 480px;
	margin: 0 auto 0 auto;
	box-sizing: border-box;
}
#layout-left {
	flex-direction: column;
	margin-top: 10px;
	width: 100%;
}
#layout-right {
	margin-top: 10px;
	flex-direction: column;
}
.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
	.menu li {
		margin-bottom: 2px;
	}
		.menu li a {
			display: block;
			padding: 8px 16px;
		}
.images {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: 10px;
	margin: 0;
	padding: 0;
}
	.images img {
		height: auto;
		width: 100%;
		object-fit: cover;
	}
.videos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: 10px;
	margin: 0;
	padding: 0;
}
	.videos iframe {
		height: 300px;
		width: 100%;
	}

body {
	font-size: 16px;
	font-weight: normal;
	font-family: 'Open Sans', sans-serif;
	margin: 20px;
}
h1 {
	font-family: 'Source Serif Pro', serif;
	font-size: 48px;
	font-weight: bold;
	margin: 12px auto 6px auto;
	text-align: left;
}
h2 {
	font-family: 'Source Serif Pro', serif;
	font-size: 36px;
	font-weight: bold;
	clear: left;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 12px auto 0 auto;
	text-align: left;
}
h3 {
	font-size: 20px;
	font-weight: bold;
	margin-top: 12px;
	margin-bottom: 0;
}
h4 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 12px;
	margin-bottom: 0;
}
p {
	line-height: 1.25em;
	margin:0;
	margin-bottom: 1em;
}
#factsheet {
	margin-bottom: 20px;
}.caption {
	font-size: 14px;
	font-style: italic;
}
ul {
	margin: 0;
	padding-left: 1em;
	list-style-position: inside;
}
li {
	line-height: 1.5;
}
.pronouns {
	font-style: italic;
	font-weight: normal;
}
a, a:visited {
	text-decoration: none;
	font-weight: normal;
	color: #00a0d2;
}
	a:hover {
		color: #ff2800;
		text-decoration: underline;
	}
.menu li {
	background-color: #00a0d2;
}
	.menu li a {
		color: white;
		font-weight: bold;
		padding: 8px 16px;
		text-decoration: none;
	}
		.menu li a:hover {
			background-color: #ff2800;
			color: white;
			font-weight: bold;
		}
.button {
	font-size: 16px;
	font-weight: bold;
	background-color: #00a0d2;
	color: white;
	border: none;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	width: 100%;
	max-width: 240px;
	cursor: pointer;
}
	.button:hover {
		background-color: #ff2800;
		color: white;
	}

.requestform {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	box-sizing: border-box;
	margin-right: -10px;
}
.requestform-select {
	display: flex;
	flex-direction: column;
	flex: 2 0 auto;
	margin-top: 10px;
	margin-right: 10px;
}
.requestform-submit {
	display: flex;
	flex-direction: column;
	flex: 1 0 auto;
	margin-top: 10px;
	margin-right: 10px;
}
form select {
		height: 40px;
		font-family: 'Open Sans', sans-serif;
		font-size: 16px;
		border: 1px solid black;
		border-radius: 0;
	}
form button {
		height: 40px;
		min-width: 160px;
		font-size: 16px;
		font-weight: bold;
		background-color: #00a0d2;
		color: white;
		border: none;
		padding: 0px;
		text-align: center;
		text-decoration: none;
		cursor: pointer;
	}
		form button:hover {
			background-color: #ff2800;
			color: white;
		}

.prices {
	width: 100%;
	max-width: 240px;
	border: none;
}
.prices td {
	padding-left: 10px;
	padding-right: 10px;
}
	.prices td:nth-child(1) {
		font-weight: bold;
	}
	.prices td:nth-child(2) {
		text-align: right;
	}
		.prices tr:nth-child(odd) {
			background-color: #f2f2f2;
		}

.releases {
	display: block;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
	.releases .release {
		margin: 10px 0 10px 0;
		position: relative;
		text-align: center;
	}
		.releases .release img {
			display: block;
			margin-left: auto;
			margin-right: auto;
			width: 100%;
		}
		.releases .release .overlay {
			position: absolute;
			top: 100%;
			margin-top: -40px;
			background-color: rgba(0, 0, 0, 0.25);
			height: 40px;
			width: 100%;
			text-align: left;
		}
		.releases .release .caption {
			height: 0;
			position: relative;
			bottom: -5px;
			font-style: italic;
		}
		.releases .release .title {
			color: white;
			font-weight: 400;
			font-size: 18px;
			vertical-align: middle;
			margin-left: 10px;
			position: relative;
			top: 50%;
			transform: translate(0, -50%);
		}
.logo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 -15px 0 0;
}
	.logo img {
		max-height: 120px;
		max-width: 100%;
		object-fit: contain;
		padding: 0 10px 10px 0;
	}

@media screen and (min-width: 768px) {
	#layout-container {
		max-width: 960px;
	}
	#layout-left {
		flex: 1;
		margin-right: 20px;
	}
	#layout-right {
		flex: 3;
	}
	#navigation {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}
	#factsheet {
		margin-right: 20px;
	}
	.row {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.column-full {
		flex: 6;
	}
	.column-half {
		flex: 3;
	}
	.column-onethird {
		flex: 2;
	}
	.column-twothirds {
		flex: 4;
	}
	h1:first-child {
		margin-top: 0;
	}
	h2:first-child {
		margin-top: 0;
	}
	.requestcopy select {
		flex: 3;
	}
}
