body{
	background-color: #F5F5F5;
	margin: 0px;
	padding: 0px;
	-webkit-user-select: none;

}
	img.card{
	margin-top:  20px;
	width: 300px;
	height: 500px;
	position:absolute; 
	top:50%; 
	margin-top:-265px; 
	left:50%; 
	margin-left:-154px;
	background-color: white;
	-webkit-animation-name: pop;
	-webkit-animation-duration: .5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease-in;
	-webkit-box-shadow:0px 1px 3px #808080;
	-moz-box-shadow:0px 1px 3px #808080;
	box-shadow:0px 1px 3px #808080;

}
	@-webkit-keyframes pop {
	from {
		-webkit-transform: scale(.1);
		opacity: 0;
	}
	90% {
		-webkit-transform: scale(1.05);
		opacity: 1;
	}
	to {
		-webkit-transform: scale(1);
	}
}
