/*
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;

/*
 * FancyBox - simple and fancy jQuery plugin
 * Examples and documentation at: http://fancy.klade.lv/
 * Version: 1.2.1 (13/03/2009)
 * Copyright (c) 2009 Janis Skarnelis
 * Licensed under the MIT License: http://en.wikipedia.org/wiki/MIT_License
 * Requires: jQuery v1.3+
*/
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}(';(7($){$.b.2Q=7(){u B.2t(7(){9 1J=$(B).n(\'2Z\');5(1J.1c(/^3w\\(["\']?(.*\\.2p)["\']?\\)$/i)){1J=3t.$1;$(B).n({\'2Z\':\'45\',\'2o\':"3W:3R.4m.4d(3h=F, 3T="+($(B).n(\'41\')==\'2J-3Z\'?\'4c\':\'3N\')+", Q=\'"+1J+"\')"}).2t(7(){9 1b=$(B).n(\'1b\');5(1b!=\'2e\'&&1b!=\'2n\')$(B).n(\'1b\',\'2n\')})}})};9 A,4,16=D,s=1t 1o,1w,1v=1,1y=/\\.(3A|3Y|2p|3c|3d)(.*)?$/i;9 P=($.2q.3K&&2f($.2q.3z.2k(0,1))<8);$.b.c=7(Y){Y=$.3x({},$.b.c.2R,Y);9 2s=B;7 2h(){A=B;4=Y;2r();u D};7 2r(){5(16)u;5($.1O(4.2c)){4.2c()}4.j=[];4.h=0;5(Y.j.N>0){4.j=Y.j}t{9 O={};5(!A.1H||A.1H==\'\'){9 O={d:A.d,X:A.X};5($(A).1G("1m:1D").N){O.1a=$(A).1G("1m:1D")}4.j.2j(O)}t{9 Z=$(2s).2o("a[1H="+A.1H+"]");9 O={};3C(9 i=0;i<Z.N;i++){O={d:Z[i].d,X:Z[i].X};5($(Z[i]).1G("1m:1D").N){O.1a=$(Z[i]).1G("1m:1D")}4.j.2j(O)}3F(4.j[4.h].d!=A.d){4.h++}}}5(4.23){5(P){$(\'1U, 1Q, 1P\').n(\'1S\',\'3s\')}$("#1i").n(\'25\',4.2U).J()}1d()};7 1d(){$("#1f, #1e, #V, #G").S();9 d=4.j[4.h].d;5(d.1c(/#/)){9 U=11.3r.d.3f(\'#\')[0];U=d.3g(U,\'\');U=U.2k(U.2l(\'#\'));1k(\'<6 l="3e">\'+$(U).o()+\'</6>\',4.1I,4.1x)}t 5(d.1c(1y)){s=1t 1o;s.Q=d;5(s.3a){1K()}t{$.b.c.34();$(s).x().14(\'3b\',7(){$(".I").S();1K()})}}t 5(d.1c("17")||A.3j.2l("17")>=0){1k(\'<17 l="35" 3q="$.b.c.38()" 3o="3n\'+C.T(C.3l()*3m)+\'" 2K="0" 3E="0" Q="\'+d+\'"></17>\',4.1I,4.1x)}t{$.4p(d,7(2m){1k(\'<6 l="3L">\'+2m+\'</6>\',4.1I,4.1x)})}};7 1K(){5(4.30){9 w=$.b.c.1n();9 r=C.1M(C.1M(w[0]-36,s.g)/s.g,C.1M(w[1]-4b,s.f)/s.f);9 g=C.T(r*s.g);9 f=C.T(r*s.f)}t{9 g=s.g;9 f=s.f}1k(\'<1m 48="" l="49" Q="\'+s.Q+\'" />\',g,f)};7 2F(){5((4.j.N-1)>4.h){9 d=4.j[4.h+1].d;5(d.1c(1y)){1A=1t 1o();1A.Q=d}}5(4.h>0){9 d=4.j[4.h-1].d;5(d.1c(1y)){1A=1t 1o();1A.Q=d}}};7 1k(1j,g,f){16=F;9 L=4.2Y;5(P){$("#q")[0].1E.2u("f");$("#q")[0].1E.2u("g")}5(L>0){g+=L*2;f+=L*2;$("#q").n({\'v\':L+\'z\',\'2E\':L+\'z\',\'2i\':L+\'z\',\'y\':L+\'z\',\'g\':\'2B\',\'f\':\'2B\'});5(P){$("#q")[0].1E.2C(\'f\',\'(B.2D.4j - 20)\');$("#q")[0].1E.2C(\'g\',\'(B.2D.3S - 20)\')}}t{$("#q").n({\'v\':0,\'2E\':0,\'2i\':0,\'y\':0,\'g\':\'2z%\',\'f\':\'2z%\'})}5($("#k").1u(":19")&&g==$("#k").g()&&f==$("#k").f()){$("#q").1Z("2N",7(){$("#q").1C().1F($(1j)).21("1s",7(){1g()})});u}9 w=$.b.c.1n();9 2v=(g+36)>w[0]?w[2]:(w[2]+C.T((w[0]-g-36)/2));9 2w=(f+1z)>w[1]?w[3]:(w[3]+C.T((w[1]-f-1z)/2));9 K={\'y\':2v,\'v\':2w,\'g\':g+\'z\',\'f\':f+\'z\'};5($("#k").1u(":19")){$("#q").1Z("1s",7(){$("#q").1C();$("#k").24(K,4.2X,4.2T,7(){$("#q").1F($(1j)).21("1s",7(){1g()})})})}t{5(4.1W>0&&4.j[4.h].1a!==1L){$("#q").1C().1F($(1j));9 M=4.j[4.h].1a;9 15=$.b.c.1R(M);$("#k").n({\'y\':(15.y-18)+\'z\',\'v\':(15.v-18)+\'z\',\'g\':$(M).g(),\'f\':$(M).f()});5(4.1X){K.25=\'J\'}$("#k").24(K,4.1W,4.2W,7(){1g()})}t{$("#q").S().1C().1F($(1j)).J();$("#k").n(K).21("1s",7(){1g()})}}};7 2y(){5(4.h!=0){$("#1e, #2O").x().14("R",7(e){e.2x();4.h--;1d();u D});$("#1e").J()}5(4.h!=(4.j.N-1)){$("#1f, #2M").x().14("R",7(e){e.2x();4.h++;1d();u D});$("#1f").J()}};7 1g(){2y();2F();$(W).1B(7(e){5(e.29==27){$.b.c.1l();$(W).x("1B")}t 5(e.29==37&&4.h!=0){4.h--;1d();$(W).x("1B")}t 5(e.29==39&&4.h!=(4.j.N-1)){4.h++;1d();$(W).x("1B")}});5(4.1r){$(11).14("1N 1T",$.b.c.2g)}t{$("6#k").n("1b","2e")}5(4.2b){$("#22").R($.b.c.1l)}$("#1i, #V").14("R",$.b.c.1l);$("#V").J();5(4.j[4.h].X!==1L&&4.j[4.h].X.N>0){$(\'#G 6\').o(4.j[4.h].X);$(\'#G\').J()}5(4.23&&P){$(\'1U, 1Q, 1P\',$(\'#q\')).n(\'1S\',\'19\')}5($.1O(4.2a)){4.2a()}16=D};u B.x(\'R\').R(2h)};$.b.c.2g=7(){9 m=$.b.c.1n();$("#k").n(\'y\',(($("#k").g()+36)>m[0]?m[2]:m[2]+C.T((m[0]-$("#k").g()-36)/2)));$("#k").n(\'v\',(($("#k").f()+1z)>m[1]?m[3]:m[3]+C.T((m[1]-$("#k").f()-1z)/2)))};$.b.c.1h=7(H,2A){u 2f($.3I(H.3u?H[0]:H,2A,F))||0};$.b.c.1R=7(H){9 m=H.4g();m.v+=$.b.c.1h(H,\'3k\');m.v+=$.b.c.1h(H,\'3J\');m.y+=$.b.c.1h(H,\'3H\');m.y+=$.b.c.1h(H,\'3D\');u m};$.b.c.38=7(){$(".I").S();$("#35").J()};$.b.c.1n=7(){u[$(11).g(),$(11).f(),$(W).3i(),$(W).3p()]};$.b.c.2G=7(){5(!$("#I").1u(\':19\')){33(1w);u}$("#I > 6").n(\'v\',(1v*-40)+\'z\');1v=(1v+1)%12};$.b.c.34=7(){33(1w);9 m=$.b.c.1n();$("#I").n({\'y\':((m[0]-40)/2+m[2]),\'v\':((m[1]-40)/2+m[3])}).J();$("#I").14(\'R\',$.b.c.1l);1w=3Q($.b.c.2G,3X)};$.b.c.1l=7(){16=F;$(s).x();$("#1i, #V").x();5(4.2b){$("#22").x()}$("#V, .I, #1e, #1f, #G").S();5(4.1r){$(11).x("1N 1T")}1q=7(){$("#1i, #k").S();5(4.1r){$(11).x("1N 1T")}5(P){$(\'1U, 1Q, 1P\').n(\'1S\',\'19\')}5($.1O(4.1V)){4.1V()}16=D};5($("#k").1u(":19")!==D){5(4.26>0&&4.j[4.h].1a!==1L){9 M=4.j[4.h].1a;9 15=$.b.c.1R(M);9 K={\'y\':(15.y-18)+\'z\',\'v\':(15.v-18)+\'z\',\'g\':$(M).g(),\'f\':$(M).f()};5(4.1X){K.25=\'S\'}$("#k").31(D,F).24(K,4.26,4.2S,1q)}t{$("#k").31(D,F).1Z("2N",1q)}}t{1q()}u D};$.b.c.2V=7(){9 o=\'\';o+=\'<6 l="1i"></6>\';o+=\'<6 l="22">\';o+=\'<6 p="I" l="I"><6></6></6>\';o+=\'<6 l="k">\';o+=\'<6 l="2I">\';o+=\'<6 l="V"></6>\';o+=\'<6 l="E"><6 p="E 44"></6><6 p="E 43"></6><6 p="E 42"></6><6 p="E 3V"></6><6 p="E 3U"></6><6 p="E 3O"></6><6 p="E 3M"></6><6 p="E 3P"></6></6>\';o+=\'<a d="2P:;" l="1e"><1p p="1Y" l="2O"></1p></a><a d="2P:;" l="1f"><1p p="1Y" l="2M"></1p></a>\';o+=\'<6 l="q"></6>\';o+=\'<6 l="G"></6>\';o+=\'</6>\';o+=\'</6>\';o+=\'</6>\';$(o).2H("46");$(\'<32 4i="0" 4h="0" 4k="0"><2L><13 p="G" l="4l"></13><13 p="G" l="4o"><6></6></13><13 p="G" l="4n"></13></2L></32>\').2H(\'#G\');5(P){$("#2I").47(\'<17 p="4a" 4e="2J" 2K="0"></17>\');$("#V, .E, .G, .1Y").2Q()}};$.b.c.2R={2Y:10,30:F,1X:D,1W:0,26:0,2X:3G,2W:\'28\',2S:\'28\',2T:\'28\',1I:3B,1x:3v,23:F,2U:0.3,2b:F,1r:F,j:[],2c:2d,2a:2d,1V:2d};$(W).3y(7(){$.b.c.2V()})})(4f);',62,274,'||||opts|if|div|function||var||fn|fancybox|href||height|width|itemCurrent||itemArray|fancy_outer|id|pos|css|html|class|fancy_content||imagePreloader|else|return|top||unbind|left|px|elem|this|Math|false|fancy_bg|true|fancy_title|el|fancy_loading|show|itemOpts|pad|orig_item|length|item|isIE|src|click|hide|round|target|fancy_close|document|title|settings|subGroup||window||td|bind|orig_pos|busy|iframe||visible|orig|position|match|_change_item|fancy_left|fancy_right|_finish|getNumeric|fancy_overlay|value|_set_content|close|img|getViewport|Image|span|__cleanup|centerOnScroll|normal|new|is|loadingFrame|loadingTimer|frameHeight|imageRegExp|50|objNext|keydown|empty|first|style|append|children|rel|frameWidth|image|_proceed_image|undefined|min|resize|isFunction|select|object|getPosition|visibility|scroll|embed|callbackOnClose|zoomSpeedIn|zoomOpacity|fancy_ico|fadeOut||fadeIn|fancy_wrap|overlayShow|animate|opacity|zoomSpeedOut||swing|keyCode|callbackOnShow|hideOnContentClick|callbackOnStart|null|absolute|parseInt|scrollBox|_initialize|bottom|push|substr|indexOf|data|relative|filter|png|browser|_start|matchedGroup|each|removeExpression|itemLeft|itemTop|stopPropagation|_set_navigation|100|prop|auto|setExpression|parentNode|right|_preload_neighbor_images|animateLoading|appendTo|fancy_inner|no|frameborder|tr|fancy_right_ico|fast|fancy_left_ico|javascript|fixPNG|defaults|easingOut|easingChange|overlayOpacity|build|easingIn|zoomSpeedChange|padding|backgroundImage|imageScale|stop|table|clearInterval|showLoading|fancy_frame|||showIframe||complete|load|bmp|jpeg|fancy_div|split|replace|enabled|scrollLeft|className|paddingTop|random|1000|fancy_iframe|name|scrollTop|onload|location|hidden|RegExp|jquery|355|url|extend|ready|version|jpg|425|for|borderLeftWidth|hspace|while|300|paddingLeft|curCSS|borderTopWidth|msie|fancy_ajax|fancy_bg_w|scale|fancy_bg_sw|fancy_bg_nw|setInterval|DXImageTransform|clientWidth|sizingMethod|fancy_bg_s|fancy_bg_se|progid|66|gif|repeat||backgroundRepeat|fancy_bg_e|fancy_bg_ne|fancy_bg_n|none|body|prepend|alt|fancy_img|fancy_bigIframe|60|crop|AlphaImageLoader|scrolling|jQuery|offset|cellpadding|cellspacing|clientHeight|border|fancy_title_left|Microsoft|fancy_title_right|fancy_title_main|get'.split('|'),0,{}));


