  .header {
    padding: 20px;
    text-align: center;
    background: #000000;
    color: white;
    font-size: 15px;
    width: 100%;
  }

  .body {
    position: relative;
    min-height: 100vh;
    padding-bottom: 5%;
  }

  .footer {
    position:fixed;
    bottom: 0;
    display: block;
    padding: 10px;
    text-align: left;
    background: #000000;
    color: white;
    font-size: 10px;
    width: 100%;
    height: 5%;
    padding: 20px;
  }


  
  .Show{visibility:visible}
  .Hide{visibility:hidden}
    table {
        border-collapse: collapse;
        border: 0px solid black;
    } 
    .style1
    {
        text-decoration: underline;
    }
    .style5
    {
        text-decoration: underline;
        height: 16px;
        width: 367px;
    }
    .style7
    {
        width: 159px;
    }
    .style8
    {
        text-decoration: underline;
        height: 20px;
        width: 367px;
    }
    .style9
    {
        width: 159px;
        height: 20px;
    }
    .style10
    {
        width: 159px;
        height: 16px;
    }
    .style11
    {
        height: 16px;
        width: 367px;
    }
    .style12
    {
        width: 367px;
    }
    .style13
    {
        color: #FF0000;
    }
    .style14
    {
        width: 72px;
        height: 20px;
    }
    .style15
    {
        width: 72px;
    }
    .style16
    {
        width: 72px;
        height: 16px;
    }
    .style19
    {
        width: 72px;
        height: 24px;
  font-family: "Lucida Console", Monaco, monospace;
    }
    .style20
    {
      text-align: right;
    }
    table.style20
    {
  table-layout: auto;
  width: auto;   
    }


/* pre code block */
pre code {
  display: block;
  background: none;
  white-space: pre;
  max-width: 100%;
  min-width: 100px;
  padding: 0;
}
code {
  font-family: Consolas,"courier new";
  color: crimson;
  background-color: #f1f1f1;
  padding: 2px;
  font-size: 105%;
}

 /* deze items worden gebruikt voor de collaps items */
   /* CSS for the main interaction*/
.accordion > input[type="checkbox"] {
  position: absolute;
  left: -150vw;
}

.accordion .content {
  overflow-y: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  height: auto;
  overflow: visible;
}

.accordion label {
  display: block;
}

/*
 Styling
*/
body {
  font: 16px/1.5em "Overpass", "Open Sans", Helvetica, sans-serif;
  color: #212121;
  font-weight: 300;
}

.accordion {
  margin-bottom: 1%;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  padding: 15px;
  border: 1px solid #e8e8e8;
  border-top: 0;
}

.accordion .handle {
  margin: 0;
  font-size: 1.125em;
  line-height: 1.2em;
}

.accordion label {
  color: #262626;
  cursor: pointer;
  font-weight: normal;
  padding: 1em;
  background: #e8e8e8;
}

.accordion label:hover,
.accordion label:focus {
  background: #020202;
  color: white;
}

.accordion .handle label:before {
  font-family: 'fontawesome';
  content:url("/images/question.gif");
  display: inline-block;
  margin-right: 10px;
  font-size: .58em;
  line-height: 1.556em;
  vertical-align: middle;
}

.accordion > input[type="checkbox"]:checked ~ .handle label:before {
  content:url("/images/question.gif");
}