
/*the individual boxes*/
.box {
	width: 54px;
	height: 62px;
	position: absolute;
	top: 0px;
}

/*the images in the boxes*/
.box img {
	cursor: pointer;
}

/*just a holder item*/
#scrollGallery {
	position: relative;
}

/*the main holder*/
#scrollGallery #scrollContainer {
	width: 590px;
	height: 62px;
}

/*the div with the right arrow in it*/
#scrollGallery #scrollContainer #rightScroll {
	width: 25px;
	float: right;
	height: 62px;
	cursor: pointer;
}

/*the div with the left arrow in it*/
#scrollGallery #scrollContainer #leftScroll {
	width: 25px;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 62px;
	cursor: pointer;
}

/*the middle div with all the tumbnails.*/
#scrollGallery #scrollContainer #thumbnails{
	width: 540px;
	position: absolute;
	left: 25px;
	top: 0px;
	height: 62px;
	overflow: hidden;
}