.carousel  {
   width: 970px; /* ширина всего блока */
   margin: 20px auto;
   
  position: relative;
}
.carousel-wrap{
   width: 902px; /* ширина области карусели */
   overflow: hidden; /* скрываем содержимое, выходящее за рамки основной области */
   margin:0px;
   -moz-box-shadow: inset 0 0 10px #000000;
  -webkit-box-shadow: inset 0 0 10px #000000;
  box-shadow: inset 0 0 10px #000000;
  background: #7f7f7f;
  padding: 30px 43px 50px;
	
}
.carousel-wrapper {
  overflow: hidden;
}
.carousel-items {
   width: 10000px; /* устанавливаем большую ширину для набора элементов */
   position: relative; /* позиционируем блок относительно основной области карусели */
}
.carousel-block {
   float: left; /* выстраиваем все элементы карусели в ряд */
   width: 210px; /* задаём ширину каждого элемента */
   
}

/*********** BUTTONS ***********/
.carousel-button-left a, .carousel-button-right a{
   width: 56px; 
   height: 51px; 
   position: absolute;
   top: 110px; 
   cursor: pointer; 
   text-decoration:none;
   z-index:100;
}
.carousel-button-left a{
   top: 120px;
   left: -32px;
   background: url(../images/carousel-left.png); 
}
.carousel-button-right a{
   top: 120px;
   right: 53px;
   background: url(../images/carousel-right.png); 
}

