.list_carousel{
position:relative;
margin:0px;
padding:0px;
}


.list_carousel ul {
list-style: none;
display: block;
}

.list_carousel li {
color: #999;
margin:3px;
display: block;
float: left;
height:100px;
}



.list_carousel.responsive {
width: auto;
margin-left: 0;
}
.clearfix {
float: none;
clear: both;
}

.control{
position:absolute;
top:-40px;
right:0px;
}

.prev {
float: left;
margin-right:5px;
background-color: #202020;
background-image: url("../images/carousel_btn_bg.png");
background-repeat: no-repeat;
height: 25px;
line-height:25px;
text-align: center;
width: 25px;
}

.next {
float: right;
background-color: #202020;
background-image: url("../images/carousel_btn_bg.png");
background-repeat: no-repeat;
height: 25px;
line-height:25px;
text-align: center;
width: 25px;
}



.prev:hover,
.next:hover {
background-image: url(../images/carousel_hover.png);
background-repeat:no-repeat;
background-color:#ff5400;

-webkit-transition-property: background;
  -webkit-transition-duration:0.5s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-property: background;
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transition-property: background;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: background;
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: ease-out;
  transition-property: background;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

