/*page*/

.page_bar {
    position: relative;
    line-height: 31px;
    height: 33px;
    margin: 40px 0;
    text-align: center;
    font-size: 12px;
}

.page_bar a,
.page_bar span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 12px;
    border: 1px solid #ccc;
    margin: 0 4px;
    text-align: center;
    border-radius: 3px;
    filter: progid: DXImageTransform.Microsoft.Gradient(startColorStr='#fefefe', endColorStr='#ececec', gradientType='0');
    background: -webkit-linear-gradient(top, #fefefe, #ececec);
    background: -moz-linear-gradient(bottom, #fefefe, #ececec);
    background: -o-linear-gradient(bottom, #fefefe, #ececec);
    background: linear-gradient(to bottom, #fefefe, #ececec);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.page_bar a.current,
.page_bar a:hover {
    color: #FFF;
    background: #5fa137;
    border-color: #5fa137
}

.page_bar a:not(.current):hover {
    border-color: #5fa137;
    background-color: #5fa137;
    color: #fff;
}

.page_bar span.current2 {
    margin-left: 8px;
}

