/* CSS Document */

/* CSS Document */

@charset "utf-8";
.pagination {
    text-align: center;
    padding: 80px 0 40px 0;
    overflow: hidden;
}    
.pagination a {
    text-decoration: none;
	color: #fff;
	width: 28px;
	height: 28px;
	font-size: 14px;
	display: inline-block;
}

.pagination a, .pagination span {
	box-shadow: inset 1px 0 #dddad2, inset -1px 0 #dddad2, inset 0 1px #dddad2, inset 0 -1px #dddad2;
    width: 28px;
	height: 28px;
	line-height: 28px;
	font-size: 14px;
    margin-right: 5px;
	margin-bottom: 5px;
	border-radius: 4px;
	display: inline-block;
	color: #333;
}

.pagination .current {
    background: #707070;
    color: #fff;
}

.pagination .current.prev, .pagination .current.next{
	color: #333;
	background: #f7f6f3;
}

.pagination a.prev,
.pagination a.next,
.pagination span.prev,
.pagination span.next {
	width: 8px;
    height: 13px;
    border-radius: 0;
    border: none;
	box-shadow: none;
	margin-bottom: 0;
	margin-right: 0;
	display: inline-block;
	padding: 0;
}

.pagination a.prev {
    background: url(../images/arrow5.png) no-repeat;
    margin-right: 10px;
}

.pagination a.next {
    background: url(../images/arrow6.png) no-repeat;
    margin-left: 10px;
}