
/* https://yoksel.github.io/flex-cheatsheet/ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Helvetica, sans;
  font-size: 1rem;
}

#page {
  max-width: 1200px;
  margin: 0 auto;
}

#content {
  padding: 0 1rem 1rem 0;
}

#footer {
  margin: 0;
  padding: 0;
  color: #FFF;
  background-color: #333;
  padding: 0.25rem;
  text-align: right;
}

a {
  text-decoration: none;
}

.centered {
  text-align: center;
}

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

/* */

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

ul.topnav li {float: left;}

ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) { background-color: #111; }
ul.topnav li a.active { background-color: #1874CD; }
ul.topnav li.right { float: right; }

@media screen and (max-width: 600px) {
  ul.topnav li.right,
  ul.topnav li {float: none;}
}

.toolbar {
  margin: 0.50rem 0;
}

.toolbar div.head {
  font-size: 1.40rem;
  font-weight: bold;
}

.toolbar div.links {
  display: flex;
  gap: 0.15rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .toolbar div.links {
   justify-content: center;
  }
}
/* */

.toolbar div.links a.nav {
  padding: 0.15rem 0.35rem;
  background: #C8E9FF;
  border: 1px solid #333;
  border-radius: 0.35rem;
}

.toolbar div.links a.nav:visited {
  color: #000;
}

.toolbar div.links a.nav:link {
  color: #000;
}

.toolbar div.links a.nav:active {
  color: #000;
}

.toolbar div.links a.nav:hover {
  color: #000;
  background: #ADF;
}


.toolbar div.links a.current {
  padding: 0.15rem 0.35rem;
  background: #1874CD;
  border: 1px solid #333;
  border-radius: 0.35rem;
}

.toolbar div.links a.current {
  background: #1874CD;
}


.toolbar div.links a.current:visited {
  color: #FFF;
}

.toolbar div.links a.current:link {
  color: #FFF;
}

.toolbar div.links a.current:active {
  color: #FFF;
}

.toolbar div.links a.current:hover {
  color: #000;
  background: #ADF;
}

p.updated {
 font-size: 0.75rem;
}

p.question {
 font-style: italic;
}

p.legalese {
 font-size: 0.75rem;
}

h1 { font-style: italic; font-weight: normal; font-size: 2rem;}
h2 { font-weight: normal; font-size: 1.80rem;}
h3 { font-size: 1.60rem; }
h4 { font-size: 1.40rem; }
h5 { font-size: 1.30rem; }
h6 { font-size: 1rem; }

dt {
  font-weight: bold;
}

a:visited {
  color: #800000;
}

a:link {
  color: #FF0000;
}

a:active {
  color: #008000;
}

a.url,
a.newsgroup,
a.email {
  font-family: monospace;
}

a.amazon:visited {
  color: #003300;
}

a.amazon:active {
  color: #00ff00;
}

.postal {
  font-weight: normal;
  color: #000066;
  margin-left: 5%;
}

.noindent {}

.citation {
  font-size: 0.75rem;
}

.amazon a:link {
  color: #006600;
}

/**/

.secweb-donorbar {
  text-align: center;
  border: 1px solid #000;
  background: #FFF;
  overflow: hidden;
  max-width: 1200px;
  margin: 1rem auto;
  background: #F2F9FF;
}
.secweb-donorbar-center {
  text-align: center;
}
.secweb-donorbar a {
  color: #FFF;
}

.secweb-donorbar-title {
  display: block;
  color: #FFF;
  background: #1874CD;
  font-size: 1.30rem;
  font-weight: bold;
  padding: 0.50rem;
}

.secweb-donorbar-title:hover {
  background-color: #0056A9;
  text-decoration: underline;
}

.secweb-donorbar-descr {
  display: block;
  font-size: 1.10rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 0.80rem;
}
.secweb-donorbar-descr a {
  color: #1874CD;
}

.secweb-donorbar-click {
  display: block;
  color: #FFF;
  background: #1874CD;
  font-size: 1.20rem;
  font-weight: bold;
  padding:0.50rem;
}

.secweb-donorbar-click:hover {
  background-color: #0056A9;
  text-decoration: underline;
}

/**/

.secweb-sponsors {
  background-color: #F1FAFF;
  border: 1px solid #333;
  margin: 1rem auto;
  padding: 0;
  max-width: 1200px;
}
.secweb-sponsors a {
  color: #1874CD;
}

.secweb-sponsors-body {
  font-size: 1.20rem;
  line-height: 1.6;
  padding: 0 0.50rem;
}
.secweb-sponsors-title {
  font-size: 1.40rem;
  font-weight: bold;
  text-align: center;
}
.secweb-sponsors-flex {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.secweb-sponsors-item {
  padding: 0.25rem 0;
  text-align: center;
}

/* FIN */