@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #333333;
	font-family: "Arial", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
	border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	margin: 0 0 1rem;
}

h1 {
	text-align: center;
	line-height: 1.2;
	font-size: 1.25rem;
	margin: 1.562rem 0;
}

h1 span {
	font-weight: normal;
}

h1 small {
	font-size: 1rem;
	font-weight: normal;
}

h2 {
	font-weight: 700;
	font-size: 1rem;
	margin: 0;
}

h3 {
	font-weight: normal;
	font-size: 1rem;
	text-decoration: underline;
	margin: 0 0 1rem;
}

ul {
	list-style: none;
	margin: 0 0 1rem 1.25rem;
	padding: 0;
}

ul li {
	padding-left: 1.875rem;
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -1.875rem;
	font-size: 1.375em;
	line-height: 1;
}

a.color {
	text-decoration: underline;
	color: #003366;
}

header {
	padding: 1.562rem 3.75rem;
	display: flex;
	justify-content: center;
}

article {
	padding: 0 60px;
}

.section {
	padding: 0 0 0 1.25rem;
}

p span {
	white-space: nowrap;
}

footer {
	padding: 0 3.75rem 1.562rem;
}

@media only screen and (max-width: 49.938rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	header {
		padding: 1.25rem;
	}

	article {
		padding: 0 1.25rem;
	}

	footer {
		padding: 0 1.25rem .625rem;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width: 32.5rem) {
	ul {
		margin: 0 0 1rem;
	}

	ul li {
		padding-left: 1rem;
	}

	ul li:before {
		margin-left: -1rem;
	}

	.section {
		padding: 0;
	}

	footer {
		padding: 0 1.25rem;
	}

	footer p:last-of-type {
		text-align: center;
	}
}