#paginacao{
	height:70px;
	width:100%;
	padding-top:10px;
	margin-top:20px;
	display: flex;

}


#paginacao .btnPA a{
	text-decoration:none;
	color:#FC0;
	display:block;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
	padding:18px 15px;

}

#paginacao .btnPA.active a{
	font-size:34px;
}



/* Clip text element */
.btnPA {
	float:left;	
    position: relative;
    display: inline-block;
    margin: 0px 5px;
    text-align: center;
    /* Color fallback */
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btnPA:before,
.btnPA:after {
    position: absolute;
    content: '';
}

/* Background */
.btnPA:before {
    z-index: -2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: inherit;
	border-radius:11px;	
}

/* Text Background (black zone) */
.btnPA:after {
    position: absolute;
    z-index: -1;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    background-color: #191919;
	border-radius:10px;
}

#paginacao .active.btnPA:after{
    background-color: #444;
}



/* Change the background position to display letter when the black zone isn't here */
.btnPA--no-textzone:before {
    background-position: 0 0;
}

.btnPA--no-textzone:after {
    content: none;
}

/* Use Background-size cover for photo background and no-repeat background */
.btnPA--cover,
.btnPA--cover:before {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
            background-size: cover;
  background-position: 50% 50%;
}

.btnPA {
    background-image: url(../images/ouro.jpg);
}

