@charset "UTF-8";
/*****************************************************************************/
/*
/* Tufte Jekyll blog theme
/* Based on Tufte CSS by Dave Liepmann ( https://github.com/edwardtufte/tufte-css )
/*
/* The README.md will show you how to set up your site along with other goodies
/*****************************************************************************/
/* This file contains all the constants for colors and font styles */
:root {
  --width-gutter: 5vw;
}

@font-face {
  font-family: "et-book";
  src: url("../fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot");
  src: url("../fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot?#iefix") format("embedded-opentype"), url("../fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff") format("woff"), url("../fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf") format("truetype"), url("../fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg#etbookromanosf") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "et-book";
  src: url("../fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot");
  src: url("../fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot?#iefix") format("embedded-opentype"), url("../fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff") format("woff"), url("../fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf") format("truetype"), url("../fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg#etbookromanosf") format("svg");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "et-book";
  src: url("../fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot");
  src: url("../fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot?#iefix") format("embedded-opentype"), url("../fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff") format("woff"), url("../fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf") format("truetype"), url("../fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg#etbookromanosf") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "et-book-roman-old-style";
  src: url("../fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot");
  src: url("../fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot?#iefix") format("embedded-opentype"), url("../fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff") format("woff"), url("../fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf") format("truetype"), url("../fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg#etbookromanosf") format("svg");
  font-weight: normal;
  font-style: normal;
}
ul, ol, dl {
  font-variant-numeric: tabular-nums;
  padding-left: 1.5em;
  padding-right: 0;
}
ul ul, ol ul, dl ul, blockquote ul, aside ul, ul ol, ol ol, dl ol, blockquote ol, aside ol, ul dl, ol dl, dl dl, blockquote dl, aside dl {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
ul li p, ol li p, dl li p {
  width: 100%;
}

dt {
  font-weight: bold;
}

dd {
  padding-left: 1rem;
}
dd:before {
  content: "- ";
  display: inline;
  color: black;
  margin-left: -1rem;
}

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

::selection {
  background-color: hsl(45, 36%, 54%);
  color: white;
}
::selection a {
  text-decoration-color: black;
}

/* clearfix hack after Cederholm (group class name) */
.group:after {
  content: "";
  display: table;
  clear: both;
}

article > :first-child {
  margin-top: 0;
}

html, body {
  height: 100%;
}

.mathblock {
  font-size: 1.3rem;
}

body {
  padding: 0;
  background-color: #fffff8;
  color: black;
}

/* Basic Layout stuff --*/
header {
  padding: 0 5vw 5vw;
  opacity: 0.5;
}
header a:hover {
  opacity: 1;
}

article {
  position: relative;
  width: 100%;
  padding: 0 5vw 5vw;
}
article header {
  margin-left: -5vw;
  margin-right: -5vw;
}

section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/**
 * some variables to get us started
 */
:root {
  --width-main: 55vw;
  --width-aside: calc( 100vw - var(--width-main) - ( 3 * var(--width-gutter) ) );
  --width-full: calc( 100vw - 2 * var( --width-gutter ) );
}

article {
  padding: 0 var(--width-gutter);
}
article figure,
article .fullwidth,
article .table-wrapper {
  width: var(--width-full);
  clear: both;
}
article #contents,
article .marginnote,
article .sidenote {
  max-width: var(--width-aside);
  float: right;
  clear: both;
}
article .marginnote,
article .sidenote {
  position: relative;
  margin-right: calc(-1 * (var(--width-aside) + var(--width-gutter)));
}
article > .marginnote,
article > .sidenote {
  position: static;
  margin-right: 0;
}
article > * {
  width: var(--width-main);
}
article figure:not(.fullwidth) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
article figure:not(.fullwidth) img {
  max-width: var(--width-main);
  align-self: flex-start;
}
article figure:not(.fullwidth) figcaption {
  width: var(--width-aside);
  min-width: 150px;
  align-self: flex-end;
}
article figure.fullwidth img {
  max-width: var(--width-full);
}
article figure.fullwidth figcaption {
  width: var --main-column;
}

@media (max-width: 700px) {
  :root {
    --width-main: 90vw;
    --width-aside: 90vw;
    --width-full: 90vw;
  }
  #contents,
  .marginnote,
  .sidenote {
    float: none;
  }
}
div.table-wrapper {
  overflow-x: auto;
}

pre {
  overflow-x: auto;
  padding: 2.5vw;
  border: 1px dashed hsl(8, 74%, 33%);
}

.contrast {
  color: #222;
}

.smaller {
  font-size: 80%;
}

.larger {
  font-size: 2.8rem;
}

.dnd-green-box,
#contents {
  margin-top: 0;
  padding: 0;
  border-top: 2px solid black;
  border-top-color: black;
  border-bottom-color: black;
  border-left-color: hsl(63, 43%, 82%);
  border-right-color: hsl(63, 43%, 82%);
  border-style: solid;
  border-width: 8px 12px;
  background-color: hsl(63, 43%, 82%);
  background-clip: padding-box;
  filter: drop-shadow(0 0.4em 0.3em rgba(0, 0, 0, 0.4));
  border-image-source: url(/assets/img/box-border.png);
  border-image-slice: 15;
  font-size: 90%;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}
