// This is for r436 of sIFR3 files can be downloaded here http://dev.novemberborn.net/sifr3/nightlies/ 
// font swf must be created using r436 fla file follows these instructions to export swf file http://wiki.novemberborn.net/sifr3/How+to+use

var DINLight = {
	src: fontPathPrefix + '/DIN-Light.swf'
	// Ratios are worked out by including the sifr-debug.js in the header
	// the js file must be below sifr.js and above sifr-config.js.
	// See below on how to get sifr-debug.js to work out the ratios for you.
	,ratios: [8, 1.42, 9, 1.33, 12, 1.35, 19, 1.3, 27, 1.27, 28, 1.25, 32, 1.26, 33, 1.24, 38, 1.25, 53, 1.24, 56, 1.23, 57, 1.24, 83, 1.23, 85, 1.22, 87, 1.23, 94, 1.22, 95, 1.23, 1.22]
};

sIFR.activate(DINLight);

/* Work out ratios using code below. 
   Ratios must be worked out for each font you are using.
**********************************************************
	// This block of code would be done for each font
	// you are using.
	sIFR.debug.ratios(DINMedium, {
		selector: 'h1'
	});
**********************************************************
*/

sIFR.replace(DINLight, {
	selector: 'h1.subtitle01'
	,transparent: true
	,css: ['.sIFR-root { color: #455560; leading: -15, text-transform: uppercase; }']	
	,tuneHeight: -18
	,offsetTop: -8
});
sIFR.replace(DINLight, {
	selector: 'h1.subtitle07'
	,transparent: true
	,css: ['.sIFR-root { color: #008200; leading: -15, text-transform: uppercase; }']	
	,tuneHeight: -18
	,offsetTop: -8
});
sIFR.replace(DINLight, {
	selector: 'h1.subtitle08'
	,transparent: true
	,css: ['.sIFR-root { color: #00B6EA; leading: -15, text-transform: uppercase; }']	
	,tuneHeight: -18
	,offsetTop: -8
});
