/* For Cym/dydd...html atm. To experiment with how best to display 
   stuff in two languages in large chunks.

   Start off with the normal stuff for telsa-pages, only text to be grey
*/

body {color: gray; background: white; }
body {margin-left: 10%; margin-right: 10%; }
h1,h2,h3 {text-align: center;}
pre { font-family: monospace; }
p.centred { text-align: center; }
img    {  border: 0; }
/* More telsa-stuff */

li.nav
   {
    background: rgb(204,255,204);
    color: black;
    padding: 0.25em;
    border: none
   }

li.int-nav
   {
    background: rgb(236,255,236);
    color: black;
    padding: 0.25em;
    border: none;
   }

p.centred { text-align: center; }

/* Now stuff for this page only (ar hyn o bryd :)) */
/* Okay, yes, well, it's spread to a few other pages now.. */
/* The default language for the page is en, according to the
   headers. Therefore, need: paragraphs of Welsh. spans of Welsh.
   spans of English (which may crop up within paragraphs of Welsh).
   I think. */
p:lang(cy)
    {
    background: white;
    color: rgb(50,50,100);
    }

span[lang=cy]
    {
    background: white;
    color: rgb(50,50,100);
    }

span:lang(en)
   { 
   background: white;
   color: gray;
   }