.dnd-green-box a,
#contents a {
  text-decoration: none;
}
.dnd-green-box a:hover,
#contents a:hover {
  text-decoration: underline;
}
.dnd-green-box h2,
#contents h2 {
  margin-top: 0.5em;
  border: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: bold;
  color: black;
  margin-bottom: 0.5em;
}
.dnd-green-box ol,
#contents ol {
  margin-top: 0;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.dnd-green-box ol ol,
#contents ol ol {
  margin-bottom: 0;
}

#session-bottom:before {
  display: block;
  content: "𝔉𝔦𝔫";
  color: #fffff8;
  text-align: center;
  box-shadow: inset 0 0 1em 0 black, inset 0 0 2em 0.8em hsl(8, 74%, 33%);
  border: 4px double hsl(8, 74%, 33%);
  border-radius: 3px;
  max-width: 33.6rem;
  line-height: 2;
  font-size: 200%;
  color: #fffff8;
  margin: 5vw 0;
  text-align: center;
  box-shadow: inset 0 0 1em 0 black, inset 0 0 2em 0.8em hsl(8, 74%, 33%);
  border: 4px double hsl(8, 74%, 33%);
  border-radius: 3px;
}

footer {
  max-width: 28em;
  padding: 5vw;
  margin: 0 auto;
  font-size: 90%;
  opacity: 0.4;
}
footer:active, footer:hover {
  opacity: 1;
}
footer p {
  width: 100%;
}

/*
 * Table styling section - For Tufte-Jekyll, booktabs style is default for Markdown tables
 */
table,
table.booktabs {
  width: auto;
  margin-bottom: 1rem;
  border-spacing: 0px;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
  font-size: 80%;
}

.booktabs th, th {
  padding: 0.65ex 0.5em 0.4ex 0.5em;
  font-weight: bold;
  text-align: center;
}

th, td {
  line-height: 1.51428571;
}

th {
  vertical-align: bottom;
}

td {
  vertical-align: top;
}

.booktabs td, td {
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-align: left;
}

.booktabs caption, caption {
  font-size: 90%;
  text-align: left;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1ex;
  caption-side: top;
}

.booktabs tbody tr td.l,
.booktabs thead tr th.l {
  text-align: left !important;
}
.booktabs tbody tr td.c,
.booktabs thead tr th.c {
  text-align: center !important;
}
.booktabs tbody tr td.r,
.booktabs thead tr th.r {
  text-align: right !important;
}

.table-caption {
  float: right;
  clear: right;
  margin-right: -60%;
  width: 50%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.96;
}

/**
 * For tufte sidenotes and marginnotes
 */
body {
  counter-reset: sidenote-counter;
}

