/* apply the gallery design */
#gallery_container {
	width: 100%;
	height: 110px;
	margin: 0px auto;
	background: #000;
	padding: 20px 0px;
	overflow: hidden;
	display: block;
	position:relative;
}
/* the width is set to show the number of thumbnails that will be visible */
#thumb_container{
	position: relative;
	overflow: hidden;
	width: 100%px;
	height: 110px;
	margin: 0px auto;
}
/* the thumbnails container */
#thumbs {
	white-space: nowrap;
	display: block;
	position: relative;
}

#thumbs a {
	padding: 0px;
	margin: 0px;
}
#thumbs a img {
	border: none;
}

/* the forward and backward buttons */
.addfwd {
	display: block;
	position: absolute;
	cursor: pointer;
	width: 25px;
	height: 110px;
	top: 22px;
	right: 0px;
	background: url(../images/gallery_fwd.gif) no-repeat;
}
.addbkwd {
	display: block;
	position: absolute;
	cursor: pointer;
	width: 25px;
	height: 110px;
	top: 22px;
	left: 0px;
	background: url(../images/gallery_back.gif) no-repeat;
}
/* thumbnail slider end */
