<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://fonts.googleapis.com/css?family=Roboto:500);

html,body{margin:0;padding:0;overflow:hidden}

body{padding:0;font-family:'Roboto', sans-serif;font-size:14px}



#djvuContainer {
	position: absolute;
	width: 100%;
	height: 100%;
	max-width: 100%;
	text-align: center;
	overflow: hidden;
}

.toolbar {
    position: relative;
    display:inline-block;
    transform:translate(0, 0);
    -webkit-transform:translate(0, 0);
    -ms-transform:translate(0, 0);
    transition:transform 0.3s;
    -webkit-transition:-webkit-transform 0.3s;
    background:#2e2e2e;
    border-bottom:1px solid #2e2e2e;
    width:100%;
    padding-top:1px
}

.toolbarHidden {
	transform: translate(0, -100%);
	-webkit-transform: translate(0, -100%);
	-ms-transform: translate(0, -100%);
	transition: transform 1s;
	-webkit-transition: transform 1s;
}

.toolbarItem {
    display: inline-block;
    vertical-align: middle;
    border-left: 1px solid #525252;
    border-right: 1px solid #525252
}
.toolbarItem:not(:first-child) {
    border-left: 0
}

/*.toolbarSquareButton {*/
	/*float: left;*/
	/*width: 40px;*/
	/*height: 40px;*/
	/*background-image: url("img/toolbar-buttons.png");*/
	/*background-repeat: no-repeat;*/
	/*background-size: 500% 300%;*/
/*}*/

.toolbarSquareButton {
    /*transition: all .2s ease-in-out;*/
    float: left;
    width: 45px;
    height: 43px;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.toolbarSquareButton:hover {
    background-color: #2ba48f
}
.toolbarSquareButton:disabled {
    pointer-events: none;
    opacity: 0.5;
}
.toolbarSquareButton.buttonZoomIn {
    background-image: url("img/zoom-in.png")
}
.toolbarSquareButton.buttonZoomIn:hover {
    background-image: url("img/zoom-in-hover.png")
}
.toolbarSquareButton.buttonZoomOut {
    background-image: url("img/zoom-out.png")
}
.toolbarSquareButton.buttonZoomOut:hover {
    background-image: url("img/zoom-out-hover.png")
}
.toolbarSquareButton.buttonPagePrev {
    background-image: url("img/page-prev.png")
}
.toolbarSquareButton.buttonPagePrev:hover {
    background-image: url("img/page-prev-hover.png")
}
.toolbarSquareButton.buttonPageNext {
    background-image: url("img/page-next.png")
}
.toolbarSquareButton.buttonPageNext:hover {
    background-image: url("img/page-next-hover.png")
}

.scrollbar {
	position: absolute;
	border-radius: 6px;
	opacity: 0.6;
	box-shadow: inset 0 0 0 1px black, inset 0 0 0 2px white, inset 0 0 0 10px #BBB;
	transition: opacity 0.3s;
}

.scrollbarHidden {
	opacity: 0;
	transition: opacity 0.6s;
}

.scrollbarVertical {
	right: 0px;
	border-right: 1px solid transparent;
	width: 13px;
}

.scrollbarHorizontal {
	bottom: 0px;
	border-bottom: 1px solid transparent;
	height: 13px;
}

.content {
	overflow: hidden;
	position: absolute;
	height: 100%;
	width: 100%;
}

.textLayer {
	position: absolute;
	height: 120%;
	width: 120%;
	overflow: scroll;
	text-align: left;
}
_:-ms-lang(x), .textLayer {
	height: 100%;
	width: 100%;
	-ms-overflow-style: none;
}
.textPage {
	margin-top: 100vh;
	margin-bottom: 100vh;
	padding-right: 100vw;
}
.textPage span {
	font-family: sans-serif;
	color: #000;
	color: rgba(0, 0, 0, 0);
	white-space: nowrap;
}
.visibleTextPage span {
	display: inline-block;
	position: relative;

	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	/* border: 1px solid red; /* for easy debug */
}

.comboBox {
    float: left;
    position: relative;
    width: 80px;
    overflow: hidden;
    background-image: url("img/arrow.png");
    background-repeat: no-repeat;
    background-color: #656565;
    background-position: right
}

.comboBoxSelection {
    width: 100px;
    height: 43px;
    background: transparent;
    border: 0;
    color: white;
    font-weight: 500;
    text-align: left;
    padding-left: 10px;
    -webkit-appearance: none
}
.comboBoxSelection option {
    color: #000
}
.comboBoxText {
    width: 38px;
    border: none;
    padding: 4px;
    outline: none;
    position: absolute;
    margin: 9px 0px 0px 5px;
    top: 2px;
    left: 3px;
    background: #656565;
    color: white
}

.statusImage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 128px;
    height: 128px;
    margin: -72px 0 0 -64px;
    background-image: url('img/spin.svg');
    background-repeat: no-repeat;
}

.blankImage {
	background-image: url("img/blank.jpg");
}</pre></body></html>