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

#carousel_inner {
float:left; /* important for inline positioning */
width:1000px; /* important (this width = width of list item(including margin) * items shown */ 
overflow: hidden;
position:relative;
margin-bottom:25px;
}

#carousel_inner-one {
float:left; /* important for inline positioning */
width:1000px; /* important (this width = width of list item(including margin) * items shown */ 
overflow: hidden;
position:relative;
}

#carousel_ul {
position:relative;
left:0px; /* 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;
width:9999px; /* important */
padding:0px;
}
#carousel_ul-one {
position:relative;
left:0px; /* 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;
width:9999px; /* important */
padding:0px;
}

#carousel_ul li{
width:220px; float:left;
}
#carousel_ul-one li{
float: left; /* slideshow image height and width */                                    
width:178px;
height:140px;

}

#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*/
padding:0px;
}

#carousel_ul-one 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*/
padding:0px;
}

#left_scroll, #right_scroll{
float:left; 
margin-right:10px;
padding:0px;
}
#left_scroll-one, #right_scroll-one{
float:left; 
margin-right:0px;
padding:0px;
}
#left_scroll img, #right_scroll img{
border:0; /* remove the default border of linked image */
/*styling*/
cursor: pointer;
cursor: hand;
padding:80px 0 0 12px;
margin:0px;
}

#left_scroll-one img, #right_scroll-one img{
border:0; /* remove the default border of linked image */
/*styling*/
cursor: pointer;
cursor: hand;
padding:70px 10px 0 10px;
margin:0px;
}


