html {
    font-family: 'Open Sans';
    font-style: normal;
}

h1 {
    margin-left: 20px;
    margin-top: 20px;
}

h2 {
    margin-left: 20px;

}

h3 {
    color: rgb(231, 105, 2);
    margin-left: 20px;
    margin-bottom: 0px;
}

h4 {
    color: rgb(231, 105, 2);
    margin-left: 20px;
    margin-bottom: 0px;
}

p {
    margin-left: 20px;
}

ol {
    margin-left: 5px;
}
a {
    color: rgb(255, 252, 252);
}
/* visited link */
a:visited {
    color: rgb(227, 201, 180);
}
/* mouse over link */
a:hover {
    color: rgb(231, 105, 2);
}

a:active { 
    color: rgb(231, 105, 2);
}

  

  
iframe {
    width:100%; 
    height:100%;
    border-left: 0px;
    border-bottom: 0px;
    border-right: 0px;
    border-top: 0px;
    border-right-style: solid;
    border-color: rgb(189, 189, 189);
    overflow-x: hidden;
}

html, body {
    margin:0px;
    height:100%;
    /*background-color: rgb(180, 90, 40); */
    /*background-color: rgb(110, 56, 24); */
    color: rgb(255, 252, 252);
  }
.menu-item {
    margin-top: 12px;
    margin-bottom: 12px;
    margin-right:8px;
    border: 1px;
    border-color: black;
    border-radius: 3px;
}
.image-title {
    color: rgb(231, 105, 2);
    font-size: 12pt;
    margin-top: 6px;
    margin-bottom: 0px;
}
.comment {
    color: rgb(231, 105, 2);
    font-size: 16pt;
    margin-top: 6px;
}
.overlay-comment {
    width:892px;
    color: rgb(255, 255, 255);
    font-size: 14pt;
    font-weight: lighter;
    text-align: center;
}
.exposure-comment {
    width:892px;
    color: rgb(255, 255, 255);
    font-size: 14pt;
    font-weight: lighter;
    font-style: italic;
    text-align: left;
    margin-left: 0px;
}
.titlebar {
    height:75px;

    border-left: 0px;
    border-bottom: 1px;
    border-right: 0px;
    border-top: 0px;
    border-bottom-style: solid;
    border-color: rgb(189, 189, 189);
}

.container {
    display: flex;
    height:100%;
    max-height: 90vh;
    overflow-x: hidden;
}
.overlay-container {
    position:relative;
    margin-left: 20px;
    margin-right: 0px;
}
.overlay-left {
    position:absolute;
    left: 10px;
    z-index: 10;
}
.overlay-right {
    position:absolute;
    right: 10px;
    z-index: 10;
}
.overlay-bottom-left {
    position:absolute;
    width: 892px;
    bottom: 0px;
    z-index: 10;
}
.overlay-bottom-center {
    position:absolute;
    width: 892px;
    bottom: 0px;
    z-index: 10;
}
.img-container {
    display: flex; 
}
.img-container-hscroll {
    display: flex;
    overflow-x: auto;
    margin-top: 5px;
    width:892px;
}
.paragraph{
    max-width: 955px;
}
.details{
    width:70%;
    max-width: 1405px;
    margin-left: 1px;
    float:left; 
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 20px;
    background-color: rgba(40, 20, 10, 0.8);
}
.details-container{
    width:100%;
    height:100%;
    opacity: 1.0;
}
.menu{
    width:20%;
    height:100%;
    float:left; 
    margin-bottom: 20px;
    border-right: 1px;
    border-right-style: solid;
    border-color: rgb(189, 189, 189);
}
.img-container {
    width:892px;
    margin-left: 0px;
    margin-right: 0px;
}
.img-center {
    width:892px;
    margin-left: 20px;
    margin-right: 0px;
}
.img-left {
    width:441px;
    margin-left: 20px;
    margin-right: 5px;
    
}
.img-right {
    width:441px;
    margin-left: 5px;
    margin-right: 0px;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1400px;
  position: relative;
  margin: auto;
  height:95%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}