﻿/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/


ul.simple-pagination {
    list-style: none;
}
.current.prev, .current.next {
    display: none;
}
.simple-pagination {
    padding: 0;
    margin: 0 auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: center;
}

    .simple-pagination ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
    }

    .simple-pagination li {
        list-style: none;
        padding: 0;
        margin: 0 5px;
        float: left;
    }


/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/

.light-theme a, .light-theme span {
    border: 0px;
    float: left;
    color: #cccccc;
    font-size: 20px;
    line-height: 24px;
    font-weight: 900;
    text-align: center;
    min-width: 14px;
    padding: 5px 12px;
    margin: 0 0px 0 0;
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    .light-theme a:link, .light-theme a:visited {
        color: #222222;
    }

    .light-theme a:hover, .light-theme a:active {
        text-decoration: none;
        color: #AECEE1;
    }

.light-theme li:first-child .current {
    color: #cccccc;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
}

.light-theme li:last-child .current {
    background: #fff;
    color: #cccccc;
    border: none;
    cursor: default;
}

.light-theme .current {
    background: #AECEE1 !important;
    color: #222;
    cursor: default;
}

.light-theme .active {
    background: #AECEE1 !important;
}

.light-theme .ellipse {
    background: none;
    border: none;
    font-weight: bold;
    cursor: default;
}