/**
 *  スワイプページ切り替えCSS
 */
.swipe-paging-menu {
	position: fixed;
	top: 50%;
	margin-top: -50px;

	height: 100px;
	width: 0;
	background: rgba(150, 150, 150, 0.4);
	color:#FFF;
	z-index:1000;
	-webkit-user-select: none;
}
.swipe-paging-menu.selected {
	background: rgba(150, 150, 150, 1);
}
.swipe-paging-menu > p {
	line-height: 80px;
	margin: 10px;
	white-space: nowrap;
	overflow: hidden;
}
.swipe-paging-menu.paging-left {
	left: 0px;
	text-align: right;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.swipe-paging-menu.paging-right {
	right: 0px;
	text-align: left;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
