.newsfooter {
	position: absolute;
	top: 50vh;
	width: 100%;
	overflow: hidden;
}

.paperhold {
	width: 75%;
	opacity: 0.5;
	transform: scale(0.5,0.5);
	transform-origin: 50% 20%;
	animation-name: pageshowup;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out;
}

@keyframes pageshowup {
	from {
		opacity: 0.5;
		transform: scale(0.8,0.8);
	}
	to {
		opacity: 1;
		transform: scale(1,1);
	}
}

.npaper {
	min-height: 70vh;
	max-width: 100%;
	margin: 0% 5% 5% 5%;
	box-shadow: 0px 5px 10px 0 rgba(0,0,0,0.25), 0px 20px 30px 0 rgba(0, 0, 0, 0.24);
	padding: 0% 5% 5% 5%;
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

.flike {
	padding: 20px 0px 0px 20px;
}

.npaper > div {
	color: #000;
	margin-bottom: 2%;
}

.nheadline {
	flex: 0 0 auto;
	width: 75%;
	display: flex;
	justify-content: flex-start;
	box-shadow: 0px 8px 8px -6px #4682B4;
}

.nheadline > div {
	font-size: 18px;
	color: 	#800000;
	padding: 5px 50px;
}

.dt em {
	float: right;
	font-size: 14px;
}

.ntxt {
	flex: 1 1 auto;
}

.subtitle {
	width: 55%;
	margin-top: 70px;
	margin-bottom: 30px;
	font-size:16px;
	color:#483D8B;
	padding: 5px 20px;
	box-shadow: 0px 8px 8px -6px #4682B4;
}

.gridobject {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 0px;
}

.gridcol {
	flex: 25%;
	max-width: 25%;
	padding: 0 20px;
}

.gridcol img {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	margin-top: 40px;
	vertical-align: middle;
	width: 100%;
	cursor: pointer;
	transition: 0.3s;
}

.gridcol img:hover {
	box-shadow: 0 0 1px rgba(0,0,0,0.2);
}

.imgallery {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0px;
}

.imcol {
	flex: 25%;
	max-width: 25%;
	padding: 0 5px;
}

.imcol img {
	margin-top: 10px;
	vertical-align: middle;
	width: 100%;
	cursor: pointer;
	transition: 0.2s;
}

.imcol img:hover {
	opacity: 0.6;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.9);
}

.closemodal {
	position: absolute;
	top: 3%;
	right: 3%;
	color: #eee;
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
	z-index: 1;
	font-size: 50px;
	font-weight: bold;
	transition: 0.5s;
}

.closemodal:hover {
	color: #aaa;
	cursor: pointer
}

.modalinside {
	width: 50%;
	text-align: center;
	animation-name: zoom;
	animation-duration: 1s;
	position: relative;
}

.modalinside img {
	max-width: 100%;
	max-height: 100vh;
}

.previous, .next {
	position: absolute;
	top: 40%;
	padding: 20px;
	color: #eee;
	font-weight: bold;
	font-size: 50px;
	cursor: pointer;
	user-select: none;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
	transition: 0.5s;
}

.previous {
	left: 0;
}

.next {
	right: 0;
}

.previous:hover, .next:hover {
	color: #aaa;
}

@keyframes zoom {
	from {transform: scale(0)}
	to {transform: scale(1)}
}

@media screen and (max-width: 992px) {
	.paperhold {
		width: 80%;
	}
	
	.nheadline {
		width: 80%;
	}
	
	.subtitle {
		width: 70%;
	}
	
	.gridcol {
		flex: 50%;
		max-width: 50%;
	}
	
	.imcol {
		flex: 50%;
		max-width: 50%;
	}
	
	.previous, .next {
		font-size: 30px;
		margin-top: -10px;
	}
}

@media screen and (max-width: 600px) {
	.paperhold {
		width: 100%;
	}
	
	.nheadline > div {
		padding: 5px 10px;
	}
	
	.gridcol {
		flex: 100%;
		max-width: 100%;
	}
	
	.imcol {
		flex: 100%;
		max-width: 100%;
	}
	
	.modalinside {
		width: 65%;
	}
	
	.closemodal {
		font-size: 40px;
	}
	
	.previous, .next {
		font-size: 20px;
		margin-top: -15px;
	}
}


@media screen and (max-width: 600px) and (orientation: portrait) {
	.header {
		height: 100vw;
	}
	
	@keyframes pagedown {
		from {
			top: 20vh;
		}
		to {
			top: 40vh;
		}
	}
	
	.modalinside {
		width: 100%;
	}
}
