* {
	margin: 0;
}

html, body {
	height: 100%;
	font-family: "Whitney SSm A", "Whitney SSm B", 'Roboto', sans-serif;
	background: white;
}
p {
	line-height: 1.5em;
}

a, a:link, a:visited, a:active {
	color: blue;
	text-decoration: none;
}

a:hover {
	color: blue;
	text-decoration: underline;
}

h1 {
	font-weight: 200;
}

.header-text-1 {
	font-size: 16px;
	font-family: "Sentinel A", "Sentinel B", 'Source Serif Pro', serif;
	font-style: italic;
}

.header-text-2 {
	font-size: 24px;
	font-family: "Whitney SSm A", "Whitney SSm B", 'Roboto', sans-serif;
}

.header-line {
	margin: 30px 0;
	border-bottom: #ccc 2px solid;
}

h2 {
	color: #002255;
	font-family: "Sentinel A", "Sentinel B", 'Source Serif Pro', serif;
	margin: 40px 0 10px 0;
}

textarea {
	resize: none;
	width: 100%;
	height: 200px;
	font-family: "Whitney SSm A", "Whitney SSm B", 'Roboto', sans-serif;
	border: 2px #ddd solid;
	border-radius: 5px;
	padding: 10px;
}

input[type="text"] {
	width: 500px;
	font-family: "Whitney SSm A", "Whitney SSm B", 'Roboto', sans-serif;
	border: 2px #ddd solid;
	border-radius: 5px;
	padding: 10px;
}

input[type="checkbox"] {
	position: absolute;
	width: 0;
	height: 0;
	margin: 0;
	border: 1px solid transparent;
	margin-top: 3px;
	z-index: 0;
}

input[type=radio] + label, input[type='checkbox'] + label {
	display: block;
	cursor: pointer;
}

input[type=checkbox] + label:before {
	font-family: FontAwesome;
	background: white;
	color: #ccc;
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding-right: 8px;
	width: 15px;
	transition: color ease .5s;
	-webkit-transition: color ease .5s;
	-moz-transition: color ease .5s;
	-o-transition: color ease .5s;
}

input[type="checkbox"] + label:before {
	content: "\f096"; /* Checkbox Unchecked */
	font-size: 17px;
}

input[type="checkbox"]:checked + label:before {
	content: "\f14a"; /* Checkbox Checked */
	color: #369;
}

label {
	position: relative;
	margin: 5px 0;
	z-index: 1;
}

select {
	border: 2px #ddd solid;
	border-radius: 5px;
}

li {
	line-height: 24px;
}

.header {
	background-color: #002255;
	padding: 5px 0;
}

.title-header {
	position: relative;
	color: white;
	font-family: "Sentinel A", "Sentinel B", 'Source Serif Pro', serif;
	font-size: 70px;
	background: url(../images/feedback-header.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 75px 0px 25px 0px;
	margin-bottom: 50px;
}

.title-header-1 {
	font-size: 16px;
	font-family: "Sentinel A", "Sentinel B", 'Source Serif Pro', serif;
	font-style: italic;
}

.title-header-2 {
	font-size: 24px;
	font-family: "Whitney SSm A", "Whitney SSm B", 'Roboto', sans-serif;
}

.title-header-text {
	width: 700px;
	margin: auto;
}

.logo {
	width: 700px;
	margin: auto;
}

.logo-text {
	color: white;
	font-family: "Sentinel A", "Sentinel B", 'Source Serif Pro', serif;
	display: inline-block;
}

.img-logo {
	display: inline-block;
	position: relative;
	top: 3px;
}

.main-content {
	min-height: 100%;
	margin: 0 auto -75px;
}

.centered-content {
	text-align: center;
	width: 700px;
	margin: auto;
}

.inner-content {
	width: 700px;
	margin: 75px auto;
}

.warning {
	background-color: #eee;
	margin: 30px -20px;
	padding: 20px;
	line-height: 24px;
}

.note {
	font-style: italic;
	margin: 10px 0;
	line-height: 24px;
}

.explanation-text {
	margin: 20px 0;
	line-height: 24px;
}

.instruction-text {
	margin: 20px 0;
	line-height: 24px;
}

.fp-text {
	margin: 20px 0;
	line-height: 24px;
}

.checkbox-choice {
	margin: 10px 0;
}

.check-box {
	margin-right: 10px;
	color: #ccc;
}

select {
	width: 500px;
	font-style: italic;
	font-family: "Whitney SSm A", "Whitney SSm B", 'Roboto', sans-serif;
	font-size: 18px;
	padding-left: 15px;
}

#captcha {
	margin-top: 40px;
}

.blue-button {
	width: 50%;
	background-color: #ABC8E4;
	color: white;
	text-align: center;
	padding: 5px 0;
	font-size: 16px;
	border-radius: 50px;
	cursor: pointer;
	margin: 40px 0;
	border: 2px #ABC8E4 solid;
}

.blue-button.centered {
	margin: 40px auto 0 auto;
}

.blue-button:hover {
	background-color: #88a0b6; 
	border: 2px #88a0b6 solid;
}

#link-button {
	text-decoration: none;
	width: 50%;
}

.footer, .push {
	height: 75px;
}

.footer {
	font-family: "Sentinel A", "Sentinel B", 'Source Serif Pro', serif;
	background-color: #eee;
	text-align: center;
	line-height: 75px;
	color:#aaa;
}

@media (max-width: 800px) {
	.inner-content {
		width: 90%;
		margin: 50px auto;
	}

	textarea {
		width: 90%;
	}

	input[type="text"] {
		width: 90%;
	}

	select {
		width: 100%;
	}

	.warning {
		width: 100%;
	}

	.title-header-text {
		width: 90%;
		margin: auto;
	}

	.logo {
		width: 90%;
		margin: auto;
	}

	.blue-button {
		width: 100%;
		font-size: 24px;
	}

	#link-button {
		width: 100%;
	}	
}

@media only screen and (-webkit-min-device-pixel-ratio : 2) {
	.inner-content {
		width: 90%;
		margin: 50px auto;
	}

	textarea {
		width: 90%;
	}

	input[type="text"] {
		width: 90%;
	}

	select {
		width: 100%;
	}

	.warning {
		width: 100%;
	}

	.title-header-text {
		width: 90%;
		margin: auto;
	}

	.logo {
		width: 90%;
		margin: auto;
	}

	.blue-button {
		width: 100%;
		font-size: 24px;
	}

	#link-button {
		width: 100%;
	}	
}
