
#content {
  height: 100%;
  width: 100%;
  margin: 10px;
}

/* Always set the map height explicitly to define the size of the div
* element that contains the map. */

#map {
  height: 90%;
  width: 65%;
  display: inline-block;
  vertical-align: top;
}

div.textside {
  width: 34%;
  display: inline-block;
  overflow: scroll;
  height: 90%;
}

/* Optional: Makes the sample page fill the window. */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}


div.textside a {
  background-color: #cccccc;
}

div#main {
  width: 100%;
}


/* Style the tab */

nav.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

div.tab {
  float: left;
  padding: 7px 8px;
}


/* Style the buttons inside the tab */

div.tab.button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}


/* Change background color of buttons on hover */

div.button:hover {
  background-color: #ddd;
}


/* Create an active/current tablink class */

div.button.active {
  background-color: #ccc;
}

input.checkboxes {
  float: left;
}

button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color: #ccc;
}

div.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
}

button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
