/*
  spritemapper.sprite_dirs = ./images
  spritemapper.output_css = gallery-carousel.css
*/
.carousel-container {
    position: relative;
    width: 100%;
}
.cycle-slide {
  	width: 170px;
    border:7px solid #0083be;
    margin-right:25px;
}
.cycle-slide p {
  background-color: #fff;
	text-align: center;  
  overflow: hidden;
  white-space: normal;
  height: 65px;
  display: table;
  width: 100%;
  margin-bottom: 0;
}
.carousel-btn {
    position: absolute;
    z-index: 300;
    top: 90px;
}
.carousel-btn-prev {
    background: url('images.png') no-repeat 0 0;
    width:44px;
    height:41px;
    left: -2em;
}
.carousel-btn-prev:hover {
    background: url('images.png') no-repeat 0 -126px;
    width:44px;
    height:41px;
}
.carousel-btn-next {
    background: url('images.png') no-repeat 0 -42px;
    width:44px;
    height:41px;
    right: -2em;
}
.carousel-btn-next:hover {
    background: url('images.png') no-repeat 0 -84px;
    width:44px;
    height:41px;
}
