.image-overlay { list-style: none; text-align: left; }
.image-overlay li { display: inline; }
.image-overlay a:link, .image-overlay a:visited, .image-overlay a:hover, .image-overlay a:active { text-decoration: none;  }
.image-overlay a:link img, .image-overlay a:visited img, .image-overlay a:hover img, .image-overlay a:active img { border: none;  }
.image-overlay a
{
	margin: 0px;
	float: left;
	background: #fff;
	border: solid 0px;
	overflow: hidden;
	position: relative;
	
}
.image-overlay img
{
   
	position: absolute;
    top: 0;
    left: 0;
    border: 0;
}
.image-overlay .caption
{
	
		float: left;
	position: absolute;
	background-color: #000;
	width: 100%;
	cursor: pointer;
	/* The way to change overlay opacity is the follow properties. Opacity is a tricky issue due to
		longtime IE abuse of it, so opacity is not offically supported - use at your own risk. 
		To play it safe, disable overlay opacity in IE. */
    /* For Firefox/Opera/Safari/Chrome */
	opacity: .8;
    /* For IE 5-7 */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	/* For IE 8 */
    -MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.image-overlay .caption h1, .image-overlay .caption h2, .image-overlay .caption h3,
.image-overlay .caption h4, .image-overlay .caption h5, .image-overlay .caption h6
{
	
	margin: 10px 0 10px 2px;
    font-family: Helvetica;
	font-size: 12px;
    font-weight: normal;
	color: #FFF;
	padding: 0 0 0 5px;
	
}
.image-overlay p
{
	
	text-indent: 0;
	margin: 10px;
	font-size: 1em;
	
}

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


}

#carousel_ul {
position:relative;
left:-234px; /* 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{
float: left; /* important for inline positioning of the list items */
width:234px;  /* fixed width, important */
/* just styling bellow*/
padding:0px;
height:251px;
margin-top:10px;
margin-bottom:10px; 
margin-left:5px; 
margin-right:5px; 
}

#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;
border:0px; 
}
#left_scroll, #right_scroll{
float:left; 
height:15px; 
width:15px;
margin-top: 70px;
}
#left_scroll img, #right_scroll img{
	/*styling*/ 
cursor: pointer;
}  