/*
essential styles:
these make the slideshow work
*/
#slides{
	position: relative;
	height: 6vw;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

.slide{
	position: absolute;
	left: 10vw;
	top: 9vh;
	width: 80%;
	height: 100%;
	opacity: 0;
	z-index: 1;

	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
}

.showing{
	opacity: 1;
	z-index: 2;
}



/*
non-essential styles:
just for appearance; change whatever you want
*/

.slide{
	font-size: 1.5vw;
	margin:auto;
	padding:0;
	box-sizing: border-box;
	box-shadow:10px 10px 8px #666666;
	background: #aaa;
	color: #231061;
}
/*
add slide type here to changecoor for sequence of slides
.slide:nth-of-type(1){
	background: red;
}
.slide:nth-of-type(2){
	background: orange;
}
.slide:nth-of-type(3){
	background: green;
}
.slide:nth-of-type(4){
	background: blue;
}
.slide:nth-of-type(5){
	background: purple;
}
*/