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


#carousel_container {
width: 954px;
height: 77px;
margin: 0 0 20px 0;
padding: 0; 
background-color: #c6c6c6;
clear: both;}

#carousel_leftcap {
width: 120px;
height: 77px;
float: left;}

#carousel_inner {
float: left; /* important for inline positioning */
position: relative;
width: 720px; /* important (this width = width of list item(including margin) * items shown */ 
overflow: hidden;}  /* important (hide the items outside the div) */


#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 */

#carousel_ul li {
float: left; /* important for inline positioning of the list items */                                    
width: 144px;}  /* fixed width, important */

#carousel_ul li img {
.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: 77px; 
width: 37px; 
background: #c6c6c6;}

#left_scroll img, #right_scroll img {
border: 0; /* remove the default border of linked image */
/*styling*/
cursor: pointer;
cursor: hand;}

#carousel_rightcap {
width: 40px;
height: 77px;
float: left;}
