  #heavyTable table {
  width: 100%;
  max-width: 650px;
  height: 320px;
  border-collapse: collapse;
  border: 1px solid black /* #38678f */;
  margin: 50px auto;
  background: white;
}
th {
  background: black;
  height: 54px;
  width: 25%;
  font-weight: lighter;
  text-shadow: 0 1px 0 black /* #38678f */;
  color: white;
  border: 1px solid black /* #38678f */;
  box-shadow: inset 0px 1px 2px black;
  transition: all 0.2s;
  text-align: center;
  font-weight: bold;
}
tr {
  border-bottom: 1px solid #cccccc;
}
tr:last-child {
  border-bottom: 0px;
}
#heavyTable td {
  border-right: 1px solid #cccccc;
  padding: 10px;
  transition: all 0.2s;
  font-size: 12px;
  vertical-align: top;
}
td:last-child {
  border-right: 0px;
}
td.selected {
  background: #d7e4ef;
  z-index: ;
}
td input {
  font-size: 14px;
  background: none;
  outline: none;
  border: 0;
  display: table-cell;
  height: 100%;
  width: 100%;
}
td input:focus {
  box-shadow: 0 1px 0 black;
  color: black;
}
::-moz-selection {
  background: black;
  color: white;
}
::selection {
  background: black;
  color: white;
}
.heavyTable {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 5s infinite;
}