@charset "utf-8";
/* CSS Document */

acronym {
    cursor: help;
    border-bottom: 1px dotted #b45454;
}

/* <span class="strikeout"><span>this text is black with a red line through it</span></span> */
span.strikeout {
    text-decoration: line-through;
    color: red;
}

span.strikeout span {
    color: black;
}

/* http://paularmstrongdesigns.com/weblog/text/10/stop-superscripts-from-breaking-line-heights-once-and-for-all */
sup, sub {
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
}
sub { top: 0.4em; }
