body > div {
   max-width: 1024px;
   margin: 0 auto; 
   position: relative;
}

svg {
    display: block;
-webkit-touch-callout: none;
-webkit-user-select: none;
 -khtml-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
          cursor: default;
}

.slider {
    background: #00000022;
    position: absolute;
    font: 48px 'TheSansLT';    
    top: 50%;
    color: #444;
    opacity: .5;
    transform: translateY(-50%); 
    transition: all 0.2s ease-out;
    cursor: pointer;
    padding: 24px 10px 24px 10px;

}
.slider:hover {
    opacity: 1; 
    color:  #007f9a;  
}

.slider.left {
    left: 0px;
}

.slider.right {
    right: 0px;
}
.slider.left:before {content: '‹'; }
.slider.right:before {content: '›';}

@media only screen and (max-width: 900px) {
    .slider {
      font-size: 40px;
      padding: 18px 5px 18px 5px;   
    }
}

@media only screen and (max-width: 600px) {
    .slider {
      font-size: 32px;        
      padding: 14px 2px 14px 2px;   
    }
}

.menubar {
  position: relative;
  width: 100%;
  padding: 0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
}

.menubar > button {
  color: #000;
  background-color: #f1f1f1;
  cursor: pointer;
  outline: none;
  transition: color .125s, background .125s;
  padding: 10px 20px;
  border: none;
  font-family: TheSansLT;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  flex: 1 1;
}

.menubar > button:hover {
  background: rgb(215.5,215.5,215.5);
}

.menubar > button.selected {
  background: rgb(0,139.23,175.5);
  color: #f1f1f1;
}

.infobar {
  font-family: TheSansLT;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #333;
  background: #f1f1f1;
  padding: 10px;
}

.infobar a {
  color: #034694;
  cursor: pointer;
  text-decoration: none;
}

.infobar a:hover {
  color: #045ec6;
  text-decoration: underline;
}

@media only screen and (max-width: 600px) {
  .menubar {
    font-size: 14px;
    line-height: 20px;
  }
  .infobar {
    font-size: 12px;
    line-height: 16px;
  }
}

@media only screen and (max-width: 420px) {
  .menubar {
    font-size: 12px;
    line-height: 16px;
  }
  .infobar {
    font-size: 10px;
    line-height: 14px;
  }
}

/*ie 8-11*/
@media screen\0 {
    svg {
        padding-bottom: 56.25%;
        height: 1px;
        margin: 0px;
        overflow: hidden;
    }