/* --------------------------------------------------

	Global Settings and Media Queries

* -------------------------------------------------- */
:root {
  color-scheme: light dark;
	--background-color: #FFFFFF;
  --text-color: #000000;
  --link-color: #4B66D4;
  --visited-color: #7B51BB;
	--subtle-link-color: #0000FF;
  --highlight-color: gainsboro;
	--nav-current-background: #d8d8d8;
  --nav-current-color: #000000;
	--nav-another-color: #8e6b00
	--nav-bottom-flex-basis: 7em;
}
@media screen and (prefers-color-scheme: dark) {
  :root {
	--background-color: #000000;
  --text-color: #F0F0F0;
  --link-color: #A7B2F7;
  --visited-color: #B59CF7;
  --subtle-link-color: #b6e2ff;
  --highlight-color: DimGray;
	--nav-current-background: #FFFFFF;
  --nav-current-color: #000000;
  --nav-another-color: #7194B0;
  }
}

color.check { color: #B59CF7; }

@media screen and (min-width: 0px) and (max-width: 500px) {
	:root {
		--nav-bottom-flex-basis: 6em;
	}
  #header-right { display: none; }  /* hide it on small screens */
}

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: border-box;
}

/* --------------------------------------------------

	Basic Styling for body, main, paragraphs and images 
	
 * -------------------------------------------------- */

body {
	padding: 1rem 0.5rem;
	font-family: 'concourse-text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	line-height: 1.5;
	max-width: 52rem;
	margin: 0 auto;
	background-color: var(--background-color);
	color: var(--text-color); 
}

main {
	max-width: 50rem;
}

p {
	margin-block-start: 0.5em;
}

img {
	width: 100%;
	max-width: 100%;
}

/* --------------------------------------------------

	Headings
	
 * -------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	font-family: 'equity-caps', Georgia, 'Times New Roman', Times, serif;
	font-weight: normal;
	font-style: normal;
}

h1 {
	font-size: 2rem;
	line-height: 140%;
	margin-block-start: 2rem;
	margin-block-end: 12px;
}

h2 {
	font-size: 1.8rem;
	line-height: 140%;
	margin-block-start: 1rem;
	margin-block-end: 0.6rem;
}

h3 {
	font-size: 1.6rem;
	line-height: 140%;
	margin-block-end: 0;
}

h4 {
	margin-block-end: 1rem;
}

/* --------------------------------------------------

	General Styling for Links

* -------------------------------------------------- */

a {
  outline: none;
  text-decoration: none;
  padding: 2px 1px 0;
  border-bottom: 1px dotted;
}

a:link { color: var(--link-color) }

a:visited { color: var(--visited-color); }

a:focus {
  border-bottom: 1px solid;
  /* background: #bae498; */
}

a:hover {
  border-bottom: 1px solid;
  /* background: #cdfeaa; */
}

a:active
{
	border-bottom: 1px solid;
	/* background: #265301; */
	color: #EA728E;
} 

/* a {
  color: var(--link-color);
} */

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

a.invisi-link { 
	color: inherit; 
	text-decoration: none;
}

.search-results {
    background-color: var(--highlight-color);
}

.perma-link {
	text-align: right;
}

/* --------------------------------------------------

Page Header (Masthead)

* -------------------------------------------------- */

header {
	display: flex;
	flex-direction: row;
	margin-bottom: 0;
	padding-bottom: 1rem;
}

#site-title {
	text-align: center;
	width: 100%;
	font-family: 'equity-text', Georgia, 'Times New Roman', Times, serif;
	font-size: 3rem;
	line-height: 140%;
	margin-block-end: 12px;
}

#site-title a {
	color: inherit;
	text-decoration: none;
	border-bottom: 0 none;
}

/* --------------------------------------------------

	Navigation Bar 
	
 * -------------------------------------------------- */
 
nav#main-nav {
	font-family: 'equity_caps_bregular', Georgia, 'Times New Roman', Times, serif;
	font-size: 1.4rem;
 	padding-top: 0;
 	border-top: solid 1px;
 	padding-bottom: 0;
 	border-bottom: solid 1px;
}

@media screen and (max-width: 600px) {
  nav#main-nav {
    font-size: 1.2rem;
  }
}
 
nav ul {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin: 0;
	padding: 0;
}

nav li {
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: auto;
	text-align: center;
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: var(--text-color);
}

nav a {
	text-decoration: none;
	border-bottom: 0 none;
	color: var(--text-color);
}

nav a:link { color: inherit; border-bottom: 0 none; }

nav a:visited { color: inherit; border-bottom: 0 none; }

.nav-current {
	color: var(--nav-current-color);
	background-color: var(--nav-current-background);
} 

.nav-current a {
	color: var(--nav-current-color);
}
 
/*
nav#main-nav {
	font-family: 'equity_caps_bregular', 'Brush Script MT';
	text-transform: uppercase; 
 	display: flex;
 	justify-content: space-around;
 	flex-direction: row;
 	padding-top: 2px;
 	border-top: solid 1px;
 	padding-bottom: 2 px;
 	border-bottom: solid 1px;
}

nav#main-nav ul {
  list-style-type: none;
  display: inline;
  margin: 0;
  padding: 0;
}

nav@main-nav li {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 5em;
	text-align: center;
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: var(--nav-another-color);
}

nav a {
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 5em;
	text-align: center;
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: var(--nav-another-color);
}
 
nav#nav-top {
	font-family: concourse_c6regular, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
}
 
nav#nav-bottom {
	flex-wrap: wrap;
	margin-top: 0.5rem;
	font-family: concourse_c3regular, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1.1rem;
	text-transform: uppercase;
}
 


nav#nav-bottom a {
	flex-basis: var(--nav-bottom-flex-basis);
}

nav a.current-page {
	background-color: var(--nav-current-background);
	color: var(--nav-current-color);
	border-radius: 10px;
}

nav a.another-page:hover {
	background-color: var(--nav-current-background);
	border-radius: 10px;
} */



