@charset "utf-8";
/* CSS Document */

#carousel_container {
width: 1000px;
background: #080808;
}
#carousel_inner {
float:left; /* important for inline positioning */
width: 900px; /* important (this width = width of list item(including margin) * items shown */
overflow: hidden;  /* important (hide the items outside the div) */
position:relative;
background: #080808 url(../images/pic_bg.jpg) no-repeat;
}

#carousel_ul {
position:relative;
left:-180px; /* important (this should be negative number of list items width(including margin) */
list-style-type: none; /* removing the default styling for unordered list items */
margin: 0px;
padding: 0px;
width:9999px; /* important */
padding-bottom:0px;
overflow:hidden;
}

#carousel_ul li{
float: left; /* important for inline positioning of the list items */
width: 180px;  /* fixed width, important */
padding:25px 0 0 0;
height:200px;
}

#carousel_ul li img {

/* styling */
}
#left_scroll {
float:left;
height:200px;
width:50px;
background:url(../images/pic_fl.jpg);
}
#right_scroll{
float:left;
height:200px;
width:50px;
background:url(../images/pic_fd.jpg);
}
#left_scroll img, #right_scroll img{
border:0; /* remove the default border of linked image */
/*styling*/
cursor: pointer;
cursor: hand;

}



