var thisFont = {
  src: '/images/sifr.swf'
};

sIFR.activate(thisFont);

var sIFR_root_style = '.sIFR-root { color: #FFFFFF; text-align:left; font-size:44px; }'
// first eliminate drop-shadowed white-on-white header of the softfocus page
sIFR.replace(thisFont, {
    selector: 'h2#title.drop-shadowed'
    /* for accented characters: ,offsetTop:12 */
    ,wmode: 'transparent'
    ,css: [
      sIFR_root_style
      ,'a { font-size: 18px; }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #CCCCCC; }'
    ]
    ,filters: {
      DropShadow: {
        knockout: false
        ,distance: 1
        ,color: '#333333'
        ,strength: 0.5
        
      }
    }

});


sIFR.replace(thisFont, {
    selector: 'h2#title'
    /* for accented characters: ,offsetTop:12 */
    ,wmode: 'transparent'
    ,css: [
      sIFR_root_style
      ,'a { font-size: 18px; }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #CCCCCC; }'
    ]
  });

sIFR.replace(thisFont, {
    selector: 'h2#title-centered'
    /* for accented characters: ,offsetTop:12 */
    ,wmode: 'transparent'
    ,css: [
      ,'.sIFR-root { color: #FFFFFF; text-align:center; font-size:44px; }'
      ,'a { font-size: 18px; }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #CCCCCC; }'
    ]
  });


