﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="select"] {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}
/* Jquery Paging */
.pager {
    list-style: outside none none;
    margin: 20px 0;
    text-align: center;
}

    .pager:before, .pager:after {
        content: "";
        display: table;
        line-height: 0;
    }

    .pager:after {
        clear: both;
    }

    .pager li {
        display: inline;
    }

        .pager li > a, .pager li > span {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
            display: inline-block;
            padding: 5px 14px;
        }

            .pager li > a:hover, .pager li > a:focus {
                background-color: #f5f5f5;
                text-decoration: none;
            }

    .pager .next > a, .pager .next > span {
        float: right;
    }

    .pager .previous > a, .pager .previous > span {
        float: left;
    }

    .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
        background-color: #fff;
        color: #999;
        cursor: default;
    }

    .pager ul.pages {
        border-radius: 4px;
        display: inline-block;
        margin: 0 0 10px;
        padding-left: 0;
    }

.pager {
    cursor: pointer;
    float: right;
    margin: 4px 0 0;
}

    .pager ul.pages li {
        background-color: #fff;
        border: 1px solid #ddd;
        color: #337ab7;
        display: inline;
        float: left;
        font-size: 0.75rem;
        line-height: 1;
        margin-left: -1px;
        padding: 6px 10px;
        position: relative;
        text-decoration: none;
    }

        .pager ul.pages li.pgEmpty {
            color: #aaaaaa;
            cursor: not-allowed;
        }

            .pager ul.pages li.pgEmpty:hover {
                color: #aaaaaa;
            }

    .pager > li:first-child, .pager > li:first-child {
        border-bottom-left-radius: 4px;
        border-top-left-radius: 4px;
        margin-left: 0;
    }

    .pager > li:last-child, .pager > li:last-child {
        border-bottom-right-radius: 4px;
        border-top-right-radius: 4px;
    }

    .pager ul.pages li:hover {
        background-color: #eee;
        border-color: #ddd;
        color: #23527c;
    }

    .pager ul.pages li.pgCurrent {
        background-color: #3276b1;
        border-color: #3276b1;
        color: #fff;
        cursor: default;
        font-weight: bold;
        z-index: 2;
    }

        .pager ul.pages li.pgCurrent:hover {
            background-color: #fec519;
            border-color: #fec519;
        }
/* Jquery Paging */