<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div.carousel {
	position: relative;
	display: block;
	width: 100%;
	height: inherit;
	background-position: center center;
	background-repeat: no-repeat;
    background-size: cover;
	overflow: hidden;
}

div.carousel &gt; ul {
	position: relative;
	display: block;
	width: 100%;
	height: inherit;
}

div.carousel &gt; ul &gt; li {
	position: relative;
	display: none;
	width: 100%;
	height: inherit;
    background-size: cover;
    -o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}

div.carousel &gt; ul &gt; li.active {
    display:block;
}

div.carousel &gt; ul &gt; li &gt; figure  {
	position: relative;
	display: table;
    width: 100%;
    height: inherit;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	
}

div.carousel &gt; ul &gt; li &gt; figure &gt; img {
	position: relative;
	display: table;
	width: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
}

div.carousel &gt; ul &gt; li &gt; div {
    position: absolute;
	display: table;
	top: 0px;
}

/*
dots
*/

div.dots {
	position: absolute;
	bottom:5px;
	left:50%;
	z-index: 2;
}

div.dots &gt; ul {
	position: relative;
	display: table;
	margin-left: -50%;
}

div.dots &gt; ul &gt; li  {
	position: relative;
	display: table-cell;
	padding: 4px;
	cursor: pointer;
}

div.dots &gt; ul &gt; li &gt; div {
	position: relative;
	display: block;
	width: 10px;
	height: 10px;
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
	background-color:#FFFFFF;
}

div.dots &gt; ul &gt; li:hover &gt; div,
div.dots &gt; ul &gt; li.active &gt; div {
    opacity: 1;
    background-color: #000000;
}

/* timer */

div.dots &gt; ul &gt; li &gt; div &gt; span {
	position: relative;
	display: none;
	width: 0px;
	height: 100%;
	background-color: #000000;
}

div.dots &gt; ul &gt; li &gt; div &gt; span.status {
	display: block;
}</pre></body></html>