/* START OF LANGUAGE CSS */
/* 
You can use these classes for a quick way to translate html sections, but this does not allow custom setting for individuals. But it does use their own browser settings.
Language in HTML, is determined by a combination of the lang="" attribute, the <meta> element, and by information from the protocol such as the HTTP Accept-Language request-header field

eg

			<div class="en">Good morning</div>
			<div class="de">Guten Morgen</div>
			<div class="it">Ciao</div>
			
and this can be applied to eg quotes
<p><q>Blah blah</q></p>
if en would be "Blah blah"
if fr would be «Blah blah»

 */
 
 q:before { content: open-quote; }
q:after { content: close-quote; }

:lang(en) q { quotes: '“' '”'; }
:lang(fr) q { quotes: '«' '»'; }
:lang(de) q { quotes: '»' '«'; }

.en, .cs { display:none; }
.en:lang(en), .cs:lang(cs) { display:block; }

/* END OF LANGUAGE CSS */
