﻿* {
	box-sizing: border-box;
}
body {
	font-family: Verdana, sans-serif;
	margin: 0;
	background-color: #F9F8F4;
}
.mySlides {
	display: none;
}
img {
	vertical-align: middle;
}
/* Slideshow container */
.slideshow-container {
	max-width: 280px;
	position: relative;
	margin: auto;
	min-height: 375px;
}
/* Next & Previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 8px 5px 8px 5px;
	margin-top: -30px;
	color: #000000;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
	transition: 0.6s ease;
	user-select: none;
}
/* Position the "previous button" to the left */
.prev {
	left: -23px;
	border: 1px solid #C8B192;
	border-radius: 5px 5px 5px 5px;
	
}

/* Position the "next button" to the right */
.next {
	right: -24px;
	border: 1px solid #C8B192;
	border-radius: 5px 5px 5px 5px;
	
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(255,248,220,1);
}
/* 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 
{
.prev, .next, .text {
	font-size: 11px;
}
}*/
