@charset "UTF-8";



/* @FONT FACE (enable the use of 'custom fonts' inside your document) */

/* 
  You can use 'fontsquirrel' (https://www.fontsquirrel.com) 
  or 'transfonter' (https://transfonter.org)
  to generate your own font for the web from .ttf or .oft files 
*/



@font-face {
    font-family: 'Your Font Name';
    src: url('../fonts/yourfontname/yourfontname-italic.woff2');
    font-weight: 200;
    font-style: italic;
    font-display: block;
}

@font-face {
  font-family: 'Helvetica-Light';
  src: url('../fonts/HelveticaLight/Helvetica-Light.woff2') format('woff2'),
      url('../fonts/HelveticaLight/Helvetica-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica-Light';
  src: url('../fonts/HelveticaLight/Helvetica-LightOblique.woff2') format('woff2'),
      url('../fonts/HelveticaLight/Helvetica-LightOblique.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Hershey Futura';
  src:url('../fonts/Hershey-Noallies-Futura-Simplex/Hershey-Noailles-Futura-Simplex-Regular.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hershey Futura Light';
  src:url('../fonts/Hershey-Noallies-Futura-Simplex/Hershey-Noailles-Futura-Simplex-Light.woff') format('woff');
  font-weight: 300;
  font-style:  normal;
  font-display: swap;
}


/* VARIABLES */

:root {
  /* Color values */
  --color-background: rgba(255,255,255,1);
  --color-text: rgba(0,0,0,1);
  /* --color-text-link: rgba(0,0,255,0.8);
  --color-text-link-hover: rgba(0,0,255,0.4);*/
  /* Font values */
   --font-text: 'Hershey Futura', 'Helvetica-Light', 'Times New Roman', serif; 
  --font-size: 24px;
  /* Margin value */
  --margin: 1rem;
}



/* GENERAL STYLES */

html {
  font: var(--font-size) var(--font-family);
  color: var(--color-text);
  background-color: var(--color-background);
  scroll-behavior: smooth;
}

body {
  position:relative;
  background-color: var(--color-background);
  font: var(--font-size) var(--font-family);
  color: var(--color-text);
  width: 100%;
  margin:0;
  padding: 0;
  height:auto;
  overflow-y:auto;
  font-family: 'Hershey Futura', 'Helvetica-Light', 'Times New Roman', serif;
  font-weight: 300;
  hyphens: auto;
  transition: all 0.3s ease;
  /* letter-spacing: 0.02rem; */
  
}

.page-container{
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  

}

a {
  color: var(--color-text-link);
  text-decoration: underline;
}

a:hover {
  color: var(--color-text-link-hover);
  text-decoration: underline;
}


h1 {
  font-weight: 300;
  padding: 0;
  font-size: 3rem;
  line-height: 3.5rem;
  text-align: center;
  margin-top:0; 

}

h2 {
  
  font-style: normal;
  font-weight: 300;
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.8rem;
  text-align: center;
  text-decoration: none;
  grid-column-start: 2;
  grid-column-end: span 2;
}

h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.8rem;
  text-align: center;
  grid-column-start: 2;
  grid-column-end: span 2;
  
}

hr {
  display: block;
  position: absolute;
  left: 0;
  height: 3px;
  width: 100vw;
  border: 0;
  border-top: 2px solid #000000;
  margin: 1em 0;
  padding: 0;
  
}

li {
  padding: 0;
  margin-bottom: 1rem;
}

p,
dl,
ol,
ul {
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.8rem;
}

p {
    
    margin-top: 0;
    margin-bottom: 1.2rem;
    
    /*vertical-align: baseline;*/
    /*text-indent: 2.6rem;*/
    hyphens:auto;
}

.imagecolumn {
  grid-column-start: 1;
  grid-column-end: span 1;
  font-size: 1.1rem;
  line-height: 1.3rem;
  font-weight: 300;
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
}

.image {
  align-self: center;
  padding: 10px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.image > img {
  width: 40%;
  height: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.image.enlarged > img {
  width: calc(100% - 20px);
  height: auto;
  margin-bottom: 0px;
}

.fignumber > p{
  margin-bottom: calc(0.2rem + 10px);
}

.figcaption {
  display: none;
  margin-top: 10px;
  margin-bottom: 10px;
  vertical-align: baseline;
  position: relative;
  text-align: center;
}

.figcaption > p {
  font-size: 1.1rem;
  line-height: 1.3rem;
  margin-top: 0.2rem;
  margin-left: 10px;
  margin-right: 10px;
  text-align: left;
  hyphens: none;
}

.image.enlarged .figcaption {
  display: block;
  margin-top: 0px;
}

#fig-14{
  position: relative;
  top: -10rem;
}

mark.fig-link {
  background-color: blue;
  cursor: pointer;
  text-decoration: none;
  color:white;
  font-size: 90%;
  padding: 0.2rem 0.2rem 0.2rem 0.2rem;
}

mark.fig-link:hover {
  text-decoration: underline;
}

.fignumber:hover {
  text-decoration: underline;
  cursor:pointer;
}

sup {
  position: relative;
  z-index: 0;
  line-height: inherit;
}

.footnote{
  font-size: 90%;;
  position: relative;
  top: 0;
  left:0;
  background-color: green;
  color: white;
  z-index: 0;
  padding: 0.2rem 0.2rem 0.2rem 0.2rem;
}

.footnote-panel {
  display: none;
  position: fixed;
  left: 76vw;
  bottom: 70px;
  /* background-color: aquamarine; */
  width: 24vw;
  height:fit-content;
  padding: 20px;
  padding-top: 0;
  z-index: 20;
  box-sizing: border-box;
  
}

.footnote-panel #footnote-content {
  position: relative; 
  margin-bottom: 0px;
  margin-top: 0px;
  padding-right: 20px;
  font-size: 1.1rem;
  line-height: 1.3rem;
  font-weight: 300;
  text-align: justify;
  /* top: auto; */
}

.footnote-text {
  display: none;
}

.footnotereverse {

  padding-right: 0.2rem;


}

fieldset {
  padding:0;
  align-items: center;
  line-height: 1;
  border: 0;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  text-align: center;
}

#titlecheckbox {
  font-size: 3rem;
}

input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
}


