* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial;
  font-size: 13px;
  background: #c6c6c6;
  margin: 0px;
  padding: 00px;

box-sizing: border-box;
}

.total {
  max-width: 1276px;
  margin: auto;
}

/* Header/Blog Title */
.header {
  padding: 30px;
/*  text-align: center; */
  background: white;
  display: flex;
  align-items: center;
}

.header h2 {
  float: left;
  padding-left: 20px;
  margin: 10px;
}

.header p {
  margin: 5px;
}

.header::after {
  content: "";
  display: table;
  clear: both;
}

.dropbtn {
  background-color: #5fc4e1;
  color: black;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5fc4e1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #005890;
  color: white;
}

/* Style the breadcrumbs bar */
.breadcrumbs {
  overflow: hidden;
  padding: 14px 16px;
  background-color: #d65a07;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: #c6c6c6;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 10px;
  margin-top: 20px;
}

table         {margin: 0px 0px 20px; width:100%;}
td            {padding-right: 2px; padding-left: 10px; padding-bottom: 4px; margin: 0px 20px; vertical-align: top; padding-top: 2px; border-bottom: #f5f2eb 1px solid}
th            {padding: 0 0 0 10px; text-align: left; font-weight: bold; border-bottom: #a7a7a7 1px solid}
th.colored    {padding: 0 0 0 10px; text-align: left; font-weight: bold; border-bottom: #a7a7a7 1px solid; background: #5fc4e1}
tr.odd        {background: #f9f8f3}
tr.even       {background: #f5f2eb}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}


/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #252f62;
  margin-top: 20px;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}


/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #5fc4e1;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 992px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

@media screen and (min-width: 1313px) {
  .leftcolumn {
    width: 957px;
  }
  .rightcolumn {
    width: 319px;
  }
}

/* voor popups. Zie voor gebruik common/functies.inc, functie tekst_met_popup */
.popup { position:relative; list-style:none; cursor:pointer; padding: 0px; margin: 0px}
.popup li a {text-decoration: none; color: #005890;}
.popup li a:hover {text-decoration: none; color: #5fc4e1;}
.popup li div { position:absolute; z-index:10; display: none;
  border-style:solid; border-color:black; border-width:1px;
  left: 70px; top: 15px; background: #c6c6c6; padding: 2px 4px 2px 4px;}
.popup li:hover div {display: block; width: 350px; font-size:11px;}
.popup li div a {color: #2c337b; text-decoration: underline}
.popup li div a:hover {color: #0173c9; text-decoration: underline}