@charset "utf-8";
/* CSS Document */
#carousel_container {
width: 600px;
height: 300px;
background:none;
padding-bottom:20px;
}
#carousel_inner {
float:left; /* important for inline positioning */
width:494px; /* important (this width = width of list item(including margin) * items shown */ 
height: 298px;
overflow: hidden;  /* important (hide the items outside the div) */
background:url(img/post.png);/* non-important styling bellow */
border:1px solid #59A4ED;

}

#carousel_ul {
position:relative;
left:-492px; /* important (this should be negative number of list items width(including margin) */
list-style-type: none; /* removing the default styling for unordered list items */
width:9999px; /* important */
/* non-important styling bellow */
padding-bottom:10px
}

#carousel_ul li{
float: left; /* important for inline positioning of the list items */                                    
width:452px;  /* fixed width, important */
/* just styling bellow*/
height:300px;
background: #eefdff;
padding:20px;
}

#carousel_ul li img {
border:1px solid #f5feff;
background:#000;
padding:5px;
width:30%;
height:30%;

}
#left_scroll, #right_scroll{
float:left; 
height:300px; 
width:50px; 
background: #none; 
}
#left_scroll img, #right_scroll img{
border:0; /* remove the default border of linked image */
/*styling*/
cursor: pointer;
cursor: hand;

}
