header {
	display: grid;
	place-content: center;
	place-items: center;
	height: 300px;
	background-image: url(../images/cor_header.webp);
	background-size: cover;
	background-position: calc(50% + 45px) top;
}
main {
	background: radial-gradient(white, aliceblue 64%, dodgerblue);
	background: url(../common/images/a_nice_Sion.webp) repeat center center fixed;
	background-size: auto;
	background-position: center;
}
.slides {
	width: 100%;
	position: relative;
	text-align: center;
	height: 225px;
	margin: 0 auto;
	display: table;
}
.slides div {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	box-sizing: border-box;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.2;
	word-spacing: 3px;
	font-size: 24px;
	font-weight: 777;
	color: gold;
	-webkit-text-stroke: 0.3px black;
	text-shadow: 1px 1px 2px black;
	filter: drop-shadow(1px 1px 2px black);
}
.slides div:nth-child(1) { animation: fade 80s infinite 0s; }
.slides div:nth-child(2) { animation: fade 80s infinite 10s; }
.slides div:nth-child(3) { animation: fade 80s infinite 20s; }
.slides div:nth-child(4) { animation: fade 80s infinite 30s; }
.slides div:nth-child(5) { animation: fade 80s infinite 40s; }
.slides div:nth-child(6) { animation: fade 80s infinite 50s; }
.slides div:nth-child(7) { animation: fade 80s infinite 60s; }
.slides div:nth-child(8) { animation: fade 80s infinite 70s; }
@keyframes fade {
	0%, 11.25%, 100% { opacity: 0; }
	12.5%, 22.5% { opacity: 1; }
	23.5%, 100% { opacity: 0; }
}
.comment {
	display: inline-block;
	margin: 24px auto;
	color: #fff;
	padding: 4px;
	text-align: center;
	font-weight: 777;
	border-radius: 7px;
	background: #700;
	text-shadow: 0 0 2px black;
	-webkit-text-stroke: 0.3px black;
	background: #700 !important;
}
.subsite {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: darkred;
	padding: 8px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: white;
	font-weight: bold;
	border-bottom: 2px solid rgba(0, 0, 0, 0.7);
	text-shadow: 1px 1px 2px black;
}
a.map_link {
	padding: 7px;
	white-space: nowrap;
}
.stripe {
	padding: 2px;
	margin: 0;
	background: darkred;
	color: white;
	font-weight: bold;
	text-shadow: 1px 1px 2px black;
}