/* CSS Mini Reset */

html, body, div, form, fieldset, legend, label {
	margin: 0;
	padding: 0; 
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	text-align: left;
	vertical-align: top;
}

h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; }

img { border: 0; }

/* End Reset */

* {
	box-sizing: border-box;
}

body {
	font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #b2c2d4;
	width:100%;
}
h1 {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin: 0;
	padding-top: 70px;
	/*border: 1px solid red;*/
}

.contentContainer {
	position: absolute;
	width: 100%;
	height: 260px;
	background: #19497D;
}
.logo {
	position: absolute;
	top: 0px;
	left: 0px;
}
header {
	width: 100%;
}
fieldset {
	border: none;
}
fieldset input {
	position: absolute;
	bottom: 10px;
	right: 150px;
	padding: 2px;
	width: 80px;
	height: 40px;
	font-size: 18px;
	text-align: center;
}
p {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: 0;
	padding: 20px 20px 0 20px;
	/*border: 1px solid red;*/
}
button {
	position: absolute;
	bottom: 10px;
	right: 10px;
	height: 40px;
	margin-top: 10px;
	padding: 0 10px;
	border: none;
	background: #b1db23;
	color: #00356f;
	font-weight: bold;
	cursor: pointer;
	animation-delay: 2s;
	/*transition: all 350ms ease-out;*/
}

button:hover {
	background: #c1e34e;
}

