/* Navbar */
.navbar, #navbar {
  position: fixed;
  overflow: hidden;
  background-color: #555;
  top: 0;
  width: 100%;
}
.navbar a, #navbar a {
  float: left;
  display: block;
  width: 20%;
  text-align: center;
  padding: 12px 0;
  transition: all 0.3s ease;
  color: white;
  font-size: 30px;
  text-decoration: none;
}
.navbar a:hover, #navbar a:hover {
  background-color: #000;
}
.active, #navbar a.active {
  background-color: #fbd208;
}

/* Containers (html / body / main / content / container) */
html {
  height: 100%;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  height: 92%;
  margin:0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('background.png');
  background-attachment: fixed;
}
.main {
  width: 100%;
  height: 100%;
  padding: 16px;
}
.content {
  width: 100%;
  height: 100%;
  padding: 16px;
}
.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 92%;
}

/* Tables */
table {
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}
th {
  cursor: pointer;
}
th, td {
  text-align: left;
  padding: 16px;
}
tr:nth-child(even) {
  background-color: #f2f2f2
}

/* Link Handling */
a:link, a:visited {
  text-decoration: none;
  color: blue;
  font-size: 150%;
}
a:hover a:active {
  text-decoration: underline;
}

/* Transparent Box */
.transbox {
  margin: 30px;
  background-color: #fff;
  border: 1px solid black;
  opacity: 0.95;
}
.transbox p {
  font-weight: bold;
  color: #000;
}
.infobox {
  margin: 30px;
  background-color: #fff;
  border: 1px solid black;
  opacity: 0.95;
  width: 95%;
  padding: 0 16px 16px;
}
.infobox p {
  font-weight: bold;
  color: #000;
}

/* Expand/Collapse Boxes */
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 98%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}
.collapsible:hover {
  background-color: #555;
}
.collapsible-content {
  padding: 2px 18px 18px;
  width: 100%;
  display: none;
  overflow: hidden;
  background-color: #fff;
  /*opacity: 0.95;*/
}