@charset "utf-8";
/* CSS Document */

.mySlides {display:none}
.w3-left, .w3-right, .w3-badge {cursor:pointer}
.w3-badge {height:13px;width:13px;padding:0}

.w3-display {
	opacity: 1;
	display: block;
	max-width: 100%;
	animation-name: infade;
  	animation-duration: 1s;
}
.w3-noDisplay {
	opacity: 0;
	display: none;
	max-width: 100%;
	animation-name: outfade;
  	animation-duration: 1s;
}
.w3-fader {
	
	-webkit-transition: opacity 2s ease-in;
       -moz-transition: opacity 2s ease-in;
        -ms-transition: opacity 2s ease-in;
         -o-transition: opacity 2s ease-in;
            transition: opacity 2s ease-in;
}

@keyframes infade {
  from {opacity: 0.4;}
  to {opacity: 1;}
}
@keyframes outfade {
  from {opacity: 1;}
  to {opacity: 0.4;}
}

.w3-check {
	width: 36px;
	height: 36px;
	display: inline;
}

.w3-display-bottommiddle {
	position: absolute;
	bottom: 20px;
}
.w3-left {
	position: absolute;
	bottom: 0px;
	left: 50px;
}
.w3-right {
	position: absolute;
	bottom: 0px;
	right: 50px;
}