* {
  box-sizing: border-box;
}
body {
	font-family: sans-serif;
	font-size: 16px;
	background-color: #F4F4F4;
	color: #999999;
	margin: 0;
}
div#header {
	height: 66px;
	line-height: 66px;
	padding-left: 120px;
	background-color: #026295;
	color: white;
	margin-bottom: 60px;
}
p {
	margin: 30px 120px;
	line-height: 1.8;
}
a {
	color: inherit;
	text-decoration: none;
	transition: color 0.5s;
}
a:hover {
	color: #037DC0;
	text-decoration: underline;
}
form {
	margin: 30px 120px;
	max-width: 1200px;
}
input, button, select {
	font-family: sans-serif;
	font-size: 15px;
	color: #222;
	outline-style: none;
}
input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="datetime-local"] {
	border: thin solid #E2E2E2;
	transition: border-color 0.5s;
	padding: 16px;
	margin: 10px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="datetime-local"]:focus {
	border-color: rgb(2,98,149);
}
input[type="text"]::placeholder, input[type="password"]::placeholder, input[type="email"]::placeholder, input[type="number"]::placeholder {
	color: #AAA;
	text-transform: initial;
}
input[type="number"] {
	text-align: center;
}
textarea {
	font-family: sans-serif;
	font-size: 15px;
	outline-style: none;
	border: thin solid #E2E2E2;
	resize: vertical;
	color: #222;
	transition: border-color 0.5s;
	height: 200px;
	min-height: 200px;
	padding: 16px;
	margin: 10px;
	text-wrap: nowrap;
}
textarea:focus {
	border-color: rgb(2,98,149);
}
textarea::placeholder {
	color: #AAA;
}
select {
	border: thin solid #E2E2E2;
	background-color: white;
	transition: border-color 0.5s;
	padding: 16px 32px 16px 16px;
	margin: 10px;
	-webkit-appearance: none; /* Because of Safari. */
	-moz-appearance: none;
	appearance: none;
	background-image: url("arrow.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
}
select:focus {
	border-color: #015989;
}
option {
	background-color: transparent;
	color: #222;
}
input[type="submit"], input[type="button"], button {
	font-size: 16px;
	background-color: #037DC0;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
	padding: 16px 40px;
	transition: background-color 0.5s;
	text-transform: uppercase;
	margin: 10px 10px;
}
input[type="submit"]:hover, input[type="button"]:hover, button:hover {
	background-color: rgb(2,98,149);
}
input[type="file"] {
	display: none;
}
label.file {
	font-size: 16px;
	display: inline-block;
	background-color: #037DC0;
	color: #FFFFFF;
	cursor: pointer;
	padding: 16px 40px;
	transition: background-color 0.5s;
	text-transform: uppercase;
	margin: 10px 10px;
}
label.file:hover {
	background-color: rgb(2,98,149);
}
div.simpleflex {
	display: flex;
}
div.simpleflex > * {
	flex: 1;
}
div.simpleflex img {
	max-width: 100%;
	margin: 10px;
	display: none;
}
span.symbol {
	display: inline-block;
	font-family: font-awesome-regular-6;
	margin: 0 10px;
	user-select: none;
	color: #CCC;
}