﻿/*************
Default Theme
*************/
/* overall */
.tablesorter-CDM {
    width: 100%;
    color: #000000;
    background-color: #fff;
    border-spacing: 0;
    text-align: left;
}
    /* BGK the following style was missing, and I added it*/
    .tablesorter-CDM thead tr th, tablesorter-CDM tfoot tr th {
        background-color: #022b57;
        border: 1px solid #FFF;
    }

table.tablesorter table.info tbody th, table.tablesorter table.info td {
    border: #000 1px solid;
}


table.tablesorter table.info tbody th {
    background: #eee;
}

table.tablesorter tr.selected td {
    background-color: #3cb0d8;
}

table.tablesorter tr.even:hover td,
table.tablesorter tr.odd:hover td {
    background-color: #D0D7F3;
}

table.tablesorter .menuOpen td {
    background-color: #D0D7F3;
}

.tablesorter-header-inner {
    white-space: nowrap;
}
/* BGK needed the following or the pager buttons rolled over the panels */
.tablesorter-pager .disabled {
    opacity: 0;
}

/* header */
.tablesorter-CDM th,
.tablesorter-CDM thead td {
    color: #FFFFFF;
    background-color: #fff;
    border-collapse: collapse;
    border-bottom: #ccc 2px solid;
    padding: 0;
}

.tablesorter-CDM tbody td {
    padding-left: 3px;
}

.tablesorter-CDM tfoot th,
.tablesorter-CDM tfoot td {
    border: 0;
}

.tablesorter-CDM .header,
.tablesorter-CDM .tablesorter-header {
    background-image: url(/Content/Images/tablesorter/bootstrap-white-unsorted.png);
    background-position: center right;
    background-repeat: no-repeat;
    cursor: pointer;
    white-space: normal;
    padding-left: 2px;
    padding-right: 12px;
}

.tablesorter-CDM thead .headerSortUp,
.tablesorter-CDM thead .tablesorter-headerSortUp,
.tablesorter-CDM thead .tablesorter-headerAsc {
    background-image: url(/Content/Images/tablesorter/bootstrap-white-asc.png);
}

.tablesorter-CDM thead .headerSortDown,
.tablesorter-CDM thead .tablesorter-headerSortDown,
.tablesorter-CDM thead .tablesorter-headerDesc {
    background-image: url(/Content/Images/tablesorter/bootstrap-white-desc.png);
}

.tablesorter-CDM thead .sorter-false {
    background-image: none;
    cursor: default;
}

/* tfoot */
.tablesorter-CDM tfoot .tablesorter-headerSortUp,
.tablesorter-CDM tfoot .tablesorter-headerSortDown,
.tablesorter-CDM tfoot .tablesorter-headerAsc,
.tablesorter-CDM tfoot .tablesorter-headerDesc {
    border-top: #000 2px solid;
}

/* tbody */
.tablesorter-CDM td {
    background-color: #fff;
    border-bottom: #ccc 1px solid;
    vertical-align: bottom;
}

/* hovered row colors */
.tablesorter-CDM tbody > tr:hover > td,
.tablesorter-CDM tbody > tr.even:hover > td,
.tablesorter-CDM tbody > tr.odd:hover > td {
    background: #fff;
    color: #000;
}

/* table processing indicator */
.tablesorter-CDM .tablesorter-processing {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    /* background-image: url(../addons/pager/icons/loading.gif) !important; */
    background-image: url(/Content/Images/tablesorter/metro-loading.png);
}

/* Zebra Widget - row alternating colors */
.tablesorter-CDM tr.odd td {
    background-color: #dfdfdf;
}

.tablesorter-CDM tr.even td {
    background-color: #efefef;
}

/* Column Widget - column sort colors */
.tablesorter-CDM tr.odd td.primary {
    background-color: #bfbfbf;
}

.tablesorter-CDM td.primary,
.tablesorter-CDM tr.even td.primary {
    background-color: #d9d9d9;
}

.tablesorter-CDM tr.odd td.secondary {
    background-color: #d9d9d9;
}

.tablesorter-CDM td.secondary,
.tablesorter-CDM tr.even td.secondary {
    background-color: #e6e6e6;
}

.tablesorter-CDM tr.odd td.tertiary {
    background-color: #e6e6e6;
}

.tablesorter-CDM td.tertiary,
.tablesorter-CDM tr.even td.tertiary {
    background-color: #f2f2f2;
}

/* caption */
caption {
    background: #fff;
}

/* filter widget */
.tablesorter-CDM .tablesorter-filter-row td {
    background: #eee;
    border-bottom: #ccc 1px solid;
    line-height: normal;
    padding-left: 3px;
    -webkit-transition: line-height 0.1s ease;
    -moz-transition: line-height 0.1s ease;
    -o-transition: line-height 0.1s ease;
    transition: line-height 0.1s ease;
}
/* optional disabled input styling */
.tablesorter-CDM .tablesorter-filter-row .disabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: not-allowed;
}
/* hidden filter row */
.tablesorter-CDM .tablesorter-filter-row.hideme td {
    /*** *********************************************** ***/
    /*** change this padding to modify the thickness     ***/
    /*** of the closed filter row (height = padding x 2) ***/
    padding: 2px;
    /*** *********************************************** ***/
    margin: 0;
    line-height: 0;
    cursor: pointer;
}

.tablesorter-CDM .tablesorter-filter-row.hideme .tablesorter-filter {
    height: 1px;
    min-height: 0;
    border: 0;
    padding: 0;
    margin: 0;
    /* don't use visibility: hidden because it disables tabbing */
    opacity: 0;
    filter: alpha(opacity=0);
}
/* filters */
.tablesorter-CDM .tablesorter-filter {
    width: 95%;
    height: auto;
    padding: 4px;
    background-color: #fff;
    border: 1px solid #bbb;
    color: #333;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: height 0.1s ease;
    -moz-transition: height 0.1s ease;
    -o-transition: height 0.1s ease;
    transition: height 0.1s ease;
}
/* rows hidden by filtering (needed for child rows) */
.tablesorter .filtered {
    display: none;
}

/* ajax error row */
.tablesorter .tablesorter-errorRow td {
    text-align: center;
    cursor: pointer;
    background-color: #e6bf99;
}

.tablesorter-pager {
    padding: 4px 0 0 0;
}
