/* 
    Created on : 30-Jun-2017, 17:34:29
    Author     : albert jacobs
*/

body {
    background-color: #ACAFB3;
    color: #000000;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 11px;
    margin: 0;
}

* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: block;
}
[class*="col-"] {
    float: left;
    padding: 15px;
}

.header {
    width: 90%;
    /*min-width: 600px;*/
    height: 147px;
    background-color: white;
    margin: 0 auto;
}

.headerText {
    float: right;
    padding: 10px;
}

.headerText a {
    text-decoration: none;
    margin: 10px 1px;
    padding: 3px 10px;
    color:#009900;
    font-size:12px;
}

.headerText a:not(:last-child) {
    border-right: 1px solid #ACAFB3;
}

.header img {
    padding: 20px 0 0 20px;
}

.bodyContainer {
    width: 90%;
    /* height: 90%; */
    margin: 0 auto;
    background-color: white;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: white;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #00458A;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: lightgrey;
    /* border-bottom: 2px solid #009900; */
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .headerText a {display: none;}
  .headerText img {display: none;}
  .header, .topnav, .bodyContainer {width:100%};
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.aside {
    background-color: gray;
    padding: 15px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-radius:10px;
}

.footer {
    background-color: #009900;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    padding: 15px;
}

/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 600px) {
    /* For mobile phones: */
    [class*="col-"] {
        width: 100%;
    }
}

h1 {
    color: #00458A;
}

.footer a {
    color: white;
    text-decoration: none;
}

