/*CSS for the jQuery lightbox plugin by Jasper for KC*/

.lightboxwrapper {
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	min-width:960px;
}

.lightboxwrapper .bg {
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background:#fff;
	opacity:0.7;
}

.lightboxwrapper .containerwrapper {
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	padding:30px;
	box-sizing:border-box;
}

.lightboxwrapper .container {
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	border:1px solid #aaa;
	background:#fff;
	padding:0;
	margin:0;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.lightboxwrapper .titlebar {
	font-weight:bold;
	text-shadow:1px 1px 1px #eee;
	padding:0 10px;
	height:40px;
	line-height:40px;
	background: #e5e5e5; /* Old browsers */
	background: -moz-linear-gradient(top,  #e5e5e5 0%, #c4c4c4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #e5e5e5 0%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #e5e5e5 0%,#c4c4c4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #e5e5e5 0%,#c4c4c4 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #e5e5e5 0%,#c4c4c4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#c4c4c4',GradientType=0 ); /* IE6-9 */
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.lightboxwrapper .kruisje {
	float:right;
	height:16px;
	width:16px;
	background-image:url(images/kruisjelightbox.png);
	background-repeat:no-repeat;
	margin:12px 2px;
	cursor:pointer;
}

.lightboxwrapper .contentwrapper {
	width:100%;
	height:100%;
	padding-bottom:40px;
	box-sizing:border-box;
}

.lightboxwrapper .content {
	background:#fff;
	padding:10px;
	box-sizing:border-box;
	width:100%;
	height:100%;
	overflow-x:hidden;
	overflow-y:auto;
}