@charset "utf-8";
/* CSS Document */
.move_left{
	animation: move-left 1s forwards;
	-webkit-animation: move-left 1s forwards;
}
.move_right{
	animation: move-right 0.5s forwards;
	-webkit-animation: move-right 0.5s forwards;
}
@keyframes move-left{
	from{
		visibility: visible;
		right: -100%;
		opacity:0;
	}
	to{
		right:0px;
		opacity:1;
		visibility: visible;
	}
}
@-webkit-keyframes move-left{
	from{
		visibility: visible;
		right:-100%;
		opacity:0;
	}
	to{
		right: 0px;
		opacity:1;
		visibility: visible;
	}
}
@keyframes move-right{
	from{
		visibility: visible;
		opacity:1;
		right: 0px;
	}
	to{
		right: -100%;
		opacity:0;
		visibility: hidden;
	}
}
@-webkit-keyframes move-right{
	from{
		visibility: visible;
		opacity:1;
		right: 0px;
	}
	to{
		right:-100%;
		opacity:0;
		visibility: hidden;
	}
}
#mainFrameDiv{
	width: 100%;
	height: 100%;
	position: fixed;
	left: auto;
	top: 0px;
	background-color: #FFF;
	z-index: 10;
	visibility: hidden;
}
#mainInnerWin{
	width: 100%;
	height: 100%;
	border: none;
}