:root {
        color-scheme: light dark;
        --link-color: #0070c9;
}

@media (prefers-color-scheme: dark) {
        :root {
                --link-color: #66bbff;
                background-color: #1e1e1e;      /* required for Browsers != Safari */
                color: #ffffff;                 /* required for Browsers != Safari */
        }
}

body, .header, .footer, .table, .footnotes {
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,sans-serif;
}

body {
	font-size: 14px;
}

a {
        color: var(--link-color);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.header {
	font-size: 20;
	color: #76797C;
}

table.footer {
	font-size: 12px;
	color: #76797C;
	border-width: 0px 0px 0px 0px;	
	width: 100%;
}
table.footer td {
	vertical-align: top;
}

table.table {
	font-size: 12px;
}

.footnotes {
	font-size: 12px;
}