/*
 * Copyright (c) 2008 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var J=function(){return J.replace.apply(null,arguments)};var R=J.DOM={ready:(function(){var W=false,Y={loaded:1,complete:1};var V=[],X=function(){if(W){return}W=true;for(var Z;Z=V.shift();Z()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",X,false);window.addEventListener("pageshow",X,false)}if(!window.opera&&document.readyState){(function(){Y[document.readyState]?X():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");X()}catch(Z){setTimeout(arguments.callee,1)}})()}N(window,"load",X);return function(Z){if(!arguments.length){X()}else{W?Z():V.push(Z)}}})()};var K=J.CSS={Size:function(W,V){this.value=parseFloat(W);this.unit=String(W).match(/[a-z%]*$/)[0]||"px";this.convert=function(X){return X/V*this.value};this.convertFrom=function(X){return X/this.value*V};this.toString=function(){return this.value+this.unit}},getStyle:function(W){var V=document.defaultView;if(V&&V.getComputedStyle){return new A(V.getComputedStyle(W,null))}if(W.currentStyle){return new A(W.currentStyle)}return new A(W.style)},ready:(function(){var X=false;var W=[],Y=function(){X=true;for(var a;a=W.shift();a()){}};var V=Object.prototype.propertyIsEnumerable?E("style"):{length:0};var Z=E("link");R.ready(function(){var d=0,c;for(var b=0,a=Z.length;c=Z[b],b<a;++b){if(!c.disabled&&c.rel.toLowerCase()=="stylesheet"){++d}}if(document.styleSheets.length>=V.length+d){Y()}else{setTimeout(arguments.callee,10)}});return function(a){if(X){a()}else{W.push(a)}}})(),supports:function(X,W){var V=document.createElement("span").style;if(V[X]===undefined){return false}V[X]=W;return V[X]===W},textAlign:function(Y,X,V,W){if(X.get("textAlign")=="right"){if(V>0){Y=" "+Y}}else{if(V<W-1){Y+=" "}}return Y},textDecoration:function(a,Z){if(!Z){Z=this.getStyle(a)}var W={underline:null,overline:null,"line-through":null};for(var V=a;V.parentNode&&V.parentNode.nodeType==1;){var Y=true;for(var X in W){if(W[X]){continue}if(Z.get("textDecoration").indexOf(X)!=-1){W[X]=Z.get("color")}Y=false}if(Y){break}Z=this.getStyle(V=V.parentNode)}return W},textShadow:H(function(Z){if(Z=="none"){return null}var Y=[],a={},V,W=0;var X=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(V=X.exec(Z)){if(V[0]==","){Y.push(a);a={},W=0}else{if(V[1]){a.color=V[1]}else{a[["offX","offY","blur"][W++]]=V[2]}}}Y.push(a);return Y}),color:H(function(W){var V={};V.color=W.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(Y,X,Z){V.opacity=parseFloat(Z);return"rgb("+X+")"});return V}),textTransform:function(W,V){return W[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[V.get("textTransform")]||"toString"]()}};J.VML={parsePath:function(Y){var V=[],X=/([mrvxe])([^a-z]*)/g,W;while(W=X.exec(Y)){V.push({type:W[1],coords:W[2].split(",")})}return V}};function O(W){var V=this.face=W.face;this.glyphs=W.glyphs;this.w=W.w;this.baseSize=parseInt(V["units-per-em"],10);this.family=V["font-family"].toLowerCase();this.weight=V["font-weight"];this.style=V["font-style"]||"normal";this.viewBox=(function(){var X=V.bbox.split(/\s+/);return{minX:parseInt(X[0],10),minY:parseInt(X[1],10),width:parseInt(X[2],10)-parseInt(X[0],10),height:parseInt(X[3],10)-parseInt(X[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")}}})();this.ascent=-parseInt(V.ascent,10);this.descent=-parseInt(V.descent,10);this.height=-this.ascent+this.descent}function D(){var W={},V={oblique:"italic",italic:"oblique"};this.add=function(X){(W[X.style]||(W[X.style]={}))[X.weight]=X};this.get=function(b,c){var a=W[b]||W[V[b]]||W.normal||W.italic||W.oblique;if(!a){return null}c={normal:400,bold:700}[c]||parseInt(c,10);if(a[c]){return a[c]}var Y={1:1,99:0}[c%100],e=[],Z,X;if(Y===undefined){Y=c>400}if(c==500){c=400}for(var d in a){d=parseInt(d,10);if(!Z||d<Z){Z=d}if(!X||d>X){X=d}e.push(d)}if(c<Z){c=Z}if(c>X){c=X}e.sort(function(g,f){return(Y?(g>c&&f>c)?g<f:g>f:(g<c&&f<c)?g>f:g<f)?-1:1});return a[e[0]]}}function U(){var X={},V=0;function W(Y){return Y.cufid||(Y.cufid=++V)}this.get=function(Y){var Z=W(Y);return X[Z]||(X[Z]={})}}function A(V){var X={},W={};this.get=function(Y){return X[Y]!=undefined?X[Y]:V[Y]};this.getSize=function(Z,Y){return W[Z]||(W[Z]=new K.Size(this.get(Z),Y))};this.extend=function(Y){for(var Z in Y){X[Z]=Y[Z]}return this}}function N(W,V,X){if(W.addEventListener){W.addEventListener(V,X,false)}else{if(W.attachEvent){W.attachEvent("on"+V,function(){return X.apply(W,arguments)})}}}function H(V){var W={};return function(X){if(!W.hasOwnProperty(X)){W[X]=V.apply(null,arguments)}return W[X]}}function B(a,Z){if(!Z){Z=K.getStyle(a)}var W=Z.get("fontFamily").split(/\s*,\s*/),Y;for(var X=0,V=W.length;X<V;++X){Y=W[X].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(G[Y]){return G[Y].get(Z.get("fontStyle"),Z.get("fontWeight"))}}return null}function E(V){return document.getElementsByTagName(V)}function F(){var V={},Y;for(var X=0,W=arguments.length;X<W;++X){for(Y in arguments[X]){V[Y]=arguments[X][Y]}}return V}function L(Y,g,W,h,Z,X){var f=h.separate;if(f=="none"){return T[h.engine].apply(null,arguments)}var e=document.createDocumentFragment(),b;var c=g.split(M[f]),V=(f=="words");if(V&&P){if(/^\s/.test(g)){c.unshift("")}if(/\s$/.test(g)){c.push("")}}for(var d=0,a=c.length;d<a;++d){b=T[h.engine](Y,V?K.textAlign(c[d],W,d,a):c[d],W,h,Z,X,d<a-1);if(b){e.appendChild(b)}}return e}function I(W,d){var b=C.get(W);if(!d){d=b.options}var X,V,a;for(var Y=W.firstChild;Y;Y=a){a=Y.nextSibling;if(Y.nodeType==1){if(!Y.firstChild){continue}if(!/cufon/.test(Y.className)){arguments.callee(Y,d);continue}}var c=Y.nodeType==3?Y.data:Y.alt;if(c===""){continue}if(!V){V=K.getStyle(W).extend(d)}if(!X){X=B(W,V)}if(!X){continue}var Z=L(X,c,V,d,Y,W);if(Z){Y.parentNode.replaceChild(Z,Y)}else{Y.parentNode.removeChild(Y)}}if(!b.options){b.options=d}}var P=" ".split(/\s+/).length==0;var C=new U();var S=[];var T={},G={},Q={enableTextDecoration:false,engine:null,printable:true,selector:(window.Sizzle||(window.dojo&&dojo.query)||(window.$$&&function(V){return $$(V)})||(window.$&&function(V){return $(V)})||(document.querySelectorAll&&function(V){return document.querySelectorAll(V)})||E),separate:"words",textShadow:"none"};var M={words:/\s+/,characters:""};J.now=function(){R.ready();return J};J.refresh=function(){var X=S.splice(0,S.length);for(var W=0,V=X.length;W<V;++W){J.replace.apply(null,X[W])}return J};J.registerEngine=function(W,V){if(!V){return J}T[W]=V;return J.set("engine",W)};J.registerFont=function(X){var V=new O(X),W=V.family;if(!G[W]){G[W]=new D()}G[W].add(V);return J.set("fontFamily",W)};J.replace=function(X,W,V){W=F(Q,W);if(!W.engine){return J}if(typeof W.textShadow=="string"){W.textShadow=K.textShadow(W.textShadow)}if(!V){S.push(arguments)}if(X.nodeType||typeof X=="string"){X=[X]}K.ready(function(){for(var Z=0,Y=X.length;Z<Y;++Z){var a=X[Z];if(typeof a=="string"){J.replace(W.selector(a),W,true)}else{I(a,W)}}});return J};J.set=function(V,W){Q[V]=W;return J};return J})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:none}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,I){var N=0,M=0;var G=Cufon.VML.parsePath(O);var H=new Array(G.length-1);generate:for(var K=0,J=G.length;K<J;++K){var L=G[K].coords;switch(G[K].type){case"v":H[K]={m:"bezierCurveTo",a:[N+Number(L[0]),M+Number(L[1]),N+Number(L[2]),M+Number(L[3]),N+=Number(L[4]),M+=Number(L[5])]};break;case"r":H[K]={m:"lineTo",a:[N+=Number(L[0]),M+=Number(L[1])]};break;case"m":H[K]={m:"moveTo",a:[N=Number(L[0]),M=Number(L[1])]};break;case"x":H[K]={m:"closePath"};break;case"e":break generate}I[H[K].m].apply(I,H[K].a)}return H}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(p,S,j,O,W,q){var U=p.viewBox;var I=j.getSize("fontSize",p.baseSize);var f=j.get("letterSpacing");f=(f=="normal")?0:I.convertFrom(parseInt(f,10));var V=0,h=0,e=0,Q=0;var T=O.textShadow,c=[];if(T){for(var o=0,k=T.length;o<k;++o){var Y=T[o];var b=I.convertFrom(parseFloat(Y.offX));var a=I.convertFrom(parseFloat(Y.offY));c[o]=[b,a];if(a<V){V=a}if(b>h){h=b}if(a>e){e=a}if(b<Q){Q=b}}}var t=Cufon.CSS.textTransform(S,j).split("");var G=0,R=null;for(var o=0,k=t.length;o<k;++o){var P=p.glyphs[t[o]]||p.missingGlyph;if(!P){continue}G+=R=Number(P.w||p.w)+f}if(R===null){return null}h+=(U.width-R);Q+=U.minX;var N=document.createElement("span");N.className="cufon cufon-canvas";N.alt=S;var J=document.createElement("canvas");var u=N.style;var Z=J.style;var H=I.convert(U.height-V+e);var s=Math.ceil(H);var d=s/H;J.width=Math.ceil(I.convert(G+h-Q)*d);J.height=s;V+=U.minY;Z.top=Math.round(I.convert(V-p.ascent))+"px";Z.left=Math.round(I.convert(Q))+"px";var M=Math.ceil(I.convert(G*d))+"px";if(A){u.width=M;u.height=I.convert(p.height)+"px"}else{u.paddingLeft=M;u.paddingBottom=(I.convert(p.height)-1)+"px"}var r=J.getContext("2d"),X=s/U.height;r.scale(X,X);r.translate(-Q,-V);r.lineWidth=p.face["underline-thickness"];r.save();function K(i,g){r.strokeStyle=g;r.beginPath();r.moveTo(0,i);r.lineTo(G,i);r.stroke()}var L=O.enableTextDecoration?Cufon.CSS.textDecoration(q,j):{};if(L.underline){K(-p.face["underline-position"],L.underline)}if(L.overline){K(p.ascent,L.overline)}r.fillStyle=j.get("color");function n(){for(var v=0,g=t.length;v<g;++v){var w=p.glyphs[t[v]]||p.missingGlyph;if(!w){continue}r.beginPath();if(w.d){if(w.code){C(w.code,r)}else{w.code=D("m"+w.d,r)}}r.fill();r.translate(Number(w.w||p.w)+f,0)}}if(T){for(var o=0,k=T.length;o<k;++o){var Y=T[o];r.save();r.fillStyle=Y.color;r.translate.apply(r,c[o]);n();r.restore()}}n();r.restore();if(L["line-through"]){K(-p.descent,L["line-through"])}N.appendChild(J);if(O.printable){var m=document.createElement("span");m.className="cufon-alt";m.appendChild(document.createTextNode(S));N.appendChild(m)}return N}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}var C=0;function B(E,F){return A(E,/(?:em|ex|%)$/i.test(F)?"1em":F)}function A(H,I){if(/px$/i.test(I)){return parseFloat(I)}var G=H.style.left,F=H.runtimeStyle.left;H.runtimeStyle.left=H.currentStyle.left;H.style.left=I;var E=H.style.pixelLeft;H.style.left=G;H.runtimeStyle.left=F;return E}function D(F,H){var E=document.createElement("cvml:shapetype");E.id="cufon-glyph-"+C++;F.typeRef="#"+E.id;E.stroked="f";E.coordsize=H.width+","+H.height;E.coordorigin=H.minX+","+H.minY;var G="m"+H.minX+","+H.minY+" r"+H.width+","+H.height;E.path=(F.d?"m"+F.d+"x":"")+G;document.body.insertBefore(E,document.body.firstChild)}return function(j,R,e,O,V,k,c){var U=j.viewBox;var G=e.computedFontSize||(e.computedFontSize=new Cufon.CSS.Size(B(k,e.get("fontSize"))+"px",j.baseSize));var b=e.computedLSpacing;if(b==undefined){b=e.get("letterSpacing");e.computedLSpacing=b=(b=="normal")?0:G.convertFrom(A(k,b))}var N=document.createElement("span");N.className="cufon cufon-vml";N.alt=R;var H=document.createElement("cvml:group");var r=N.runtimeStyle;var X=H.runtimeStyle;var F=G.convert(U.height);X.height=Math.ceil(F);X.top=Math.round(G.convert(U.minY-j.ascent));X.left=Math.round(G.convert(U.minX));var a=parseInt(X.height,10)/F;r.height=G.convert(-j.ascent+j.descent)+"px";var J=O.enableTextDecoration?Cufon.CSS.textDecoration(k,e):{};var Q=e.get("color");var o=Cufon.CSS.textTransform(R,e).split("");var E=0,Z=0,K=null;var T=O.textShadow;for(var h=0,f=o.length;h<f;++h){var P=j.glyphs[o[h]]||j.missingGlyph;if(!P){continue}if(!P.typeRef){D(P,U)}var L=document.createElement("cvml:shape");L.type=P.typeRef;var m=L.runtimeStyle;m.width=U.width;m.height=U.height;m.top=0;m.left=Z;m.zIndex=1;L.fillcolor=Q;H.appendChild(L);if(T){for(var Y=0,d=T.length;Y<d;++Y){var W=T[Y];var q=Cufon.CSS.color(W.color);var I=L.cloneNode(false),S=I.runtimeStyle;S.top=G.convertFrom(parseFloat(W.offY));S.left=Z+G.convertFrom(parseFloat(W.offX));S.zIndex=0;I.fillcolor=q.color;if(q.opacity){var n=document.createElement("cvml:fill");n.opacity=q.opacity;I.appendChild(n)}H.appendChild(I)}}K=Number(P.w||j.w)+b;E+=K;Z+=K}if(K===null){return null}var M=-U.minX+E+(U.width-K);H.coordsize=M+","+U.height;X.width=G.convert(M*a);r.width=Math.max(Math.ceil(G.convert(E*a)),0);N.appendChild(H);if(O.printable){var g=document.createElement("span");g.className="cufon-alt";g.innerText=R;N.appendChild(g)}if(!c){N.appendChild(document.createElement("cvml:group"))}return N}})());

