/* Basic sample */

.flipbook{
	width:1200px;
	height:600px;
	left:75px;
	top:0;
}

.page{
	width:600px;
	height:600px;
	background-color:white;
	background-repeat:no-repeat;
	background-size:100% 100%;
}

.page{
	-webkit-box-shadow:0 0 20px rgba(0,0,0,0.2);
	-moz-box-shadow:0 0 20px rgba(0,0,0,0.2);
	-ms-box-shadow:0 0 20px rgba(0,0,0,0.2);
	-o-box-shadow:0 0 20px rgba(0,0,0,0.2);
	box-shadow:0 0 20px rgba(0,0,0,0.2);
}

.page img{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin:0;
}

.shadow{
	-webkit-transition: -webkit-box-shadow 0.5s;
	-moz-transition: -moz-box-shadow 0.5s;
	-o-transition: -webkit-box-shadow 0.5s;
	-ms-transition: -ms-box-shadow 0.5s;

	-webkit-box-shadow:0 4 20px #ccc;
	-moz-box-shadow:0 4 20px #ccc;
	-o-box-shadow:0 4 20px #ccc;
	-ms-box-shadow:0 4 20px #ccc;
	box-shadow:0 4 20px #ccc;
}


/* new new new */

/* helpers */

.t {
    display: table;
    width: 100%;
    height: 100%;
}

.tc {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.rel {
    position: relative;
}

/* book */

.book {
    margin: 0 auto;
    width: 600px;
    height: 600px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.book .page {
    height: 100%;
}

.book .page img {
    max-width: 100%;
    height: 100%;-webkit-box-shadow:0 4 20px #ccc;
	-moz-box-shadow:0 4 20px #ccc;
	-o-box-shadow:0 4 20px #ccc;
	-ms-box-shadow:0 4 20px #ccc;
	box-shadow:0 4 20px #ccc;
}

.required:after {
    content: ' *';
    color: red;
}
