var sifrFonts = { src: '/sIFR-3/sifr.swf' };
sIFR.activate(sifrFonts);

// The second argument determines what the Flash text looks like. The main text
// is styled via the `.sIFR-root` class. Here we've specified `background-color`
// of the entire Flash movie to be a light grey, and the `color` of the text to
// be red. Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.





sIFR.replace(sifrFonts, {
  selector: '#intro h1.sifr',
  css: '.sIFR-root { color: #483b3a; background-color: #ffffff;}',
  wmode: 'transparent'

});


sIFR.replace(sifrFonts, {
  selector: '#regionInfo h2.sifr',
  css: '.sIFR-root { color: #483b3a; background-color: #ffffff;}',
  wmode: 'transparent'

});

sIFR.replace(sifrFonts, {
  selector: 'h1.sifr',
  css: '.sIFR-root { color: #483b3a; background-color: #ffffff;}',
  wmode: 'transparent'
});

sIFR.replace(sifrFonts, {
  selector: 'h2.sifr',
  css: [
        '.sIFR-root { color: #A63F42;}',
        'a {color: #A63F42; text-decoration: none;}',
        'a:hover {color: #A63F42;}'
        ],
 wmode: 'transparent'

});




sIFR.replace(sifrFonts, {
  selector: 'h3.sifr',
  css: '.sIFR-root { color: #ffffff;}',
  wmode: 'transparent'
});
sIFR.replace(sifrFonts, {
  selector: 'h4.sifr',
  css: '.sIFR-root { color: #A63F42;}',
  wmode: 'transparent'
});



