#carousel_container {
width: 638px;
clear: both;
height: 60px;
margin: 0 5px 0 15px;
}

#carousel_inner {
position: relative;
width:638px; /* important (this width = width of list item(including margin) * items shown */ 
overflow: hidden;  /* important (hide the items outside the div) */
/* non-important styling bellow */
}

#carousel_ul {
position: relative;
left:-144px; /* 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 */
/* non-important styling bellow */
padding-bottom:10px;
}

#carousel_ul li {
float: left; /* important for inline positioning of the list items */                                    
width:140px;  /* fixed width, important */
/* just styling bellow*/
padding:0px;
height:60px;
background: #FFF;
margin-top:0px;
margin-bottom:10px; 
margin-left:2px; 
margin-right:2px; 
text-align: center;
}

#carousel_ul li img {
position: relative;
border: red 1px solid;
.margin-bottom:-4px; /* IE is making a 4px gap bellow an image inside of an anchor (<a href...>) so this is to fix that*/
/* styling */
/*cursor: pointer;
cursor: hand;*/
border:0px; 
}
#left_scroll, #right_scroll{
float:left; 
height:85px; 
width:15px; 
background: #C0C0C0; 
}
#left_scroll img, #right_scroll img{
/*styling*/
cursor: pointer;
cursor: hand;
}

