/* 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 { margin: 0.5em 0; }
div.bbcode_quote_head {	font-weight: bold; padding: 0.25em 0.5em; }
div.bbcode_quote_body { background-color:#FFEFDF; color: black; padding: 0.5em 1em; }

/* Wrap code in a big blue box. */
div.bbcode_code { margin: 0.5em 0; }
div.bbcode_code_head { font-weight: bold; padding: 0.25em 0.5em; }
div.bbcode_code_body { background-color:#FFEFDF; font: 10pt monospace; padding: 0.5em 1em; }

