/* Enter Your Custom CSS Here */

/* Pagination */
.post-page-links {
    clear:both;
    position:relative;
    font-size:16px; /* Pagination text size */
    line-height:0px;
    float:right; /* Pagination float direction */
}

.post-page-links {
display:block;
    float:left;
    margin: 2px 2px 2px 2px;
    padding:10px 10px 10px 10px;
    text-decoration:none;
    width:auto;
    color:#fff; /* Pagination text color */
    background: #333; /* Pagination non-active background color */
    -webkit-transition: background .15s ease-in-out;
    -moz-transition: background .15s ease-in-out;
    -ms-transition: background .15s ease-in-out;
    -o-transition: background .15s ease-in-out;
    transition: background .15s ease-in-out;
}


.post-page-links a:hover{
    color:#fff;
    background: #33aaff; /* Pagination background on hover */
    padding:5px 5px 5px 5px;
}

.post-page-links .current{
    padding:5px 5px 5px 5px;
    background: #33aaff; /* Current page background */
    color:#fff;
}


