﻿@charset "utf-8";
/* Base (default) styles for the site*/
/*h1{
	font: normal normal bold 40px/1.4em din-next-w01-light,din-next-w02-light,din-next-w10-light,sans-serif;
    font-style: normal;
    font-variant-caps: normal;
    font-weight: bold;
    font-stretch: normal;
    font-size: 40px;
    line-height: 1.4em;
    font-family: din-next-w01-light, din-next-w02-light, din-next-w10-light, sans-serif;
    font-size-adjust: none;
    font-kerning: auto;
    font-optical-sizing: auto;
    font-variant-alternates: normal;
    font-variant-east-asian: normal;
    font-variant-ligatures: normal;
    font-variant-numeric: normal;
    font-variant-position: normal;
    font-language-override: normal;
    font-feature-settings: normal;
    font-variation-settings: normal;
}
*/
#header{
	position:relative;
	width:100%;
	height:500px;
	display: flex;
	align-items:center;
	top:-30px;
}
.header-image{
	position:absolute;
	width:100%;
	z-index:-1;
}

#page-title{
	position:relative;
	z-index:10;
	width:100%;
	margin:0px auto;
	text-align:center;
	top:-20px;
	font-size:400%;
	font-weight:bold;
	color:#FFF;
	text-shadow: 4px 4px 5px #1c1a24;
}
#main-menu{
	position:absolute;
	top:350px;
	width:100%;
	margin:0px auto;
	text-align:center;
}
#content-area{
	background-color: #e6eaed;
	position:relative;
	top:-100px;
	min-height:600px;
}
#sub-menu{
	text-align:center;
}
.nav-toggle{
	font-size:200%;
	width: 100%;
	margin: 0px auto;
	display:none;
}
button{
	border:none;
	border-radius: 25px;
	background-color:#fe6161;
	color:#FFF;
	padding:10px;
	font-size:140%;
	font-weight:bold;
	width:200px;
	cursor:pointer;
	margin:5px;
}
.section{
	max-width:750px;
	margin:0px auto;
	padding:10px;
	display:flex;
	justify-content:space-around;
	flex-wrap:wrap;
}
.section .pane{
	text-align:justify;
	hyphens: auto;
}
.section .pane li{
	text-align:left;
}
.section-wide{
	max-width:1000px;
}
.section-full-size{
	max-width:100%;
}
.column{
	width:300px;
	padding:5px;
	align-content:center;
}
.column .pane{
	width:300px;
	margin: 0px auto;
	padding-left:10px;
}
.pane img.float-left{
	float: left;
	max-width: 160px;
	margin-right:30px;	
	margin-bottom:20px;	
}
.pane .text-block{
	margin-top:10px;
	margin-bottom:10px;
}
.hr{
	width:100%;
}
.hr hr{
    border: 0; border-top: 1px solid #6EA4CA;
}
#footer{
	text-align:center;
	margin-bottom:10px;
	font-size:130%;
}
#footer div{
	margin:15px;
}
#footer img{
	width:auto !important;
}

/* Minimum width of 720 pixels. */
/*@media screen and (max-width: 730px) {
#header{
}
#page-title{
	font-size:300%;
}
button{
	padding:4px;
	font-size:120%;
	width:150px;
}
.column,
.column .pane{
	width:90%;
}
}
*/
@media screen and (max-width: 600px) {
#header{
	position: inherit;
	height:auto;
	display: block;
}
.header-image{
	position:inherit;
}
#page-title{
	position:absolute;
	top:160px;
	font-size:200%;
}
#main-menu{
	position:inherit;
}
#main-menu button{
}

.nav-toggle{
	display: block;
}
#content-area {
    position: inherit;
}
}
