body {
	width: 100%;
	margin: 0;
	padding: 0;
}

#image-container {
	display: block;
	height: 250px;
	width: 300px;
	overflow: hidden;
	position: relative;
	cursor: move;
	/*border: 1px solid #ccc;*/
}

#drag-image {
	position: absolute;
	left: -50px;
	top: 0;
	-moz-user-select: none;
	animation: panoramaAnimate 2s ease-in-out 1s infinite alternate both;
}

@keyframes panoramaAnimate {
	0% {
		opacity: 1;
		transform: translateX(50px);
	}

	50% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 1;
		transform: translateX(-50px);
	}
}
.a-click {
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
	position: absolute;
	left: 0;
	top: 0;
}