<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Table */
.lists {
	display: flex;	
	justify-content: center;
}
.col1 {
	justify-content: flex-start;
	margin-right: 20%;
}
.col2 {
	justify-content: flex-end;
}
.series {
	display: flex;
	flex-direction: column;
}
.series h2 {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 1.25em;
	letter-spacing: normal;
	color: #1e8bb8;
	margin-bottom: 10px;
}
.spacing {
	margin-top: 1em;
}
.table-wrapper {
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}

	table {
		margin: 0 0 .75em 0;
		width: 100%;
		background-color: #f8f8f8;
	}

		table tbody tr {
			border: solid 1px #c9c9c9;
			border-left: 0;
			border-right: 0;
		}

			table tbody tr:nth-child(2n + 1) {
				background-color: rgba(144, 144, 144, 0.075);
			}

		table td {
			font-family: 'Corbel', sans-serif;
			padding: .5em 1em .5em .5em;
		}
table td a:link, a:visited, a:active, a:focus {
	font-family: 'Corbel', sans-serif;
	font-size: 16pt;
	color: #000;
}

		table th {
			font-family: 'Roboto Condensed', sans-serif;
			font-size: 1.05em;
			font-weight: 700;
			color: #7bc14b;
			padding: .35em .75em .35em .7em;
			text-align: left;
		}

		table thead {
			border-bottom: solid 2px #c9c9c9;
			border-top: solid 2px #c9c9c9;
		}

		table tfoot {
			border-top: solid 2px #c9c9c9;
		}

		table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td {
				border: solid 1px #c9c9c9;
				border-left-width: 0;
				border-top-width: 0;
			}

				table.alt tbody tr td:first-child {
					border-left-width: 1px;
				}

			table.alt tbody tr:first-child td {
				border-top-width: 1px;
			}

			table.alt thead {
				border-bottom: 0;
			}

			table.alt tfoot {
				border-top: 0;
			}

/* Main */

	#main {
		padding: 0 0 1.5em 0 ;
		margin-top: -15px;
	}

	#main .inner p {
	padding: 0;
	margin-top: -15px;
	margin-bottom: 18px;
}

		@media screen and (max-width: 736px) {

			#main {
				padding: 0 0 .2em 0 ;
			}
		}</pre></body></html>