*, html, body, div, p { margin:0; padding:0 }
html, body { height: 100%; }

body
{
	font-family: 'Underdog', cursive;
	font-size: 15px; color: #D7F9FF;
	background: #173745;
}

.preloader
{
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(#297596, #173745);
	z-index: 100;
}

.preloader div
{
	position: absolute; top: 50%; left: 50%;
	margin-left: -20px; margin-top: -20px;
	width: 40px; height: 40px;
	background-color: #D7F9FF;
	border-radius: 50%;
	opacity: 0.6;
	-webkit-animation: bounce 2.0s infinite ease-in-out;
	animation: bounce 2.0s infinite ease-in-out;
}

.preloader div:last-child { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; }

@-webkit-keyframes bounce
{
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce
{
	0%, 100%
	{
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	50%
	{
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

.wrapper
{
	position: relative;
	margin: 0 auto; width: 100%;
	height: 100%; overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: default;
}

.card-wrapper
{
	position: absolute;
	left: 50%; top: 50%;
	width: 600px; height: 300px;
	margin-left: -300px; margin-top: -150px;
	perspective: 1000px;
}

.card
{
	padding: 20px 40px;
	position: absolute;
	width: 0; height: 300px;
	transform-style: preserve-3d;
	background: rgba(0,0,0,.2);
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
	opacity: 0;
	z-index: 100;
}

.card:before, .card:after
{
	position: absolute; top: 120px;
	font-size: 40px; color: #6CEFFA;
	opacity: 0; transition: all 0.3s ease-in;
}

.card:before { content: "<"; left: 60px; }
.card:after { content: ">"; right: 60px; }
.show-card:before { left: 10px; opacity: 1; }
.show-card:after { right: 10px; opacity: 1; }

.card div
{
	width: 520px; height: 0;
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
	text-shadow: #333 1px 1px 0;
	-webkit-transform: translateZ(15px);
}

.p1 { height: 260px; }
.card p { text-indent: 10px; }

.pagepos
{
	position: absolute; top: 20px; right: 40px;
	height: auto !important; width: auto !important;
	font-size: 18px; font-weight: bold; opacity: 0;
}

.mute
{
	position: absolute; top: 10px; right: 10px;
	padding: 10px; font-size: 10px;
	background: rgba(0,0,0,.2);
	cursor: pointer;
}