    /*****************************************************************************
    The sIFR configuration should typically go in `sifr-config.js`, but in order to
    keep the config file clean, and to give a quick overview, it's done here instead.
    *****************************************************************************/

    var futurab = {
      src: 'futurab.swf', wmode: 'transparent'
    };

    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(futurab);

    sIFR.replace(futurab, {
      selector: 'h1'
      ,css: [
        '.sIFR-root {font-weight: normal; text-transform: uppercase; color: #34ab94; font-size: 18px; letter-spacing: -1; z-index: -1;}'
      ]
    });
  
    sIFR.replace(futurab, {
      selector: 'h2'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #1a1a1a; font-size: 16px; text-transform: uppercase;}',
		'.red { color: #E00000;}',
		'.white { color: #FFFFFF;}'
	]
    });
	
    sIFR.replace(futurab, {
      selector: 'h3'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #1a1a1a; font-size: 13px;}'
      ]
    });
	
    sIFR.replace(futurab, {
      selector: 'h4'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #1a1a1a; font-size: 14px;}'
      ]
    });
	
	
	    sIFR.replace(futurab, {
      selector: 'h5'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #34ab94; font-size: 13px;}'
      ]
    });

sIFR.replace(futurab, {
      selector: 'h6'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #1a1a1a; font-size: 16px; text-transform: uppercase;}'
      ]
    });
