body {
	font-family: Arial, Helvetica, sans-serif;
}
.image-slideshow {
	width: 700px;
    height: 400px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    position: relative;
}
.image-slideshow > div {
	width: 700px;
    height: 400px;
	animation: move 20s ease-in-out 3s infinite alternate;
    display:inline-block;
}
.image-slideshow > div div {
	position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    width: 100%;
}
.image-slideshow h2 {
	padding: 15px;
    margin: 0;
    font-size: 18px;
    color: #FFFFFF;
}
.image-slideshow p {
	padding: 0 15px 15px 15px;
    margin: 0;
    font-size: 14px;
    color: #FFFFFF;
}
@keyframes move {
	10%,30% { transform: translateX(0); }
   	40%,70% { transform: translateX(-700px); }
   	80%,100% { transform: translateX(-1400px); }
}