.gallery {
	position: relative;
	border-top: 1px solid #C2C2C2;
	border-bottom: 1px solid #C2C2C2;
	margin: 10px 0px;
	padding: 10px 0px;
}
.gallery .left,
.gallery .right {
	background-repeat: no-repeat;
	height: 175px;
    position: absolute;
    top: 10px;
    width: 41px;
	opacity: 0.75;
}
.gallery .left {
	background-image: url("../img/arrow-left.png");
	background-position: left center;
	left: 0px;
}
.gallery .right {
	background-image: url("../img/arrow-right.png");
	background-position: right center;
	right: 0px;
}
.gallery .left:hover,
.gallery .right:hover {
	opacity: 1;
}
.gallery .left span,
.gallery .right span {
	display: none;
}
.gallery .gallery-container {
	width: 580px;
	overflow: hidden;
}
.gallery .gallery-slider {
	overflow: hidden;
	position: relative;
	height: 175px;
}
.gallery ul {
	list-style: none;
	overflow: hidden;
	margin: 0px !important;
	padding: 0px;
	position: absolute;
	left: 0px;
}
.gallery li {
	float: left;
}
.gallery li img {
	padding-right: 10px;
}
.gallery li:last-child img {
	padding-right: 0px;
}