.carousel {
  background-color: #fff;
  margin: 0 0 30px 0;
  position: relative;
}

.carousel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}

.carousel li {
  font-size: 40px;
  color: #999;
  text-align: center;
  background-color: #fff;
  border: 5px solid #fff;
  padding: 0;
  margin: 0 10px 0 0;
  display: block;
  float: left;
}

.clearfix {
  float: none;
  clear: both;
}

.carousel-prev {
  position: absolute;
  top: 0;
  width: 28px;
  height: 100%;
}

.carousel-prev-button {
  position: absolute;
  top: 40%;
  height: 50px;
  width:50px;
  background: url("prev-arrow.png") transparent no-repeat;
}

.carousel-prev-button:hover {
  background-position: 0px -50px;
}

.carousel-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 100%;
}

.carousel-next-button {
  position: absolute;
  top: 40%;
  height: 50px;
  width:50px;
  background: url("next-arrow.png") transparent no-repeat;
}

.carousel-next-button:hover {
  background-position: 0px -50px;
}