Cufon.registerFont({"w":667,"face":{"font-family":"Trade Gothic LT Std","font-weight":400,"font-stretch":"expanded","units-per-em":"1000","panose-1":"0 0 5 5 0 0 0 0 0 0","ascent":"727","descent":"-273","x-height":"16","bbox":"-170 -1017 1019 250","underline-thickness":"50","underline-position":"-100","stemh":"69","stemv":"81","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":361},"!":{"d":"115,0r0,-116r103,0r0,116r-103,0xm134,-216r-24,-511r113,0r-21,511r-68,0","w":333},"\"":{"d":"142,-471r0,-256r66,0r0,256r-66,0xm292,-471r0,-256r66,0r0,256r-66,0","w":500},"#":{"d":"305,-441r-20,155r132,0r20,-155r-132,0xm109,-226r0,-60r116,0r20,-155r-107,0r0,-60r116,0r30,-226r60,0r-30,226r132,0r30,-226r60,0r-30,226r107,0r0,60r-116,0r-20,155r107,0r0,60r-116,0r-30,226r-60,0r30,-226r-132,0r-30,226r-60,0r30,-226r-107,0","w":722},"$":{"d":"324,144r0,-144v-72,-8,-181,-18,-290,-137r61,-55v60,72,142,110,231,118r0,-258v-187,-33,-268,-90,-268,-190v0,-145,140,-194,270,-194r0,-103r63,0r0,103v156,5,230,76,275,119r-57,57v-82,-86,-145,-95,-218,-102r0,244v105,17,290,42,290,195v0,160,-159,195,-290,203r0,144r-67,0xm326,-412r0,-230v-90,0,-190,30,-190,110v0,64,52,95,190,120xm391,-320r0,246v94,-5,212,-31,212,-120v0,-83,-70,-102,-212,-126","w":722},"%":{"d":"629,-162v0,61,50,111,111,111v61,0,111,-50,111,-111v0,-61,-50,-111,-111,-111v-61,0,-111,50,-111,111xm261,18r424,-763r60,0r-424,763r-60,0xm149,-565v0,61,50,111,111,111v61,0,111,-50,111,-111v0,-61,-50,-111,-111,-111v-61,0,-111,50,-111,111xm560,-162v0,-99,81,-180,180,-180v99,0,180,81,180,180v0,99,-81,180,-180,180v-99,0,-180,-81,-180,-180xm80,-565v0,-99,81,-180,180,-180v99,0,180,81,180,180v0,99,-81,180,-180,180v-99,0,-180,-81,-180,-180","w":1000},"&":{"d":"803,-395r71,35v-38,93,-99,166,-160,225v71,44,116,66,200,72r0,81v-105,-3,-186,-34,-269,-97v-78,45,-161,97,-333,97v-177,0,-277,-79,-277,-220v0,-136,120,-203,237,-235v-47,-55,-61,-111,-61,-155v0,-76,56,-153,179,-153v110,0,193,53,193,160v0,129,-109,175,-166,190v70,78,136,137,232,216v88,-76,115,-132,154,-216xm119,-200v0,126,133,144,205,144v97,0,192,-36,252,-73v-97,-78,-205,-189,-252,-242v-84,26,-205,63,-205,171xm396,-676v-60,0,-104,34,-104,91v0,44,27,84,68,127v65,-20,142,-44,142,-133v0,-68,-67,-85,-106,-85","w":944},"\u2019":{"d":"83,-471r55,-152r-46,0r0,-104r103,0r0,109r-63,147r-49,0","w":278},"(":{"d":"225,-745r91,0v-117,140,-178,223,-178,412v0,189,61,272,178,412r-91,0v-130,-141,-168,-264,-168,-412v0,-148,38,-271,168,-412","w":333},")":{"d":"108,79r-91,0v117,-140,178,-223,178,-412v0,-189,-61,-272,-178,-412r91,0v130,141,168,264,168,412v0,148,-38,271,-168,412","w":333},"*":{"d":"76,-566r20,-77r125,57r6,-5r-16,-136r78,0r-16,136r6,5r125,-57r20,77r-138,23r-3,7r96,104r-61,45r-65,-126r-6,0r-65,126r-61,-45r96,-104r-3,-7","w":500},"+":{"d":"270,0r0,-223r-223,0r0,-60r223,0r0,-223r60,0r0,223r223,0r0,60r-223,0r0,223r-60,0","w":600},",":{"d":"120,158r55,-158r-46,0r0,-116r103,0r0,116r-63,158r-49,0","w":361},"-":{"d":"31,-304r271,0r0,74r-271,0r0,-74","w":333},".":{"d":"129,0r0,-116r103,0r0,116r-103,0","w":361},"\/":{"d":"-11,18r222,-763r70,0r-222,763r-70,0","w":278},"0":{"d":"361,-56v133,0,248,-108,248,-310v0,-158,-76,-305,-248,-305v-172,0,-248,147,-248,305v0,202,115,310,248,310xm361,18v-164,0,-329,-109,-329,-379v0,-320,219,-384,329,-384v110,0,329,64,329,384v0,270,-165,379,-329,379","w":722},"1":{"d":"188,0r0,-74r146,0r0,-571r-158,11r0,-60v60,-8,141,-35,182,-51r57,0r0,671r145,0r0,74r-372,0","w":722},"2":{"d":"670,-74r0,74r-627,0r0,-67v23,-45,78,-140,259,-230v169,-85,284,-104,284,-231v0,-81,-76,-143,-208,-143v-172,0,-228,94,-255,154r-72,-34v25,-74,113,-194,317,-194v206,0,302,87,302,213v0,153,-118,202,-235,253v-134,59,-224,100,-302,205r537,0","w":722},"3":{"d":"18,-119r62,-54v73,78,158,117,273,117v89,0,230,-31,230,-153v0,-95,-76,-139,-241,-139r-134,0r0,-74v153,3,353,5,351,-122v0,-90,-110,-127,-207,-127v-117,0,-199,44,-244,99r-62,-55v58,-60,132,-118,309,-118v121,0,285,44,285,192v0,110,-77,144,-121,164v67,23,145,62,145,177v0,174,-155,230,-320,230v-188,0,-271,-82,-326,-137","w":722},"4":{"d":"109,-236r384,0r0,-428xm574,-162r0,180r-81,0r0,-180r-477,0r0,-72r442,-493r116,0r0,491r118,0r0,74r-118,0","w":722},"5":{"d":"39,-117r63,-55v45,55,96,116,254,116v162,0,242,-75,242,-184v0,-120,-123,-176,-231,-176v-91,0,-180,29,-229,101r-66,-19r28,-393r524,0r0,74r-456,0r-18,231v42,-31,112,-68,229,-68v165,0,303,92,303,252v0,134,-96,256,-316,256v-201,0,-267,-72,-327,-135","w":722},"6":{"d":"650,-657r-51,62v-190,-162,-493,-61,-488,242v77,-65,158,-112,282,-112v197,0,299,108,299,235v0,179,-153,248,-316,248v-201,0,-346,-135,-346,-368v0,-264,171,-395,359,-395v131,0,194,34,261,88xm608,-223v0,-102,-95,-168,-219,-168v-125,0,-211,63,-267,126v18,141,142,209,258,209v127,0,228,-57,228,-167","w":722},"7":{"d":"56,-653r0,-74r613,0r0,49r-423,696r-96,0r415,-671r-509,0","w":722},"8":{"d":"688,-196v0,170,-174,214,-328,214v-154,0,-326,-48,-326,-220v-1,-119,116,-162,158,-179v-109,-43,-130,-101,-130,-182v0,-75,74,-182,298,-182v153,0,299,52,299,194v0,106,-81,141,-134,164v91,37,163,82,163,191xm115,-198v0,116,161,142,245,142v99,0,247,-28,247,-137v0,-123,-197,-152,-247,-152v-58,0,-245,22,-245,147xm578,-544v0,-105,-131,-127,-218,-127v-107,0,-217,24,-217,127v0,44,32,66,60,85v28,18,126,40,157,40v74,-8,218,-38,218,-125","w":722},"9":{"d":"72,-70r51,-62v190,162,493,61,488,-242v-77,65,-158,112,-282,112v-197,0,-299,-108,-299,-235v0,-179,153,-248,316,-248v201,0,346,135,346,368v0,264,-171,395,-359,395v-131,0,-194,-34,-261,-88xm114,-504v0,102,95,168,219,168v125,0,211,-63,267,-126v-18,-141,-142,-209,-258,-209v-127,0,-228,57,-228,167","w":722},":":{"d":"129,0r0,-116r103,0r0,116r-103,0xm129,-301r0,-116r103,0r0,116r-103,0","w":361},";":{"d":"120,158r55,-158r-46,0r0,-116r103,0r0,116r-63,158r-49,0xm129,-301r0,-116r103,0r0,116r-103,0","w":361},"<":{"d":"47,-225r0,-56r506,-233r0,66r-425,195r425,195r0,66","w":600},"=":{"d":"47,-320r0,-60r506,0r0,60r-506,0xm47,-126r0,-60r506,0r0,60r-506,0","w":600},">":{"d":"553,-281r0,56r-506,233r0,-66r425,-195r-425,-195r0,-66","w":600},"?":{"d":"317,-219r-74,0v-3,-118,43,-155,148,-217v61,-34,99,-57,99,-122v0,-67,-67,-113,-173,-113v-94,0,-171,36,-219,118r-71,-41v63,-94,132,-151,291,-151v118,0,256,50,256,181v0,114,-52,140,-130,189v-103,54,-124,71,-127,156xm229,0r0,-116r103,0r0,116r-103,0","w":611},"@":{"d":"243,-292v0,63,27,97,82,97v101,0,183,-149,183,-243v0,-67,-32,-91,-81,-91v-114,0,-184,148,-184,237xm552,-503r25,-68r63,0r-106,293v-11,35,-31,86,17,88v52,0,171,-93,171,-251v0,-153,-149,-250,-302,-250v-193,0,-342,149,-342,328v0,185,156,327,342,327v115,0,227,-57,277,-134r68,0v-68,116,-205,188,-345,188v-229,0,-402,-173,-402,-381v0,-212,180,-382,402,-382v200,0,362,133,362,318v0,158,-135,292,-247,292v-42,2,-68,-27,-72,-71v-28,30,-78,71,-146,71v-91,0,-140,-69,-140,-152v0,-142,105,-302,256,-302v51,0,95,25,116,86r3,0","w":800},"A":{"d":"250,-267r390,0r-195,-391xm17,0r374,-727r108,0r373,727r-99,0r-94,-189r-469,0r-95,189r-98,0","w":889},"B":{"d":"95,0r0,-727r421,0v83,0,282,0,282,190v0,100,-65,131,-111,153v44,19,136,59,136,180v0,196,-205,204,-356,204r-372,0xm183,-343r0,265r341,0v106,0,209,-18,209,-129v0,-101,-80,-136,-199,-136r-351,0xm183,-653r0,236r309,0v102,0,218,-17,218,-119v0,-116,-118,-117,-248,-117r-279,0","w":889},"C":{"d":"773,-231r78,38v-78,151,-213,211,-390,211v-282,0,-415,-169,-415,-380v0,-250,169,-383,414,-383v156,0,315,60,380,208r-76,35v-51,-119,-164,-169,-303,-169v-208,0,-325,113,-325,320v0,167,113,291,333,291v144,0,244,-60,304,-171","w":889},"D":{"d":"95,0r0,-727r359,0v226,0,389,119,389,357v0,296,-225,370,-417,370r-331,0xm183,-649r0,571r257,0v72,0,313,-9,313,-295v0,-213,-151,-276,-299,-276r-271,0","w":889},"E":{"d":"95,0r0,-727r648,0r0,78r-560,0r0,232r468,0r0,78r-468,0r0,261r572,0r0,78r-660,0","w":778},"F":{"d":"95,0r0,-727r664,0r0,78r-576,0r0,230r486,0r0,78r-486,0r0,341r-88,0","w":778},"G":{"d":"456,-353r375,0r0,359r-78,0r0,-106v-49,57,-128,118,-292,118v-282,0,-415,-169,-415,-380v0,-250,169,-383,414,-383v173,0,306,78,360,200r-74,39v-57,-130,-191,-165,-289,-165v-204,0,-321,113,-321,320v0,167,113,291,329,291v132,0,274,-64,286,-215r-295,0r0,-78","w":889},"H":{"d":"98,0r0,-727r88,0r0,308r572,0r0,-308r88,0r0,727r-88,0r0,-341r-572,0r0,341r-88,0","w":944},"I":{"d":"95,0r0,-727r88,0r0,727r-88,0","w":278},"J":{"d":"428,-727r88,0r0,471v0,219,-156,274,-271,274v-157,0,-214,-95,-238,-158r78,-39v17,41,49,119,167,119v108,0,175,-72,176,-192r0,-475","w":611},"K":{"d":"95,0r0,-727r88,0r0,387r496,-387r135,0r-355,274r408,453r-119,0r-358,-400r-207,162r0,238r-88,0","w":889},"L":{"d":"95,0r0,-727r88,0r0,649r574,0r0,78r-662,0","w":778},"M":{"d":"95,0r0,-727r136,0r269,612r269,-612r136,0r0,727r-81,0r0,-649r-2,0r-284,649r-74,0r-286,-649r-2,0r0,649r-81,0","w":1000},"N":{"d":"95,0r0,-727r125,0r541,598r0,-598r88,0r0,727r-88,0r-582,-649r0,649r-84,0","w":944},"O":{"d":"46,-359v0,-242,179,-386,426,-386v247,0,426,144,426,386v0,258,-216,377,-426,377v-210,0,-426,-119,-426,-377xm136,-375v0,221,157,315,336,315v177,0,336,-94,336,-315v0,-162,-125,-296,-336,-296v-211,0,-336,134,-336,296","w":944},"P":{"d":"95,0r0,-727r426,0v147,0,281,42,281,208v0,167,-134,209,-281,209r-338,0r0,310r-88,0xm183,-649r0,261r315,0v146,0,220,-31,220,-130v0,-100,-74,-131,-220,-131r-315,0","w":832},"Q":{"d":"894,11r0,83v-116,0,-171,-21,-244,-107v-279,93,-597,-25,-604,-346v0,-242,179,-386,426,-386v247,0,426,144,426,386v0,149,-71,251,-173,312v25,28,57,58,169,58xm484,-171r0,-84v92,17,140,49,190,143v81,-47,134,-133,134,-263v0,-162,-125,-296,-336,-296v-211,0,-336,134,-336,296v1,270,234,357,467,296v-31,-51,-58,-77,-119,-92","w":944},"R":{"d":"183,-649r0,249r312,0v127,0,222,-18,222,-125v0,-106,-95,-124,-222,-124r-312,0xm95,0r0,-727r420,0v116,0,286,25,286,203v0,152,-141,196,-229,200r240,324r-109,0r-234,-322r-286,0r0,322r-88,0","w":889},"S":{"d":"34,-150r68,-58v42,56,112,148,330,148v112,0,265,-32,265,-145v0,-221,-634,-27,-634,-322v0,-155,143,-218,341,-218v192,0,310,79,360,149r-64,52v-30,-34,-100,-127,-298,-127v-146,0,-249,38,-249,130v0,220,634,10,634,336v0,122,-118,223,-365,223v-238,0,-326,-99,-388,-168","w":832},"T":{"d":"372,0r0,-649r-351,0r0,-78r790,0r0,78r-351,0r0,649r-88,0","w":832},"U":{"d":"846,-727r0,428v0,263,-205,317,-374,317v-169,0,-374,-54,-374,-317r0,-428r88,0r0,428v0,167,107,243,286,243v179,0,286,-76,286,-243r0,-428r88,0","w":944},"V":{"d":"-3,-727r98,0r321,631r322,-631r97,0r-376,727r-86,0","w":832},"W":{"d":"238,0r-227,-727r93,0r172,590r2,0r179,-590r84,0r180,587r2,0r174,-587r92,0r-226,727r-84,0r-177,-593r-2,0r-178,593r-84,0","w":1000},"X":{"d":"6,0r354,-377r-324,-350r117,0r265,289r268,-289r117,0r-326,349r349,378r-116,0r-290,-316r-295,316r-119,0","w":832},"Y":{"d":"400,0r0,-294r-375,-433r115,0r304,355r304,-355r115,0r-375,433r0,294r-88,0","w":888},"Z":{"d":"18,0r0,-52r588,-597r-558,0r0,-78r700,0r0,55r-584,594r596,0r0,78r-742,0","w":778},"[":{"d":"78,61r0,-788r241,0r0,44r-160,0r0,700r160,0r0,44r-241,0","w":333},"\\":{"d":"219,18r-222,-763r70,0r222,763r-70,0","w":278},"]":{"d":"255,-727r0,788r-241,0r0,-44r160,0r0,-700r-160,0r0,-44r241,0","w":333},"^":{"d":"490,-274r-190,-375r-190,375r-66,0r231,-453r50,0r231,453r-66,0","w":600},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"\u2018":{"d":"195,-727r-55,152r46,0r0,104r-103,0r0,-109r63,-147r49,0","w":278},"a":{"d":"588,-370v4,123,-10,262,9,370r-81,0v-4,-16,-10,-42,-10,-63v-76,49,-161,79,-261,79v-86,0,-213,-24,-213,-159v0,-181,271,-188,475,-212v10,-92,-77,-115,-168,-118v-139,0,-188,58,-214,88r-61,-42v30,-37,87,-112,269,-112v119,0,255,35,255,169xm507,-132r0,-157v-238,23,-398,45,-398,146v0,82,92,93,132,93v113,0,214,-54,266,-82"},"b":{"d":"156,-367r0,203v50,54,140,111,227,111v142,0,226,-94,226,-202v0,-159,-116,-215,-224,-215v-113,0,-181,53,-229,103xm75,-727r81,0r0,276v70,-53,126,-88,234,-88v224,0,300,161,300,282v0,119,-84,273,-290,273v-116,0,-170,-34,-248,-98r-20,82r-63,0v14,-231,2,-486,6,-727","w":722},"c":{"d":"605,-396r-70,40v-23,-37,-72,-114,-203,-114v-108,0,-219,62,-219,215v0,115,98,202,226,202v85,0,158,-25,213,-120r70,39v-46,80,-122,150,-285,150v-188,0,-305,-122,-305,-279v0,-180,138,-276,300,-276v158,0,233,75,273,143"},"d":{"d":"566,-164r0,-203v-48,-50,-116,-103,-229,-103v-108,0,-224,56,-224,215v0,108,84,202,226,202v87,0,177,-57,227,-111xm566,-727r81,0r0,629v0,14,5,82,6,98r-73,0r-10,-82v-79,64,-132,98,-252,98v-202,0,-286,-154,-286,-273v0,-121,76,-282,300,-282v108,0,162,35,234,88r0,-276","w":722},"e":{"d":"549,-155r63,46v-54,57,-106,125,-284,125v-176,0,-296,-120,-296,-280v0,-166,125,-275,286,-275v167,0,313,87,309,294r-514,0v8,98,87,192,223,192v135,0,180,-61,213,-102xm116,-314r423,0v-16,-86,-90,-156,-214,-156v-119,0,-186,60,-209,156"},"f":{"d":"155,0r0,-443r-132,0r0,-69r132,0r0,-40v0,-86,27,-193,186,-193v83,0,115,9,136,14r0,72v-36,-9,-71,-17,-112,-17v-127,1,-131,65,-129,164r215,0r0,69r-215,0r0,443r-81,0","w":500},"g":{"d":"634,-543r0,74v-60,0,-82,13,-98,22v13,20,29,45,29,101v0,66,-59,179,-244,179v-77,0,-103,-7,-151,-25v-25,9,-37,23,-37,43v0,35,20,41,204,43v197,2,300,17,300,129v0,140,-197,161,-337,161v-108,0,-280,-20,-280,-147v0,-38,20,-72,89,-96v-29,-16,-57,-31,-57,-73v0,-48,45,-75,72,-91v-43,-39,-71,-72,-71,-132v-6,-204,310,-224,446,-135v43,-35,65,-53,135,-53xm299,118v136,0,260,-21,260,-87v0,-46,-37,-56,-184,-61v-64,-2,-127,-4,-191,-7v-55,20,-86,40,-86,75v0,61,107,80,201,80xm308,-473v-74,0,-177,22,-177,119v0,103,122,121,179,121v79,0,177,-26,177,-121v0,-101,-104,-119,-179,-119"},"h":{"d":"75,0r0,-727r81,0r0,280v55,-48,127,-92,220,-92v65,0,216,15,216,194r0,345r-81,0r0,-329v2,-124,-88,-141,-145,-141v-89,0,-163,55,-210,105r0,365r-81,0"},"i":{"d":"72,0r0,-523r81,0r0,523r-81,0xm65,-727r93,0r0,93r-93,0r0,-93","w":223},"j":{"d":"-4,176r0,-70v60,21,123,9,114,-78r0,-551r80,0r0,569v0,87,-34,138,-134,138v-27,0,-47,-5,-60,-8xm103,-727r93,0r0,93r-93,0r0,-93","w":278},"k":{"d":"75,0r0,-727r81,0r0,463r334,-259r125,0r-246,190r278,333r-103,0r-237,-287r-151,116r0,171r-81,0"},"l":{"d":"71,0r0,-727r81,0r0,727r-81,0","w":223},"m":{"d":"71,0r0,-523r78,0r0,73v60,-51,122,-89,208,-89v114,0,145,55,166,93v82,-69,136,-93,213,-93v48,0,192,10,192,161r0,378r-81,0r0,-348v0,-32,0,-122,-115,-122v-91,0,-158,60,-192,92r0,378r-81,0r0,-348v0,-32,0,-122,-113,-122v-93,0,-160,60,-194,92r0,378r-81,0","w":999},"n":{"d":"75,0r0,-523r81,0r0,76v55,-48,127,-92,220,-92v65,0,216,15,216,194r0,345r-81,0r0,-329v2,-124,-88,-141,-145,-141v-89,0,-163,55,-210,105r0,365r-81,0"},"o":{"d":"334,16v-178,0,-302,-102,-302,-287v0,-149,118,-268,302,-268v184,0,301,119,301,268v0,185,-123,287,-301,287xm334,-53v137,0,220,-83,220,-208v0,-95,-62,-209,-220,-209v-158,0,-221,114,-221,209v0,125,84,208,221,208"},"p":{"d":"156,-359r0,203v48,50,116,103,229,103v108,0,224,-56,224,-215v0,-108,-84,-202,-226,-202v-87,0,-177,57,-227,111xm75,184r0,-707r81,0r0,79v75,-61,128,-95,248,-95v202,0,286,154,286,273v0,121,-76,282,-300,282v-108,0,-162,-35,-234,-88r0,256r-81,0","w":722},"q":{"d":"566,-156r0,-203v-50,-54,-140,-111,-227,-111v-142,0,-226,94,-226,202v0,159,116,215,224,215v113,0,181,-53,229,-103xm647,-523r0,707r-81,0r0,-256v-72,53,-126,88,-234,88v-224,0,-300,-161,-300,-282v0,-119,84,-273,286,-273v120,0,173,34,250,98r19,-82r60,0","w":722},"r":{"d":"75,0r0,-523r81,0r0,109v52,-62,138,-146,266,-121r0,81v-10,-1,-30,-7,-65,-7v-115,0,-198,133,-201,148r0,313r-81,0","w":444},"s":{"d":"27,-108r60,-55v51,64,127,110,237,110v86,0,164,-27,164,-89v0,-148,-435,-22,-435,-238v0,-119,122,-159,232,-159v176,0,240,75,267,113r-55,50v-43,-55,-110,-94,-213,-94v-96,0,-150,30,-150,85v0,135,435,13,435,237v0,120,-118,164,-252,164v-116,0,-212,-33,-290,-124","w":611},"t":{"d":"412,-523r0,69r-208,0r0,316v0,57,25,85,107,85v39,0,71,-7,115,-16r0,70v-58,9,-99,15,-132,15v-171,0,-171,-104,-171,-146r0,-324r-111,0r0,-69r111,0r0,-174r81,0r0,174r208,0","w":444},"u":{"d":"592,-523r0,523r-81,0r0,-76v-55,48,-127,92,-220,92v-65,0,-216,-15,-216,-194r0,-345r81,0r0,329v-2,124,88,141,145,141v89,0,163,-55,210,-105r0,-365r81,0"},"v":{"d":"293,0r-268,-523r88,0r220,435r222,-435r87,0r-268,523r-81,0"},"w":{"d":"235,0r-220,-523r83,0r174,426r162,-426r76,0r162,427r172,-427r85,0r-221,523r-77,0r-159,-424r-160,424r-77,0","w":944},"x":{"d":"-1,0r253,-275r-232,-248r104,0r183,194r177,-194r104,0r-232,248r256,275r-106,0r-199,-222r-202,222r-106,0","w":611},"y":{"d":"49,168r0,-74v124,35,180,22,244,-114r-269,-503r88,0r224,422r214,-422r88,0r-306,590v-33,64,-89,117,-183,117v-34,0,-67,-6,-100,-16"},"z":{"d":"564,-523r-2,50r-396,404r407,0r0,69r-535,0r0,-51r397,-403r-376,0r0,-69r505,0","w":611},"{":{"d":"285,61v-99,4,-184,1,-177,-101r0,-157v0,-95,-14,-114,-60,-114r0,-44v46,0,60,-19,60,-114r0,-157v-6,-102,78,-106,177,-101r0,44v-53,0,-99,-5,-96,53r0,189v1,74,-28,95,-60,109v35,9,60,36,60,107r0,189v-3,58,43,53,96,53r0,44","w":333},"|":{"d":"81,250r0,-1000r60,0r0,1000r-60,0","w":222},"}":{"d":"48,-727v99,-4,184,-1,177,101r0,157v0,95,14,114,60,114r0,44v-46,0,-60,19,-60,114r0,157v6,102,-78,106,-177,101r0,-44v53,0,99,5,96,-53r0,-189v-1,-74,28,-95,60,-109v-35,-9,-60,-36,-60,-107r0,-189v3,-58,-43,-53,-96,-53r0,-44","w":333},"~":{"d":"194,-317v66,-4,155,66,213,68v40,0,65,-37,88,-72r36,46v-30,42,-63,86,-125,86v-76,1,-132,-69,-209,-68v-47,0,-72,37,-92,72r-36,-46v22,-42,58,-86,125,-86","w":600},"\u00a1":{"d":"218,-523r0,116r-103,0r0,-116r103,0xm199,-307r24,511r-113,0r21,-511r68,0","w":333},"\u00a2":{"d":"252,-99r140,-386v-132,-9,-240,51,-246,214v0,75,44,137,106,172xm417,-552r45,-124r63,0r-49,135v88,26,136,79,165,129r-70,40v-17,-28,-49,-78,-120,-101r-144,396v124,22,213,1,281,-112r70,39v-46,80,-122,150,-288,150v-31,0,-60,-3,-88,-10r-49,135r-64,0r57,-154v-96,-35,-161,-138,-161,-250v3,-197,158,-294,352,-273","w":722},"\u00a3":{"d":"25,18r0,-83v135,-30,130,-146,130,-261r-129,0r0,-65r124,0v-7,-41,-10,-90,-10,-146v0,-122,114,-212,267,-208v116,4,224,47,272,188r-75,31v-20,-68,-72,-145,-208,-145v-180,-4,-196,132,-165,280r179,0r0,65r-174,0v0,83,-5,143,-32,203v71,36,186,67,261,67v98,0,142,-40,157,-131r75,15v-19,115,-75,190,-240,190v-107,0,-232,-52,-286,-76v-33,36,-69,64,-146,76","w":722},"\u2044":{"d":"-112,18r-58,0r450,-763r57,0","w":167},"\u00a5":{"d":"317,0r0,-156r-177,0r0,-62r177,0r0,-74r-177,0r0,-62r136,0r-256,-373r115,0r226,355r226,-355r115,0r-256,373r136,0r0,62r-177,0r0,74r177,0r0,62r-177,0r0,156r-88,0","w":722},"\u0192":{"d":"668,-737r-12,70v-37,-8,-60,-9,-85,-9v-53,0,-101,24,-127,150r-12,60r185,0r0,69r-199,0r-65,331v-42,250,-135,267,-319,241r9,-70v31,6,54,10,78,10v114,0,124,-54,146,-167r67,-345r-175,0r0,-69r189,0r12,-66v35,-181,133,-213,207,-213v33,0,65,4,101,8","w":722},"\u00a7":{"d":"408,-640r-59,38v-19,-30,-46,-74,-108,-74v-36,0,-69,19,-69,61v0,28,1,45,110,133v133,107,189,173,189,242v0,81,-68,109,-118,112v21,18,59,50,59,110v0,57,-38,144,-153,144v-104,0,-151,-71,-177,-113r59,-38v24,40,57,82,116,82v39,0,81,-21,81,-71v0,-49,-55,-84,-148,-161v-123,-102,-161,-150,-161,-207v7,-83,62,-125,125,-113r2,-2v-38,-38,-65,-59,-65,-117v0,-57,37,-131,145,-131v105,0,152,73,172,105xm397,-236v0,-34,-30,-74,-113,-147v-52,-47,-78,-67,-116,-67v-34,0,-65,21,-65,61v0,30,36,71,92,119v56,48,101,92,142,92v40,0,60,-35,60,-58","w":500},"\u00a4":{"d":"113,-153r54,-56v-73,-89,-72,-219,0,-308r-54,-56r38,-38r55,55v92,-74,218,-73,310,0r55,-55r38,38r-54,56v73,89,72,219,0,308r54,56r-38,38r-55,-55v-92,74,-218,73,-310,0r-55,55xm173,-363v0,104,84,188,188,188v104,0,188,-84,188,-188v0,-104,-84,-188,-188,-188v-104,0,-188,84,-188,188","w":722},"'":{"d":"106,-471r0,-256r66,0r0,256r-66,0","w":278},"\u201c":{"d":"412,-727r-55,152r41,0r0,104r-98,0r0,-109r63,-147r49,0xm200,-727r-55,152r41,0r0,104r-98,0r0,-109r63,-147r49,0","w":500},"\u00ab":{"d":"184,-101r-139,-166r139,-166r82,0r-137,166r137,166r-82,0xm373,-101r-139,-166r139,-166r82,0r-137,166r137,166r-82,0","w":500},"\u2039":{"d":"195,-101r-139,-166r139,-166r82,0r-137,166r137,166r-82,0","w":333},"\u203a":{"d":"138,-433r139,166r-139,166r-82,0r137,-166r-137,-166r82,0","w":333},"\u2013":{"d":"0,-240r0,-54r500,0r0,54r-500,0","w":500},"\u2020":{"d":"36,-455r0,-83r183,18r10,-9r-24,-216r90,0r-24,216r10,9r183,-18r0,83r-183,-21r-10,8r26,170v-11,76,-25,330,-25,435r-44,0v0,-105,-14,-359,-25,-435r26,-170r-10,-8","w":500},"\u2021":{"d":"36,-68r0,-83r183,21r10,-8r-24,-175r24,-155r-10,-8r-183,21r0,-83r183,18r10,-9r-24,-216r90,0r-24,216r10,9r183,-18r0,83r-183,-21r-10,8r24,155r-24,175r10,8r183,-21r0,83r-183,-18r-10,9r24,216r-90,0r24,-216r-10,-9","w":500},"\u00b7":{"d":"107,-320v0,-33,27,-60,60,-60v33,0,60,27,60,60v0,33,-27,60,-60,60v-33,0,-60,-27,-60,-60","w":361},"\u00b6":{"d":"244,108r0,-449v-112,-2,-202,-81,-202,-190v0,-126,83,-196,223,-196r216,0r0,835r-60,0r0,-791r-117,0r0,791r-60,0","w":600},"\u2022":{"d":"68,-364v0,-100,82,-181,182,-181v100,0,182,81,182,181v0,101,-82,182,-182,182v-100,0,-182,-81,-182,-182","w":500},"\u201a":{"d":"83,152r55,-152r-46,0r0,-104r103,0r0,109r-63,147r-49,0","w":278},"\u201e":{"d":"302,152r52,-152r-40,0r0,-104r98,0r0,104r-62,152r-48,0xm88,152r52,-152r-40,0r0,-104r98,0r0,104r-62,152r-48,0","w":500},"\u201d":{"d":"300,-471r55,-152r-41,0r0,-104r98,0r0,109r-63,147r-49,0xm88,-471r55,-152r-41,0r0,-104r98,0r0,109r-63,147r-49,0","w":500},"\u00bb":{"d":"316,-433r139,166r-139,166r-82,0r137,-166r-137,-166r82,0xm127,-433r139,166r-139,166r-82,0r137,-166r-137,-166r82,0","w":500},"\u2026":{"d":"116,0r0,-116r103,0r0,116r-103,0xm449,0r0,-116r103,0r0,116r-103,0xm782,0r0,-116r103,0r0,116r-103,0","w":1000},"\u2030":{"d":"70,-595v0,50,40,90,90,90v50,0,90,-40,90,-90v0,-50,-40,-90,-90,-90v-50,0,-90,40,-90,90xm10,-595v0,-83,67,-150,150,-150v83,0,150,67,150,150v0,83,-67,150,-150,150v-83,0,-150,-67,-150,-150xm66,18r424,-763r60,0r-424,763r-60,0xm384,-168v0,50,40,90,90,90v50,0,90,-40,90,-90v0,-50,-40,-90,-90,-90v-50,0,-90,40,-90,90xm324,-168v0,-83,67,-150,150,-150v83,0,150,67,150,150v0,83,-67,150,-150,150v-83,0,-150,-67,-150,-150xm690,-168v0,-83,67,-150,150,-150v83,0,150,67,150,150v0,83,-67,150,-150,150v-83,0,-150,-67,-150,-150xm750,-168v0,50,40,90,90,90v50,0,90,-40,90,-90v0,-50,-40,-90,-90,-90v-50,0,-90,40,-90,90","w":1000},"\u00bf":{"d":"294,-304r74,0v3,118,-43,155,-148,217v-61,34,-99,57,-99,122v0,67,67,113,173,113v94,0,171,-36,219,-118r71,41v-63,94,-132,151,-291,151v-118,0,-256,-50,-256,-181v0,-114,52,-140,130,-189v103,-54,124,-71,127,-156xm279,-407r0,-116r103,0r0,116r-103,0","w":611},"`":{"d":"76,-740r107,142r-73,0r-148,-142r114,0","w":222},"\u00b4":{"d":"39,-598r107,-142r114,0r-148,142r-73,0","w":222},"\u02c6":{"d":"-46,-598r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0","w":222},"\u02dc":{"d":"49,-715v49,-2,87,35,127,37v23,0,42,-16,43,-45r49,0v-6,31,-21,108,-93,108v-53,2,-85,-36,-129,-39v-18,0,-45,8,-45,46r-47,0v8,-32,14,-107,95,-107","w":222},"\u00af":{"d":"257,-690r0,58r-292,0r0,-58r292,0","w":222},"\u02d8":{"d":"19,-738v1,52,39,77,92,77v50,0,91,-23,92,-77r54,0v-2,50,-21,135,-146,135v-124,0,-144,-85,-146,-135r54,0","w":222},"\u02d9":{"d":"66,-625r0,-102r90,0r0,102r-90,0","w":222},"\u00a8":{"d":"-25,-625r0,-102r90,0r0,102r-90,0xm157,-625r0,-102r90,0r0,102r-90,0","w":222},"\u02da":{"d":"111,-600v-67,0,-120,-55,-120,-120v0,-66,54,-120,120,-120v66,0,120,54,120,120v0,65,-53,120,-120,120xm40,-720v0,37,32,71,71,71v38,0,71,-33,71,-71v0,-38,-33,-71,-71,-71v-39,0,-71,34,-71,71","w":222},"\u00b8":{"d":"39,86r64,-86r47,0r-46,60v7,4,17,-2,31,-2v69,0,87,39,87,77v0,40,-38,95,-124,95v-29,0,-62,-9,-93,-20r17,-47v36,17,120,30,122,-26v-3,-46,-51,-45,-87,-32","w":222},"\u02dd":{"d":"-47,-598r107,-142r114,0r-148,142r-73,0xm126,-598r107,-142r114,0r-148,142r-73,0","w":222},"\u02db":{"d":"250,168r17,40v-14,6,-54,22,-96,22v-74,0,-118,-40,-118,-92v0,-54,30,-96,109,-138r67,0v-82,54,-100,87,-100,128v10,72,72,60,121,40","w":222},"\u02c7":{"d":"268,-740r-112,142r-92,0r-110,-142r84,0r72,94r72,-94r86,0","w":222},"\u2014":{"d":"1000,-240r-1000,0r0,-54r1000,0r0,54","w":1000},"\u00c6":{"d":"481,-667r-225,382r235,0r0,-382r-10,0xm-13,0r432,-727r547,0r0,78r-387,0r0,232r301,0r0,78r-301,0r0,261r398,0r0,78r-486,0r0,-207r-279,0r-123,207r-102,0","w":1000},"\u00aa":{"d":"32,-508v0,-110,187,-117,302,-128v5,-51,-43,-63,-102,-65v-91,0,-123,36,-134,51r-45,-28v19,-22,56,-67,175,-67v77,0,166,21,166,101v2,74,-5,156,5,222r-52,0v-2,-10,-6,-25,-6,-38v-50,30,-105,48,-170,48v-56,0,-139,-15,-139,-96xm334,-501r0,-91v-141,13,-246,28,-246,84v0,43,55,52,80,52v75,0,140,-34,166,-45","w":434},"\u0141":{"d":"95,0r0,-279r-89,60r0,-69r89,-60r0,-379r88,0r0,320r259,-173r0,69r-259,173r0,260r574,0r0,78r-662,0","w":778},"\u00d8":{"d":"219,-152r462,-461v-54,-37,-124,-58,-209,-58v-211,0,-336,134,-336,296v0,99,32,173,83,223xm731,-571r-460,460v56,35,127,51,201,51v177,0,336,-94,336,-315v0,-75,-27,-145,-77,-196xm-4,71r163,-163v-69,-62,-113,-151,-113,-267v0,-242,179,-386,426,-386v104,0,196,26,267,74r102,-102r92,0r-143,143v69,67,108,158,108,271v-2,360,-420,462,-687,307r-123,123r-92,0","w":944},"\u0152":{"d":"320,-735r260,8r395,0r0,78r-382,0r0,234r296,0r0,78r-296,0r0,259r395,0r0,78r-466,0r-196,8v-242,0,-323,-176,-323,-366v0,-168,77,-377,317,-377xm505,-200r0,-315v0,-110,-12,-146,-163,-146v-190,0,-249,148,-249,305v0,178,68,290,259,290v141,0,153,-53,153,-134","w":1000},"\u00ba":{"d":"217,-412v-116,0,-196,-62,-196,-173v0,-89,76,-160,196,-160v119,0,196,71,196,160v0,111,-80,173,-196,173xm217,-458v89,0,140,-50,140,-121v0,-54,-40,-122,-140,-122v-100,0,-140,68,-140,122v0,71,54,121,140,121","w":434},"\u00e6":{"d":"968,-246r-449,0v0,129,98,193,190,193v99,0,142,-52,185,-104r62,46v-47,58,-106,127,-263,127v-99,0,-157,-50,-205,-95v-50,40,-142,95,-267,95v-155,0,-189,-93,-189,-155v0,-169,216,-197,409,-216v7,-84,-42,-112,-140,-115v-98,0,-152,53,-171,83r-65,-44v17,-24,85,-108,236,-108v136,0,175,54,201,90v34,-37,82,-90,201,-90v140,0,265,88,265,293xm441,-127r0,-163v-227,18,-328,73,-328,153v0,52,45,84,113,84v77,0,158,-36,215,-74xm522,-315r362,0v0,-37,-49,-155,-184,-155v-135,-2,-178,123,-178,155","w":1000},"\u0131":{"d":"71,0r0,-523r81,0r0,523r-81,0","w":223},"\u0142":{"d":"-17,-228r0,-69r97,-70r0,-360r81,0r0,301r97,-70r0,69r-97,70r0,357r-81,0r0,-298","w":240},"\u00f8":{"d":"502,-402r-296,317v34,21,78,32,128,32v199,12,284,-211,168,-349xm161,-123r296,-315v-31,-20,-72,-32,-123,-32v-158,0,-221,114,-221,209v0,55,16,102,48,138xm-21,71r129,-137v-48,-48,-76,-117,-76,-205v0,-149,118,-268,302,-268v70,0,130,17,176,45r90,-96r78,0r-123,131v51,48,80,114,80,188v0,185,-123,287,-301,287v-69,0,-130,-15,-180,-46r-94,101r-81,0"},"\u0153":{"d":"972,-246r-419,0v4,153,112,193,173,193v96,0,143,-68,168,-102r65,46v-57,71,-110,125,-246,125v-110,0,-165,-62,-202,-120v-35,58,-100,120,-237,120v-144,0,-246,-100,-246,-281v0,-164,95,-274,254,-274v144,0,201,81,227,118v22,-32,80,-118,204,-118v193,0,266,154,259,293xm290,-53v127,0,182,-89,182,-205v0,-171,-102,-212,-186,-212v-80,0,-177,39,-177,212v0,116,63,205,181,205xm555,-315r333,0v-10,-106,-88,-155,-168,-155v-110,0,-162,81,-165,155","w":1000},"\u00df":{"d":"315,-363r0,-69v92,0,176,-16,176,-127v0,-76,-70,-117,-174,-117v-121,0,-161,78,-161,186r0,490r-81,0r0,-510v0,-156,93,-235,240,-235v190,0,257,98,257,194v1,93,-64,130,-99,142v95,20,159,85,159,208v0,89,-44,219,-243,219v-53,0,-97,-12,-148,-40r30,-65v30,16,70,36,124,36v123,0,156,-80,155,-152v2,-128,-89,-164,-235,-160"},"\u00b9":{"d":"122,-298r0,-56r91,0r0,-319r-99,7r0,-48v58,-5,97,-36,159,-31r0,391r91,0r0,56r-242,0","w":469},"\u00ac":{"d":"493,-108r0,-212r-446,0r0,-60r506,0r0,272r-60,0","w":600},"\u00b5":{"d":"511,0r0,-76v-55,48,-127,92,-213,92v-34,0,-94,0,-142,-41r0,209r-81,0r0,-707r81,0r0,329v-2,124,88,141,145,141v89,0,163,-55,210,-105r0,-365r81,0r0,523r-81,0"},"\u2122":{"d":"162,-315r0,-358r-130,0r0,-54r320,0r0,54r-130,0r0,358r-60,0xm426,-315r0,-412r88,0r130,329r130,-329r88,0r0,412r-60,0r0,-328r-2,0r-132,328r-48,0r-132,-328r-2,0r0,328r-60,0","w":1000},"\u00d0":{"d":"95,0r0,-354r-74,0r0,-54r74,0r0,-319r359,0v226,0,389,119,389,357v0,296,-225,370,-417,370r-331,0xm183,-649r0,241r282,0r0,54r-282,0r0,276r257,0v72,0,313,-9,313,-295v0,-213,-151,-276,-299,-276r-271,0","w":889},"\u00bd":{"d":"299,18r-58,0r450,-763r57,0xm122,-298r0,-56r91,0r0,-319r-99,7r0,-48v58,-5,97,-36,159,-31r0,391r91,0r0,56r-242,0xm982,-56r0,56r-408,0r0,-52v3,-15,39,-78,156,-132v112,-51,187,-57,187,-133v0,-48,-49,-74,-132,-74v-105,0,-141,57,-153,93r-53,-33v16,-44,74,-116,206,-116v134,0,197,52,197,128v0,92,-77,121,-153,152v-87,35,-146,60,-185,111r338,0","w":1083},"\u00b1":{"d":"270,-334r0,-172r60,0r0,172r223,0r0,60r-223,0r0,172r-60,0r0,-172r-223,0r0,-60r223,0xm47,0r0,-60r506,0r0,60r-506,0","w":600},"\u00de":{"d":"95,0r0,-727r88,0r0,123r338,0v147,0,281,42,281,208v0,167,-134,209,-281,209r-338,0r0,187r-88,0xm183,-526r0,261r315,0v146,0,220,-31,220,-130v0,-100,-74,-131,-220,-131r-315,0","w":832},"\u00bc":{"d":"882,-160r0,-233r-228,233r228,0xm942,-108r0,108r-60,0r0,-108r-303,0r0,-43r288,-296r75,0r0,287r77,0r0,52r-77,0xm343,18r-58,0r450,-763r57,0xm122,-298r0,-56r91,0r0,-319r-99,7r0,-48v58,-5,97,-36,159,-31r0,391r91,0r0,56r-242,0","w":1083},"\u00f7":{"d":"240,-47v0,-33,27,-60,60,-60v33,0,60,27,60,60v0,33,-27,60,-60,60v-33,0,-60,-27,-60,-60xm47,-223r0,-60r506,0r0,60r-506,0xm240,-459v0,-33,27,-60,60,-60v33,0,60,27,60,60v0,33,-27,60,-60,60v-33,0,-60,-27,-60,-60","w":600},"\u00a6":{"d":"81,175r0,-350r60,0r0,350r-60,0xm81,-325r0,-350r60,0r0,350r-60,0","w":222},"\u00b0":{"d":"47,-592v0,-84,69,-153,153,-153v84,0,153,69,153,153v0,84,-69,153,-153,153v-84,0,-153,-69,-153,-153xm101,-592v0,55,44,99,99,99v55,0,99,-44,99,-99v0,-55,-44,-99,-99,-99v-55,0,-99,44,-99,99","w":400},"\u00fe":{"d":"156,-359r0,203v48,50,116,103,229,103v108,0,224,-56,224,-215v0,-108,-84,-202,-226,-202v-87,0,-177,57,-227,111xm75,184r0,-911r81,0r0,283v75,-61,128,-95,248,-95v202,0,286,154,286,273v0,121,-76,282,-300,282v-108,0,-162,-35,-234,-88r0,256r-81,0","w":722},"\u00be":{"d":"383,18r-58,0r450,-763r57,0xm32,-369r46,-45v41,48,97,71,162,71v69,0,147,-25,147,-80v0,-51,-49,-78,-157,-78r-75,0r0,-56v90,2,221,3,216,-65v0,-38,-57,-67,-128,-67v-70,0,-121,27,-149,60r-44,-45v38,-36,86,-71,201,-71v78,0,185,26,185,115v1,69,-53,84,-79,100v44,12,95,36,95,105v0,104,-101,138,-208,138v-123,0,-177,-49,-212,-82xm882,-160r0,-233r-228,233r228,0xm942,-108r0,108r-60,0r0,-108r-303,0r0,-43r288,-296r75,0r0,287r77,0r0,52r-77,0","w":1083},"\u00b2":{"d":"436,-354r0,56r-408,0r0,-52v3,-15,39,-78,156,-132v112,-51,187,-57,187,-133v0,-48,-49,-74,-132,-74v-105,0,-141,57,-153,93r-53,-33v16,-44,74,-116,206,-116v134,0,197,52,197,128v0,92,-77,121,-153,152v-87,35,-146,60,-185,111r338,0","w":469},"\u00ae":{"d":"313,-537r0,144v90,-6,207,27,207,-73v-3,-98,-118,-65,-207,-71xm529,-137r-133,-202r-83,0r0,202r-60,0r0,-454r180,0v102,0,147,44,147,126v0,79,-53,116,-114,126r137,202r-74,0xm79,-363v0,178,143,321,321,321v178,0,322,-143,322,-321v0,-178,-144,-322,-322,-322v-178,0,-321,144,-321,322xm19,-364v0,-211,170,-381,381,-381v211,0,382,170,382,381v0,211,-171,382,-382,382v-211,0,-381,-171,-381,-382","w":801},"\u2212":{"d":"47,-223r0,-60r506,0r0,60r-506,0","w":600},"\u00f0":{"d":"554,-261v0,-95,-62,-209,-221,-209v-158,0,-220,114,-220,209v0,125,83,208,220,208v138,0,221,-83,221,-208xm199,-565r-40,-36r113,-53v-34,-17,-70,-30,-105,-40r46,-51v46,13,92,32,135,55r117,-55r41,36r-106,50v134,88,235,221,235,388v0,185,-123,287,-302,287v-178,0,-301,-102,-301,-287v0,-149,117,-268,289,-268v54,-1,110,15,167,49v-47,-56,-102,-100,-160,-135"},"\u00d7":{"d":"300,-296r186,-187r44,44r-187,186r187,187r-44,43r-186,-187r-186,187r-44,-43r187,-187r-187,-186r44,-44","w":600},"\u00b3":{"d":"12,-369r46,-45v41,48,97,71,162,71v69,0,147,-25,147,-80v0,-51,-49,-78,-157,-78r-75,0r0,-56v90,2,221,3,216,-65v0,-38,-57,-67,-128,-67v-70,0,-121,27,-149,60r-44,-45v38,-36,86,-71,201,-71v78,0,185,26,185,115v1,69,-53,84,-79,100v44,12,95,36,95,105v0,104,-101,138,-208,138v-123,0,-177,-49,-212,-82","w":469},"\u00a9":{"d":"544,-285r67,0v-24,102,-94,169,-199,169v-145,0,-236,-106,-236,-247v0,-146,85,-248,233,-248v105,0,187,57,202,164r-67,0v-13,-56,-59,-104,-130,-104v-111,0,-172,84,-172,188v0,94,66,187,168,187v70,0,122,-50,134,-109xm19,-364v0,-211,170,-381,381,-381v211,0,382,170,382,381v0,211,-171,382,-382,382v-211,0,-381,-171,-381,-382xm79,-363v0,178,143,321,321,321v178,0,322,-143,322,-321v0,-178,-144,-322,-322,-322v-178,0,-321,144,-321,322","w":801},"\u00c1":{"d":"250,-267r390,0r-195,-391xm17,0r374,-727r108,0r373,727r-99,0r-94,-189r-469,0r-95,189r-98,0xm373,-775r107,-142r114,0r-148,142r-73,0","w":889},"\u00c2":{"d":"250,-267r390,0r-195,-391xm17,0r374,-727r108,0r373,727r-99,0r-94,-189r-469,0r-95,189r-98,0xm288,-775r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0","w":889},"\u00c4":{"d":"250,-267r390,0r-195,-391xm17,0r374,-727r108,0r373,727r-99,0r-94,-189r-469,0r-95,189r-98,0xm309,-802r0,-102r90,0r0,102r-90,0xm491,-802r0,-102r90,0r0,102r-90,0","w":889},"\u00c0":{"d":"250,-267r390,0r-195,-391xm17,0r374,-727r108,0r373,727r-99,0r-94,-189r-469,0r-95,189r-98,0xm410,-917r107,142r-73,0r-148,-142r114,0","w":889},"\u00c5":{"d":"250,-267r390,0r-195,-391xm17,0r374,-727r108,0r373,727r-99,0r-94,-189r-469,0r-95,189r-98,0xm445,-777v-67,0,-120,-55,-120,-120v0,-66,54,-120,120,-120v66,0,120,54,120,120v0,65,-53,120,-120,120xm374,-897v0,37,32,71,71,71v38,0,71,-33,71,-71v0,-38,-33,-71,-71,-71v-39,0,-71,34,-71,71","w":889},"\u00c3":{"d":"250,-267r390,0r-195,-391xm17,0r374,-727r108,0r373,727r-99,0r-94,-189r-469,0r-95,189r-98,0xm383,-892v49,-2,87,35,127,37v23,0,42,-16,43,-45r49,0v-6,31,-21,108,-93,108v-53,2,-85,-36,-129,-39v-18,0,-45,8,-45,46r-47,0v8,-32,14,-107,95,-107","w":889},"\u00c7":{"d":"348,210r17,-47v36,17,120,30,122,-26v-3,-46,-51,-45,-87,-32r-18,-19r51,-69v-263,-10,-387,-175,-387,-379v0,-250,169,-383,414,-383v156,0,315,60,380,208r-76,35v-51,-119,-164,-169,-303,-169v-208,0,-325,113,-325,320v0,167,113,291,333,291v144,0,244,-60,304,-171r78,38v-75,146,-204,207,-372,210r-32,43v7,4,17,-2,31,-2v69,0,87,39,87,77v0,40,-38,95,-124,95v-29,0,-62,-9,-93,-20","w":889},"\u00c9":{"d":"95,0r0,-727r648,0r0,78r-560,0r0,232r468,0r0,78r-468,0r0,261r572,0r0,78r-660,0xm317,-775r107,-142r114,0r-148,142r-73,0","w":778},"\u00ca":{"d":"95,0r0,-727r648,0r0,78r-560,0r0,232r468,0r0,78r-468,0r0,261r572,0r0,78r-660,0xm232,-775r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0","w":778},"\u00cb":{"d":"95,0r0,-727r648,0r0,78r-560,0r0,232r468,0r0,78r-468,0r0,261r572,0r0,78r-660,0xm253,-802r0,-102r90,0r0,102r-90,0xm435,-802r0,-102r90,0r0,102r-90,0","w":778},"\u00c8":{"d":"95,0r0,-727r648,0r0,78r-560,0r0,232r468,0r0,78r-468,0r0,261r572,0r0,78r-660,0xm354,-917r107,142r-73,0r-148,-142r114,0","w":778},"\u00cd":{"d":"95,0r0,-727r88,0r0,727r-88,0xm67,-775r107,-142r114,0r-148,142r-73,0","w":278},"\u00ce":{"d":"95,0r0,-727r88,0r0,727r-88,0xm-18,-775r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0","w":278},"\u00cf":{"d":"95,0r0,-727r88,0r0,727r-88,0xm3,-802r0,-102r90,0r0,102r-90,0xm185,-802r0,-102r90,0r0,102r-90,0","w":278},"\u00cc":{"d":"95,0r0,-727r88,0r0,727r-88,0xm104,-917r107,142r-73,0r-148,-142r114,0","w":278},"\u00d1":{"d":"95,0r0,-727r125,0r541,598r0,-598r88,0r0,727r-88,0r-582,-649r0,649r-84,0xm410,-892v49,-2,87,35,127,37v23,0,42,-16,43,-45r49,0v-6,31,-21,108,-93,108v-53,2,-85,-36,-129,-39v-18,0,-45,8,-45,46r-47,0v8,-32,14,-107,95,-107","w":944},"\u00d3":{"d":"46,-359v0,-242,179,-386,426,-386v247,0,426,144,426,386v0,258,-216,377,-426,377v-210,0,-426,-119,-426,-377xm136,-375v0,221,157,315,336,315v177,0,336,-94,336,-315v0,-162,-125,-296,-336,-296v-211,0,-336,134,-336,296xm400,-775r107,-142r114,0r-148,142r-73,0","w":944},"\u00d4":{"d":"46,-359v0,-242,179,-386,426,-386v247,0,426,144,426,386v0,258,-216,377,-426,377v-210,0,-426,-119,-426,-377xm136,-375v0,221,157,315,336,315v177,0,336,-94,336,-315v0,-162,-125,-296,-336,-296v-211,0,-336,134,-336,296xm315,-775r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0","w":944},"\u00d6":{"d":"46,-359v0,-242,179,-386,426,-386v247,0,426,144,426,386v0,258,-216,377,-426,377v-210,0,-426,-119,-426,-377xm136,-375v0,221,157,315,336,315v177,0,336,-94,336,-315v0,-162,-125,-296,-336,-296v-211,0,-336,134,-336,296xm336,-802r0,-102r90,0r0,102r-90,0xm518,-802r0,-102r90,0r0,102r-90,0","w":944},"\u00d2":{"d":"46,-359v0,-242,179,-386,426,-386v247,0,426,144,426,386v0,258,-216,377,-426,377v-210,0,-426,-119,-426,-377xm136,-375v0,221,157,315,336,315v177,0,336,-94,336,-315v0,-162,-125,-296,-336,-296v-211,0,-336,134,-336,296xm437,-917r107,142r-73,0r-148,-142r114,0","w":944},"\u00d5":{"d":"46,-359v0,-242,179,-386,426,-386v247,0,426,144,426,386v0,258,-216,377,-426,377v-210,0,-426,-119,-426,-377xm136,-375v0,221,157,315,336,315v177,0,336,-94,336,-315v0,-162,-125,-296,-336,-296v-211,0,-336,134,-336,296xm410,-892v49,-2,87,35,127,37v23,0,42,-16,43,-45r49,0v-6,31,-21,108,-93,108v-53,2,-85,-36,-129,-39v-18,0,-45,8,-45,46r-47,0v8,-32,14,-107,95,-107","w":944},"\u0160":{"d":"34,-150r68,-58v42,56,112,148,330,148v112,0,265,-32,265,-145v0,-221,-634,-27,-634,-322v0,-155,143,-218,341,-218v192,0,310,79,360,149r-64,52v-30,-34,-100,-127,-298,-127v-146,0,-249,38,-249,130v0,220,634,10,634,336v0,122,-118,223,-365,223v-238,0,-326,-99,-388,-168xm573,-917r-112,142r-92,0r-110,-142r84,0r72,94r72,-94r86,0","w":832},"\u00da":{"d":"846,-727r0,428v0,263,-205,317,-374,317v-169,0,-374,-54,-374,-317r0,-428r88,0r0,428v0,167,107,243,286,243v179,0,286,-76,286,-243r0,-428r88,0xm400,-775r107,-142r114,0r-148,142r-73,0","w":944},"\u00db":{"d":"846,-727r0,428v0,263,-205,317,-374,317v-169,0,-374,-54,-374,-317r0,-428r88,0r0,428v0,167,107,243,286,243v179,0,286,-76,286,-243r0,-428r88,0xm315,-775r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0","w":944},"\u00dc":{"d":"846,-727r0,428v0,263,-205,317,-374,317v-169,0,-374,-54,-374,-317r0,-428r88,0r0,428v0,167,107,243,286,243v179,0,286,-76,286,-243r0,-428r88,0xm336,-802r0,-102r90,0r0,102r-90,0xm518,-802r0,-102r90,0r0,102r-90,0","w":944},"\u00d9":{"d":"846,-727r0,428v0,263,-205,317,-374,317v-169,0,-374,-54,-374,-317r0,-428r88,0r0,428v0,167,107,243,286,243v179,0,286,-76,286,-243r0,-428r88,0xm437,-917r107,142r-73,0r-148,-142r114,0","w":944},"\u00dd":{"d":"400,0r0,-294r-375,-433r115,0r304,355r304,-355r115,0r-375,433r0,294r-88,0xm372,-775r107,-142r114,0r-148,142r-73,0","w":888},"\u0178":{"d":"400,0r0,-294r-375,-433r115,0r304,355r304,-355r115,0r-375,433r0,294r-88,0xm308,-802r0,-102r90,0r0,102r-90,0xm490,-802r0,-102r90,0r0,102r-90,0","w":888},"\u017d":{"d":"18,0r0,-52r588,-597r-558,0r0,-78r700,0r0,55r-584,594r596,0r0,78r-742,0xm546,-917r-112,142r-92,0r-110,-142r84,0r72,94r72,-94r86,0","w":778},"\u00e1":{"d":"588,-370v4,123,-10,262,9,370r-81,0v-4,-16,-10,-42,-10,-63v-76,49,-161,79,-261,79v-86,0,-213,-24,-213,-159v0,-181,271,-188,475,-212v10,-92,-77,-115,-168,-118v-139,0,-188,58,-214,88r-61,-42v30,-37,87,-112,269,-112v119,0,255,35,255,169xm507,-132r0,-157v-238,23,-398,45,-398,146v0,82,92,93,132,93v113,0,214,-54,266,-82xm262,-598r107,-142r114,0r-148,142r-73,0"},"\u00e2":{"d":"588,-370v4,123,-10,262,9,370r-81,0v-4,-16,-10,-42,-10,-63v-76,49,-161,79,-261,79v-86,0,-213,-24,-213,-159v0,-181,271,-188,475,-212v10,-92,-77,-115,-168,-118v-139,0,-188,58,-214,88r-61,-42v30,-37,87,-112,269,-112v119,0,255,35,255,169xm507,-132r0,-157v-238,23,-398,45,-398,146v0,82,92,93,132,93v113,0,214,-54,266,-82xm177,-598r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0"},"\u00e4":{"d":"588,-370v4,123,-10,262,9,370r-81,0v-4,-16,-10,-42,-10,-63v-76,49,-161,79,-261,79v-86,0,-213,-24,-213,-159v0,-181,271,-188,475,-212v10,-92,-77,-115,-168,-118v-139,0,-188,58,-214,88r-61,-42v30,-37,87,-112,269,-112v119,0,255,35,255,169xm507,-132r0,-157v-238,23,-398,45,-398,146v0,82,92,93,132,93v113,0,214,-54,266,-82xm198,-625r0,-102r90,0r0,102r-90,0xm380,-625r0,-102r90,0r0,102r-90,0"},"\u00e0":{"d":"588,-370v4,123,-10,262,9,370r-81,0v-4,-16,-10,-42,-10,-63v-76,49,-161,79,-261,79v-86,0,-213,-24,-213,-159v0,-181,271,-188,475,-212v10,-92,-77,-115,-168,-118v-139,0,-188,58,-214,88r-61,-42v30,-37,87,-112,269,-112v119,0,255,35,255,169xm507,-132r0,-157v-238,23,-398,45,-398,146v0,82,92,93,132,93v113,0,214,-54,266,-82xm299,-740r107,142r-73,0r-148,-142r114,0"},"\u00e5":{"d":"588,-370v4,123,-10,262,9,370r-81,0v-4,-16,-10,-42,-10,-63v-76,49,-161,79,-261,79v-86,0,-213,-24,-213,-159v0,-181,271,-188,475,-212v10,-92,-77,-115,-168,-118v-139,0,-188,58,-214,88r-61,-42v30,-37,87,-112,269,-112v119,0,255,35,255,169xm507,-132r0,-157v-238,23,-398,45,-398,146v0,82,92,93,132,93v113,0,214,-54,266,-82xm334,-600v-67,0,-120,-55,-120,-120v0,-66,54,-120,120,-120v66,0,120,54,120,120v0,65,-53,120,-120,120xm263,-720v0,37,32,71,71,71v38,0,71,-33,71,-71v0,-38,-33,-71,-71,-71v-39,0,-71,34,-71,71"},"\u00e3":{"d":"588,-370v4,123,-10,262,9,370r-81,0v-4,-16,-10,-42,-10,-63v-76,49,-161,79,-261,79v-86,0,-213,-24,-213,-159v0,-181,271,-188,475,-212v10,-92,-77,-115,-168,-118v-139,0,-188,58,-214,88r-61,-42v30,-37,87,-112,269,-112v119,0,255,35,255,169xm507,-132r0,-157v-238,23,-398,45,-398,146v0,82,92,93,132,93v113,0,214,-54,266,-82xm272,-715v49,-2,87,35,127,37v23,0,42,-16,43,-45r49,0v-6,31,-21,108,-93,108v-53,2,-85,-36,-129,-39v-18,0,-45,8,-45,46r-47,0v8,-32,14,-107,95,-107"},"\u00e7":{"d":"228,210r17,-47v36,17,120,30,122,-26v-3,-46,-51,-45,-87,-32r-18,-19r53,-72v-175,-8,-283,-126,-283,-277v0,-180,138,-276,300,-276v158,0,233,75,273,143r-70,40v-23,-37,-72,-114,-203,-114v-108,0,-219,62,-219,215v0,115,98,202,226,202v85,0,158,-25,213,-120r70,39v-43,76,-114,142,-260,149r-35,45v7,4,17,-2,31,-2v69,0,87,39,87,77v0,40,-38,95,-124,95v-29,0,-62,-9,-93,-20"},"\u00e9":{"d":"549,-155r63,46v-54,57,-106,125,-284,125v-176,0,-296,-120,-296,-280v0,-166,125,-275,286,-275v167,0,313,87,309,294r-514,0v8,98,87,192,223,192v135,0,180,-61,213,-102xm116,-314r423,0v-16,-86,-90,-156,-214,-156v-119,0,-186,60,-209,156xm262,-598r107,-142r114,0r-148,142r-73,0"},"\u00ea":{"d":"549,-155r63,46v-54,57,-106,125,-284,125v-176,0,-296,-120,-296,-280v0,-166,125,-275,286,-275v167,0,313,87,309,294r-514,0v8,98,87,192,223,192v135,0,180,-61,213,-102xm116,-314r423,0v-16,-86,-90,-156,-214,-156v-119,0,-186,60,-209,156xm177,-598r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0"},"\u00eb":{"d":"549,-155r63,46v-54,57,-106,125,-284,125v-176,0,-296,-120,-296,-280v0,-166,125,-275,286,-275v167,0,313,87,309,294r-514,0v8,98,87,192,223,192v135,0,180,-61,213,-102xm116,-314r423,0v-16,-86,-90,-156,-214,-156v-119,0,-186,60,-209,156xm198,-625r0,-102r90,0r0,102r-90,0xm380,-625r0,-102r90,0r0,102r-90,0"},"\u00e8":{"d":"549,-155r63,46v-54,57,-106,125,-284,125v-176,0,-296,-120,-296,-280v0,-166,125,-275,286,-275v167,0,313,87,309,294r-514,0v8,98,87,192,223,192v135,0,180,-61,213,-102xm116,-314r423,0v-16,-86,-90,-156,-214,-156v-119,0,-186,60,-209,156xm299,-740r107,142r-73,0r-148,-142r114,0"},"\u00ed":{"d":"71,0r0,-523r81,0r0,523r-81,0xm40,-598r107,-142r114,0r-148,142r-73,0","w":223},"\u00ee":{"d":"71,0r0,-523r81,0r0,523r-81,0xm-45,-598r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0","w":223},"\u00ef":{"d":"71,0r0,-523r81,0r0,523r-81,0xm-24,-625r0,-102r90,0r0,102r-90,0xm158,-625r0,-102r90,0r0,102r-90,0","w":223},"\u00ec":{"d":"71,0r0,-523r81,0r0,523r-81,0xm77,-740r107,142r-73,0r-148,-142r114,0","w":223},"\u00f1":{"d":"75,0r0,-523r81,0r0,76v55,-48,127,-92,220,-92v65,0,216,15,216,194r0,345r-81,0r0,-329v2,-124,-88,-141,-145,-141v-89,0,-163,55,-210,105r0,365r-81,0xm272,-715v49,-2,87,35,127,37v23,0,42,-16,43,-45r49,0v-6,31,-21,108,-93,108v-53,2,-85,-36,-129,-39v-18,0,-45,8,-45,46r-47,0v8,-32,14,-107,95,-107"},"\u00f3":{"d":"334,16v-178,0,-302,-102,-302,-287v0,-149,118,-268,302,-268v184,0,301,119,301,268v0,185,-123,287,-301,287xm334,-53v137,0,220,-83,220,-208v0,-95,-62,-209,-220,-209v-158,0,-221,114,-221,209v0,125,84,208,221,208xm262,-598r107,-142r114,0r-148,142r-73,0"},"\u00f4":{"d":"334,16v-178,0,-302,-102,-302,-287v0,-149,118,-268,302,-268v184,0,301,119,301,268v0,185,-123,287,-301,287xm334,-53v137,0,220,-83,220,-208v0,-95,-62,-209,-220,-209v-158,0,-221,114,-221,209v0,125,84,208,221,208xm177,-598r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0"},"\u00f6":{"d":"334,16v-178,0,-302,-102,-302,-287v0,-149,118,-268,302,-268v184,0,301,119,301,268v0,185,-123,287,-301,287xm334,-53v137,0,220,-83,220,-208v0,-95,-62,-209,-220,-209v-158,0,-221,114,-221,209v0,125,84,208,221,208xm198,-625r0,-102r90,0r0,102r-90,0xm380,-625r0,-102r90,0r0,102r-90,0"},"\u00f2":{"d":"334,16v-178,0,-302,-102,-302,-287v0,-149,118,-268,302,-268v184,0,301,119,301,268v0,185,-123,287,-301,287xm334,-53v137,0,220,-83,220,-208v0,-95,-62,-209,-220,-209v-158,0,-221,114,-221,209v0,125,84,208,221,208xm299,-740r107,142r-73,0r-148,-142r114,0"},"\u00f5":{"d":"334,16v-178,0,-302,-102,-302,-287v0,-149,118,-268,302,-268v184,0,301,119,301,268v0,185,-123,287,-301,287xm334,-53v137,0,220,-83,220,-208v0,-95,-62,-209,-220,-209v-158,0,-221,114,-221,209v0,125,84,208,221,208xm272,-715v49,-2,87,35,127,37v23,0,42,-16,43,-45r49,0v-6,31,-21,108,-93,108v-53,2,-85,-36,-129,-39v-18,0,-45,8,-45,46r-47,0v8,-32,14,-107,95,-107"},"\u0161":{"d":"27,-108r60,-55v51,64,127,110,237,110v86,0,164,-27,164,-89v0,-148,-435,-22,-435,-238v0,-119,122,-159,232,-159v176,0,240,75,267,113r-55,50v-43,-55,-110,-94,-213,-94v-96,0,-150,30,-150,85v0,135,435,13,435,237v0,120,-118,164,-252,164v-116,0,-212,-33,-290,-124xm463,-740r-112,142r-92,0r-110,-142r84,0r72,94r72,-94r86,0","w":611},"\u00fa":{"d":"592,-523r0,523r-81,0r0,-76v-55,48,-127,92,-220,92v-65,0,-216,-15,-216,-194r0,-345r81,0r0,329v-2,124,88,141,145,141v89,0,163,-55,210,-105r0,-365r81,0xm262,-598r107,-142r114,0r-148,142r-73,0"},"\u00fb":{"d":"592,-523r0,523r-81,0r0,-76v-55,48,-127,92,-220,92v-65,0,-216,-15,-216,-194r0,-345r81,0r0,329v-2,124,88,141,145,141v89,0,163,-55,210,-105r0,-365r81,0xm177,-598r112,-142r92,0r110,142r-84,0r-72,-94r-72,94r-86,0"},"\u00fc":{"d":"592,-523r0,523r-81,0r0,-76v-55,48,-127,92,-220,92v-65,0,-216,-15,-216,-194r0,-345r81,0r0,329v-2,124,88,141,145,141v89,0,163,-55,210,-105r0,-365r81,0xm198,-625r0,-102r90,0r0,102r-90,0xm380,-625r0,-102r90,0r0,102r-90,0"},"\u00f9":{"d":"592,-523r0,523r-81,0r0,-76v-55,48,-127,92,-220,92v-65,0,-216,-15,-216,-194r0,-345r81,0r0,329v-2,124,88,141,145,141v89,0,163,-55,210,-105r0,-365r81,0xm299,-740r107,142r-73,0r-148,-142r114,0"},"\u00fd":{"d":"49,168r0,-74v124,35,180,22,244,-114r-269,-503r88,0r224,422r214,-422r88,0r-306,590v-33,64,-89,117,-183,117v-34,0,-67,-6,-100,-16xm262,-598r107,-142r114,0r-148,142r-73,0"},"\u00ff":{"d":"49,168r0,-74v124,35,180,22,244,-114r-269,-503r88,0r224,422r214,-422r88,0r-306,590v-33,64,-89,117,-183,117v-34,0,-67,-6,-100,-16xm198,-625r0,-102r90,0r0,102r-90,0xm380,-625r0,-102r90,0r0,102r-90,0"},"\u017e":{"d":"564,-523r-2,50r-396,404r407,0r0,69r-535,0r0,-51r397,-403r-376,0r0,-69r505,0xm463,-740r-112,142r-92,0r-110,-142r84,0r72,94r72,-94r86,0","w":611},"\u2206":{"d":"38,0r0,-53r335,-704r88,0r332,704r0,53r-755,0xm117,-58r591,0r-201,-430v-23,-53,-74,-158,-91,-204r-5,0v-12,32,-58,129,-81,182","w":832},"\u2126":{"d":"266,-57r0,-3v-94,-61,-181,-173,-181,-327v0,-207,173,-360,392,-360v231,0,385,174,385,357v0,161,-92,275,-183,330r0,3r201,0r0,57r-306,0r0,-43v106,-50,212,-160,212,-338v0,-143,-110,-309,-309,-309v-191,0,-315,145,-315,312v0,167,105,286,211,335r0,43r-306,0r0,-57r199,0","w":948},"\u03bc":{"d":"511,0r0,-76v-55,48,-127,92,-213,92v-34,0,-94,0,-142,-41r0,209r-81,0r0,-707r81,0r0,329v-2,124,88,141,145,141v89,0,163,-55,210,-105r0,-365r81,0r0,523r-81,0"},"\u03c0":{"d":"688,-486r-109,0v4,144,-12,391,19,486r-75,0v-11,-16,-20,-58,-20,-156r0,-330r-252,0v-8,142,-50,397,-96,486r-76,0v48,-107,89,-339,96,-486v-86,0,-124,6,-152,17r-13,-47v33,-17,82,-29,176,-29r510,0","w":720},"\u20ac":{"d":"467,-56v90,5,172,-55,204,-99r0,108v-116,95,-360,88,-466,-38v-44,-49,-73,-119,-82,-188r-87,0r20,-62r60,0v-1,-33,-2,-28,1,-74r-81,0r20,-62r69,0v36,-160,133,-269,330,-274v85,-3,189,35,229,78r-29,87v-39,-62,-114,-90,-200,-91v-164,11,-213,80,-246,200r411,0r-20,62r-401,0v-5,21,-2,49,-2,74r379,0r-21,62r-351,0v24,122,109,218,263,217","w":722},"\u2113":{"d":"536,-164r39,32v-56,97,-138,145,-235,145v-137,-3,-200,-96,-203,-205v-23,16,-49,37,-74,55r-25,-44v34,-26,68,-49,98,-74r0,-293v0,-200,98,-258,185,-258v108,0,156,84,156,174v0,138,-109,265,-270,401v-8,123,70,189,148,186v84,0,151,-64,181,-119xm207,-563r0,264v117,-110,211,-216,211,-327v0,-71,-25,-128,-98,-128v-48,0,-113,46,-113,191","w":607},"\u212e":{"d":"883,-353r-686,0v-3,0,-6,1,-6,5r0,207v0,9,3,18,9,24v66,70,158,113,260,113v109,0,207,-50,273,-126r61,0v-76,89,-199,147,-335,147v-234,0,-423,-170,-423,-380v0,-211,189,-382,423,-382v238,2,428,171,424,392xm728,-380r0,-209v0,-9,-4,-18,-11,-25v-66,-65,-157,-108,-257,-108v-100,0,-192,44,-258,112v-7,7,-11,16,-11,26r0,204v0,2,3,7,6,7r526,0v3,0,5,-5,5,-7","w":920},"\u2202":{"d":"126,-706r-29,-47v40,-30,107,-63,209,-63v164,0,314,145,314,402v0,211,-106,429,-325,429v-169,0,-243,-140,-243,-247v0,-159,124,-262,265,-262v130,0,207,96,228,128v23,-225,-101,-400,-245,-393v-82,0,-139,29,-174,53xm127,-235v0,105,69,193,174,193v130,0,213,-126,232,-257v-19,-50,-95,-139,-204,-139v-109,0,-202,89,-202,203","w":685},"\u220f":{"d":"855,-671r-149,0r0,772r-72,0r0,-772r-383,0r0,772r-73,0r0,-772r-148,0r0,-63r825,0r0,63","w":886},"\u2211":{"d":"674,101r-648,0r0,-44r351,-371r-335,-372r0,-48r615,0r0,63r-504,0r0,3r312,347r-334,354r0,3r543,0r0,65","w":703},"\u2219":{"d":"107,-320v0,-33,27,-60,60,-60v33,0,60,27,60,60v0,33,-27,60,-60,60v-33,0,-60,-27,-60,-60","w":361},"\u221a":{"d":"710,-868r-282,1028r-70,0r-205,-493r-94,35r-17,-43r156,-62r174,430v9,20,12,46,22,64r257,-959r59,0","w":704},"\u221e":{"d":"699,-484v105,0,171,75,171,181v0,112,-87,184,-180,184v-77,0,-136,-54,-222,-146v-64,72,-130,146,-229,146v-95,0,-176,-80,-176,-181v0,-105,80,-184,185,-184v91,0,161,73,225,146v65,-72,128,-146,226,-146xm115,-298v0,71,52,131,133,131v79,0,143,-81,193,-132v-54,-64,-113,-140,-202,-140v-78,0,-124,68,-124,141xm819,-300v0,-88,-55,-139,-126,-139v-84,0,-151,93,-195,135v83,88,132,137,197,137v79,0,124,-68,124,-133","w":933},"\u222b":{"d":"169,-635v-3,-162,42,-251,169,-259v25,0,54,9,66,17r-14,48v-10,-7,-32,-13,-48,-13v-96,8,-107,84,-108,214v0,163,17,366,17,532v0,117,-28,178,-54,212v-35,56,-135,63,-190,30r15,-49v24,16,94,25,117,-7v27,-30,48,-75,48,-188v0,-168,-18,-374,-18,-537","w":415},"\u2248":{"d":"231,-470v111,4,160,91,264,92v52,0,87,-28,125,-88r30,29v-35,59,-81,106,-157,106v-86,6,-176,-89,-270,-91v-60,0,-96,43,-130,88r-32,-28v39,-68,100,-108,170,-108xm230,-270v115,3,157,89,266,92v52,0,85,-28,124,-88r30,30v-35,58,-81,105,-157,105v-87,6,-174,-89,-270,-91v-61,0,-96,43,-130,89r-32,-30v39,-67,101,-107,169,-107","w":714},"\u2260":{"d":"501,-562r-60,124r208,0r0,48r-230,0r-88,182r318,0r0,47r-340,0r-71,149r-40,-20r62,-129r-196,0r0,-47r219,0r87,-182r-306,0r0,-48r328,0r69,-144","w":714},"\u2264":{"d":"646,-84r-574,-264r0,-51r574,-263r0,56r-518,231r0,2r518,232r0,57xm648,12r-585,0r0,-48r585,0r0,48","w":714},"\u2265":{"d":"72,-662r574,263r0,51r-574,264r0,-57r517,-231r0,-2r-517,-232r0,-56xm647,12r-583,0r0,-48r583,0r0,48","w":714},"\u25ca":{"d":"637,-366r-256,424r-58,0r-255,-424r255,-425r59,0xm568,-364r-192,-323v-11,-14,-16,-38,-26,-48v-66,126,-145,244,-215,367r194,324v11,20,19,35,23,46r3,0v64,-127,143,-244,213,-366","w":705},"\u00a0":{"w":361},"\u00ad":{"d":"31,-304r271,0r0,74r-271,0r0,-74","w":333},"\u02c9":{"d":"257,-690r0,58r-292,0r0,-58r292,0","w":222},"\u03a9":{"d":"266,-57r0,-3v-94,-61,-181,-173,-181,-327v0,-207,173,-360,392,-360v231,0,385,174,385,357v0,161,-92,275,-183,330r0,3r201,0r0,57r-306,0r0,-43v106,-50,212,-160,212,-338v0,-143,-110,-309,-309,-309v-191,0,-315,145,-315,312v0,167,105,286,211,335r0,43r-306,0r0,-57r199,0","w":948},"\u2215":{"d":"-112,18r-58,0r450,-763r57,0","w":167}}});

