    /*****************************************************************************
    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 gotham = {
      src: 'gotham.swf', wmode: 'transparent'
    };
	


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

    sIFR.replace(gotham, {
      selector: 'h1'
      ,css: [
        '.sIFR-root {font-weight: normal; color: #ffffff; font-size: 17px; letter-spacing: -1;}'
      ]
    });
  
    sIFR.replace(gotham, {
      selector: 'h2'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #484848; font-size: 16px; letter-spacing: -1; width: 900px;}'
	]
    });
	
    sIFR.replace(gotham, {
      selector: 'h3'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #f3b125; font-size: 16px;}'
      ]
    });
	
    sIFR.replace(gotham, {
      selector: 'h4'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #6e6f6e; font-size: 14px;}'
      ]
    });
	
	
	    sIFR.replace(gotham, {
      selector: 'h5'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #f3b125; font-size: 13px;}'
      ]
    });
	
		
	    sIFR.replace(gotham, {
      selector: 'h6'
      ,css: [
        '.sIFR-root {font-weight: normal; color: #6e6f6e; font-size: 12px;}'
      ]
    });
	




