/* Calculator Tables */

table.table-calculator {
	width: 100%;
	border: 1px solid #000000;
	border-collapse: collapse;
}

table.table-calculator th,
table.table-calculator td {
	padding: 8px;
	vertical-align: top;
	border: 1px solid #000000;
}

/* Responsive Tables */

table.table-responsive {
  width: 100%;
  border-collapse: collapse;
}

table.table-responsive tr {
  border: 1px solid #CCCCCC;
}

table.table-responsive th {
  padding: 7px;
  background: #DDDDDD;
}

table.table-responsive th a {
  color: #000000;
}

table.table-responsive td {
  padding: 7px;
  background: #FFFFFF;
}

table.table-responsive td p {
  margin: 0px;
}

table.table-responsive tr:nth-child(2n+1) td {
  background: #F6F6F6;
}

table.table-responsive tr th.align-left,
table.table-responsive tr td.align-left {
  text-align: left;
}

table.table-responsive tr th.align-center,
table.table-responsive tr td.align-center {
  text-align: center;
}

table.table-responsive tr th.align-right,
table.table-responsive tr td.align-right {
  text-align: right;
}

@media only screen and (max-width: 640px) {
  table.table-responsive {
    font-size: 12px;
  }

  table.table-responsive tr {
    display: block;
    margin: 0px 0px 10px 0px;
  }

  table.table-responsive thead {
    display: none;
  }

  table.table-responsive td {
    display: block;
    text-align: right !important;
    border-bottom: 1px dotted #CCCCCC;
  }

  table.table-responsive td:last-of-type {
    border: 0px;
  }

  table.table-responsive td:before {
    content: attr(data-th) ": ";
    float: left;
    margin: 0px 10px 0px 0px;
    font-weight: bold;
    text-align: left;
  }
}