/*****************************************************************************
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 rockwell = { src: 'http://www.holidayvacations.net/swf/rockwell.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(rockwell);


// 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>.


// H4


sIFR.replace(rockwell, {
  selector: '.h4_sifr_green',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #616b22;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_maroon',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #330000;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_blue',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #005995;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});


sIFR.replace(rockwell, {
  selector: '.h4_sifr_intl',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #1b2f15;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_beige',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #b3b596;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_rail',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #304c2a;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_slate',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #5b5a4e;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_lorange',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #936942;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_lmaroon',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #6a3535;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_orange',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #8b3100;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_mteal',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #658d91;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_extended',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #175700;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_brown',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #382f24;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_white',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #FFFFFF;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_teal',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #465f6b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_lteal',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #9aa8af;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_gold',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #a58e3b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_dgold',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #806a1d;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h4_sifr_lgreen',
  css: '.sIFR-root { font-size: 15px; background-color: #FFFFFF; color: #b5c459;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});




// H3

sIFR.replace(rockwell, {
  selector: '.h3_sifr',
  css: '.sIFR-root { font-size: 18px; background-color: #a63f03; color: #bf7e04;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_green',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #597704;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_maroon',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #330000;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_blue',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #005995;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});


sIFR.replace(rockwell, {
  selector: '.h3_sifr_intl',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #1b2f15;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_beige',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #b3b596;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_rail',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #304c2a;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_slate',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #5b5a4e;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_lorange',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #936942;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_lmaroon',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #6a3535;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_orange',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #8b3100;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_mteal',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #658d91;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_extended',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #175700;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_brown',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #382f24;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_white',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #FFFFFF;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_teal',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #465f6b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_lteal',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #9aa8af;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_gold',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #a58e3b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_dgold',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #806a1d;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_sifr_lgreen',
  css: '.sIFR-root { font-size: 18px; background-color: #FFFFFF; color: #b5c459;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});






// H3_5

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_green',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #597704;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_maroon',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #330000;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_blue',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #005995;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_intl',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #1b2f15;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_beige',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #b3b596;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_rail',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #304c2a;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_slate',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #5b5a4e;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_lorange',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #936942;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_lmaroon',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #6a3535;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_orange',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #8b3100;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_mteal',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #658d91;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_extended',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #175700;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_brown',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #382f24;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_white',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #FFFFFF;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_teal',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #465f6b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_lteal',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #9aa8af;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_gold',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #a58e3b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_dgold',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #806a1d;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h3_5_sifr_lgreen',
  css: '.sIFR-root { font-size: 24px; background-color: #FFFFFF; color: #b5c459;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});





//H2

sIFR.replace(rockwell, {
  selector: '.h2_sifr',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_green',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #597704;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_maroon',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #330000;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_blue',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #005995;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});


sIFR.replace(rockwell, {
  selector: '.h2_sifr_intl',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #1b2f15;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_beige',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #b3b596;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_rail',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #304c2a;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_slate',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #5b5a4e;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_lorange',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #936942;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_lmaroon',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #6a3535;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_orange',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #8b3100;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_mteal',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #658d91;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_extended',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #175700;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_brown',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #382f24;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_white',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #FFFFFF;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_teal',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #465f6b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_lteal',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #9aa8af;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_gold',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #a58e3b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_dgold',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #806a1d;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});

sIFR.replace(rockwell, {
  selector: '.h2_sifr_lgreen',
  css: '.sIFR-root { font-size: 30px; background-color: #FFFFFF; color: #b5c459;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -3
});






//H1

sIFR.replace(rockwell, {
  selector: '.h1_sifr',
  css: '.sIFR-root { background-color: #FFFFFF;}',
  forceSingleLine: true,
  wmode: 'transparent'
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_green',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #757d2b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_maroon',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #330000;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_blue',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #005995;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});


sIFR.replace(rockwell, {
  selector: '.h1_sifr_intl',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #1b2f15;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_beige',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #b3b596;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_rail',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #304c2a;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_slate',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #5b5a4e;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_lorange',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #936942;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_lmaroon',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #6a3535;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_orange',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #8b3100;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_mteal',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #658d91;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_extended',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #175700;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_brown',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #382f24;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_white',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #FFFFFF;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_teal',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #465f6b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_lteal',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #9aa8af;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_gold',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #a58e3b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_dgold',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #806a1d;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h1_sifr_lgreen',
  css: '.sIFR-root { font-size: 45px; background-color: #FFFFFF; color: #b5c459;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});





//H0


sIFR.replace(rockwell, {
  selector: '.h0_sifr_green',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #757d2b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_maroon',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #330000;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_blue',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #005995;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});


sIFR.replace(rockwell, {
  selector: '.h0_sifr_intl',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #1b2f15;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_beige',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #b3b596;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_rail',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #304c2a;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_slate',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #5b5a4e;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_lorange',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #936942;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_lmaroon',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #6a3535;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_orange',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #8b3100;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_mteal',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #658d91;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_extended',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #175700;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_brown',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #382f24;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_white',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #FFFFFF;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_teal',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #465f6b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_lteal',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #9aa8af;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_gold',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #a58e3b;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_dgold',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #806a1d;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

sIFR.replace(rockwell, {
  selector: '.h0_sifr_lgreen',
  css: '.sIFR-root { font-size: 55px; background-color: #FFFFFF; color: #b5c459;}',
  forceSingleLine: true,
  wmode: 'transparent',
  tuneHeight: -5
});

