* {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
}

html, body {
	height: 100%;
}

body {
	overflow: hidden;
	background: #101010 url('../img/background.png') no-repeat fixed center;
	font: 70%/1.6em "Lucida Grande", "Lucida Sans Unicode", verdana, geneva, sans-serif;
	color: #808080;
}

#wrapper {
	position: relative;
	width: 920px;
	height: 510px;
	margin: 48px 0 0 0;
}

#menu {
	position: absolute;
	width: 250px;
	height: 510px;
	top: 0;
	left: 0;
	text-align: left;
}

#menu-wrapper {
	position: absolute;
	width: 210px;
	top: 0;
	left: 0;
	margin: 40px 0 0 40px;
}

#menu-wrapper p {
	margin: 0 0 10px 0;
}

#content {
	position: absolute;
	width: 670px;
	height: 510px;
	top: 0;
	left: 250px;
	text-align: left;
}

#content-wrapper {
	position: absolute;
	width: 570px;
	top: 0;
	left: 0;
	margin: 50px;
}

#content-wrapper p {
	margin: 0 0 10px 0;
}

#content-scroll-fix {
	position: absolute;
	width: 520px;
	margin: 0 50px 0 0;
}

#content-scroll {
	position: absolute;
	width: 570px;
	height: 360px;
	overflow-y: auto;
}

#ctr {
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	height: 25px;
}

#cbr {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 25px;
	height: 25px;
}

.textinput, .textinputmulti {
	background: #ffffff url('../img/input-background.png') no-repeat top left;
	width: 300px;
	border: 1px solid #333333;
	padding: 6px;
	margin: 5px 0 10px 0;
	font: 100%/1.6em "Lucida Grande", "Lucida Sans Unicode", verdana, geneva, sans-serif;
	color: #555555;
}

.textinputmulti {
	width: 96%;
	height: 100px;
}

.heading {
	color: #ffffff;
	text-transform: uppercase;
}

a:link		{ color: #808080; text-decoration: none;		}
a:visited	{ color: #808080; text-decoration: none;		}
a:active	{ color: #808080; text-decoration: none;		}
a:hover		{ color: #808080; text-decoration: underline;	}

/* toegevoegd voor slideshow */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  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);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}