/*  Site-specific styles */

td.rotate {
    /* Something you can count on */
    height: 90px;
    white-space: nowrap;
}
td.rotate > div {
    transform:
        translate(-5px, 55px)
        rotate(270deg);
    width: 30px;
/* Safari */
    -webkit-transform:
        translate(-5px, 55px)
        rotate(-90deg);
}