input[type="checkbox"] {
  appearance: none;
  background-color: white;
  margin: 0;
  font: inherit;
  color: black;
  width: 0.7em;
  height: 0.7em;
  border: 0.07em solid currentColor;
  border-radius: 2px;
  transform: translateY(0.02rem);
  cursor: pointer;
 
}



input[type="checkbox"]:checked {
  background-color: rgb(255, 230, 0);
} 



.form-control + .form-control {
  margin-top: 1em;
}

fieldset > input.submit-button {
  justify-self: end;
 }

 #true:checked + span {
  text-decoration: underline;
 }

 #false:checked + span {
  text-decoration: underline;
 }


.dropdownmenu{
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: scroll;
  background-color: white;
  border-right: 2px black solid;
  text-align: left;
  z-index: 1;
}

#dropdownmenu-content{
  position: relative;
  width: 24vw;
  height: 100vh;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 70px;
  box-sizing: border-box;
}

.dropdown-content{
  display:none;
  position:fixed;
  background-color: white;
  z-index: 1;
}

.dropdown-content.is-visible{
  display:block;
  z-index: 10;
}

.imagegallery {
  position: fixed;
  left:0;
  top: 0;
  background-color: white;
  z-index: 1;
  overflow-y: scroll;
  border-right: 1px solid black;
}

#imagegallery-content {
  width: 24vw;
  height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
  overflow-y: scroll;
  text-align: center;
  border-right: 2px solid black;
  
}

