body {
	overflow-x: hidden;
	background-color: #f4f4f4;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #555;
}

header {
	border-top: 5px solid #e5e5e5;
}
header,
footer {
	padding: 20px 15px;
	background-color: #fff;
	font-size: 13px;
	line-height: 25px;
}
header [class*="col"],
footer [class*="col"],
section [class*="col"] {
	display: inline-block;
	float: none;
	margin-right: -4px;
	vertical-align: middle;
}
.container {
	padding: 15px;
}

.logo {
	max-height: 57px;
}

nav {
	color: #748c8f;
}
nav li {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	white-space: nowrap;
}
nav li a,
nav li .dropdown-target {
	display: inherit;
	padding: 12px 20px;
}
.dropdown-target svg {
	display: inline-block;
	vertical-align: sub;
}
nav li:hover {
	text-decoration: none;
	background-color: #bcced1;
	color: #fff;
}
nav li:not(:last-child) {
	margin-right: 8px;
}
nav li ul {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #bcced1;
	text-align: left;
	z-index: 1;
}
nav li:hover ul,
nav li .dropdown-target:focus + .dropdown-content {
	display: inherit;
}
nav li ul li {
	display: block;
}
nav li ul li:not(:last-child) {
	margin: 0;
}

svg {
	fill: currentColor;
}
.hamburger {
	border: none;
	background: none;
	color: #999;
	line-height: 1;
}
.hamburger:focus,
.hamburger:hover {
	outline: none;
	color: #555;
}
nav#mobile {
	display: none;
}
nav#mobile.active,
nav#mobile.active nav {
	display: block;
}
nav#mobile li {
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0;
	background-color: #748c8f;
	color: #fff;
}
nav#mobile li a {
	padding: 15px;
}
nav#mobile li a.btn {
	text-align: left;
	text-transform: uppercase;
}
nav#mobile li a.btn:hover {
	text-decoration: underline;
}
nav#mobile li ul {
	display: block;
	position: relative;
}
nav#mobile li ul a {
	padding-left: 40px;
}
nav#mobile li ul li:last-child {
	border-bottom: none;
}

footer img {
	display: inline-block;
	max-width: 95px;
	vertical-align: middle;
}
footer nav {
	float: right;
	text-transform: uppercase;
}
footer nav > a:not(:last-child) {
	margin-right: 15px;
}
footer a:not(:last-child) img {
	margin-right: 70px;
}

section {
	margin-top: 40px;
	margin-bottom: 40px;
}
section.alt {
	background: linear-gradient(to bottom, #9bb8bb 0%, #d7e0e1 100%);
}
section.alt-light {
	background-color: #e7edee;
}
section img {
	max-width: 100%;
}
#main section:first-child {
	margin-top: 0;
}
section:last-child {
	margin-bottom: 0;
}

h2 {
	font-size: 2.7em;
}
h2 small {
	display: block;
}
h2 b {
	font-weight: 600;
}
h2 + p {
	padding: 25px 0;
}

a,
a:hover {
	color: inherit;
}
p a,
p a:hover {
	color: #337ab7;
}

ol,
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.btn {
	border: 2px solid #748c8f;
	border-radius: 5px;
	padding: 6px 20px;
	background-color: #fff;
	font-size: 1.3rem;
	line-height: 1.3rem;
	text-align: center;
	color: #748c8f;
}
.btn:hover,
.btn:focus {
	background-color: #748c8f;
	color: #fff;
}
.btn.alt {
	background-color: #748c8f;
	color: #fff;
}
.btn.alt:hover,
.btn.alt:focus {
	background-color: #fff;
	border-color: #748c8f;
	color: #748c8f;
}
.btn:not(:last-child) {
	margin-right: 20px;
}

.figure {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19),
				0 6px 6px rgba(0, 0, 0, 0.23),
				inset 0px 10px 50px 0px rgba(0, 0, 0, 0.15)
}

select,
input {
	background-color: #fff;
	border-radius: 5px;
	border: 1px #748c8f solid;
	color: #748c8f;
	display: inline-block;
	font-size: 1.3rem;
	margin-bottom: 12px;
	padding: 4px;
}

.nowrap {
	white-space: nowrap;
}

.report-graphic {
	position: relative;
	height: 230px;
	width: 100%;
	max-width: 400px;
	background-color: #eee;
	color: #b7cdcf;
}
.report-graphic .secondary-icon,
.default-report::before {
	position: absolute;
	top: 10px;
	left: 10px;
	font: bold 120px/1 monospace;
	color: rgba(0, 0, 0, 0.1);
}
.report-graphic .primary-icon,
.default-report::after {
	position: absolute;
	bottom: 10px;
	right: 10px;
	font: bold 120px/1 monospace;
}
.default-report::after {
	content: '</>';
}

.alert {
	position: fixed;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	z-index: 1;
}
.alert strong a {
	border-bottom: 1px dashed #000;
	border-color: inherit;
}
.alert strong a:hover {
	text-decoration: none;
	border-bottom-style: solid;
}


@media (max-width: 992px) {
	footer {
		text-align: center;
	}
	footer nav {
		display: inline-block;
		float: none;
		margin-bottom: -20px;
	}
	footer [class*="col"] {
		margin: 10px auto;
	}
	header nav > a:not(:last-child),
	footer nav > a:not(:last-child) {
		margin-right: 4px;
	}
}

@media (max-width: 767px) {
	h2 {
		font-size: 2em;
	}
	section {
		text-align: center;
	}
	section * {
		text-align: inherit;
	}
	section [class*="btn"] {
		display: block;
		margin: 15px auto !important;
		max-width: 85%;
		padding: 10px 15px;
		width: 100%;
	}
	.row > .container > [class*="col"]:not(:last-of-type) {
		margin-bottom: 60px;
	}
	h2 select {
		display: block;
		margin: 0 auto 30px !important;
		max-width: 85%;
		padding: 10px 15px;
		width: 100%;
	}
}

#sponsor-logos {
	background-color: #fff;
	border: 1px solid #748c8f;
	border-radius: 15px;
	margin-bottom: 40px;
	padding: 40px;
}
#sponsor-logos * {
	padding: 5px;
}
