h1 {
    padding: 5px;
    margin: 5px;
	font-size: 70px;
}
h2, .link {
    padding: 0px;
    margin: 0px;
	text-align: center;
	font-size: 60px;
}
h3 {
    padding: 0px;
    margin: 0px;
	text-align: center;
	font-size: 20px;
}
h4 {
    padding: 0px;
    margin: 0px;
	text-align: center;
	font-family:arial;
	font-size:20px;
}
p {
	text-align: center;
}
img {
	align: center;
	height: 350px;
	margin: 10px;
}
video {
	height: 350px;
}
* {
	box-sizing:border-box
} /* Slideshow container */
.slideshow-container {
	max-width: 50%;
	max-height: 350px;
	height: 350px;
	position: relative;
	margin: auto;
}
.slide-image {
	max-width:100%;
	max-height:350px;
	margin-top: 0;
	margin-bottom: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
} /* Hide the images by default */
.mySlides {
	display: none;
}
.mySlides2 {
	display: none;
} /* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: rgb(200,200,200,0.8);
	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(100,100,100,0.3);
} /* 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: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #ddd;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.active, .dot:hover {
	background-color: #aaa;
} /* 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}
}