#imagegallery-content > a > img {
 height: 14%;
 width: auto;
 padding: 10%;
 align-self: center;
}

.green-menu{
  position: fixed;
  left: 76vw;
  top: 0;
  background-color: white;
  z-index: 1;
}

#dropdown-bibliography{
  height: 100vh;
  width: 24vw;
  text-align: left;
  overflow-y: scroll;
  border-left: 2px  black solid;
}

#dropdown-bibliography > p{
  font-size: 1.1rem;
  line-height: 1.3rem;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  hyphens: auto;
}

.imagenumbers {
  text-align: center;
  margin-bottom: 0.4rem;
}


span.longlink {
  overflow-wrap: break-word; 
  hyphens: none; 
  line-break: anywhere;
}



.acknowledgements{
  position: fixed;
  left: 76vw;
  top:0;
  overflow-y: scroll;
  background-color: white;
  z-index: 1;
}


#acknowledgements-content{
  height: 100vh;
  text-align: left;
  box-sizing: border-box;
  border-left: 2px black solid;
  width: 24vw;
  z-index: 1;
}


#acknowledgements-content > p{
  position: absolute;
  bottom: 0;
  font-size: 1.1rem;
  line-height: 1.3rem;
  width: 24vw;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 70px;
  box-sizing: border-box;
}






button.circle {
  position: fixed;
  top: 20px;
  left: 20px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  z-index: 105;
  cursor: pointer;
  border: 0;
}


#bluecircle {
  background-color: blue;
  top: calc(100vh - 50px);
}

#redcircle {
  background-color: red;

  
}

#yellowcircle {
  background-color: rgb(255, 230, 0);
  left: calc(100vw - 50px);
  top: calc(100vh - 50px);
}

#greencircle {
  background-color: green;
  left: calc(100vw - 50px);
 
}



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

.numeral {
  font-family: Helvetica, Arial, sans-serif;
}

.danger {
  color: red;
}



section {
  text-align: justify;
  grid-column-start: 1;
  grid-column-end: span 4;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  padding-top: 0;
  padding-bottom:0;
}


section .content {
  display: none;
  text-align: justify;
  grid-column-start: 1;
  grid-column-end: span 4;
  grid-template-columns: 25% 25% 25% 25%;
  padding-top: 0;
  padding-bottom: 1.2rem;

}

label {
  cursor: pointer;
}

#do-lambs-roar, #yes-no{
  grid-column-start: 1;
  grid-column-end: span 4;
  display: block;
}

.textelement {
  clear: both;
  align-items: start;
  text-align: justify;
  grid-column-start: 2;
  grid-column-end: span 2;
  margin: 0;
}

.false-text-element{
  display: none;
  text-align: center;
  grid-column-start: 2;
  grid-column-end: span 2;
  margin:0;
}

.level2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}



#prelude {
  margin-top: 7.2rem;
  margin-bottom: 7.2rem;
}

/* PAGE STYLES */

/* page structure */



/* navigation */
 


/* content */

header {
  grid-column-start: 1;
  grid-column-end: span 4;
  height: 100vh;
  text-align: center;
  display: grid;
  place-content: center;
  place-items: center;
  margin: 0;
  padding: 0;
}

#footnote-1{
  background-color: white;
  color: black;
  font-size: 50%;
  position: relative;
  top: -1.3rem;
}

p.header {
  text-align: center;
  
}


.headerform{
font-size: 3rem;

}


.menu{
  font-size: 1.5rem;
  line-height: 1.8rem;
  list-style: none;
  padding-left: 0;
}

a { 
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}


.greybox{
  grid-column-start: 1;
  grid-column-end: span 4; 
  position: relative;
  display: grid;
  grid-template-columns: 25% 25% 25% 25% ;
  background-color: rgb(238, 238, 238);
  min-height: 100vh;
}

#abstract {
  align-self: start;
  margin-top: 6rem;
  padding-bottom: 6rem;
}

