    /*****************************************************************************
    The sIFR configuration should typically go in `sifr-config.js`, but in order to
    keep the config file clean, and to give a quick overview, it's done here instead.
    *****************************************************************************/
	
    var myriad = {
      src: 'myriad.swf'
    };
	
    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    //sIFR.useStyleCheck = true;
    sIFR.activate(myriad);

	sIFR.replace(myriad, {
		selector: '.hetweer',
		css: [
			'.sIFR-root { color: #000000;}'
			,'a { text-decoration: none; }'
			,'a:link { color: #000000; }'
			,'a:hover { color: #CCCCCC; }'
		],
		wmode: 'transparent'
	});
	
	sIFR.replace(myriad, {
		selector: '.arrow',
		css: [
			'.sIFR-root { color: #ff0000;}'
		],
		wmode: 'transparent'
	});
	
	sIFR.replace(myriad, {
		selector: '.head',
		css: [
			'.sIFR-root { color: #000000;}'
			,'a { text-decoration: none; }'
			,'a:link { color: #000000; }'
			,'a:hover { color: #000000; }'
		],
		wmode: 'transparent'
	});
  
	sIFR.replace(myriad, {
		selector: '.line',
		css: [
			'.sIFR-root { color: #333333;}'
			,'a { text-decoration: none; }'
			,'a:link { color: #333333; }'
			,'a:hover { color: #333333; }'
		],
		wmode: 'transparent'
	});

	sIFR.replace(myriad, {
		selector: '.maxtemp',
		css: [
			'.sIFR-root { text-align: right; font-size: 20px; color: #ff0000; }'
		],
		filters: {
			DropShadow: {
				knockout: false,
				distance: 0,
				color: '#000000',
				strength: 1
        	}
      },
		wmode: 'transparent'
	});
	
	
	sIFR.replace(myriad, {
		selector: '.mintemp',
		css: [
			'.sIFR-root { text-align: right; font-size: 20px; right; color: #CCCCCC;}'
		],
		filters: {
			DropShadow: {
				knockout: false,
				distance: 0,
				color: '#000000',
				strength: 1
        	}
      },
		wmode: 'transparent'
	});
