/* tables */
td.bordered a {
	display:block;
	height:100%;
	width:100%;
}

td.bordered a:hover {
	text-decoration: none;
}
	
table.tablesorter {
	margin:10px 0pt 15px;
	font-size: 8pt;
	width: 100%;
	text-align: left;
}

table.tablesorter thead tr th, table.tablesorter tfoot tr th {
	background-color: #d1e0e9;
}	

table.tablesorter tbody tr.odd  {
	background-color:#e9f0f4;	
}	

table.tablesorter tbody tr:hover {
	background: #c3d6e2 !important;
}

table.tablesorter thead tr th, table.tablesorter tfoot tr th {
	border: 1px solid #000;
	padding: 4px;
}

.header,
.tablesorter-header {
	background-image: url(../images/bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablesorter tbody td {
	padding: 4px;
	vertical-align: top;
}

.headerSortUp,
.tablesorter-headerSortUp,
.tablesorter-headerAsc {
	background-image: url(../images/asc.gif);
}

.headerSortDown,
.tablesorter-headerSortDown,
.tablesorter-headerDesc {
	background-image: url(../images/desc.gif);
}

/* 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;
}
/* 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: 95%;
  height: inherit;
  margin: 4px;
  padding: 4px;
  background-color: #fff;
  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;
}