#bibliography{
  display: none;
}

/* Chapter Epigraphs */
div.epigraph {
  margin: 5em 0;
}

div.epigraph > blockquote {
  margin-top: 3em;
  margin-bottom: 3em;
}

div.epigraph > blockquote,
div.epigraph > blockquote > p {
  font-style: italic;
}

div.epigraph > blockquote > footer {
  font-style: normal;
}

div.epigraph > blockquote > footer > cite {
  font-style: italic;
}
/* end chapter epigraphs styles */

.blockquote {
  font-size: 1.3rem;
  line-height: 1.5rem;
 font-style: italic;
  padding-left: 5%;
}

blockquote p {
  width: 55%;
  margin-right: 40px;
}

blockquote footer {
  width: 55%;
  font-size: 1.1rem;
  text-align: right;
}

/* section > p,
section > footer,
section > table {
  width: 55%;
} */

/* 50 + 5 == 55, to be the same width as paragraph */
/* section > dl,
section > ol,
section > ul {
  width: 50%;
  -webkit-padding-start: 5%;
} */

dt:not(:first-child),
li:not(:first-child) {
  margin-top: 0.25rem;
}



.figure {
  display: none;
}





/* Sidenotes, margin notes, figures, captions */


div.fullwidth,
table.fullwidth {
  width: 100%;
}

div.table-wrapper {
  overflow-x: auto;
  font-family: Helvetica, Arial, sans-serif;
}

.sans {
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: .03em;
}

code, pre > code {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1.0rem;
  line-height: 1.42;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS. See https://github.com/edwardtufte/tufte-css/issues/81#issuecomment-261953409 */
}

.sans > code {
  font-size: 1.2rem;
}

h1 > code,
h2 > code,
h3 > code {
  font-size: 0.80em;
}

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

pre > code {
  font-size: 0.9rem;
  width: 52.5%;
  margin-left: 2.5%;
  overflow-x: auto;
  display: block;
}

pre.fullwidth > code {
  width: 90%;
}

.fullwidth {
  max-width: 90%;
  clear:both;
}

span.newthought {
  font-variant: small-caps;
  font-size: 1.2em;
}







/* UTILITY CLASSES */

/* hide desktop mobile etc */

/*.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
} */





/* WEBSITE MEDIA QUERIES */

