
	/* [21] */


	* {
		box-sizing: border-box;
	}
	.slideContainer {
		max-width: 800px;
		position: relative;
		margin-left: auto;
		margin-right: auto;
	}

	.Slide {
		display: none;
	}
	.Slide img {
		vertical-align: middle;
		width: 100%;
		height: 600px;
	}

	.prevBtn,
	.nextBtn {
		/*position: relative;*/
		top: 50%;
		width: auto;
		padding: 10px;
		background-color: rgb(255, 255, 255);
		color: rgb(50, 0, 116);
		font-weight: bolder;
		font-size: 18px;
	}
	.nextBtn {
		right: 0px;
	}
	.Caption {
		color: #fbff09;
		font-weight: bold;
		font-family: "BentonSans regular", Arial, Verdana, sans-serif;
		font-size: 25px;
		padding: 8px 12px;
		position: absolute;
		bottom: 8px;
		width: 100%;
		text-align: center;
	}
	.Navdot {
		cursor: pointer;
		height: 15px;
		width: 15px;
		margin: 0 2px;
		background-color: rgb(54, 5, 117);
		border-radius: 50%;
		display: inline-block;
		transition: background-color 0.6s ease;
	}
	.selected,
	.Navdot:hover {
		background-color: #404040;
	}
	@media only screen and (max-width: 450px) {
		.prevBtn,
		.nextBtn,
		.Caption {
			font-size: 16px;
		}
	}
