@font-face {
    font-family: 'Open Sans';
    src: url('../../img/OpenSans.ttf');
}

body {
	margin:0px;
	width:100%;
	height:100%;
	background-color:#424242;
	background-repeat:no-repeat;
	background-size:cover;
	font-family:'Open Sans', sans-serif;
	font-size:13px;
	color:#fff;
}

#canvas-container {
	position:fixed;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background-color:#fff;
	overflow:hidden;
	color:#000;
	perspective:400px;
}

#panel {
	position:absolute;
	top:50%;
	left:10%;
	right:10%;
	max-height:100%;
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center;
	text-align:center;
	transform:translateY(-50%);
}

#panel-image {
	max-width:100%;
	max-height:100%;
}

#flip-cover {
	position:absolute;
	top:0px;
	left:15%;
	right:15%;
	bottom:0px;
	z-index:3;
	width:70%;
	opacity:0;
}

#flip-l {
	position:absolute;
	top:100px;
	left:0px;
	bottom:100px;
	z-index:2;
	width:50%;
	border:1px solid #cacaca;
	opacity:0;
	cursor:pointer;
	transition:opacity 0.3s;
}

#flip-l:hover {
	opacity:0.8;
}

#flip-l div {
	position:absolute;
	top:50%;
	left:20px;
	transform:translateY(-50%);
	color:#cacaca;
	font-size:18px;
}

#flip-r {
	position:absolute;
	top:100px;
	right:0px;
	bottom:100px;
	z-index:2;
	width:50%;
	opacity:0;
	border:1px solid #cacaca;
	cursor:pointer;
	transform-style:preserve-3d;
	transform-origin:0 0;
	-webkit-transform-style:preserve-3d;
	-webkit-transform-origin:0 0;
	transition:transform 0.5s, -webkit-transform 0.5s, opacity 0.3s;
}

#flip-r:hover {
	transform:rotateY(-5deg);
	-webkit-transform:rotateY(-5deg);
	opacity:0.8;
}

#read-more {
	display:none;
	position:absolute;
	bottom:100px;
	right:100px;
	z-index:10;
	padding:10px;
	background-color:rgba(0,0,0,0.1);
	opacity:0;
	color:#424242;
	transition:opacity 2s;
}

#read-more a {
	color:#8a8a8a;
	text-decoration:none;
	border-style:solid;
	border-color:#2071a6;
	border-width:0px;
}

#read-more a:hover {
	text-decoration:none;
	border-width:0px 0px 1px 0px;
}