/*
Default style for WP-PageNavi plugin

http://wordpress.org/extend/plugins/wp-pagenavi/
*/

.wp-pagenavi {
    display: inline-block;
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
}
.wp-pagenavi:before {
    content: 'Страницы';
    display: block;
    text-align: center;
    background: #b5ce2c;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #fff;
    height: 20px;
    line-height: 18px;
    font-size: 12px;
    font-family: "Open Sans",sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1px;
}
.wp-pagenavi a, .wp-pagenavi span {
    display: inline-block;
    line-height: normal;
    letter-spacing: normal;
    font-size: 14px;
    text-align: center;
    display: block;
    margin-right: 1px;
    float: left;
    border: 1px solid #cccccc;
    width: 32px;
    height: 26px;
    line-height: 24px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #ededed 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ededed));
    background: -webkit-linear-gradient(top, #ffffff 0%,#ededed 100%);
    background: -o-linear-gradient(top, #ffffff 0%,#ededed 100%);
    background: -ms-linear-gradient(top, #ffffff 0%,#ededed 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed',GradientType=0);
    color: #4e4e4e;
    font-family: "Open Sans",sans-serif;
    font-size: 20px;
    text-decoration: none;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border: 1px solid #b5ce2c;
    color: #b5ce2c;
}

.wp-pagenavi span.current {
	font-weight: bold;
}
