html{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100%;
}

body{
    width: 750px;
    margin-left: auto;
    margin-right: auto;

}

#ja{
    background-color: RGB(0,158,206);
    margin: 3px;
    padding: 3px;
    display: block;
}

#nein{
    background-color:  #ccc;
    margin: 3px;
    padding: 3px;
    display: inline;

}

header, #content{
    box-sizing: border-box;
    border: 1px solid gray;
    margin: 5%;
    padding: 5px;
    text-align: center;
    box-shadow: 0 5px 1px 0 #ccc;

}


#ags_text{
    font-variant: small-caps;
    font-size: 1.1em;
}

#gbs_logo{
    height: 80px;
}

#ags_logo{
    height: 65px;
}

#mk_logo{
    height: 75px;
}

.logos{
    margin-left: 10px;
    margin-right: 10px;
}

table{
    border-collapse: collapse;
}

th, td{
    border: 1px solid #ddd;
    padding: 8px;}

th{
    font-size:.7em;
}

td{
    font-size: 1em;
}

.table_dark{
    background-color: #f2f2f2;
}

thead{
    background-color: #f2f2f2;

    border-bottom: 1px double black;
}

h4{
    color: RGB(0,0,128);
    font-variant: small-caps;
}

select{
    width: 60px;
    height: 34px;
    font-size: 1em;
    border: 1px solid RGB(0,158,206);
    box-shadow: 0 3px 1px 0 rgba(0,158,206,0.2);
    -moz-box-shadow: 0 3px 1px 0 rgba(0,158,206,0.2);
    -webkit-box-shadow: 0 3px 1px 0 rgba(0,158,206,0.2);

}

.button {
    background-color: rgb(0,158,206); 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
  }

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color:RGB(0,158,206);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px RGB(0,158,206);
    -moz-box-shadow: 0 0 1px RGB(0,158,206);
    -webkit-box-shadow: 0 0 1px RGB(0,158,206);
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }