.carousel {
  width:100%;
  max-width:960px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:-100px;
  position:relative;
  clear:both;
  top:-70px;
  overflow:hidden;
}
.carousel img {
  visibility:hidden; /* hide images until carousel can handle them */
  cursor:pointer; /* otherwise it's not as obvious items can be clicked */
  border-radius:8px;
}
@media (max-width: 480px) {
.carousel img {
	max-width:300px;
}
}
