/*=:project
    scalable Inman Flash Replacement (sIFR) version 3, revision 319

  =:file
    Copyright: 2006 Mark Wubben.
    Author: Mark Wubben, <http://novemberborn.net/>

  =:history
    * IFR: Shaun Inman
    * sIFR 1: Mike Davidson, Shaun Inman and Tomas Jogin
    * sIFR 2: Mike Davidson, Shaun Inman, Tomas Jogin and Mark Wubben

  =:license
    This software is licensed and provided under the CC-GNU LGPL.
    See <http://creativecommons.org/licenses/LGPL/2.1/>    
*/

var parseSelector=(function(){var _1=/\s*,\s*/;var _2=/\s*([\s>+~(),]|^|$)\s*/g;var _3=/([\s>+~,]|[^(]\+|^)([#.:@])/g;var _4=/^[^\s>+~]/;var _5=/[\s#.:>+~()@]|[^\s#.:>+~()@]+/g;function parseSelector(_6,_7){_7=_7||document.documentElement;var _8=_6.split(_1),_9=[];for(var i=0;i<_8.length;i++){var _b=[_7],_c=toStream(_8[i]);for(var j=0;j<_c.length;){var _e=_c[j++],_f=_c[j++],_10="";if(_c[j]=="("){while(_c[j++]!=")"&&j<_c.length){_10+=_c[j]}_10=_10.slice(0,-1)}_b=select(_b,_e,_f,_10)}_9=_9.concat(_b)}return _9}function toStream(_11){var _12=_11.replace(_2,"$1").replace(_3,"$1*$2");if(_4.test(_12)){_12=" "+_12}return _12.match(_5)||[]}function select(_13,_14,_15,_16){return (_17[_14])?_17[_14](_13,_15,_16):[]}var _18={toArray:function(_19){var a=[];for(var i=0;i<_19.length;i++){a.push(_19[i])}return a}};var dom={isTag:function(_1d,tag){return (tag=="*")||(tag.toLowerCase()==_1d.nodeName.toLowerCase())},previousSiblingElement:function(_1f){do{_1f=_1f.previousSibling}while(_1f&&_1f.nodeType!=1);return _1f},nextSiblingElement:function(_20){do{_20=_20.nextSibling}while(_20&&_20.nodeType!=1);return _20},hasClass:function(_21,_22){return (_22.className||"").match("(^|\\s)"+_21+"(\\s|$)")},getByTag:function(tag,_24){return _24.getElementsByTagName(tag)}};var _17={"#":function(_25,_26){for(var i=0;i<_25.length;i++){if(_25[i].getAttribute("id")==_26){return [_25[i]]}}return []}," ":function(_28,_29){var _2a=[];for(var i=0;i<_28.length;i++){_2a=_2a.concat(_18.toArray(dom.getByTag(_29,_28[i])))}return _2a},">":function(_2c,_2d){var _2e=[];for(var i=0,_30;i<_2c.length;i++){_30=_2c[i];for(var j=0,_32;j<_30.childNodes.length;j++){_32=_30.childNodes[j];if(_32.nodeType==1&&dom.isTag(_32,_2d)){_2e.push(_32)}}}return _2e},".":function(_33,_34){var _35=[];for(var i=0,_37;i<_33.length;i++){_37=_33[i];if(dom.hasClass([_34],_37)){_35.push(_37)}}return _35},":":function(_38,_39,_3a){return (pseudoClasses[_39])?pseudoClasses[_39](_38,_3a):[]}};parseSelector.selectors=_17;parseSelector.pseudoClasses={};parseSelector.util=_18;parseSelector.dom=dom;return parseSelector})();
var sIFR=new function(){var _3b=this;var _3c="sIFR-active";var _3d="sIFR-replaced";var _3e="sIFR-flash";var _3f="sIFR-ignore";var _40="sIFR-alternate";var _41="sIFR-class";var _42="sIFR-layout";var _43="sIFR-fixfocus";var _44=6;var _45=126;var _46=8;var _47="SIFR-PREFETCHED";var _48=[];var _49=5;var _4a=9999;var _4b="319";this.isActive=false;this.isEnabled=true;this.hideElements=true;this.preserveSingleWhitespace=false;this.fixWrap=true;this.fixHover=true;this.registerEvents=true;this.setPrefetchCookie=true;this.cookiePath="/";this.domains=[];this.fromLocal=false;this.forceClear=false;this.forceWidth=false;this.fitExactly=false;this.forceTextTransform=true;this.useDomContentLoaded=true;this.hasFlashClassSet=false;this.repaintOnResize=true;this.callbacks=[];var _4c=0;var _4d=false,_4e=false;var dom=new function(){var _50="http://www.w3.org/1999/xhtml";this.getBody=function(){var _51=document.getElementsByTagName("body");if(_51.length==1){return _51[0]}return null};this.addClass=function(_52,_53){if(_53){_53.className=((_53.className||"")==""?"":_53.className+" ")+_52}};this.removeClass=function(_54,_55){if(_55){_55.className=_55.className.replace(new RegExp("(^|\\s)"+_54+"(\\s|$)"),"").replace(/^\s+|(\s)\s+/g,"$1")}};this.hasClass=function(_56,_57){return new RegExp("(^|\\s)"+_56+"(\\s|$)").test(_57.className)};this.hasOneOfClassses=function(_58,_59){for(var i=0;i<_58.length;i++){if(this.hasClass(_58[i],_59)){return true}}return false};this.create=function(_5b){if(document.createElementNS){return document.createElementNS(_50,_5b)}return document.createElement(_5b)};this.setInnerHtml=function(_5c,_5d){if(ua.innerHtmlSupport){_5c.innerHTML=_5d}else{if(ua.xhtmlSupport){_5d=["<root xmlns=\"",_50,"\">",_5d,"</root>"].join("");var xml=(new DOMParser()).parseFromString(_5d,"text/xml");xml=document.importNode(xml.documentElement,true);while(_5c.firstChild){_5c.removeChild(_5c.firstChild)}while(xml.firstChild){_5c.appendChild(xml.firstChild)}}}};this.nodeFromHtml=function(_5f){var _60=this.create("div");_60.innerHTML=_5f;return _60.firstChild};this.getComputedStyle=function(_61,_62){var _63;if(document.defaultView&&document.defaultView.getComputedStyle){_63=document.defaultView.getComputedStyle(_61,null)[_62]}else{if(_61.currentStyle){_63=_61.currentStyle[_62]}}return _63||""};this.getStyleAsInt=function(_64,_65,_66){var _67=this.getComputedStyle(_64,_65);if(_66&&!/px$/.test(_67)){return 0}_67=parseInt(_67);return isNaN(_67)?0:_67};this.getWidthFromStyle=function(_68){var _69=this.getStyleAsInt(_68,"width",ua.ie);if(_69==0){var _6a=this.getStyleAsInt(_68,"paddingRight",true);var _6b=this.getStyleAsInt(_68,"paddingLeft",true);var _6c=this.getStyleAsInt(_68,"borderRightWidth",true);var _6d=this.getStyleAsInt(_68,"borderLeftWidth",true);_69=_68.offsetWidth-_6b-_6a-_6d-_6c}return _69};this.getZoom=function(){return _b2.zoom.getLatest()};this.blurElement=function(_6e){if(ua.gecko){_6e.blur();return}var _6f=dom.create("input");_6f.style.width="0px";_6f.style.height="0px";_6e.parentNode.appendChild(_6f);_6f.focus();_6f.blur();_6f.parentNode.removeChild(_6f)};this.getDimensions=function(_70){var _71=_70.offsetWidth;var _72=_70.offsetHeight;if(_71==0||_72==0){for(var i=0;i<_70.childNodes.length;i++){var _74=_70.childNodes[i];if(_74.nodeType!=1){continue}_71=Math.max(_71,_74.offsetWidth);_72=Math.max(_72,_74.offsetHeight)}}return {width:_71,height:_72}};this.contentIsLink=function(_75){var _76=false;for(var i=0;i<_75.childNodes.length;i++){var _78=_75.childNodes[i];if(_78.nodeType==3&&!_78.nodeValue.match(/^\s*$/)){return false}else{if(_78.nodeType!=1){continue}}var _79=_78.nodeName.toLowerCase()=="a";if(!_79){return false}else{_76=true}}return _76}};this.dom=dom;var ua=new function(){var ua=navigator.userAgent.toLowerCase();var _7c=(navigator.product||"").toLowerCase();this.macintosh=ua.indexOf("mac")>-1;this.windows=ua.indexOf("windows")>-1;this.quicktime=false;this.opera=ua.indexOf("opera")>-1;this.konqueror=_7c.indexOf("konqueror")>-1;this.ie=false/*@cc_on||true@*/;this.ieSupported=this.ie&&!/ppc|smartphone|iemobile|msie\s5\.5/.test(ua)/*@cc_on&&@_jscript_version>=5.5@*/;this.ieWin=this.ie&&this.windows/*@cc_on&&@_jscript_version>=5.1@*/;this.windows=this.windows&&(!this.ie||this.ieWin);this.ieMac=this.ie&&this.macintosh/*@cc_on&&@_jscript_version<5.1@*/;this.macintosh=this.macintosh&&(!this.ie||this.ieMac);this.safari=ua.indexOf("safari")>-1;this.webkit=ua.indexOf("applewebkit")>-1&&!this.konqueror;this.khtml=this.webkit||this.konqueror;this.gecko=!this.webkit&&_7c=="gecko";this.operaVersion=this.opera&&/.*opera(\s|\/)(\d+\.\d+)/.exec(ua)?parseInt(RegExp.$2):0;this.webkitVersion=this.webkit&&/.*applewebkit\/(\d+).*/.exec(ua)?parseInt(RegExp.$1):0;this.geckoBuildDate=this.gecko&&/.*gecko\/(\d{8}).*/.exec(ua)?parseInt(RegExp.$1):0;this.konquerorVersion=this.konqueror&&/.*konqueror\/(\d\.\d).*/.exec(ua)?parseInt(RegExp.$1):0;this.flashVersion=0;if(this.ieWin){var axo;var _7e=false;try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(e){try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");this.flashVersion=6;axo.AllowScriptAccess="always"}catch(e){_7e=this.flashVersion==6}if(!_7e){try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(e){}}}if(!_7e&&axo){this.flashVersion=parseFloat(/([\d,?]+)/.exec(axo.GetVariable("$version"))[1].replace(/,/g,"."))}}else{if(navigator.plugins&&navigator.plugins["Shockwave Flash"]){var _7f=navigator.plugins["Shockwave Flash"];this.flashVersion=parseFloat(/(\d+\.?\d*)/.exec(_7f.description)[1]);var i=0;while(this.flashVersion>=_46&&i<navigator.mimeTypes.length){var _81=navigator.mimeTypes[i];if(_81.type=="application/x-shockwave-flash"&&_81.enabledPlugin.description.toLowerCase().indexOf("quicktime")>-1){this.flashVersion=0;this.quicktime=true}i++}}}this.flash=this.flashVersion>=_46;this.transparencySupport=this.macintosh||this.windows;this.computedStyleSupport=this.ie||document.defaultView&&document.defaultView.getComputedStyle&&(!this.gecko||this.geckoBuildDate>=20030624);this.css=true;if(this.computedStyleSupport){try{var _82=document.getElementsByTagName("head")[0];_82.style.backgroundColor="#FF0000";var _83=dom.getComputedStyle(_82,"backgroundColor");this.css=!_83||/\#F{2}0{4}|rgb\(255,\s?0,\s?0\)/i.test(_83);_82.style.backgroundColor="";_82=null}catch(e){}}this.xhtmlSupport=!!window.DOMParser&&!!document.importNode;try{var n=dom.create("span");if(!this.ieMac){n.innerHTML="x"}this.innerHtmlSupport=n.innerHTML=="x"}catch(e){this.innerHtmlSupport=false}this.zoomSupport=!!(this.opera&&document.documentElement);this.geckoXml=this.gecko&&(document.contentType||"").indexOf("xml")>-1;this.requiresPrefetch=this.ieWin||this.khtml;this.verifiedKonqueror=false;this.supported=this.flash&&this.css&&(!this.ie||this.ieSupported)&&(!this.opera||this.operaVersion>=8)&&(!this.webkit||this.webkitVersion>=412)&&(!this.konqueror||this.konquerorVersion>3.5)&&this.computedStyleSupport&&(this.innerHtmlSupport||!this.khtml&&this.xhtmlSupport)&&(!this.gecko||this.geckoBuildDate>20040804)};this.ua=ua;var _85=new function(){var _86={leading:true,"margin-left":true,"margin-right":true,"text-indent":true};var _87=" ";function capitalize($){return $.toUpperCase()}this.normalize=function(str){if(_3b.preserveSingleWhitespace){return str.replace(/\s/g,_87)}return str.replace(/(\n|\r)+/g,_87).replace(/(\s)\s+/g,"$1").replace(/\xA0/,_87)};this.textTransform=function(_8a,str){switch(_8a){case "uppercase":str=str.toUpperCase();break;case "lowercase":str=str.toLowerCase();break;case "capitalize":var _8c=str;str=str.replace(/^\w|\s\w/g,capitalize);if(str.indexOf("function capitalize")!=-1){var _8d=_8c.replace(/(^|\s)(\w)/g,"$1$1$2$2").split(/^\w|\s\w/g);str="";for(var i=0;i<_8d.length;i++){str+=_8d[i].charAt(0).toUpperCase()+_8d[i].substring(1)}}break}return str};this.toHexString=function(str){if(typeof (str)!="string"||!str.charAt(0)=="#"||str.length!=4&&str.length!=7){return str}str=str.replace(/#/,"");if(str.length==3){str=str.replace(/(.)(.)(.)/,"$1$1$2$2$3$3")}return "0x"+str};this.toJson=function(obj){var _91="";switch(typeof (obj)){case "string":_91="\""+obj+"\"";break;case "number":case "boolean":_91=obj.toString();break;case "object":_91=[];for(var _92 in obj){if(obj[_92]==Object.prototype[_92]){continue}_91.push("\""+_92+"\":"+_85.toJson(obj[_92]))}_91="{"+_91.join(",")+"}";break}return _91};this.convertCssArg=function(arg){if(!arg){return {}}if(typeof (arg)=="object"){if(arg.constructor==Array){arg=arg.join("")}else{return arg}}var obj={};var _95=arg.split("}");for(var i=0;i<_95.length;i++){var $=_95[i].match(/([^\s{]+)\s*\{(.+)\s*;?\s*/);if(!$||$.length!=3){continue}if(!obj[$[1]]){obj[$[1]]={}}var _98=$[2].split(";");for(var j=0;j<_98.length;j++){var $2=_98[j].match(/\s*([^:\s]+)\s*\:\s*([^\s;]+)/);if(!$2||$2.length!=3){continue}obj[$[1]][$2[1]]=$2[2]}}return obj};this.extractFromCss=function(css,_9c,_9d,_9e){var _9f=null;if(css&&css[_9c]&&css[_9c][_9d]){_9f=css[_9c][_9d];if(_9e){delete css[_9c][_9d]}}return _9f};this.cssToString=function(arg){var css=[];for(var _a2 in arg){var _a3=arg[_a2];if(_a3==Object.prototype[_a2]){continue}css.push(_a2,"{");for(var _a4 in _a3){if(_a3[_a4]==Object.prototype[_a4]){continue}var _a5=_a3[_a4];if(_86[_a4]){_a5=parseInt(_a5,10)}css.push(_a4,":",_a5,";")}css.push("}")}return css.join("")};this.bind=function(_a6,_a7){return function(){_a6[_a7].apply(_a6,arguments)}};this.escape=function(str){return escape(str).replace(/\+/g,"%2B")};this.copyProperties=function(_a9,to){for(var _ab in _a9){if(to[_ab]===undefined){to[_ab]=_a9[_ab]}}return to};this.domain=function(){var _ac="";try{_ac=document.domain}catch(e){}return _ac};this.domainMatches=function(_ad,_ae){if(_ae=="*"||_ae==_ad){return true}var _af=_ae.lastIndexOf("*");if(_af>-1){_ae=_ae.substr(_af+1);var _b0=_ad.lastIndexOf(_ae);if(_b0>-1&&(_b0+_ae.length)==_ad.length){return true}}return false};this.uriEncode=function(s){return encodeURI(decodeURIComponent(s))}};this.util=_85;var _b2={};_b2.fragmentIdentifier=new function(){this.fix=true;var _b3;this.cache=function(){_b3=document.title};function doFix(){document.title=_b3}this.restore=function(){if(this.fix){setTimeout(doFix,0)}}};_b2.synchronizer=new function(){this.isBlocked=false;this.block=function(){this.isBlocked=true};this.unblock=function(){this.isBlocked=false;_b4.replaceAll()}};_b2.zoom=new function(){var _b5=100;this.getLatest=function(){return _b5};if(ua.zoomSupport&&ua.opera){var _b6=document.createElement("div");_b6.style.position="fixed";_b6.style.left="-65536px";_b6.style.top="0";_b6.style.height="100%";_b6.style.width="1px";_b6.style.zIndex="-32";document.documentElement.appendChild(_b6);function updateZoom(){if(!_b6){return}var _b7=window.innerHeight/_b6.offsetHeight;var _b8=Math.round(_b7*100)%10;if(_b8>5){_b7=Math.round(_b7*100)+10-_b8}else{_b7=Math.round(_b7*100)-_b8}_b5=isNaN(_b7)?100:_b7;_b2.synchronizer.unblock();document.documentElement.removeChild(_b6);_b6=null}_b2.synchronizer.block();setTimeout(updateZoom,54)}};this.hacks=_b2;this.errors={};var _b9={kwargs:[],replaceAll:function(_ba){for(var i=0;i<this.kwargs.length;i++){_3b.replace(this.kwargs[i])}if(!_ba){this.kwargs=[]}}};var _b4={kwargs:[],replaceAll:_b9.replaceAll};function isValidDomain(){if(_3b.domains.length==0){return true}var _bc=_85.domain();for(var i=0;i<_3b.domains.length;i++){var _be=_3b.domains[i];if(_85.domainMatches(_bc,_be)){return true}}return false}function isFile(){if(!_3b.fromLocal&&document.location.protocol=="file:"){if(_3b.debug){throw new Error(_3b.errors.isFile)}return true}return false}function resize(){var _bf=resize.viewport;resize.viewport={width:window.innerWidth||document.documentElement.clientWidth||dom.getBody().clientWidth,height:window.innerHeight||document.documentElement.clientHeight||dom.getBody().clientHeight};if(_bf&&resize.viewport.width==_bf.width&&resize.viewport.height==_bf.height){return}if(resize.timer){clearTimeout(resize.timer)}resize.timer=setTimeout(function(){delete resize.timer;for(var i=0;i<_3b.callbacks.length;i++){_3b.callbacks[i].resize()}},200)}this.activate=function(){if(!ua.supported||!this.isEnabled||this.isActive||!isValidDomain()||isFile()){return}if(arguments.length>0){this.prefetch.apply(this,arguments)}this.isActive=true;if(this.hideElements){this.setFlashClass()}if(ua.ieWin&&_b2.fragmentIdentifier.fix&&window.location.hash!=""){_b2.fragmentIdentifier.cache()}else{_b2.fragmentIdentifier.fix=false}if(!this.registerEvents){return}function handler(evt,_c2){_3b.initialize(_c2);if(evt&&evt.type=="load"){if(document.removeEventListener){document.removeEventListener("DOMContentLoaded",handler,false)}if(window.removeEventListener){window.removeEventListener("load",handler,false)}}}if(window.addEventListener){if(_3b.useDomContentLoaded&&ua.gecko){document.addEventListener("DOMContentLoaded",handler,false)}window.addEventListener("load",handler,false)}else{if(ua.ieWin){if(_3b.useDomContentLoaded){document.write("<scr"+"ipt id=__sifr_ie_onload defer src=//:></script>");document.getElementById("__sifr_ie_onload").onreadystatechange=function(){if(this.readyState=="complete"){handler(null,true);this.removeNode()}}}window.attachEvent("onload",handler)}}};this.setFlashClass=function(){if(this.hasFlashClassSet){return}dom.addClass(_3c,dom.getBody()||document.documentElement);this.hasFlashClassSet=true};this.removeFlashClass=function(){if(!this.hasFlashClassSet){return}dom.removeClass(_3c,dom.getBody());dom.removeClass(_3c,document.documentElement);this.hasFlashClassSet=false};this.initialize=function(_c3){if(!this.isActive||!this.isEnabled){return}if(_4e){if(!_c3){_b9.replaceAll(false)}return}_4e=true;_b9.replaceAll(_c3);if(_3b.repaintOnResize){if(window.addEventListener){window.addEventListener("resize",resize,false)}else{window.attachEvent("onresize",resize)}}clearPrefetch()};function getSource(src){if(typeof (src)!="string"){if(src.src){src=src.src}if(typeof (src)!="string"){var _c5=[];for(var _c6 in src){if(src[_c6]!=Object.prototype[_c6]){_c5.push(_c6)}}_c5.sort().reverse();var _c7="";var i=-1;while(!_c7&&++i<_c5.length){if(parseFloat(_c5[i])<=ua.flashVersion){_c7=src[_c5[i]]}}src=_c7}}if(!src&&_3b.debug){throw new Error(_3b.errors.getSource)}if(ua.ie&&src.charAt(0)=="/"){src=window.location.toString().replace(/([^:]+)(:\/?\/?)([^\/]+).*/,"$1$2$3")+src}return src}this.prefetch=function(){if((!ua.requiresPrefetch&&!this.isActive)||!ua.supported||!this.isEnabled||!isValidDomain()){return}if(this.setPrefetchCookie&&new RegExp(";?"+_47+"=true;?").test(document.cookie)){return}try{_4d=true;if(ua.ieWin){prefetchIexplore(arguments)}else{prefetchLight(arguments)}if(this.setPrefetchCookie){document.cookie=_47+"=true;path="+this.cookiePath}}catch(e){if(_3b.debug){throw e}}};function prefetchIexplore(_c9){for(var i=0;i<_c9.length;i++){document.write("<script defer type=\"sifr/prefetch\" src=\""+getSource(_c9[i])+"\"></script>")}}function prefetchLight(_cb){for(var i=0;i<_cb.length;i++){new Image().src=getSource(_cb[i])}}function clearPrefetch(){if(!ua.ieWin||!_4d){return}try{var _cd=document.getElementsByTagName("script");for(var i=_cd.length-1;i>=0;i--){var _cf=_cd[i];if(_cf.type=="sifr/prefetch"){_cf.parentNode.removeChild(_cf)}}}catch(e){}}function getRatio(_d0,_d1){for(var i=0;i<_d1.length;i+=2){if(_d0<=_d1[i]){return _d1[i+1]}}return _d1[_d1.length-1]||1}function getFilters(obj){var _d4=[];for(var _d5 in obj){if(obj[_d5]==Object.prototype[_d5]){continue}var _d6=obj[_d5];_d5=[_d5.replace(/filter/i,"")+"Filter"];for(var _d7 in _d6){if(_d6[_d7]==Object.prototype[_d7]){continue}_d5.push(_d7+":"+_85.escape(_85.toJson(_85.toHexString(_d6[_d7]))))}_d4.push(_d5.join(","))}return _85.escape(_d4.join(";"))}function calculate(_d8){var _d9,_da;if(!ua.ie){_d9=dom.getStyleAsInt(_d8,"lineHeight");_da=Math.floor(dom.getStyleAsInt(_d8,"height")/_d9)}else{if(ua.ie){var _db=dom.getComputedStyle(_d8,"fontSize");if(_db.indexOf("px")>0){_d9=parseInt(_db)}else{var _dc=_d8.innerHTML;_d8.style.visibility="visible";_d8.style.overflow="visible";_d8.style.position="static";_d8.style.zoom="normal";_d8.style.writingMode="lr-tb";_d8.style.width=_d8.style.height="auto";_d8.style.maxWidth=_d8.style.maxHeight=_d8.style.styleFloat="none";var _dd=_d8;var _de=_d8.currentStyle.hasLayout;if(_de){dom.setInnerHtml(_d8,"<div class=\""+_42+"\">X<br />X<br />X</div>");_dd=_d8.firstChild}else{dom.setInnerHtml(_d8,"X<br />X<br />X")}var _df=_dd.getClientRects();_d9=_df[1].bottom-_df[1].top;_d9=Math.ceil(_d9*0.8);if(_de){dom.setInnerHtml(_d8,"<div class=\""+_42+"\">"+_dc+"</div>");_dd=_d8.firstChild}else{dom.setInnerHtml(_d8,_dc)}_df=_dd.getClientRects();_da=_df.length;if(_de){dom.setInnerHtml(_d8,_dc)}_d8.style.visibility=_d8.style.width=_d8.style.height=_d8.style.maxWidth=_d8.style.maxHeight=_d8.style.overflow=_d8.style.styleFloat=_d8.style.position=_d8.style.zoom=_d8.style.writingMode=""}}}return {lineHeight:_d9,lines:_da}}this.replace=function(_e0,_e1){if(!ua.supported){return}if(_e1){_e0=_85.copyProperties(_e0,_e1)}if(!_4e){return _b9.kwargs.push(_e0)}if(_b2.synchronizer.isBlocked){return _b4.kwargs.push(_e0)}var _e2=_e0.elements;if(!_e2&&parseSelector){_e2=parseSelector(_e0.selector)}if(_e2.length==0){return}this.setFlashClass();var src=getSource(_e0.src);var css=_85.convertCssArg(_e0.css);var _e5=getFilters(_e0.filters);var _e6=(_e0.forceClear==null)?_3b.forceClear:_e0.forceClear;var _e7=_e0.forceSingleLine===true;var _e8=_e7||((_e0.fitExactly==null)?_3b.fitExactly:_e0.fitExactly);var _e9=_e8||(_e0.forceWidth==null?_3b.forceWidth:_e0.forceWidth);var _ea=parseInt(_85.extractFromCss(css,".sIFR-root","leading"))||0;var _eb=_85.extractFromCss(css,".sIFR-root","font-size",true)||0;var _ec=_85.extractFromCss(css,".sIFR-root","background-color",true)||"#FFFFFF";var _ed=_85.extractFromCss(css,".sIFR-root","kerning",true)||"";var _ee=_e0.gridFitType||_85.extractFromCss(css,".sIFR-root","text-align")=="right"?"subpixel":"pixel";var _ef=_3b.forceTextTransform?_85.extractFromCss(css,".sIFR-root","text-transform",true)||"none":"none";var _f0=_85.extractFromCss(css,".sIFR-root","opacity",true)||"100";var _f1=_e0.pixelFont||false;var _f2=_e0.ratios||_48;var _f3=parseInt(_e0.tuneHeight)||0;if(parseInt(_eb).toString()!=_eb&&_eb.indexOf("px")==-1){_eb=0}else{_eb=parseInt(_eb)}if(parseFloat(_f0)<1){_f0=100*parseFloat(_f0)}var _f4="";if(_e8){_85.extractFromCss(css,".sIFR-root","text-align",true)}if(!_e0.modifyCss){_f4=_85.cssToString(css)}var _f5=_e0.wmode||"";if(!_f5){if(_e0.transparent){_f5="transparent"}else{if(_e0.opaque){_f5="opaque"}}}if(_f5=="transparent"){if(!ua.transparencySupport){_f5="opaque"}else{_ec="transparent"}}for(var i=0;i<_e2.length;i++){var _f7=_e2[i];if(!ua.verifiedKonqueror){if(dom.getComputedStyle(_f7,"lineHeight").match(/e\+08px/)){ua.supported=_3b.isEnabled=false;this.removeFlashClass();return}ua.verifiedKonqueror=true}if(dom.hasOneOfClassses([_3d,_3f,_40],_f7)){continue}var _f8=dom.getDimensions(_f7);var _f9=_f8.height;var _fa=_e7?_4a:_f8.width;var _fb=dom.getComputedStyle(_f7,"display");if(!_f9||!_fa||_fb==null||_fb=="none"){continue}if(_e6&&ua.gecko){_f7.style.clear="both"}var _fc=null;if(_3b.fixWrap&&ua.ie&&_fb=="block"){_fc=_f7.innerHTML;dom.setInnerHtml(_f7,"X")}_fa=_e7?_4a:dom.getWidthFromStyle(_f7);if(_fc&&_3b.fixWrap&&ua.ie){dom.setInnerHtml(_f7,_fc)}var _fd,_fe;if(!_eb){var _ff=calculate(_f7);_fd=Math.min(_45,Math.max(_44,_ff.lineHeight));if(_f1){_fd=Math.max(8,8*Math.round(_fd/8))}_fe=_ff.lines;if(isNaN(_fe)||!isFinite(_fe)||_fe==0){_fe=1}if(_fe>1&&_ea){_f9+=Math.round((_fe-1)*_ea)}}else{_fd=_eb;_fe=1}_f9=Math.round(_fe*_fd);if(_e6&&ua.gecko){_f7.style.clear=""}var _100=dom.create("span");_100.className=_40;var _101=_f7.cloneNode(true);_f7.parentNode.appendChild(_101);for(var j=0,l=_101.childNodes.length;j<l;j++){_100.appendChild(_101.childNodes[j].cloneNode(true))}if(_e0.modifyContent){_e0.modifyContent(_101,_e0.selector)}if(_e0.modifyCss){_f4=_e0.modifyCss(css,_101,_e0.selector)}var _104=_3b.fixHover&&dom.contentIsLink(_101);var _105=handleContent(_101,_ef,_e0.uriEncode);_101.parentNode.removeChild(_101);if(_e0.modifyContentString){_105.text=_e0.modifyContentString(_105.text,_e0.selector)}if(_105.text==""){continue}var vars=["content="+_85.escape(_105.text),"antialiastype="+(_e0.antiAliasType||""),"width="+_fa,"height="+_f9,"fitexactly="+_e8,"tunewidth="+(_e0.tuneWidth||""),"tuneheight="+_f3,"offsetleft="+(_e0.offsetLeft||""),"offsettop="+(_e0.offsetTop||""),"thickness="+(_e0.thickness||""),"sharpness="+(_e0.sharpness||""),"kerning="+_ed,"gridfittype="+_ee,"zoomsupport="+ua.zoomSupport,"flashfilters="+_e5,"opacity="+_f0,"blendmode="+(_e0.blendMode||""),"size="+_fd,"zoom="+dom.getZoom(),"css="+_85.escape(_f4),"selectable="+(_e0.selectable==null?"true":_e0.selectable),"fixhover="+_104,"preventwrap="+_e0.preventWrap,"link="+_85.escape(_105.primaryLink[0]||""),"target="+_85.escape(_105.primaryLink[1]||""),"version="+_4b];var _107=encodeVars(vars);var _108="sIFR_callback_"+_4c++;var _109=new CallbackInfo(_108,vars,_e0.onReplacement);window[_108+"_DoFSCommand"]=(function(_10a){return function(info,arg){_10a.handle(info,arg)}})(_109);_100.setAttribute("id",_108+"_alternate");_f9=Math.round(_fe*getRatio(_fd,_f2)*_fd)+_49+_f3;var _10d=_e9?_fa:"100%";var _10e;if(ua.ie){_10e=["<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" id=\"",_108,"\" sifr=\"true\" width=\"",_10d,"\" height=\"",_f9,"\" class=\"",_3e,"\">","<param name=\"movie\" value=\"",src,"\"></param>","<param name=\"flashvars\" value=\"",_107,"\"></param>","<param name=\"allowScriptAccess\" value=\"always\"></param>","<param name=\"quality\" value=\"best\"></param>","<param name=\"wmode\" value=\"",_f5,"\"></param>","<param name=\"bgcolor\" value=\"",_ec,"\"></param>","<param name=\"name\" value=\"",_108,"\"></param>","</object>","<scr","ipt event=FSCommand(info,args) for=",_108,">",_108,"_DoFSCommand(info, args);","</","script>"].join("")}else{_10e=["<embed type=\"application/x-shockwave-flash\" class=\""+_3e+"\" src=\"",src,"\" quality=\"best\" flashvars=\"",_107,"\" width=\"",_10d,"\" height=\"",_f9,"\" wmode=\"",_f5,"\" bgcolor=\"",_ec,"\" name=\"",_108,"\" id=\"",_108,"\" allowScriptAccess=\"always\" sifr=\"true\"></embed>"].join("")}var _10f=_e0.fixFocus?"<div class=\""+_43+"\">"+_10e+"</div>":_10e;dom.setInnerHtml(_f7,_10f);_109.html=_10e;_3b.callbacks.push(_109);if(_e0.selector){if(!_3b.callbacks[_e0.selector]){_3b.callbacks[_e0.selector]=[_109]}else{_3b.callbacks[_e0.selector].push(_109)}}_f7.appendChild(_100);dom.addClass(_3d,_f7)}_b2.fragmentIdentifier.restore()};this.getCallbackByFlashElement=function(node){for(var i=0;i<_3b.callbacks.length;i++){if(_3b.callbacks[i].id==node.getAttribute("id")){return _3b.callbacks[i]}}};this.redraw=function(){for(var i=0;i<_3b.callbacks.length;i++){_3b.callbacks[i].resetMovie()}};function encodeVars(vars){return vars.join("&amp;").replace(/%/g,"%25")}function handleContent(_114,_115,_116){_116=_116||_85.uriEncode;var _117=[],_118=[],_119=[];var _11a=_114.childNodes;var i=0;while(i<_11a.length){var node=_11a[i];if(node.nodeType==3){var text=_85.normalize(node.nodeValue);text=_85.textTransform(_115,text);text=text.replace(/</g,"&lt;");_118.push(text)}if(node.nodeType==1){var _11e=[];var _11f=node.nodeName.toLowerCase();var _120=node.className||"";if(/\s+/.test(_120)){if(_120.indexOf(_41)>-1){_120=_120.match("(\\s|^)"+_41+"-([^\\s$]*)(\\s|$)")[2]}else{_120=_120.match(/^([^\s]+)/)[1]}}if(_120!=""){_11e.push("class=\""+_120+"\"")}if(_11f=="a"){var href=_116(node.getAttribute("href")||"");var _122=node.getAttribute("target")||"";_11e.push("href=\""+href+"\"","target=\""+_122+"\"");if(_119.length==0){_119=[href,_122]}}_118.push("<"+_11f+(_11e.length>0?" ":"")+_11e.join(" ")+">");if(node.hasChildNodes()){_117.push(i);i=0;_11a=node.childNodes;continue}else{if(!/^(br|img)$/i.test(node.nodeName)){_118.push("</",node.nodeName.toLowerCase(),">")}}}if(_117.length>0&&!node.nextSibling){do{i=_117.pop();_11a=node.parentNode.parentNode.childNodes;node=_11a[i];if(node){_118.push("</",node.nodeName.toLowerCase(),">")}}while(i==_11a.length-1&&_117.length>0)}i++}return {text:_118.join("").replace(/\n|\r/g,""),primaryLink:_119}}function CallbackInfo(id,vars,_125,_126){this.id=id;this.vars=vars;this._replacementHandler=_125;this._firedReplacementEvent=!(this._replacementHandler!=null);this._fixHover=_126;this.html=""}CallbackInfo.prototype.getFlashElement=function(){return document.getElementById(this.id)};CallbackInfo.prototype.available=function(){var _127=this.getFlashElement();return _127&&_127.parentNode};CallbackInfo.prototype.handle=function(info,arg){if(!this.available()){return}if(/(FSCommand\:)?resize/.test(info)){var _12a=this.getFlashElement();var $=arg.split(/\:|,/);_12a.setAttribute($[0],$[1]);if($.length>2){_12a.setAttribute($[2],$[3])}if(ua.khtml){var _12c=_12a.offsetHeight}if(!this._firedReplacementEvent){this._replacementHandler(this);this._firedReplacementEvent=true}}else{if(/(FSCommand\:)?resetmovie/.test(info)){this.resetMovie()}else{if(/(FSCommand\:)?blur/.test(info)){dom.blurElement(this.getFlashElement())}else{if(this.debugHandler&&/(FSCommand\:)?debug/.test(info)){this.debugHandler(info,arg)}}}}};CallbackInfo.prototype.call=function(type,_12e){if(!this.available()){return false}var _12f=this.getFlashElement();try{_12f.SetVariable("callbackType",type);_12f.SetVariable("callbackValue",_12e);_12f.SetVariable("callbackTrigger",true)}catch(e){return false}return true};CallbackInfo.prototype.replaceText=function(_130){var _131=_85.escape(_130);this.injectVars("content",_131);if(this.call("replacetext",_131)){dom.setInnerHtml(this.getAlternate(),_130);return true}return false};CallbackInfo.prototype.injectVars=function(name,_133){for(var i=0;i<this.vars.length;i++){if(this.vars[i].split("=")[0]==name){this.vars[i]=name+"="+_133;break}}this.html=this.html.replace(/(flashvars(=|\"\svalue=)\")[^\"]+/,"$1"+encodeVars(this.vars))};CallbackInfo.prototype.resetMovie=function(){if(!this.available()){return}var _135=this.getFlashElement();var node=_135.parentNode;node.replaceChild(dom.nodeFromHtml(this.html),_135)};CallbackInfo.prototype.resize=function(){if(!this.available()){return}var _137=this.getFlashElement();var _138=_137.parentNode;_137.style.width="0px";_137.style.height="0px";var _139=this.getAlternate().childNodes;var _13a=[];for(var i=0;i<_139.length;i++){var node=_139[i].cloneNode(true);_13a.push(node);_138.appendChild(node)}var _13d=dom.getWidthFromStyle(_138);for(var i=0;i<_13a.length;i++){_138.removeChild(_13a[i])}_137.style.width="";_137.style.height="";if(_13d>0){this.call("resize",_13d)}};CallbackInfo.prototype.changeCSS=function(css){css=_85.escape(_85.cssToString(_85.convertCssArg(css)));this.injectVars("css",css);return this.call("changecss",css)};CallbackInfo.prototype.getAlternate=function(){return document.getElementById(this.id+"_alternate")}};
