#bookModel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    z-index: 10000;
    padding: 0px;
    outline: none;
    -webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

img{
	max-width: none;
}

#bookLeftArrow{
	position: absolute;
	background-image: url("book_arrows.png");
	width: 28px;
	height: 48px;
	left: 10px;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
	cursor: pointer;
}

#bookRightArrow{
	position: absolute;
	background-image: url("book_arrows.png");
	background-position: -28px;
	width: 28px;
	height: 48px;
	right: 10px;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
	cursor: pointer;
}

#bookLeftArrow:HOVER, #bookRightArrow:HOVER{
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity: 1;
}