
/* Add a dashed underline to acronyms. */ span.acronym {
        border-bottom:1px dashed green;
}
span.acronym:hover {
        color: green;
        border-bottom:1px dashed lightgreen;
} /* Make spoilers invisible, so that you need to select them with the mouse. */
span.spoiler {
        background-color: black;
        color: black;
} /* Align columns to the top, and add some space between them. */
table.bbcode_columns {
        border-collapse: collapse;
        margin-top: 1em;
        margin-bottom: 1em;
}
table.bbcode_columns td.bbcode_column {
        padding: 0 1em;
        vertical-align: top;
}
table.bbcode_columns td.bbcode_firstcolumn {
        border-left: 0;
        padding-left: 0;
} /* Wrap quotes in a big blue box. */
div.bbcode_quote {
        border: 1px solid blue;
        margin: 0.5em 0;
}
div.bbcode_quote { border: 1px solid #68C; margin: 0.5em 0; }
div.bbcode_quote_head { background-color: #68C; color: #FFF; font-weight: bold; padding: 0.25em 0.5em; }
div.bbcode_quote_body { background-color: #F0F8FF; color: #000; padding: 0.5em 1em; }
div.bbcode_quote_head a:link { color: #FF7; }
div.bbcode_quote_head a:visited { color: #FF7; }
div.bbcode_quote_head a:hover { color: #FFF; text-decoration: underline; }
div.bbcode_quote_head a:active { color: #FFF; text-decoration: underline; }

} /* Wrap code in a big blue box. */
div.bbcode_code {
        border: 1px dashed #999; background-color: #FFF;
}
div.bbcode_code_head {
        font-weight: bold; margin: 1em 0 0.25em 1em; color: #630;
        page-break-inside:avoid; page-break-after:avoid;
}
div.bbcode_code_body {
        border: 1px dashed #DCB; background-color: #FED; padding: 0.5em 1em; margin: 0 1em 1em 1em;
        page-break-inside:avoid; page-break-before:avoid;
}
