/* Testing */

.pe32 {
  position: relative;
  left: 5px;
  float: right;
  max-width: 60%;
  padding: 5px;
  margin: 5px -200px 5px 5px;
  background-color: white;
}

.pe32>figure {
  margin: 0px;
}

.pe32>p {
  text-align: center;
}

.pe32>figure>figcaption>p {
  color: black;
  text-align: center;
  font-size: x-small;
}

img[src$='#pe32'] {
  float: right;
}


/**
 * Initialiazing a `footnotes` counter on the wrapper
 */
article {
  counter-reset: footnotes;
}

/**
   * Inline footnotes references
   * 1. Increment the counter at each new reference
   * 2. Reset link styles to make it appear like regular text
   */
a[aria-describedby="footnote-label"] {
  counter-increment: footnotes;
  /* 1 */
  text-decoration: none;
  /* 2 */
  color: inherit;
  /* 2 */
  cursor: default;
  /* 2 */
  outline: none;
  /* 2 */
}

a[aria-describedby="footnote-label"]:hover::after {
  color: #fff
}

/**
   * Actual numbered references
   * 1. Display the current state of the counter (e.g. `[1]`)
   * 2. Align text as superscript
   * 3. Make the number smaller (since it's superscript)
   * 4. Slightly offset the number from the text
   * 5. Reset link styles on the number to show it's usable
   */
a[aria-describedby="footnote-label"]::after {
  content: '[' counter(footnotes) ']';
  /* 1 */
  vertical-align: super;
  /* 2 */
  font-size: 0.5em;
  /* 3 */
  margin-left: 2px;
  /* 4 */
  text-decoration: underline;
  /* 5 */
  cursor: pointer;
  /* 5 */

  color: #57cc8a;
  transition: color .35s;
  text-decoration: none;
}

/**
   * Resetting the default focused styles on the number
   */
a[aria-describedby="footnote-label"]:focus::after {
  outline: thin dotted;
  outline-offset: 2px;
}

footer :target {
  background: #0004;
}

[aria-label="Back to content"] {
  font-size: 0.8em;
}

td,
th {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}

table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  margin-bottom: 1em;
  border-collapse: collapse;
}