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


#carousel_inner {
float:left; /* important for inline positioning */
width:392px; /* important (this width = width of list item(including margin) * items shown */ 
overflow: hidden;  /* important (hide the items outside the div) */
/* non-important styling bellow */
background: #FFFFFF;
margin:-10px;
}

#carousel_ul {
position:relative;
left:-392px; /* 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{
font-family:Arial, Helvetica, sans-serif;
text-align:center;
color:#CCCCCC;
float: left; /* important for inline positioning of the list items */                                    
width:392px;  /* fixed width, important */
/* just styling bellow*/
padding:0px;
height:270px;
background: #FFFFFF;
margin-top:0px;
margin-bottom:0px; 
 
}

#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{
position:relative;
float:left;
height:60px; 
width:35px;
float:left;
margin-left:-392px;
margin-top:238px;
}

#right_scroll{
float:left; 
height:60px; 
width:35px;
margin-top:238px;
position:relative;
margin-left:-33px;
}

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

}
#carousel_total{
margin:0 auto;
}


