@charset "UTF-8";
@import url("https://use.typekit.net/ctv2raw.css");
body {
  margin: 0; }

main, .content-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1rem; }

header, footer {
  grid-column: 1/-1; }

.content-list {
  grid-column: 1/-1;
  margin: 0 auto;
  width: 100%; }
  @media only screen and (min-width: 36rem) {
    .content-list {
      max-width: calc(36rem * 1.5); } }
  .content-list .main-page h2 {
    font-size: 8vw; }
  .content-list article.content-item {
    border-top: 1px solid #999999;
    grid-column: 1/-1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 8px;
    position: relative;
    margin: 0 1em;
    padding-top: 0.25em; }
    .content-list article.content-item:first-child {
      border-top: none; }
    .content-list article.content-item a.article {
      display: flex;
      height: 100%;
      width: 100%;
      text-decoration: none; }
    .content-list article.content-item .category {
      background-color: lightpink;
      text-decoration: none;
      font-variant: small-caps;
      text-transform: lowercase;
      padding: 0 4px;
      line-height: 1em;
      font-size: 0.8em; }
      @media only screen and (min-width: 36rem) {
        .content-list article.content-item .category {
          position: absolute;
          top: 0;
          right: 0; } }
    .content-list article.content-item .theres-literally-no-reason-this-wrapper-should-exist {
      width: 30%;
      max-width: 230px;
      overflow: hidden; }
    .content-list article.content-item .image-wrap {
      width: 100%;
      height: 0;
      padding-top: 66.66666667%;
      position: relative; }
      @media only screen and (min-width: 36rem) {
        .content-list article.content-item .image-wrap {
          padding-top: 56.25%; } }
      .content-list article.content-item .image-wrap img {
        object-fit: cover;
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%; }
      @media only screen and (min-width: 36rem) {
        .content-list article.content-item .image-wrap {
          width: 230px; } }
    .content-list article.content-item section {
      margin: 0 0.5rem;
      width: 70%; }
      .content-list article.content-item section .title {
        display: inline-block;
        margin: 0;
        font-size: 1.1em; }
      .content-list article.content-item section p {
        display: none;
        margin: 0;
        font-size: 0.8em;
        text-overflow: ellipsis; }
        @media only screen and (min-width: 54rem) {
          .content-list article.content-item section p {
            display: block; } }
      .content-list article.content-item section time {
        font-size: 0.7em;
        display: block; }
        @media only screen and (min-width: 54rem) {
          .content-list article.content-item section time {
            display: none; } }

