
body { background: #fff; }

a#next {
  left: -35px;
  transition: all ease 0.5s;
}

a#next:hover { left: -25px; }

a#previous {
  right: -35px;
  transition: all ease 0.5s;
}

a#previous:hover { right: -25px; }

.slider-demo {
  margin: 70px auto;
  text-align: center;
  width: 650px;
}

.slider-demo a {
  background-color: #ededed;
  border-radius: 50%;
  color: #444;
  font-size: 5em;
  line-height: 60px;
  padding-bottom: 12px;
  position: relative;
  text-decoration: none;
  width: 72px;
  z-index: 2;
}

.slider-demo a:hover {
  color: black;
  background-color: #cdcdcd;
}

.slider-demo a,
#slider-inner {
  display: inline-block;
  vertical-align: middle;
}

#slider-inner {
  border: 10px solid white;
  border-radius: 4px;
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  width: 460px;
  z-index: 5;
}

#slider-inner ul {
  margin: 0;
  padding: 0;
  position: relative;
  width: 1200px;
}

#slider-inner li {
  background-color: #88BC40;
  font-size: 30px;
  float: left;
  height: 167px;
  line-height: 167px;
  list-style: none;
  margin: 0;
  position: relative;
  width: 230px;
}
