.pt-page-flipInBottom {
	-webkit-transform-origin: 0 0;
	-webkit-animation: flipInBottom .6s both ease-out;
	-moz-transform-origin: 0 0;
	-moz-animation: flipInBottom .6s both ease-out;
	transform-origin: 0 0;
	animation: flipInBottom .6s both ease-out;
}

@-webkit-keyframes flipInBottom {
	from { -webkit-transform: translateZ(-1000px) rotateX(-90deg); opacity: 0.2; }
}
@-moz-keyframes flipInBottom {
	from { -moz-transform: translateZ(-1000px) rotateX(-90deg); opacity: 0.2; }
}
@keyframes flipInBottom {
	from { transform: translateZ(-1000px) rotateX(-90deg); opacity: 0.2; }
}
