table.ts tr.tsTitles th.sortable {
  position: relative;
  cursor: pointer;
}
table.ts tr.tsTitles th.sortable:after {
  content: '';
  width: 0px;
  height: 0px;
  background-color: transparent;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -5px;
  border-left: 5px solid #333;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
table.ts tr.tsTitles th.desc:after,
table.ts tr.tsTitles th.asc:after {
  margin-top: -2.5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
table.ts tr.tsTitles th.desc:after {
  border-top: 5px solid #333;
  border-bottom: 0px solid transparent;
}
table.ts tr.tsTitles th.asc:after {
  border-top: 0px solid transparent;
  border-bottom: 5px solid #333;
}