/* responsive typeface for various breaking points, sets the default 'rem' value */
@media (max-width: 299px) { :root{--font-size: 13px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 299px) and (max-width: 340px) { :root{--font-size: 13px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 340px) and (max-width: 440px) { :root{--font-size: 13px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 441px) and (max-width: 779px) { :root{--font-size: 14px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 780px) and (max-width: 992px) { :root{--font-size: 13px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 993px) and (max-width: 1200px) { :root{--font-size: 14px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 1201px) and (max-width: 1320px) { :root{--font-size: 15px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 1321px) { :root{--font-size: 16px;} html, body {font: var(--font-size) var(--font-text); } }

/* styles for 'mobile', screen sizes up to 779px, should covers 'mobile' and 'tablet' */
/* style this one first and then use the subsequent ones in a cascading way (from general to specific) */

@media (max-width: 779px) {

  /* your 'mobile' overriding css properties here */


.page-container {
  display: grid;
  grid-template-columns: 100%;
  margin:0;
  padding: 0;
  box-sizing: border-box;
 }

button.circle {
  position: fixed;
  top: 20px;
  left: 20px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  z-index: 105;
  cursor: pointer;
  border: 0;
}


#bluecircle {
  background-color: blue;
  top: calc(100% - 50px);
}

#redcircle {
  background-color: red;
}

#yellowcircle {
  background-color: rgb(255, 230, 0);;
  left: calc(100%- 50px);
  top: calc(100% - 50px);
}

#greencircle {
  background-color: green;
  left: calc(100% - 50px);
} 

.textelement {
  grid-column-start: 1;
  grid-column-end: span 1;
  padding:20px;
  box-sizing: border-box;
}

h1, h2, h3 {
  grid-column-start: 1;
  grid-column-end: span 1;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

h1 {
  place-self: center;
  font-size: 1.8rem;
  line-height: 2rem;
} 

#titlecheckbox {
  font-size: 1.8rem;
  }

#footnote-1{
  font-size: 80%;
  top: -0.8rem;
 }

fieldset{
  grid-column-start: 1;
  grid-column-end: span 1;
}

section {
  grid-column-start: 1;
  grid-column-end: span 1;
  display: grid;
  grid-template-columns: 100%;
  padding-top: 0;
  padding-bottom:0;
}
  
section .content {
  display: none;
  text-align: justify;
  grid-column-start: 1;
  grid-column-end: span 1;
  grid-template-columns: 100%;
  padding-top: 0;
  padding-bottom: 1.2rem;
}
  
.false-text-element{
  grid-column-start: 1;
  grid-column-end: span 1;
}

.imagecolumn {
  display: none;
}

.figure {
  display: block;
  text-align: center;
  padding: 20px;
  width: 100%;
  padding: 5% 20%;
  box-sizing: border-box;
}
  
.figure > img {
  align-self: center;
  width: 100%;
}

.figcaption {
  display: block;
  margin: 0;
  position: relative;
  text-align: center;
}

.figcaption > p {
  margin: 0;
  margin-top: 0.2rem;
}

header {
  grid-column-start: 1;
  grid-column-end: span 1; 
  grid-row-start: 1;
  grid-row-end: span 1;
  place-items: center;
  place-content: center;
}

.greybox{
  grid-column-start: 1;
  grid-column-end: span 1; 
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  background-color: rgb(238, 238, 238);
  min-height: 100%;
}

#dropdownmenu-content{
  position: relative;
  width: 100%;
}

#imagegallery-content{
  width: 100%;
}

.green-menu{
  position: fixed;
  left: 0;
}

#dropdown-bibliography{
  width: 100%;
}

.acknowledgements{
  position: fixed;
  left: 0;
}

#acknowledgements-content{
  width: 100%;
  height: 100%;
}

#acknowledgements-content > p{
  width: 100%;
}

.footnote-panel {
  position: fixed;
  top: auto;
  bottom: 22px;
  left:  70px;
  height: fit-content;
  width: calc(100vw - 140px);
  padding: 8px 12px;
  border: 2px solid black;
  display: none;
  z-index: 1;
  box-sizing: border-box;
  background-color: white;
}

.footnote-panel #footnote-content {
  position: relative;
  bottom: 5px;
  margin-bottom: 0px;
  margin-top: 10px;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.3rem;
  font-weight: 300;
  z-index: 1;
  box-sizing: border-box;
  text-align: left;
}

mark.fig-link {
  background-color: blue;
  cursor:auto;
  text-decoration: none;
}

mark.fig-link:hover {
  text-decoration: none;
}

hr,
  section > p,
  section > footer,
  section > table {
    width: 100%;
}

pre > code {
  width: 97%;
}

section > dl,
section > ol,
section > ul {
  width: 90%;
}

label {
 cursor: pointer;
}

  
  /* utility classes, mobile */

.desktop-only{
  display:none;
}

.mobile-only{
  display:block;
}

}



/* use this query to apply style changes to smaller smartphones sizes (like an iPhone 5S or SE 2016), max size of 339px */

@media (max-width: 339px) {

  /* your overriding css properties here */

}



/* use this query to apply style changes for 'mobile' screen sizes that are flipped in 'landscape' mode */

@media (max-width: 779px) and (orientation: landscape) {

   /* your overriding css properties here */

}



/* use this query to apply style for 'small' desktop screens */

@media (min-width: 780px) and (max-width: 992px) {

  /* your overriding css properties here */

}


