parseSelector.pseudoClasses = {
  'not': function(nodes, selector) {
    var result = [];
    each: for(var i = 0, node; i < nodes.length; i++) {
      node = nodes[i];
      var ignore = parseSelector(selector, node.parentNode);
      for(var j = 0; j < ignore.length; j++) {
        if(ignore[j] == node) continue each;
      }
      result.push(node);
    }
    return result;
  }
}
/*****************************************************************************
It is adviced to place the sIFR JavaScript calls in this file, keeping it
separate from the `sifr.js` file. That way, you can easily swap the `sifr.js`
file for a new version, while keeping the configuration.

You must load this file *after* loading `sifr.js`.

That said, you're of course free to merge the JavaScript files. Just make sure
the copyright statement in `sifr.js` is kept intact.
*****************************************************************************/

// Make an object pointing to the location of the Flash movie on your web server.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.
var din_regular = { src: 'din_regular.swf' };

// Now you can set some configuration settings.
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
// One setting you probably want to use is `sIFR.useStyleCheck`. Before you do that,
// read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad>.

// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(din_regular);

// If you want, you can use multiple movies, like so:
//
//    var futura = { src: '/path/to/futura.swf' };
//    var garamond = { src '/path/to/garamond.swf' };
//    var rockwell = { src: '/path/to/rockwell.swf' };
//    
//    sIFR.activate(futura, garamond, rockwell);
//
// Remember, there must be *only one* `sIFR.activate()`!

// Now we can do the replacements. You can do as many as you like, but just
// as an example, we'll replace all `<h1>` elements with the Futura movie.
// 
// The first argument to `sIFR.replace` is the `futura` object we created earlier.
// The second argument is another object, on which you can specify a number of
// parameters or "keyword arguemnts". For the full list, see "Keyword arguments"
// under `replace(kwargs, mergeKwargs)` at 
// <http://wiki.novemberborn.net/sifr3/JavaScript+Methods>.
// 
// The first argument you see here is `selector`, which is a normal CSS selector.
// That means you can also do things like '#content h1' or 'h1.title'.
//
// The second argument determines what the Flash text looks like. The main text
// is styled via the `.sIFR-root` class. Here we've specified `background-color`
// of the entire Flash movie to be a light grey, and the `color` of the text to
// be red. Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.

