body {
	font-family: Ubuntu, Verdana, Arial, sans-serif;
	font-size: 18px;
	color: #555;
}

#notice {
	/*background-color: #555;*/
	background-color: #faba00;
	color: #fff;
	padding: 1em;
	display: flex;
	justify-content: center;
}

.attention-bar {
	background-color: #faba00;
	color: #fff;
	padding: 3em;
	font-size: 1.25em;
	margin-bottom: 3em;
}

header {
	background-color: #f8f8f8;
	padding: 2.5em 0;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

header img {
	height: 60px;
}

.logo-wrapper {
	display: flex;
	justify-content: center;
}

.content-wrapper {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}

.content-wrapper-small {
	max-width: 900px;
}

#main {
	margin-top: 3em;
}

h1, h2, h3 {
	line-height: 1.5em;
	font-weight: bold;
}

h1, h2 {
	margin-bottom: 1em;
}

h1 {
	font-size: 1.75em;
}

h2 {
	font-size: 1.5em;
}

p {
	margin-bottom: 1em;
	line-height: 1.5em;
}

.space-below {
	margin-bottom: 3em;
}

.content-centered {
	display: flex;
	justify-content: center;
}

.page-grid {
	display: grid;
	grid-column-gap: 4em;
}

img {
	max-width: 100%;
}

.grid-2-col {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3-col {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4-col {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.col-center-hor {
	display: flex;
	justify-content: center;
}

.col-center-ver {
	display: flex;
	align-items: center;
}

.page-alt-bg {
	background-color: rgba(250, 250, 250, 0.95);
	padding: 3em 0;
}

.large-icon {
	font-size: calc(1.5em + 3vw);
	color: #faba00;
}

.med-icon {
	font-size: 2em;
	color: #faba00;
}

.med-icon-white {
	color: #fff;
}

.grid-list {
	display: grid;
	grid-row-gap: 2em;
}

.list-item {
	display: grid;
	grid-template-columns: 60px 1fr;
	align-items: center;
}

footer {
	background-color: #faba00;
	padding: 3em 0;
}

footer h2 {
	color: white;
}

p.text-large {
	font-size: 1.25em;
}

strong {
	font-weight: bold;
}

footer a {
	color: #ffffc0;
	text-decoration: none;
}

.network-background {
	background-image: url(/images/network-background.png);
	background-position: top left;
	background-repeat: no-repeat;
}

.page-grid-footer {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-row-gap: 2em;
}

.industry-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-row-gap: 2em;
}

.industry {
	display: grid;
	grid-template-columns: 40px 1fr;
	align-items: center;
}

.industry i {
	margin-right: 0.5em;
}

ul {
	margin-left: 2em;
}

ul li {
	list-style-type: disc;
	margin-bottom: 1em;
	line-height: 1.25em;
}