/*
  File name: _quote.css -- Styles for Quote and Blockquote
  
  This CSS file declares the styles used in the Quotes and Blockquotes

  Author:    'o-Dzin Tridral

  Revision history:

  version : yyyy-mm-dd : account name : description
  01.01   : 2006-04-04 : TridralO     : Written
*/

/*
  Set quotes to be used in different languages
*/

[lang|=fr] > *  { quotes: "«" "»" "\2039" "\203A" }
[lang|=en] > *  { quotes: "\201C" "\201D" "\2018" "\2019" }
[lang|=de] > *  { quotes: "„" "“" "‚" "‘" }
[lang|=it] > *  { quotes: "«" "»" "‹" "›" }
[lang|=hu] > *  { quotes: "„" "”" "»" "«" }

/*
  Set quote style to be italic and to add quote marks
*/

q { font-style: italic; }
q:after  { content: close-quote }
q:before { content: open-quote }

/*
  Set (general) blockquote style to be italic and to add quote marks
*/

blockquote { font-style: italic ; }
blockquote:after  { content: close-quote }
blockquote:before { content: open-quote }


/*
  End of file
*/