/*
 * Restore native browser text selection.
 *
 * site.min.css contains an older branded green selection rule. Use the
 * browser's standard system highlight colors instead.
 */
::selection {
    background-color: Highlight;
    color: HighlightText;
}

::-moz-selection {
    background-color: Highlight;
    color: HighlightText;
}