<style>
* {
  box-sizing: border-box;
}

.news_picture {
  display: block;
  margin-left: 30%;
  margin-right:30%;
  width: 40%;
}

.center_galleri {
  display: block;
  margin-left: 30%;
  margin-right: 5%;
  width: 70%;
}

.fa {
  padding: 10px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 3px;
  width: 100%;
  border:1px solid white;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin: 0px
}

.tmcollapsible {
  background-color: #628756;
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 50%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.tmudcollapsible {
  background-color: #ff6666;
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 50%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}


.delcollapsible {
  background-color: #628756;
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 50%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.listcollapsible {
  background-color: #628756;
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 40%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.tmactive, .tmcollapsible:hover {
  background-color: #628756;
}

.tmudactive, .tmudcollapsible:hover {
  background-color: #628756;
}

.delactive, .delcollapsible:hover {
  background-color: #628756;
}

.listactive, .listcollapsible:hover {
  background-color: #628756;
}

.content {
  padding: 0 5px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.tmcontent {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.tmudcontent {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}


.delcontent {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.listcontent {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

#theImage { visibility: hidden; }

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
header {
  margin-right:auto;
  margin-left:auto;
  /*padding: 10px;*/
  background-color: #3F3E3E;
  /*text-align: center;*/
  font-size: 35px;
  color: white;
  max-width:1000px;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 10%;
  height: 300px; /* only for demonstration, should be removed */
  background: #3F3E3E;
  padding: 20px;
}


/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

article {
  float: none;
  padding: 1px;
  width: 1000px;
  background-color: #f1f1f1;

  text-align: left;
  margin-right:auto;
  margin-left:auto;
}

/* Clear floats after the columns */
section:after {
  content: "";
  display: table;
  clear: both;
  margin:auto
}

/* Style the footer */
footer {
  background-color: #3F3E3E;
  padding: 10px;
  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: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
}

table, th, td {
 <!--	border: 1px solid black;
  border-collapse: collapse; -->
}

.test{
  border: 1px solid gray;
  border-collapse: collapse; 
}

.button {
 background-color: blue; /* Green */
 border: none;
 color: white;
 padding: 15px 32px;
 text-align: center;
 text-decoration: none;
 display: inline-block;
 font-size: 16px;
}

/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}


.navbar {
  /*border-radius: 5px 5px 5px 5px;*/
  overflow: hidden;
  background-color: #000000;

  float: none;
  padding: 1px;
  max-width: 1000px;

  text-align: left;
  margin-right:auto;
  margin-left:auto;
}

.navbar a {
  float: left;
  font-size: 14px;
  color: white;
  text-align: center;
  padding: 4px 6px;
  text-decoration: none;
}

.dropdown {
  float: right;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 14px;
  border: none;
  outline: none;
  color: white;
  padding: 4px 6px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}


</style>
