/************************************************
* carousel				*
************************************************/

#carousel { 
  float: left;
  position: relative;
  width: 958px;
  height: 180px; /* 220 */
  margin: 5px auto 25px;
}
.carousel_container { 
  position: relative;
  width: 960px;
  height: 180px; /* 220 */
  margin: 0 auto 0;
}
.carousel {  
  position: absolute; top: 0; left:0; 
  width: 960px; /* .carousel_container width - (.carousel margin-left + .carousel margin-right) */
  overflow: auto;
  height: 180px; /* 220 */
}
.carousel_container .carousel ul {
  width: 10000px;
}
.carousel_container ul li {  
  /*border: 1px solid red; /* добавил */
  /*padding: 2px; /* добавил */
  /*margin: 0px; /* добавил */
  /*float: none; */
  float: left; 
  position: relative;
  width: 162px;
  height: 172px; /* 220 */
  list-style: none;
}

/************************************************
* carousel-li				*
************************************************/

#carousel img {
  width: 144px;
  height: 110px;
  background: #ECEBEC;
  border: 1px solid #BABCBD;
	padding: 0;
  margin: 0 0 7px 0;
}
.title-info {
  width: 144px;
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  padding: 0 0 5px 0;
  line-height: 1.1;  
}
.title-info a:link, .title-info a:visited {
  text-decoration: none;
  color: #000;
}
.title-info a:hover {
  text-decoration: none;
  color: #666;
}
.carousel p { 
  width: 144px;
  margin: 2px 0 0 0; 
  font-size: 12px;
  text-align: left;
  line-height: 1.0;
  text-align: justify;
  overflow: hidden; 
}
.carousel .more {  
  position: absolute; bottom: 0; right: 15px; 
}

/************************************************
* button				*
************************************************/

.carousel_container .arrow {
  position: absolute; 
  display: block;
  width: 22px;
  height: 26px;
  text-indent: -999px;
  cursor: pointer;
}
.carousel_container .prev {
  background: url('/wp-content/themes/News_Blog/images/prev.gif') left no-repeat;
  background-position: 0 0;
  top: 50px;
  left: -15px;
}
.carousel_container .next {
  background: url('/wp-content/themes/News_Blog/images/next.gif') right no-repeat;
  background-position: 0 0;
  top: 50px;
  right: -15px;
}

