﻿@charset "utf-8";

#flipbook {
	width: 1000px;
	height: 800px;
	margin: 0 auto;
	background-color:#f6f6f6;
}


#flipbook_div p { margin:0; }

#flipbook div.odd{
	background-color:#e1e1e1;

}

#flipbook div.even{
	background-color:#e6e6e6;
}

#flipbook_div ul {
	text-align: center;
	list-style: none;
	width: 100%;
	margin-bottom: 30px;
}

#flipbook_div ul li {
	width: 50%;
	float: left;
}

#flipbook_div ul::after {
	content: "";
	display: block;
	clear: both;
}

#flipbook_div #prevpage, #nextpage {
	cursor: pointer;
}





.fright { float: right; }
.fleft  { float: left; }
.right  { text-align: right; }
.center  { text-align: center; }
.left  { text-align: left; }


.clearfix:after { /*floatの解除、ここがポイント*/
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	content:".";
}
.clearfix {
	min-height: 1px; /*IE6、7対策*/
}
* html .clearfix {
	height: 1px;
	/*¥*//*/ /*MAC IE5.x対策*/
	height: auto;
	overflow: hidden;
	/**/
}