/* --------------------------------------------------

	Footer
	
* --------------------------------------------------- */

footer {
	font-size: 1.2rem;
	text-align: center;
	flex: 0 0 auto;
	width: 100%;
}

footer img {
	width: auto;
}

footer a {
	text-decoration: none;
	color: inherit;
}

footer a:link { color: inherit; border-bottom: 0 none; }

footer a:visited { color: inherit; border-bottom: 0 none; }

/* --------------------------------------------------

	Letters Table of Contents
	
* --------------------------------------------------- */

.letters-toc a {
	text-decoration: none;
	color: inherit;
}

.letters-toc a:link { color: inherit; border-bottom: 0 none; }

.letters-toc a:visited { color: inherit; border-bottom: 0 none; }







/* --------------------------------------------------

Page Header (Masthead)

* -------------------------------------------------- */



#header-left {
	display: flex;
	flex-direction: column;
}

#header-logo-and-name {
	display: flex;
	flex-direction: row;
}

#header-right {
	margin-left: auto;
}

.header-logo-image {
	max-width: 64px;
	margin-right: 16px;
}

#header-title { 
	font-family: 'concourse_t4regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 3rem;
}

#header-slogan {
	font-family: 'concourse_t4italic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}



p.news-date {
	font-style: italic;
}

blockquote {
	font-style: italic;
}

/* --------------------------------------------------

	Tables

* -------------------------------------------------- */

table {
  border-collapse: collapse;
  margin-bottom: 1em;
  font-family: 'concourse-text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.2rem; 
  line-height: 1.428571429;
  color: var(--text-color);
}

caption {
	border: 0;
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 0.4em;
	margin-bottom: 0.2em;
	text-align: center;
	color: var(--text-color)
}

th {
	border: 1px #AABFCE solid;
	text-align: left;
	padding: 5px;
}

td {
	border: 1px #AABFCE solid;
	text-align: left;
	vertical-align: top;
	padding: 5px;
	color: var(--text-color);
}

/* --------------------------------------------------

	Tags 
	
 * -------------------------------------------------- */

ul.tags-cloud { 
  border: none;
  list-style: none; 
  padding-left: 0; 
  display: flex; 
  flex-wrap: wrap; 
  align-items: center; 
  justify-content: center; 
  line-height: 2.5rem; 
  font-family: 'concourse_t3regular', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1rem; 
  font-weight: 600; 
} 

ul.tags-cloud a
{
	display: block;
	position: relative;
	text-decoration: none;
	border-bottom: 0;
	border-radius: 10px;
	background-color: #70A4B1;
	color: #211E1F;
	padding: 1px 12px 1px 12px;
	margin: 10px 10px 10px 10px;
	min-width: 40px;
	text-align: center;
} 

ul.tags-cloud a:link { 
  text-decoration: none; 
  border-bottom: 0;
  color: inherit;
  color: #211E1F;
} 

ul.tags-cloud a:visited { 
  text-decoration: none; 
  border-bottom: 0;
  color: inherit;
  color: #211E1F;
} 

.tags-align {
	text-align: left;
}

a.tag-link {
	display: inline-block;
	position: relative;
	border-radius: 10px;
	background-color: #70A4B1;
	color: #211E1F;
	padding: 1px 12px 1px 12px;
	margin: 10px 20px 10px 0;
	width: auto;
	min-width: 40px;
	text-align: center;
  text-decoration: none; 
  border-bottom: 0;
}

.tag-topic {
	display: inline-block;
	position: relative;
	border-radius: 10px;
	background-color: #70A4B1;
	color: #211E1F;
	padding: 1px 12px 1px 12px;
	margin: 10px 20px 10px 10px;
	width: auto;
	min-width: 5emx;
	text-align: center;
  text-decoration: none; 
  border-bottom: 0;
}

.source-info {
	border-radius: 10px;
	color: inherit;
	padding: 2px 12px 3px 12px;
	margin: 10px 0 15px 0;
	border: 2px solid #70A4B1;
}


/* Colors */

.infrared
{
	color: #FFF;
	font-weight: 500;
	background-color: #EA60B5;
}
.magenta
{
	color: #FFF;
	font-weight: 500;
	background-color: #D5007D;
}
.red
{
	color: #FFF;
	font-weight: 500;
	background-color: #CA0018;
}
.amber
{
	color: #FFF;
	font-weight: 500;
	background-color: #D45507;
}
.orange
{
	color: #FFF;
	font-weight: 500;
	background-color: #FF8E01;
}
.green
{
	color: #FFF;
	font-weight: 500;
	background-color: #019B2D;
}
.teal
{
	color: #FFF;
	font-weight: 500;
	background-color: #00C89A;
}
.turqoise
{
	color: #FFF;
	font-weight: 500;
	background-color: #006BD8;
}
.indigo
{
	color: #FFF;
	font-weight: 500;
	background-color: #013388;
}
.beige
{
	color: #630;
	font-weight: 500;
	background-color: #F5F5DC;
}
.purple
{
	color: #FFF;
	font-weight: 500;
	background-color: #8B00FF;
}
.blue
{
	color: #FFF;
	font-weight: 500;
	background-color: blue;
}
.yellow
{
	color: #000;
	font-weight: 500;
	background-color: yellow;
}
.turquoise
{
	color: #000;
	font-weight: 500;
	background-color: #40E0D0;
}
.coral
{
	color: #000;
	font-weight: 500;
	background-color: #FF7F50;
}

