<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Navigation Menu - Background */

.navigation {
  /* critical sizing and position styles */
  width: 100%;
  height: 100%;
  /* position: fixed; */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  
  /* non-critical appearance styles */
  list-style: none;
  background: #111;
}

/* Navigation Menu - List items */
.nav-text {
  /* non-critical appearance styles */
  width: 100px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #000;
  text-align: center;
  background: #111;
}

.nav-text a {
  color: white;
  font-family: "Tangerine", serif;
  font-size: 36px;
  /* color: #c74438;*/
  text-decoration: none;
  transition: color 0.2s, background 0.5s;
  display: block;
}

.nav-text a:hover {
  color: #c74438;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(75,20,20,0.65) 100%);
}


/* Navigation Menu - List items */
.nav-item {
  /* non-critical appearance styles */
  width: 200px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #000;
}

.nav-item a {
  /* non-critical appearance styles */
  display: block;
  padding: 1em;
  color: white;
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.2s, background 0.5s;
}

.nav-item a:hover {
  color: #c74438;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(75,20,20,0.65) 100%);
}

/* Site Wrapper - Everything that isn't navigation */
.site-wrap {
  padding: 20px;
  background-color: white;
  border-radius: 0 4px 4px 4px;
  text-align:justify;
  text-justify:inter-word;

  /* Critical position and size styles */
  min-width: 60%;
  min-height: 100%;
  background-color: white; /* Needs a background or else the nav will show through */
  position: relative;
  top: 0;
  bottom: 100%;
  left: 0;
  z-index: 1;
  
  /* non-critical apperance styles */
  padding: 1em;
  padding-left: 5em;
  background-size: 100%;
}

/* Nav Trigger */
.nav-trigger {
  /* critical styles - hide the checkbox input */
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

label[for="nav-trigger"] {
  /* critical positioning styles */
  position: fixed;
  left: 15px; top: 15px;
  z-index: 2;
  
  /* non-critical apperance styles */
  height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'&gt;&lt;rect width='30' height='6'/&gt;&lt;rect y='24' width='30' height='6'/&gt;&lt;rect y='12' width='30' height='6'/&gt;&lt;/svg&gt;");
  background-size: contain;
}

/* Make the Magic Happen */
.nav-trigger + label, .site-wrap {
  transition: left 0.2s;
}

.nav-trigger:checked + label {
  left: 215px;
}

.nav-trigger:checked ~ .site-wrap {
  left: 200px;
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
  max-width: 90%;
}

body {
	/* Without this, the body has excess horizontal scroll when the menu is open */
  overflow-x: visible;
}

/* Additional non-critical styles */

hr 
{
  border: 1px dotted;
  border-top: 0px;
  width: 100%;
  height: 1px;
  color: #000000;
}

h1
{
border-bottom: 3px solid #000000;
text-align: center;
}

h2
{
border-bottom: 1px dashed #000000;
text-align: center;
margin-bottom: 0.8em;
}

h3
{
text-align: center;
}

p
{
padding: 20px;
background-color: white;
border-radius: 0 4px 4px 4px;
text-justify:inter-word;
}


ol {
    margin:0px 0;
    padding:0;
    list-style: decimal-leading-zero inside none;
}

ol li 
{
    margin: 0px;
    padding: 0px;
    text-indent: -2.2em;
    margin-left: 3.4em;
}

ul {
    margin: 0px 0;
    padding: 0;
    list-style-type: disc;
}

ul li 
{
    margin: 0px;
    padding: 0px;
    text-indent: 0em;
    margin-left: 3.4em;
}

/* Micro reset */
*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;}
html, body { height: 100%; width: 100%; font: "Trebuchet MS", Verdana, sans-serif; }
</pre></body></html>