#page13 {
	background: url(../images/p13/bg.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 1920px !important;
	height: 1092px !important;
	position: absolute !important;
	overflow: hidden;
	left: 1920px;
	top: 0px;
}

.previous{
	position: absolute;
	left: 29px;
	top: 19px;
	width: 41px;
	height: 40px;
}

.next{
	position: absolute;
	left: 75px;
	top: 19px;
	width: 41px;
	height: 40px;
}
.p13_img1{
	position: absolute;
    bottom: 556px;
    left: 699px;
    background-image: url(../images/p13/img1.png);
    background-repeat: no-repeat;
    background-size: 645px 336px;
    height: 336px;
    max-width: 645px;
}

.p13_img1{
	animation-name: drawLine;
	animation-duration: 4s; /* or: Xms */
	animation-direction: alternate; /* or: normal */
	animation-timing-function: linear; /* or: ease, ease-in, ease-in-out, linear, cubic-bezier(x1, y1, x2, y2) */
	animation-fill-mode: forwards; /* or: backwards, both, none */
	animation-delay: 0.5s; /* or: Xms */
	 /* chrome or safari */
	-webkit-animation-name: drawLine;
	-webkit-animation-duration: 4s; /* or: Xms */
	-webkit-animation-direction: alternate; /* or: normal */
	-webkit-animation-timing-function: linear; /* or: ease, ease-in, ease-in-out, linear, cubic-bezier(x1, y1, x2, y2) */
	-webkit-animation-fill-mode: forwards; /* or: backwards, both, none */
	-webkit-animation-delay: 0.5s; /* or: Xms */
	/* opera */
	-o-animation-name: drawLine;
	-o-animation-duration: 4s; /* or: Xms */
	-o-animation-direction: alternate; /* or: normal */
	-o-animation-timing-function: linear; /* or: ease, ease-in, ease-in-out, linear, cubic-bezier(x1, y1, x2, y2) */
	-o-animation-fill-mode: forwards; /* or: backwards, both, none */
	-o-animation-delay:0.5s; /* or: Xms */
	/* mozilla */
	-moz-animation-name: drawLine;
	-moz-animation-duration: 4s; /* or: Xms */
	-moz-animation-direction: alternate; /* or: normal */
	-moz-animation-timing-function: linear; /* or: ease, ease-in, ease-in-out, linear, cubic-bezier(x1, y1, x2, y2) */
	-moz-animation-fill-mode: forwards; /* or: backwards, both, none */
	-moz-animation-delay: 0.5s; /* or: Xms */
	}

	@-webkit-keyframes drawLine {
		0% {width: 0%;}
		  100% {width: 100%;-webkit-animation-timing-function: ease-out;}
	}
	@-moz-keyframes drawLine {
		0% {width: 0%;}
		  100% {width: 100%;-webkit-animation-timing-function: ease-out;}
	}
	@-ms-keyframes drawLine {
		0% {width: 0%;}
		  100% {width: 100%;-webkit-animation-timing-function: ease-out;}
	}
	@-o-keyframes drawLine {
		0% {width: 0%;}
		  100% {width: 100%;-webkit-animation-timing-function: ease-out;}
	}
	@keyframes drawLine {
		0% {width: 0%;}
		  100% {width: 100%;-webkit-animation-timing-function: ease-out;}
	}
	.drawLine {
		-webkit-animation-name: drawLine;
		-moz-animation-name: drawLine;
		-ms-animation-name: drawLine;
		-o-animation-name: drawLine;
		animation-name: drawLine;
		}