/*
 * Scripts
 *
 */
jQuery(function($){
	
	var Engine = {
		utils : {
			links : function(){
				$('a[rel*=external]').click(function(e){
					e.preventDefault();
					window.open($(this).attr('href'));						  
				});
			},
			mails : function(){
				$('a[href^=mailto:]').each(function(){
					var mail = $(this).attr('href').replace('mailto:','');
					var replaced = mail.replace('/at/','@');
					$(this).attr('href','mailto:'+replaced);
					if($(this).text() == mail) {
						$(this).text(replaced);
					}
				});
			}
		},
		cufon : function(){
			Cufon.replace('#main h1', { fontFamily: 'Trade Gothic LT Std' });
		},
		fancyBox : function(){
			$('.img a').each(function(){
				$(this).fancybox({ 'padding': 6,'overlayOpacity': 0.7 });
			});			
		},
		swfObj : {
			flashMain : function(){
				if ($('#flash-home').length === 0) {
					return;
				}
				var so = new SWFObject("https://trulucks.com/public/temp/homepage_photo_slideshow.swf", "flash-home", "897", "253", "9");
				so.addParam("wmode", "transparent");
				so.write("flash-home");
			},
			
			flashChildPage : function(){
				if ($('#flash-childpage').length === 0) {
					return;
				}				
				var so = new SWFObject("https://trulucks.com/public/temp/childpage_photo_slideshow.swf", "flash-childpage", "161", "253", "9");
				so.addParam("wmode", "transparent");
				so.write("flash-childpage");
			}			
		}
	};

	Engine.utils.links();
	Engine.utils.mails();
	Engine.cufon();
	Engine.fancyBox();
	Engine.swfObj.flashMain();
	Engine.swfObj.flashChildPage();
	
	
	
});