.sidenote,
.marginnote {
  margin-top: 0;
  margin-bottom: 1em;
  line-height: 1.3;
  vertical-align: baseline;
  position: relative;
  font-size: 90%;
}

.sidenote-number {
  counter-increment: sidenote-counter;
}

.sidenote-number:after,
.sidenote:before {
  content: counter(sidenote-counter) " ";
  color: #222;
  position: relative;
  vertical-align: baseline;
  height: 1em;
  width: 1em;
  display: inline-block;
  text-align: center;
  border: 1px solid hsl(45, 36%, 54%);
  line-height: 1;
}

.sidenote-number:after {
  content: counter(sidenote-counter);
  font-size: 1rem;
  top: -0.5rem;
  left: 0.1rem;
}

.sidenote:before {
  content: counter(sidenote-counter);
  color: #222;
  top: 0rem;
  margin-right: 0.3em;
}

input.margin-toggle {
  display: none;
}

label.sidenote-number {
  display: inline;
}

label.margin-toggle:not(.sidenote-number) {
  display: none;
}

@media (max-width: 700px) {
  label.margin-toggle:not(.sidenote-number) {
    display: inline;
    color: #222;
  }
  .sidenote, .marginnote {
    display: none;
  }
  article > .sidenote,
  article > .marginnote {
    display: block;
    float: none;
    margin-right: none;
    margin-left: none;
  }
  .margin-toggle:checked + .sidenote,
  .margin-toggle:checked + .marginnote {
    display: inline;
    float: none;
    left: 0;
    clear: both;
    width: auto;
    margin: 0;
    vertical-align: baseline;
    position: static;
    background-color: hsl(63, 43%, 82%);
    font-size: inherit;
  }
  .margin-toggle:checked + .sidenote::before,
  .margin-toggle:checked + .marginnote::before {
    display: none;
  }
  label {
    cursor: pointer;
  }
  .table-caption {
    display: block;
    float: right;
    clear: both;
    width: 98%;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    margin-left: 1%;
    margin-right: 1%;
    vertical-align: baseline;
    position: relative;
  }
  div.table-wrapper {
    border-right: 1px solid #efefef;
  }
}
figure {
  margin-bottom: 3em;
  margin-top: 1em;
}

figcaption {
  line-height: 1.6;
  vertical-align: baseline;
  font-size: 90%;
}
figcaption > * {
  width: 100%;
}

img {
  max-width: 100%;
}

/**
 * Typography page
 */
html {
  text-align: baseline;
  font-size: 11px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 800px) {
  html {
    font-size: 11px;
  }
}
@media screen and (min-width: 900px) {
  html {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.3;
}

/**
 * Headlines
 */
h1, h2, h3, h4, h5, h6 {
  font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
  font-weight: bold;
  color: #222;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #222;
  text-decoration: none;
}

h1 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
  line-height: 1;
}

h2 {
  margin-top: 0.5em;
  margin-bottom: 0;
  font-size: 2.2rem;
  line-height: 1;
}

h3 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 0;
  line-height: 1;
}

h4, h5, h6 {
  font-size: 1.6rem;
  margin-top: 1.4rem;
}

h1.header-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 4rem;
  display: inline;
}
h1.header-title a {
  text-decoration: none;
}

.header-subtitle {
  font-size: 1.5rem;
  line-height: 4rem;
  display: inline;
  clear: left;
}

p,
dl,
ol,
ul,
pre,
table,
blockquote,
details {
  margin-top: 1.4rem;
}

aside,
blockquote {
  padding-left: 2vw;
  padding-right: 2vw;
}
aside :first-child,
blockquote :first-child {
  margin-top: 0;
}
aside p,
blockquote p {
  width: 100%;
}
aside p + p,
blockquote p + p {
  margin-top: 1rem;
}
aside p.epigraph,
blockquote p.epigraph {
  font-size: 1.1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 45%;
  font-style: italic;
}
aside > cite,
blockquote > cite {
  display: block;
  text-align: right;
}
aside > cite.epigraph,
blockquote > cite.epigraph {
  display: block;
  text-align: right;
  font-style: normal;
  margin-top: 0.8rem;
}

