@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*End of Myers*/
* {
	box-sizing:border-box;
}
body {
	font-family: futura-pt, sans-serif; 
	font-weight: 400; 
	font-style: normal; 
	background-color:#f9f6f2;
	color:#323232;
	font-size: calc(12px + .35vw);
}
strong {
	font-weight:700;
}
#hold_all {
	position:fixed;
	top:0;
	width:100%;
	padding:2em 20%;
	background-color:#1764ad;
	z-index:9999;
	-webkit-box-shadow: 0px 5px 8px 4px rgba(0,0,0,0.24);
	-moz-box-shadow: 0px 5px 8px 4px rgba(0,0,0,0.24);
	box-shadow: 0px 5px 8px 4px rgba(0,0,0,0.24);
}
.hold_checkbox {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.navbar {
	display:none;
}
.scrolldown {
	display:block !important;
}
#head, #content {
	width:60%;
	min-width:1000px;
}
#head {
	margin:0 auto;
}
#content {
	border-top:4px solid #1764ad;
	margin:2em auto;
	padding-top:2em;
}
body {
	padding:2em 0;
}
h1, h2 {
	color:#1764ad;
}
h1 {
	font-family: parkinson, serif;
	font-weight: 800;
	font-style: normal;
	font-size: calc(24px + .5vw);
	margin:.5em 0;
	text-align:center;
}
h2 {
	font-size: calc(18px + .5vw);
	text-transform:uppercase;
	margin-bottom:.5em;
	text-align:center;
}
h3 {
	font-family: parkinson, serif;
	font-weight: 800;
	font-size: calc(18px + .5vw);
	margin:0 0 .5em 0;
	color:#1764ad;
}
p {
	line-height:115%;
	margin-bottom:1em;
}
.line_break {
	display:block;
	width:100%;
	margin:2em 0;
	border-top:1px dotted #1764ad;
}
.attention {
	font-weight:700;
	color:#BA1F33;
	text-decoration:underline;
}
input[type="text"] {
	width:100%;
	padding:1em;
	-webkit-appearance: none;
	border:1px solid #323232;
	border-radius:0;
}
input[type="submit"] {
	width:100%;
	padding:1em;
	display:block;
	border:0;
	color:#fff;
	background-color:#BA1F33;
	margin:1em 0;
	font-size: calc(20px + .5vw);
	font-family: futura-pt, sans-serif; 
	font-weight: 400; 
	font-style: normal; 
	text-transform:uppercase;
}
input[type="submit"]:hover {
	background-color:#A5112A;
	cursor:pointer;
}
/*SELECT STYLING*/
/* The container must be positioned relative: */
.custom-select {
  	position: relative;
	margin-bottom:1em;
}

.custom-select select {
 	display: none; /*hide original SELECT element: */
}

.select-selected {
  	background-color:#1764ad;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 1em;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color:#1764ad;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.25);
} 
/*END SELECT STYLING*/


/*CHECKBOX STYLING*/
/* The container */
.contain-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
	color:#fff;
}

/* Hide the browser's default checkbox */
.contain-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.contain-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.contain-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.contain-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.contain-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*END CHECKBOX STYLING*/
.logo {
	width:20%;
}
@media only screen and (max-device-width: 736px) {
	body {
		font-size: calc(16px + .5vw);
	}
	#hold_all {
		padding:1em 0 1.25em 0;
	}
	.hold_checkbox {
		position:relative;
		top: 0%;
		left: 50%;
		transform: translate(-50%, 0%);
		width:70%;
	}
	#head, #content {
		width:100%;
		min-width:0;
	}
	#head {
		padding:0 1em;
	}
	#content {
		padding:2em 1em 0 1em;
	}
	.poof {
		display:none;
	}
	.logo {
		width:60%;
	}
	input[type="submit"] {
		-webkit-appearance: none;
		border-radius: 0;
		margin-bottom:0;
	}
}
@media only screen and (orientation:landscape) and (min-device-width: 737px) and (max-device-width: 1256px) {

}
@media only screen and (min-device-width: 737px) and (max-device-width: 1256px) {

}
@media only screen and (orientation:portrait) and (max-device-width: 1256px) { 

}
/*Phone - up to SE*/
@media only screen and (max-device-width: 1256px) {

}