jQuery.fn.mailcontact=function(){this.each(function(){var addr=jQuery(this).text();$(this).after('<a href="mailto:info'+'@'+'francvila.com">'+addr+'</a>').remove();});};jQuery.fn.mailinfo=function(){this.each(function(){var addr='info'+'@'+'francvila.com';$(this).after('<a href="mailto:'+addr+'">'+addr+'</a>').remove();});};jQuery.fn.mailme=function(){var at=/ at /;var dot=/ dot /g;this.each(function(){var addr=jQuery(this).text().replace(at,"@").replace(dot,".");var title=jQuery(this).attr('title')
$(this).after('<a href="mailto:'+addr+'" title="'+title+'">'+addr+'</a>').remove();});};
jQuery.fn.supersleight=function(settings){settings=jQuery.extend({imgs:true,backgrounds:true,shim:'x.gif',apply_positioning:true},settings);return this.each(function(){if(jQuery.browser.msie&&parseInt(jQuery.browser.version)<7&&parseInt(jQuery.browser.version)>4){jQuery(this).find('*').each(function(i,obj){var self=jQuery(obj);if(settings.backgrounds&&self.css('background-image').match(/\.png/i)!==null){var bg=self.css('background-image');var src=bg.substring(5,bg.length-2);var mode=(self.css('background-repeat')=='no-repeat'?'crop':'scale');var styles={'filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+src+"', sizingMethod='"+mode+"')",'background-image':'url('+settings.shim+')'};self.css(styles);};if(settings.imgs&&self.is('img[src$=png]')){var styles={'width':self.width()+'px','height':self.height()+'px','filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+self.attr('src')+"', sizingMethod='scale')"};self.css(styles).attr('src',settings.shim);};if(settings.applyPositioning&&self.is('a, input')&&self.css('position')===''){self.css('position','relative');};});};});};
;(function($){var L=$.loading=function(show,opts){return $('body').loading(show,opts,true);};$.fn.loading=function(show,opts,page){opts=toOpts(show,opts,page);return this.each(function(){L.toggle.call($(this),$.extend({},opts));});};L.onAjax=function(opts){if(!opts)opts={};opts._active=0;return(this.jquery?this:$(document)).ajaxStart(function(){if(opts._active==0)L(true,opts);opts._active+=1;}).ajaxStop(function(){opts._active-=1;if(opts._active==0)L(false,opts);});};$.extend(L,{version:"1.3.3",align:'top-left',pulse:'working',mask:false,img:null,element:null,text:'Loading...',classname:'loading',imgClass:'loading-img',elementClass:'loading-element',maskClass:'loading-mask',css:{position:'absolute',whiteSpace:'nowrap',zIndex:1001},maskCss:{position:'absolute',opacity:.15,background:'#333',zIndex:101,display:'block',cursor:'wait'},cloneEvents:true,pageOptions:{page:true,align:'top-center'},html:'<div></div>',maskHtml:'<div></div>',maskedClass:'loading-masked',maskEvents:'mousedown mouseup keydown keypress',resizeEvents:'resize',working:{time:10000,text:'Still Working...',run:function(opts){var w=opts.working,self=this;opts.timeout=setTimeout(function(){self.height('auto').width('auto').text(w.text);opts.place.call(opts.display,opts);},w.time);}},fade:{time:700,speed:'slow',run:function(opts){var s=opts.fade.speed,self=this;opts.interval=setInterval(function(){self.fadeOut(s).fadeIn(s);},opts.fade.time);}},ellipsis:{time:300,run:function(opts){var t=opts.text,x=t.indexOf('.'),i=x<0?t.length:x,self=this;opts.interval=setInterval(function(){var et=self.text();self.text((et.length-i)<3?et+'.':t.substring(0,i));},opts.ellipsis.time);}},type:{time:100,run:function(opts){var t=opts.text,self=this;opts.interval=setInterval(function(){var e=self.text(),el=e.length;self.text(el==t.length?t.charAt(0):t.substring(0,el+1));},opts.type.time);}},toggle:function(opts){var old=this.data('loading');if(old){if(opts.show!==true)old.off.call(this,old,opts);}else{if(opts.show!==false)opts.on.call(this,opts);}},on:function(opts){opts.parent=this;if(opts.mask)opts.mask=opts.createMask.call(this,opts);opts.display=opts.create.call(this,opts);if(opts.img){opts.initImg.call(this,opts);}else if(opts.element){opts.initElement.call(this,opts);}else{opts.init.call(this,opts);}
this.trigger('loadingStart',[opts]);},initImg:function(opts){var self=this;opts.img=$('<img src="'+opts.img+'"/>').bind('load',function(){opts.init.call(self,opts);});opts.display.addClass(opts.imgClass).append(opts.img);},initElement:function(opts){opts.element=$(opts.element).clone(opts.cloneEvents)
opts.display.addClass(opts.elementClass).append(opts.element);opts.init.call(this,opts);},init:function(opts){opts.place.call(opts.display,opts);this.data('loading',opts);if(opts.pulse){opts[opts.pulse].run.call(opts.display,opts);}},create:function(opts){var el=$(opts.html).addClass(opts.classname).css(opts.css).appendTo(this);if(opts.text&&!opts.img&&!opts.element)el.text(opts.text);$(window).bind(opts.resizeEvents,opts.resizer=function(){opts.resize(opts);});return el;},resize:function(opts){opts.parent.box=null;if(opts.mask)opts.mask.hide();opts.place.call(opts.display.hide(),opts);if(opts.mask)opts.mask.show().css(opts.parent.box);},createMask:function(opts){var box=opts.measure.call(this.addClass(opts.maskedClass),opts);opts.handler=function(e){return opts.maskHandler(e,opts);};$(document).bind(opts.maskEvents,opts.handler);return $(opts.maskHtml).addClass(opts.maskClass).css(box).css(opts.maskCss).appendTo(this);},maskHandler:function(e,opts){var $els=$(e.target).parents().andSelf();if($els.filter('.'+opts.classname).length!=0)return true;return!opts.page&&$els.filter('.'+opts.maskedClass).length==0;},place:function(opts){var box=opts.align,v='top',h='left';if(typeof box=="object"){box=$.extend(opts.calc.call(this,v,h,opts),box);}else{if(box!='top-left'){var s=box.split('-');if(s.length==1){v=h=s[0];}else{v=s[0];h=s[1];}}
if(!this.hasClass(v))this.addClass(v);if(!this.hasClass(h))this.addClass(h);box=opts.calc.call(this,v,h,opts);}
this.show().css(opts.box=box);},calc:function(v,h,opts){var box=$.extend({},opts.measure.call(opts.parent,opts)),H=$.boxModel?this.height():this.innerHeight(),W=$.boxModel?this.width():this.innerWidth();if(v!='top'){var d=box.height-H;if(v=='center'){d/=2;}else if(v!='bottom'){d=0;}else if($.boxModel){d-=css(this,'paddingTop')+css(this,'paddingBottom');}
box.top+=d;}
if(h!='left'){var d=box.width-W;if(h=='center'){d/=2;}else if(h!='right'){d=0;}else if($.boxModel){d-=css(this,'paddingLeft')+css(this,'paddingRight');}
box.left+=d;}
box.height=H;box.width=W;return box;},measure:function(opts){if(!this.box)this.box=opts.page?opts.pageBox(opts):opts.elementBox(this,opts);return this.box;},elementBox:function(e,opts){var box=e.position();box.top+=css(e,'marginTop');box.left+=css(e,'marginLeft');box.height=e.outerHeight();box.width=e.outerWidth();return box;},pageBox:function(){var h=$.boxModel?$(document).height():document.body.clientHeight,w=$.boxModel?$(document).width():document.body.clientWidth;return{top:0,left:0,height:h,width:w};},off:function(old,opts){this.data('loading',null);if(old.pulse&&old[old.pulse].end){old[old.pulse].end.call(this,old,opts);}
if(old.interval)clearInterval(old.interval);if(old.timeout)clearTimeout(old.timeout);if(old.mask){this.removeClass(opts.maskedClass);$(document).unbind(old.maskEvents,old.handler);old.mask.remove();}
$(window).unbind(opts.resizeEvents,old.resizer);old.display.remove();old.parent.trigger('loadingEnd',[old]);}});function toOpts(s,o,p){if(o===undefined){o=(typeof s=="boolean")?{show:s}:s;}else{o.show=s;}
if(o&&(o.img||o.element)&&!o.pulse)o.pulse=false;return $.extend(true,{},L,(p?L.pageOptions:null),o);}
function css(el,prop){var val=el.css(prop);return val=='auto'?0:parseFloat(val,10);}})(jQuery);
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return!a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),fontStretch:I(function(a){if(typeof a=="number"){return a}if(/%$/.test(a)){return parseFloat(a)/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}[a]||1}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(g){var d=document.createElement("style"),c,b,a;d.type="text/css";d.media=g;try{d.appendChild(document.createTextNode("/**/"))}catch(f){}b=F("head")[0];b.insertBefore(d,b.firstChild);c=(d.sheet||d.styleSheet);a=c&&!c.disabled;b.removeChild(d);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={};b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var a=!M.recognizesMedia("all"),d=false;var c=[],g=function(){a=true;for(var j;j=c.shift();j()){}};var h=F("link"),i=F("style");function b(j){return j.disabled||f(j.sheet,j.media||"screen")}function f(m,p){if(!M.recognizesMedia(p||"all")){return true}if(!m||m.disabled){return false}try{var q=m.cssRules,o;if(q){search:for(var k=0,j=q.length;o=q[k],k<j;++k){switch(o.type){case 2:break;case 3:if(!f(o.styleSheet,o.media.mediaText)){return false}break;default:break search}}}}catch(n){}return true}function e(){if(document.createStyleSheet){return true}var k,j;for(j=0;k=h[j];++j){if(k.rel.toLowerCase()=="stylesheet"&&!b(k)){return false}}for(j=0;k=i[j];++j){if(!b(k)){return false}}return true}W.ready(function(){if(!d){d=M.getStyle(document.body).isUsable()}if(a||(d&&e())){g()}else{setTimeout(arguments.callee,10)}});return function(j){if(a){j()}else{c.push(j)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX;c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return!!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(b.hover){b.forceHitArea=true}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();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-canvas{text-indent:0;}@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:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}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(AF,Z,w,V,d,AG){var I=(Z===null);if(I){Z=d.alt}var b=AF.viewBox;var K=w.getSize("fontSize",AF.baseSize);var u=w.get("letterSpacing");u=(u=="normal")?0:K.convertFrom(parseInt(u,10));var c=0,v=0,t=0,X=0;var a=V.textShadow,r=[];if(a){for(var AE=a.length;AE--;){var h=a[AE];var q=K.convertFrom(parseFloat(h.offX));var o=K.convertFrom(parseFloat(h.offY));r[AE]=[q,o];if(o<c){c=o}if(q>v){v=q}if(o>t){t=o}if(q<X){X=q}}}var AJ=Cufon.CSS.textTransform(Z,w).split(""),T;var J=AF.glyphs,W,M,AA;var G=0,P,f=[];for(var AE=0,AC=0,z=AJ.length;AE<z;++AE){W=J[T=AJ[AE]]||AF.missingGlyph;if(!W){continue}if(M){G-=AA=M[T]||0;f[AC-1]-=AA}G+=P=f[AC++]=~~(W.w||AF.w)+u;M=W.k}if(P===undefined){return null}v+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var AB=document.createElement("span");AB.className="cufon-alt";AB.appendChild(document.createTextNode(Z));U.appendChild(AB)}}var AK=U.style;var n=L.style;var H=K.convert(b.height);var AI=Math.ceil(H);var s=AI/H;var m=s*Cufon.CSS.fontStretch(w.get("fontStretch"));var p=G*m;L.width=Math.ceil(K.convert(p+v-X));L.height=Math.ceil(K.convert(b.height-c+t));c+=b.minY;n.top=Math.round(K.convert(c-AF.ascent))+"px";n.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(p))+"px";if(A){AK.width=S;AK.height=K.convert(AF.height)+"px"}else{AK.paddingLeft=S;AK.paddingBottom=(K.convert(AF.height)-1)+"px"}var AH=L.getContext("2d"),e=H/b.height;AH.scale(e,e*s);AH.translate(-X,-c);AH.lineWidth=AF.face["underline-thickness"];AH.save();function N(i,g){AH.strokeStyle=g;AH.beginPath();AH.moveTo(0,i);AH.lineTo(G,i);AH.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AG,w):{};if(O.underline){N(-AF.face["underline-position"],O.underline)}if(O.overline){N(AF.ascent,O.overline)}function AD(){AH.scale(m,1);for(var x=0,k=0,g=AJ.length;x<g;++x){var y=J[AJ[x]]||AF.missingGlyph;if(!y){continue}if(y.d){AH.beginPath();if(y.code){C(y.code,AH)}else{y.code=D("m"+y.d,AH)}AH.fill()}AH.translate(f[k++],0)}AH.restore()}if(a){for(var AE=a.length;AE--;){var h=a[AE];AH.save();AH.fillStyle=h.color;AH.translate.apply(AH,r[AE]);AD()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AH.createLinearGradient(0,b.minY,0,b.maxY);for(var AE=0,z=Y.length;AE<z;++AE){Q.addColorStop.apply(Q,Y[AE])}AH.fillStyle=Q}else{AH.fillStyle=w.get("color")}AD();if(O["line-through"]){N(-AF.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AF,d,z,a,h,AG,x){var I=(d===null);if(I){d=h.alt}var f=AF.viewBox;var K=z.computedFontSize||(z.computedFontSize=new Cufon.CSS.Size(C(AG,z.get("fontSize"))+"px",AF.baseSize));var w=z.computedLSpacing;if(w==undefined){w=z.get("letterSpacing");z.computedLSpacing=w=(w=="normal")?0:~~K.convertFrom(A(AG,w))}var W,L;if(I){W=h;L=h.firstChild}else{W=document.createElement("span");W.className="cufon cufon-vml";W.alt=d;L=document.createElement("span");L.className="cufon-vml-canvas";W.appendChild(L);if(a.printable){var AC=document.createElement("span");AC.className="cufon-alt";AC.appendChild(document.createTextNode(d));W.appendChild(AC)}if(!x){W.appendChild(document.createElement("cvml:shape"))}}var AL=W.style;var r=L.style;var G=K.convert(f.height),AI=Math.ceil(G);var v=AI/G;var q=v*Cufon.CSS.fontStretch(z.get("fontStretch"));var u=f.minX,t=f.minY;r.height=AI;r.top=Math.round(K.convert(t-AF.ascent));r.left=Math.round(K.convert(u));AL.height=K.convert(AF.height)+"px";var P=a.enableTextDecoration?Cufon.CSS.textDecoration(AG,z):{};var c=z.get("color");var AK=Cufon.CSS.textTransform(d,z).split(""),V;var J=AF.glyphs,b,M,AB;var F=0,m=[],s=0,R;var T,e=a.textShadow;for(var AE=0,AD=0,AA=AK.length;AE<AA;++AE){b=J[V=AK[AE]]||AF.missingGlyph;if(!b){continue}if(M){F-=AB=M[V]||0;m[AD-1]-=AB}F+=R=m[AD++]=~~(b.w||AF.w)+w;M=b.k}if(R===undefined){return null}var U=-u+F+(f.width-R);var AJ=K.convert(U*q),y=Math.round(AJ);var p=U+","+f.height,H;var g="r"+p+"ns";var S=a.textGradient&&D(a.textGradient);for(AE=0,AD=0;AE<AA;++AE){b=J[AK[AE]]||AF.missingGlyph;if(!b){continue}if(I){T=L.childNodes[AD];while(T.firstChild){T.removeChild(T.firstChild)}}else{T=document.createElement("cvml:shape");L.appendChild(T)}T.stroked="f";T.coordsize=p;T.coordorigin=H=(u-s)+","+t;T.path=(b.d?"m"+b.d+"xe":"")+"m"+H+g;T.fillcolor=c;if(S){T.appendChild(S.cloneNode(false))}var AH=T.style;AH.width=y;AH.height=AI;if(e){var O=e[0],N=e[1];var Z=Cufon.CSS.color(O.color),X;var o=document.createElement("cvml:shadow");o.on="t";o.color=Z.color;o.offset=O.offX+","+O.offY;if(N){X=Cufon.CSS.color(N.color);o.type="double";o.color2=X.color;o.offset2=N.offX+","+N.offY}o.opacity=Z.opacity||(X&&X.opacity)||1;T.appendChild(o)}s+=m[AD++]}var n=T.nextSibling,Q,Y;if(a.forceHitArea){if(!n){n=document.createElement("cvml:rect");n.stroked="f";n.className="cufon-vml-cover";Q=document.createElement("cvml:fill");Q.opacity=0;n.appendChild(Q);L.appendChild(n)}Y=n.style;Y.width=y;Y.height=AI}else{if(n){L.removeChild(n)}}AL.width=Math.max(Math.ceil(K.convert(F*q)),0);return W}})());
Cufon.registerFont({"w":199,"face":{"font-family":"Century Gothic","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-11 -281 329 79","underline-thickness":"20.918","underline-position":"-24.2578","unicode-range":"U+0020-U+00E8"},"glyphs":{" ":{"w":99},"!":{"d":"66,-265r0,200r-26,0r0,-200r26,0xm53,-39v6,0,11,3,15,7v4,4,7,9,7,15v0,6,-3,12,-7,16v-4,4,-9,6,-15,6v-6,0,-11,-2,-15,-6v-4,-4,-7,-10,-7,-16v0,-6,3,-11,7,-15v4,-4,9,-7,15,-7","w":106},"\"":{"d":"99,-184r-18,0r-4,-81r26,0xm31,-184r-19,0r-4,-81r26,0","w":111},"#":{"d":"217,-106r0,19r-44,0r-13,87r-19,0r12,-87r-58,0r-13,87r-20,0r14,-87r-44,0r0,-19r47,0r9,-59r-45,0r0,-19r47,0r13,-82r18,0r-11,82r58,0r12,-82r20,0r-13,82r40,0r0,19r-42,0r-9,59r41,0xm165,-165r-58,0r-9,59r58,0","w":259},"$":{"d":"93,-277r23,0r0,19v11,2,22,7,30,12v8,5,15,13,23,24r-19,15v-9,-14,-20,-22,-34,-25r0,87v31,16,50,30,58,40v10,13,14,26,14,42v0,13,-4,25,-11,36v-7,11,-16,19,-28,25v-8,4,-19,6,-33,8r0,55r-23,0r0,-55v-14,-1,-25,-4,-34,-7v-9,-3,-18,-8,-26,-15v-8,-7,-14,-15,-20,-24r18,-14v16,22,37,34,62,36r0,-109v-18,-9,-30,-15,-35,-18v-10,-7,-17,-15,-22,-23v-5,-8,-7,-18,-7,-29v0,-11,3,-20,8,-29v5,-9,12,-16,21,-22v9,-6,21,-10,35,-11r0,-18xm93,-234v-9,1,-16,3,-21,6v-5,3,-10,8,-13,13v-3,5,-4,11,-4,18v0,8,2,15,7,21v7,8,17,16,31,22r0,-80xm116,-19v14,-2,26,-7,34,-15v8,-8,13,-18,13,-28v0,-10,-3,-19,-10,-28v-7,-9,-19,-17,-37,-27r0,98"},"%":{"d":"243,-270r-189,288r-23,0r171,-262v-20,5,-45,7,-74,7r-9,0v7,10,11,21,11,32v0,16,-6,30,-17,43v-11,13,-26,19,-45,19v-17,0,-31,-6,-43,-18v-12,-12,-17,-26,-17,-43v0,-11,3,-21,8,-30v5,-9,12,-17,22,-23v10,-6,20,-8,30,-8v4,0,12,1,22,3v15,3,31,5,49,5v13,0,26,-1,38,-3v12,-2,26,-5,45,-10r21,0xm69,-243v-11,0,-19,4,-27,12v-8,8,-12,16,-12,27v0,11,4,19,12,27v8,8,16,11,27,11v11,0,19,-3,27,-11v8,-8,12,-16,12,-27v0,-11,-4,-19,-12,-27v-8,-8,-16,-12,-27,-12xm210,-114v17,0,31,6,43,18v12,12,18,26,18,43v0,17,-6,31,-18,43v-12,12,-26,18,-43,18v-17,0,-31,-6,-43,-18v-12,-12,-18,-26,-18,-43v0,-17,6,-31,18,-43v12,-12,26,-18,43,-18xm210,-92v-11,0,-19,3,-27,11v-8,8,-11,17,-11,28v0,11,3,19,11,27v8,8,16,11,27,11v11,0,19,-3,27,-11v8,-8,12,-16,12,-27v0,-11,-4,-20,-12,-28v-8,-8,-16,-11,-27,-11","w":278},"&":{"d":"227,-96r18,19v-11,10,-22,19,-31,26r26,26v9,9,17,17,23,25r-36,0r-33,-35v-22,17,-41,29,-54,34v-13,5,-27,8,-42,8v-20,0,-36,-7,-48,-18v-12,-11,-19,-25,-19,-42v0,-13,5,-26,13,-39v8,-13,25,-29,50,-49v-14,-17,-24,-30,-28,-38v-4,-8,-6,-16,-6,-23v0,-13,5,-24,15,-32v11,-10,26,-15,43,-15v11,0,20,2,29,6v9,4,16,11,21,18v5,7,7,15,7,23v0,9,-3,18,-9,28v-6,10,-18,22,-36,37r39,41r27,27v19,-16,19,-16,31,-27xm114,-156v13,-10,22,-20,28,-29v4,-7,7,-12,7,-17v0,-6,-3,-12,-9,-16v-6,-4,-13,-6,-23,-6v-9,0,-16,2,-22,6v-6,4,-9,10,-9,16v0,5,1,9,3,13v6,10,15,21,25,33xm111,-122v-22,17,-36,30,-43,40v-7,10,-11,19,-11,27v0,10,5,18,13,26v8,8,18,11,30,11v9,0,18,-1,27,-5v14,-6,30,-17,49,-30r-42,-43v-11,-11,-10,-11,-23,-26","w":272},"'":{"d":"45,-184r-18,0r-4,-81r26,0","w":71},"(":{"d":"83,-270r28,0v-11,24,-21,51,-28,82v-7,31,-10,65,-10,98v0,31,3,60,8,89v5,29,12,54,21,76r-27,0v-9,-21,-15,-46,-20,-74v-5,-28,-8,-57,-8,-88v0,-33,3,-65,9,-96v6,-31,15,-60,27,-87","w":132},")":{"d":"50,75r-28,0v12,-24,20,-52,27,-83v7,-31,11,-64,11,-97v0,-31,-3,-60,-8,-89v-5,-29,-13,-54,-22,-76r27,0v9,21,16,46,21,74v5,28,8,57,8,88v0,33,-3,65,-9,96v-6,31,-15,60,-27,87","w":132},"*":{"d":"65,-265r23,0r-5,52r43,-31r11,20r-48,22r48,21r-11,20r-43,-30r5,52r-23,0r5,-52r-43,30r-12,-20r50,-21r-50,-22r12,-20r43,31","w":152},"+":{"d":"97,-141r0,-77r24,0r0,77r77,0r0,24r-77,0r0,76r-24,0r0,-76r-77,0r0,-24r77,0","w":218},",":{"d":"52,-47r24,11r-36,66r-18,-7","w":99},"-":{"d":"11,-108r97,0r0,22r-97,0r0,-22","w":119},"\u00ad":{"d":"11,-108r97,0r0,22r-97,0r0,-22","w":119},".":{"d":"54,-39v6,0,12,3,16,7v4,4,6,9,6,15v0,6,-2,12,-6,16v-4,4,-10,6,-16,6v-6,0,-11,-2,-15,-6v-4,-4,-6,-10,-6,-16v0,-6,2,-11,6,-15v4,-4,9,-7,15,-7","w":99},"\/":{"d":"147,-265r-107,300r-27,0r107,-300r27,0","w":157},"0":{"d":"11,-129v0,-34,4,-60,11,-79v7,-19,18,-33,31,-43v13,-10,28,-14,45,-14v17,0,32,4,46,14v14,10,24,25,32,44v8,19,12,45,12,78v0,32,-4,58,-12,77v-8,19,-18,34,-32,44v-14,10,-29,15,-46,15v-17,0,-31,-6,-44,-15v-13,-9,-24,-23,-31,-42v-7,-19,-12,-45,-12,-79xm36,-129v0,29,3,52,8,67v5,15,13,26,23,34v10,8,21,11,32,11v11,0,22,-3,32,-11v10,-8,18,-19,23,-34v6,-18,10,-41,10,-67v0,-26,-3,-47,-9,-64v-6,-17,-14,-28,-24,-36v-10,-8,-21,-11,-32,-11v-11,0,-22,3,-32,11v-10,8,-18,19,-23,34v-5,15,-8,37,-8,66"},"1":{"d":"67,-259r50,0r0,259r-25,0r0,-233r-41,0"},"2":{"d":"42,-178r-25,0v1,-26,9,-46,25,-62v16,-16,37,-25,61,-25v24,0,43,8,58,23v15,15,22,33,22,54v0,15,-4,28,-11,41v-7,13,-21,31,-41,53r-64,69r119,0r0,25r-175,0r99,-107v20,-21,33,-37,39,-47v6,-10,9,-22,9,-33v0,-15,-6,-28,-17,-38v-11,-10,-23,-15,-39,-15v-17,0,-31,5,-42,16v-11,11,-16,26,-18,46"},"3":{"d":"48,-199r-27,0v5,-21,14,-38,28,-49v14,-11,29,-17,48,-17v13,0,26,3,38,9v12,6,21,15,27,25v6,10,9,22,9,33v0,22,-11,40,-33,53v12,5,23,12,31,22v11,14,17,29,17,46v0,15,-4,29,-12,42v-8,13,-19,24,-32,31v-13,7,-27,11,-44,11v-22,0,-41,-7,-56,-20v-15,-13,-24,-31,-29,-56r25,0v4,17,11,28,19,36v11,9,24,14,41,14v19,0,34,-6,45,-17v11,-11,17,-24,17,-39v0,-10,-2,-19,-8,-28v-6,-9,-13,-16,-23,-20v-10,-4,-25,-7,-45,-8r0,-24v12,0,23,-2,33,-6v10,-4,17,-10,21,-16v4,-6,6,-13,6,-21v0,-11,-4,-22,-13,-30v-9,-8,-20,-12,-34,-12v-11,0,-21,3,-29,9v-8,6,-14,17,-20,32"},"4":{"d":"153,-265r6,0r0,180r31,0r0,25r-31,0r0,60r-26,0r0,-60r-124,0xm133,-85r0,-108r-76,108r76,0"},"5":{"d":"177,-259r0,25r-92,0r-13,71v11,-3,21,-5,30,-5v24,0,44,7,59,23v15,16,23,36,23,61v0,17,-4,33,-12,47v-8,14,-19,24,-32,32v-13,8,-28,12,-46,12v-21,0,-40,-7,-54,-20v-14,-13,-22,-30,-25,-50r26,0v2,10,5,19,10,25v5,6,11,11,19,15v8,4,16,5,25,5v17,0,32,-6,44,-19v12,-13,18,-29,18,-48v0,-17,-5,-32,-16,-43v-11,-11,-26,-16,-44,-16v-15,0,-34,5,-56,14r24,-129r112,0"},"6":{"d":"132,-265r21,14r-70,106v9,-3,19,-5,27,-5v21,0,38,7,52,22v14,15,22,33,22,55v0,15,-4,28,-11,40v-7,12,-16,22,-29,29v-13,7,-26,11,-41,11v-14,0,-28,-4,-40,-11v-12,-7,-21,-17,-28,-29v-7,-12,-11,-26,-11,-40v0,-11,3,-21,7,-33v4,-12,12,-26,23,-42xm104,-127v-15,0,-28,4,-39,15v-11,11,-16,24,-16,39v0,15,5,27,16,38v11,11,24,16,39,16v15,0,27,-5,38,-16v11,-11,16,-23,16,-38v0,-15,-5,-28,-16,-39v-11,-11,-23,-15,-38,-15"},"7":{"d":"26,-259r164,0r-138,266r-22,-11r120,-230r-124,0r0,-25"},"8":{"d":"138,-142v17,9,30,19,38,30v8,11,11,24,11,38v0,20,-6,38,-19,53v-16,19,-39,28,-69,28v-29,0,-50,-9,-65,-25v-15,-16,-22,-34,-22,-54v0,-14,4,-27,12,-39v8,-12,20,-22,38,-31v-13,-7,-22,-14,-28,-24v-6,-10,-10,-21,-10,-32v0,-11,4,-22,11,-33v7,-11,15,-19,27,-25v12,-6,25,-9,39,-9v13,0,27,3,38,9v11,6,19,15,26,26v7,11,10,21,10,33v0,12,-3,22,-9,31v-6,9,-16,17,-28,24xm100,-240v-14,0,-26,5,-35,13v-9,8,-14,18,-14,30v0,11,5,22,15,31v10,9,22,14,35,14v9,0,16,-3,24,-7v8,-4,14,-10,18,-17v4,-7,6,-15,6,-22v0,-10,-4,-20,-12,-29v-8,-9,-21,-13,-37,-13xm101,-129v-18,0,-33,5,-45,17v-12,12,-18,26,-18,41v0,9,3,19,8,27v5,8,13,14,22,19v9,5,20,7,32,7v19,0,34,-6,45,-17v11,-11,16,-24,16,-39v0,-14,-5,-27,-17,-38v-12,-11,-26,-17,-43,-17"},"9":{"d":"69,7r-21,-14r70,-106v-9,3,-19,5,-27,5v-21,0,-38,-8,-52,-23v-14,-15,-21,-32,-21,-54v0,-15,3,-29,10,-41v7,-12,16,-21,29,-28v13,-7,26,-11,41,-11v14,0,28,3,40,10v12,7,21,17,28,29v7,12,11,26,11,40v0,11,-3,22,-7,34v-4,12,-12,26,-23,42xm97,-131v15,0,28,-5,39,-16v11,-11,16,-23,16,-38v0,-15,-5,-28,-16,-39v-11,-11,-24,-16,-39,-16v-15,0,-27,5,-38,16v-11,11,-16,24,-16,39v0,15,5,27,16,38v11,11,23,16,38,16"},":":{"d":"54,-196v6,0,12,2,16,6v4,4,6,10,6,16v0,6,-2,11,-6,15v-4,4,-10,6,-16,6v-6,0,-11,-2,-15,-6v-4,-4,-6,-9,-6,-15v0,-6,2,-12,6,-16v4,-4,9,-6,15,-6xm54,-39v6,0,12,3,16,7v4,4,6,9,6,15v0,6,-2,12,-6,16v-4,4,-10,6,-16,6v-6,0,-11,-2,-15,-6v-4,-4,-6,-10,-6,-16v0,-6,2,-11,6,-15v4,-4,9,-7,15,-7","w":99},";":{"d":"54,-196v6,0,12,2,16,6v4,4,6,10,6,16v0,6,-2,11,-6,15v-4,4,-10,6,-16,6v-6,0,-11,-2,-15,-6v-4,-4,-6,-9,-6,-15v0,-6,2,-12,6,-16v4,-4,9,-6,15,-6xm52,-47r24,11r-36,66r-18,-7","w":99},"\u037e":{"d":"54,-196v6,0,12,2,16,6v4,4,6,10,6,16v0,6,-2,11,-6,15v-4,4,-10,6,-16,6v-6,0,-11,-2,-15,-6v-4,-4,-6,-9,-6,-15v0,-6,2,-12,6,-16v4,-4,9,-6,15,-6xm52,-47r24,11r-36,66r-18,-7","w":99},"<":{"d":"200,-61r0,26r-182,-83r0,-23r182,-82r0,25r-148,69","w":218},"=":{"d":"198,-180r0,24r-178,0r0,-24r178,0xm198,-103r0,24r-178,0r0,-24r178,0","w":218},">":{"d":"18,-61r148,-68r-148,-69r0,-25r182,82r0,23r-182,83r0,-26","w":218},"?":{"d":"55,-188r-25,0v0,-24,7,-42,21,-56v14,-14,33,-21,56,-21v23,0,41,5,54,17v13,12,20,27,20,44v0,8,-2,15,-6,22v-4,7,-9,13,-16,19v-7,6,-20,12,-38,19v-23,9,-37,17,-42,21v-5,5,-7,10,-7,16v0,7,3,13,10,18v7,5,15,8,26,8v12,0,20,-2,26,-8v6,-6,11,-16,12,-29r26,0v-1,20,-8,35,-19,46v-11,11,-26,16,-45,16v-19,0,-35,-5,-46,-15v-11,-10,-16,-22,-16,-36v0,-7,1,-14,4,-20v3,-6,7,-12,13,-16v6,-4,16,-10,32,-16v25,-10,42,-18,49,-23v7,-5,11,-12,11,-22v0,-10,-4,-19,-13,-26v-9,-7,-21,-10,-35,-10v-18,0,-31,5,-41,17v-7,8,-11,20,-11,35xm107,-39v6,0,11,3,15,7v4,4,6,9,6,15v0,6,-2,12,-6,16v-4,4,-9,6,-15,6v-6,0,-12,-2,-16,-6v-4,-4,-6,-10,-6,-16v0,-6,2,-11,6,-15v4,-4,10,-7,16,-7","w":212},"@":{"d":"254,-53r18,0v-16,20,-30,33,-43,41v-19,11,-41,17,-65,17v-26,0,-49,-6,-71,-18v-22,-12,-39,-29,-51,-50v-12,-21,-18,-44,-18,-69v0,-25,6,-48,18,-70v12,-22,29,-39,50,-51v21,-12,45,-18,70,-18v35,0,65,11,89,34v24,23,37,49,37,79v0,22,-5,41,-15,57v-10,16,-24,28,-41,37v-13,7,-25,10,-34,10v-7,0,-13,-1,-17,-5v-3,-3,-4,-7,-4,-14v-4,5,-10,10,-17,13v-7,3,-13,5,-21,5v-17,0,-31,-6,-42,-18v-11,-12,-17,-27,-17,-46v0,-21,7,-40,20,-57v13,-17,32,-26,55,-26v10,0,19,2,26,6v7,4,14,10,20,20r5,-24r19,0r-21,115v-1,4,-1,6,-1,7v0,3,1,5,3,7v2,2,3,2,6,2v7,0,16,-4,27,-12v11,-8,20,-18,26,-31v6,-13,9,-27,9,-42v0,-30,-11,-54,-34,-74v-22,-18,-48,-27,-79,-27v-23,0,-44,5,-63,15v-19,10,-33,26,-44,45v-11,19,-16,40,-16,62v0,22,5,43,16,62v11,19,26,33,45,44v19,11,41,16,64,16v17,0,32,-3,46,-9v14,-6,29,-17,45,-33xm147,-75v8,0,15,-3,22,-8v7,-5,12,-11,16,-21v5,-13,8,-26,8,-39v0,-12,-3,-22,-10,-29v-7,-7,-15,-11,-26,-11v-14,0,-26,6,-36,18v-10,12,-16,26,-16,43v0,14,4,26,12,34v8,8,18,13,30,13","w":312},"A":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0","w":266},"B":{"d":"32,-259r51,0v21,0,36,3,47,8v11,5,21,12,27,22v6,10,9,22,9,34v0,11,-2,22,-8,31v-6,9,-14,17,-25,23v13,5,24,10,31,16v7,6,13,13,17,22v4,9,6,19,6,29v0,21,-8,38,-23,52v-15,14,-35,22,-61,22r-71,0r0,-259xm57,-233r0,83r15,0v18,0,32,-2,40,-5v8,-3,15,-9,20,-16v5,-7,7,-15,7,-24v0,-12,-4,-21,-12,-28v-8,-7,-22,-10,-40,-10r-30,0xm57,-124r0,99r32,0v19,0,33,-2,42,-6v9,-4,16,-9,21,-17v5,-8,8,-17,8,-26v0,-11,-3,-21,-11,-30v-8,-9,-18,-14,-31,-17v-9,-2,-24,-3,-46,-3r-15,0","w":206},"C":{"d":"272,-211r-20,16v-11,-15,-25,-25,-41,-33v-16,-8,-33,-12,-52,-12v-21,0,-39,5,-57,15v-18,10,-31,23,-41,40v-10,17,-14,36,-14,57v0,32,10,57,32,78v22,21,49,32,82,32v36,0,67,-14,91,-42r20,15v-13,16,-29,29,-48,38v-19,9,-41,14,-65,14v-45,0,-81,-16,-107,-46v-22,-25,-32,-56,-32,-92v0,-38,12,-69,39,-95v27,-26,60,-39,100,-39v24,0,46,4,65,14v19,10,36,23,48,40","w":292},"D":{"d":"31,0r0,-259r54,0v39,0,67,4,84,10v25,9,45,23,59,45v14,22,21,48,21,78v0,26,-6,48,-17,68v-11,20,-25,35,-43,44v-18,9,-43,14,-75,14r-83,0xm56,-24r30,0v36,0,60,-3,74,-7v19,-6,35,-18,46,-34v11,-16,17,-37,17,-61v0,-25,-6,-46,-18,-64v-12,-18,-28,-29,-50,-36v-16,-5,-43,-7,-80,-7r-19,0r0,209","w":267},"E":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259","w":193},"F":{"d":"31,-259r130,0r0,26r-104,0r0,81r104,0r0,25r-104,0r0,127r-26,0r0,-259","w":174},"G":{"d":"281,-215r-20,19v-14,-14,-31,-25,-48,-32v-17,-7,-34,-11,-50,-11v-20,0,-40,5,-58,15v-18,10,-32,23,-42,40v-10,17,-15,35,-15,54v0,19,5,38,15,56v10,18,26,31,44,41v18,10,38,15,60,15v27,0,49,-8,67,-23v18,-15,30,-34,33,-58r-82,0r0,-25r111,0v0,40,-12,72,-35,95v-23,23,-56,36,-95,36v-48,0,-85,-16,-113,-49v-21,-25,-32,-54,-32,-87v0,-24,6,-48,18,-69v12,-21,30,-37,51,-49v21,-12,45,-18,72,-18v22,0,43,4,62,12v19,8,39,21,57,38","w":313},"H":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259","w":245},"I":{"d":"28,-259r26,0r0,259r-26,0r0,-259","w":81},"J":{"d":"116,-259r26,0r0,175v0,27,-2,46,-6,56v-4,10,-11,19,-21,25v-10,6,-21,10,-35,10v-10,0,-21,-3,-31,-7v-10,-4,-22,-11,-34,-21r14,-20v13,9,24,16,33,20v6,3,12,3,18,3v7,0,14,-2,20,-6v6,-4,10,-11,12,-18v2,-7,4,-22,4,-43r0,-174","w":173},"K":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259","w":212},"L":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259","w":166},"M":{"d":"20,0r36,-259r5,0r105,213r104,-213r4,0r37,259r-25,0r-26,-185r-91,185r-7,0r-92,-186r-25,186r-25,0","w":330},"N":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0","w":266},"O":{"d":"155,-265v39,0,72,13,98,39v26,26,39,59,39,97v0,38,-13,70,-39,96v-26,26,-58,40,-96,40v-38,0,-71,-14,-97,-40v-26,-26,-40,-58,-40,-95v0,-25,6,-48,18,-69v12,-21,28,-38,49,-50v21,-12,44,-18,68,-18xm156,-240v-19,0,-37,5,-54,15v-17,10,-30,23,-40,40v-10,17,-15,36,-15,57v0,31,11,57,32,78v21,21,47,31,77,31v20,0,39,-4,56,-14v17,-10,29,-23,39,-40v10,-17,15,-35,15,-56v0,-21,-5,-39,-15,-56v-10,-17,-23,-30,-40,-40v-17,-10,-36,-15,-55,-15","w":312},"P":{"d":"31,-259r52,0v30,0,50,1,60,4v15,4,27,12,36,23v9,11,14,25,14,42v0,17,-5,32,-14,43v-9,11,-22,19,-38,23v-12,3,-33,4,-65,4r-19,0r0,120r-26,0r0,-259xm57,-233r0,87r44,1v18,0,31,-2,39,-5v8,-3,14,-8,19,-15v5,-7,7,-16,7,-25v0,-9,-2,-16,-7,-23v-5,-7,-10,-13,-18,-16v-8,-3,-21,-4,-38,-4r-46,0","w":213},"Q":{"d":"248,-28r39,48r-32,0r-26,-33v-21,13,-46,20,-72,20v-38,0,-71,-14,-97,-40v-26,-26,-39,-58,-39,-95v0,-25,6,-48,18,-69v12,-21,28,-38,49,-50v21,-12,43,-18,68,-18v38,0,71,13,97,39v26,26,40,59,40,97v0,20,-4,37,-11,54v-7,17,-19,33,-34,47xm232,-48v22,-22,34,-49,34,-81v0,-21,-4,-39,-14,-56v-10,-17,-24,-30,-41,-40v-17,-10,-35,-15,-54,-15v-19,0,-38,5,-55,15v-17,10,-30,23,-40,40v-10,17,-15,36,-15,57v0,31,11,57,32,78v21,21,47,31,77,31v21,0,39,-5,56,-15r-57,-73r31,0","w":313},"R":{"d":"33,-259r51,0v29,0,49,2,59,4v15,4,27,11,37,23v10,12,15,25,15,42v0,14,-3,26,-10,37v-7,11,-17,19,-29,24v-12,5,-29,9,-51,9r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259xm59,-233r0,88r44,0v17,0,30,-2,38,-5v8,-3,15,-9,20,-16v5,-7,7,-15,7,-24v0,-9,-2,-16,-7,-23v-5,-7,-11,-13,-19,-16v-8,-3,-20,-4,-38,-4r-45,0","w":218},"S":{"d":"5,-48r22,-13v15,28,33,42,53,42v9,0,17,-2,25,-6v8,-4,13,-9,17,-16v4,-7,6,-14,6,-22v0,-9,-3,-17,-9,-25v-8,-11,-23,-26,-44,-42v-22,-16,-35,-28,-40,-35v-9,-12,-14,-25,-14,-39v0,-11,3,-22,8,-31v5,-9,13,-17,23,-22v10,-5,21,-8,32,-8v12,0,23,3,34,9v11,6,22,17,34,33r-21,16v-10,-13,-18,-21,-25,-25v-7,-4,-15,-6,-23,-6v-10,0,-18,3,-25,9v-7,6,-10,15,-10,24v0,6,1,11,3,16v2,5,7,11,13,17v3,3,15,12,34,26v22,17,38,31,46,44v8,13,12,26,12,39v0,19,-7,35,-21,49v-14,14,-32,21,-52,21v-16,0,-30,-5,-43,-13v-13,-8,-24,-22,-35,-42","w":179},"T":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0","w":153},"U":{"d":"32,-259r26,0r0,157v0,19,0,29,1,34v1,10,4,19,9,26v5,7,12,12,22,17v10,5,19,7,29,7v9,0,17,-2,25,-6v8,-4,14,-9,19,-15v5,-6,10,-14,12,-23v2,-7,3,-20,3,-40r0,-157r26,0r0,157v0,23,-2,42,-7,56v-5,14,-13,26,-27,37v-14,11,-30,16,-49,16v-21,0,-39,-5,-54,-15v-15,-10,-25,-24,-30,-40v-3,-10,-5,-28,-5,-54r0,-157","w":235},"V":{"d":"12,-259r28,0r86,200r87,-200r28,0r-113,259r-5,0","w":252},"W":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0","w":345},"X":{"d":"18,-259r30,0r62,101r62,-101r30,0r-77,126r82,133r-30,0r-67,-108r-68,108r-30,0r83,-133","w":219},"Y":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124","w":213},"Z":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0","w":172},"[":{"d":"51,-265r59,0r0,25r-34,0r0,286r34,0r0,24r-59,0r0,-335","w":126},"\\":{"d":"39,-265r167,300r-27,0r-167,-300r27,0","w":217},"]":{"d":"75,70r-59,0r0,-25r35,0r0,-286r-35,0r0,-24r59,0r0,335","w":126},"^":{"d":"111,-259r20,0r90,195r-23,0r-78,-168r-76,168r-23,0","w":241},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18","w":180},"`":{"d":"57,-281r39,54r-25,0r-51,-54r37,0","w":136},"a":{"d":"218,-191r0,191r-24,0r0,-33v-10,13,-22,22,-35,28v-13,6,-27,10,-42,10v-27,0,-50,-10,-69,-30v-19,-20,-29,-43,-29,-71v0,-28,10,-51,29,-71v19,-20,43,-29,70,-29v16,0,29,3,42,10v13,7,24,17,34,30r0,-35r24,0xm120,-172v-14,0,-26,3,-38,10v-12,7,-21,16,-28,28v-7,12,-10,25,-10,39v0,13,3,26,10,38v7,12,16,22,28,29v12,7,24,10,37,10v13,0,27,-3,39,-10v12,-7,21,-15,28,-27v7,-12,9,-25,9,-40v0,-22,-7,-40,-22,-55v-15,-15,-32,-22,-53,-22","w":245},"b":{"d":"29,0r0,-265r24,0r0,107v10,-13,22,-23,35,-29v13,-6,27,-9,42,-9v27,0,50,9,69,29v19,20,29,44,29,72v0,28,-10,51,-29,71v-19,20,-43,29,-70,29v-16,0,-29,-3,-42,-10v-13,-7,-24,-17,-34,-30r0,35r-24,0xm127,-19v14,0,26,-3,38,-10v12,-7,21,-16,28,-28v7,-12,10,-25,10,-39v0,-14,-3,-27,-10,-39v-7,-12,-16,-22,-28,-29v-12,-7,-24,-10,-37,-10v-13,0,-27,3,-39,10v-12,7,-21,16,-28,28v-7,12,-9,24,-9,39v0,22,7,41,22,56v15,15,32,22,53,22","w":245},"c":{"d":"213,-152r-19,13v-17,-22,-41,-34,-70,-34v-23,0,-43,8,-58,23v-15,15,-23,33,-23,54v0,14,4,28,11,40v7,12,17,21,29,28v12,7,27,10,42,10v28,0,51,-11,69,-33r19,13v-9,14,-22,24,-37,32v-15,8,-32,11,-52,11v-30,0,-56,-10,-76,-29v-20,-19,-30,-42,-30,-70v0,-19,5,-36,14,-52v9,-16,23,-28,39,-37v16,-9,35,-13,55,-13v13,0,24,2,36,6v12,4,22,9,30,15v8,6,15,13,21,23","w":232},"d":{"d":"218,-265r0,265r-24,0r0,-33v-10,13,-22,22,-35,28v-13,6,-27,10,-42,10v-27,0,-50,-10,-69,-30v-19,-20,-29,-43,-29,-71v0,-28,10,-51,29,-71v19,-20,43,-29,70,-29v16,0,30,3,43,10v13,7,23,17,33,30r0,-109r24,0xm120,-172v-14,0,-26,3,-38,10v-12,7,-21,16,-28,28v-7,12,-10,25,-10,39v0,13,3,26,10,38v7,12,16,22,28,29v12,7,25,10,38,10v13,0,26,-3,38,-10v12,-7,21,-15,28,-27v7,-12,10,-25,10,-40v0,-22,-7,-40,-22,-55v-15,-15,-33,-22,-54,-22","w":246},"e":{"d":"188,-63r21,10v-7,13,-14,25,-23,33v-9,8,-19,15,-30,19v-11,4,-24,6,-38,6v-31,0,-55,-11,-73,-31v-18,-20,-27,-43,-27,-69v0,-24,8,-46,23,-65v19,-24,43,-36,75,-36v33,0,59,12,78,37v14,17,22,39,22,65r-172,0v0,22,7,41,21,55v14,14,31,21,51,21v10,0,19,-2,28,-5v9,-3,18,-7,24,-13v6,-6,12,-14,20,-27xm188,-115v-3,-13,-8,-23,-14,-31v-6,-8,-15,-14,-25,-19v-10,-5,-21,-8,-32,-8v-19,0,-36,6,-49,18v-10,9,-17,22,-22,40r142,0","w":233},"f":{"d":"106,-265r0,24v-9,-4,-17,-6,-23,-6v-5,0,-9,1,-12,3v-3,2,-5,4,-6,7v-1,3,-1,9,-1,20r0,26r40,0r0,21r-40,0r0,170r-25,0r0,-170r-25,0r0,-21r25,0r0,-30v0,-14,1,-23,4,-29v3,-6,7,-11,13,-15v6,-4,13,-5,22,-5v8,0,17,2,28,5","w":113},"g":{"d":"192,-191r25,0r0,152v0,27,-2,47,-7,59v-6,18,-18,32,-34,41v-16,9,-35,14,-57,14v-16,0,-31,-2,-44,-7v-13,-5,-24,-11,-32,-19v-8,-8,-16,-19,-23,-34r27,0v7,13,17,22,28,28v11,6,26,9,43,9v17,0,30,-3,42,-9v12,-6,20,-15,25,-24v5,-9,7,-25,7,-46r0,-9v-9,12,-21,21,-34,27v-13,6,-27,9,-42,9v-18,0,-35,-4,-50,-13v-15,-9,-28,-20,-36,-35v-8,-15,-12,-31,-12,-49v0,-18,4,-35,13,-50v9,-15,20,-27,36,-36v16,-9,32,-13,49,-13v14,0,28,3,40,9v12,6,25,15,36,29r0,-33xm120,-172v-14,0,-27,3,-39,10v-12,7,-21,16,-28,28v-7,12,-11,24,-11,38v0,21,7,38,21,52v14,14,33,21,55,21v23,0,41,-7,55,-21v14,-14,20,-31,20,-53v0,-14,-3,-28,-9,-39v-6,-11,-15,-20,-27,-27v-12,-7,-24,-9,-37,-9","w":242},"h":{"d":"27,-265r25,0r0,108v10,-13,21,-22,33,-29v12,-7,25,-10,39,-10v14,0,27,4,38,11v11,7,19,17,24,29v5,12,8,32,8,58r0,98r-24,0r0,-91v0,-22,-1,-37,-3,-44v-3,-13,-9,-23,-17,-29v-8,-6,-18,-9,-31,-9v-15,0,-28,4,-40,14v-12,10,-19,22,-23,37v-2,9,-4,27,-4,52r0,70r-25,0r0,-265","w":219},"i":{"d":"36,-270v6,0,10,2,14,6v4,4,6,8,6,14v0,6,-2,11,-6,15v-4,4,-8,6,-14,6v-6,0,-10,-2,-14,-6v-4,-4,-6,-9,-6,-15v0,-6,2,-10,6,-14v4,-4,8,-6,14,-6xm24,-191r25,0r0,191r-25,0r0,-191","w":72},"j":{"d":"37,-270v6,0,10,2,14,6v4,4,6,8,6,14v0,6,-2,11,-6,15v-4,4,-8,6,-14,6v-6,0,-11,-2,-15,-6v-4,-4,-6,-9,-6,-15v0,-6,2,-10,6,-14v4,-4,9,-6,15,-6xm24,-191r25,0r0,220v0,16,-2,28,-8,35v-6,7,-14,11,-24,11v-8,0,-18,-2,-28,-6r0,-22v7,3,13,5,18,5v7,0,11,-2,14,-8v2,-4,3,-11,3,-22r0,-213","w":73},"k":{"d":"27,-265r25,0r0,151r88,-77r37,0r-105,91r111,100r-35,0r-96,-86r0,86r-25,0r0,-265","w":180},"l":{"d":"24,-265r24,0r0,265r-24,0r0,-265","w":72},"m":{"d":"27,-191r25,0r0,33v9,-12,17,-21,26,-27v12,-8,25,-11,39,-11v9,0,19,1,27,5v8,4,15,9,20,15v5,6,10,15,14,26v8,-15,18,-26,30,-34v12,-8,26,-12,40,-12v13,0,25,3,35,10v10,7,18,16,23,28v5,12,7,30,7,54r0,104r-25,0r0,-104v0,-21,-1,-35,-4,-43v-3,-8,-8,-13,-15,-18v-7,-5,-16,-7,-26,-7v-12,0,-23,3,-33,10v-10,7,-16,16,-21,28v-5,12,-7,32,-7,59r0,75r-24,0r0,-98v0,-23,-2,-39,-5,-47v-3,-8,-8,-15,-15,-20v-7,-5,-15,-7,-25,-7v-11,0,-22,3,-32,10v-10,7,-17,16,-22,28v-5,12,-7,29,-7,53r0,81r-25,0r0,-191","w":337},"n":{"d":"27,-191r25,0r0,34v10,-13,21,-22,33,-29v12,-7,25,-10,39,-10v14,0,27,4,38,11v11,7,19,17,24,29v5,12,8,32,8,58r0,98r-24,0r0,-91v0,-22,-1,-37,-3,-44v-3,-13,-9,-23,-17,-29v-8,-6,-18,-9,-31,-9v-15,0,-28,4,-40,14v-12,10,-19,22,-23,37v-2,9,-4,27,-4,52r0,70r-25,0r0,-191","w":219},"o":{"d":"118,-196v29,0,54,11,73,32v18,19,26,42,26,69v0,27,-8,50,-27,70v-19,20,-43,30,-72,30v-29,0,-53,-10,-72,-30v-19,-20,-28,-43,-28,-70v0,-26,9,-50,27,-69v19,-21,43,-32,73,-32xm118,-172v-20,0,-38,8,-53,23v-15,15,-22,33,-22,54v0,14,3,27,10,39v7,12,17,21,28,28v11,7,23,10,37,10v14,0,26,-3,37,-10v11,-7,20,-16,27,-28v7,-12,10,-25,10,-39v0,-21,-7,-39,-22,-54v-15,-15,-32,-23,-52,-23","w":235},"p":{"d":"28,-191r24,0r0,35v10,-13,21,-23,34,-30v13,-7,26,-10,42,-10v27,0,51,9,70,29v19,20,29,43,29,71v0,28,-10,51,-29,71v-19,20,-42,30,-69,30v-15,0,-29,-4,-42,-10v-13,-6,-25,-15,-35,-28r0,103r-24,0r0,-261xm126,-172v-21,0,-39,7,-54,22v-15,15,-22,33,-22,55v0,15,3,28,10,40v7,12,16,20,28,27v12,7,26,10,39,10v13,0,25,-3,37,-10v12,-7,21,-17,28,-29v7,-12,10,-25,10,-38v0,-14,-3,-27,-10,-39v-7,-12,-16,-21,-28,-28v-12,-7,-24,-10,-38,-10","w":245},"q":{"d":"218,-191r0,261r-24,0r0,-103v-10,13,-22,22,-35,28v-13,6,-27,10,-42,10v-27,0,-51,-10,-70,-30v-19,-20,-28,-43,-28,-71v0,-28,10,-51,29,-71v19,-20,42,-29,69,-29v16,0,30,3,43,10v13,7,24,17,34,30r0,-35r24,0xm119,-172v-14,0,-26,3,-38,10v-12,7,-20,16,-27,28v-7,12,-11,25,-11,39v0,13,4,26,11,38v7,12,16,22,28,29v12,7,24,10,37,10v13,0,27,-3,39,-10v12,-7,20,-15,27,-27v7,-12,10,-25,10,-40v0,-22,-7,-40,-22,-55v-15,-15,-33,-22,-54,-22","w":245},"r":{"d":"18,-191r25,0r0,28v8,-11,16,-20,24,-25v8,-5,17,-8,26,-8v7,0,14,2,22,6r-13,21v-5,-2,-9,-3,-13,-3v-8,0,-16,3,-24,10v-8,7,-13,17,-17,31v-3,11,-5,33,-5,66r0,65r-25,0r0,-191","w":108},"s":{"d":"124,-170r-16,16v-13,-13,-26,-19,-39,-19v-8,0,-14,3,-20,8v-6,5,-9,11,-9,18v0,6,2,12,7,18v5,6,15,12,30,20v18,9,30,19,37,28v6,9,10,19,10,30v0,16,-6,29,-17,40v-11,11,-24,16,-41,16v-11,0,-22,-2,-32,-7v-10,-5,-18,-12,-25,-20r16,-18v13,14,26,22,40,22v10,0,18,-4,25,-10v7,-6,10,-13,10,-22v0,-7,-1,-13,-6,-19v-5,-5,-15,-12,-31,-20v-17,-9,-30,-18,-36,-27v-6,-9,-9,-19,-9,-30v0,-15,5,-26,15,-36v10,-10,22,-14,37,-14v18,0,36,9,54,26","w":139},"t":{"d":"49,-262r25,0r0,71r39,0r0,21r-39,0r0,170r-25,0r0,-170r-34,0r0,-21r34,0r0,-71","w":121},"u":{"d":"24,-191r25,0r0,89v0,22,2,37,4,45v4,12,10,21,20,28v10,7,21,10,35,10v14,0,25,-3,35,-10v10,-7,16,-15,20,-26v2,-7,3,-23,3,-47r0,-89r26,0r0,94v0,26,-4,46,-10,59v-6,13,-15,24,-27,32v-12,8,-28,11,-47,11v-19,0,-35,-3,-47,-11v-12,-8,-22,-18,-28,-32v-6,-14,-9,-34,-9,-61r0,-92","w":218},"v":{"d":"9,-191r27,0r63,139r64,-139r26,0r-87,191r-5,0"},"w":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0","w":299},"x":{"d":"6,-191r29,0r51,71r50,-71r30,0r-65,91r73,100r-30,0r-58,-80r-58,80r-29,0r72,-100","w":172},"y":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84","w":193},"z":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21","w":152},"{":{"d":"13,-104v7,0,14,-1,18,-4v6,-3,10,-8,13,-14v3,-6,4,-14,5,-25v0,-5,1,-19,1,-38v0,-19,1,-33,3,-41v2,-8,6,-15,11,-20v5,-5,11,-9,19,-11v5,-1,12,-2,22,-2r10,0r0,28r-5,0v-12,0,-21,2,-25,7v-4,5,-6,14,-6,29v0,27,0,44,-1,52v-2,14,-5,26,-10,34v-5,8,-14,13,-25,19v13,6,22,14,28,25v6,11,8,30,8,55v0,22,1,36,1,40v1,6,2,11,4,14v2,2,4,5,8,6v4,1,11,2,23,2r0,27r-10,0v-12,0,-21,-1,-26,-3v-8,-3,-13,-7,-18,-14v-5,-7,-9,-15,-10,-26v-1,-8,-1,-22,-1,-43v0,-22,-2,-36,-4,-44v-2,-8,-6,-14,-12,-18v-6,-4,-12,-6,-21,-6r0,-29","w":126},"|":{"d":"108,-265r25,0r0,335r-25,0r0,-335","w":241},"}":{"d":"113,-104r0,29v-7,0,-13,1,-17,4v-6,3,-10,8,-13,14v-3,6,-5,14,-6,25r0,37v0,0,-2,34,-4,42v-2,8,-6,15,-11,20v-5,5,-11,8,-19,10v-5,1,-12,2,-22,2r-10,0r0,-27r6,0v12,0,20,-3,24,-7v4,-4,6,-14,6,-29v0,-28,1,-46,2,-54v2,-14,5,-25,11,-33v6,-8,14,-15,24,-19v-14,-7,-24,-15,-29,-26v-5,-11,-8,-28,-8,-53v0,-26,0,-41,-1,-45v-1,-6,-4,-10,-8,-13v-4,-3,-11,-4,-21,-4r-6,0r0,-28r10,0v12,0,21,2,26,4v8,3,14,7,19,14v5,7,8,15,9,26v1,8,2,22,2,43v0,22,1,36,3,44v2,8,6,14,12,18v6,4,12,6,21,6","w":126},"~":{"d":"198,-147r0,28v-13,7,-22,12,-28,14v-6,2,-11,3,-16,3v-11,0,-27,-4,-47,-13v-15,-7,-25,-12,-29,-13v-4,-1,-8,-2,-12,-2v-5,0,-11,1,-17,3v-6,2,-16,8,-29,16r0,-29v13,-7,22,-11,28,-13v6,-2,11,-3,16,-3v11,0,27,5,47,14v14,7,24,10,29,12v5,2,10,2,14,2v5,0,10,-1,15,-3v5,-2,14,-7,29,-16","w":218},"\u00e8":{"d":"188,-63r21,10v-7,13,-14,25,-23,33v-9,8,-19,15,-30,19v-11,4,-24,6,-38,6v-31,0,-55,-11,-73,-31v-18,-20,-27,-43,-27,-69v0,-24,8,-46,23,-65v19,-24,43,-36,75,-36v33,0,59,12,78,37v14,17,22,39,22,65r-172,0v0,22,7,41,21,55v14,14,31,21,51,21v10,0,19,-2,28,-5v9,-3,18,-7,24,-13v6,-6,12,-14,20,-27xm188,-115v-3,-13,-8,-23,-14,-31v-6,-8,-15,-14,-25,-19v-10,-5,-21,-8,-32,-8v-19,0,-36,6,-49,18v-10,9,-17,22,-22,40r142,0xm106,-281r39,54r-25,0r-51,-54r37,0","w":233},"\u00a0":{"w":99}}});Cufon.registerFont({"w":201,"face":{"font-family":"Century Gothic","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-15 -295 317 79","underline-thickness":"32.3438","underline-position":"-16.875","unicode-range":"U+0020-U+00E8"},"glyphs":{" ":{"w":100},"!":{"d":"26,-265r49,0r0,189r-49,0r0,-189xm50,-55v8,0,16,3,22,9v6,6,9,13,9,21v0,8,-3,15,-9,21v-6,6,-14,9,-22,9v-8,0,-15,-3,-21,-9v-6,-6,-9,-13,-9,-21v0,-8,3,-15,9,-21v6,-6,13,-9,21,-9","w":100},"\"":{"d":"115,-176r-28,0r-9,-89r47,0xm43,-176r-28,0r-10,-89r47,0","w":129},"#":{"d":"195,-119r0,35r-40,0r-13,84r-35,0r12,-84r-34,0r-12,84r-35,0r12,-84r-39,0r0,-35r45,0r5,-33r-39,0r0,-35r44,0r11,-78r35,0r-11,78r33,0r12,-78r35,0r-11,78r35,0r0,35r-40,0r-5,33r35,0xm129,-152r-34,0r-4,33r33,0","w":216},"$":{"d":"183,-229r-34,33v-15,-16,-31,-24,-46,-24v-9,0,-16,3,-22,8v-6,5,-8,10,-8,16v0,5,2,11,7,16v5,5,14,11,29,17v26,11,44,19,54,27v10,8,17,17,22,28v5,11,8,22,8,35v0,13,-3,26,-9,37v-6,11,-12,20,-21,27v-9,7,-21,12,-37,15r0,47r-33,0r0,-46v-15,-2,-29,-6,-40,-12v-15,-8,-28,-18,-41,-32r34,-35v21,23,42,35,62,35v10,0,19,-4,26,-11v7,-7,11,-15,11,-25v0,-8,-2,-15,-7,-21v-5,-6,-14,-13,-28,-19v-28,-13,-46,-23,-56,-31v-10,-8,-17,-16,-22,-25v-5,-9,-8,-19,-8,-30v0,-18,7,-33,20,-46v13,-13,29,-19,49,-20r0,-18r33,0r0,20v11,3,21,6,29,11v8,5,17,12,28,23"},"%":{"d":"238,-270r35,0r-205,288r-35,0r175,-247v-11,2,-21,3,-30,4v-9,1,-17,1,-25,1v-8,0,-17,0,-26,-1v3,8,4,15,4,22v0,17,-6,32,-18,44v-12,12,-27,17,-44,17v-17,0,-32,-5,-44,-17v-12,-12,-18,-27,-18,-44v0,-11,3,-22,8,-31v5,-9,13,-16,23,-22v10,-6,19,-9,29,-9v7,0,17,1,30,4v23,5,43,8,60,8v16,0,31,-2,44,-5v13,-3,26,-6,37,-12xm69,-233v-8,0,-15,3,-21,9v-6,6,-9,13,-9,21v0,8,3,15,9,21v6,6,13,8,21,8v8,0,15,-2,21,-8v6,-6,9,-13,9,-21v0,-8,-3,-15,-9,-21v-6,-6,-13,-9,-21,-9xm240,-117v17,0,32,7,44,19v12,12,18,26,18,43v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-31,-6,-43,-18v-12,-12,-18,-27,-18,-44v0,-17,6,-31,18,-43v12,-12,26,-19,43,-19xm240,-85v-8,0,-15,3,-21,9v-6,6,-9,13,-9,21v0,8,3,15,9,21v6,6,13,9,21,9v8,0,15,-3,21,-9v6,-6,9,-13,9,-21v0,-8,-3,-15,-9,-21v-6,-6,-13,-9,-21,-9","w":309},"&":{"d":"192,-102r29,34r-13,12r-14,12r42,44r-60,0r-17,-18v-27,16,-53,25,-76,25v-20,0,-36,-6,-48,-18v-12,-12,-18,-27,-18,-45v0,-14,3,-26,10,-38v7,-12,19,-25,36,-38v-17,-22,-25,-43,-25,-60v0,-13,6,-25,17,-37v11,-12,26,-19,46,-19v20,0,36,6,47,18v11,12,16,25,16,38v0,10,-2,19,-7,28v-5,9,-17,22,-35,40v21,25,35,40,41,46v4,-3,14,-11,29,-24xm98,-159v13,-11,20,-20,20,-29v0,-4,-2,-8,-5,-11v-3,-3,-6,-4,-11,-4v-4,0,-9,2,-12,5v-3,3,-4,7,-4,11v0,8,4,17,12,28xm127,-52v-9,-9,-22,-23,-38,-44v-17,14,-26,27,-26,38v0,5,2,10,7,14v5,4,11,6,18,6v10,0,23,-5,39,-14","w":244},"'":{"d":"53,-176r-27,0r-10,-89r47,0","w":79},"(":{"d":"67,-270r61,0v-21,24,-37,49,-47,77v-10,28,-15,59,-15,94v0,38,6,72,17,101v9,22,24,47,45,73r-61,0v-19,-30,-32,-58,-39,-84v-7,-26,-12,-56,-12,-91v0,-34,4,-65,12,-91v8,-26,21,-52,39,-79","w":136},")":{"d":"70,75r-61,0v21,-24,37,-50,47,-77v10,-27,15,-58,15,-94v0,-38,-6,-72,-17,-101v-9,-22,-24,-47,-45,-73r61,0v19,30,32,58,39,84v7,26,12,56,12,91v0,34,-4,65,-12,91v-8,26,-21,52,-39,79","w":136},"*":{"d":"58,-265r45,0r-14,53r40,-38r20,39r-53,14r53,15r-23,38r-38,-38r13,53r-43,0r14,-53r-39,38r-24,-38r54,-15r-54,-15r24,-39r39,39","w":158},"+":{"d":"86,-151r0,-66r44,0r0,66r66,0r0,44r-66,0r0,66r-44,0r0,-66r-66,0r0,-44r66,0","w":216},",":{"d":"47,-49r35,18r-44,74r-24,-12","w":100},"-":{"d":"31,-118r89,0r0,45r-89,0r0,-45","w":151},"\u00ad":{"d":"31,-118r89,0r0,45r-89,0r0,-45","w":151},".":{"d":"50,-50v8,0,15,3,20,8v5,5,8,11,8,19v0,8,-3,15,-8,20v-5,5,-12,8,-20,8v-8,0,-14,-3,-19,-8v-5,-5,-8,-12,-8,-20v0,-8,3,-14,8,-19v5,-5,11,-8,19,-8","w":100},"\/":{"d":"8,46r116,-312r34,0r-116,312r-34,0","w":165},"0":{"d":"100,-265v19,0,35,5,49,14v14,9,24,23,31,42v7,19,12,46,12,80v0,34,-4,61,-12,80v-8,19,-17,33,-30,42v-13,9,-30,14,-49,14v-19,0,-36,-5,-49,-14v-13,-9,-23,-23,-31,-41v-8,-18,-11,-45,-11,-79v0,-47,7,-82,22,-103v16,-23,39,-35,68,-35xm101,-218v-8,0,-16,3,-22,8v-6,5,-12,14,-15,27v-3,13,-5,32,-5,57v0,33,4,56,12,68v8,12,18,19,30,19v12,0,22,-6,29,-18v9,-14,13,-38,13,-72v0,-34,-4,-57,-12,-70v-8,-13,-18,-19,-30,-19"},"1":{"d":"59,-259r74,0r0,259r-49,0r0,-212r-53,0"},"2":{"d":"63,-175r-48,0v1,-28,10,-50,26,-66v16,-16,38,-24,63,-24v16,0,29,3,41,10v12,7,22,17,29,29v7,12,11,25,11,38v0,15,-4,31,-13,49v-9,18,-25,39,-48,63r-29,30r92,0r0,46r-179,0r0,-24r80,-81v19,-20,32,-35,38,-47v6,-12,10,-23,10,-33v0,-10,-3,-17,-10,-24v-7,-7,-16,-10,-26,-10v-11,0,-19,4,-26,12v-7,8,-11,19,-11,32"},"3":{"d":"68,-195r-47,0v2,-19,10,-34,21,-46v16,-16,35,-24,59,-24v21,0,39,7,53,20v14,13,22,29,22,48v0,11,-4,23,-10,32v-6,9,-15,17,-27,23v16,5,28,12,37,24v9,12,13,25,13,41v0,23,-9,43,-26,59v-17,16,-39,25,-65,25v-25,0,-45,-8,-61,-23v-16,-15,-24,-36,-26,-62r48,0v2,13,7,23,14,30v7,7,17,9,28,9v11,0,20,-4,28,-11v8,-7,12,-16,12,-27v0,-12,-6,-22,-16,-30v-10,-8,-25,-12,-44,-12r0,-42v12,-1,21,-3,27,-6v6,-3,10,-6,13,-11v3,-5,5,-10,5,-15v0,-7,-2,-13,-7,-18v-5,-5,-12,-7,-20,-7v-7,0,-13,3,-19,7v-6,4,-10,9,-12,16"},"4":{"d":"119,-265r49,0r0,166r23,0r0,46r-23,0r0,53r-48,0r0,-53r-113,0r0,-46xm120,-99r0,-86r-59,86r59,0"},"5":{"d":"60,-259r121,0r0,46r-84,0r-11,47v3,-1,6,-2,9,-2v3,0,5,-1,8,-1v23,0,42,8,58,24v16,16,24,37,24,62v0,25,-9,47,-26,64v-17,17,-38,26,-63,26v-22,0,-40,-6,-56,-19v-16,-13,-27,-30,-32,-52r52,0v4,8,9,15,16,19v7,4,13,6,21,6v11,0,20,-4,28,-12v8,-8,12,-18,12,-30v0,-12,-4,-22,-11,-30v-7,-8,-16,-11,-26,-11v-5,0,-11,1,-16,4v-5,3,-10,7,-15,12r-40,-9"},"6":{"d":"104,-265r42,21r-45,88v22,0,41,7,56,23v15,16,23,36,23,59v0,22,-8,41,-24,57v-16,16,-35,24,-57,24v-23,0,-42,-9,-58,-25v-16,-16,-23,-35,-23,-56v0,-8,1,-16,3,-24v2,-8,8,-20,17,-37xm98,-110v-9,0,-17,3,-23,10v-6,7,-9,15,-9,25v0,10,3,18,10,25v7,7,13,10,22,10v9,0,17,-3,24,-10v7,-7,10,-15,10,-25v0,-10,-4,-18,-10,-25v-6,-7,-14,-10,-24,-10"},"7":{"d":"22,-259r169,0r0,26r-116,240r-42,-21r97,-198r-108,0r0,-47"},"8":{"d":"154,-140v12,8,21,17,27,29v6,12,10,24,10,38v0,15,-5,28,-12,41v-7,13,-17,23,-30,29v-13,6,-29,10,-48,10v-21,0,-37,-4,-49,-10v-12,-6,-23,-16,-30,-28v-7,-12,-11,-26,-11,-42v0,-14,3,-26,9,-37v6,-11,15,-21,27,-30v-8,-8,-14,-16,-18,-25v-4,-9,-6,-18,-6,-28v0,-13,3,-26,10,-37v7,-11,15,-20,27,-26v12,-6,26,-9,41,-9v15,0,29,3,40,9v11,6,20,16,27,27v7,11,10,24,10,37v0,9,-2,17,-5,25v-3,8,-10,17,-19,27xm99,-218v-8,0,-15,3,-20,8v-5,5,-7,13,-7,21v0,8,2,15,8,21v6,6,12,8,20,8v8,0,16,-2,21,-8v5,-6,8,-12,8,-21v0,-8,-3,-16,-8,-21v-5,-5,-13,-8,-22,-8xm101,-114v-12,0,-22,4,-30,11v-8,7,-12,16,-12,26v0,10,4,19,12,26v8,7,18,11,30,11v13,0,23,-3,30,-10v7,-7,11,-15,11,-26v0,-11,-4,-20,-12,-27v-8,-7,-17,-11,-29,-11"},"9":{"d":"97,7r-42,-21r46,-88v-22,0,-41,-8,-56,-24v-15,-16,-23,-35,-23,-58v0,-23,7,-42,23,-58v16,-16,35,-23,57,-23v23,0,43,8,59,24v16,16,23,35,23,56v0,8,-2,16,-4,24v-2,8,-7,20,-16,37xm103,-149v9,0,17,-3,23,-10v6,-7,10,-15,10,-25v0,-10,-3,-18,-10,-25v-7,-7,-14,-10,-23,-10v-9,0,-16,3,-23,10v-7,7,-10,15,-10,25v0,10,3,18,9,25v6,7,14,10,24,10"},":":{"d":"50,-196v8,0,15,3,20,8v5,5,8,11,8,19v0,8,-3,15,-8,20v-5,5,-12,8,-20,8v-8,0,-14,-3,-19,-8v-5,-5,-8,-12,-8,-20v0,-8,3,-14,8,-19v5,-5,11,-8,19,-8xm50,-50v8,0,15,3,20,8v5,5,8,11,8,19v0,8,-3,15,-8,20v-5,5,-12,8,-20,8v-8,0,-14,-3,-19,-8v-5,-5,-8,-12,-8,-20v0,-8,3,-14,8,-19v5,-5,11,-8,19,-8","w":100},";":{"d":"50,-196v8,0,15,3,20,8v5,5,8,11,8,19v0,8,-3,15,-8,20v-5,5,-12,8,-20,8v-8,0,-14,-3,-19,-8v-5,-5,-8,-12,-8,-20v0,-8,3,-14,8,-19v5,-5,11,-8,19,-8xm48,-49r33,18r-43,74r-24,-12","w":100},"\u037e":{"d":"50,-196v8,0,15,3,20,8v5,5,8,11,8,19v0,8,-3,15,-8,20v-5,5,-12,8,-20,8v-8,0,-14,-3,-19,-8v-5,-5,-8,-12,-8,-20v0,-8,3,-14,8,-19v5,-5,11,-8,19,-8xm48,-49r33,18r-43,74r-24,-12","w":100},"<":{"d":"196,-64r0,44r-176,-90r0,-39r176,-89r0,44r-125,65","w":216},"=":{"d":"20,-189r176,0r0,44r-176,0r0,-44xm20,-114r176,0r0,44r-176,0r0,-44","w":216},">":{"d":"20,-194r0,-44r176,89r0,39r-176,90r0,-44r126,-65","w":216},"?":{"d":"64,-192r-46,0v0,-23,7,-41,23,-56v16,-15,36,-22,62,-22v17,0,30,3,42,9v12,6,21,16,28,27v7,11,10,23,10,36v0,7,-1,13,-3,20v-2,7,-6,14,-11,21v-3,4,-9,10,-20,20v-10,9,-16,16,-19,20v-3,4,-4,9,-6,15v-2,6,-4,16,-4,27r-47,0r-1,-8v0,-16,3,-30,9,-43v6,-13,15,-25,28,-36v12,-11,19,-19,22,-23v3,-4,4,-8,4,-14v0,-8,-3,-14,-9,-19v-6,-5,-14,-8,-25,-8v-11,0,-20,4,-27,10v-7,6,-10,14,-10,24xm97,-55v9,0,16,2,22,8v6,6,9,14,9,22v0,8,-3,15,-9,21v-6,6,-13,9,-21,9v-8,0,-16,-3,-22,-9v-6,-6,-9,-13,-9,-21v0,-8,3,-16,9,-22v6,-6,13,-8,21,-8"},"@":{"d":"216,-53r33,0v-13,16,-24,28,-34,35v-10,7,-21,13,-34,17v-13,4,-27,6,-41,6v-25,0,-49,-7,-70,-19v-21,-12,-38,-29,-50,-50v-12,-21,-19,-44,-19,-69v0,-25,7,-47,19,-69v12,-22,29,-39,50,-51v21,-12,45,-18,70,-18v35,0,65,11,89,34v24,23,36,49,36,79v0,22,-5,41,-15,57v-10,16,-25,28,-42,37v-13,7,-24,10,-33,10v-7,0,-13,-1,-17,-5v-3,-3,-5,-7,-5,-13v-10,11,-22,17,-37,17v-17,0,-31,-6,-42,-18v-11,-12,-17,-27,-17,-47v0,-22,7,-42,21,-59v14,-17,32,-25,54,-25v9,0,18,2,25,6v7,4,13,9,18,17r4,-19r35,0r-18,103v-1,7,-2,11,-2,12v0,1,1,3,2,4v1,1,3,2,5,2v4,0,9,-3,16,-9v7,-6,13,-14,17,-25v4,-11,7,-22,7,-35v0,-19,-5,-35,-13,-50v-8,-15,-20,-26,-36,-34v-16,-8,-33,-13,-53,-13v-21,0,-40,5,-57,14v-17,9,-30,23,-40,40v-10,17,-15,36,-15,57v0,21,5,41,15,58v10,17,23,30,41,40v18,10,38,15,60,15v13,0,25,-2,36,-7v11,-5,24,-14,37,-25xm130,-92v10,0,18,-5,25,-13v7,-8,10,-17,10,-28v0,-9,-3,-17,-8,-23v-5,-6,-12,-9,-20,-9v-10,0,-19,4,-26,12v-7,8,-10,18,-10,29v0,9,3,17,8,23v5,6,12,9,21,9","w":266},"A":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0","w":266},"B":{"d":"30,0r0,-259r40,0v24,0,41,2,52,5v15,4,28,12,37,23v9,11,13,24,13,39v0,10,-2,19,-6,27v-4,8,-11,16,-20,23v16,7,27,16,34,27v7,11,11,25,11,40v0,15,-3,27,-11,39v-8,12,-17,21,-29,27v-12,6,-28,9,-49,9r-72,0xm79,-212r0,55r10,0v12,0,21,-3,27,-8v6,-5,9,-11,9,-20v0,-8,-2,-15,-8,-20v-6,-5,-15,-7,-26,-7r-12,0xm79,-113r0,66r12,0v20,0,34,-3,41,-8v7,-5,11,-12,11,-22v0,-11,-5,-21,-13,-27v-8,-6,-22,-9,-41,-9r-10,0","w":208},"C":{"d":"267,-213r-34,33v-23,-25,-50,-37,-79,-37v-25,0,-46,8,-63,25v-17,17,-25,37,-25,62v0,17,3,33,11,46v8,13,18,24,32,32v14,8,29,11,46,11v14,0,27,-3,39,-8v12,-5,25,-15,39,-29r33,35v-19,19,-37,32,-54,39v-17,7,-36,11,-58,11v-40,0,-73,-14,-99,-39v-26,-25,-38,-58,-38,-98v0,-26,5,-48,17,-68v12,-20,28,-37,50,-49v22,-12,46,-18,71,-18v21,0,41,4,61,13v20,9,37,22,51,39","w":280},"D":{"d":"30,-259r58,0v38,0,66,5,84,14v18,9,33,25,45,46v12,21,18,45,18,73v0,20,-3,38,-10,55v-7,17,-16,31,-28,42v-12,11,-23,19,-37,23v-14,4,-37,6,-71,6r-59,0r0,-259xm79,-211r0,163r23,0v22,0,39,-3,49,-8v10,-5,18,-14,24,-26v6,-12,10,-27,10,-45v0,-27,-8,-49,-23,-64v-14,-14,-36,-20,-67,-20r-16,0","w":252},"E":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259","w":187},"F":{"d":"30,-259r129,0r0,48r-80,0r0,47r80,0r0,48r-80,0r0,116r-49,0r0,-259","w":172},"G":{"d":"268,-216r-34,34v-22,-23,-48,-35,-77,-35v-25,0,-47,8,-64,25v-17,17,-26,38,-26,62v0,25,9,46,27,63v18,17,40,26,66,26v17,0,31,-3,43,-10v12,-7,21,-19,28,-34r-75,0r0,-46r130,0r1,11v0,23,-6,44,-18,64v-12,20,-26,36,-45,47v-19,11,-41,16,-66,16v-27,0,-51,-6,-72,-18v-21,-12,-38,-28,-50,-50v-12,-22,-18,-45,-18,-70v0,-34,11,-64,34,-89v27,-30,62,-45,105,-45v22,0,43,4,63,12v17,7,32,20,48,37","w":302},"H":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259","w":244},"I":{"d":"26,-259r49,0r0,259r-49,0r0,-259","w":100},"J":{"d":"94,-259r49,0r0,172v0,27,-2,46,-6,57v-4,11,-12,20,-22,27v-10,7,-22,10,-36,10v-28,0,-52,-13,-72,-38r35,-33v8,9,14,15,20,18v6,3,11,4,16,4v5,0,9,-2,12,-6v3,-4,4,-15,4,-30r0,-181","w":172},"K":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259","w":223},"L":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259","w":158},"M":{"d":"54,-259r49,0r59,181r61,-181r48,0r43,259r-47,0r-28,-163r-55,163r-44,0r-54,-163r-28,163r-48,0","w":323},"N":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259","w":266},"O":{"d":"152,-265v37,0,68,14,94,40v26,26,39,59,39,97v0,38,-12,69,-38,95v-26,26,-58,40,-95,40v-39,0,-71,-14,-97,-41v-26,-27,-38,-58,-38,-95v0,-25,6,-48,18,-69v12,-21,28,-37,49,-49v21,-12,44,-18,68,-18xm151,-217v-24,0,-44,8,-60,25v-16,17,-25,38,-25,64v0,29,10,50,31,67v16,13,34,20,55,20v23,0,44,-8,60,-25v16,-17,24,-38,24,-63v0,-25,-8,-45,-25,-62v-17,-17,-36,-26,-60,-26","w":302},"P":{"d":"29,-259r53,0v28,0,49,3,61,8v12,5,22,14,29,26v7,12,11,25,11,41v0,18,-5,33,-14,45v-9,12,-23,20,-39,25v-9,3,-26,4,-51,4r0,110r-50,0r0,-259xm79,-158r15,0v12,0,21,0,26,-2v5,-2,8,-5,11,-9v3,-4,4,-9,4,-15v0,-10,-3,-16,-11,-21v-6,-3,-17,-5,-32,-5r-13,0r0,52"},"Q":{"d":"251,-38r45,58r-58,0r-23,-29v-19,10,-40,16,-63,16v-39,0,-71,-14,-97,-41v-26,-27,-38,-58,-38,-95v0,-25,6,-47,18,-68v12,-21,28,-38,49,-50v21,-12,44,-18,68,-18v37,0,68,14,94,40v26,26,39,59,39,97v0,35,-11,65,-34,90xm221,-78v10,-15,15,-32,15,-51v0,-24,-8,-45,-25,-62v-17,-17,-36,-26,-59,-26v-24,0,-45,8,-61,25v-16,17,-25,38,-25,64v0,29,10,50,31,67v16,13,35,20,55,20v12,0,23,-2,33,-7r-46,-60r58,0","w":302},"R":{"d":"33,-259r52,0v29,0,49,3,61,8v12,5,22,13,29,25v7,12,12,26,12,42v0,17,-5,32,-13,43v-8,11,-21,20,-37,26r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259xm82,-158r16,0v16,0,26,-2,32,-6v6,-4,9,-11,9,-20v0,-6,-2,-11,-5,-15v-3,-4,-6,-7,-11,-9v-5,-2,-14,-2,-27,-2r-14,0r0,52","w":208},"S":{"d":"165,-223r-36,32v-13,-18,-26,-27,-39,-27v-6,0,-12,2,-16,5v-4,3,-6,8,-6,12v0,4,1,8,4,12v4,5,16,16,36,33v19,16,30,26,34,30v10,10,17,20,21,29v4,9,7,19,7,30v0,21,-7,39,-22,53v-15,14,-34,21,-58,21v-18,0,-34,-5,-48,-14v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v8,0,16,-3,22,-8v6,-5,8,-11,8,-17v0,-6,-2,-11,-6,-17v-4,-6,-14,-15,-29,-27v-28,-23,-46,-41,-54,-53v-8,-12,-13,-26,-13,-38v0,-18,7,-33,21,-46v14,-13,30,-19,50,-19v13,0,25,3,37,9v12,6,24,17,38,33","w":187},"T":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49","w":151},"U":{"d":"28,-259r49,0r0,168v0,14,1,24,4,30v3,6,6,11,12,15v6,4,13,5,21,5v9,0,17,-2,23,-6v6,-4,11,-9,13,-15v2,-6,3,-18,3,-35r0,-162r50,0r0,155v0,26,-2,44,-5,54v-3,10,-8,20,-16,29v-8,9,-18,16,-29,21v-11,5,-24,7,-38,7v-19,0,-34,-4,-48,-13v-14,-9,-24,-20,-30,-33v-6,-13,-9,-34,-9,-65r0,-155","w":230},"V":{"d":"10,-259r50,0r66,184r65,-184r51,0r-93,259r-48,0","w":252},"W":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0","w":323},"X":{"d":"13,-259r55,0r54,83r55,-83r55,0r-82,126r87,133r-55,0r-60,-91r-59,91r-56,0r88,-133","w":244},"Y":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112","w":223},"Z":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49","w":180},"[":{"d":"30,-265r77,0r0,45r-29,0r0,245r29,0r0,45r-77,0r0,-335","w":115},"\\":{"d":"190,46r-34,0r-116,-312r34,0","w":230},"]":{"d":"85,70r-77,0r0,-45r29,0r0,-245r-29,0r0,-45r77,0r0,335","w":115},"^":{"d":"87,-259r41,0r69,195r-43,0r-46,-132r-46,132r-43,0","w":216},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18","w":180},"`":{"d":"67,-295r42,69r-34,0r-65,-69r57,0","w":151},"a":{"d":"166,-191r47,0r0,191r-47,0r0,-20v-9,9,-20,15,-29,19v-9,4,-19,6,-30,6v-25,0,-46,-10,-64,-29v-18,-19,-28,-43,-28,-71v0,-30,10,-54,27,-73v17,-19,38,-28,63,-28v11,0,23,2,33,6v10,4,19,11,28,20r0,-21xm115,-152v-15,0,-27,6,-37,16v-10,10,-15,24,-15,40v0,17,5,30,15,41v10,11,22,16,37,16v15,0,28,-6,38,-16v10,-10,15,-24,15,-41v0,-17,-5,-30,-15,-40v-10,-10,-23,-16,-38,-16","w":237},"b":{"d":"72,-265r0,95v9,-9,18,-16,28,-20v10,-4,21,-6,32,-6v25,0,47,9,64,28v17,19,26,43,26,73v0,28,-9,52,-27,71v-18,19,-39,29,-64,29v-11,0,-22,-2,-31,-6v-9,-4,-19,-10,-28,-19r0,20r-48,0r0,-265r48,0xm122,-152v-15,0,-27,6,-37,16v-10,10,-15,23,-15,40v0,17,5,31,15,41v10,10,22,16,37,16v15,0,27,-5,37,-16v10,-11,15,-24,15,-41v0,-16,-4,-30,-14,-40v-10,-10,-23,-16,-38,-16","w":237},"c":{"d":"211,-153r-39,22v-8,-8,-16,-13,-23,-16v-7,-3,-15,-5,-25,-5v-18,0,-33,6,-44,17v-11,11,-17,24,-17,41v0,16,5,30,16,40v11,10,25,15,42,15v21,0,39,-7,51,-22r37,26v-21,27,-49,40,-86,40v-34,0,-60,-10,-79,-30v-19,-20,-29,-43,-29,-70v0,-19,5,-35,14,-51v9,-16,22,-28,39,-37v17,-9,34,-13,55,-13v19,0,36,3,51,11v15,8,27,18,37,32","w":230},"d":{"d":"166,-265r47,0r0,265r-47,0r0,-20v-9,9,-20,15,-29,19v-9,4,-19,6,-30,6v-25,0,-46,-10,-64,-29v-18,-19,-28,-43,-28,-71v0,-30,10,-54,27,-73v17,-19,38,-28,63,-28v11,0,23,2,33,6v10,4,19,11,28,20r0,-95xm115,-152v-15,0,-27,6,-37,16v-10,10,-15,24,-15,40v0,17,5,30,15,41v10,11,22,16,37,16v15,0,28,-6,38,-16v10,-10,15,-24,15,-41v0,-17,-5,-30,-15,-40v-10,-10,-23,-16,-38,-16","w":237},"e":{"d":"216,-82r-154,0v2,14,8,25,18,33v10,8,22,12,37,12v18,0,33,-6,46,-19r40,19v-10,14,-22,25,-36,32v-14,7,-31,10,-50,10v-30,0,-54,-9,-73,-28v-19,-19,-29,-44,-29,-72v0,-29,10,-53,29,-72v19,-19,42,-29,70,-29v30,0,55,10,74,29v19,19,28,44,28,76r0,9xm168,-120v-3,-11,-10,-19,-19,-26v-9,-7,-20,-10,-32,-10v-13,0,-26,4,-36,12v-6,5,-12,12,-17,24r104,0","w":230},"f":{"d":"1,-191r17,0v0,-25,1,-40,2,-45v1,-11,5,-19,13,-25v8,-6,18,-9,32,-9v10,0,21,2,34,7r0,36v-7,-2,-13,-3,-17,-3v-6,0,-10,2,-13,4v-2,2,-2,5,-2,11r-1,24r31,0r0,41r-31,0r0,150r-48,0r0,-150r-17,0r0,-41","w":100},"g":{"d":"166,-191r47,0r0,164v0,32,-6,56,-19,71v-17,21,-44,31,-79,31v-19,0,-34,-2,-47,-7v-13,-5,-24,-12,-33,-21v-9,-9,-15,-20,-19,-33r53,0v5,5,11,9,18,12v7,3,16,4,26,4v13,0,23,-2,31,-6v8,-4,14,-9,17,-15v3,-6,5,-18,5,-33v-8,8,-18,14,-27,18v-9,4,-19,6,-31,6v-26,0,-47,-9,-65,-28v-18,-19,-27,-42,-27,-70v0,-30,9,-55,28,-73v17,-17,37,-25,61,-25v11,0,21,2,31,6v10,4,20,11,30,20r0,-21xm116,-151v-15,0,-28,5,-38,15v-10,10,-14,23,-14,38v0,16,5,29,15,39v10,10,23,16,38,16v15,0,27,-5,37,-15v10,-10,14,-24,14,-40v0,-16,-5,-28,-15,-38v-10,-10,-22,-15,-37,-15","w":237},"h":{"d":"24,-265r48,0r0,93v9,-8,19,-14,28,-18v9,-4,19,-6,29,-6v19,0,35,7,48,20v11,11,17,28,17,50r0,126r-47,0r0,-84v0,-22,-2,-37,-4,-45v-2,-8,-5,-13,-10,-17v-5,-4,-11,-6,-19,-6v-10,0,-18,3,-25,9v-7,6,-12,16,-15,27v-1,6,-2,18,-2,39r0,77r-48,0r0,-265","w":216},"i":{"d":"43,-270v8,0,16,3,22,9v6,6,9,13,9,22v0,9,-3,16,-9,22v-6,6,-14,9,-22,9v-9,0,-15,-3,-21,-9v-6,-6,-10,-13,-10,-22v0,-8,3,-16,9,-22v6,-6,14,-9,22,-9xm19,-191r48,0r0,191r-48,0r0,-191","w":86},"j":{"d":"47,-270v9,0,16,3,22,9v6,6,9,13,9,22v0,9,-3,16,-9,22v-6,6,-14,9,-22,9v-9,0,-16,-3,-22,-9v-6,-6,-9,-13,-9,-22v0,-8,3,-16,9,-22v6,-6,14,-9,22,-9xm23,-191r48,0r0,197v0,18,-2,32,-6,41v-4,9,-8,16,-16,21v-8,5,-17,7,-28,7v-10,0,-22,-2,-36,-7r0,-38v8,4,14,5,20,5v6,0,10,-1,13,-5v3,-4,5,-10,5,-20r0,-201","w":93},"k":{"d":"25,-265r48,0r0,153r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-265","w":208},"l":{"d":"19,-265r48,0r0,265r-48,0r0,-265","w":86},"m":{"d":"24,-191r48,0r0,22v8,-9,17,-16,27,-20v10,-4,21,-7,33,-7v12,0,23,3,33,9v10,6,17,14,23,25v8,-11,17,-19,28,-25v11,-6,23,-9,36,-9v14,0,26,3,36,9v10,6,17,15,22,25v5,10,7,27,7,50r0,112r-48,0r0,-97v0,-22,-3,-36,-8,-44v-5,-8,-14,-12,-25,-12v-8,0,-15,2,-22,7v-7,5,-11,12,-14,20v-3,8,-5,22,-5,40r0,86r-48,0r0,-93v0,-17,-1,-29,-4,-37v-3,-8,-7,-13,-12,-17v-5,-4,-11,-6,-18,-6v-8,0,-15,3,-22,8v-7,5,-11,10,-14,19v-3,9,-5,23,-5,41r0,85r-48,0r0,-191","w":338},"n":{"d":"24,-191r48,0r0,19v11,-9,21,-15,30,-19v9,-4,18,-5,27,-5v19,0,35,7,48,20v11,11,17,28,17,50r0,126r-48,0r0,-84v0,-23,-1,-37,-3,-45v-2,-8,-5,-14,-10,-18v-5,-4,-11,-5,-19,-5v-10,0,-18,2,-25,9v-7,7,-12,16,-15,27v-1,6,-2,19,-2,39r0,77r-48,0r0,-191","w":216},"o":{"d":"114,-196v18,0,35,4,51,13v16,9,28,22,37,37v9,15,14,32,14,50v0,18,-5,35,-14,51v-9,16,-22,28,-37,37v-15,9,-32,13,-51,13v-27,0,-51,-9,-70,-29v-19,-20,-29,-43,-29,-71v0,-30,11,-55,33,-75v19,-17,41,-26,66,-26xm115,-151v-15,0,-27,6,-37,16v-10,10,-15,23,-15,39v0,17,4,31,14,41v10,10,23,15,38,15v15,0,27,-5,37,-15v10,-10,15,-25,15,-41v0,-16,-5,-30,-15,-40v-10,-10,-22,-15,-37,-15","w":230},"p":{"d":"72,-191r0,21v9,-9,18,-16,28,-20v10,-4,21,-6,32,-6v25,0,47,9,64,28v17,19,26,43,26,73v0,28,-9,52,-27,71v-18,19,-39,29,-64,29v-11,0,-22,-2,-31,-6v-9,-4,-19,-10,-28,-19r0,90r-48,0r0,-261r48,0xm122,-152v-15,0,-27,6,-37,16v-10,10,-15,23,-15,40v0,17,5,31,15,41v10,10,22,16,37,16v15,0,27,-5,37,-16v10,-11,15,-24,15,-41v0,-16,-4,-30,-14,-40v-10,-10,-23,-16,-38,-16","w":237},"q":{"d":"166,-191r47,0r0,261r-47,0r0,-90v-9,9,-20,15,-29,19v-9,4,-19,6,-30,6v-25,0,-46,-10,-64,-29v-18,-19,-28,-43,-28,-71v0,-30,10,-54,27,-73v17,-19,38,-28,63,-28v11,0,23,2,33,6v10,4,19,11,28,20r0,-21xm115,-152v-15,0,-27,6,-37,16v-10,10,-15,24,-15,40v0,17,5,30,15,41v10,11,22,16,37,16v15,0,28,-6,38,-16v10,-10,15,-24,15,-41v0,-17,-5,-30,-15,-40v-10,-10,-23,-16,-38,-16","w":237},"r":{"d":"13,-191r41,0r0,24v4,-9,11,-17,18,-22v7,-5,15,-7,24,-7v6,0,13,2,20,5r-15,41v-6,-3,-10,-4,-14,-4v-7,0,-14,5,-19,14v-5,9,-8,26,-8,53r1,10r0,77r-48,0r0,-191","w":115},"s":{"d":"141,-165r-29,30v-12,-12,-23,-18,-33,-18v-5,0,-10,2,-13,4v-3,2,-4,5,-4,8v0,3,0,5,2,7v2,2,7,5,15,9r17,9v19,9,31,19,38,28v7,9,11,20,11,33v0,17,-7,32,-19,43v-12,11,-29,17,-50,17v-28,0,-50,-11,-67,-33r30,-32v6,7,11,12,19,16v8,4,15,6,21,6v6,0,11,-2,15,-5v4,-3,6,-6,6,-10v0,-7,-7,-15,-21,-22r-16,-8v-31,-16,-47,-35,-47,-58v0,-15,6,-28,18,-39v12,-11,26,-16,44,-16v12,0,24,3,35,8v11,5,20,13,28,23","w":158},"t":{"d":"30,-262r48,0r0,71r28,0r0,41r-28,0r0,150r-48,0r0,-150r-25,0r0,-41r25,0r0,-71","w":107},"u":{"d":"24,-191r49,0r0,92v0,18,1,30,3,37v2,7,7,12,12,16v5,4,12,6,20,6v8,0,15,-1,21,-5v6,-4,9,-10,12,-17v2,-6,3,-18,3,-36r0,-93r48,0r0,81v0,33,-3,56,-8,68v-6,15,-15,27,-28,35v-13,8,-29,12,-48,12v-21,0,-38,-5,-51,-14v-13,-9,-22,-22,-27,-39v-4,-12,-6,-33,-6,-64r0,-79","w":216},"v":{"d":"4,-191r49,0r48,113r48,-113r49,0r-82,191r-31,0"},"w":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0","w":287},"x":{"d":"7,-191r56,0r37,52r38,-52r55,0r-65,90r73,101r-55,0r-46,-63r-45,63r-55,0r73,-101"},"y":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84","w":208},"z":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40","w":165},"{":{"d":"2,-69r0,-42v10,0,18,-2,23,-6v5,-4,9,-9,12,-17v3,-8,4,-21,4,-39v0,-23,1,-40,3,-48v2,-8,5,-15,10,-20v5,-5,11,-10,20,-13v9,-3,22,-5,39,-5r10,0r0,43v-13,0,-21,1,-25,2v-4,1,-7,3,-9,6v-2,3,-2,9,-2,17v0,15,-1,31,-2,49v-1,12,-4,23,-10,32v-4,7,-11,14,-21,21v9,5,15,10,20,18v5,8,8,17,10,29v1,5,1,21,2,49v0,10,1,17,2,19v2,4,5,6,9,8v4,2,13,3,26,3r0,42r-10,0v-17,0,-30,-1,-38,-4v-8,-3,-15,-7,-20,-12v-5,-5,-9,-12,-11,-20v-2,-8,-3,-22,-3,-42v0,-22,-2,-37,-4,-45v-2,-8,-6,-14,-11,-18v-5,-4,-13,-6,-24,-7","w":122},"|":{"d":"94,-265r28,0r0,335r-28,0r0,-335","w":216},"}":{"d":"120,-111r0,42v-10,1,-18,3,-23,7v-5,4,-9,9,-12,17v-3,8,-4,21,-4,39v0,23,-1,39,-3,47v-2,8,-5,16,-10,21v-5,5,-11,9,-20,12v-9,3,-22,5,-39,5r-9,0r0,-42v13,0,20,-1,24,-2v4,-1,7,-3,9,-6v2,-3,3,-9,3,-17v0,-15,1,-32,2,-50v1,-12,3,-22,9,-31v4,-7,12,-15,22,-21v-9,-5,-16,-10,-21,-18v-5,-8,-8,-17,-10,-29v-1,-5,-1,-21,-2,-49v0,-10,-1,-17,-2,-19v-2,-4,-5,-7,-9,-9v-4,-2,-12,-2,-25,-2r0,-43r9,0v17,0,30,2,38,5v8,3,15,7,20,12v5,5,9,12,11,20v2,8,4,22,4,42v0,22,1,37,3,45v2,8,6,14,11,18v5,4,13,5,24,6","w":122},"~":{"d":"18,-99r0,-56v18,-9,33,-13,44,-13v8,0,15,1,24,4v9,3,21,7,36,14v10,5,16,7,19,8v4,1,8,2,12,2v13,0,29,-7,46,-20r0,57v-15,8,-30,13,-44,13v-8,0,-15,-2,-23,-4v-8,-2,-20,-6,-38,-14v-11,-5,-19,-8,-23,-9v-4,-1,-8,-2,-12,-2v-6,0,-11,1,-17,4v-6,3,-14,8,-24,16","w":216},"\u00e8":{"d":"216,-82r-154,0v2,14,8,25,18,33v10,8,22,12,37,12v18,0,33,-6,46,-19r40,19v-10,14,-22,25,-36,32v-14,7,-31,10,-50,10v-30,0,-54,-9,-73,-28v-19,-19,-29,-44,-29,-72v0,-29,10,-53,29,-72v19,-19,42,-29,70,-29v30,0,55,10,74,29v19,19,28,44,28,76r0,9xm168,-120v-3,-11,-10,-19,-19,-26v-9,-7,-20,-10,-32,-10v-13,0,-26,4,-36,12v-6,5,-12,12,-17,24r104,0xm107,-295r42,69r-34,0r-65,-69r57,0","w":230},"\u00a0":{"w":100}}});

