@charset "utf-8";
/* CSS Document */

img {vertical-align:middle;}

/* Brochure Slideshow Container */
.Brochure-Slide-Container {
	position:relative;
	margin:auto
}

.BrochureSlides {display:none}

/* Next and Prev buttons */
.prev, .next {
	cursor:default;
	position:absolute;
	top:50%;
	width:auto;
	padding:15px;
	margin-top:-9px;
	color: black;
	font-weight: bold;
	font-size:25px;
	transition:0.15s ease;
	border-radius:0 5px 5px 0;
	user-select: none;
}

.prev {
		left:0;
		border-radius: 5px 0 0 5px;
}

.next {
		right:0;
		border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
	background-color:white;
}

/* Brochure Title */
.Brochure-Title {
	color:black;
	font-size:15px;
	padding: 10px 10px;
	top:0;
}

/* Caption Style */
.caption {
	color: White;
	background-color:#999;
	font-size:15px;
	margin: 10px 10px;
	position:relative;
	bottom:10px;
	width: auto;
	text-align:center;
}

/* Indicators for current brochures */
.indicators {
	cursor:auto;
	height:auto;
	width:auto;
	padding: 20px 10px 10px 10px;
	border-radius:5%;
	display:inline-block;
	transition:background-color 0.5s ease;
	font-size:12px;
}

.active, .indicators:hover {
	background-color: rgba(200,200,200,0.5);
}

/* Fade animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration:0.75s;
	animation-name:fade;
	animation-duration:0.75s;
}

@-webkit-keyframes fade {
	from {opacity:.4}
	to {opacity:1}
}

@keyframes fade {
	from {opacity:.4}
	to {opacity:1}
}

/* Table Style */
.Left-Select {
	text-align:center;
	vertical-align:middle;
	width:25%;
}

.thumbnail {
	width:100px;
}

.Right-Display {
	text-align:center;
	vertical-align:middle;
	width:75%;
}
