@charset "utf-8";
/* CSS Document */

#carousel_inner {
float:left; /* important for inline positioning */
width:850px; /* important (this width = width of list item(including margin) * items shown */
overflow: hidden;  /* important (hide the items outside the div) */
position:relative; /* to fix IE6 bug */
/* non-important styling bellow 
background: #F0F0F0;*/
}
 
#carousel_ul {
position:relative;
left:-275px; /* 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 */
overflow:hidden; /* to fix IE6 bug */
/* non-important styling bellow 
padding-bottom:10px;*/
}
 
#carousel_ul li{
float: left; /* important for inline positioning of the list items */                                    
width:258px;  /* fixed width, important */
/* just styling bellow*/
padding:5px;
height:70px;
background: #fff;
border:1px solid #ccc;
margin-top:0px;
margin-bottom:0px; 
margin-left:5px; 
margin-right:5px; 
}

#carousel_ul li:hover { border:1px solid #999; cursor:pointer; }
 
#left_scroll, #right_scroll{
float:left;
padding-top:30px; 
height:50px; 
width:20px; 
}
#left_scroll img, #right_scroll img{
border:0; /* remove the default border of linked image */
/*styling*/
cursor: pointer;
cursor: hand;
 
