<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#viewport {
	position: relative;
	width: 300px;
	height: 225px;
	margin: 0px;
	overflow: hidden;
}
#mouseSwipe1, #mouseSwipe2, #slideshow {
	-webkit-user-select: none;
	-moz-user-select: none;
	position: relative;
	width: 300px;
	height: 225px;
	margin: 0px;
	cursor: move;
}
.panel {
	margin: 0px;
	padding: 0px;
	width: 300px;
	height: 225px;
	background-color: silver;
  overflow: hidden;
}
#viewport2 {
	position: relative;
	width: 800px;
	height: 225px;
	margin: 0px;
	overflow: hidden;
}
#mouseSwipeScroll {
	-webkit-user-select: none;
	-moz-user-select: none;
	position: relative;
	width: 300px;
	height: 225px;
	margin: 0px;
	cursor: move;
}
.navLeft, .navRight, .navTop, .navBottom {
	position: absolute;
	display: block;
	background-color: transparent;
	cursor: pointer;
	z-index: 100;
}
.navLeft {
	top: 0px;
	left: 0px;
	width: 25px;
	height: 100%;
	text-align: center;
	background-image: url('images/arrowL.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.navRight {
	top: 0px;
	right: 0px;
	width: 25px;
	height: 100%;
	background-image: url('images/arrowR.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.navTop {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 25px;
	text-align: left;
	background-image: url('images/arrowT.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.navBottom {
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 25px;
	background-image: url('images/arrowB.png');
	background-position: center center;
	background-repeat: no-repeat;
}
#pagenum1, #pagenum2 {
	margin: 0px auto;
	width: 100px;
	height: 25px;
	text-align: center;
}
</pre></body></html>