/*
 * jQuery Easing
 */
jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}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(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Full name:
 * ArcherPro-Medium
 */
Cufon.registerFont({"w":199,"face":{"font-family":"ArcherPro","font-weight":350,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-19 -269 350 81","underline-thickness":"18","underline-position":"-18","stemh":"21","stemv":"25","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":81},"A":{"d":"6,0r0,-24r23,0r71,-189r-27,0r0,-24r108,0r0,24r-27,0r71,189r23,0r0,24r-80,0r0,-23r28,0r-21,-59r-97,0r-21,59r29,0r0,23r-80,0xm86,-104r81,0r-40,-111","w":254,"k":{"-":5,";":-8,":":-8,",":-8,".":-8,"y":6,"w":13,"u":5,"t":4,"s":1,"o":3,"g":6,"e":3,"d":6,"c":3,"a":5,"Y":18,"W":20,"U":13,"T":23,"S":7,"O":10,"G":10,"C":10,"*":19,"}":4,"]":4,")":4,"\\":15,"?":10,"v":16,"q":6,"p":3,"b":3,"X":7,"V":22,"Q":10,"M":4,"J":4}},"B":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r95,0v95,-5,102,95,36,116v32,8,50,25,50,56v0,37,-30,65,-82,65r-99,0xm74,-23v47,3,98,-3,98,-43v0,-39,-50,-48,-98,-44r0,87xm74,-132v46,4,95,-5,91,-42v3,-36,-47,-42,-91,-39r0,81","w":217,"k":{",":4,".":4,"z":3,"y":3,"w":3,"u":3,"t":3,"Z":5,"Y":11,"W":11,"U":4,"T":7,"S":2,"A":7,"}":4,"]":4,")":4,"\\":8,"\/":2,"v":3,"p":3,"b":1,"X":7,"V":13}},"C":{"d":"141,4v-73,0,-121,-56,-121,-121v0,-73,56,-124,120,-124v50,0,89,30,89,58v0,28,-41,32,-41,4v0,-7,4,-12,9,-14v-6,-10,-27,-24,-57,-24v-54,0,-92,46,-92,99v0,51,37,98,93,98v28,0,53,-11,74,-31r16,19v-24,24,-57,36,-90,36","w":252,"k":{"x":3,"v":6,"q":9,"p":6,"m":6,"X":7,"V":7,"Q":7,"M":4,"J":4,"A":9,"C":7,"G":7,"O":7,"S":5,"T":7,"U":4,"W":5,"Y":7,"Z":4,"c":9,"d":9,"e":9,"g":9,"o":9,"s":6,"t":6,"u":9,"w":6,"y":6,"z":6,"-":8,"a":9,"f":6,"n":6,"r":6}},"D":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r89,0v82,0,136,46,136,116v0,72,-50,121,-137,121r-88,0xm74,-24v86,7,141,-27,141,-97v0,-67,-59,-99,-141,-92r0,189","w":262,"k":{"}":4,"]":4,")":4,"\\":11,"\/":2,"b":1,"X":18,"V":9,"M":9,"J":2,"A":10,"S":7,"T":7,"W":14,"Y":11,"Z":5,"z":6,"a":3,"h":6,"k":3,"l":3,".":15,",":15}},"E":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r172,0r0,58r-26,0r0,-34r-89,0r0,81r78,0r0,23r-78,0r0,86r89,0r0,-35r26,0r0,58r-172,0","w":211,"k":{"v":9,"q":6,"p":6,"X":2,"V":4,"Q":7,"J":4,"A":4,"C":7,"G":7,"O":7,"S":5,"T":7,"U":4,"W":4,"Y":4,"Z":4,"c":6,"d":6,"e":6,"g":6,"o":6,"s":3,"t":6,"u":5,"w":9,"y":9,"z":3,"-":11}},"F":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r169,0r0,58r-25,0r0,-34r-87,0r0,85r76,0r0,23r-76,0r0,81r33,0r0,24r-90,0","w":204,"k":{"-":17,";":19,":":19,",":26,".":26,"z":22,"y":19,"w":19,"u":21,"t":11,"s":24,"r":18,"o":26,"n":18,"l":3,"k":3,"i":6,"h":3,"g":27,"f":16,"e":26,"d":27,"c":26,"a":27,"Z":7,"Y":4,"W":7,"U":7,"T":11,"S":9,"O":14,"G":14,"C":14,"A":25,"@":11,"\/":24,"&":8,"x":21,"v":19,"q":27,"p":18,"m":18,"j":3,"X":7,"V":7,"Q":14,"M":9,"J":25}},"G":{"d":"209,-21v-73,56,-189,13,-189,-96v0,-75,57,-124,123,-124v53,0,89,30,89,55v0,13,-8,22,-20,22v-17,0,-27,-23,-14,-33v-9,-10,-29,-20,-56,-20v-56,0,-94,44,-94,100v0,90,98,124,160,75r0,-51r-65,0r0,-22r92,0r0,115r-26,0r0,-21","w":265,"k":{"v":6,"p":3,"X":4,"V":7,"T":7,"W":11,"Y":7,"Z":4,"t":1,"u":3,"w":6,"y":6,"z":3}},"H":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r88,0r0,24r-31,0r0,80r131,0r0,-80r-31,0r0,-24r88,0r0,24r-30,0r0,189r30,0r0,24r-88,0r0,-24r31,0r0,-85r-131,0r0,85r31,0r0,24r-88,0","w":279,"k":{"q":6,"p":3,"b":-3,"c":6,"d":6,"e":6,"g":6,"o":6,"s":3,"z":6,"a":6}},"I":{"d":"17,0r0,-24r32,0r0,-189r-32,0r0,-24r91,0r0,24r-32,0r0,189r32,0r0,24r-91,0","w":125,"k":{"q":6,"p":3,"b":-3,"c":6,"d":6,"e":6,"g":6,"o":6,"s":3,"z":6,"a":5}},"J":{"d":"149,-213v-4,91,25,217,-71,217v-37,0,-67,-26,-67,-58v0,-30,37,-37,40,-9v0,8,-4,15,-12,17v1,11,15,25,39,25v72,-3,37,-122,45,-192r-37,0r0,-24r92,0r0,24r-29,0","w":190,"k":{";":11,":":11,",":15,".":15,"z":13,"y":8,"w":8,"u":9,"t":5,"s":10,"r":9,"o":9,"n":9,"i":6,"g":11,"f":9,"e":9,"d":11,"c":9,"a":10,"Z":4,"Y":5,"W":5,"U":4,"T":2,"S":5,"A":13,"\/":7,"x":8,"v":8,"q":11,"p":9,"m":9,"X":7,"V":5,"M":5,"J":8}},"K":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r88,0r0,24r-31,0r0,103r103,-103r-32,0r0,-24r92,0r0,24r-27,0r-77,77r75,112r30,0r0,24r-47,0r-78,-119r-39,39r0,56r31,0r0,24r-88,0","w":243,"k":{"v":13,"q":8,"j":-3,"V":18,"Q":6,"A":11,"C":8,"G":6,"O":6,"S":4,"W":18,"Y":14,"c":6,"d":8,"e":6,"g":8,"o":6,"t":5,"u":6,"w":9,"y":6,"-":11,"a":3,".":-8,",":-8,"i":-10,":":-8,";":-8}},"L":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r90,0r0,24r-33,0r0,190r82,0r0,-37r26,0r0,60r-165,0","k":{"*":19,"}":8,"]":8,")":8,"?":15,"v":18,"q":3,"p":3,"j":6,"b":6,"X":4,"V":22,"Q":14,"M":4,"C":14,"G":14,"O":12,"S":2,"T":22,"U":11,"W":18,"Y":22,"Z":4,"c":3,"d":3,"e":3,"g":3,"o":3,"t":9,"u":9,"w":13,"y":6,"-":11}},"M":{"d":"15,0r0,-24r31,0r9,-189r-32,0r0,-24r58,0r77,161r78,-161r57,0r0,24r-32,0r9,189r31,0r0,24r-88,0r0,-24r31,0r-6,-165r-77,156r-7,0r-76,-156r-6,165r30,0r0,24r-87,0","w":317,"k":{"-":4,"z":6,"y":9,"w":9,"t":6,"s":5,"o":6,"g":9,"e":6,"d":9,"c":6,"a":3,"Z":4,"Y":9,"W":11,"U":5,"T":9,"S":5,"O":6,"G":6,"C":6,"A":4,"v":9,"q":9,"p":5,"j":6,"X":4,"V":11,"Q":6,"M":4,"J":4}},"N":{"d":"218,1r-145,-191r0,166r31,0r0,24r-87,0r0,-24r30,0r0,-189r-30,0r0,-24r54,0r136,180r0,-156r-31,0r0,-24r86,0r0,24r-29,0r0,214r-15,0","w":275,"k":{"&":8,"x":5,"v":3,"q":6,"p":6,"m":6,"b":-3,"J":7,"c":5,"d":6,"e":5,"g":9,"o":5,"s":9,"t":6,"u":6,"w":3,"y":3,"z":9,"a":9,"f":6,"n":6,"r":6,".":11,",":11,"i":3}},"O":{"d":"139,4v-69,0,-119,-54,-119,-122v0,-69,51,-123,121,-123v69,0,119,54,119,122v0,69,-52,123,-121,123xm140,-20v54,0,92,-43,92,-98v0,-56,-38,-99,-92,-99v-54,0,-92,43,-92,98v0,56,38,99,92,99","w":279,"k":{"}":4,"]":4,")":4,"\\":11,"\/":2,"b":1,"X":15,"V":11,"M":6,"J":2,"A":10,"S":7,"T":7,"W":14,"Y":11,"Z":5,"z":6,"a":3,"h":3,"k":3,"l":3,".":15,",":15}},"P":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r91,0v50,0,87,29,87,75v0,61,-55,84,-121,76r0,62r32,0r0,24r-89,0xm74,-109v51,4,94,-7,94,-53v0,-44,-44,-55,-94,-51r0,104","w":209,"k":{",":19,".":19,"z":3,"s":6,"o":6,"g":6,"e":6,"d":6,"c":6,"a":8,"Y":7,"A":18,"@":8,"\/":10,"?":-11,"q":6,"X":14,"M":9,"J":17}},"Q":{"d":"172,-3v29,13,58,43,92,18r12,22v-58,41,-100,-27,-153,-34v-61,-8,-102,-57,-103,-121v0,-69,51,-123,121,-123v69,0,119,54,119,122v0,59,-36,104,-88,116xm48,-119v-1,55,37,98,92,99v54,0,92,-43,92,-98v0,-56,-38,-99,-92,-99v-54,0,-92,43,-92,98","w":279,"k":{"z":6,"l":3,"k":3,"h":3,"a":3,"Y":11,"W":12,"\\":11,"b":1,"V":11,"M":4}},"R":{"d":"17,0r0,-24r30,0r0,-189r-30,0r0,-24r90,0v96,-9,114,113,35,134r50,79r28,0r0,24r-46,0r-59,-97v-11,2,-30,0,-41,0r0,73r31,0r0,24r-88,0xm74,-120v48,3,92,-6,92,-47v0,-40,-44,-50,-92,-46r0,93","w":222,"k":{"\\":8,"?":4,"v":3,"q":3,"j":-3,"X":2,"V":8,"J":-5,"T":11,"W":6,"Y":10,"c":3,"d":3,"e":3,"g":3,"o":3,"w":1,"-":2,".":-8,",":-8,":":-8,";":-8}},"S":{"d":"55,-180v6,57,121,46,121,117v0,42,-32,67,-77,67v-46,0,-79,-26,-79,-49v0,-29,38,-29,38,-5v0,6,-3,12,-6,16v21,24,104,20,98,-27v-8,-58,-121,-45,-121,-117v0,-36,29,-63,73,-63v39,0,70,23,70,47v0,13,-8,20,-18,20v-19,1,-24,-21,-14,-32v-22,-20,-89,-12,-85,26","w":197,"k":{"*":4,"\\":4,"\/":2,"!":4,"x":6,"v":5,"q":3,"p":3,"m":3,"b":3,"X":7,"V":5,"M":4,"A":5,"T":5,"U":2,"W":9,"Y":9,"Z":1,"c":3,"d":3,"e":3,"g":3,"o":3,"s":3,"u":3,"w":5,"y":5,"z":3,"a":6,"n":3,"r":3,"h":3,"k":3,"l":3,".":4,",":4}},"T":{"d":"68,0r0,-24r32,0r0,-190r-59,0r0,38r-26,0r0,-61r197,0r0,61r-26,0r0,-38r-59,0r0,190r32,0r0,24r-91,0","w":227,"k":{"@":11,"\/":14,"&":8,"x":19,"v":19,"q":24,"p":16,"m":16,"j":3,"X":11,"V":4,"Q":7,"M":9,"J":18,"A":18,"C":7,"G":7,"O":7,"S":7,"U":2,"W":4,"Y":4,"c":24,"d":24,"e":24,"g":24,"o":24,"s":24,"t":13,"u":19,"w":19,"y":19,"z":24,"-":22,"a":22,"f":13,"n":16,"r":16,".":19,",":19,"i":3,":":15,";":15}},"U":{"d":"127,4v-54,0,-85,-31,-85,-86r0,-131r-30,0r0,-24r87,0r0,24r-31,0v5,78,-25,193,60,193v85,0,55,-116,60,-193r-31,0r0,-24r87,0r0,24r-30,0r0,130v0,56,-34,87,-87,87","w":255,"k":{"\/":7,"x":8,"v":8,"q":11,"p":9,"m":9,"X":7,"V":5,"M":5,"J":8,"A":13,"S":5,"T":2,"U":4,"W":5,"Y":5,"Z":4,"c":9,"d":11,"e":9,"g":11,"o":9,"s":13,"t":5,"w":8,"y":8,"z":13,"a":9,"f":8,"n":9,"r":9,".":15,",":15,"i":6,":":11,";":11}},"V":{"d":"118,4r-88,-217r-24,0r0,-24r80,0r0,24r-27,0r67,171r67,-171r-29,0r0,-24r80,0r0,24r-23,0r-88,217r-15,0","w":250,"k":{"-":22,";":15,":":15,",":33,".":33,"z":19,"y":16,"w":16,"u":16,"t":6,"s":26,"r":16,"o":24,"n":16,"i":6,"g":24,"f":9,"e":24,"d":24,"c":24,"a":25,"Z":7,"U":5,"T":4,"S":7,"O":11,"G":16,"C":11,"A":22,"@":15,"\/":18,"&":8,"x":16,"v":16,"q":24,"p":16,"m":16,"j":3,"X":13,"Q":11,"M":11,"J":23}},"W":{"d":"102,4r-67,-217r-27,0r0,-24r85,0r0,24r-30,0r50,166r59,-161r15,0r60,160r48,-165r-31,0r0,-24r86,0r0,24r-28,0r-66,217r-16,0r-61,-163r-61,163r-16,0","w":356,"k":{"@":15,"\/":19,"&":8,"x":15,"v":15,"q":24,"p":19,"m":19,"j":1,"X":7,"Q":12,"M":11,"J":23,"A":20,"C":12,"G":12,"O":12,"S":11,"T":4,"U":5,"Z":7,"c":27,"d":24,"e":27,"g":24,"o":27,"s":24,"t":11,"u":18,"w":15,"y":15,"z":19,"-":19,"a":24,"f":10,"n":19,"r":19,".":33,",":33,"i":5,":":11,";":11}},"X":{"d":"14,0r0,-24r25,0r75,-97r-69,-92r-26,0r0,-24r82,0r0,23r-26,0r55,77r56,-77r-27,0r0,-23r82,0r0,24r-25,0r-70,91r74,98r25,0r0,24r-82,0r0,-23r27,0r-60,-83r-62,83r28,0r0,23r-82,0","w":259,"k":{"-":19,"y":13,"w":9,"u":16,"t":9,"s":9,"o":13,"g":12,"e":13,"d":13,"c":13,"a":6,"Z":7,"Y":14,"W":7,"U":7,"T":11,"S":9,"O":15,"G":16,"C":16,"A":7,"*":8,"v":13,"q":13,"p":5,"X":7,"V":13,"Q":16,"M":4,"J":7}},"Y":{"d":"69,0r0,-24r33,0r0,-71r-70,-118r-25,0r0,-24r79,0r0,24r-24,0r54,95r54,-95r-25,0r0,-24r80,0r0,24r-26,0r-70,118r0,71r33,0r0,24r-93,0","w":231,"k":{"@":15,"\/":13,"&":11,"x":16,"v":16,"q":25,"p":16,"m":16,"j":3,"X":14,"Q":11,"M":9,"J":23,"A":18,"C":11,"G":11,"O":11,"S":11,"T":4,"U":5,"c":25,"d":25,"e":25,"g":25,"o":25,"s":24,"t":11,"u":16,"w":17,"y":16,"z":19,"-":26,"a":24,"f":9,"n":16,"r":16,".":26,",":26,"i":6,":":15,";":15}},"Z":{"d":"16,0r0,-13r145,-202r-113,0r0,38r-24,0r0,-60r175,0r0,13r-145,202r124,0r0,-38r24,0r0,60r-186,0","w":218,"k":{"*":5,"\\":4,"v":6,"q":3,"X":7,"V":7,"Q":4,"M":4,"J":4,"C":4,"G":5,"O":5,"S":2,"T":7,"U":7,"W":4,"Y":7,"Z":4,"d":3,"g":3,"t":6,"u":3,"w":5,"y":6,"-":8}},"a":{"d":"82,-156v37,0,61,17,61,51r0,83r25,0r0,22r-48,0r0,-19v-26,32,-104,30,-104,-22v0,-45,68,-54,104,-39v11,-47,-31,-66,-65,-49v7,11,0,25,-14,25v-9,0,-15,-8,-15,-17v0,-18,19,-35,56,-35xm41,-43v2,38,63,28,79,4r0,-25v-26,-9,-81,-11,-79,21","w":177,"k":{"?":8,"x":3,"v":8,"q":3,"p":3,"j":3,"b":3,"c":3,"d":3,"e":3,"g":3,"o":3,"s":3,"u":3,"w":6,"y":8,"z":6,"-":4,"a":3,"h":3,"k":3,"l":3}},"b":{"d":"180,-77v0,66,-80,105,-128,61r-7,16r-16,0r0,-242r-24,0r0,-22r49,0r0,131v40,-46,126,-18,126,56xm54,-36v33,30,100,19,100,-40v0,-61,-70,-76,-100,-36r0,76","w":196,"k":{"}":4,"]":4,")":4,"\\":24,"\/":8,"?":8,"x":3,"v":6,"u":3,"w":5,"y":5,"z":3,"a":3,".":8,",":8}},"c":{"d":"148,-12v-54,37,-133,2,-133,-64v0,-42,34,-80,77,-80v35,0,62,23,62,46v0,24,-35,30,-36,4v0,-5,3,-10,8,-13v-26,-32,-85,-14,-85,43v0,55,68,74,109,40","w":170,"k":{"\/":3,"?":4,"x":1,"v":5,"q":3,"p":3,"c":3,"d":3,"e":3,"g":3,"o":3,"s":1,"u":3,"y":3,"z":3,"a":3}},"d":{"d":"140,-22v-38,50,-124,19,-124,-54v0,-64,77,-105,123,-62r0,-104r-28,0r0,-22r53,0r0,242r25,0r0,22r-49,0r0,-22xm42,-76v0,60,69,73,97,34r0,-75v-32,-34,-97,-17,-97,41","w":198,"k":{"s":3,"z":3,"a":3}},"e":{"d":"159,-69r-118,0v4,57,74,60,113,33r-2,24v-56,35,-137,6,-137,-64v0,-42,28,-80,75,-80v51,0,75,39,69,87xm135,-89v-1,-63,-89,-59,-94,0r94,0","w":174,"k":{"}":4,"]":4,")":4,"\\":24,"\/":3,"?":4,"x":3,"v":5,"u":3,"w":3,"y":4,"z":3,"a":5,".":4,",":4}},"f":{"d":"41,-153v-2,-57,-2,-113,51,-113v30,0,38,37,13,37v-10,0,-16,-6,-19,-15v-29,6,-18,57,-20,91r39,0r0,22r-39,0r0,109r30,0r0,22r-80,0r0,-22r25,0r0,-109r-27,0r0,-22r27,0","w":114,"k":{"*":-20,"}":-24,"]":-24,")":-24,"\/":3,"?":-10,"&":-8,"q":5,"c":5,"d":5,"e":5,"g":5,"o":5,".":8,",":8}},"g":{"d":"62,45v29,14,84,4,78,-39r0,-30v-39,46,-124,17,-124,-53v0,-62,82,-106,125,-59r0,-17r48,0r0,22r-24,0r0,136v0,44,-30,68,-73,67v-33,-2,-57,-9,-60,-34v-3,-21,34,-27,33,-3v0,4,-1,7,-3,10xm140,-117v-31,-32,-98,-16,-98,39v0,56,69,71,98,33r0,-72","w":200,"k":{"x":6,"v":1,"d":3,"g":3,"s":5,"u":3,"w":1,"y":1,"z":6,"a":3,".":17,",":17}},"h":{"d":"141,-22v-4,-43,16,-112,-30,-111v-19,0,-37,12,-51,27r0,84r25,0r0,22r-74,0r0,-22r25,0r0,-220r-25,0r0,-22r49,0r0,138v26,-41,106,-43,106,22r0,82r25,0r0,22r-74,0r0,-22r24,0","w":200,"k":{"?":8,"x":3,"v":8,"q":3,"p":3,"j":3,"b":3,"c":3,"d":3,"e":3,"g":3,"o":3,"s":3,"w":6,"y":5,"z":6,"a":3}},"i":{"d":"50,-193v-11,0,-19,-8,-19,-19v0,-11,9,-21,20,-21v10,0,19,10,19,21v0,11,-10,19,-20,19xm15,0r0,-22r26,0r0,-109r-26,0r0,-22r51,0r0,131r26,0r0,22r-77,0","w":104,"k":{"v":6,"p":5,"j":5,"b":3,"s":3,"u":5,"w":5,"y":6,"z":3,"a":3}},"j":{"d":"66,-153v-7,83,27,225,-52,225v-21,0,-33,-11,-33,-23v0,-9,6,-17,16,-17v13,-1,14,12,18,20v20,0,26,-28,26,-53r0,-130r-29,0r0,-22r54,0xm49,-193v-11,0,-19,-8,-19,-19v0,-11,9,-21,20,-21v10,0,19,10,19,21v0,11,-9,19,-20,19","w":93,"k":{"*":-4,"x":3,"y":3,"z":3,"-":-6}},"k":{"d":"11,0r0,-22r25,0r0,-220r-25,0r0,-22r49,0r0,187r65,-55r-30,0r0,-21r86,0r0,22r-27,0r-48,41r47,68r28,0r0,22r-42,0r-51,-76r-28,23r0,32r25,0r0,21r-74,0","w":188,"k":{"&":-4,"q":3,"c":3,"d":3,"e":3,"g":3,"o":3,"s":3,"a":3}},"l":{"d":"12,0r0,-22r26,0r0,-220r-26,0r0,-22r51,0r0,242r26,0r0,22r-77,0","w":100,"k":{"v":1,"p":5,"j":5,"b":3,"s":3,"u":5,"w":1,"y":1,"z":3,"a":3}},"m":{"d":"140,-22v-5,-41,17,-111,-27,-111v-19,0,-35,12,-49,27r0,84r24,0r0,22r-73,0r0,-22r24,0r0,-109r-24,0r0,-22r48,0r0,28v19,-34,88,-47,99,-1v29,-40,103,-44,103,22r0,82r25,0r0,22r-73,0r0,-22r23,0v-5,-41,17,-112,-27,-111v-18,0,-33,11,-48,26r0,85r24,0r0,22r-73,0r0,-22r24,0","w":299,"k":{"z":6,"y":5,"w":6,"s":3,"o":3,"g":3,"e":3,"d":3,"c":3,"a":3,"?":8,"x":3,"v":8,"q":3,"p":3,"j":3,"b":3}},"n":{"d":"144,-22v-5,-43,17,-112,-30,-111v-19,0,-36,12,-50,27r0,84r24,0r0,22r-73,0r0,-22r24,0r0,-109r-24,0r0,-22r48,0r0,28v26,-41,106,-44,106,21r0,82r24,0r0,22r-73,0r0,-22r24,0","w":202,"k":{"?":8,"x":3,"v":8,"q":3,"p":3,"j":3,"b":3,"c":3,"d":3,"e":3,"g":3,"o":3,"s":3,"w":6,"y":5,"z":6,"a":3,"h":3,"k":3,"l":3}},"o":{"d":"95,3v-48,0,-79,-36,-79,-80v0,-43,31,-79,79,-79v48,0,79,35,79,79v0,44,-31,80,-79,80xm95,-19v31,0,53,-24,53,-58v0,-34,-22,-58,-53,-58v-31,0,-53,24,-53,58v0,34,22,58,53,58","w":189,"k":{"}":4,"]":4,")":4,"\\":24,"\/":8,"?":8,"x":3,"v":6,"u":3,"w":1,"y":5,"z":3,"a":3,".":8,",":8}},"p":{"d":"11,71r0,-22r25,0r0,-180r-25,0r0,-22r49,0r0,22v38,-50,124,-19,124,54v0,63,-76,105,-124,62r0,64r30,0r0,22r-79,0xm60,-36v33,32,98,16,98,-41v0,-61,-68,-72,-98,-35r0,76","k":{",":8,".":8,"z":3,"y":5,"w":5,"u":3,"a":3,"}":4,"]":4,")":4,"\/":8,"?":8,"x":3,"v":6}},"q":{"d":"111,71r0,-22r30,0r0,-69v-40,46,-125,17,-125,-57v0,-65,80,-104,127,-60r8,-16r15,0r0,202r25,0r0,22r-80,0xm42,-77v0,61,68,74,99,36r0,-76v-33,-30,-99,-19,-99,40","w":191,"k":{"}":-24,"]":-24,")":-24,"\/":-24,"?":2}},"r":{"d":"110,-156v28,0,30,37,6,38v-9,0,-16,-6,-19,-13v-12,3,-25,18,-33,33r0,76r29,0r0,22r-78,0r0,-22r24,0r0,-109r-24,0r0,-22r48,0r0,35v12,-21,30,-38,47,-38","w":136,"k":{"*":-8,"\/":5,"&":-4,"q":4,"c":4,"d":4,"e":4,"g":4,"o":4,"s":1,"-":-6,"a":2,".":12,",":12}},"s":{"d":"79,-156v29,0,56,9,56,33v0,10,-6,17,-15,17v-12,0,-19,-12,-15,-25v-16,-11,-64,-3,-60,17v6,34,105,22,96,71v4,57,-125,62,-125,9v0,-9,7,-17,16,-17v14,0,19,13,14,25v13,13,71,13,71,-15v0,-14,-14,-20,-36,-25v-37,-9,-60,-18,-60,-46v0,-23,21,-44,58,-44","w":157,"k":{"}":4,"]":4,")":4,"\\":24,"?":8,"v":1,"q":1,"p":3,"j":1,"b":1,"c":1,"d":1,"e":1,"g":1,"o":1,"u":3,"w":1,"y":1,"z":3,"a":1,"h":5,"k":5,"l":5}},"t":{"d":"59,-40v-2,28,33,21,49,10r-3,24v-25,16,-71,11,-71,-30r0,-95r-28,0r0,-22r28,0r0,-37r25,-10r0,47r47,0r0,22r-47,0r0,91","w":119,"k":{"&":-8,"v":5,"q":1,"c":1,"d":1,"e":1,"g":1,"o":1,"y":5,"z":3,"k":5,"l":5}},"u":{"d":"59,-54v-1,52,61,35,80,7r0,-84r-26,0r0,-22r50,0r0,131r25,0r0,22r-49,0r0,-28v-25,41,-105,45,-105,-21r0,-82r-25,0r0,-22r50,0r0,99","k":{"?":2,"x":3,"b":3,"u":3,"z":5}},"v":{"d":"87,5r-64,-136r-20,0r0,-22r71,0r0,21r-25,0r46,101r45,-101r-26,0r0,-21r71,0r0,22r-20,0r-64,136r-14,0","w":187,"k":{"-":-4,",":20,".":20,"z":3,"t":5,"s":4,"o":6,"l":3,"k":3,"h":3,"g":6,"e":6,"d":6,"c":6,"a":6,"*":-4,"@":8,"\/":5,"q":6,"p":3}},"w":{"d":"67,6r-42,-137r-22,0r0,-22r70,0r0,21r-24,0r28,97r43,-101r13,0r42,101r28,-97r-26,0r0,-21r71,0r0,22r-23,0r-42,137r-13,0r-45,-104r-44,104r-14,0","w":250,"k":{"*":-4,"@":4,"\/":5,"&":4,"q":5,"p":1,"c":5,"d":5,"e":1,"g":5,"o":1,"s":4,"z":1,"-":-4,"a":5,"h":1,"k":-1,"l":1,".":12,",":12}},"x":{"d":"7,0r0,-22r21,0r49,-56r-46,-53r-21,0r0,-22r67,0r0,20r-20,0r34,43r34,-43r-21,0r0,-20r67,0r0,22r-21,0r-46,53r49,56r21,0r0,22r-69,0r0,-20r22,0r-37,-47r-37,47r22,0r0,20r-68,0","w":181,"k":{"s":3,"o":3,"g":3,"e":3,"d":3,"c":3,"a":3,"*":-4,"q":3}},"y":{"d":"89,24v-10,21,-30,49,-52,48v-26,4,-38,-34,-11,-36v9,0,14,6,16,13v18,-7,29,-38,39,-58r-58,-122r-21,0r0,-22r72,0r0,21r-24,0r43,99r44,-99r-25,0r0,-21r70,0r0,22r-21,0","w":184,"k":{"*":-4,"@":8,"\/":5,"&":4,"q":6,"p":3,"c":6,"d":6,"e":6,"g":6,"o":6,"s":4,"t":5,"z":6,"-":-4,"a":6,"f":5,"h":3,"k":3,"l":3,".":20,",":20}},"z":{"d":"13,0r0,-11r99,-122r-71,0r0,30r-22,0r0,-50r129,0r0,11r-99,121r78,0r0,-29r22,0r0,50r-136,0","w":162,"k":{"?":4,"v":3,"q":3,"p":1,"c":3,"d":3,"e":3,"g":3,"o":3,"s":1,"u":3,"w":1,"y":3,"z":3,"-":4,"a":3}},"0":{"d":"100,3v-48,0,-83,-40,-83,-94v0,-54,34,-95,83,-95v48,0,83,41,83,95v0,54,-34,94,-83,94xm100,-19v34,0,57,-30,57,-72v0,-42,-23,-73,-57,-73v-34,0,-57,31,-57,73v0,42,23,72,57,72","k":{"}":4,"]":4,")":4,"3":4}},"1":{"d":"23,0r0,-22r43,0r0,-134r-39,9r-5,-21v24,-5,41,-15,69,-16r0,162r43,0r0,22r-111,0","w":147,"k":{"-":4,"9":4,"7":3}},"2":{"d":"152,-133v0,54,-88,70,-107,112r91,0r0,-31r22,0r0,52r-141,0r-4,-13v14,-34,42,-54,72,-73v23,-15,42,-27,42,-47v0,-35,-67,-39,-81,-15v15,7,10,33,-8,32v-10,0,-19,-9,-19,-22v0,-31,32,-48,67,-48v44,0,66,26,66,53","w":178,"k":{"}":4,"]":4,")":4,"9":4,"5":4,"3":4}},"3":{"d":"161,-19v5,74,-141,89,-148,16v-3,-24,36,-28,36,-5v0,6,-3,12,-9,15v22,29,99,17,96,-26v-2,-32,-35,-48,-75,-45r0,-22v36,2,69,-13,72,-43v4,-39,-72,-44,-86,-19v16,7,10,32,-7,31v-10,0,-19,-9,-19,-22v0,-32,30,-47,68,-47v41,0,69,26,69,57v0,26,-25,50,-53,53v30,5,54,26,56,57","w":177,"k":{"}":4,"]":4,")":4}},"4":{"d":"114,43r0,-64r-103,0r-5,-11r116,-155r19,14r-97,131r70,0r0,-51r24,-10r0,61r41,0r0,21r-41,0r0,64r-24,0","w":185,"k":{"-":9,"9":4,"7":3,"5":4,"3":4}},"5":{"d":"159,-27v0,76,-130,100,-144,32v-5,-23,36,-29,36,-4v0,5,-2,10,-6,13v32,22,94,2,89,-41v4,-49,-64,-60,-101,-38r-11,-7r14,-111r111,0r0,24r-92,0r-7,67v53,-17,111,10,111,65","w":174,"k":{"-":4,"}":4,"]":4,")":4,"6":4}},"6":{"d":"109,-230v26,0,54,12,56,37v1,25,-37,28,-36,4v0,-5,1,-9,4,-12v-50,-24,-86,17,-90,92v28,-54,132,-30,132,38v0,41,-32,74,-77,74v-54,0,-79,-40,-79,-99v0,-95,46,-134,90,-134xm46,-68v0,28,21,49,52,49v31,0,52,-22,52,-52v0,-27,-20,-47,-50,-47v-32,0,-54,23,-54,50","w":191,"k":{"}":4,"]":4,")":4,"7":4,"3":7}},"7":{"d":"56,44r-22,-11r92,-195r-92,0r0,36r-23,0r0,-57r142,0r5,11","w":169,"k":{"-":7,";":7,":":7,",":18,".":18,"@":7,"}":7,"]":7,")":7,"\/":5,"&":4,"9":4,"8":4,"6":4,"5":4,"4":21,"3":5,"2":5,"0":8}},"8":{"d":"90,3v-79,0,-99,-99,-32,-120v-63,-25,-37,-113,32,-113v71,0,98,89,32,113v24,9,44,30,44,56v0,36,-32,64,-76,64xm90,-127v24,0,45,-18,45,-40v0,-23,-19,-41,-45,-41v-25,0,-44,18,-44,41v0,22,20,40,44,40xm90,-19v28,0,49,-19,49,-43v0,-25,-21,-44,-49,-44v-27,0,-48,19,-48,44v0,24,21,43,48,43","w":181,"k":{"}":4,"]":4,")":4,"9":4,"3":7}},"9":{"d":"93,-186v54,0,79,41,79,100v0,95,-47,131,-92,131v-26,0,-55,-11,-56,-38v-1,-26,37,-27,37,-4v0,5,-2,8,-5,11v48,25,89,-14,92,-87v-28,53,-132,29,-132,-38v0,-42,32,-75,77,-75xm145,-115v0,-28,-21,-49,-52,-49v-31,0,-51,23,-51,53v0,26,19,46,49,46v32,0,54,-23,54,-50","w":191,"k":{"}":4,"]":4,")":4,"7":4}},".":{"d":"37,3v-13,0,-22,-10,-22,-23v0,-13,9,-22,22,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74,"k":{"v":20,"V":33,"Q":15,"C":15,"G":15,"O":15,"T":19,"U":15,"W":33,"Y":31,"t":2,"u":2,"w":12,"y":6}},",":{"d":"7,54r-7,-9v24,-18,32,-35,33,-45v-25,-2,-24,-43,3,-42v13,0,23,10,23,28v0,20,-13,47,-52,68","w":74,"k":{"v":20,"V":33,"Q":15,"C":15,"G":15,"O":15,"T":19,"U":15,"W":33,"Y":31,"t":2,"u":2,"w":12,"y":6}},":":{"d":"41,-93v-12,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22xm41,3v-12,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22","w":81},";":{"d":"41,-93v-12,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22xm11,54r-7,-10v24,-18,33,-34,33,-44v-24,-3,-25,-42,3,-41v13,0,23,9,23,27v0,19,-13,47,-52,68","w":81},"&":{"d":"214,-96r-21,0v-6,19,-13,36,-22,50v14,14,35,31,38,34r-16,17v-3,-3,-23,-21,-37,-34v-34,50,-146,38,-146,-26v0,-29,19,-48,50,-66v-44,-44,-29,-106,33,-106v30,0,52,19,52,47v0,23,-13,40,-50,62v19,20,28,27,59,57v7,-11,14,-23,18,-35r-21,0r0,-21r63,0r0,21xm82,-19v24,0,43,-10,58,-25r-67,-63v-26,15,-36,30,-36,51v0,18,15,37,45,37xm93,-206v-37,0,-43,44,-12,74v31,-19,39,-31,39,-48v0,-15,-12,-26,-27,-26","w":222,"k":{"t":-8,"Y":15,"W":15,"T":9,"1":4,"j":-8,"V":15}},"!":{"d":"39,-66r-9,-171r32,0r-9,171r-14,0xm46,3v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21","w":91},"?":{"d":"8,-190v0,-33,33,-50,68,-51v46,0,74,28,74,64v0,32,-24,59,-66,69r-4,42r-15,0r-6,-57v43,-8,64,-29,64,-54v0,-43,-66,-53,-87,-26v-2,7,13,10,10,19v0,10,-7,17,-17,17v-11,0,-21,-9,-21,-23xm73,3v-12,0,-20,-9,-20,-21v0,-12,8,-21,20,-21v12,0,21,9,21,21v0,12,-9,21,-21,21","w":160},"-":{"d":"13,-87r0,-26r84,0r0,26r-84,0","w":109,"k":{"1":9,"v":-4,"X":19,"V":22,"M":4,"A":5,"S":5,"T":22,"W":19,"Y":26,"Z":8,"t":-8,"w":-4,"y":-4,"h":-4,"k":-4,"l":-4}},"_":{"d":"-2,53r0,-24r196,0r0,24r-196,0","w":191},"\/":{"d":"14,75r-22,-9r148,-333r22,10","w":167,"k":{"z":32,"y":16,"w":16,"u":20,"s":36,"r":20,"o":32,"n":20,"g":32,"f":8,"e":32,"d":32,"c":32,"a":36,"Z":8,"S":5,"O":11,"G":11,"C":11,"A":15,"\/":46,"9":14,"5":14,"4":43,"3":22,"2":22,"1":11,"0":14,"x":20,"v":16,"q":32,"p":20,"m":20,"Q":11,"J":19}},"\\":{"d":"153,75r-147,-332r22,-10r147,333","w":167},"|":{"d":"37,72r0,-336r23,0r0,336r-23,0","w":97},"(":{"d":"126,81v-57,-33,-101,-98,-101,-175v0,-77,44,-142,101,-175r13,19v-52,32,-88,88,-88,156v0,68,36,125,88,157","w":131,"k":{"y":-12,"s":8,"o":4,"l":-16,"k":-16,"h":-16,"g":4,"e":4,"d":4,"c":4,"a":4,"S":2,"O":4,"G":4,"C":4,"A":4,"9":4,"8":4,"6":7,"5":4,"4":7,"3":2,"2":4,"0":4,"p":-12,"j":-34,"b":-16,"Q":4,"J":11}},")":{"d":"5,81r-13,-18v52,-32,88,-89,88,-157v0,-68,-36,-124,-88,-156r13,-19v57,33,101,98,101,175v0,77,-44,142,-101,175","w":131},"[":{"d":"36,72r0,-336r83,0r0,24r-57,0r0,289r57,0r0,23r-83,0","w":127,"k":{"y":-12,"s":8,"o":4,"l":-16,"k":-16,"h":-16,"g":4,"e":4,"d":4,"c":4,"a":4,"S":2,"O":4,"G":4,"C":4,"A":4,"9":4,"8":4,"6":7,"5":4,"4":7,"3":2,"2":4,"0":4,"p":-12,"j":-34,"b":-16,"Q":4,"J":11}},"]":{"d":"8,72r0,-23r58,0r0,-289r-58,0r0,-24r83,0r0,336r-83,0","w":127},"{":{"d":"95,-55v0,27,-46,53,-46,77v0,17,14,34,57,36r0,20v-55,-1,-82,-24,-82,-56v0,-30,43,-49,45,-77v2,-20,-23,-31,-50,-29r0,-22v27,2,52,-9,50,-29v-2,-28,-45,-47,-45,-77v0,-32,27,-55,82,-56r0,20v-43,2,-57,19,-57,36v0,24,46,50,46,77v0,15,-11,34,-42,40v31,6,42,25,42,40","w":124,"k":{"y":-12,"s":8,"o":4,"l":-16,"k":-16,"h":-16,"g":4,"e":4,"d":4,"c":4,"a":4,"S":2,"O":4,"G":4,"C":4,"A":4,"9":4,"8":4,"6":7,"5":4,"4":7,"3":2,"2":4,"0":4,"p":-12,"j":-34,"b":-16,"Q":4,"J":11}},"}":{"d":"56,-55v2,28,45,47,45,77v0,32,-27,55,-82,56r0,-20v43,-2,57,-19,57,-36v0,-24,-46,-50,-46,-77v0,-15,11,-34,42,-40v-31,-6,-42,-25,-42,-40v0,-27,46,-53,46,-77v0,-17,-14,-34,-57,-36r0,-20v55,1,82,24,82,56v0,30,-43,49,-45,77v-1,20,23,31,50,29r0,22v-27,-2,-51,9,-50,29","w":124},"@":{"d":"186,47v-76,43,-170,-4,-170,-93v0,-96,71,-173,154,-173v64,0,105,42,105,103v0,57,-31,103,-70,103v-23,0,-34,-14,-33,-30v-21,43,-92,40,-92,-20v0,-63,83,-110,105,-48r8,-28r23,0r-21,80v-5,18,0,29,13,29v27,0,50,-41,50,-86v0,-50,-33,-88,-88,-88v-75,0,-137,71,-137,158v0,76,80,117,146,80xm133,-34v42,0,70,-85,16,-85v-24,0,-43,26,-43,54v0,18,9,31,27,31","w":289,"k":{"z":8,"Z":4,"Y":11,"W":9,"A":4,"5":4,"4":4,"3":4,"2":4,"1":7,"x":4,"X":11,"V":9}},"*":{"d":"132,-210v6,23,-33,18,-53,21v9,12,46,28,30,48v-23,12,-28,-28,-36,-43v-8,15,-14,55,-36,43v-17,-20,22,-36,30,-48v-20,-3,-59,2,-53,-21v13,-21,40,8,55,13v-3,-18,-21,-52,4,-56v24,3,6,38,4,56v15,-5,41,-34,55,-13","w":145,"k":{"A":24}},"^":{"d":"36,-129r-11,-13r55,-53r56,53r-12,13r-44,-32","w":160},"~":{"d":"52,-118v29,-1,54,50,67,3r19,4v-2,25,-18,42,-35,42v-29,1,-54,-51,-66,-3r-20,-4v2,-25,18,-42,35,-42","w":155},"$":{"d":"104,-207r-2,25v26,3,48,16,48,34v0,10,-7,17,-16,17v-14,1,-21,-15,-14,-26v-3,-2,-12,-4,-21,-5r-4,58v28,9,57,21,57,53v0,35,-31,50,-65,51r-3,38r-20,-2r3,-37v-27,-4,-53,-16,-53,-38v0,-10,7,-17,16,-17v14,0,21,14,14,26v4,4,14,8,26,9r5,-64v-27,-8,-53,-19,-53,-49v0,-28,25,-48,60,-49r3,-25xm127,-50v0,-15,-13,-24,-34,-30r-6,60v22,-1,40,-10,40,-30xm46,-136v0,14,14,21,32,27r4,-54v-20,1,-36,10,-36,27","w":167},"#":{"d":"18,-117r0,-22r37,0r7,-44r22,0r-7,44r46,0r7,-44r23,0r-7,44r34,0r0,22r-37,0r-8,50r33,0r0,21r-36,0r-7,46r-23,0r7,-46r-46,0r-7,46r-23,0r7,-46r-33,0r0,-21r37,0r7,-50r-33,0xm73,-118r-7,51r47,0r8,-51r-48,0","w":186},"%":{"d":"62,-99v-24,0,-44,-19,-44,-43v0,-24,20,-44,44,-44v24,0,43,20,43,44v0,24,-19,43,-43,43xm171,-85v24,0,44,20,44,44v0,24,-20,44,-44,44v-24,0,-43,-20,-43,-44v0,-24,19,-44,43,-44xm197,-175v-22,23,-130,158,-150,183r-13,-11r150,-183xm62,-116v14,0,23,-12,23,-26v0,-14,-9,-26,-23,-26v-14,0,-24,12,-24,26v0,14,10,26,24,26xm171,-67v-14,0,-23,12,-23,26v0,14,9,26,23,26v14,0,24,-12,24,-26v0,-14,-10,-26,-24,-26","w":232},"\"":{"d":"86,-151r-12,-65v-3,-15,5,-25,17,-25v35,0,6,62,5,90r-10,0xm25,-151r-12,-65v-3,-15,5,-25,17,-25v35,0,6,62,5,90r-10,0","w":121},"'":{"d":"25,-151r-12,-65v-3,-15,5,-25,17,-25v35,0,6,62,5,90r-10,0","w":60},"+":{"d":"63,-37r0,-49r-48,0r0,-22r48,0r0,-49r23,0r0,49r49,0r0,22r-49,0r0,49r-23,0","w":149},"=":{"d":"15,-113r0,-22r120,0r0,22r-120,0xm15,-55r0,-22r120,0r0,22r-120,0","w":149},"<":{"d":"105,-28r-90,-62r0,-12r90,-61r12,18r-73,50r73,49","w":140},">":{"d":"35,-28r-12,-18r73,-49r-73,-50r12,-18r91,61r0,12","w":140},"`":{"d":"96,-181v-21,-15,-57,-23,-67,-47v1,-18,20,-18,30,-7r43,45","w":150},"\u00a0":{"w":81}}});

