/* CSS Document */

.stepcarousel {
	position: relative;
	overflow: scroll; /*leave this value alone*/
	width: 200px; /*Width of Carousel Viewer itself*/
	height: 600px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.stepcarousel .belt{
	position: absolute; /*leave this value alone*/
	left: 0;
	top: 0;
	margin: 0px;
	padding: 0px;
}

.stepcarousel .panel{
	float: left; /*leave this value alone*/
	overflow: hidden; /*margin around each panel*/
	width: 200px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
	padding: 0px;
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.stepcarousel .panel img {
	margin: 0px;
	padding-top: 5px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 8px;
}
.stepcarousel #back {
	position: absolute;
	left: 0px;
	bottom: 0px;
}
.stepcarousel #more {
	position: absolute;
	right: 0px;
	bottom: 0px;
}