html, body, .map {
	width: 100%;
	height: 100%;
	background: #808080 url(https://storage.yandexcloud.net/necropolis/images/bg.jpg);
	margin: 0;
	padding: 0;
    }
body {font-family: Verdana, sans-serif;}
p {
	font-size:14.0pt; 
	font-style:italic; 
	font-family:"Calibri", serif; 
	color: black; 
	text-indent: 30px;
	text-align:justify; 
	vertical-align:center;
	margin-block-start: 5px;
    margin-block-end: 5px;
	} 
TD {
	padding: 5px; 
	text-align:left; 
	vertical-align:center; 
	width: 50%; 
	}
* {box-sizing: border-box}

.mySlides {display: none}
img {vertical-align: middle;}
/* Контейнер слайд-шоу */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* Вперед и назад кнопки */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Расположите кнопку "вперед" справа */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* При наведении курсора мыши добавьте черный цвет фона с небольшим прозрачным слоем */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
/* Подпись текста */
.text {
  color: black;
  background-color: rgba(255,255,255,0.7);
  font-size: 15px;
  padding: 4px 4px;
  position: absolute;
  bottom: 4px;
  left: 10%;
  border-radius:5px;
  text-align: center;
}

/* Номер текста (1/3 и т.д.) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Точки/пули/индикаторы */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Исчезающая анимация */
.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}
}

/* На небольших экранах уменьшите размер текста */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}