/*
 * reset.css - Set default styles
 *   as presented in
 *   Bulletproof Web Design
 *   by Dan Cederholm
 */
 
 :root {
  --light: #fefefa;
  --dark: #382200;
  --menu: #eee;
  --atten: #ecdcb6;
  --hover: #666;
  --hr: #382200;
  --border: #382200;
  --lpanelw: 12rem;
  --topmenuh: 1.75rem;
  --bottommenuh: 1.75rem;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-size:20px;
  line-height: normal;
  background-color: #fefefa;
  color: #333;
  -webkit-text-size-adjust: 100%;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.875rem;
}
h6 {
  font-size: 0.75rem;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

ol, ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  margin-left: 1.5rem;
}

li {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

ul.tight, ol.tight {
  margin-top:0.25rem;
  margin-bottom:0.25rem;
  margin-left: 1.5rem;
}

ul.tight li, ol.tight li {
  margin-top:0.15rem;
  margin-bottom:0.15rem;
}

details summary {
  padding:0rem;
  margin-top: 0rem;
  margin-bottom: 0rem;
}

details.tight * {
  padding: 0rem;
  margin-top:0.15rem;
  margin-bottom:0.15rem;
}

blockquote, q {
  quotes: none
}

blockquote::before, blockquote::after,
q:before,  q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th, table td {
  border: 1px solid var(--dark);
  padding:0.25rem 0.5rem;
}

table th {
  background-color: var(--dark);
  color: var(--light);
}

table td {
  background-color: var(--light);
  color: var(--dark);
}
