/*************
Metro Theme
*************/
/* table */
table.tablesorter-metro {
	margin:10px 0pt 15px;
	width: 100%;
	text-align: left;
}
table.tablesorter-metro thead tr th, table.tablesorter-metro tfoot tr th {
	padding: 4px;
}
table.tablesorter-metro tbody td {
	padding: 4px;
	vertical-align: top;
}

/* header/footer */
.tablesorter-metro .header,
.tablesorter-metro .tablesorter-header {
	padding-right: 15px;
	background-image: url(../../images/bg.gif);
	background-position: right center;
	background-repeat: no-repeat;
	cursor: pointer;
	white-space: normal;
}
.tablesorter-metro thead .headerSortUp,
.tablesorter-metro thead .tablesorter-headerSortUp,
.tablesorter-metro thead .tablesorter-headerAsc {
	background-image: url(../../images/asc.gif);
}
.tablesorter-metro thead .headerSortDown,
.tablesorter-metro thead .tablesorter-headerSortDown,
.tablesorter-metro thead .tablesorter-headerDesc {
	background-image: url(../../images/desc.gif);
}
.tablesorter-metro thead .sorter-false {
	background-image: none;
	cursor: default;
}

/* table processing indicator */
.tablesorter-metro .tablesorter-processing {
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-image: url() !important;
}

/* filter widget */
.tablesorter-metro .tablesorter-filter-row {
	background-color: #eee;
}
.tablesorter-metro .tablesorter-filter-row td {
	background-color: #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-metro .tablesorter-filter-row .disabled {
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: not-allowed;
}
/* hidden filter row */
.tablesorter-metro .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-metro .tablesorter-filter-row.hideme * {
	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-metro input.tablesorter-filter,
.tablesorter-metro select.tablesorter-filter {
	width: 95%;
	height: auto;
	margin: 0;
	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;
}
