/* carousel */
.stepcarousel{
	position: relative; /*leave this value alone*/
	border: 10px solid black;
	overflow: scroll; /*leave this value alone*/
	width: 220px; /*Width of Carousel Viewer itself*/
	height: 80px; /*Height should enough to fit largest content's height*/
        border: 1px dashed black;
	}

.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: 5px; /*margin around each panel*/
	padding:0;
}
.stepcarousel .panel img {
	display: block;
}
#mygallery{
	width: 100%;
	height: 75px;
	background-color: #fff;
	clear: both;
	}

#mygallery .panel{
	font: bold 28px Arial;
	text-align: center;
	background-color: #fff;
	color: white;
	}


