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

#testbox {
	width: 1200px;
	height: 300px;
	background-color: red;
	position: relative;
}

#innertestbox { /* testing for sizing on the slideshow */
	width: 1200px;
	height: 250px;
	background-color: deepskyblue;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.slideshowText {
	background: rgba(59, 59, 59, 50%);
	width: 325px;
	margin: 0 auto;
	bottom: 0px;
	font-size: 23px;
	border-radius: 10px;
	padding: 10px;
}