/*****************************************************************************
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 futurabook = { src: 'flash/futurabook.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(futurabook);

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

sIFR.replace(futurabook, {
    selector: 'h1',
  ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
  css: [
  		'.sIFR-root {color: #ffffff; font-size:18px; text-transform:uppercase; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
    selector: 'h2',
  ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
  css: [
  		'.sIFR-root {color: #ffffff; font-size:24px; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
    selector: 'h3',
  ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
  css: [
  		'.sIFR-root {color: #ffffff; font-size:16px }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
    selector: 'h4',
  ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
  css: [
  		'.sIFR-root {color: #ffffff; text-transform:uppercase; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
    selector: 'h5',
  ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
  css: [
  		'.sIFR-root {color: #ffffff; }'
		],
  wmode: 'transparent'
});

/*sIFR.replace(futurabook, {
  selector: '.side_menus',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'

		],
  wmode: 'transparent'
});*/

sIFR.replace(futurabook, {
  selector: '.side_menus_li',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 16px; padding: 0 0 20px 0;cursor:pointer;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent',
  fixHover: 'true'
  
});

sIFR.replace(futurabook, {
  selector: '.side_submenus',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #666666; font-size: 12px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #666666; }'
		,'a:hover { color: #c8c8c8; text-decoration: underline; }'
		],
  wmode: 'transparent',
  fixHover: 'true'
});

sIFR.replace(futurabook, {
  selector: '.side_submenus_li',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #666666; font-size: 12px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #666666; }'
		,'a:hover { color: #c8c8c8; text-decoration: underline; }'
		],
  wmode: 'transparent',
  fixHover: 'true'
});

sIFR.replace(futurabook, {
  selector: '.side_submenus_li_on',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #666666; font-size: 12px; text-decoration: underline;}'
		,'a { text-decoration: none; text-decoration: underline; }'
		,'a:link { color: #666666; text-decoration: underline; }'
		,'a:hover { color: #c8c8c8; text-decoration: underline; }'
		],
  wmode: 'transparent',
  fixHover: 'true'
});

sIFR.replace(futurabook, {
  selector: '.contacts_li',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #666666; font-size: 14px; display:block;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #666666; }'
		,'a:hover { color: #c8c8c8; text-decoration: underline; }'
		],
  wmode: 'transparent'
});


sIFR.replace(futurabook, {
  selector: '.cp_title',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 28px; text-transform:uppercase;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #666666; }'
		,'a:hover { color: #666666; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_subtitle',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 16px; text-transform:uppercase;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #666666; }'
		,'a:hover { color: #666666; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.lm_person_info',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 12px; text-align:right;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.beauty_shop_nr_items .sifr_txt',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 12px;}'
		,'a { text-decoration: underline; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #666666; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.lg_title',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 24px; height:24px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.lg_subtitle',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 12px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});
sIFR.replace(futurabook, {
  selector: '.bs_fact_top_txt',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 18px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});
/*
sIFR.replace(futurabook, {
  selector: '.lg_puzzle_info',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 16px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});
*/
sIFR.replace(futurabook, {
  selector: '.bs_submenu_li',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #c4c4c4; font-size: 12px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #c4c4c4; }'
		,'a:hover { color: #c4c4c4; text-decoration:underline; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.bs_submenu_li_on',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #c4c4c4; font-size: 12px; text-decoration:underline; }'
		,'a { text-decoration: none; text-decoration:underline; }'
		,'a:link { color: #c4c4c4; text-decoration:underline; }'
		,'a:hover { color: #c4c4c4; text-decoration:underline; }'
		],
  wmode: 'transparent'
});




sIFR.replace(futurabook, {
  selector: '.bs_products_info_title',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 14px; text-transform:uppercase;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.bs_products_info_txt',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 12px; leading:-3; margin-bottom:0px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.bs_products_info_price',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 14px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});
/*
sIFR.replace(futurabook, {
  selector: '.bs_pack_price_percent',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 13px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});
*/


sIFR.replace(futurabook, {
  selector: '.bs_panier_top_menu',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #8d8d8d; font-size: 14px; text-transform: uppercase; text-align: center;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.bs_panier_top_menu_active',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 14px; text-transform: uppercase; text-align: center;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.bs_nouv_prod_title',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 24px; text-transform: uppercase; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.bs_nouv_prod_subtitle',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 12px; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_diag_products_info_txt',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 11px; leading:-3;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.sb_title',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #000000; font-size: 19px; text-transform:uppercase; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #000000; }'
		,'a:hover { color: #000000; }'
		],
  wmode: 'transparent'
});


sIFR.replace(futurabook, {
  selector: '.sb_subtitle',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #000000; font-size: 12px; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #000000; }'
		,'a:hover { color: #000000; }'
		],
  wmode: 'transparent'
});


sIFR.replace(futurabook, {
  selector: '.cb_diag_file',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #000000; font-size: 13px; text-transform:uppercase; text-align:center; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_diag_achat',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 13px; text-transform:uppercase; text-align:center; cursor: pointer; }'
		,'a { text-decoration: none; cursor: pointer; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_questions_title',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 20px; text-transform:uppercase; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_questions',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 16px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_diag_products_name_info',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 14px; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_diag_products_name_info_s',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 11px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_diag_products_name_price',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 14px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
		],
  wmode: 'transparent'
});



sIFR.replace(futurabook, {
  selector: '.cb_video_prod_title',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 14px; display:block;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #666666; }'
		,'a:hover { color: #c8c8c8; text-decoration: underline; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_video_prod_subtitle',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 12px; display:block;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #666666; }'
		,'a:hover { color: #c8c8c8; text-decoration: underline; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_video_prod_fiche',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #ffffff; font-size: 12px; display:block;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; text-decoration: underline; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_video_list_title',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #888888; font-size: 14px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #888888; }'
		,'a:hover { color: #888888; text-decoration: none; }'
		],
  wmode: 'transparent'
});

sIFR.replace(futurabook, {
  selector: '.cb_video_list_txt',
   ratio: [7, 1.58, 8, 1.47, 10, 1.5, 14, 1.44, 17, 1.43, 20, 1.41, 23, 1.4, 29, 1.39, 30, 1.38, 32, 1.37, 35, 1.38, 42, 1.37, 44, 1.36, 47, 1.37, 68, 1.36, 1.35], 
   css: [
  		'.sIFR-root {color: #666666; font-size: 12px;}'
		,'a { text-decoration: none; }'
		,'a:link { color: #666666; }'
		,'a:hover { color: #666666; text-decoration: none; }'
		],
  wmode: 'transparent'
});
