@charset "utf-8";
/* CSS Document */
/* 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;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*End Myers Reset*/
body {
	font-family: 'Open Sans', sans-serif;
	line-height:150%;
}
h1 {
	font-family: 'Lora', serif;
	text-transform:uppercase;
	font-size:2em;
}
h2 {
	margin-top:.5em;
	text-transform:uppercase;
	letter-spacing:3px;
}
strong {
	font-weight:bold;
}
#header {
	width:100%;
	position:fixed;
	top:0;
	padding:2.5vh 0;
	background-color:#08133f;
	color:#c2bbdd;
	text-align:center;
	z-index:99;
	border-bottom:4px solid #c2bbdd;
}
#container {
	width:100%;
	margin-top:10vh;
	height:auto;
}
#logo {
	position:fixed;
	bottom:3vh;
	left:2%;
	height:15vh;
	z-index:100;
}
.half {
	position:relative;
	box-sizing:border-box;
	width:50%;
	padding:5vh 2.5%;
	float:left;
}
.half p {
	margin-bottom:2em;
}
.half h3 {
	font-family: 'Lora', serif;
	color:#08133f;
	font-size:1.5em;
}
.half_input {
	width:50% !important;
	float:left;
}
.quarter_input {
	width:25% !important;
	float:left;
}
.note {
	font-size:.85em;
	font-style:italic;
	display:block;
	box-sizing:border-box;
	width:100%;
	padding:15px;
	background-color:#e5e2f7;
}
ol li, ul li {
	margin-left:5%;
	margin-bottom:1em;
}
ol li {
	list-style:decimal;
}
ul li {
	list-style:disc;
}
.left_line {
	border-left:1px solid #ccc;
}
label {
	width:100%;
	display:block;
	font-weight:700;
}
input[type=text], select, textarea {
	width:100%;
	background-color:#E5E5E5;
	border:2px solid #ccc;
	box-sizing:border-box;
	padding:8px;
	margin-bottom:1em;
}
textarea {
	height:8em;
}
input[type=text]:focus, select:focus {
	background-color:#c2bbdd;
	border:2px solid #08133f;
	transition:.5s;
}
button {
	display:block;
	font-size:1em;
	padding:.75em;
	color:#fff;
	background-color:#746da5;
	border:2px solid #08133f;
	margin-bottom:1.5em;
	transition:.5s;
}
button:hover {
	cursor:pointer;
	background-color:#08133f;
	transition:.5s;
}
.half_input {
	width:50% !important;
	float:left;
}
.half_input:after {
  content: "";
  display: table;
  clear: both;
}
.line {
	display:block;
	border-bottom:1px solid black;
	width:100%;
	height:0px;
	margin-top:2em;
}
.remove_field {
	color:#b71e23;
}
input[type=submit] {
	display:block;
	margin:0 auto;
	padding:1.75em 0;
	box-sizing:border-box;
	width:100%;
	border:2px solid #841921;
	background-color:#b71e23;
	text-transform:uppercase;
	letter-spacing:5px;
	font-size:1em;
	font-weight:bold;
	color:#fff;
	transition:.5s;
}
input[type=submit]:hover {
	cursor:pointer;
	background-color:#841921;
	transition:.5s;
}
#footer {
	position:relative;
	background-color:#ccc;
	height:20vh;
	width:100%;
	border-top:2px solid #808080;
}