<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	Slideshow Plugin for Bondware
	Author: Ethan Basham
	Date: August 7th, 2018
*/

.bw_slideshow-wrapper {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}
.bw_slideshow {
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.bw_slideshow-track {
	position: absolute;
	transform: translate3d(0px, 0px, 0px);
	top: 0;
	bottom: 0;
}
.bw_slideshow-slide-wrapper {
	height: 100%;
	white-space: nowrap;
	text-align: center;
	margin: 0;
	float: left;
	position: relative;
}
.bw_slideshow-helper {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.bw_slideshow-slide {
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}
.bw_slideshow-caption-wrapper {
	position: absolute;
	top:0;right:0;bottom:0;left:0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.bw_slideshow-caption {
	padding: 0.25rem;
	display: inline-block;
	background-color: rgba(35,35,35,.65);
	color: #fff;
	font-size: .8rem;
	max-width: 100%;
	width: 100%;
	white-space: normal;
}

/*Arrows*/
.bw_slideshow-arrow, .bw_slideshow-arrow:hover, .bw_slideshow-arrow:visited,
.bw_slideshow-arrow:link, .bw_slideshow-arrow:active {
	background-color: #777;
	position: absolute;
	margin: auto 0px;
	font-size: 20px;
	top:50%;
	text-align: center;
	transition: opacity 0.25s;
	background-color: #222;
	color: #fff;
	cursor: pointer;
	border-radius: 3px;
	padding: 0 8px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	line-height: 1.5;
	z-index: 9999;
}
.bw_slideshow-arrow:hover {
	opacity: 0.85;
}
.bw_slideshow-arrow-left {
	left:0px;
}
.bw_slideshow-arrow-right {
	right:0px;
}</pre></body></html>