body, html {
	font-family: sans-serif;
    overflow-x: hidden;
	background-color: #E8E8E8;
	margin: 0 auto;
}

nav {
	position: relative;
	box-shadow: 0px 2px 4px #888888;
	background-color: #304C91;
	color: #FFFFFF;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

a:link {
	color:#304C91;
	text-decoration: underline;
	text-decoration-style: dotted;
}
a:visited {color:#304C91;}
a:hover {color:#E56B2F;}
a:active {color:#373435;}
.nav-link a:link {color:#FFFFFF;}
.nav-link a:visited {color:#FFFFFF;}
.nav-link a:hover {color:#E56B2F;}
.nav-link a:active {color:#FFFFFF;}
.nav-link a:link {text-decoration:none;}
.nav-link a:visited {text-decoration:none;}
.nav-link a:hover {text-decoration:none;}
.nav-link a:active {text-decoration:none;}
.nav-link.selected {
	border-radius: 5px;
	background: #eaeeff;
	color: #304C91;
}

.contents {
	max-width: 1000px;
	padding: 20px;
	margin: 0 auto;
}
.splash {
	background-color: #e8e8e8;
	border-radius: 20px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75%;
}
@media (max-width: 850px) {
	.splash {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		margin-top: 40px;
	}
}
.two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-row-gap: 1em;
	grid-column-gap: 1em;
}
@media (max-width: 850px) {
	.two-columns {
		grid-template-columns: 100%;
	}
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.row > div {
	padding: 10px 20px;
}

.big-text{
	font-size: 2em;
}

.center {
	text-align: center;
}
.left {
	text-align: left;
}

.visible-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.visible-hidden:focus {
    clip: auto;
    height: auto;
    overflow: auto;
    position: absolute;
    width: auto;
}
.nav-link {
	display: inline-block;
	padding: 10px;
	margin: 0px 15px;
}

.white-box {
	background-color: white;
	box-shadow: 0px 2px 4px #888888;
	padding: 20px;
	box-sizing: border-box;
	width: 100%;
}
@media (max-width: 850px) {
	.white-box {
		text-align: center;
	}
	.white-box > div {
		margin: 0 auto;
	}
}

.fa {
	display: inline !important;
}
.fa-2x {
	padding: 4px;
}

.toolset {
	display: flex;
	flex-wrap: wrap;
	color: #4A4D50;
	font-size: .85em;
	margin-left: 1em;
}
.tool {
	color: #4A4D50;
	background: #DCDCDC;
	border-radius: 10px;
	padding: 4px 8px;
	margin: 2px;
}
@media (max-width: 850px) {
	.toolset {
		width: fit-content;
	}
}

.line-margins {
	line-height: 140%;
}

.indented {
	margin-left: 1.8em;
}

.float-left {
	float: left;
}
.float-right {
	float: right;
}
@media (max-width: 1000px) {
	.mobile-float-none {
		float: none;
	}
}

a.popbox img {
	border: none;
	box-shadow: 0 2px 4px #888888;
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transform: scale(1,1);
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a.popbox:hover img {
	position: relative;
	z-index: 999;
	-o-transform: scale(1.03,1.03);
	-ms-transform: scale(1.03,1.03);
	-moz-transform: scale(1.03,1.03);
	-webkit-transform: scale(1.03,1.03);
	transform: scale(1.03,1.03);
}

.container b {
	color: #373435;
}

h1 {
	color: #373435;
	font-size: 3em;
}
h2 {
	color: #373435;
	font-size: 2em;
	margin: 35px 0px 5px 0px;
}
h3 {
	color: #373435;
	font-size: 1.5em;
	line-height: 1.2em;
	margin: 5px 2px;
}
h4, .h3-small {
	color: #373435;
	font-size: 1.2em;
	font-weight: 600;
	margin: 2px;
}

ul {
	margin: 5px 0px;
}
ul li {
	list-style-type: circle;
}

hr {
	background-image: linear-gradient(to right, #E1E2E1, #304C91, #E1E2E1);
	border: 0;
	margin-bottom: 1.8em;
	height: 1px;
}

p {
	line-height: 110%;
	margin: 7px;
	clear: both;
}
