.Codetank-20161130
	{

	}
	.contents-area
	{

	}
	.output-lists
	{
		list-style: none;
	}
	.sample-box {
		display: inline-block;

	}
	.animation-bounce
	{
		animation:
			bounce 2s ease infinite normal 0s none running
		;
		-webkit-animation:
			bounce 2s ease infinite normal 0s none running
		;
		-ms-animation:
			bounce 2s ease infinite normal 0s none running
		;
	}
	@keyframes bounce {
		0%, 100%, 20%, 50%, 80% {
		    transform: translateY(0px);
		}
		40% {
		    transform: translateY(-30px);
		}
		60% {
		    transform: translateY(-15px);
		}
	}
	@-webkit-keyframes bounce {
		0%, 100%, 20%, 50%, 80% {
		    transform: translateY(0px);
		}
		40% {
		    transform: translateY(-30px);
		}
		60% {
		    transform: translateY(-15px);
		}
	}
