
.stepcarousel{
position: relative; /*leave this value alone*/
border: 1px solid blue;
overflow: scroll; /*leave this value alone*/
width: 300px; /*Width of Carousel Viewer itself*/
height: 110px; /*Height should enough to fit largest content's height*/
margin-bottom:10px;

}

.stepcarousel .belt{
position: absolute; /*leave this value alone*/
left: 0;
top: 0;
}

.stepcarousel .panel{
float: left; /*leave this value alone*/
overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
margin: 10px; /*margin around each panel*/
padding-left:10px;
width: 120px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */

}
#carouseimg img{
	max-width:120px;
	max-height:90px;
	height:expression(this.height>this.width && this.height>90?90:true);
	width:expression(this.width>this.height && this.width>120?120:true);
}