/*--------------------------------------------------=> MAIN SECTIONS THEMES */
/*-------------> OUR FIRM */
sIFR.replace(din_regular, {
  selector: '#theme_ourfirm h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#f7941d', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_ourfirm h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#f7941d', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

/*-------------> THE FRESHFIELDS WAY */
sIFR.replace(din_regular, {
  selector: '#theme_ffway h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#d2f6d2', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_ffway h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#d2f6d2', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

/*-------------> GLOBAL CAREERS */
sIFR.replace(din_regular, {
  selector: '#theme_globalcareers h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#f3c716', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_globalcareers h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#f3c716', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

/*--------------------------------------------------=> COUNTRIES THEMES */
/*-------------> AUSTRIA/GERMANY */
sIFR.replace(din_regular, {
  selector: '#theme_austria h1:not(.nosifr), #theme_germany h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#bd3c32', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_austria.white h2:not(.nosifr), #theme_germany.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#bd3c32', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_austria h2:not(.nosifr), #theme_germany h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#bd3c32', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_austria p.intro_highlighted, #theme_germany p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #bd3c32;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> BELGIUM */
sIFR.replace(din_regular, {
  selector: '#theme_belgium h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#ee781f', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_belgium.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#ee781f', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_belgium h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#ee781f', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_belgium p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #ee781f;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> UK */
sIFR.replace(din_regular, {
  selector: '#theme_uk h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#00bac2', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_uk.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#00bac2', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_uk h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#00bac2', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_uk p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #00bac2;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> CHINA */
sIFR.replace(din_regular, {
  selector: '#theme_china h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#c05784', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_china.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#c05784', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_china h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#c05784', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_china p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #c05784;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> FRANCE */
sIFR.replace(din_regular, {
    selector: '#theme_france h1:not(.nosifr)', css: {
        '.sIFR-root': { 'color': '#826aaf', 'letter-spacing': 3, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_france.white h2:not(.nosifr)', css: {
    '.sIFR-root': { 'color': '#826aaf', 'letter-spacing': 1, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_france h2:not(.nosifr)', css: {
    '.sIFR-root': { 'color': '#826aaf', 'letter-spacing': 2, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_france p.intro_highlighted', css: ['.sIFR-root { color: #826aaf;}'], wmode: 'transparent'
});

/*-------------> ITALY */
sIFR.replace(din_regular, {
  selector: '#theme_italy h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e31f26', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_italy.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e31f26', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_italy h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e31f26', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_italy p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #e31f26;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> JAPAN */
sIFR.replace(din_regular, {
  selector: '#theme_japan h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e61660', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_japan.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e61660', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_japan h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e61660', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_japan p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #e61660;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> RUSSIA */
sIFR.replace(din_regular, {
  selector: '#theme_russia h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#ee781f', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_russia.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#ee781f', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_russia h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#ee781f', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_russia p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #ee781f;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> SPAIN */
sIFR.replace(din_regular, {
  selector: '#theme_spain h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#f26522', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_spain.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#f26522', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_spain h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#f26522', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_spain p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #f26522;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> NETHERLANDS */
sIFR.replace(din_regular, {
    selector: '#theme_netherlands h1:not(.nosifr)', css: {
        '.sIFR-root': { 'color': '#cdbe2c', 'letter-spacing': 3, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_netherlands.white h2:not(.nosifr)', css: {
        '.sIFR-root': { 'color': '#cdbe2c', 'letter-spacing': 1, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_netherlands h2:not(.nosifr)', css: {
        '.sIFR-root': { 'color': '#cdbe2c', 'letter-spacing': 2, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_netherlands p.intro_highlighted', css: ['.sIFR-root { color: #cdbe2c;}'], wmode: 'transparent'
});

/*-------------> UAE */
sIFR.replace(din_regular, {
    selector: '#theme_uae h1:not(.nosifr)', css: {
        '.sIFR-root': { 'color': '#27aae1', 'letter-spacing': 3, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_uae.white h2:not(.nosifr)', css: {
        '.sIFR-root': { 'color': '#27aae1', 'letter-spacing': 1, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_uae h2:not(.nosifr)', css: {
        '.sIFR-root': { 'color': '#27aae1', 'letter-spacing': 2, 'text-transform': 'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26] }
    }, wmode: 'transparent', tuneHeight: -6
});

sIFR.replace(din_regular, {
    selector: '#theme_uae p.intro_highlighted', css: ['.sIFR-root { color: #27aae1;}'], wmode: 'transparent'
});

/*-------------> VIETNAM */
sIFR.replace(din_regular, {
  selector: '#theme_vietnam h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e4412b', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_vietnam.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e4412b', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_vietnam h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#e4412b', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_vietnam p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #e4412b;}'
    ]  
  ,wmode: 'transparent'    
});

/*-------------> US */
sIFR.replace(din_regular, {
  selector: '#theme_us h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#004393', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_us.white h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#004393', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_us h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#004393', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: '#theme_us p.intro_highlighted'  
  ,css: [      
      '.sIFR-root { color: #004393;}'
    ]  
  ,wmode: 'transparent'    
});

/*--------------------------------------------------=> WHITE PAGE */
sIFR.replace(din_regular, {
  selector: '.white p.intro'  
  ,css: [      
      '.sIFR-root { color: #3a464e;}'      
    ]  
  ,wmode: 'transparent'    
});

sIFR.replace(din_regular, {
  selector: '.white h2:not(.nosifr), .popup_news  h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#282c34', 'letter-spacing':1, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

/*--------------------------------------------------=> SHADOWBOX POPUP */
sIFR.replace(din_regular, {
  selector: '#popup h1:not(.nosifr)'  
  ,css: [      
      '.sIFR-root { color: #50b8b1; letter-spacing:3; text-transform:uppercase; ratios: [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26];}'      
    ]  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});
/*
sIFR.replace(din_regular, {
  selector: 'h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#282c34', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});*/

/*--------------------------------------------------=> DEFAULT */
sIFR.replace(din_regular, {
  selector: 'h1:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#FFFFFF', 'letter-spacing':3, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});

sIFR.replace(din_regular, {
  selector: 'h2:not(.nosifr)'  
  ,css: {      
      '.sIFR-root': { 'color': '#FFFFFF', 'letter-spacing':2, 'text-transform':'uppercase', 'ratios': [7, 1.47, 10, 1.43, 15, 1.36, 16, 1.34, 23, 1.32, 27, 1.31, 28, 1.3, 31, 1.29, 34, 1.3, 39, 1.28, 40, 1.29, 52, 1.28, 55, 1.27, 56, 1.28, 84, 1.27, 85, 1.26, 88, 1.27, 91, 1.26, 92, 1.27, 95, 1.26, 96, 1.27, 1.26]}     
    }  
  ,wmode: 'transparent'
  ,tuneHeight: -6    
});


sIFR.replace(din_regular, {
  selector: 'p.intro'  
  ,css: [      
      '.sIFR-root { color: #FFFFFF;}'      
    ]  
  ,wmode: 'transparent'    
});

sIFR.replace(din_regular, {
  selector: '.header_holder h3'  
  ,css: {      
      '.sIFR-root': { 'color': '#43ada5', 'text-transform':'uppercase'}     
    }  
  ,wmode: 'transparent'   
});

