/* pager wrapper, div */
.tablesorter-pager {
    padding: 5px;
}

/* pager wrapper, in thead/tfoot */
td.tablesorter-pager {
    background-color: #e6eeee;
    margin: 0; /* needed for bootstrap .pager gets a 18px bottom margin */
}

/* pager navigation arrows */
.tablesorter-pager img {
    vertical-align: middle;
    margin-right: 2px;
    cursor: pointer;
}

/* pager output text */
.tablesorter-pager .pagedisplay {
    padding: 0 5px 0 5px;
    width: auto;
    white-space: nowrap;
    text-align: center;
}

/* pager element reset (needed for bootstrap) */
.tablesorter-pager select {
    margin: 0;
    padding: 0;
}

/*** css used when "updateArrows" option is true ***/
/* the pager itself gets a disabled class when the number of rows is less than the size */
.tablesorter-pager.disabled {
    display: none;
}

/* hide or fade out pager arrows when the first or last row is visible */
.tablesorter-pager .disabled {
    /* visibility: hidden */
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: default;
}

table.tablesorter th {
    text-align: left;
}

table.tablesorter th.tablesorter-headerAsc {
    background: url(../images/asc.gif) 0px center no-repeat;
    padding-left: 15px;
}

table.tablesorter th.tablesorter-headerDesc {
    background: url(../images/desc.gif) 0px center no-repeat;
    padding-left: 15px;
}

table.tablesorter th.tablesorter-headerUnSorted:not(.sorter-false) {
    background-image: url(../images/bg.gif);
    cursor: pointer;
    font-weight: bold;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 20px;
    border-right: 1px solid #dad9c7;
    margin-left: -1px;
}

table.tablesorter #cb {
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 10px;
    text-align: center;
}