table.tablesorter .tablesorter-headerUnSorted {
	background-image: url(images/tablesorter/bg.gif);
	background-repeat: no-repeat;
	background-position:0% 50%;
	cursor: pointer;
}
table.tablesorter .tablesorter-headerAsc{
	background-image: url(images/tablesorter/asc.gif);
	background-repeat: no-repeat;
	background-position:0% 50%;
	cursor: pointer;
}
table.tablesorter .tablesorter-headerDesc{
	background-image: url(images/tablesorter/desc.gif);
	background-repeat: no-repeat;
	background-position:0% 50%;
	cursor: pointer;
}
table.tablesorter .sorter-false{
	background-image:none;
	cursor: auto;
}
table.tablesorter .tablesorter-headerAsc, table.tablesorter .tablesorter-headerDesc {
background-color: #8dbdd8;
}


/* ±¾¶ÎžéfilterÓÃcss */
/* filter row */
.tablesorter-filter-row td {
  background: #eee;
  line-height: normal;
  text-align: left; /* 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;
}
/* 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: 90%;
  height: inherit;
  margin: 0px;
  padding: 0px;
  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;
}