@charset "utf-8";
.gallery {
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow: hidden;
	height: 52px;
}
.gallery .prev,
.gallery .next {
	height: 100%;
	width: 20px;
	background-color: #EEEEEE;
	padding: 0px;
	margin: 0px;
	position: absolute;
	cursor: pointer;
	z-index: 99;
}
.gallery .prev {
	top: 0px;
	left: 0px;
	background-image: url(../images/prev.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.gallery .next {
	bottom: 0px;
	right: 0px;
	background-image: url(../images/next.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.gallery .horizontal {
	list-style-position: inside;
	list-style-image: none;
	list-style-type: none;
	margin: 0px 20px;
	padding: 0px;
	overflow: hidden;
	height: 52px;
	white-space: nowrap;
	position: absolute;
	z-index: 50;
	width: auto;
}
.gallery .horizontal li {
	list-style-position: inside;
	list-style-image: none;
	list-style-type: none;
	height: 52px;
	width: auto;
	margin: 0px 5px 5px 0px;
	border: 1px solid #DDDDDD;
	display: inline;
}

/** paged gallery **/
.paged-gallery {
	padding: 5px;
	margin: 5px;
}
.paged-gallery .nav {
	clear: both;
	margin-top: 10px;
}
.paged-gallery .nav a {
	margin-left: 5px;
}
.paged-gallery .page {}
.paged-gallery .page .gallery-item {
	float: left;
	width: 130px;
	text-align: left;
	margin-bottom: 10px;
	margin-right: 10px;
	line-height: 10px;
}
.paged-gallery .page .gallery-item img {
	text-align: center;
	vertical-align: middle;
}

