/* -------------------------------*/
/* CSS RESETS
/* -------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ul {
	list-style: none;
}
body {
	line-height: 1;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -------------------------------*/
/* SITE STYLES
/* -------------------------------*/

body {
	padding: 20px 40px 80px 40px;
	max-width: 1200px;
	margin: auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

b, strong {
	font-weight: bold;
}

i, em {
	font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding-top: 1rem;
	line-height: 1.5em;
}

h1 {
	font-size: 2.5rem;
	text-align: center;
}

h2 {
	font-size: 2rem;
	border-top: 1px solid #CCC;
}

h3 {
	font-size: 1.5rem;
	font-weight: bold;
}

p {
	margin-bottom: 1em;
	font-size: 1rem;
	line-height: 1.5em;
}

ul ul {
	list-style: disc;
	margin-left: 2rem;
}

li {
	line-height: 1.5em;
	margin-top: .5em;
}

table {
	width: 100%;
	margin: 2.5rem 0;
}

tr:nth-child(even) {
	background: #EFEFEF;
}

td, th {
	vertical-align: middle;
	text-align: left;
	padding: 15px 5px;
	line-height: 1.5em;
}

th {
	font-size: 1.2rem;
}

th {
	font-weight: bold;
}

img.logo {
	width: 100%;
	max-width: 1125px;
	margin: auto;
}

.center {
	text-align: center;
}

.highlight {
	color: red;
}

.events-link {
	text-align: center;
    display: block;
    padding: 10px;
    width: 200px;
    margin: 20px auto;
    border: 1px solid #287529;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    background: #0d8e0d;
    color: white;
}

.events-link:hover {
	background: #2db900;
}

.footer-links {
	text-align: center;
	margin-top: 40px;
	font-weight: bold;
	border-top: 1px solid #CCC;
	padding-top: 10px;
}

.footer-links a {
	text-decoration: none;
	display: inline-block;
	padding: 0 15px;
}

@media only screen and (max-width: 600px) {
	body {
		padding: 20px 10px 80px 10px;
	}

	tr {
		display: flex;
		flex-wrap: wrap;
		padding: 10px 0;
	}

	th {
		display: none;
	}

	td {
		width: 100%;
		padding: 5px;
	}
}