
	/* 5/1/2020 */
/* Apply to body tag, Disable Text Selectioin with CSS */
/* Prevent text selection of a body element in all major browsers */
body {
	transition: background-color 0.5s;
	margin: 0px;
	overflow-x: hidden;
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Chrome 6.0+, Safari 3.1+, Edge & Opera 15+ */
	-khtml-user-select: none;
	/* no name */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* IE 10+ and Edge */
	user-select: none;
	/* Non-prefixed version, currently supported by Chrome and Opera */ }

/* Holy Icons Gallery, w3c, 5 Dec. -20 */

* {box-sizing: border-box}

body {
	background-color: #400000;
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	margin: 0px; }

.mySlides {
	display: none; }

img	{
	margin: 7px 0px 2px 0px;
	/*	border: 1px solid #ffffff; */ }

/* Slideshow container */
.slideshow-container {
	max-width: 371px;
	height: auto;
	position: relative;
	margin: auto;
	/* border: 1px solid #ff0000; */ }

/* Next & previous buttons */
.prev, .next {
	position: absolute;
	/* top: 50%; */
	width: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #fefefe;
	font-size: 0.94em;
	font-weight: normal;
	font-style: normal;
	padding: 11px 17px 11px 17px;
	margin: 4px 0px 4px 7px;
	cursor: pointer;
	transition: 0.6s ease;
	border-radius: 7px 7px 7px 7px;
	user-select: none; }

/* Position the "next button" to the right */
.next
	{right: 0;
	margin-right: 7px;
	border-radius: 7px 7px 7px 7px; }

/* On hover, add a red background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(153,0,0,0.7); /* #990000; */ }

.prev:active, .next:active {
	background-color: rgba(217,0,0,0.7); /* #d90000 */ }

/* Caption text */
.text
	{width: 100%;
	position: relative;
	color: #fefefe;
	font-size: 0.84em;
	bottom: 0px;
	text-align: center;
	/*	border: 1px solid #000000; */  }

/* Number text (1/101) */
.numbertext {
	position: relative;
	color: #fefefe;
	font-size: 0.8em;;
	padding: 0px 0px 0px 14px;
	margin: 0px;
	/* border: 1px solid #ffffff; */ }

/* The dots, indicators */
.dot	
	{width: 5px;
	height: 5px;		
	background-color: #fefefe;
	display: inline-block;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.6s ease; }

.active, .dot:hover {
	background-color: #990000; }

/* 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 only screen and (max-width: 300px)
{.prev, .next, .text {
	font-size: 11px; } }


