.overview strong {
  font-weight: bold;
}

.overview em {
  font-style: italic;
}

.overview table {
  background: #f5f5f5;
  border-collapse: separate;
  box-shadow: inset 0 1px 0 #fff;
  font-size: 12px;
  line-height: 24px;
#        font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
#        font-size: 0.9em;
  text-align: left;
}

.overview th {
  background: url(/contractdb/img/noise-diagonal.png), linear-gradient(#777, #444);
  border-left: 1px solid #555;
  border-right: 1px solid #777;
  border-top: 1px solid #555;
  border-bottom: 1px solid #333;
  box-shadow: inset 0 1px 0 #999;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  position: relative;
  text-shadow: 0 1px 0 #000;
}

.overview th:after {
  background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.08));
  content: '';
  display: block;
  height: 25%;
  left: 0;
  margin: 1px 0 0 0;
  position: absolute;
  top: 25%;
  width: 100%;
}

.overview th:first-child {
  border-left: 1px solid #777
  box-shadow: inset 1px 1px 0 #999;
}

.overview th:last-child {
  box-shadow: inset -1px 1px 0 #999;
}

.overview td {
  border-right: 1px solid #fff;
  border-left: 1px solid #e8e8e8;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 15px;
  position: relative;
  transition: all 300ms;
}

.overview td:first-child {
  box-shadow: inset 1px 0 0 #fff;
}

.overview td:last-child {
  border-right: 1px solid #e8e8e8;
  box-shadow: inset -1px 0 0 #fff;
}

.overview tr {
  background: url(/contractdb/img/noise-diagonal.png);
}

.overview tr:nth-child(odd) td {
  background: url(/contractdb/img/noise-diagonal.png);
}

.overview tr:nth-child(even) td {
  background: url(/contractdb/img/noise-diagonal.png);
}

.overview tr:last-of-type td {
  box-shadow: inset 0 -1px 0 #fff;
}

.overview tr:last-of-type td:first-child {
  box-shadow: inset 1px -1px 0 #fff;
}

.overview tr:last-of-type td:last-child {
  box-shadow: inset -1px -1px 0 #fff;
}

.overview tbody:hover td {
  color: transparent;
  text-shadow: 0 0 3px #aaa;
}

.overview tbody:hover tr:hover td {
  color: #444;
}



.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip_red {
    visibility: hidden;
    width: 120px;
    background-color: red;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}
.tooltip:hover .tooltip_red {
    visibility: visible;
}

.tooltip .tooltip_green {
    visibility: hidden;
    width: 120px;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}
.tooltip:hover .tooltip_green {
    visibility: visible;
}

.tooltip .tooltip_blue {
    visibility: hidden;
    width: 120px;
    background-color: blue;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}
.tooltip:hover .tooltip_blue {
    visibility: visible;
}

.tooltip .tooltip_orange {
    visibility: hidden;
    width: 120px;
    background-color: orange;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}
.tooltip:hover .tooltip_orange {
    visibility: visible;
}

.tooltip .tooltip_purple {
    visibility: hidden;
    width: 120px;
    background-color: purple;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}
.tooltip:hover .tooltip_purple {
    visibility: visible;
}
