@charset "utf-8";
/* CSS Document */
.stepcarousel{
	border: 10px solid blue;
	overflow: scroll; /*leave this value alone*/
	width: 320px; /*Width of Carousel Viewer itself*/
	height: 255px; /*Height should enough to fit largest content's height*/
	position: relative;
	left: 15px;
	top: 10px;
}

.stepcarousel .belt{
	left: 5px;
	top: 3px;
	position:absolute;
	width: 319px;
	height: 250px;
}

.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*/
	width: 300px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
	height:245px;
}

