@charset "UTF-8";

/*! Generated by Font Squirrel (https://www.fontsquirrel.com)
on April 12, 2020 */
@font-face {
    font-family: 'sansation_lightitalic';
    src: url('fonts/sansation/sansation_light_italic-webfont.eot');
    src: url('fonts/sansation/sansation_light_italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/sansation/sansation_light_italic-webfont.woff2') format('woff2'),
         url('fonts/sansation/sansation_light_italic-webfont.woff') format('woff'),
         url('fonts/sansation/sansation_light_italic-webfont.ttf') format('truetype'),
         url('fonts/sansation/sansation_light_italic-webfont.svg#sansation_lightitalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sansationregular';
    src: url('fonts/sansation/sansation_regular-webfont.eot');
    src: url('fonts/sansation/sansation_regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/sansation/sansation_regular-webfont.woff2') format('woff2'),
         url('fonts/sansation/sansation_regular-webfont.woff') format('woff'),
         url('fonts/sansation/sansation_regular-webfont.ttf') format('truetype'),
         url('fonts/sansation/sansation_regular-webfont.svg#sansationregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sansationbold';
    src: url('fonts/sansation/sansation_bold-webfont.eot');
    src: url('fonts/sansation/sansation_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/sansation/sansation_bold-webfont.woff2') format('woff2'),
         url('fonts/sansation/sansation_bold-webfont.woff') format('woff'),
         url('fonts/sansation/sansation_bold-webfont.ttf') format('truetype'),
         url('fonts/sansation/sansation_bold-webfont.svg#sansationbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sansationbold_italic';
    src: url('fonts/sansation/sansation_bold_italic-webfont.eot');
    src: url('fonts/sansation/sansation_bold_italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/sansation/sansation_bold_italic-webfont.woff2') format('woff2'),
         url('fonts/sansation/sansation_bold_italic-webfont.woff') format('woff'),
         url('fonts/sansation/sansation_bold_italic-webfont.ttf') format('truetype'),
         url('fonts/sansation/sansation_bold_italic-webfont.svg#sansationbold_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sansationitalic';
    src: url('fonts/sansation/sansation_italic-webfont.eot');
    src: url('fonts/sansation/sansation_italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/sansation/sansation_italic-webfont.woff2') format('woff2'),
         url('fonts/sansation/sansation_italic-webfont.woff') format('woff'),
         url('fonts/sansation/sansation_italic-webfont.ttf') format('truetype'),
         url('fonts/sansation/sansation_italic-webfont.svg#sansationitalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sansation_lightregular';
    src: url('fonts/sansation/sansation_light-webfont.eot');
    src: url('fonts/sansation/sansation_light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/sansation/sansation_light-webfont.woff2') format('woff2'),
         url('fonts/sansation/sansation_light-webfont.woff') format('woff'),
         url('fonts/sansation/sansation_light-webfont.ttf') format('truetype'),
         url('fonts/sansation/sansation_light-webfont.svg#sansation_lightregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* -----------------------------------Body----------------------------------- */
/* ELEMENT - Body, large impact */
body {
  /* Set automatic margin of page */
  margin: auto;
  /* Set body Font to desired font */
  font-family: 'sansationregular';
  /* Set Font Size base as 100% as defined */
  font-size: 100%;
  /* Set background color */
  background-color: #e6e6e6;
}

body.project {
  background-image: url("https://i.imgur.com/Pqrpj21.jpg");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------------------------------Top Menu--------------------------------- */
header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1;
  display: block;
}
/* ELEMENT - Main, Top Navigation Menu */
header ul {
  /* Remove bullet points from list */
  list-style-type: none;
  /* Set Margin */
  margin: 0px;
  /* Set Border */
  padding: 0px;
  /* if menu extends beyond screen, user able to still see full menu */
  overflow: hidden;
  /* set background color to dark grey */
  background-color: #333333;
  /* Set navbar Font to desired font */
  font-family: 'sansationregular';
}

header li {
  /* Left-Align all base subnav elements */
  float: left;
}

header li.page {
  /* Force the page menu icon to the Right */
  float: right;
}

/* sets format for all links as list items within 'header'
as well as for all elements as subnav class (the box of dropdown items) */
header li a, .subnav {
  /* Display as block for responsive reasons */
  display: inline-block;
  /* Text Color is White */
  color: white;
  /* Center the text within the link box */
  text-align: center;
  /* Add padding on the link box */
  padding: 14px 16px;
  /* Remove underline */
  text-decoration: none;
}

header li a.active {
  background-color: #666666;
}

/* Sets background color for all links when hovered,
including those within the dropdown list */
header li a:hover, .dropdown:hover .subnav {
  /* Set background color of link when mouse is over the link */
  background-color: #006600;
}

/* Dropdown - class for the list item containing the subnav box and links */
/* Subnav - class for the link that is hovered to reveal subnav box and links */
/* Subnav_box - class of the container for the subnav links */

header li.dropdown {
  display: inline-block;
  /* padding: 0px; */
}

.subnav_box {
  /* Hide list until :hover */
  display: none;
  /* Set position to fixed next to dropdown */
  position: absolute;
  /* Define again background-color, default not inherited */
  background-color: #333333;
  /* Set shadow around list box */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  /* Remove bullet points from list */
  list-style-type: none;
  /* Specifies the stack order of an element */
  z-index: 1;
}

.subnav_box_page {
  /* Hide list until :hover */
  display: none;
  font-size: 13px;
  max-height: 500px;
  overflow: auto;
  /* Set position to fixed next to dropdown */
  position: absolute;
  right: 0px;
  /* Define again background-color, default not inherited */
  background-color: #333333;
  /* Set shadow around list box */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  /* Remove bullet points from list */
  list-style-type: none;
  /* Specifies the stack order of an element */
  z-index: 1;
}

.dropdown:hover .subnav_box, .dropdown:hover .subnav_box_page{
  /* Display items as a block for responsiveness */
  display: block;
}

.subnav_box a {
  /* Set all items to have their own line */
  display: block;
  /* Align text to left */
  text-align: left;
}

.subnav_box_page a {
  /* Set all items to have their own line */
  display: block;
  /* Align text to left */
  text-align: left;
}

.page_link {
  padding: 6px 16px;
}

.fas {
  color: white;
  font-size: 20px;
  padding: 13px 16px;
}

/* Detail notifier when menu item has a drop-down */
.caret {
  display: inline-block;
  padding: 0;
  margin: 3px 0 0 4px;
  font-size: 18px;
  color: inherit;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}


/* -------------------------------Main Picture------------------------------- */
.mainpic {
  background-color: #333333;

}

img.full {
  border: black 2px;
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.pano_head {

}

@media only screen and (max-width:900px) {
  img.full {
    width: 60%;
  }
}

@media only screen and (max-width:700px) {
  img.full {
    width: 70%;
  }
}

@media only screen and (max-width:500px) {
  img.full {
    width: 100%;
  }
}

/* -------------------------Page Body / Main Content------------------------- */
.body, .body_ctr {
  /* Add padding to content on L and R sides */
  padding: 0px 20px;
  /* Set maximum width of the related element */
  max-width: 800px;
  /* Center element */
  margin: auto;
  font-size: 1em;
}

.body h1 {
  text-align: center;
  font-weight: bold;
  letter-spacing: 3px;
  color: #006600;
}

.body h2 {
  text-align: center;
  font-weight: bold;
  color: #006600;
}

.body h3{
  font-weight: bold;
}

h2::before {
  display: block;
  content: " ";
  margin-top: -55px;
  height: 55px;
  visibility: hidden;
  pointer-events: none;
}

h3::before {
  display: block;
  content: " ";
  margin-top: -55px;
  height: 55px;
  visibility: hidden;
  pointer-events: none;
}

.body p {
  text-align: justify;
}

ul.nodot {
  list-style: none;
}

a.body, a.body_ctr {
  padding: 0px;
}

a.body_ctr {
  display: block;
  text-align: center;
}

a.body:link, a.body_ctr:link {
  text-decoration: underline;
  color: #006600;
}

a.body:hover, a.body_ctr:hover {
  text-decoration:underline;
  font-weight: bold;
}

a.body:visited, a.body_ctr:visited {
  text-decoration: none;
  color: #333333;
}

.body small {
  max-width: 600px;
}

#origpub {
  font-size: 0.8em;
  text-align: center;
}

#blogdisclaim {
  font-style: italic;
  font-size: 0.6em;
  text-align: center;
  padding: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.body img.horz {
  display: block;
  margin:auto;
  max-width: 100%;
  border: 1px solid black;
}

.body img.horz_sm {
  display: block;
  margin: auto;
  max-width: 70%;
  border: 1px solid black;
}

.body img.vert {
  display: block;
  max-width: 60%;
  border: 1px solid black;
  margin: auto;
}

.body img.vert_sm {
  display: block;
  max-width: 40%;
  border: 1px solid black;
  margin: auto;
}

.body img.pano{
  display: block;
  max-width: 100%;
  border: 1px solid black;
  margin: auto;
}

.listcont {
  padding: 0px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  border: 1px solid #666666;
}

#listheaders {
  list-style-type: none;
  display: block;
  padding: 0px 10px;
  height: 40px;
  background-color: lightgrey;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: 1px solid #666666;
}

.li {
  list-style-type: none;
}

.post {
  list-style-type: none;
  display: block;
  padding: 0px 10px;
  height: 40px;
  background-color: #e6e6e6;
  box-sizing: border-box;
  border-top: 1px solid grey;
  position: relative;
  font-family: 'Courier';
}

.post:link {
  color: inherit;
}

.post:visited {
  color: #666666;
  font-family: 'sansationregular';
}

.post:hover {
  background-color: #006600;
  color: white;
  font-family: 'sansationregular';
}

.post:active {
  color: black;
}

.titletop, .datetop {
  padding: 10px 0px;
  /* height: 20px; */
}

.titletop {
  float: left;
}

.datetop {
  float: right;
}

.title, .date {
  padding: 10px 0px;
}

.title {
  float: left;
  position: absolute;
  max-width: 79.99%;
}

.date {
  float: right;
  position: absolute;
  right: 10px;
  max-width:19.99%
}

.post a {
  text-decoration: none;
  color: black;
}

.pic_descr {
  font-size: 0.9em;
  text-align: center !important;
}

.quickhit {
  padding-right: 40px;
  padding-left: 40px;
  font-size: 0.9em;
}

.quote {
  padding-left: 40px;
  padding-right: 30px;
  font-style: italic;
}



.code {
  font-family: monospace;
}

strong {
  color: #006600;
}

li {
  text-align: justify;
}

::selection {

}

/* --------------------- Tables (Professional) ---------------------- */

table, tr, th {
  /*border: 1px solid black;*/
}

table {
  width: 100%;
}

/* --------------------- Tables (Bikes) ---------------------- */

/* .bikeinfobox {
  display: flex;
  font-size: 18px;
  margin: -20px 0px;
  width: 50%;
} */

#bikeinfobox {
  display: flex;
  font-size: 18px;
  margin: auto;
  width: 50%;
}

#bikeinfobox td:nth-child(odd) {
  padding-right: 7px;
  text-align: right;
  font-weight: bold;
  color: #006600;
  width: 100px;
}

#bikeinfobox td:nth-child(even) {
  text-align: left;
  padding-left: 7px;
}
/*
.box_left, .box_right {
  list-style-type: none;
  margin: 0px;
  width: 50%;
}

.box_left {
  margin-right: 7px;
  text-align: right;
  font-weight: bold;
  color: #006600;
}
.box_right {
  text-align: left;
  margin-left: 7px;
}

.box_left ul, .box_right ul {
  list-style-type: none;
  padding: 0;
}

.box_left li {
  text-align: right;
} */


/* --------------------- Page Section Link Collapsible ---------------------- */

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #b3b3b3;
  font-family: sansation;
  color: #444;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
}

.collapsible:after{
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 10px;
  color: white;
  float: right;
  margin-left: 5px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover{
  background-color: #999999;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  margin: 5px 0;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
  font-size: 14px;
}

a.list:link {
  text-decoration: none;
  color: #006600;
}

a.list:hover {
  text-decoration:underline;
  font-weight: bold;
}

a.list:visited {
  text-decoration: none;
  color: #333333;
}

.NoBullets {
  list-style-type: none;
}

/* --------------------- Collapsible Body Section ---------------------- */

/* Style the button that is used to open and close the collapsible content */
.collapsible_body {
  background-color: #dbdbdb;
  font-family: sansation;
  color: black;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1em;
}

.collapsible_body:after{
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 12px;
  color: white;
  float: right;
  margin-left: 5px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible_body:hover{
  background-color: #999999;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Style the collapsible content. Note: hidden by default */
.content_body {
  padding: 0 18px;
  margin: 5px 0;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
  font-size: 1em;
}

.lowertable {
  text-align:center;
  margin: auto;
  min-width: 15%;
  max-width: 250px;
}

td.yeschoice {
  width:50%;
  color:#ce0f3d;
  background-color:#f7cad5;
}
td.yes {
  width:50%;
  color:#ce0f3d;
  background-color:none;
}
td.nochoice {
  width:50%;
  color:#006600;
  background-color:#b7f5b7;
}
td.no {
  width:50%;
  color:#006600;
  background-color:none;
}

/* ------------------------- Picture Gallery Links -------------------------- */
div.gallery {
  border: 1px solid #333333;
  opacity: 80%;
  margin-bottom: 10px;
}

div.gallery:hover {
  border: 1px solid black;
  opacity: 100%;
}

div.gallery img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #333333;
}

div.gallery img:hover {
  border-bottom: 1px solid black;
}

div.gallery .desc {
  padding: 15px;
  text-align: center;
  font-size: 2em;
}

.responsive {
  padding: 0px 6px;
  float: left;
  width: 49.99999%;
  box-sizing: border-box;
}

.responsive_ctr {
  padding: 0px 6px;
  margin-left: auto;
  margin-right: auto;
  width: 49.99999%;
  box-sizing: border-box;
}

.responsive_ctr_bike {
  padding: 0px 6px;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  box-sizing: border-box;
}

@media only screen and (max-width:500px) {
  .responsive, .responsive_ctr, .responsive_ctr_bike {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
  margin-bottom: 20px;
}

/* -------------------------------Bottom Menu-------------------------------- */
footer {
  /* Set background to match header and footer */
  background-color: #333333;
  /* Set top and bottom padding */
  padding: 5px 0px;
  /* Set margin to 0 */
  margin: 0px;
  /* no border */
  border: none;
  /* Ensure footer spreads the width of the screen */
  width: 100%;
}

.disclaimer {
  /* Set background to match header and footer */
  background-color: #333333;
  /* Set top and bottom padding */
  padding: 3px 0px;
  /* Align text in the center of the content box */
  text-align: center;
  /* Set text to white */
  color: white;
  /* Set Margin for a little breathing room */
  margin: 0px;
  /* no border */
  border: none;
  /* set display to make sure it's its own line */
  display: block;
}