blockquote p,
blockquote footer {
  padding-right: 0;
}

blockquote footer {
  text-align: right;
}

.subtitle {
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  display: block;
  line-height: 1.2;
  width: auto;
}

.preface {
  font-style: italic;
  margin-top: 1em;
  margin-bottom: 3em;
  font-size: 1.8rem;
  display: block;
  line-height: 1.2;
  width: auto;
}

aside {
  margin-top: 1rem;
  padding: 2vw;
  border: 1px hsl(8, 74%, 33%) solid;
}

code,
pre,
pre code,
p code,
p pre code {
  font-family: "Ubuntu Mono", Courier, monospace;
  color: hsl(8, 74%, 33%);
  font-variant-numeric: tabular-nums;
}

.sans {
  font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
  letter-spacing: 0.03em;
}

p.margin-maker {
  margin-top: 1rem;
  margin-bottom: 3.4rem;
}

.marginnote code, .sidenote code {
  font-size: 1rem;
}

span.newthought {
  font-variant: small-caps;
  font-size: 1.2em;
  letter-spacing: 0.05rem;
}

abbr {
  text-underline-position: under;
  cursor: help;
}

hr {
  border: 0;
  height: 1px;
  margin-top: 2.1rem;
  margin-bottom: 2.1rem;
  background-color: black;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.soundcite-loaded {
  display: inline !important;
}

ruby {
  display: inline-flex;
  flex-direction: column-reverse;
  height: 1em;
  overflow: visible;
  vertical-align: baselin;
}

rb, rt {
  display: inline;
}

rb {
  line-height: 1;
}

rt {
  line-height: 1;
}

a {
  color: #222;
  text-decoration-color: hsl(45, 36%, 54%);
  text-decoration-skip-ink: auto;
  text-decoration-skip: leading-spaces trailing-spaces;
}
a img {
  border: none;
}
a:hover, a:active {
  color: hsl(8, 74%, 33%);
  text-decoration-color: hsl(8, 74%, 33%);
}

article p a:visited {
  color: black;
  text-decoration-color: #743da6;
}
article p a:visited:hover {
  color: #743da6;
  text-decoration-color: #743da6;
}

nav a.active {
  font-weight: bold;
}
nav a.active:before {
  content: "> ";
}
nav a.active:after {
  content: " <";
}

nav.group {
  width: 100%;
  border-bottom: 2px hsl(8, 74%, 33%) solid;
  padding: 0;
}
nav.group a {
  float: left;
  font-size: 1.2rem;
  padding-top: 0;
  text-transform: uppercase;
}

nav.homepage a {
  display: block;
  clear: both;
  text-decoration: none;
  color: #fffff8;
  text-align: center;
  box-shadow: inset 0 0 1em 0 black, inset 0 0 2em 0.8em hsl(8, 74%, 33%);
  border: 4px double hsl(8, 74%, 33%);
  border-radius: 3px;
  max-width: 33.6rem;
  line-height: 2;
  font-size: 200%;
  color: #fffff8;
  margin: 5vw 0;
  text-align: center;
  box-shadow: inset 0 0 1em 0 black, inset 0 0 2em 0.8em hsl(8, 74%, 33%);
  border: 4px double hsl(8, 74%, 33%);
  border-radius: 3px;
}

header nav a {
  font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
  color: #222;
  text-decoration: none;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 2rem;
  vertical-align: baseline;
}

nav a img {
  height: 5rem;
  position: relative;
  max-width: 100%;
  top: -1.5rem;
}

.credits {
  padding: 1rem 0rem;
}

h1.content-listing-header {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.8rem;
}

.listing,
.listing h3 {
  display: inline-block;
  margin: 0;
  width: 100%;
}

li.listing {
  margin: 0 0 5vw;
}
li.listing p {
  width: 100%;
}
li.listing p > a {
  text-decoration: none;
}

li.listing:last-of-type {
  border-bottom: none;
  margin-bottom: 1.4rem;
}

li.listing h3.new {
  text-transform: uppercase;
  font-style: normal;
}

ul.content-listing {
  padding-left: 0;
}

h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a {
  color: hsl(8, 74%, 33%);
}

h1, h2 {
  font-variant: small-caps common-ligatures;
}

h2, h3 {
  border-bottom: 2px solid hsl(45, 36%, 54%);
}

h3 {
  width: max-content;
  max-width: var(--width-main);
}

tbody tr:nth-child(odd) {
  background-color: hsl(63, 43%, 82%);
}

td :first-child {
  margin-top: 0;
}

table.campaign-table {
  display: block;
  max-height: 80vh;
  overflow: scroll;
}
table.campaign-table thead {
  position: sticky;
  top: 0;
  background-color: #fffff8;
}

@media screen and (max-width: 760px) {
  table.campaign-table tr {
    display: grid;
    grid-template: "a b" auto "c c" auto/auto 1fr;
    padding: 0.5em;
  }
  table.campaign-table td {
    padding: 0;
  }
  table.campaign-table tbody tr td:nth-child(1) {
    grid-area: b;
    text-align: right !important;
  }
  table.campaign-table td:nth-child(2) {
    grid-area: a;
    font-weight: bold;
  }
  table.campaign-table td:nth-child(3) {
    grid-area: c;
    padding-top: 0.5em;
  }
}
blockquote {
  background: hsla(0, 0%, 10%, 0.1);
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  padding-bottom: 1.4rem;
}

ol ol li {
  color: hsla(0, 0%, 0%, 0.6);
}

input {
  width: 5em;
}

.btn {
  color: #fffff8;
  text-align: center;
  box-shadow: inset 0 0 1em 0 black, inset 0 0 2em 0.8em hsl(8, 74%, 33%);
  border: 4px double hsl(8, 74%, 33%);
  border-radius: 3px;
  color: white;
  text-decoration: none;
  padding: 1px 5px;
  display: inline-block;
}
.btn:hover {
  color: hsl(45, 36%, 54%);
}

@supports (display: grid) {
  .stat-block {
    display: block;
  }
  .stat-block thead {
    display: none;
  }
  .stat-block tbody {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
  }
  .stat-block tbody tr {
    flex-basis: 7em;
    display: grid;
    margin-right: 1em;
    background-color: transparent;
    box-shadow: inset 0 0 5em hsl(63, 43%, 82%);
    grid-template-columns: 1em 1fr 1em;
    grid-column-gap: 1em;
    grid-row-gap: 0;
    grid-template-areas: "name name name" "bonus bonus ." "save save proficient" "points points .";
    padding: 0.5rem;
    border: 1px solid hsl(8, 74%, 33%);
  }
  .stat-block td {
    padding: 0;
    line-height: 1.2;
  }
  .stat-block td::before {
    display: inline-block;
    float: left;
    font-size: 0.7rem;
    line-height: 16.8px;
  }
  .stat-block tr {
    font-size: 14px;
  }
  .stat-block tr :nth-child(1) {
    grid-area: name;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-align: center;
  }
  .stat-block tr :nth-child(2) {
    grid-area: points;
    text-align: right;
  }
  .stat-block tr :nth-child(2)::before {
    content: "Stat";
  }
  .stat-block tr :nth-child(3) {
    grid-area: bonus;
    text-align: right;
    font-weight: bold;
  }
  .stat-block tr :nth-child(3)::before {
    content: "Mod";
  }
  .stat-block tr :nth-child(4) {
    grid-area: save;
    text-align: right;
  }
  .stat-block tr :nth-child(4)::before {
    content: "Save";
  }
  .stat-block tr :nth-child(5) {
    grid-area: proficient;
    text-align: left;
  }
}
/**
 * Fix for markdown parsing within block elements
 *
 * The requirement that summary be a block element means that
 * the summary button text must be its own line
 * which means it becomes its own paragraph, with all the styles that entails.
 */
summary p {
  display: inline;
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=tufte.css.map */