/*
 * jQuery Basic Table
 * Author: Jerry Low
 */

table.bt thead { 
  display: none; color:#333;text-transform:capitalize;font-weight: normal;
}

table.bt tbody td {
  display: block;
  vertical-align: top; color:#333;text-transform:capitalize;font-weight: normal;
}

table.bt tbody td:before {
	content: attr(data-th) ": ";
	font-weight: normal;
	width: 5.5em;
	display: inline-block;
	color: #333;
	text-transform: capitalize; vertical-align:top;
}

table.bt tbody td.bt-hide {
  display: none; color:#333;text-transform:capitalize;font-weight: normal;
}

table.bt tbody td .bt-content {
  vertical-align: center;  color:#333;text-transform:capitalize;font-weight: normal;
}