@charset "utf-8";

html {
	height: 100%;
	overflow: hidden;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color:#E9E9E9;
	overflow: hidden;
}

input {
	border: none;
}

.divSlide {
	height: 100%;
	width: 100%;
}

.divView {
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 20;
}
	.divView .divPages {
		position: relative;
		top: 0px;
		z-index: 10;
	}
	.divView .divBook {
		z-index: 20;
	}

.divMoveArea {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	_background-color: transparent;
	opacity: 0.0001;
	filter: alpha(opacity=0.0001);
	z-index: 10;
}

.btnArrowLeft,
.btnArrowRight {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
}
.btnArrowLeft {
	z-index: 30;
}
.btnArrowRight {
	z-index: 40;
}

.divFooter {
	position: absolute;
	left: 0px;
	width: 100%;
	height: 60px;
	color: #E5E5E5;
	font-weight: bold;
	text-align: right;
	z-index: 5000000;
	background-image: url("/book/img/footerbg.png");
	background-repeat: repeat;
	background-position: 50% 50%;
}

.btnFooter {
	display: inline-block;
	width: 45px;
	height: 45px;
	background-repeat: no-repeat;
	margin:7px 5px 7px 5px;
}

.hidden {
	display: none;
}

.spnPageCnt span {
	display: inline-block;
	margin: 0px 5px 0px 5px;
	font-size: 20px;
	line-height: 60px;
	vertical-align: top;
}

.divOverlay {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #E9E9E9;
	z-index: 9999999;
	opacity: 1;
	filter: alpha(opacity=100);

}

.divLoading {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-image: url("/book/img/loading.gif");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	z-index: 10000000;
}



.clsPageBreak {
	page-break-before: always !important;
}
.clsOverflowHidden {
	overflow-x: hidden;
}
.clsOverflowAuto {
	overflow-x: auto;
}

#divPrint {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: #FFFFFF;
	text-align: center;
}

#divPrint * {
	margin: 0;
	padding: 0;
}
#divMessage {
	display: none;
	width: 650px;
	margin: 5px auto 5px auto;
}
#divMessageTitle {
	text-align: center;
	font-weight: bold;
	padding: 5px;
	background-image: url("/book/img/footerbg.png");
	background-repeat: repeat;
	background-position: 50% 50%;
	color: #FFFFFF;
}
#divMessageContents {
	padding: 5px;
	background-color: #FFFFFF;
	text-align: left;
}
#divNormalMode {
	padding: 5px;
	background-color: #FFFFFF;
	text-align: right;
}
#divPrintImage {
	width: 100%;
	text-align: center;
}
#divPrintImage div {
	text-align: center;
}
#divPrintImage div img {
	margin: 2px;
}


@media print {
	html{
		overflow: visible;
	}
	body {
		background-color: #FFFFFF;
	}
	body * {
		display: none;
	}
	.clsPageBreak {
		page-break-before: auto !important;
	}
	#divMessage {
		display: none !important;
	}
	
	#divPrint {
		display: block;
		width: 100%;
		height: 100%;
		overflow: visible;
		background-color: #FFFFFF;
		text-align: center;
		/* IE8、IE9、IE10 */
		position: relative;
		top: auto;
		left: auto;
	}
	
	#divPrintImage,
	#divPrintImage div {
		display: block;
	}
	#divPrintImage div img {
		display: inline;
		height: auto;
		margin: 0 !important;
		/* IE互換表示(IE7) */
		width: 96%;
	}
	
	/* IE以外、IE11 */
	:root #divPrint {
		position: absolute;
		top: 0px;
		left: 0px;
	}
	:root #divPrintImage div img {
		width: 100%;
	}
	/* Firefox */
	@-moz-document url-prefix() {
		:root #divPrintImage div img {
			width: 94%;
		}
	}
}
/* IE11 */
@media print and (-ms-high-contrast:none) {
	#divPrintImage div img {
		width: 96% !important;
	}
}