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

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

.preloader
{
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: black;
	z-index: 100;
}

.preloader p
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-family: "Lucida Console", Monospace, serif;
	font-size: 30px;
	font-variant: small-caps;
}

.dot-one
{
	opacity: 0;
	-webkit-animation: dot 1.0s infinite;
	-webkit-animation-delay: 0.0s;
	animation: dot 1.0s infinite;
	animation-delay: 0.0s;
}

.dot-two
{
	opacity: 0;
	-webkit-animation: dot 1.0s infinite;
	-webkit-animation-delay: 0.2s;
	animation: dot 1.0s infinite;
	animation-delay: 0.2s;
}

.dot-three
{
	opacity: 0;
	-webkit-animation: dot 1.0s infinite;
	-webkit-animation-delay: 0.0s;
	animation: dot 1.0s infinite;
	animation-delay: 0.3s;
}


@-webkit-keyframes dot
{
	0%, 50% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes dot
{
	0%, 50%
	{
		opacity: 0;
	}
	100%
	{
		opacity: 1;
	}
}

.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: 700px; height: 300px;
	margin-left: -200px; margin-top: -100px;
	opacity: 0.8;
}

.notify-wrapper
{
	opacity: 0;
	border: 0.5px solid;
	border-radius: 8px;
	border-color: white;
	background: #d4d7bc;
	padding: 5px;
	width: 60%;
	text-align: center;
}

.notify-wrapper p
{
	color: #988f68;
	font-size: 18px;
	font-family: Arial, Helvetica, bold;
}

.notify-read-button
{
	opacity: 0;
	border: 0.5px solid;
	border-radius: 8px;
	border-color: white;
	background: #a6a98a;
	padding: 5px;
	width: 20%;
	text-align: center;
	z-index: 101;
	position: relative;
	top: 5px;
	left: 40%;
}

.notify-read-button p
{
	color: white;
	font-size: 18px;
	font-family: Arial, Helvetica, bold;
}

.card
{
	padding: 20px 40px;
	position: absolute;
	width: 0; height: 300px;
	background: #014051;
	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: white;
	opacity: 0; transition: all 0.3s ease-in;
}

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

.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;
}
