//Set all the sIFR parameters in this file for colours, line heights and font spacing.

  
  
  //these ratios weren't set for the particular font used but the fonts work fine across different line heights and widths
  // Ratio explanation here http://wiki.novemberborn.net/sifr3/Ratio+Calculation
  
  var DINMedium = {
    src: '/Content/swf/DINMedium.swf'
    ,ratios: [7,1.32,11,1.31,13,1.24,14,1.25,19,1.23,27,1.2,34,1.19,42,1.18,47,1.17,48,1.18,69,1.17,74,1.16,75,1.17,1.16]
  };
  
  var DINRegular = {
    src: '/Content/swf/DINRegular.swf'
    ,ratios: [7,1.32,11,1.31,13,1.24,14,1.25,19,1.23,27,1.2,34,1.19,42,1.18,47,1.17,48,1.18,69,1.17,74,1.16,75,1.17,1.16]
  };
 
 
  sIFR.useStyleCheck = true;
  sIFR.activate(DINMedium, DINRegular);



  sIFR.replace(DINMedium, {
  	selector: 'p.blockquote-heading'
  	,forceSingleLine: 'true'
	,offsetTop: '-6'
	,tuneHeight: '-10'
	,wmode: 'transparent'
	,css: [
      '.sIFR-root { color: #cdde54; font-weight: bold; leading: -2 }'
      ,'strong { color: #cdde54; }'	 
    ]
	});
  
 
 sIFR.replace(DINRegular, {
    selector: 'p.intro'
    ,offsetTop: '-5'//This setting needs tweaking according to the size of text used
	,tuneHeight: '-8'//This setting needs tweaking according to the size of text used
	,wmode: 'transparent'
	,css: [
      '.sIFR-root { color: #04241b; font-weight: normal; leading: 2 }'
      ,'strong { color: #04241b; }'
	  ,'a { color: #6BC9C1; text-decoration: none }'
	  ,'a:hover { color: #6BC9C1; text-decoration: underline }'
    ]
  });