
.yourElement .container {
    cursor: pointer;
    position: relative;
}

.yourElement .item { 
	width: 200px;
}

.yourElement .item img{
	width: 100%;
} 


.yourElement .arrows {
  position: relative;
  padding: 0 8px;
  top: -26px;
}
.yourElement.arrows > .prev { float: left }
.yourElement .arrows > .next { float: right }


.yourElement .moving {
  /* You can change transition-duration of course. */
  transition: transform .5s ease-out;
  -webkit-transition: -webkit-transform .5s ease-out;
  -moz-transition: -moz-transform .5s ease-out;
}

