  .list-container {
    background:#666;
    background:rgba(51, 51, 51, .64);
    bottom: 0;
    color: #FFF;
    font-family: 'Open Sans', Arial, sans-serif;
    min-height:410px;
    left:0;
    margin-top:-250px;
    min-width: 180px;
    padding:15px 20px;
    position:absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 99999; /* IE10 needs this to be ridiculously high */
  }

  .list-container.hidden {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .list-container h4 {
    border-bottom: 1px solid #999999;
    font-size: 18px;
    font-weight: 700;
    padding: 0 10px 15px;
  }

  #tourlist {
    max-height: 90vh;
    overflow-y: auto;
    padding-top: 10px;
  }

  .list-container li {
    list-style: none;
  }

  .list-container li a {
    color: #FFF;
    display: list-item;
    font-size: 14px;
    overflow: hidden;
    padding: 3px 5px 3px 0;
    -webkit-transition: all 0.1s ease;
    transition: all 0.2s ease;
    text-decoration: none;
    text-overflow: ellipsis;
    max-width: 350px;
    white-space: nowrap;
  }

  .list-container li a {
    color: #FFF;
  }

  .list-container li a.active::before {
    background: #FFF;
    content: " ";
    display: block;
    height: 5px;
    left: 8px;
    margin-top: 8px;
    position: absolute;
    width: 5px;
  }

  .list-container li a:hover {
    padding: 3px 0 3px 5px;
  }

  #toggleSlideout {
    background: #0094b3;
    background: rgba(0, 148, 179, .9);
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #FFF;
    display: block;
    height: 30px;
    left: 100%;
    line-height: 30px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: 50%;
    -webkit-transition: all 0.1s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateX(-35px) translateY(-50%) rotate(-90deg);
    transform: translateX(-35px) translateY(-50%) rotate(-90deg);
    width: 100px;
  }

  #toggleSlideout::after {
    content: "hide";
  }

  #toggleSlideout:hover {
    background: rgba(0, 148, 179, 1);
  }

  .hidden #toggleSlideout::after {
    content: "show";
  }
  .start-position {
    background:#f1f1f1;
    -webkit-box-shadow: 5px 0px 5px 0px rgba(50, 50, 50, 0.25);
    -moz-box-shadow:5px 0px 5px 0px rgba(50, 50, 50, 0.25);
    box-shadow:5px 0px 5px 0px rgba(50, 50, 50, 0.25);
    margin-left:-250px;
    padding: 12px 20px;
    position:absolute;
    top:0;
    left:50%;
    width:500px;
    z-index:99;
  }

  .start-position:after {
    content: attr(data-content);
    cursor: default;
    color: #c5c4c2;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    position: absolute;
    right: 10px;
    top: 4px;
  }