* {
  box-sizing: border-box;
}

/* Add a gray background color with some padding */
body {
  background: #cbcec5;
  #background-image: url('images/gradient07.jpg');
  font-family: Arial;
  margin: 0;
  padding: 0px;
}

/* Add a card effect for articles */
.card {
   background-color: white;
   padding: 2%;
   margin-top: 2%;
}
.card_Grey {
   background-color: #f1f1f1;
   padding: 2%;
   margin-top: 2%;
}

/* Fake image */
.fakeimg {
  background-color: #C70039;
  width: 100%;
  padding: 2%;
}

/* Header/Blog Title */
.header {
  margin-top:60px;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 90%;
}

.left-small {
	float: left;
	width: 25%;
	padding: 1%;
}

.left-middle {
	float: left;
	width: 45%;
	padding: 1%;
}

/* Right column */
.rightcolumn {
  float: right;
  width: 25%;
  padding-left: 2%;
}

.right-middle {
	float: right;
	width: 45%;
	padding: 1%;
}

.right-big {
	float: right;
	width: 75%;
	padding:1%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  text-align: left;
  background: #3d121c;/*#4d0011;*/
  color: white;
  /*margin-top: 0px;
  margin-left: 0px;*/
  padding: 3%;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
  .left-small, .right-big {   
    width: 100%;
    padding: 0;
  }
  .left-middle, .right-middle {   
    width: 100%;
    padding: 0;
  }
  .header {
	  margin-top:200px;
  }
  /* Slideshow container */
  .slideshow-container {
    max-width: 100%;
    position: relative;
    margin-top: 400px;
  }
}


#footer {
	position:absolute;
	bottom:0;
	width:100%;
	height:4.8%;			/* Height of the footer */
	padding: 0px 0px;
}
/*

#navbar {
  overflow: hidden;
  background-color: white;/*#f1f1f1;*/
/*  padding: 4% 1%;
  transition: 0.4s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

#navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 2%;
  text-decoration: none;
  font-size: 20px; 
  line-height: 24px;
  border-radius: 4px;
}

#navbar #logo {
  font-size: 200%;
  font-weight: bold;
  transition: 0.4s;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#navbar a.active {
  background-color: #900C3F;
  color: white;
}

#navbar-right {
  float: right;
}

@media screen and (max-width: 580px) {
  #navbar {
    padding: 1.5% 1% !important;
  }
  #navbar a {
    float: none;
    display: block;
    text-align: left;
  }
  #navbar-right {
    float: none;
	width:100%;
  }
}
*/



#navbar {
  overflow: hidden;
  background-color: white;/*#f1f1f1;*/
  padding: 50px 10px;
  transition: 0.4s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

#navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 110%/*1.0vw/*110%; */;
  line-height: 1.8vw/*25px*/;
  border-radius: 4px;
}

#navbar #logo {
  font-size: 35px;
  font-weight: bold;
  transition: 0.4s;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#navbar a.active {
  background-color: #900C3F;
  color: white;
}

#navbar-right {
  float: right;
}

@media screen and (max-width: 580px) {
  #navbar {
    padding: 20px 10px !important;
  }
  #navbar a {
    float: none;
    display: block;
    text-align: right;
	padding: 5px;
	font-size: 80%/*1.0vw/*110%; */;
	line-height: 1.8vw/*25px*/;
  }
  #navbar-right {
    float: none;
  }
  #navbar #logo {
    font-size: 23px;
    font-weight: bold;
  }
  .header {
	  margin-top:250px;
  }
}






/* Style the tab content */
.tabcontent {
/*  background-color: white;*/
  border-left: none;
  float: left;
  font-size: 60%;
  margin-left: 10%;
  margin-top: 2%;
  padding: 1% 1%;
  width: 100%;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #eddddf;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 0.5%;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
  max-width: 50%;
  padding: 0 1.5%;
}

.column img {
  margin-top: 0.8%;
  vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}




* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
/*.text {
  color: #444444;
  font-size: 25px;
  padding: 8px 22px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}'/

/* Number text (1/3 etc) */
/*.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}*/

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 1.2%;
  width: 1.2%;
  margin: 0 0.2%;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
