body{
	font-family: Helvetica, Arial, sans-serif;
	background-color: #000000;
	margin: 0px;
}
.container{
	margin: 0px auto;
	max-width: 1366px;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.col{
	flex-grow: 1;
}
header{
	text-align: center;
	top: 0px;
	position: fixed;
	width: 100%;
}
nav{
	background-color: rgba(255, 255, 255, .8);
	box-shadow: 0px 0px 3px #333333;
	padding: 5px 0px;
}
nav a{
	display: block;
	padding: 5px 5px;
	font-size: 20px;
	text-shadow: 2px 2px #333333;
	text-decoration: none;
	-webkit-transition: color .15s ease-out;
    -moz-transition: color .15s ease-out;
    -o-transition: color .15s ease-out;
    transition: color .15s ease-out;
}
a{
	color: #ffffff;
}
a:hover{
	color: #e38503;
}
h1, h2, h3{
	text-align: center;
	font-size: 16px;
	line-height: 21px;
	margin: 2px 0px;
	color: #ffffff;
	font-weight: normal;
}
h1{
	font-weight: bold;
}
.imgSizer{
	display: block;
	margin: 0px auto;
	max-width: 100%;
	height: auto;
	padding-top: 10px;
}
#top{
	padding-top: 40px;
}
@media only screen and (max-width: 768px){
	.row{
		justify-content: center;
	}
	.col{
		flex-grow: 0;
		flex-basis: 25%;
	}
	#top{
		padding-top: 70px;
	}
}