nav ul {
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  width: calc(100% - 2rem);
  display: grid;
  grid-gap: 4px;
  margin: 1rem;
  position: relative;
  z-index: 100;
  list-style-type: none;
  padding: 0; }
  nav ul li.previous, nav ul li.next {
    display: none; }
  @media only screen and (min-width: 36rem) {
    nav ul {
      width: calc(13.5em - 2rem); } }
  @media only screen and (min-width: 54rem) {
    nav ul {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr); } }
  nav ul a {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none !important; }
  nav ul span {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  nav ul a {
    font-weight: bold; }
  nav ul li {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    backdrop-filter: blur(3px);
    background-color: rgba(255, 182, 193, 0.25); }
    nav ul li:hover {
      top: -1px; }
    nav ul li.before a::before {
      content: "Home";
      color: white;
      position: absolute;
      width: 100%;
      text-align: center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    nav ul li.before span {
      display: none; }
    @media only screen and (min-width: 36rem) {
      nav ul li.next, nav ul li.previous {
        display: list-item; }
      nav ul li.before {
        grid-area: 1/1/2/3;
        padding-bottom: calc(50% - 2px); }
        nav ul li.before a::before {
          display: none; }
        nav ul li.before span {
          display: inline; }
      nav ul li.posts {
        grid-area: 2/1/4/2;
        padding-bottom: calc(200% + 2px); }
      nav ul li.talks {
        grid-area: 3/2/4/4;
        padding-bottom: calc(50% - 4px); }
      nav ul li.twitter, nav ul li.next {
        grid-row: 2; }
      nav ul li:only-child {
        grid-column: 1/3;
        padding-bottom: 50%; } }

header.no-hero nav ul {
  display: grid;
  margin: 1rem auto; }
header.no-hero nav li {
  background-color: lightpink; }

header:not(.no-hero) {
  position: relative;
  height: 18em; }
  @media only screen and (min-width: 27rem) {
    header:not(.no-hero) {
      height: 27em; } }
  header:not(.no-hero) img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block; }
  header:not(.no-hero) h1.page-title {
    position: absolute;
    bottom: 0;
    color: white;
    width: 100%;
    margin: 4px auto;
    text-align: center;
    font-size: 8vw; }
    @media only screen and (min-width: 54rem) {
      header:not(.no-hero) h1.page-title {
        font-size: 6vw; } }
    @media only screen and (min-width: 72rem) {
      header:not(.no-hero) h1.page-title {
        font-size: 2em; } }
  header:not(.no-hero) nav {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    color: white;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)); }
    header:not(.no-hero) nav a {
      text-decoration: none;
      font-weight: bold;
      text-shadow: 1px 1px #191919; }
      header:not(.no-hero) nav a span {
        color: white; }

nav.categories ul {
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  grid-template-rows: initial;
  width: calc(100% - 2em); }
nav.categories li {
  padding-bottom: calc(50% - 4px); }
nav.categories a {
  font-size: 0.9em;
  text-shadow: none !important; }

section.content-body {
  grid-column: 1/-1; }
  section.content-body > section {
    text-align: center; }
    section.content-body > section h2.category {
      margin: 0; }
@supports(text-shadow: 0 0 0 white) {
  section.content-body > section h2.category a {
    text-decoration: none;
    background-image: linear-gradient(to bottom, transparent, transparent 0.125em, #191919 0.125em, #191919 0.1875em, transparent 0.1875em);
    background-repeat: repeat-x;
    background-size: 0.125em 0.1875em;
    background-position: 0 0.95em;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white; } }
  section.content-body > article {
    max-width: 38rem;
    padding: 0 1em;
    margin: 0 auto; }
@supports(text-shadow: 0 0 0 white) {
  section.content-body > article a:not(.image-figure):not(.content-item) {
    text-decoration: none;
    background-image: linear-gradient(to bottom, transparent, transparent 0.125em, #191919 0.125em, #191919 0.1875em, transparent 0.1875em);
    background-repeat: repeat-x;
    background-size: 0.125em 0.1875em;
    background-position: 0 0.95em;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white; } }
    @media only screen and (min-width: 54rem) {
      section.content-body > article figure:not(:last-child):not(.quote) figcaption {
        padding: 1em;
        margin: 0;
        width: 18rem;
        text-align: left;
        float: left; } }
    @media only screen and (min-width: 72rem) {
      section.content-body > article {
        margin: 0 auto;
        padding: 0;
        max-width: 36rem; }
        section.content-body > article > p, section.content-body > article > blockquote, section.content-body > article figure.quote, section.content-body > article ul, section.content-body > article ol, section.content-body > article h2 {
          margin-left: 0;
          width: 100%; }
        section.content-body > article figure:not(:last-child):not(.quote) figcaption {
          margin-left: calc(50vw - 36rem);
          padding: 1em;
          width: 18rem;
          text-align: right; } }
    section.content-body > article *:not(nav) ul:not(.colors), section.content-body > article > ul:not(.colors) {
      padding: 0;
      list-style-type: none; }
      section.content-body > article *:not(nav) ul:not(.colors) li::before, section.content-body > article > ul:not(.colors) li::before {
        content: "•";
        margin-right: 3px;
        margin-left: -14px; }
      section.content-body > article *:not(nav) ul:not(.colors) ul, section.content-body > article > ul:not(.colors) ul {
        padding-left: 1em; }
        section.content-body > article *:not(nav) ul:not(.colors) ul li::before, section.content-body > article > ul:not(.colors) ul li::before {
          content: "◦";
          margin-right: 3px;
          margin-left: -14px; }
      section.content-body > article *:not(nav) ul:not(.colors) p, section.content-body > article > ul:not(.colors) p {
        display: inline; }
    section.content-body > article ul.colors {
      display: flex;
      list-style-type: none;
      height: 2em;
      padding: 0; }
      section.content-body > article ul.colors li {
        flex: 1; }
      section.content-body > article ul.colors span.color {
        height: 100%;
        width: 100%;
        display: block;
        content: attr(title); }
    section.content-body > article ol {
      padding: 0; }
  section.content-body img.shape-image {
    width: 50vw;
    max-width: 18rem;
    shape-margin: 0.5em;
    margin-top: 1em; }
    section.content-body img.shape-image.shape-image-left {
      float: left;
      margin-left: -1em; }
      @media only screen and (min-width: 54rem) {
        section.content-body img.shape-image.shape-image-left {
          width: 30vw;
          margin-left: -5vw; } }
    section.content-body img.shape-image.shape-image-right {
      float: right;
      margin-right: -1em; }
      @media only screen and (min-width: 54rem) {
        section.content-body img.shape-image.shape-image-right {
          width: 30vw;
          margin-right: -5vw; } }
  section.content-body figure {
    margin: 0; }
    section.content-body figure figcaption {
      font-style: italic; }
  section.content-body figure.quote {
    padding-left: 1em;
    border-left: 2px solid #ccc;
    overflow-x: scroll; }
    section.content-body figure.quote blockquote {
      margin: 0;
      font-style: normal; }
    section.content-body figure.quote figcaption::before {
      content: "—"; }
  section.content-body article > table {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 1em;
    border-collapse: collapse; }
    section.content-body article > table th {
      text-align: left; }
    section.content-body article > table td, section.content-body article > table th {
      padding: 0.5em; }
    section.content-body article > table:not(.abilities) tbody:nth-of-type(odd) {
      background-color: rgba(255, 182, 193, 0.25);
      border-collapse: collapse; }
      section.content-body article > table:not(.abilities) tbody:nth-of-type(odd) a, section.content-body article > table:not(.abilities) tbody:nth-of-type(odd) abbr {
        text-shadow: -1px -1px 0 transparent, 1px -1px 0 transparent, -1px 1px 0 transparent, 1px 1px 0 transparent !important; }
  section.content-body figure.image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw; }
    section.content-body figure.image > a {
      display: block; }
    section.content-body figure.image img {
      max-width: 100%;
      display: block;
      margin: 0 auto; }
    section.content-body figure.image figcaption {
      text-align: center; }
  section.content-body section.gallery {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 1em; }
    section.content-body section.gallery figure.image {
      width: 100%;
      left: initial;
      right: initial;
      margin: 0; }
      section.content-body section.gallery figure.image figcaption {
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: left; }
  section.content-body article > blockquote {
    margin: 0;
    padding-left: 1em;
    border-left: 2px solid #ddd; }
  section.content-body blockquote {
    font-style: italic; }
  section.content-body pre.highlight {
    overflow-x: scroll; }
    section.content-body pre.highlight code {
      text-align: left;
      display: inline-block; }
    @media only screen and (min-width: 36rem) {
      section.content-body pre.highlight {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        text-align: center;
        padding: 1rem; } }
  section.content-body p > code {
    overflow-wrap: break-word;
    break-inside: avoid;
    display: inline-block; }

abbr {
  background-repeat: space no-repeat !important;
  background-size: 9px 0.1875em !important;
  cursor: help; }
@supports(text-shadow: 0 0 0 white) {
  abbr {
    text-decoration: none;
    background-image: linear-gradient(to bottom, transparent, transparent 0.125em, #191919 0.125em, #191919 0.1875em, transparent 0.1875em);
    background-repeat: repeat-x;
    background-size: 0.125em 0.1875em;
    background-position: 0 0.95em;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white; } }
section.video, section.slides {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 0;
  padding-bottom: 56.25vw; }
  section.video iframe, section.slides iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 80vh; }

section.cta {
  border: 1px solid red;
  padding: 0 0.5em;
  margin-bottom: 2em; }

footer {
  background-color: #4c4c4c;
  grid-column: 1/-1;
  padding: 1em; }
  footer * {
    color: white; }
  footer p {
    margin: 0 auto 1rem;
    width: 100%;
    max-width: 54rem; }
@supports(text-shadow: 0 0 0 white) {
  footer p a {
    text-decoration: none;
    background-image: linear-gradient(to bottom, transparent, transparent 0.125em, white 0.125em, white 0.1875em, transparent 0.1875em);
    background-repeat: repeat-x;
    background-size: 0.125em 0.1875em;
    background-position: 0 0.95em;
    text-shadow: -1px -1px 0 #4c4c4c, 1px -1px 0 #4c4c4c, -1px 1px 0 #4c4c4c, 1px 1px 0 #4c4c4c; } }
  footer nav ul {
    display: grid;
    width: 100%;
    max-width: 54rem;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    grid-template-rows: minmax(50px, 1fr);
    margin: 1rem auto 0; }
    footer nav ul li.twitter, footer nav ul li.before, footer nav ul li.posts, footer nav ul li.talks {
      grid-area: auto; }
    @media only screen and (min-width: 54rem) {
      footer nav ul li.before, footer nav ul li.posts, footer nav ul li.talks {
        grid-column-end: span 2;
        padding-bottom: calc(50% - 2px); } }

.homepage {
  grid-column: 1/-1; }
  .homepage section.intro, .homepage h2 {
    max-width: 38rem;
    padding: 0 1em;
    margin: 0 auto; }
@supports(text-shadow: 0 0 0 white) {
  .homepage section.intro a:not(.image-figure):not(.content-item), .homepage h2 a:not(.image-figure):not(.content-item) {
    text-decoration: none;
    background-image: linear-gradient(to bottom, transparent, transparent 0.125em, #191919 0.125em, #191919 0.1875em, transparent 0.1875em);
    background-repeat: repeat-x;
    background-size: 0.125em 0.1875em;
    background-position: 0 0.95em;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white; } }
    @media only screen and (min-width: 54rem) {
      .homepage section.intro figure:not(:last-child):not(.quote) figcaption, .homepage h2 figure:not(:last-child):not(.quote) figcaption {
        padding: 1em;
        margin: 0;
        width: 18rem;
        text-align: left;
        float: left; } }
    @media only screen and (min-width: 72rem) {
      .homepage section.intro, .homepage h2 {
        margin: 0 auto;
        padding: 0;
        max-width: 36rem; }
        .homepage section.intro > p, .homepage section.intro > blockquote, .homepage section.intro figure.quote, .homepage section.intro ul, .homepage section.intro ol, .homepage section.intro h2, .homepage h2 > p, .homepage h2 > blockquote, .homepage h2 figure.quote, .homepage h2 ul, .homepage h2 ol, .homepage h2 h2 {
          margin-left: 0;
          width: 100%; }
        .homepage section.intro figure:not(:last-child):not(.quote) figcaption, .homepage h2 figure:not(:last-child):not(.quote) figcaption {
          margin-left: calc(50vw - 36rem);
          padding: 1em;
          width: 18rem;
          text-align: right; } }
  .homepage section.content-list article.content-item:first-child {
    grid-column: initial;
    height: 200px;
    min-height: unset; }
  .homepage .tabs {
    min-height: 250px;
    position: relative;
    width: 100%; }
    .homepage .tabs > div {
      display: inline; }
      .homepage .tabs > div > a {
        margin-left: -1px;
        position: relative;
        left: 1px;
        text-decoration: none;
        color: black;
        background: white;
        display: block;
        float: left;
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-bottom: 1px solid white; }
      .homepage .tabs > div:not(:target) > a {
        border-bottom: 0;
        background: -moz-linear-gradient(top, white, #eee); }
      .homepage .tabs > div:target > a {
        background: white; }
      .homepage .tabs > div > div {
        background: white;
        z-index: -2;
        left: 0;
        top: 30px;
        bottom: 0;
        right: 0;
        padding: 20px;
        border: 1px solid #ccc; }
        .homepage .tabs > div > div > * {
          max-width: 38rem;
          padding: 0 1em;
          margin: 0 auto; }
@supports(text-shadow: 0 0 0 white) {
  .homepage .tabs > div > div > * a:not(.image-figure):not(.content-item) {
    text-decoration: none;
    background-image: linear-gradient(to bottom, transparent, transparent 0.125em, #191919 0.125em, #191919 0.1875em, transparent 0.1875em);
    background-repeat: repeat-x;
    background-size: 0.125em 0.1875em;
    background-position: 0 0.95em;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white; } }
          @media only screen and (min-width: 54rem) {
            .homepage .tabs > div > div > * figure:not(:last-child):not(.quote) figcaption {
              padding: 1em;
              margin: 0;
              width: 18rem;
              text-align: left;
              float: left; } }
          @media only screen and (min-width: 72rem) {
            .homepage .tabs > div > div > * {
              margin: 0 auto;
              padding: 0;
              max-width: 36rem; }
              .homepage .tabs > div > div > * > p, .homepage .tabs > div > div > * > blockquote, .homepage .tabs > div > div > * figure.quote, .homepage .tabs > div > div > * ul, .homepage .tabs > div > div > * ol, .homepage .tabs > div > div > * h2 {
                margin-left: 0;
                width: 100%; }
              .homepage .tabs > div > div > * figure:not(:last-child):not(.quote) figcaption {
                margin-left: calc(50vw - 36rem);
                padding: 1em;
                width: 18rem;
                text-align: right; } }
      .homepage .tabs > div:not(:target) > div {
        position: absolute; }
      .homepage .tabs > div:target > div {
        position: absolute;
        z-index: 2; }

.tagrid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 5px;
  list-style-type: none;
  width: 100%;
  margin: 0 auto;
  background-image: url("https://cdn-images-1.medium.com/max/2000/1*C8brMb5xe9VfsiCDpXAb5A.jpeg");
  background-size: cover;
  padding: 5px; }
  @media only screen and (min-width: 36rem) {
    .tagrid {
      max-width: calc(36rem * 2); } }
  .tagrid li {
    backdrop-filter: blur(3px);
    background-color: rgba(255, 182, 193, 0.5);
    width: 100%;
    height: 0;
    padding: 100% 0 0;
    position: relative; }
    .tagrid li:hover {
      top: -1px; }
    .tagrid li a {
      text-decoration: none;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      display: grid; }
      .tagrid li a span {
        text-align: center;
        margin: auto;
        white-space: nowrap;
        max-width: calc(100% - 10px);
        overflow: hidden;
        text-overflow: ellipsis;
        color: white;
        text-shadow: 1px 1px #191919;
        font-weight: bold; }
  .tagrid .size-2 {
    grid-column-end: span 2;
    grid-row-end: span 2; }
  .tagrid .size-3 {
    grid-column-end: span 3;
    grid-row-end: span 3; }
  .tagrid .size-8 {
    grid-column-end: span 4;
    grid-row-end: span 4; }

.bigfoot-footnote__button {
  position: relative;
  z-index: 5;
  top: -0.1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: inline-block;
  padding: 0.35em;
  margin: 0 0.1em 0 0.2em;
  border: none;
  border-radius: 0.3em;
  cursor: pointer;
  background-color: rgba(110, 110, 110, 0.2);
  backface-visibility: hidden;
  font-size: 1rem;
  line-height: 0;
  vertical-align: middle;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition-property: background-color;
  transition-duration: 0.25s; }
  .bigfoot-footnote__button:hover, .bigfoot-footnote__button:focus {
    outline: none;
    background-color: rgba(110, 110, 110, 0.5); }
  .bigfoot-footnote__button:active {
    background-color: rgba(110, 110, 110, 0.5); }
  .bigfoot-footnote__button.is-active {
    background-color: #6e6e6e;
    transition-delay: 0.1s; }
  .bigfoot-footnote__button:after {
    content: '';
    display: table;
    clear: both; }

.bigfoot-footnote__button__circle {
  display: inline-block;
  width: 0.25em;
  height: 0.25em;
  margin-right: 0.25em;
  float: left; }
  .bigfoot-footnote__button__circle:last-child {
    margin-right: 0; }

.bigfoot-footnote__container {
  display: inline-block;
  position: relative;
  text-indent: 0; }

@media not print {
  .footnote-print-only {
    display: none !important; } }
@media print {
  .bigfoot-footnote,
  .bigfoot-footnote__button {
    display: none !important; } }
.bigfoot-footnote {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  max-width: 90%;
  margin: 1.9692388156em 0;
  background: #fafafa;
  opacity: 0;
  border-radius: 0.5em;
  border: 1px solid #c3c3c3;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  line-height: 0;
  transition-property: opacity, transform;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transform: scale(0.1) translateZ(0);
  transform-origin: 50% 0; }
  .bigfoot-footnote.is-positioned-top {
    top: auto;
    bottom: 0; }
  .bigfoot-footnote.is-active {
    transform: scale(1) translateZ(0);
    opacity: 0.97; }
  .bigfoot-footnote.is-bottom-fixed {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: auto;
    transform: translateY(100%);
    width: 100%;
    margin: 0;
    border-radius: 0;
    opacity: 1;
    border-width: 1px 0 0;
    transition: transform 0.3s ease; }
    .bigfoot-footnote.is-bottom-fixed.is-active {
      transform: translateY(0); }
    .bigfoot-footnote.is-bottom-fixed .bigfoot-footnote__wrapper {
      margin: 0 0 0 50%;
      transform: translateX(-50%);
      max-width: 100%; }
    .bigfoot-footnote.is-bottom-fixed .bigfoot-footnote__wrapper,
    .bigfoot-footnote.is-bottom-fixed .bigfoot-footnote__content {
      border-radius: 0; }
    .bigfoot-footnote.is-bottom-fixed .bigfoot-footnote__tooltip {
      display: none; }
  .bigfoot-footnote.is-scrollable:after {
    content: '';
    position: absolute;
    bottom: 0.3375em;
    left: 0.3375em;
    z-index: 14;
    display: block;
    height: 0.78125em;
    width: 0.625em;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTJweCIgaGVpZ2h0PSIxNXB4IiB2aWV3Qm94PSIwIDAgMTIgMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pbllNaW4iPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkFycm93IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxLjAwMDAwMCwgMS4wMDAwMDApIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiPgogICAgICAgICAgICA8cGF0aCBkPSJNNSwwIEw1LDExLjUiIGlkPSJMaW5lIj48L3BhdGg+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0wLjUsNy41IEw1LjAyNzY5Mjc5LDEyLjAyNzY5MjgiIGlkPSJMaW5lIj48L3BhdGg+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik00LjUsNy41IEw5LjAyNzY5Mjc5LDEyLjAyNzY5MjgiIGlkPSJMaW5lLTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDcuMDAwMDAwLCAxMC4wMDAwMDApIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTcuMDAwMDAwLCAtMTAuMDAwMDAwKSAiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=");
    background-size: cover;
    opacity: 0.1;
    transition-properties: opacity;
    transition-duration: 0.25s;
    transition-timing-function: ease; }
  .bigfoot-footnote.is-scrollable .bigfoot-footnote__wrapper:before, .bigfoot-footnote.is-scrollable .bigfoot-footnote__wrapper:after {
    content: '';
    position: absolute;
    width: 100%;
    z-index: 12;
    left: 0; }
  .bigfoot-footnote.is-scrollable .bigfoot-footnote__wrapper:before {
    top: -1px;
    height: 1.1em;
    border-radius: 0.5em 0.5em 0 0;
    background-image: linear-gradient(to bottom, #fafafa 50%, rgba(250, 250, 250, 0) 100%); }
  .bigfoot-footnote.is-scrollable .bigfoot-footnote__wrapper:after {
    bottom: -1px;
    height: 1.2em;
    border-radius: 0 0 0.5em 0.5em;
    background-image: linear-gradient(to top, #fafafa 50%, rgba(250, 250, 250, 0) 100%); }
  .bigfoot-footnote.is-scrollable ::-webkit-scrollbar {
    display: none; }
  .bigfoot-footnote.is-fully-scrolled:after, .bigfoot-footnote.is-fully-scrolled:before {
    opacity: 0;
    transition-delay: 0; }

.bigfoot-footnote__wrapper {
  position: relative;
  z-index: 14;
  width: 22em;
  display: inline-block;
  box-sizing: inherit;
  overflow: hidden;
  margin: 0;
  background-color: #fafafa;
  border-radius: 0.5em;
  line-height: 0; }

.bigfoot-footnote__content {
  position: relative;
  z-index: 8;
  display: inline-block;
  max-height: 15em;
  padding: 1.1em 1.3em 1.2em;
  box-sizing: inherit;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fafafa;
  border-radius: 0.5em;
  -webkit-font-smoothing: subpixel-antialiased;
  line-height: normal; }
  .bigfoot-footnote__content img {
    max-width: 100%; }
  .bigfoot-footnote__content *:last-child {
    margin-bottom: 0 !important; }
  .bigfoot-footnote__content *:first-child {
    margin-top: 0 !important; }

.bigfoot-footnote__tooltip {
  position: absolute;
  z-index: 12;
  box-sizing: border-box;
  margin-left: -0.65em;
  width: 1.3em;
  height: 1.3em;
  transform: rotate(45deg);
  background: #fafafa;
  border: 1px solid #c3c3c3;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  border-top-left-radius: 0; }
  .is-positioned-bottom .bigfoot-footnote__tooltip {
    top: -0.65em; }
  .is-positioned-top .bigfoot-footnote__tooltip {
    bottom: -0.65em; }

@font-face {
  font-family: "ringsdb";
  src: url("../style/ringsdb.eot");
  src: url("../style/ringsdb.eot#iefix") format("embedded-opentype"), url("../style/ringsdb.ttf") format("truetype"), url("../style/ringsdb.woff") format("woff"), url("../style/ringsdb.svg#ringsdb") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ringsdb" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-hero {
  position: relative; }
  .icon-hero:before {
    content: "";
    opacity: 0; }
  .icon-hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center; }

.icon-ally {
  position: relative; }
  .icon-ally:before {
    content: "";
    opacity: 0; }
  .icon-ally:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center; }

.icon-attachment {
  position: relative; }
  .icon-attachment:before {
    content: "";
    opacity: 0; }
  .icon-attachment:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center; }

.icon-event {
  position: relative; }
  .icon-event:before {
    content: "";
    opacity: 0; }
  .icon-event:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center; }

.icon-player-side-quest {
  position: relative; }
  .icon-player-side-quest:before {
    content: "";
    opacity: 0; }
  .icon-player-side-quest:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center; }

.icon-treasure {
  position: relative; }
  .icon-treasure:before {
    content: "";
    opacity: 0; }
  .icon-treasure:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center; }

.icon-spirit:before {
  content: ""; }

.icon-leadership:before {
  content: ""; }

.icon-tactics:before {
  content: ""; }

.icon-lore:before {
  content: ""; }

.icon-baggins:before {
  content: ""; }

.icon-fellowship:before {
  content: ""; }

.icon-neutral:before {
  content: ""; }

.icon-threat:before {
  content: ""; }

.icon-cost:before {
  content: ""; }

.icon-willpower:before {
  content: ""; }

.icon-attack:before {
  content: ""; }

.icon-defense:before {
  content: ""; }

.icon-health:before {
  content: ""; }

.icon-unique:before {
  content: ""; }

.panel-title .icon-unique {
  line-height: 1px; }

.icon-rule:before {
  content: ""; }

.icon-onering:before {
  content: ""; }

.icon-logo:before {
  content: ""; }

.navbar-brand:hover .icon-logo:before {
  content: ""; }

.icon-fw:before {
  width: 22px;
  text-align: center;
  display: inline-block; }

.highlight .hll {
  background-color: #ffffcc; }
.highlight .c {
  color: #999988;
  font-style: italic; }
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2; }
.highlight .k, .highlight .o {
  color: #000000;
  font-weight: bold; }
.highlight .cm {
  color: #999988;
  font-style: italic; }
.highlight .cp {
  color: #999999;
  font-weight: bold;
  font-style: italic; }
.highlight .c1 {
  color: #999988;
  font-style: italic; }
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic; }
.highlight .gd {
  color: #000000;
  background-color: #ffdddd; }
.highlight .ge {
  color: #000000;
  font-style: italic; }
.highlight .gr {
  color: #aa0000; }
.highlight .gh {
  color: #999999; }
.highlight .gi {
  color: #000000;
  background-color: #ddffdd; }
.highlight .go {
  color: #888888; }
.highlight .gp {
  color: #555555; }
.highlight .gs {
  font-weight: bold; }
.highlight .gu {
  color: #aaaaaa; }
.highlight .gt {
  color: #aa0000; }
.highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr {
  color: #000000;
  font-weight: bold; }
.highlight .kt {
  color: #445588;
  font-weight: bold; }
.highlight .m {
  color: #009999; }
.highlight .s {
  color: #d01040; }
.highlight .na {
  color: #008080; }
.highlight .nb {
  color: #0086b3; }
.highlight .nc {
  color: #445588;
  font-weight: bold; }
.highlight .no {
  color: #008080; }
.highlight .nd {
  color: #3c5d5d;
  font-weight: bold; }
.highlight .ni {
  color: #800080; }
.highlight .ne, .highlight .nf, .highlight .nl {
  color: #990000;
  font-weight: bold; }
.highlight .nn {
  color: #555555; }
.highlight .nt {
  color: #000080; }
.highlight .nv {
  color: #008080; }
.highlight .ow {
  color: #000000;
  font-weight: bold; }
.highlight .w {
  color: #bbbbbb; }
.highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo {
  color: #009999; }
.highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx {
  color: #d01040; }
.highlight .sr {
  color: #009926; }
.highlight .s1 {
  color: #d01040; }
.highlight .ss {
  color: #990073; }
.highlight .bp {
  color: #999999; }
.highlight .vc, .highlight .vg, .highlight .vi {
  color: #008080; }
.highlight .il {
  color: #009999; }

body {
  font-family: adobe-caslon-pro;
  font-size: 20px; }

pre, code {
  font-family: source-code-pro; }

p code {
  font-size: 0.85em; }

section.content-body > article .stat-block {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1em;
  background-color: #FDF1DC;
  border: 1px #DDD solid;
  border-top: 5px solid #E69A28;
  border-bottom: 5px solid #E69A28; }
  @media only screen and (min-width: 54rem) {
    section.content-body > article .stat-block {
      column-count: 2;
      column-gap: 40px;
      width: calc(100vw - 2em);
      margin-left: calc(-50vw + 1em);
      margin-right: calc(-50vw + 1em);
      box-shadow: 0 0 1.5em #867453; } }
@supports(text-shadow: 0 0 0 white) {
  section.content-body > article .stat-block .vitals a:not(make-this-more-specific) {
    text-decoration: none;
    background-image: linear-gradient(to bottom, transparent, transparent 0.125em, #191919 0.125em, #191919 0.1875em, transparent 0.1875em);
    background-repeat: repeat-x;
    background-size: 0.125em 0.1875em;
    background-position: 0 0.95em;
    text-shadow: -1px -1px 0 #FDF1DC, 1px -1px 0 #FDF1DC, -1px 1px 0 #FDF1DC, 1px 1px 0 #FDF1DC; } }
  section.content-body > article .stat-block h2, section.content-body > article .stat-block h3, section.content-body > article .stat-block th, section.content-body > article .stat-block td {
    color: #922610; }
  section.content-body > article .stat-block th {
    font-size: 15px;
    text-align: center; }
  section.content-body > article .stat-block h3 {
    border-bottom: 1px solid #922610;
    font-size: 21px;
    clear: both; }
  section.content-body > article .stat-block h2 {
    font-variant: small-caps;
    line-height: 1.2em;
    letter-spacing: 1px;
    margin: 10px 0 0;
    font-size: 1.7em; }
  section.content-body > article .stat-block em.vitals {
    color: grey; }
  section.content-body > article .stat-block dl {
    clear: both; }
    section.content-body > article .stat-block dl dt, section.content-body > article .stat-block dl dl {
      float: left; }
    section.content-body > article .stat-block dl dt {
      font-weight: bold; }
      section.content-body > article .stat-block dl dt:after {
        content: ":";
        margin-right: 0.2em; }
    section.content-body > article .stat-block dl dd {
      margin-left: 0; }
      section.content-body > article .stat-block dl dd p:first-child {
        display: inline; }
  section.content-body > article .stat-block table.abilities {
    text-align: center;
    width: calc(100% - 2em);
    margin: 0 1em;
    position: relative;
    left: 0; }
  section.content-body > article .stat-block hr {
    width: 0;
    height: 6px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-left: 88vw solid #922610;
    margin-left: 0;
    margin-right: 0; }
    @media only screen and (min-width: 54rem) {
      section.content-body > article .stat-block hr {
        border-left-width: 46vw; } }

* {
  box-sizing: border-box;
  color: #191919;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.main-page .page-title:before {
  content: asset-data-url("c20.svg");
  display: inline-block;
  height: 2em;
  width: 2em; }
