@import "light.min.css";

#contrib {
  font-style: italic;
  margin-top: 0;
  margin-bottom: 0;
}

body {
  font-size: .75rem;
  line-height: 1.25;
}

ol { 
  list-style-type: none; 
  list-style-position: outside; 
  padding: 0; 
  margin: 0;  
}

ol li {
  counter-increment: pub -1;
  position: relative;
  padding-left: 2rem;
  margin-top: 0.85rem;
}

ol li::before {
  content: "[" counter(pub) "]";
  position: absolute;
  left: 0;
  width: 1.7rem;
  font-size: smaller;
  text-align: right;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--b-line-header);
}

header h1 {
  margin-bottom: .5rem;
}

header div {
  margin-bottom: .5rem;
  line-height: 1.5;
}

h2 { 
  font-size: 1.25rem;
}

h3 { 
  font-size: 1rem;
}

table {
  width: 100%;
}

thead tr {
  border-bottom: 1px solid var(--b-line);
}

tr { 
  border: 0; 
}

th,
td {
  padding: .1rem .1rem;
  vertical-align: top; 
}

th:first-child,
td:first-child {
  text-align: left;
  padding-left: 0; padding-right: 0; 
}

th:last-child,
td:last-child {
  text-align: right;
  padding-right: 0;
  width: auto;
  white-space:nowrap;
}

footer { 
  margin-top: 2rem; 
  margin-bottom: 2rem; 
  font-size: .65rem; 
}

@media screen and (max-width: 480px) {
  body {
    font-size: .75rem;
  }

  header {
    flex-wrap: wrap;
  }
  header div {
    margin-bottom: .5rem;
  }

  footer {
    font-size: .6rem;
  }
}

@media screen and (max-width: 375px) {
  body {
    font-size: .7rem;
  }

  footer {
    font-size: .55rem;
  }

  td:last-child {
    white-space: normal;
  }
}

@media print {
  footer { display: none; }
  a {
    color: black;
  }
  @page {
    margin: 1in;
  }
  h1, h2, h3 {
    page-break-after: avoid; 
  }
}

