.sbnation-tooltip {
  color: #444444;
  border-bottom: 2px dotted #c52126;
  position: relative;
  cursor: pointer;
}

.sbnation-tooltip:hover, .sbnation-tooltip:active, .sbnation-tooltip:visited {
  text-decoration: none;
  color: #444444;
}

.sbnation-tooltip .sbnation-tooltip-interior {
  display: none;
  position: absolute;
  bottom: 100%;
  font-family: "Gotham SSm A","Gotham SSm B",Arial,sans-serif;
  left: 50%;
  width: 100px;
  font-weight: 100;
  background-color: #ffffff;
  border: 1px solid #444444;
  color: #444444;
  margin-bottom: 6px;
  font-size: 0.75em;
  padding: 3px;
  text-align: center;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.sbnation-tooltip .sbnation-tooltip-interior:after {
  content: "";
  display:block;
  width: 6px;
  height: 6px;
  border: 1px solid #444444;
  border-top-color: #ffffff;
  border-left-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 50%;
  margin: -4px 0 0 -6px;
  background-color: #ffffff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}