#container{
position: relative;
top: 10px;
left: 100px;
height: 150px;
width: 790px; /* 3 images of 150px showing with a 10px margin = 3*(150) + 2*(10) = 470 */
overflow: hidden;
}
 
 
#container img{
position: absolute;
top: 0px;
height: 150px;
width: 150px;
cursor: pointer;
overflow: hidden;
}
 
#carouselLeft{
position: relative;
top: -80px;
left: 0px;
cursor: pointer;
}

#carouselRight{
position: relative;
top: -80px;
left: 900px;
cursor: pointer;
}