@charset "utf-8";
 
.pagination{
    width:100%;
    height:100%;
    text-align: center;
}
 
.pagination a {
  text-decoration: none;
	color: #006E6B;
  border-radius: 50%;
}
 
.pagination a, .pagination span {
    display: inline-block;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0.2rem;
    margin-right: 5px;
	  margin-bottom: 5px;
}
 
.pagination .current {
    background: #006E6B;
    color: #fff;
    border-radius: 50%;
}
 
.pagination .current.prev, .pagination .current.next{
	color:#999;
	border-color:#999;
	background:#dedede;
}
 