html {
	cursor: pointer;
	width:100%;
	height: 100%
}

img {
	border: none;
}

body {
	background-image: url('../img/bkg.jpg');
	background-repeat: repeat-y;
	background-position: center top;
	margin: 0;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}
.flip {
	-webkit-perspective: 800;
	-moz-perspective: 800;
	width: 738px;
	height: 450px;
	position: relative;
	margin: 60px auto;
}
.flip .card.flipped {
	-webkit-transform: rotatey(-180deg);
	-moz-transform: rotatey(-180deg);
	box-shadow: -8px 4px 12px #bdbdbd; 
}
.flip .card {
	width: 100%;
	height: 100%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-moz-box-shadow: 8px 4px 12px #bdbdbd; 
  	-webkit-box-shadow: 8px 4px 12px #bdbdbd; 
  	box-shadow: 8px 4px 12px #bdbdbd; 
}
.flip .card .face {
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-backface-visibility: hidden ;
	-moz-backface-visibility: hidden ;
	z-index: 2;
    font-family: Georgia;
    font-size: 3em;
    text-align: center;
    line-height: 200px;
}
.flip .card .front {
	position: absolute;
	z-index: 1;
    color: white;
    cursor: pointer;
}
.flip .card .back {
	-webkit-transform: rotatey(-180deg);
	-moz-transform: rotatey(-180deg);
    background: blue;
    background: white;
    color: black;
    cursor: pointer;
}

.flip .card img {
	display: block;
}

.text {
	width: 445px !important;
	height: 70px !important;
	margin: auto !important;
	text-align: center !important;
}

.text2 {
	display: none;
}

.clickMe {
	background-image: url('../img/click.png');
	background-repeat: no-repeat;
	width: 109px;
	height: 109px;
	position: absolute;
	top: -50px;
	left: -50px;
}
