

.slideshow_title {
	max-width: 800px;
	margin-left: 50px;
	border-radius: 0px 0px 25px 25px;
	padding: 7px 0 7px;
	background: #7d3780; 
	color: #FFFFFF; 
	text-align: center;
	font: 12pt normal Georgia, Arial, Verdana, Sans-serif;
}

.book-slideshow {
  height: 280px;
  max-width: 800px;
  border-radius: 25px 25px 0px 0px;
  margin: 0 50px 0;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.book-slideshow > div {
  height: 280px;
  width: 3300px;
  background: url(/content/img/scroll-books.jpg);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
}
.book-slideshow .mover-1 {
  animation: moveSlideshow 50s linear infinite;
}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-66.6666%);  
  }
}

