* {
	margin: 0;
	padding: 0;
}
body {
	width: 100%;
	height: 100%;
	font-size: 100%;
	font-family: Helvetica, Hiragino Kaku Gothic ProN;
}
#can {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 100;
}
#can_bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
}
#can_is {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 80;
	background: #fff;
}
#scratchBox {
	overflow: hidden;
	position: relative;
	z-index: 80;
}
#cover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 110;
	padding: 5px;
	background: #fff;
	border: solid 15px #555;
	box-sizing: border-box;
}
.btn {
	padding: 5px;
	color: #000;
	font-size: 0.8em;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	background: -moz-linear-gradient(top,#FFF 0%,#E6E6E6);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
	border: 2px solid #DDD;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	text-shadow: 0px 0px 5px rgba(0,0,0,.3);
}
#next {
	width: 50%;
	position: absolute;
	bottom: 1%;
	right: 5%;
	border-radius: 10px;
}
#back {
	width: 20%;
	position: absolute;
	bottom: 1%;
	left: 5%;
	border-radius: 10px;
}
/*------------animation--------------------*/
@-webkit-keyframes t-slideup {
	from {
		-webkit-transform: translateY(0);
	}
    to {
		-webkit-transform: translateY(-100%);
	}
}
@-webkit-keyframes t-slidedown {
	from {
		-webkit-transform: translateY(-100%);
	}
	to {
		-webkit-transform: translateY(0);
	}
}
.t-slideup {
	-webkit-animation-name: t-slideup;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-duration: 350ms;
}
.t-slidedown {
	-webkit-animation-name: t-slidedown;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-duration: 350ms;
}


/* --- PF-X bug ---*/
img[src^="http://www.pf-x.net/"] {
	position: absolute;
}
