* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
header {
  background-color: #666;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  color: white;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  /*width: 432px;*/
  width: 24%;
  /* height: 685px;*/
  height: auto;
  background: #ccc;
  padding: 10px;
  overflow-y:auto;
  position:relative;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

article {
  float: left;
  padding: 20px;
  width: 76%;
  background-color: #f1f1f1;
}

section {
background: #ccc;
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: #777;
  padding: 3px;
  text-align: center;
  color: white;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 800px) {
  nav,
  article {
    width: 100%;
    height: auto;
  }
}


label.checkbox-label input[type=checkbox]{
  position: relative;
  vertical-align: middle;
  bottom: 1px;
}

label.part {
  padding-right: 5px;
}

label.radio {
  font-family: Arial;
  font-size: 14px;
}