/* Burton Strauss 2021, derived from inline styles in original */

/* https://opensource.com/article/21/10/dark-themes-websites */

/* Light mode */
:root {
	--body-color: #000000;
	--background-color: #FFFFFF;
	--alink-color: #003399;
	--avlink-color: #003399;
	--sic-color: #FF0000;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
   :root {
		--body-color: #FFFFFF;
		--background-color: #202020;
		--alink-color: #B39DDB;
		--avlink-color: #B39DDB;
		--sic-color: #00FFFF;
   }
}


body {
	background-color: var(--background-color);
	color: var(--body-color);
	font-family: 'Spline Sans', Raleway, 'Times New Roman', Times, serif;
	font-size: 12pt;
}

a:link {
	color: var(--alink-color);
}

a:visited {
	color: var(--avlink-color);
}

h1 {
	font-family: "Amatic SC", "Times New Roman", Times, serif;
	font-size: 36pt;
	text-align: center;	
	margin-top: 5px;
	margin-bottom: 0px;
}

h2 {
	font-family: "Amatic SC", "Times New Roman", Times, serif;
	font-size: 24pt;
	text-align: center;	
	margin-top: 5px;
	margin-bottom: 0px;
}

h3 {
	font-family: "Amatic SC", "Times New Roman", Times, serif;
	font-size: 16pt;
	text-align: center;	
	margin-top: 5px;
	margin-bottom: 0px;
}

.copyrightnotice {
	font-size: 8pt;
	text-align: justify;
	font-weight: 700;
}

.generalnotice {
	font-size: 8pt;
	text-align: justify;
}
            
.contactnotice {
	font-size: 8pt;
	text-align: justify;
	font-weight: 700;	
}

.align-right {
	text-align: right;
}

.CameronKiefer {
	text-align: right;
	font-weight: 700;		
}

.align-center {
	text-align: center;	
}

td.80pct-top {
	vertical-align: top;
	width: 80%;
}

table.indextable {
	width: 95%;
	height: 645px;
	border: none;
	/* cellspacing: 2; */
	border-spacing: 10px;
}


table.indextable td { 
	/* cellpadding: 2; */
    padding: 10px;
}

table.indextable td.selector {
	width: 20%;
	height: 631;
	vertical-align: top;
}

ul.SelectACompany {
	list-style-type: none;
	text-align: left;
}

.sic {
	text-decoration-line: underline overline;
	text-decoration-color: var(--sic-color);
	vertical-align: top;
	font-size: 50%;
	font-weight: 700;	
}

.deadsite {
	text-decoration-line: line-through;
}