	/* --- Bootstrap table styling only --- */

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  background-color: transparent;
  border-collapse: collapse;
}

.table > thead > tr > th,
.table > tbody > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  border-bottom: 2px solid #ddd;
  font-weight: bold;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td {
  border: 1px solid #ddd;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > td {
  padding: 5px;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
