/*!
 * Copyright (c) 2010 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */
var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/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}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/(?:^|\s)./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};var wsStart=/^\s+/,wsEnd=/\s+$/;return function(text,style,node,previousElement,simple){if(simple)return text.replace(wsStart,'').replace(wsEnd,'');if(previousElement){if(previousElement.nodeName.toLowerCase()=='br'){text=text.replace(wsStart,'');}}
if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(wsStart,'');if(!node.nextSibling)text=text.replace(wsEnd,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face,wordSeparators={'\u0020':1,'\u00a0':1,'\u3000':1};this.glyphs=(function(glyphs){var key,fallbacks={'\u2011':'\u002d','\u00ad':'\u2011'};for(key in fallbacks){if(!hasOwnProperty(fallbacks,key))continue;if(!glyphs[key])glyphs[key]=glyphs[fallbacks[key]];}
return glyphs;})(data.glyphs);this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(chars,letterSpacing,wordSpacing){var glyphs=this.glyphs,glyph,kerning,k,jumps=[],width=0,w,i=-1,j=-1,chr;while(chr=chars[++i]){glyph=glyphs[chr]||this.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j]-=k;}
w=glyph.w;if(isNaN(w))w=+this.w;if(w>0){w+=letterSpacing;if(wordSeparators[chr])w+=wordSpacing;}
width+=jumps[++j]=~~w;kerning=glyph.k;}
jumps.total=width;return jumps;};}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>=weight&&b>=weight)?a<b:a>b:(a<=weight&&b<=weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){try{if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
catch(e){}
return false;}
function onOverOut(e){var related=e.relatedTarget;if(related&&contains(this,related))return;trigger(this,e.type=='mouseover');}
function onEnterLeave(e){trigger(this,e.type=='mouseenter');}
function trigger(el,hoverState){setTimeout(function(){var options=sharedStorage.get(el).options;api.replace(el,hoverState?merge(options,options.hover):options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},arg,key;for(var i=0,l=arguments.length;arg=arguments[i],i<l;++i){for(key in arg){if(hasOwnProperty(arg,key))merged[key]=arg[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var name=el.nodeName.toLowerCase();if(options.ignore[name])return;if(options.onBeforeReplace)options.onBeforeReplace(el,options);var replace=!options.textless[name],simple=(options.trim==='simple');var style=CSS.getStyle(attach(el,options)).extend(options);if(parseFloat(style.get('fontSize'))===0)return;var font=getFont(el,style),node,type,next,anchor,text,lastElement;var isShy=options.softHyphens,anyShy=false,pos,shy,reShy=/\u00ad/g;var modifyText=options.modifyText;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(isShy&&el.nodeName.toLowerCase()!=TAG_SHY){pos=node.data.indexOf('\u00ad');if(pos>=0){node.splitText(pos);next=node.nextSibling;next.deleteData(0,1);shy=document.createElement(TAG_SHY);shy.appendChild(document.createTextNode('\u00ad'));el.insertBefore(shy,next);next=shy;anyShy=true;}}
if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){text=anchor.data;if(!isShy)text=text.replace(reShy,'');text=CSS.whiteSpace(text,style,anchor,lastElement,simple);if(modifyText)text=modifyText(text,anchor,el,options);el.replaceChild(process(font,text,style,options,node,el),anchor);anchor=null;}
if(type==1){if(node.firstChild){if(node.nodeName.toLowerCase()=='cufon'){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}
lastElement=node;}}
if(isShy&&anyShy){updateShy(el);if(!trackingShy)addEvent(window,'resize',updateShyOnResize);trackingShy=true;}
if(options.onAfterReplace)options.onAfterReplace(el,options);}
function updateShy(context){var shys,shy,parent,glue,newGlue,next,prev,i;shys=context.getElementsByTagName(TAG_SHY);for(i=0;shy=shys[i];++i){shy.className=C_SHY_DISABLED;glue=parent=shy.parentNode;if(glue.nodeName.toLowerCase()!=TAG_GLUE){newGlue=document.createElement(TAG_GLUE);newGlue.appendChild(shy.previousSibling);parent.insertBefore(newGlue,shy);newGlue.appendChild(shy);}
else{glue=glue.parentNode;if(glue.nodeName.toLowerCase()==TAG_GLUE){parent=glue.parentNode;while(glue.firstChild){parent.insertBefore(glue.firstChild,glue);}
parent.removeChild(glue);}}}
for(i=0;shy=shys[i];++i){shy.className='';glue=shy.parentNode;parent=glue.parentNode;next=glue.nextSibling||parent.nextSibling;prev=(next.nodeName.toLowerCase()==TAG_GLUE)?glue:shy.previousSibling;if(prev.offsetTop>=next.offsetTop){shy.className=C_SHY_DISABLED;if(prev.offsetTop<next.offsetTop){newGlue=document.createElement(TAG_GLUE);parent.insertBefore(newGlue,glue);newGlue.appendChild(glue);newGlue.appendChild(next);}}}}
function updateShyOnResize(){if(ignoreResize)return;CSS.addClass(DOM.root(),C_VIEWPORT_RESIZING);clearTimeout(shyTimer);shyTimer=setTimeout(function(){ignoreResize=true;CSS.removeClass(DOM.root(),C_VIEWPORT_RESIZING);updateShy(document);ignoreResize=false;},100);}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var TAG_GLUE='cufonglue';var TAG_SHY='cufonshy';var C_SHY_DISABLED='cufon-shy-disabled';var C_VIEWPORT_RESIZING='cufon-viewport-resizing';var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var trackingShy=false;var shyTimer;var ignoreResize=false;var engines={},fonts={},defaultOptions={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,noscript:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},modifyText:null,onAfterReplace:null,onBeforeReplace:null,printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.glow&&glow.dom&&glow.dom.get)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',softHyphens:true,textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none',trim:'advanced'};var separators={words:/\s/.test('\u00a0')?/[^\S\u00a0]+/:/\s+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){if(!data)return api;var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;if(typeof options.textShadow=='string'){options.textShadow=CSS.textShadow(options.textShadow);}
if(typeof options.color=='string'&&/^-/.test(options.color)){options.textGradient=CSS.gradient(options.color);}
else delete options.textGradient;if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(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:'+
(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}'+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'a cufon{cursor:pointer}'+'}'+'@media print{'+'cufon cufoncanvas{display:none;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(!isNaN(value)||/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
function getSpacingValue(el,style,size,property){var key='computed'+property,value=style[key];if(isNaN(value)){value=style.get(property);style[key]=value=(value=='normal')?0:~~size.convertFrom(getSizeInPixels(el,value));}
return value;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='none';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cufoncanvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,getSpacingValue(el,style,size,'letterSpacing'),getSpacingValue(el,style,size,'wordSpacing'));if(!jumps.length)return null;var width=jumps.total;var fullWidth=-minX+width+(viewBox.width-jumps[jumps.length-1]);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);var glyphs=font.glyphs,offsetX=0;var shadows=options.textShadow;var i=-1,j=0,chr;while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph,shape;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('cufon{text-indent:0;}'+'@media screen,projection{'+'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'cufon canvas{position:relative;}':'cufon canvas{position:absolute;}')+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'}'+'@media print{'+'cufon{padding:0;}'+'cufon canvas{display:none;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.getAttribute('alt');var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,~~size.convertFrom(parseFloat(style.get('letterSpacing'))||0),~~size.convertFrom(parseFloat(style.get('wordSpacing'))||0));if(!jumps.length)return null;var width=jumps.total;expandRight+=viewBox.width-jumps[jumps.length-1];expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-canvas';wrapper.setAttribute('alt',text);canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.max(Math.ceil(size.convert(stretchedWidth)),0)+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.save();function renderText(){var glyphs=font.glyphs,glyph,i=-1,j=-1,chr;g.scale(stretchFactor,1);while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[++j],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();return wrapper;};})());

Cufon.replace('.menu li a, h2', { fontFamily: 'Baker Signet', hover:true });
Cufon.replace('h1 span, h2 span', { fontFamily: 'Swis721 Lt BT' });
Cufon.replace('h3', { fontFamily: 'Swis721 BT', textShadow: '#fff 1px 1px' });

Cufon.registerFont({"w":188,"face":{"font-family":"Baker Signet","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-54 -330 341.018 105","underline-thickness":"17.28","underline-position":"-50.4","stemh":"13","stemv":"25","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":94},"A":{"d":"-11,0v30,-25,98,-187,103,-220v0,-4,-1,-7,-3,-11r45,0v37,125,68,202,89,231r-39,0r-37,-100r-84,0v-9,31,-35,65,-28,100r-46,0xm69,-113r73,0r-34,-93","w":218},"\u00c6":{"d":"-17,0v26,-21,116,-189,124,-220v0,-4,-1,-7,-4,-11r155,0r3,33v-4,-22,-48,-19,-85,-19v-3,9,-4,53,-4,87v29,2,65,1,90,-3v-17,21,-52,23,-90,20r0,24v0,39,1,65,4,76v45,0,87,0,102,-25r-6,36v-38,7,-89,0,-140,2v9,-11,9,-39,10,-88r-81,0v-11,25,-43,65,-30,88r-48,0xm68,-102r74,0v-3,-30,4,-105,-8,-116v-5,0,-8,6,-13,15","w":290},"\u00c1":{"d":"-11,0v30,-25,98,-187,103,-220v0,-4,-1,-7,-3,-11r45,0v37,125,68,202,89,231r-39,0r-37,-100r-84,0v-9,31,-35,65,-28,100r-46,0xm69,-113r73,0r-34,-93xm125,-316r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":218},"\u00c2":{"d":"147,-254v-12,-13,-25,-27,-35,-43v-11,17,-22,31,-34,43r-16,0v14,-22,26,-43,34,-62r32,0v8,19,20,40,34,62r-15,0xm-11,0v30,-25,98,-187,103,-220v0,-4,-1,-7,-3,-11r45,0v37,125,68,202,89,231r-39,0r-37,-100r-84,0v-9,31,-35,65,-28,100r-46,0xm69,-113r73,0r-34,-93","w":218},"\u00c4":{"d":"-11,0v30,-25,98,-187,103,-220v0,-4,-1,-7,-3,-11r45,0v37,125,68,202,89,231r-39,0r-37,-100r-84,0v-9,31,-35,65,-28,100r-46,0xm69,-113r73,0r-34,-93xm87,-304r18,22r-25,21r-18,-21xm144,-304r18,22r-26,21r-18,-21","w":218},"\u00c0":{"d":"-11,0v30,-25,98,-187,103,-220v0,-4,-1,-7,-3,-11r45,0v37,125,68,202,89,231r-39,0r-37,-100r-84,0v-9,31,-35,65,-28,100r-46,0xm69,-113r73,0r-34,-93xm68,-316r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":218},"\u00c5":{"d":"69,-113r73,0r-34,-93xm-11,0v30,-25,98,-187,103,-220v0,-4,-1,-7,-3,-11r45,0v37,125,68,202,89,231r-39,0r-37,-100r-84,0v-9,31,-35,65,-28,100r-46,0xm112,-330v24,0,44,20,44,44v0,24,-20,43,-44,43v-24,0,-44,-19,-44,-43v0,-24,20,-44,44,-44xm112,-311v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,25,-11,25,-25v0,-14,-11,-25,-25,-25","w":218},"\u00c3":{"d":"148,-301r15,0v-8,39,-38,36,-69,25v-8,0,-13,3,-17,11r-16,0v7,-38,40,-35,70,-24v8,0,14,-4,17,-12xm-11,0v30,-25,98,-187,103,-220v0,-4,-1,-7,-3,-11r45,0v37,125,68,202,89,231r-39,0r-37,-100r-84,0v-9,31,-35,65,-28,100r-46,0xm69,-113r73,0r-34,-93","w":218},"B":{"d":"96,2r-75,-2v14,-8,13,-224,0,-231v57,1,152,-18,151,41v0,26,-19,46,-56,59v44,5,67,28,67,62v0,40,-32,72,-87,71xm61,-76v5,55,-12,65,32,65v34,0,53,-20,53,-55v0,-41,-35,-59,-85,-54r0,44xm64,-217v-3,9,-3,52,-3,84v47,2,76,-16,76,-49v0,-31,-35,-40,-73,-35","w":193},"C":{"d":"189,-231r-2,50v-32,-74,-150,-31,-138,58v-7,94,100,131,153,72v-8,33,-39,55,-81,55v-62,0,-108,-47,-108,-117v0,-95,77,-137,176,-118","w":213},"\u00c7":{"d":"189,-231r-2,50v-32,-74,-150,-31,-138,58v-7,94,100,131,153,72v-8,33,-39,55,-81,55v-62,0,-108,-47,-108,-117v0,-95,77,-137,176,-118xm104,0r13,0r0,19v27,-1,45,10,44,31v0,21,-15,32,-44,32v-32,0,-44,-8,-45,-26v18,10,63,20,66,-6v1,-14,-16,-19,-34,-16r0,-34","w":213},"D":{"d":"21,0v14,-8,13,-224,0,-231v37,1,76,-3,106,-4v67,0,106,42,106,109v0,102,-81,142,-188,126r-24,0xm61,-89v0,62,-19,76,43,76v59,0,93,-37,93,-101v0,-80,-55,-119,-133,-102v-4,19,-3,91,-3,127","w":246},"E":{"d":"21,0v14,-8,13,-224,0,-231r126,0r3,33v-5,-22,-49,-19,-86,-19v-3,9,-3,53,-3,87v28,2,65,1,89,-3v-17,20,-52,23,-89,20r3,100v45,0,87,0,102,-25r-6,36v-38,7,-88,0,-139,2","w":178},"\u00c9":{"d":"21,0v14,-8,13,-224,0,-231r126,0r3,33v-5,-22,-49,-19,-86,-19v-3,9,-3,53,-3,87v28,2,65,1,89,-3v-17,20,-52,23,-89,20r3,100v45,0,87,0,102,-25r-6,36v-38,7,-88,0,-139,2xm98,-316r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":178},"\u00ca":{"d":"119,-254v-12,-13,-24,-27,-34,-43v-11,17,-23,31,-35,43r-16,0v14,-22,27,-43,35,-62r31,0v8,19,21,40,35,62r-16,0xm21,0v14,-8,13,-224,0,-231r126,0r3,33v-5,-22,-49,-19,-86,-19v-3,9,-3,53,-3,87v28,2,65,1,89,-3v-17,20,-52,23,-89,20r3,100v45,0,87,0,102,-25r-6,36v-38,7,-88,0,-139,2","w":178},"\u00cb":{"d":"21,0v14,-8,13,-224,0,-231r126,0r3,33v-5,-22,-49,-19,-86,-19v-3,9,-3,53,-3,87v28,2,65,1,89,-3v-17,20,-52,23,-89,20r3,100v45,0,87,0,102,-25r-6,36v-38,7,-88,0,-139,2xm60,-304r18,22r-25,21r-18,-21xm117,-304r18,22r-26,21r-18,-21","w":178},"\u00c8":{"d":"21,0v14,-8,13,-224,0,-231r126,0r3,33v-5,-22,-49,-19,-86,-19v-3,9,-3,53,-3,87v28,2,65,1,89,-3v-17,20,-52,23,-89,20r3,100v45,0,87,0,102,-25r-6,36v-38,7,-88,0,-139,2xm41,-316r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":178},"\u00d0":{"d":"29,0v10,-4,9,-67,9,-116r-30,0r0,-15r30,0v0,-46,0,-94,-9,-100v37,1,76,-3,106,-4v67,0,107,42,107,109v0,102,-81,142,-188,126r-25,0xm69,-116v9,68,-26,103,44,103v59,0,92,-37,92,-101v0,-81,-55,-120,-133,-102v-2,11,-3,51,-3,85r58,0r0,15r-58,0","w":254},"F":{"d":"61,-125v34,3,55,2,87,-3v-12,22,-46,21,-87,21v0,42,-2,101,9,107r-49,0v14,-8,13,-224,0,-231r130,1r2,30v-6,-20,-55,-19,-89,-17v-4,10,-3,59,-3,92","w":158},"G":{"d":"174,-116r48,0v-11,13,-10,91,-4,114v-39,2,-66,6,-82,6v-80,0,-123,-41,-123,-113v0,-96,90,-142,201,-122r-1,42v-55,-62,-162,-24,-162,74v0,74,54,113,129,99v4,-27,5,-89,-6,-100","w":241},"H":{"d":"168,-130v0,-44,1,-95,-9,-101r49,0v-14,12,-14,216,0,231r-49,0v11,-6,9,-75,9,-117r-107,0v0,41,-2,111,9,117r-49,0v14,-8,13,-224,0,-231r49,0v-10,7,-9,56,-9,101r107,0","w":229},"I":{"d":"21,0v14,-8,13,-224,0,-231r49,0v-14,12,-14,216,0,231r-49,0","w":90},"\u00cd":{"d":"21,0v14,-8,13,-224,0,-231r49,0v-14,12,-14,216,0,231r-49,0xm58,-316r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":90},"\u00ce":{"d":"80,-254v-12,-13,-25,-27,-35,-43v-11,17,-22,31,-34,43r-16,0v14,-22,27,-43,35,-62r31,0v8,19,20,40,34,62r-15,0xm21,0v14,-8,13,-224,0,-231r49,0v-14,12,-14,216,0,231r-49,0","w":90},"\u00cf":{"d":"21,0v14,-8,13,-224,0,-231r49,0v-14,12,-14,216,0,231r-49,0xm20,-304r18,22r-25,21r-18,-21xm77,-304r18,22r-26,21r-18,-21","w":90},"\u00cc":{"d":"21,0v14,-8,13,-224,0,-231r49,0v-14,12,-14,216,0,231r-49,0xm1,-316r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":90},"J":{"d":"21,-231r49,0v-11,2,-9,101,-9,146v1,80,-3,128,-45,139v18,-24,20,-249,5,-285","w":90},"K":{"d":"61,-126v28,-12,101,-86,89,-105r48,0v-14,9,-50,43,-105,105v31,41,59,91,95,126v-18,-2,-42,5,-50,-7r-70,-107r-7,0v0,41,-2,108,9,114r-49,0v14,-8,13,-224,0,-231r49,0v-10,6,-9,62,-9,105"},"L":{"d":"21,-231r49,0v-15,4,-8,201,-6,218v40,1,72,-1,87,-25r-8,36v-35,6,-75,1,-122,2v14,-8,13,-224,0,-231","w":158},"M":{"d":"129,5r-83,-214r-1,168v0,16,0,29,8,41r-41,0v14,-13,20,-81,20,-206v0,-11,-2,-18,-9,-25v17,3,43,-8,49,7r66,174r72,-172v5,-16,30,-7,47,-9v-7,9,-9,28,-9,56v0,98,2,156,17,175r-53,0v22,-47,3,-142,7,-209","w":279},"N":{"d":"45,-203v3,62,-7,166,13,203r-41,0v13,-1,24,-214,0,-231v37,1,46,-6,65,27v29,50,66,104,110,163v-1,-53,8,-166,-9,-190r34,0v-16,20,-7,174,-9,232r-23,0v-23,-36,-72,-102,-140,-204","w":238},"\u00d1":{"d":"158,-301r16,0v-8,38,-39,36,-70,25v-8,0,-13,3,-17,11r-16,0v7,-38,40,-35,70,-24v8,0,14,-4,17,-12xm45,-203v3,62,-7,166,13,203r-41,0v13,-1,24,-214,0,-231v37,1,46,-6,65,27v29,50,66,104,110,163v-1,-53,8,-166,-9,-190r34,0v-16,20,-7,174,-9,232r-23,0v-23,-36,-72,-102,-140,-204","w":238},"O":{"d":"119,4v-68,0,-106,-41,-106,-115v0,-80,41,-124,117,-124v71,0,107,38,107,113v0,77,-47,126,-118,126xm130,-13v43,0,71,-34,71,-96v0,-69,-29,-110,-75,-110v-46,0,-76,34,-76,98v0,69,30,108,80,108","w":249},"\u00d3":{"d":"119,4v-68,0,-106,-41,-106,-115v0,-80,41,-124,117,-124v71,0,107,38,107,113v0,77,-47,126,-118,126xm130,-13v43,0,71,-34,71,-96v0,-69,-29,-110,-75,-110v-46,0,-76,34,-76,98v0,69,30,108,80,108xm138,-316r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":249},"\u00d4":{"d":"159,-254v-12,-13,-24,-27,-34,-43v-11,17,-22,31,-34,43r-16,0v14,-22,26,-43,34,-62r31,0v8,19,21,40,35,62r-16,0xm119,4v-68,0,-106,-41,-106,-115v0,-80,41,-124,117,-124v71,0,107,38,107,113v0,77,-47,126,-118,126xm130,-13v43,0,71,-34,71,-96v0,-69,-29,-110,-75,-110v-46,0,-76,34,-76,98v0,69,30,108,80,108","w":249},"\u00d6":{"d":"119,4v-68,0,-106,-41,-106,-115v0,-80,41,-124,117,-124v71,0,107,38,107,113v0,77,-47,126,-118,126xm130,-13v43,0,71,-34,71,-96v0,-69,-29,-110,-75,-110v-46,0,-76,34,-76,98v0,69,30,108,80,108xm100,-304r18,22r-25,21r-18,-21xm157,-304r18,22r-26,21r-18,-21","w":249},"\u00d2":{"d":"119,4v-68,0,-106,-41,-106,-115v0,-80,41,-124,117,-124v71,0,107,38,107,113v0,77,-47,126,-118,126xm130,-13v43,0,71,-34,71,-96v0,-69,-29,-110,-75,-110v-46,0,-76,34,-76,98v0,69,30,108,80,108xm81,-316r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":249},"\u00d8":{"d":"71,-41v47,55,130,27,130,-68v0,-26,-5,-49,-13,-66xm62,-56r118,-134v-45,-59,-130,-23,-130,70v0,23,3,44,12,64xm26,11r-22,0r35,-39v-17,-20,-26,-48,-26,-83v0,-80,41,-124,117,-124v30,0,53,6,71,20r23,-27r22,0r-33,39v15,20,24,48,24,81v0,105,-106,159,-187,105","w":249},"\u00d5":{"d":"161,-301r15,0v-8,39,-39,36,-70,25v-8,0,-13,3,-17,11r-15,0v7,-39,40,-34,70,-24v8,0,14,-4,17,-12xm119,4v-68,0,-106,-41,-106,-115v0,-80,41,-124,117,-124v71,0,107,38,107,113v0,77,-47,126,-118,126xm130,-13v43,0,71,-34,71,-96v0,-69,-29,-110,-75,-110v-46,0,-76,34,-76,98v0,69,30,108,80,108","w":249},"P":{"d":"21,0v14,-8,13,-224,0,-231v67,-3,151,-16,151,59v0,56,-54,88,-103,64v42,1,65,-23,66,-63v1,-43,-30,-55,-71,-47v-2,10,-9,218,6,218r-49,0","w":178},"Q":{"d":"50,-118v0,61,31,99,77,99v41,0,67,-33,67,-93v0,-65,-30,-107,-69,-107v-46,0,-75,35,-75,101xm140,-5v51,24,80,34,121,30v-53,39,-107,13,-171,-28v-49,-7,-77,-44,-77,-108v0,-80,42,-124,117,-124v64,0,99,39,99,110v0,65,-34,110,-89,120","w":243},"R":{"d":"61,-125v41,6,69,-14,69,-52v0,-37,-27,-46,-66,-41v-4,11,-3,62,-3,93xm21,-231v57,0,144,-18,144,44v0,30,-19,53,-55,68v28,35,64,96,95,119v-20,-2,-42,5,-52,-9r-62,-87v-7,-11,-13,-16,-30,-15v0,41,-2,106,9,111r-49,0v14,-8,13,-224,0,-231","w":190},"S":{"d":"122,-56v1,-56,-113,-62,-104,-119v-4,-51,68,-68,129,-58r0,37v-14,-35,-96,-29,-96,13v0,26,22,36,50,51v37,19,56,38,56,66v1,61,-86,88,-147,57r0,-40v19,46,111,53,112,-7","w":173},"T":{"d":"73,0v15,-24,8,-153,7,-211v-29,1,-54,-5,-74,9r9,-29r183,0v-13,25,-48,18,-83,19v-1,61,-8,191,7,212r-49,0","w":195},"\u00de":{"d":"70,-231v-6,6,-8,25,-8,46v60,-11,110,3,110,59v0,56,-54,88,-103,64v42,1,65,-22,66,-62v2,-44,-33,-57,-73,-47v0,46,-6,161,8,171r-49,0v14,-8,13,-224,0,-231r49,0","w":178},"U":{"d":"176,0r1,-34v-15,24,-41,38,-74,38v-69,0,-73,-50,-73,-120v0,-68,0,-105,-9,-115r49,0v-9,8,-10,49,-10,125v0,58,6,91,57,91v47,0,59,-33,59,-101v0,-68,0,-106,-9,-115r49,0v-14,3,-13,229,0,231r-40,0","w":236},"\u00da":{"d":"176,0r1,-34v-15,24,-41,38,-74,38v-69,0,-73,-50,-73,-120v0,-68,0,-105,-9,-115r49,0v-9,8,-10,49,-10,125v0,58,6,91,57,91v47,0,59,-33,59,-101v0,-68,0,-106,-9,-115r49,0v-14,3,-13,229,0,231r-40,0xm131,-316r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":236},"\u00db":{"d":"153,-254v-12,-13,-25,-27,-35,-43v-11,17,-22,31,-34,43r-16,0v14,-22,27,-43,35,-62r31,0v8,19,20,40,34,62r-15,0xm176,0r1,-34v-15,24,-41,38,-74,38v-69,0,-73,-50,-73,-120v0,-68,0,-105,-9,-115r49,0v-9,8,-10,49,-10,125v0,58,6,91,57,91v47,0,59,-33,59,-101v0,-68,0,-106,-9,-115r49,0v-14,3,-13,229,0,231r-40,0","w":236},"\u00dc":{"d":"176,0r1,-34v-15,24,-41,38,-74,38v-69,0,-73,-50,-73,-120v0,-68,0,-105,-9,-115r49,0v-9,8,-10,49,-10,125v0,58,6,91,57,91v47,0,59,-33,59,-101v0,-68,0,-106,-9,-115r49,0v-14,3,-13,229,0,231r-40,0xm93,-304r18,22r-25,21r-18,-21xm150,-304r18,22r-26,21r-18,-21","w":236},"\u00d9":{"d":"176,0r1,-34v-15,24,-41,38,-74,38v-69,0,-73,-50,-73,-120v0,-68,0,-105,-9,-115r49,0v-9,8,-10,49,-10,125v0,58,6,91,57,91v47,0,59,-33,59,-101v0,-68,0,-106,-9,-115r49,0v-14,3,-13,229,0,231r-40,0xm74,-316r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":236},"V":{"d":"78,2v-33,-127,-63,-205,-81,-233v18,2,37,-6,43,11r62,193v18,-55,71,-151,61,-204r45,0v-32,46,-59,127,-101,233r-29,0","w":198},"W":{"d":"196,2v-13,-70,-36,-129,-53,-195v-20,81,-45,144,-58,195r-31,0v-18,-144,-43,-223,-53,-233v31,1,41,-8,48,32v12,71,22,127,28,171v14,-47,48,-131,51,-176v0,-9,-4,-19,-10,-27r62,0v-10,17,-10,22,-4,46r42,157r25,-102v12,-57,22,-68,7,-101r47,0v-22,24,-40,102,-71,233r-30,0","w":290},"X":{"d":"-1,0v32,-24,67,-76,94,-111v-23,-33,-65,-108,-89,-120v30,2,46,-6,61,19r47,76v15,-26,57,-61,44,-95r47,0v-30,33,-55,73,-82,109v32,40,53,90,93,122v-26,-2,-46,5,-59,-15r-53,-83v-14,29,-68,71,-49,98r-54,0","w":213},"Y":{"d":"181,-231v-52,87,-81,95,-82,194v0,14,2,26,7,37r-47,0v32,-80,-20,-185,-64,-231v30,1,47,-5,58,22v15,37,29,69,38,98v14,-29,46,-76,50,-105v0,-5,-2,-10,-6,-15r46,0","w":174},"\u00dd":{"d":"181,-231v-52,87,-81,95,-82,194v0,14,2,26,7,37r-47,0v32,-80,-20,-185,-64,-231v30,1,47,-5,58,22v15,37,29,69,38,98v14,-29,46,-76,50,-105v0,-5,-2,-10,-6,-15r46,0xm100,-316r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":174},"Z":{"d":"0,0v64,-82,119,-153,160,-216v-52,1,-119,-7,-142,19r5,-34r187,0v-64,83,-119,153,-160,216v77,1,131,13,164,-25r-7,40r-207,0","w":223},"a":{"d":"68,-153v-29,0,-19,33,-43,33v-8,0,-13,-5,-13,-13v0,-17,23,-32,68,-32v64,0,43,37,43,105v0,35,4,55,12,60r-32,2v-3,-8,-5,-18,-5,-28v-13,43,-90,36,-91,-7v0,-24,23,-36,60,-52v26,-12,32,-15,32,-36v0,-23,-10,-32,-31,-32xm98,-86v-39,15,-61,24,-61,46v0,14,11,23,28,23v32,0,35,-33,33,-69","w":145},"\u00e1":{"d":"68,-153v-29,0,-19,33,-43,33v-8,0,-13,-5,-13,-13v0,-17,23,-32,68,-32v64,0,43,37,43,105v0,35,4,55,12,60r-32,2v-3,-8,-5,-18,-5,-28v-13,43,-90,36,-91,-7v0,-24,23,-36,60,-52v26,-12,32,-15,32,-36v0,-23,-10,-32,-31,-32xm98,-86v-39,15,-61,24,-61,46v0,14,11,23,28,23v32,0,35,-33,33,-69xm88,-246r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":145},"\u00e2":{"d":"109,-184v-12,-13,-24,-27,-34,-43v-11,17,-22,31,-34,43r-17,0v14,-22,27,-43,35,-62r31,0v8,19,21,40,35,62r-16,0xm68,-153v-29,0,-19,33,-43,33v-8,0,-13,-5,-13,-13v0,-17,23,-32,68,-32v64,0,43,37,43,105v0,35,4,55,12,60r-32,2v-3,-8,-5,-18,-5,-28v-13,43,-90,36,-91,-7v0,-24,23,-36,60,-52v26,-12,32,-15,32,-36v0,-23,-10,-32,-31,-32xm98,-86v-39,15,-61,24,-61,46v0,14,11,23,28,23v32,0,35,-33,33,-69","w":145},"\u00b4":{"d":"103,-246r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":180},"\u00e4":{"d":"68,-153v-29,0,-19,33,-43,33v-8,0,-13,-5,-13,-13v0,-17,23,-32,68,-32v64,0,43,37,43,105v0,35,4,55,12,60r-32,2v-3,-8,-5,-18,-5,-28v-13,43,-90,36,-91,-7v0,-24,23,-36,60,-52v26,-12,32,-15,32,-36v0,-23,-10,-32,-31,-32xm98,-86v-39,15,-61,24,-61,46v0,14,11,23,28,23v32,0,35,-33,33,-69xm50,-234r18,22r-25,21r-18,-21xm107,-234r18,22r-26,21r-18,-21","w":145},"\u00e6":{"d":"68,-153v-29,0,-19,33,-43,33v-8,0,-13,-5,-13,-13v0,-17,23,-32,68,-32v22,0,37,6,41,15v32,-29,103,-13,103,33v0,14,-18,14,-65,14v-10,0,-21,0,-34,-1v-12,43,13,86,50,86v18,0,32,-7,46,-21v1,51,-104,58,-117,7v-9,49,-96,45,-97,-1v0,-24,23,-36,60,-52v26,-12,32,-15,32,-36v0,-23,-10,-32,-31,-32xm127,-114v21,-2,71,7,67,-12v-9,-44,-65,-29,-67,12xm98,-86v-39,15,-61,24,-61,46v0,14,11,23,28,23v32,0,35,-33,33,-69","w":235},"\u00e0":{"d":"68,-153v-29,0,-19,33,-43,33v-8,0,-13,-5,-13,-13v0,-17,23,-32,68,-32v64,0,43,37,43,105v0,35,4,55,12,60r-32,2v-3,-8,-5,-18,-5,-28v-13,43,-90,36,-91,-7v0,-24,23,-36,60,-52v26,-12,32,-15,32,-36v0,-23,-10,-32,-31,-32xm98,-86v-39,15,-61,24,-61,46v0,14,11,23,28,23v32,0,35,-33,33,-69xm31,-246r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":145},"&":{"d":"163,0r-19,-27v-36,50,-130,37,-131,-26v0,-29,18,-54,53,-79v-18,-23,-27,-41,-27,-55v0,-26,23,-48,57,-48v30,0,50,16,50,38v0,19,-16,37,-47,58r57,79v16,-23,24,-34,16,-56r37,0v-14,17,-25,41,-44,65v15,17,27,36,45,51r-47,0xm135,-38r-61,-83v-44,25,-41,102,17,103v16,0,30,-7,44,-20xm91,-149v18,-13,26,-27,26,-43v0,-37,-50,-37,-49,-5v0,13,9,27,23,48","w":219},"\u00e5":{"d":"98,-86v-39,15,-61,24,-61,46v0,14,11,23,28,23v32,0,35,-33,33,-69xm68,-153v-29,0,-19,33,-43,33v-8,0,-13,-5,-13,-13v0,-17,23,-32,68,-32v64,0,43,37,43,105v0,35,4,55,12,60r-32,2v-3,-8,-5,-18,-5,-28v-13,43,-90,36,-91,-7v0,-24,23,-36,60,-52v26,-12,32,-15,32,-36v0,-23,-10,-32,-31,-32xm77,-264v24,0,43,20,43,44v0,24,-19,43,-43,43v-24,0,-44,-19,-44,-43v0,-24,20,-44,44,-44xm77,-245v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,25,-11,25,-25v0,-14,-11,-25,-25,-25","w":145},"^":{"d":"194,-256r91,98r-27,0r-78,-77r-78,77r-28,0r92,-98r28,0","w":360},"~":{"d":"99,-130v38,0,66,24,102,25v22,0,43,-10,68,-28r0,23v-24,17,-46,25,-68,25v-35,0,-72,-25,-102,-24v-21,0,-42,10,-68,28r0,-23v24,-17,47,-26,68,-26","w":299},"*":{"d":"60,-94r-23,-17r41,-45r-59,-13r8,-26r56,25r-5,-61r24,0r-5,61r56,-25r8,26r-59,13r41,45r-23,17r-30,-54","w":180},"@":{"d":"160,-38v40,2,55,-50,62,-88v-4,-21,-18,-33,-37,-33v-35,0,-60,36,-60,81v0,26,13,40,35,40xm341,-137v1,59,-39,116,-98,116v-25,0,-36,-11,-35,-32v-24,51,-107,40,-107,-27v0,-76,88,-132,126,-68r10,-22r20,0r-27,114v0,10,6,16,19,16v40,-3,69,-50,69,-95v0,-61,-48,-103,-125,-103v-85,0,-151,67,-151,148v0,121,161,156,249,90r8,12v-99,80,-284,29,-279,-104v4,-98,81,-164,176,-164v82,0,143,49,145,119","w":360},"\u00e3":{"d":"111,-231r15,0v-8,39,-39,36,-70,25v-8,0,-13,3,-17,11r-15,0v7,-40,39,-35,70,-24v8,0,14,-4,17,-12xm68,-153v-29,0,-19,33,-43,33v-8,0,-13,-5,-13,-13v0,-17,23,-32,68,-32v64,0,43,37,43,105v0,35,4,55,12,60r-32,2v-3,-8,-5,-18,-5,-28v-13,43,-90,36,-91,-7v0,-24,23,-36,60,-52v26,-12,32,-15,32,-36v0,-23,-10,-32,-31,-32xm98,-86v-39,15,-61,24,-61,46v0,14,11,23,28,23v32,0,35,-33,33,-69","w":145},"b":{"d":"19,1v5,-41,9,-259,-9,-247r38,-6r0,120v33,-57,111,-37,111,47v0,78,-54,99,-123,85v-3,0,-9,0,-17,1xm85,-9v27,0,45,-24,45,-68v0,-42,-17,-67,-43,-67v-29,0,-39,23,-39,69v0,44,6,66,37,66","w":169},"\\":{"d":"89,33r-98,-268r20,0r98,268r-20,0","w":100},"|":{"d":"101,-275r0,360r-22,0r0,-360r22,0","w":180},"{":{"d":"81,-153v-2,-66,-1,-117,70,-107r0,23v-86,-22,-5,135,-79,144v42,7,35,54,35,101v0,35,9,44,44,43r0,22v-50,2,-72,-13,-70,-64v2,-49,6,-100,-51,-91r0,-22v37,2,52,-11,51,-49","w":180},"}":{"d":"29,-260v51,-3,73,13,70,65v-3,49,-5,100,51,91r0,22v-55,-8,-54,40,-51,91v3,51,-19,67,-70,64r0,-22v87,18,4,-133,79,-144v-43,-7,-35,-54,-35,-102v0,-35,-9,-44,-44,-43r0,-22","w":180},"[":{"d":"35,-250r50,0v-25,12,-26,33,-26,75r0,159v0,42,1,63,26,75r-50,0r0,-309","w":95},"]":{"d":"60,59r-50,0v25,-12,26,-33,26,-75r0,-159v0,-42,-1,-63,-26,-75r50,0r0,309","w":95},"\u00a6":{"d":"101,-252r0,134r-22,0r0,-134r22,0xm101,-72r0,134r-22,0r0,-134r22,0","w":180},"c":{"d":"41,-79v0,63,67,81,97,44v0,24,-22,39,-53,39v-41,0,-74,-32,-74,-81v-1,-65,54,-101,120,-84r-1,38v-6,-19,-18,-29,-35,-29v-31,0,-54,28,-54,73","w":146},"\u00e7":{"d":"41,-79v0,63,67,81,97,44v0,24,-22,39,-53,39v-41,0,-74,-32,-74,-81v-1,-65,54,-101,120,-84r-1,38v-6,-19,-18,-29,-35,-29v-31,0,-54,28,-54,73xm69,0r13,0r0,19v27,-1,45,10,44,31v0,21,-15,32,-44,32v-32,0,-44,-8,-45,-26v18,10,63,20,66,-6v1,-14,-16,-19,-34,-16r0,-34","w":146},"\u00b8":{"d":"77,0r13,0r0,19v27,-1,45,10,44,31v0,21,-15,32,-44,32v-32,0,-44,-8,-45,-26v18,10,63,20,66,-6v1,-14,-16,-19,-34,-16r0,-34","w":180},"\u00a2":{"d":"112,-197v35,1,44,2,39,41v-8,-19,-20,-29,-39,-29r1,133v14,0,32,-7,41,-20v-1,22,-13,33,-42,39r0,33r-14,0r0,-33v-41,-3,-67,-33,-67,-78v0,-46,26,-79,67,-85r0,-29r14,0r0,28xm98,-184v-23,4,-38,27,-38,67v0,33,11,54,38,64r0,-131"},":":{"d":"43,-124r-20,-24r30,-17r18,23xm43,4r-20,-23r30,-18r18,23","w":94},",":{"d":"56,-32v17,38,7,47,-30,72v12,-19,12,-37,1,-58","w":94},"\u00a9":{"d":"21,-127v0,-68,59,-130,129,-130v69,0,129,59,129,130v0,70,-63,129,-129,129v-68,0,-129,-61,-129,-129xm150,-14v59,0,114,-51,114,-113v0,-62,-52,-114,-114,-114v-62,0,-114,54,-114,114v0,59,55,113,114,113xm187,-160v-4,-18,-18,-29,-37,-29v-27,0,-43,22,-43,62v0,67,69,80,82,28r23,0v-3,30,-28,51,-63,51v-41,0,-67,-30,-67,-79v0,-89,115,-107,128,-33r-23,0","w":299},"\u00a4":{"d":"172,-231r-2,50v-9,-26,-24,-38,-49,-38v-37,0,-61,28,-66,79r89,0r-6,13r-84,0r0,24r73,0r-5,12r-66,0v9,69,88,91,127,40v-8,34,-34,55,-69,55v-46,0,-84,-36,-92,-95r-21,0r5,-12r16,0v-1,-11,-1,-13,0,-24r-25,0r6,-13r20,0v12,-79,68,-106,149,-91"},"d":{"d":"154,-252v-2,15,-5,70,-5,165v0,51,0,80,9,87r-34,2r-1,-20v-37,46,-112,16,-112,-57v0,-60,44,-97,113,-89v-1,-27,4,-69,-6,-83xm124,-65v0,-65,15,-87,-24,-87v-37,0,-60,26,-60,72v0,41,23,65,51,65v30,0,33,-19,33,-50","w":173},"\u00b0":{"d":"59,-256v27,0,50,23,50,50v0,27,-22,50,-50,50v-28,0,-49,-22,-49,-50v0,-28,22,-50,49,-50xm95,-206v0,-19,-16,-35,-36,-35v-19,0,-35,15,-35,35v0,20,16,36,35,36v20,0,36,-17,36,-36","w":118},"\u00a8":{"d":"65,-234r18,22r-25,21r-18,-21xm122,-234r18,22r-26,21r-18,-21","w":180},"\u00f7":{"d":"150,-191v11,0,20,9,20,20v0,11,-8,21,-20,21v-12,0,-20,-10,-20,-21v0,-11,9,-20,20,-20xm255,-118r0,21r-210,0r0,-21r210,0xm150,-64v11,0,20,9,20,20v0,11,-8,20,-20,20v-11,0,-20,-9,-20,-20v0,-12,9,-20,20,-20","w":299},"$":{"d":"145,-224r-1,21v-11,-10,-27,-15,-45,-14r0,83v85,25,79,114,0,132r0,32r-15,0r0,-30v-23,-1,-42,-6,-57,-13r0,-23v12,15,31,23,57,23r0,-98v-75,-21,-76,-105,0,-119r0,-27r15,0r0,27v17,0,32,2,46,6xm84,-140r0,-76v-36,10,-36,63,0,76xm99,-105r0,89v41,-13,44,-73,0,-89"},"e":{"d":"139,-39v2,23,-23,43,-57,43v-42,0,-71,-32,-71,-84v0,-53,30,-85,75,-85v34,0,56,21,56,48v0,14,-17,14,-64,14v-10,0,-22,0,-35,-1v-12,43,13,86,50,86v18,0,32,-7,46,-21xm45,-114v21,-2,71,7,67,-12v-9,-45,-65,-28,-67,12","w":153},"\u00e9":{"d":"139,-39v2,23,-23,43,-57,43v-42,0,-71,-32,-71,-84v0,-53,30,-85,75,-85v34,0,56,21,56,48v0,14,-17,14,-64,14v-10,0,-22,0,-35,-1v-12,43,13,86,50,86v18,0,32,-7,46,-21xm45,-114v21,-2,71,7,67,-12v-9,-45,-65,-28,-67,12xm97,-246r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":153},"\u00ea":{"d":"118,-184v-12,-13,-24,-27,-34,-43v-11,17,-23,31,-35,43r-16,0v14,-22,27,-43,35,-62r31,0v8,19,21,40,35,62r-16,0xm139,-39v2,23,-23,43,-57,43v-42,0,-71,-32,-71,-84v0,-53,30,-85,75,-85v34,0,56,21,56,48v0,14,-17,14,-64,14v-10,0,-22,0,-35,-1v-12,43,13,86,50,86v18,0,32,-7,46,-21xm45,-114v21,-2,71,7,67,-12v-9,-45,-65,-28,-67,12","w":153},"\u00eb":{"d":"139,-39v2,23,-23,43,-57,43v-42,0,-71,-32,-71,-84v0,-53,30,-85,75,-85v34,0,56,21,56,48v0,14,-17,14,-64,14v-10,0,-22,0,-35,-1v-12,43,13,86,50,86v18,0,32,-7,46,-21xm45,-114v21,-2,71,7,67,-12v-9,-45,-65,-28,-67,12xm59,-234r18,22r-25,21r-18,-21xm116,-234r18,22r-26,21r-18,-21","w":153},"\u00e8":{"d":"139,-39v2,23,-23,43,-57,43v-42,0,-71,-32,-71,-84v0,-53,30,-85,75,-85v34,0,56,21,56,48v0,14,-17,14,-64,14v-10,0,-22,0,-35,-1v-12,43,13,86,50,86v18,0,32,-7,46,-21xm45,-114v21,-2,71,7,67,-12v-9,-45,-65,-28,-67,12xm40,-246r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":153},"8":{"d":"76,-126v-60,-28,-52,-109,26,-109v76,0,66,77,12,100v39,24,57,45,57,77v0,37,-30,62,-79,62v-47,0,-74,-24,-74,-55v0,-28,19,-52,58,-75xm89,-120v-27,17,-42,39,-42,65v0,26,18,46,46,46v28,0,46,-20,46,-46v0,-27,-16,-46,-50,-65xm103,-140v29,-11,36,-82,-5,-82v-18,0,-31,13,-31,33v0,20,12,35,36,49"},"=":{"d":"255,-151r0,20r-210,0r0,-20r210,0xm255,-84r0,21r-210,0r0,-21r210,0","w":299},"\u00f0":{"d":"86,-152v-29,0,-46,23,-46,67v0,49,22,76,53,76v28,0,42,-24,42,-71v0,-43,-21,-72,-49,-72xm115,-158v-8,-17,-18,-33,-31,-49r-55,23r-5,-12r52,-22v-6,-8,-19,-19,-39,-34v21,1,39,10,57,27r50,-21r6,12r-45,19v40,42,59,86,59,126v0,58,-31,93,-79,93v-47,0,-74,-30,-74,-81v-1,-62,49,-102,104,-81","w":174},"!":{"d":"24,-14r24,-23r24,18r-24,23xm42,-47v-4,-68,-9,-129,-14,-184r39,0v-2,17,-6,79,-12,185","w":94},"\u00a1":{"d":"70,-217r-24,23r-24,-18r24,-23xm53,-184v2,37,5,99,13,184r-39,0v2,-22,6,-84,12,-185","w":94},"f":{"d":"24,-161v-2,-63,0,-92,60,-92v27,0,34,26,11,26v-12,0,-19,-13,-27,-13v-13,0,-18,20,-18,60r0,19r28,0v1,12,-6,11,-28,13v3,44,-8,121,8,148r-41,0v15,-27,4,-105,7,-148v-5,0,-9,0,-14,-1r0,-12r14,0","w":84},"5":{"d":"54,-231v27,1,90,4,103,-4v0,7,-2,15,-7,25v-18,5,-61,3,-85,2r-8,43v61,29,92,60,92,98v0,39,-31,71,-72,71v-36,0,-52,-13,-53,-40v33,33,93,22,92,-32v0,-32,-25,-56,-77,-79"},"4":{"d":"140,-81v0,34,0,79,8,81r-44,0v8,-3,8,-47,8,-81r-106,0v37,-51,76,-104,119,-154r15,0r0,137r39,-2v-6,15,-17,18,-39,19xm112,-98r1,-105r-78,105r77,0"},"g":{"d":"89,-165v17,1,43,9,59,4v4,12,-9,11,-21,12v25,33,2,75,-44,81v-48,23,-44,37,16,47v82,14,82,76,19,105v-33,34,-118,24,-118,-27v0,-29,24,-40,54,-66v-23,-5,-34,-12,-34,-25v0,-17,19,-16,41,-34v-61,-19,-40,-101,28,-97xm109,-111v3,-51,-55,-58,-56,-9v-3,46,55,58,56,9xm71,-6v-30,18,-45,33,-45,50v0,22,23,39,58,39v30,0,51,-24,51,-46v0,-26,-20,-34,-64,-43","w":163},"\u00df":{"d":"69,-149v2,-21,36,-27,36,-55v0,-24,-12,-38,-28,-38v-25,0,-27,22,-27,64r0,132v0,26,1,41,8,46r-41,0v15,-27,4,-105,7,-148v-5,0,-9,0,-14,-1r0,-12r14,0v-2,-61,-3,-93,58,-91v32,0,51,17,51,42v6,25,-35,42,-41,54v9,17,80,59,69,98v0,36,-23,62,-56,62v-34,0,-41,-10,-33,-41v5,19,18,29,33,29v17,0,29,-16,29,-42v8,-40,-67,-78,-65,-99","w":171},"`":{"d":"46,-246r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":180},">":{"d":"253,-116r0,18r-207,85r0,-23r176,-71r-176,-72r0,-22","w":299},"\u00ab":{"d":"89,-148v-5,32,-31,44,-46,66v15,22,41,35,46,67r-78,-67xm146,-148v-5,32,-31,44,-46,66v15,22,41,35,46,67r-79,-67","w":156},"\u00bb":{"d":"11,-15v6,-32,31,-45,46,-67v-15,-22,-41,-34,-46,-66r78,66xm67,-15v7,-31,31,-45,46,-67v-15,-22,-40,-35,-46,-66r79,66","w":156},"h":{"d":"102,-165v68,0,25,112,48,165r-35,0v1,-25,2,-61,2,-107v0,-26,-7,-38,-31,-38v-48,0,-36,54,-36,99v0,26,1,41,8,46r-41,0v16,-33,7,-132,7,-198v0,-27,0,-43,-7,-48r35,-6r-3,116v16,-21,31,-29,53,-29","w":164},"-":{"d":"11,-72r16,-21r81,0r-15,22","w":119},"i":{"d":"17,0v13,-21,10,-139,0,-161v12,0,24,-1,35,-4v1,13,-10,143,6,165r-41,0xm29,-185r-15,-25r27,-17r15,25","w":74},"\u00ed":{"d":"17,0v13,-21,10,-139,0,-161v12,0,24,-1,35,-4v1,13,-10,143,6,165r-41,0xm50,-246r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":74},"\u00ee":{"d":"71,-184v-12,-13,-24,-27,-34,-43v-11,17,-22,31,-34,43r-16,0v14,-22,26,-43,34,-62r32,0v8,19,20,40,34,62r-16,0xm17,0v13,-21,10,-139,0,-161v12,0,24,-1,35,-4v1,13,-10,143,6,165r-41,0","w":74},"\u00ef":{"d":"17,0v13,-21,10,-139,0,-161v12,0,24,-1,35,-4v1,13,-10,143,6,165r-41,0xm12,-234r18,22r-25,21r-18,-21xm69,-234r18,22r-26,21r-18,-21","w":74},"\u00ec":{"d":"17,0v13,-21,10,-139,0,-161v12,0,24,-1,35,-4v1,13,-10,143,6,165r-41,0xm-7,-246r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":74},"j":{"d":"26,-187r-11,-26r28,-14r12,26xm52,-165v-5,58,0,119,-1,178v0,55,-14,90,-43,91v15,-12,16,-78,16,-204v0,-36,0,-56,-7,-61","w":74},"k":{"d":"17,0v15,-33,7,-133,7,-189v0,-33,-1,-52,-11,-58r37,-5r0,157v36,-29,57,-42,47,-66r36,0v-20,21,-37,43,-60,62v44,57,63,94,76,99r-37,0r-53,-80v-4,-5,-5,-7,-9,-7v1,26,-4,79,8,87r-41,0","w":145},"l":{"d":"17,0v15,-31,7,-126,7,-180v0,-41,0,-62,-7,-66r35,-6v-1,4,-2,124,-2,206v0,26,1,41,8,46r-41,0","w":74},"<":{"d":"253,-179r-175,72r175,71r0,23r-207,-85r0,-18r207,-85r0,22","w":299},"\u00ac":{"d":"255,-151r0,88r-20,0r0,-67r-190,0r0,-21r210,0","w":299},"m":{"d":"84,-146v-44,-2,-32,60,-34,108v0,21,2,33,8,38r-41,0v13,-18,10,-140,0,-157r32,-4r2,20v23,-27,71,-37,85,2v16,-17,32,-26,50,-26v66,0,24,113,47,165r-35,0r2,-95v0,-32,0,-51,-28,-51v-44,-1,-32,60,-34,108v0,21,1,33,7,38r-40,0v13,-16,7,-78,7,-110v0,-25,-7,-36,-28,-36","w":248},"\u00af":{"d":"45,-223r90,0r0,22r-90,0r0,-22","w":180},"\u00d7":{"d":"151,-122r83,-84r15,15r-84,84r84,83r-15,15r-83,-84r-84,84r-14,-15r83,-83r-83,-84r14,-15","w":299},"n":{"d":"17,0v13,-18,10,-140,0,-157r32,-4v1,6,2,15,2,23v14,-19,30,-27,51,-27v65,0,26,114,48,165r-35,0r2,-98v0,-30,-1,-47,-31,-47v-48,0,-36,54,-36,99v0,26,1,41,8,46r-41,0","w":164},"9":{"d":"12,7v65,-19,119,-105,119,-171v0,-74,-77,-76,-77,-9v0,34,20,55,53,55v-33,24,-84,-2,-84,-50v0,-39,29,-67,75,-67v42,0,65,24,65,69v0,41,-17,93,-49,128v-30,33,-63,50,-102,45"},"\u00f1":{"d":"118,-231r16,0v-8,38,-39,36,-70,25v-8,0,-13,3,-17,11r-16,0v8,-39,40,-35,70,-24v8,0,14,-4,17,-12xm17,0v13,-18,10,-140,0,-157r32,-4v1,6,2,15,2,23v14,-19,30,-27,51,-27v65,0,26,114,48,165r-35,0r2,-98v0,-30,-1,-47,-31,-47v-48,0,-36,54,-36,99v0,26,1,41,8,46r-41,0","w":164},"#":{"d":"162,-256r-29,83r46,0r29,-83r25,0r-29,83r54,0r-7,21r-55,0r-16,48r58,0r-8,22r-58,0r-29,82r-26,0r30,-82r-47,0r-29,82r-26,0r30,-82r-57,0r8,-22r56,0r17,-48r-60,0r7,-21r61,0r29,-83r26,0xm171,-152r-46,0r-17,48r46,0","w":276},"o":{"d":"92,-165v46,0,72,29,72,76v0,58,-31,93,-79,93v-47,0,-74,-30,-74,-81v0,-54,34,-88,81,-88xm86,-152v-29,0,-46,23,-46,67v0,49,22,76,53,76v28,0,42,-24,42,-71v0,-43,-21,-72,-49,-72","w":174},"\u00f3":{"d":"92,-165v46,0,72,29,72,76v0,58,-31,93,-79,93v-47,0,-74,-30,-74,-81v0,-54,34,-88,81,-88xm86,-152v-29,0,-46,23,-46,67v0,49,22,76,53,76v28,0,42,-24,42,-71v0,-43,-21,-72,-49,-72xm100,-246r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":174},"\u00f4":{"d":"122,-184v-12,-13,-25,-27,-35,-43v-11,17,-22,31,-34,43r-16,0v14,-22,27,-43,35,-62r31,0v8,19,21,40,35,62r-16,0xm92,-165v46,0,72,29,72,76v0,58,-31,93,-79,93v-47,0,-74,-30,-74,-81v0,-54,34,-88,81,-88xm86,-152v-29,0,-46,23,-46,67v0,49,22,76,53,76v28,0,42,-24,42,-71v0,-43,-21,-72,-49,-72","w":174},"\u00f6":{"d":"92,-165v46,0,72,29,72,76v0,58,-31,93,-79,93v-47,0,-74,-30,-74,-81v0,-54,34,-88,81,-88xm86,-152v-29,0,-46,23,-46,67v0,49,22,76,53,76v28,0,42,-24,42,-71v0,-43,-21,-72,-49,-72xm62,-234r18,22r-25,21r-18,-21xm119,-234r18,22r-26,21r-18,-21","w":174},"\u00f2":{"d":"92,-165v46,0,72,29,72,76v0,58,-31,93,-79,93v-47,0,-74,-30,-74,-81v0,-54,34,-88,81,-88xm86,-152v-29,0,-46,23,-46,67v0,49,22,76,53,76v28,0,42,-24,42,-71v0,-43,-21,-72,-49,-72xm43,-246r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":174},"1":{"d":"71,0v12,-7,16,-200,0,-225r40,-10v-2,110,-9,188,7,235r-47,0"},"\u00bd":{"d":"45,-102v7,-3,9,-112,0,-125r25,-6v-1,62,-6,105,4,131r-29,0xm59,4r162,-239r18,0r-162,239r-18,0xm188,0v20,-24,68,-68,68,-95v1,-32,-43,-27,-61,-14v0,-13,17,-23,41,-23v48,2,45,44,17,74r-44,46v24,-2,49,3,69,-5v0,6,0,6,-4,17r-86,0","w":297},"\u00bc":{"d":"45,-102v7,-3,9,-112,0,-125r25,-6v-1,62,-6,105,4,131r-29,0xm59,4r162,-239r18,0r-162,239r-18,0xm267,-46v0,20,0,44,5,46r-28,0v5,-2,5,-24,5,-45r-66,0v24,-29,48,-59,75,-87r9,0r0,77r25,-1v-4,8,-11,10,-25,10xm249,-55r1,-58r-49,58r48,0","w":297},"\u00b9":{"d":"47,-92v8,-4,11,-121,0,-135r26,-6v-1,67,-6,112,4,141r-30,0","w":124},"\u00aa":{"d":"51,-209v-21,0,-14,20,-32,23v-6,0,-10,-4,-10,-9v0,-12,18,-22,51,-22v47,0,31,24,33,73v0,24,3,38,9,42r-25,2v-2,-5,-3,-13,-3,-20v-10,30,-68,25,-69,-5v-9,-28,69,-31,69,-61v0,-16,-8,-23,-23,-23xm73,-162v-29,11,-45,17,-45,32v0,9,8,16,21,16v23,0,25,-23,24,-48","w":109},"\u00ba":{"d":"69,-217v35,0,54,19,54,52v0,41,-24,66,-60,66v-35,0,-55,-21,-55,-57v0,-38,26,-61,61,-61xm64,-208v-22,0,-34,16,-34,47v0,34,16,53,39,53v21,0,32,-17,32,-50v0,-30,-16,-50,-37,-50","w":131},"\u00f8":{"d":"55,-28v35,38,81,18,81,-52v0,-15,-3,-29,-8,-42xm48,-40r73,-93v-28,-38,-82,-16,-82,46v0,17,3,32,9,47xm40,-9v-12,10,-13,32,-39,28r29,-37v-44,-53,-8,-147,62,-147v17,0,30,3,44,12v10,-10,12,-28,36,-24r-26,33v41,52,8,148,-61,148v-18,0,-35,-5,-45,-13","w":174},"\u00f5":{"d":"123,-231r16,0v-8,38,-39,36,-70,25v-8,0,-13,3,-17,11r-16,0v8,-39,40,-35,70,-24v8,0,14,-4,17,-12xm92,-165v46,0,72,29,72,76v0,58,-31,93,-79,93v-47,0,-74,-30,-74,-81v0,-54,34,-88,81,-88xm86,-152v-29,0,-46,23,-46,67v0,49,22,76,53,76v28,0,42,-24,42,-71v0,-43,-21,-72,-49,-72","w":174},"p":{"d":"17,101v15,-36,10,-234,0,-262r32,-4v-1,6,-1,14,-1,23v49,-47,112,-17,112,57v0,57,-47,92,-110,89v0,33,-2,88,8,97r-41,0xm83,-145v-40,0,-34,30,-35,86v0,32,1,45,33,45v32,0,51,-20,51,-60v0,-42,-21,-71,-49,-71","w":171},"\u00b6":{"d":"167,-246r-22,0r0,246r-17,0r0,-246r-32,0r0,246r-17,0r0,-138v-41,-2,-66,-26,-66,-61v0,-36,27,-61,69,-61r85,0r0,14","w":180},"(":{"d":"87,59v-85,-48,-87,-270,4,-309v-56,92,-47,208,-4,309","w":95},")":{"d":"8,-250v85,48,87,270,-4,309v56,-92,47,-208,4,-309","w":95},"%":{"d":"17,0r166,-231r20,0r-166,231r-20,0xm54,-113v-28,0,-41,-18,-41,-57v0,-44,14,-65,47,-65v28,0,42,19,42,58v0,44,-13,64,-48,64xm35,-173v0,32,7,47,22,47v15,0,23,-16,23,-49v0,-32,-8,-48,-22,-48v-14,0,-23,18,-23,50xm160,4v-28,0,-41,-18,-41,-57v0,-44,14,-65,47,-65v28,0,42,19,42,58v0,44,-13,64,-48,64xm141,-56v0,32,7,48,22,48v15,0,23,-16,23,-49v0,-32,-7,-48,-21,-48v-14,0,-24,17,-24,49","w":220},".":{"d":"43,4r-20,-23r30,-18r18,23","w":94},"\u00b7":{"d":"27,-116v0,-24,40,-24,40,0v0,28,-40,24,-40,0","w":94},"+":{"d":"161,-215r0,97r94,0r0,21r-94,0r0,97r-21,0r0,-97r-95,0r0,-21r95,0r0,-97r21,0","w":299},"\u00b1":{"d":"161,-207r0,60r94,0r0,21r-94,0r0,60r-21,0r0,-60r-95,0r0,-21r95,0r0,-60r21,0xm255,-28r0,21r-210,0r0,-21r210,0","w":299},"q":{"d":"112,-4v53,29,87,45,130,41v-7,10,-21,16,-39,16v-35,0,-75,-18,-124,-50v-43,-1,-68,-30,-68,-80v0,-54,34,-88,81,-88v89,0,86,146,20,161xm89,-11v29,0,43,-23,43,-70v0,-42,-19,-71,-46,-71v-29,0,-46,23,-46,67v0,47,20,74,49,74","w":171},"?":{"d":"22,-10r23,-25r27,14r-22,25xm44,-42v-19,-63,42,-86,44,-135v2,-40,-51,-48,-75,-24r2,-19v34,-29,106,-14,103,37v-4,63,-62,86,-74,141","w":126},"\u00bf":{"d":"104,-221r-23,25r-26,-14r21,-25xm83,-189v19,63,-42,86,-44,136v-1,40,51,47,74,23r-2,20v-35,27,-107,14,-103,-40v4,-59,64,-85,75,-139","w":126},"\"":{"d":"37,-252r0,97r-20,0r0,-97r20,0xm87,-252r0,97r-21,0r0,-97r21,0","w":103},"'":{"d":"37,-252r0,97r-20,0r0,-97r20,0","w":53},"r":{"d":"17,0v13,-18,10,-140,0,-157v31,-3,31,-17,33,17v11,-17,23,-25,38,-25v21,0,27,26,5,25v-37,-2,-45,-1,-43,55v1,26,-4,75,8,85r-41,0","w":111},"\u00ae":{"d":"21,-127v0,-67,58,-130,129,-130v69,0,129,59,129,130v0,70,-63,129,-129,129v-67,0,-129,-61,-129,-129xm149,-14v61,0,115,-51,115,-113v0,-62,-52,-114,-114,-114v-63,0,-114,55,-114,114v0,59,54,113,113,113xm99,-203v49,-1,116,-6,116,40v0,21,-13,36,-35,40r33,67r-27,0r-31,-64r-32,0r0,64r-24,0r0,-147xm189,-161v4,-28,-35,-27,-66,-26r0,51v30,0,70,3,66,-25","w":299},"s":{"d":"41,-130v-2,35,76,43,76,84v0,27,-28,50,-65,50v-45,0,-52,-2,-43,-44v7,39,78,43,79,1v1,-36,-83,-45,-74,-85v-2,-38,50,-49,94,-36r-1,30v-10,-28,-63,-32,-66,0","w":128},"\u00a7":{"d":"66,-197v-5,36,105,59,105,113v0,24,-14,41,-43,54v48,35,14,98,-48,95v-48,-2,-58,-5,-48,-48v10,45,87,49,90,1v3,-44,-110,-65,-110,-119v0,-23,14,-43,41,-56v-35,-31,-11,-81,46,-78v11,0,25,2,42,5r-1,34v-12,-30,-69,-38,-74,-1xm64,-150v-19,10,-28,20,-28,38v0,31,30,42,82,75v21,-10,30,-22,30,-41v0,-28,-32,-35,-84,-72","w":180},";":{"d":"43,-124r-20,-24r30,-17r18,23xm56,-32v17,38,7,47,-30,72v12,-19,12,-37,1,-58","w":94},"7":{"d":"180,-231r-91,158v-28,48,-46,76,-67,79v22,-34,58,-106,111,-214v-35,-1,-98,1,-106,8v0,-12,1,-22,4,-31v43,3,102,2,149,0"},"6":{"d":"54,-113v25,-44,114,-31,114,35v0,48,-33,82,-75,82v-42,0,-72,-36,-72,-93v0,-102,47,-159,131,-143v-66,12,-93,46,-98,119xm94,-9v26,0,41,-24,41,-64v0,-33,-14,-51,-37,-51v-28,0,-44,20,-44,53v0,40,16,62,40,62"},"\/":{"d":"-9,33r98,-268r20,0r-98,268r-20,0","w":100},"\u00a3":{"d":"78,-13v-18,24,-72,23,-72,-8v0,-31,49,-28,71,-11v14,-27,-3,-40,-22,-83r-37,0r0,-12r31,0v-32,-48,-11,-108,55,-108v16,0,31,2,45,7r-1,28v-21,-30,-89,-29,-89,12v0,16,12,34,28,61r47,0r0,12r-40,0v14,32,13,61,-5,89v29,10,67,2,82,-16v5,44,-61,61,-93,29xm67,-21v-14,-13,-41,-19,-46,0v2,18,39,14,46,0"},"t":{"d":"26,-147r-17,-1r0,-11r18,-2r0,-45r27,-7r-1,52v10,1,25,-3,32,2v1,7,-14,11,-32,11r-2,97v-3,38,22,42,39,23v3,24,-19,32,-35,32v-50,0,-25,-100,-29,-151","w":98},"\u00fe":{"d":"17,101v7,-9,7,-34,7,-75r0,-206v0,-41,0,-62,-7,-66r35,-6v-3,35,-2,71,-2,108v48,-45,110,-13,110,59v0,57,-47,92,-110,89v0,33,-2,88,8,97r-41,0xm83,-145v-40,0,-34,30,-35,86v0,32,1,45,33,45v32,0,51,-20,51,-60v0,-42,-21,-71,-49,-71","w":171},"3":{"d":"59,-130v35,-11,53,-29,53,-51v0,-38,-49,-44,-75,-23v0,-22,17,-31,54,-31v31,0,52,18,52,44v0,29,-17,48,-51,59v89,19,77,134,-13,136v-37,0,-57,-12,-57,-35v33,32,99,16,99,-35v0,-31,-21,-55,-62,-64"},"\u00be":{"d":"37,-174v22,-6,34,-16,34,-29v1,-22,-32,-25,-48,-13v0,-12,11,-17,35,-17v44,1,41,52,0,58v57,10,48,76,-8,76v-23,0,-36,-7,-36,-20v20,18,62,10,62,-20v0,-17,-13,-30,-39,-35xm58,4r162,-239r18,0r-162,239r-18,0xm267,-46v0,19,-1,44,4,46r-27,0v5,-2,5,-24,5,-45r-67,0v24,-29,48,-59,75,-87r10,0r0,77r25,-1v-4,8,-11,10,-25,10xm249,-55r1,-58r-49,58r48,0","w":297},"\u00b3":{"d":"39,-170v23,-7,35,-18,35,-31v1,-23,-33,-26,-50,-14v0,-13,11,-18,36,-18v46,0,43,55,1,62v59,11,50,81,-9,81v-24,0,-37,-7,-37,-21v21,18,65,10,65,-21v0,-19,-14,-32,-41,-38","w":124},"2":{"d":"14,0v32,-43,108,-123,108,-170v0,-52,-65,-55,-96,-23v-1,-27,24,-42,64,-42v80,0,70,79,27,131r-69,82v39,-3,78,6,109,-8v0,9,0,12,-6,30r-137,0"},"\u00b2":{"d":"9,-92v21,-26,72,-73,72,-102v0,-32,-44,-33,-64,-14v-1,-17,16,-25,43,-25v53,0,46,48,17,79r-45,49v26,-2,51,3,72,-5r-4,18r-91,0","w":124},"u":{"d":"71,4v-42,-1,-49,-36,-49,-85v0,-57,10,-63,-7,-80v13,1,34,-15,34,9v0,49,-19,134,33,134v45,0,35,-60,36,-106v0,-21,-1,-33,-7,-37r35,-4v1,8,-10,146,6,165v-10,-1,-27,6,-32,-1r-1,-26v-11,20,-29,31,-48,31","w":168},"\u00fa":{"d":"71,4v-42,-1,-49,-36,-49,-85v0,-57,10,-63,-7,-80v13,1,34,-15,34,9v0,49,-19,134,33,134v45,0,35,-60,36,-106v0,-21,-1,-33,-7,-37r35,-4v1,8,-10,146,6,165v-10,-1,-27,6,-32,-1r-1,-26v-11,20,-29,31,-48,31xm97,-246r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":168},"\u00fb":{"d":"118,-184v-12,-13,-24,-27,-34,-43v-11,17,-22,31,-34,43r-16,0v14,-22,26,-43,34,-62r32,0v8,19,20,40,34,62r-16,0xm71,4v-42,-1,-49,-36,-49,-85v0,-57,10,-63,-7,-80v13,1,34,-15,34,9v0,49,-19,134,33,134v45,0,35,-60,36,-106v0,-21,-1,-33,-7,-37r35,-4v1,8,-10,146,6,165v-10,-1,-27,6,-32,-1r-1,-26v-11,20,-29,31,-48,31","w":168},"\u00fc":{"d":"71,4v-42,-1,-49,-36,-49,-85v0,-57,10,-63,-7,-80v13,1,34,-15,34,9v0,49,-19,134,33,134v45,0,35,-60,36,-106v0,-21,-1,-33,-7,-37r35,-4v1,8,-10,146,6,165v-10,-1,-27,6,-32,-1r-1,-26v-11,20,-29,31,-48,31xm59,-234r18,22r-25,21r-18,-21xm116,-234r18,22r-26,21r-18,-21","w":168},"\u00f9":{"d":"71,4v-42,-1,-49,-36,-49,-85v0,-57,10,-63,-7,-80v13,1,34,-15,34,9v0,49,-19,134,33,134v45,0,35,-60,36,-106v0,-21,-1,-33,-7,-37r35,-4v1,8,-10,146,6,165v-10,-1,-27,6,-32,-1r-1,-26v-11,20,-29,31,-48,31xm40,-246r31,0v8,18,20,39,37,62v-28,-6,-49,-27,-68,-62","w":168},"_":{"d":"180,64r0,21r-180,0r0,-21r180,0","w":180},"v":{"d":"58,2v-31,-107,-52,-160,-61,-162r30,-3v12,0,20,46,49,139v27,-82,43,-106,32,-137r38,0v-9,9,-33,63,-66,163r-22,0","w":140},"w":{"d":"140,2v-18,-69,-30,-113,-36,-132v-17,66,-34,108,-40,132r-23,0v-17,-98,-28,-153,-39,-163r26,-2v13,0,16,45,31,142v24,-81,44,-101,28,-140r44,0v-12,29,8,50,26,140v16,-69,33,-104,20,-140r34,0v-13,17,-27,72,-48,163r-23,0","w":209},"x":{"d":"7,-161v20,0,32,-8,42,13r21,44v19,-30,36,-61,65,-80r-57,91v18,28,34,75,58,93v-19,4,-33,8,-44,-13r-30,-58v-10,22,-34,44,-34,71r-34,0v23,-16,41,-56,60,-81v-14,-23,-29,-67,-47,-80","w":133},"y":{"d":"-19,81v46,10,71,-62,71,-80v0,-5,-8,-45,-31,-114v-10,-28,-16,-44,-23,-47r28,-3v10,0,19,46,46,139v27,-82,40,-105,32,-137r37,0v-16,18,-28,62,-53,125v-37,94,-66,141,-111,141v-19,0,-31,-10,-31,-18v0,-9,24,-5,35,-6","w":135},"\u00fd":{"d":"-19,81v46,10,71,-62,71,-80v0,-5,-8,-45,-31,-114v-10,-28,-16,-44,-23,-47r28,-3v10,0,19,46,46,139v27,-82,40,-105,32,-137r37,0v-16,18,-28,62,-53,125v-37,94,-66,141,-111,141v-19,0,-31,-10,-31,-18v0,-9,24,-5,35,-6xm81,-246r31,0v-19,35,-40,56,-68,62v17,-23,29,-44,37,-62","w":135},"\u00ff":{"d":"-19,81v46,10,71,-62,71,-80v0,-5,-8,-45,-31,-114v-10,-28,-16,-44,-23,-47r28,-3v10,0,19,46,46,139v27,-82,40,-105,32,-137r37,0v-16,18,-28,62,-53,125v-37,94,-66,141,-111,141v-19,0,-31,-10,-31,-18v0,-9,24,-5,35,-6xm43,-234r18,22r-25,21r-18,-21xm100,-234r18,22r-26,21r-18,-21","w":135},"\u00a5":{"d":"106,-93v0,32,-1,91,8,93r-43,0v9,-2,7,-62,7,-93r-59,0r0,-13r56,0r-11,-24r-45,0r0,-13r40,0v-13,-25,-33,-79,-50,-88v28,0,41,-3,51,22v6,15,20,49,36,100v14,-30,47,-77,51,-107v0,-5,-3,-10,-7,-15r40,0v-13,21,-31,50,-52,88r41,0r0,13r-48,0r-11,24r59,0r0,13r-63,0"},"z":{"d":"149,-161r-112,149v46,-2,97,8,116,-22r-4,34r-150,0r112,-149v-40,0,-85,-4,-97,22r7,-34r128,0","w":157},"0":{"d":"89,4v-53,0,-76,-36,-76,-112v0,-87,25,-127,87,-127v54,0,75,37,75,118v0,81,-26,121,-86,121xm45,-107v0,64,17,97,49,97v32,0,49,-34,49,-102v0,-74,-15,-109,-46,-109v-34,0,-52,38,-52,114"},"\u00a0":{"w":94}}});

