/* tables */
table.tablesorter {
    font-family:arial;
    /* background-color: #CDCDCD; */
    font-size: 8pt;
    width: 100%;
    text-align: left;
	border-spacing: 0;
	border: 1px solid #d0d0d0
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
    /* background-color: #e6EEEE; */
    border-bottom: 1px solid #d0d0d0;
    font-size: 8pt;
    padding: 4px;
	font-weight: normal;
	text-align: center;
	
}
th {
	background-color: #C7C7C7;
	border: 1px solid #fff;
	cursor: pointer;
	background-repeat: no-repeat;
    background-position: center bottom;

}
th.tablesorter-headerUnSorted {
	background-color: #F0F0F0;
	border: 1px solid #F0F0F0;
	
}
th.tablesorter-headerAsc {
	background-image: url(../../img/sortDesc.png);

}
th.tablesorter-headerDesc {
	background-image: url(../../img/sortAsc.png);
}
table.tablesorter thead tr .header {
    /* background-image: url(bg.gif); */
    background-repeat: no-repeat;
    background-position: center bottom;
    cursor: pointer;
	padding-bottom: 11px;
}
table.tablesorter tbody td {
    color: black;
    padding: 4px;
    /*background-color: #FFF;*/
    vertical-align: middle;
	border-bottom: 1px solid darkgray;
	border-right: 1px dashed darkgrey;
}
table.tablesorter tbody tr.odd td {
    /*background-color:#F0F0F6;*/
}
table.tablesorter thead tr .headerSortUp {
    background-image: url(asc.gif);
}
table.tablesorter thead tr .headerSortDown {
    background-image: url(desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
    background-color: #8dbdd8;
}
/* filter row */
.tablesorter-filter-row td {
    background: #eee;
    line-height: normal;
    text-align: center; /* center the input */
    -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;
	background-image: url(../../img/tablefilterbg.jpg);
	padding: 3px
}
/* optional disabled input styling */
.tablesorter-filter-row .disabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: not-allowed;
}

/* hidden filter row */
.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-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-filter {
    width: 98%;
    height: inherit;
    /* margin: 4px; */
    /* 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;
	font-size: 8pt;
}

