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);};})()};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;};},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;}),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'),container,supported;el.type='text/css';el.media=media;container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);supported=!!(el.sheet||el.styleSheet);container.removeChild(el);return supported;}),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;},textDecoration:function(el,style){if(!style)style=this.getStyle(el);var types={underline:null,overline:null,'line-through':null};for(var search=el;search.parentNode&&search.parentNode.nodeType==1;){var foundAll=true;for(var type in types){if(!hasOwnProperty(types,type)||types[type])continue;if(style.get('textDecoration').indexOf(type)!=-1)types[type]=style.get('color');foundAll=false;}
if(foundAll)break;style=this.getStyle(search=search.parentNode);}
return types;},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(text,style){return text[{uppercase:'toUpperCase',lowercase:'toLowerCase'}[style.get('textTransform')]||'toString']();},whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};return function(text,style,node){if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(/^\s+/,'');if(!node.nextSibling)text=text.replace(/\s+$/,'');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 linkElements=elementsByTagName('link'),watch={stylesheet:1};function allStylesLoaded(){var sheet,i,link;for(i=0;link=linkElements[i];++i){if(link.disabled||!watch[link.rel.toLowerCase()]||!CSS.recognizesMedia(link.media||'screen'))continue;sheet=link.sheet||link.styleSheet;if(!sheet||sheet.disabled)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;this.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;}
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){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this);}
function onEnterLeave(e){trigger(this);}
function trigger(el){setTimeout(function(){api.replace(el,sharedStorage.get(el).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 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){if(!style)style=CSS.getStyle(el);var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0,l=families.length;i<l;++i){family=families[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={},args,key;for(var i=0,l=arguments.length;args=arguments[i],i<l;++i){for(key in args){if(hasOwnProperty(args,key))merged[key]=args[key];}}
return merged;}
function process(font,text,style,options,node,el){var separate=options.separate;if(separate=='none')return engines[options.engine].apply(null,arguments);var fragment=document.createDocumentFragment(),processed;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 font,style,node,nodeType,nextNode,redraw;for(node=attach(el,options).firstChild;node;node=nextNode){nodeType=node.nodeType;nextNode=node.nextSibling;redraw=false;if(nodeType==1){if(!node.firstChild)continue;if(!/cufon/.test(node.className)){arguments.callee(node,options);continue;}
else redraw=true;}
else if(nodeType!=3)continue;if(!style)style=CSS.getStyle(el).extend(options);if(!font)font=getFont(el,style);if(!font)continue;if(redraw){engines[options.engine](font,null,style,options,node,el);continue;}
var text=CSS.whiteSpace(node.data,style,node);if(text==='')continue;var processed=process(font,text,style,options,node,el);if(processed)node.parentNode.replaceChild(processed,node);else node.parentNode.removeChild(node);}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=[];var engines={},fonts={},defaultOptions={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',textShadow:'none'};var separators={words:/\s+/,characters:''};api.now=function(){DOM.ready();return api;};api.refresh=function(){var currentHistory=replaceHistory.splice(0,replaceHistory.length);for(var i=0,l=currentHistory.length;i<l;++i){api.replace.apply(null,currentHistory[i]);}
return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){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(typeof options.textShadow=='string')
options.textShadow=CSS.textShadow(options.textShadow);if(typeof options.color=='string'&&/^-/.test(options.color))
options.textGradient=CSS.gradient(options.color);if(!ignoreHistory)replaceHistory.push(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('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-canvas{text-indent:0}'+'@media screen,projection{'+'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle'+
(HAS_BROKEN_LINEHEIGHT?'':';font-size:1px;line-height:1px')+'}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;overflow:hidden}'+
(HAS_INLINE_BLOCK?'.cufon-canvas canvas{position:relative}':'.cufon-canvas canvas{position:absolute}')+'}'+'@media print{'+'.cufon-canvas{padding:0 !important}'+'.cufon-canvas canvas{display:none}'+'.cufon-canvas .cufon-alt{display:inline}'+'}'));document.getElementsByTagName('head')[0].appendChild(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);var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var letterSpacing=style.get('letterSpacing');letterSpacing=(letterSpacing=='normal')?0:size.convertFrom(parseInt(letterSpacing,10));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(redraw?node.alt:text,style).split('');var width=0,lastWidth=null;for(var i=0,l=chars.length;i<l;++i){var glyph=font.glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;width+=lastWidth=Number(glyph.w||font.w)+letterSpacing;}
if(lastWidth===null)return null;expandRight+=(viewBox.width-lastWidth);expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-canvas';wrapper.alt=text;canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';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;canvas.width=Math.ceil(size.convert(width*roundingFactor+expandRight-expandLeft));canvas.height=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.ceil(size.convert(width*roundingFactor))+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height='22px';}
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.lineWidth=font.face['underline-thickness'];g.save();function line(y,color){g.strokeStyle=color;g.beginPath();g.moveTo(0,y);g.lineTo(width,y);g.stroke();}
var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};if(textDecoration.underline)line(-font.face['underline-position'],textDecoration.underline);if(textDecoration.overline)line(font.ascent,textDecoration.overline);function renderText(){g.scale(roundingFactor,1);for(var i=0,l=chars.length;i<l;++i){var glyph=font.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(Number(glyph.w||font.w)+letterSpacing,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();if(textDecoration['line-through'])line(-font.descent,textDecoration['line-through']);return wrapper;};})());Cufon.registerEngine('vml',(function(){if(!document.namespaces)return;if(document.namespaces.cvml==null){document.namespaces.add('cvml','urn:schemas-microsoft-com:vml');}
var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;document.write('<style type="text/css">'+'.cufon-vml-canvas{text-indent:0}'+'@media screen{'+'cvml\\:shape,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>');function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(/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;var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
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='sigma';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 letterSpacing=style.computedLSpacing;if(letterSpacing==undefined){letterSpacing=style.get('letterSpacing');style.computedLSpacing=letterSpacing=(letterSpacing=='normal')?0:~~size.convertFrom(getSizeInPixels(el,letterSpacing));}
var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('span');canvas.className='cufon-vml-canvas';wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';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 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 textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var width=0,offsetX=0,advance=null;var glyph,shape,shadows=options.textShadow;for(var i=0,k=0,l=chars.length;i<l;++i){glyph=font.glyphs[chars[i]]||font.missingGlyph;if(glyph)width+=advance=~~(glyph.w||font.w)+letterSpacing;}
if(advance===null)return null;var fullWidth=-minX+width+(viewBox.width-advance);var shapeWidth=size.convert(fullWidth*roundingFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);for(i=0;i<l;++i){glyph=font.glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(redraw){shape=canvas.childNodes[k];if(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+=~~(glyph.w||font.w)+letterSpacing;++k;}
wStyle.width=Math.max(Math.ceil(size.convert(width*roundingFactor)),0);return wrapper;};})());

Cufon.registerFont({"w":600,"face":{"font-family":"Aller","font-weight":700,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 8 3 4 0 0 2 0 4","ascent":"800","descent":"-200","x-height":"12","bbox":"-49 -831 1009 249.419","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":220},"!":{"d":"72,-719v52,-8,103,-8,155,0r-10,489v-47,8,-89,8,-135,0xm76,0v-8,-50,-8,-97,0,-147v50,-8,97,-8,147,0v8,51,8,97,0,147v-51,8,-97,8,-147,0","w":299},"\"":{"d":"179,-439v-40,7,-89,7,-129,0r0,-281v40,-7,89,-7,129,0r0,281xm379,-439v-40,7,-89,7,-129,0r0,-281v40,-7,89,-7,129,0r0,281","w":429},"#":{"d":"279,-30v-39,7,-84,7,-123,0r14,-175r-113,0v-6,-32,-5,-74,1,-106r121,0r10,-121r-112,0v-6,-34,-6,-73,0,-107r121,0r13,-151v37,-7,84,-7,121,0r-13,151r122,0r13,-151v38,-7,84,-7,122,0r-13,151r105,0v7,34,6,73,0,107r-113,0r-10,121r104,0v6,34,6,72,0,106r-113,0r-14,175v-38,7,-84,7,-122,0r14,-175r-121,0xm423,-311r10,-121r-122,0r-10,121r122,0","w":734},"$":{"d":"531,-213v-3,120,-74,192,-182,215r0,116v-28,8,-58,8,-87,0r0,-106v-84,1,-152,-11,-211,-37v5,-44,17,-81,30,-120v87,37,290,65,290,-61v0,-87,-95,-90,-154,-120v-78,-39,-147,-73,-147,-188v0,-125,78,-192,192,-205r0,-106v29,-8,57,-8,87,0r0,103v59,5,104,17,155,34v-4,39,-15,77,-32,114v-43,-19,-89,-32,-153,-31v-102,-19,-129,110,-45,147v114,50,261,71,257,245"},"%":{"d":"746,-200v0,61,15,117,70,117v55,0,70,-56,70,-117v0,-62,-15,-117,-70,-117v-55,0,-70,55,-70,117xm1009,-200v0,126,-66,212,-193,212v-128,0,-193,-86,-193,-212v0,-126,64,-213,193,-213v128,0,193,87,193,213xm173,-506v0,61,15,117,70,117v55,0,70,-56,70,-117v0,-62,-15,-117,-70,-117v-55,0,-70,55,-70,117xm436,-506v0,126,-66,212,-193,212v-128,0,-193,-86,-193,-212v0,-126,64,-213,193,-213v128,0,193,87,193,213xm702,-709v47,-8,89,-8,139,0r-484,707v-48,8,-89,8,-138,0","w":1050},"&":{"d":"219,-544v0,115,165,69,272,78r118,-141r22,0r0,141r102,0v7,34,6,73,0,108r-102,0r0,122v-4,179,-128,248,-309,248v-154,0,-273,-60,-273,-216v0,-98,52,-165,120,-198v-47,-26,-91,-74,-91,-148v0,-177,211,-211,365,-158v0,38,-10,73,-31,105v-73,-29,-193,-30,-193,59xm338,-110v141,0,163,-104,155,-248r-168,0v-71,-1,-120,52,-119,124v2,81,43,124,132,124","w":763},"'":{"d":"179,-439v-40,7,-89,7,-129,0r0,-281v40,-7,89,-7,129,0r0,281","w":229},"(":{"d":"307,167v-39,7,-103,9,-141,0v-134,-189,-155,-624,-44,-859v14,-32,29,-59,44,-84v37,-9,103,-7,141,0v-67,117,-113,277,-113,471v0,194,46,355,113,472","w":357},")":{"d":"50,-776v39,-7,103,-9,141,0v135,189,154,623,44,859v-14,31,-29,59,-44,84v-37,9,-103,7,-141,0v67,-117,113,-278,113,-472v0,-194,-46,-354,-113,-471","w":357},"*":{"d":"302,-582v-30,5,-72,6,-99,0r11,-137v25,-4,51,-4,76,0xm36,-532v3,-26,14,-52,24,-72r134,31v-6,35,-16,67,-31,94xm412,-347v-18,18,-38,34,-62,45r-90,-104v26,-25,53,-44,80,-58xm445,-605v11,20,18,47,23,72r-127,54v-14,-28,-25,-60,-30,-94xm166,-463v27,14,54,33,80,58r-90,104v-24,-11,-44,-27,-62,-45","w":484},"+":{"d":"239,-293r-157,0v-8,-40,-8,-81,0,-121r157,0r0,-177v40,-8,81,-8,121,0r0,177r157,0v8,40,8,81,0,121r-157,0r0,177v-40,8,-81,8,-121,0r0,-177"},",":{"d":"100,-144v41,-10,97,-9,138,0r-73,256v-40,8,-92,8,-131,0","w":291},"-":{"d":"313,-336v8,40,8,83,0,123r-255,0v-8,-40,-8,-83,0,-123r255,0","w":371},".":{"d":"71,0v-8,-50,-8,-97,0,-147v50,-8,97,-8,147,0v8,51,8,97,0,147v-51,8,-97,8,-147,0","w":289},"\/":{"d":"255,-719v49,-8,93,-8,142,0r-244,719v-48,8,-93,8,-141,0","w":409},"0":{"d":"564,-324v0,193,-72,336,-263,336v-190,0,-259,-144,-259,-336v0,-193,71,-338,263,-338v190,0,259,145,259,338xm303,-540v-90,0,-111,98,-111,216v0,74,10,128,30,164v20,34,47,52,81,52v89,0,108,-99,108,-216v0,-74,-9,-128,-29,-164v-18,-34,-45,-52,-79,-52"},"1":{"d":"115,0v-7,-38,-7,-81,0,-120r145,0r0,-350r-123,49v-24,-31,-42,-66,-53,-107r287,-126r27,0r0,534r143,0v7,39,7,82,0,120r-426,0"},"2":{"d":"70,-624v157,-71,435,-51,425,155v-6,128,-81,194,-135,276r-53,71r213,0v8,40,8,83,0,122r-457,0r-7,-15r207,-270v37,-52,79,-89,83,-165v5,-113,-173,-98,-242,-58v-16,-34,-31,-72,-34,-116"},"3":{"d":"380,-183v-2,-94,-112,-109,-202,-90r-10,-15r134,-242r-220,0v-8,-40,-8,-82,0,-122r418,0r10,17r-161,267v109,2,172,71,172,176v0,175,-116,255,-290,259v-80,2,-132,-13,-191,-33v3,-43,18,-87,35,-117v109,43,308,50,305,-100"},"4":{"d":"499,59v-45,4,-93,7,-138,0r0,-140r-336,0r-9,-14r283,-572v50,6,91,20,125,47r-206,418r143,0r0,-160v45,-4,93,-7,138,0r0,160r72,0v8,38,8,84,0,121r-72,0r0,140"},"5":{"d":"237,-283v-45,0,-79,8,-112,25r-15,-12r15,-382r358,0v8,40,8,82,0,122r-230,0r-6,143v158,-29,282,46,279,202v-4,178,-124,252,-305,252v-62,0,-121,-13,-170,-30v4,-44,21,-84,35,-120v103,43,294,44,291,-93v-2,-77,-52,-108,-140,-107"},"6":{"d":"314,12v-175,0,-260,-108,-257,-292v4,-269,136,-429,396,-445v12,36,18,78,3,118v-145,7,-223,90,-249,215v29,-41,73,-74,145,-72v138,4,215,89,215,232v0,155,-101,244,-253,244xm206,-234v0,77,35,130,105,130v67,0,108,-49,108,-125v0,-79,-36,-123,-104,-123v-70,0,-109,44,-109,118"},"7":{"d":"370,-530r-301,0v-8,-40,-8,-82,0,-122r492,0r6,12r-294,714v-52,-12,-93,-28,-132,-57"},"8":{"d":"47,-190v0,-101,55,-156,122,-191v-48,-28,-92,-82,-90,-154v4,-124,94,-184,221,-184v127,0,217,60,221,184v2,73,-44,125,-91,154v67,34,123,90,123,191v0,144,-110,202,-253,202v-143,0,-253,-58,-253,-202xm300,-103v69,0,109,-34,109,-99v0,-71,-54,-104,-110,-124v-57,20,-107,54,-108,124v0,64,42,99,109,99xm300,-608v-87,0,-112,95,-64,144v17,17,38,30,64,39v48,-18,89,-43,89,-105v-1,-50,-35,-78,-89,-78"},"9":{"d":"299,-662v175,0,260,108,257,292v-4,268,-135,430,-396,445v-12,-36,-18,-77,-3,-118v145,-7,223,-91,249,-215v-29,41,-73,74,-145,72v-138,-4,-215,-88,-215,-232v0,-155,101,-244,253,-244xm194,-421v0,79,36,123,104,123v70,0,109,-44,109,-118v0,-77,-35,-130,-105,-130v-67,0,-108,49,-108,125"},":":{"d":"71,0v-8,-50,-8,-97,0,-147v50,-8,97,-8,147,0v8,51,8,97,0,147v-51,8,-97,8,-147,0xm71,-370v-8,-50,-8,-97,0,-147v50,-8,97,-8,147,0v8,51,8,97,0,147v-51,8,-97,8,-147,0","w":289},";":{"d":"94,-144v41,-10,97,-9,138,0r-73,256v-40,8,-92,8,-131,0xm92,-370v-8,-50,-8,-97,0,-147v50,-8,97,-8,147,0v8,51,8,97,0,147v-51,8,-97,8,-147,0","w":310},"<":{"d":"509,-577v8,50,8,84,1,129r-302,109r302,103v7,41,7,93,-1,135r-414,-164v-11,-51,-13,-99,0,-149"},"=":{"d":"511,-511v8,40,8,81,0,121r-421,0v-8,-40,-8,-81,0,-121r421,0xm511,-306v8,40,8,81,0,121r-421,0v-8,-40,-8,-81,0,-121r421,0"},">":{"d":"392,-339r-302,-103v-7,-41,-7,-93,1,-135r414,164v11,53,13,98,0,149r-414,163v-8,-50,-8,-84,-1,-129"},"?":{"d":"463,-515v0,112,-81,164,-158,198r0,91v-45,8,-88,8,-130,0r0,-172v68,-14,139,-34,142,-113v3,-110,-167,-98,-240,-63v-17,-32,-31,-68,-34,-112v55,-19,105,-33,178,-33v148,0,242,67,242,204xm165,0v-8,-50,-8,-97,0,-147v50,-8,97,-8,147,0v8,51,8,97,0,147v-51,8,-97,8,-147,0","w":493},"@":{"d":"421,-51v-101,-3,-155,-61,-155,-165v0,-145,73,-239,174,-286v81,-38,203,-23,281,4r-64,339v7,5,18,8,33,8v113,0,151,-122,154,-240v4,-158,-105,-238,-267,-237v-202,2,-325,106,-383,254v-19,48,-28,99,-28,152v1,177,99,269,272,269v68,0,127,-8,176,-27v12,28,23,61,31,92v-56,28,-139,38,-223,38v-235,0,-379,-127,-379,-368v0,-233,127,-387,303,-464v68,-32,150,-47,245,-47v224,0,371,112,371,338v0,145,-71,252,-168,309v-64,38,-178,45,-227,-7v-43,20,-80,39,-146,38xm399,-239v-4,83,69,99,137,74r43,-248v-117,-25,-175,65,-180,174","w":1005},"A":{"d":"237,-719v52,-8,110,-8,163,0r225,719v-52,8,-104,8,-154,0r-40,-144r-238,0r-41,144v-49,8,-94,8,-142,0xm397,-265r-83,-302r-87,302r170,0","w":636},"B":{"d":"566,-202v4,238,-275,226,-494,202r0,-720v185,-22,455,-33,447,176v-3,83,-44,141,-112,158v92,16,157,74,159,184xm416,-211v0,-105,-93,-111,-199,-107r0,208v96,13,199,0,199,-101xm379,-529v0,-86,-80,-102,-162,-91r0,192v93,5,162,-10,162,-101","w":605},"C":{"d":"417,-114v55,0,83,-7,128,-22v16,35,28,74,34,117v-63,23,-106,31,-183,31v-229,0,-344,-143,-344,-370v0,-225,116,-373,341,-373v74,0,118,8,176,31v-3,44,-20,80,-34,116v-45,-15,-70,-22,-126,-22v-139,0,-199,97,-199,248v0,163,69,244,207,244","w":618},"D":{"d":"252,12v-67,0,-121,-5,-179,-12r0,-719v60,-7,119,-12,190,-12v251,0,387,125,386,376v0,257,-138,366,-397,367xm494,-358v0,-179,-91,-267,-274,-244r0,486v181,22,274,-61,274,-242","w":700},"E":{"d":"70,-719r408,0v8,40,8,85,0,124r-262,0r0,156r208,0v8,43,8,83,0,125r-208,0r0,190r269,0v8,40,8,85,0,124r-415,0r0,-719","w":531},"F":{"d":"70,-719r408,0v8,40,8,85,0,124r-262,0r0,169r208,0v8,43,8,83,0,125r-208,0r0,301v-51,8,-96,8,-146,0r0,-719","w":507},"G":{"d":"209,-358v0,173,86,268,256,238r0,-253v50,-8,94,-8,145,0r0,353v-57,22,-138,32,-207,32v-233,0,-352,-140,-352,-370v0,-225,116,-373,341,-373v73,0,121,7,176,31v-3,44,-20,80,-34,116v-45,-15,-70,-22,-126,-22v-139,0,-199,97,-199,248","w":668},"H":{"d":"70,-719v50,-8,97,-8,147,0r0,282r241,0r0,-282v50,-8,97,-8,147,0r0,719v-51,8,-97,8,-147,0r0,-311r-241,0r0,311v-51,8,-97,8,-147,0r0,-719","w":675},"I":{"d":"70,-719v50,-8,97,-8,147,0r0,719v-51,8,-97,8,-147,0r0,-719","w":287},"J":{"d":"42,-121v78,21,158,3,158,-91r0,-383r-119,0v-8,-37,-8,-86,0,-124r265,0r0,528v6,173,-153,229,-319,191v-5,-45,0,-81,15,-121","w":411},"K":{"d":"237,-362r195,-357v52,-10,108,-5,160,0r-197,347r214,372v-54,4,-108,10,-162,0xm216,1v-46,7,-100,7,-146,0r0,-721v46,-7,100,-7,146,0r0,721","w":619},"L":{"d":"463,-126v7,40,7,86,0,126r-393,0r0,-719v50,-8,93,-8,144,0r0,593r249,0","w":493},"M":{"d":"90,-719v53,-8,102,-8,154,0r165,412r170,-412v42,-8,98,-8,142,0r34,719v-49,8,-92,8,-139,0r-18,-488r-146,338v-35,5,-78,8,-112,0r-136,-345r-14,495v-44,8,-83,8,-128,0","w":817},"N":{"d":"70,-719v42,-8,79,-8,121,0r278,458r0,-458v45,-7,87,-9,129,0r0,719v-44,8,-75,8,-119,0r-280,-457r0,457v-42,8,-87,8,-129,0r0,-719","w":668},"O":{"d":"675,-358v0,220,-92,370,-312,370v-220,0,-312,-150,-312,-370v0,-220,91,-373,312,-373v221,0,312,153,312,373xm518,-358v-1,-143,-30,-248,-154,-248v-105,0,-157,83,-157,248v0,165,52,248,156,248v103,0,155,-83,155,-248","w":726},"P":{"d":"216,0v-46,7,-99,7,-146,0r0,-722v31,-3,62,-5,93,-6v216,-18,383,33,383,248v0,194,-136,262,-330,249r0,231xm396,-478v0,-105,-74,-145,-180,-129r0,255v103,13,180,-23,180,-126","w":583},"Q":{"d":"693,56v-3,41,-9,84,-23,117r-248,-40v6,-41,13,-81,26,-115xm675,-358v0,220,-92,370,-312,370v-220,0,-312,-150,-312,-370v0,-220,91,-373,312,-373v221,0,312,153,312,373xm518,-358v-1,-143,-30,-248,-154,-248v-105,0,-157,83,-157,248v0,165,52,248,156,248v103,0,155,-83,155,-248","w":726},"R":{"d":"223,0v-48,4,-99,8,-146,0r0,-719v29,-3,57,-6,83,-9v199,-16,387,23,386,222v-1,105,-55,161,-120,201r175,304v-54,4,-109,10,-162,0r-188,-334v63,-34,138,-59,141,-153v3,-96,-74,-134,-169,-119r0,607","w":611},"S":{"d":"65,-149v87,42,293,68,293,-61v0,-90,-93,-96,-157,-123v-82,-35,-147,-75,-147,-189v0,-217,257,-244,434,-174v-4,39,-15,77,-32,114v-67,-31,-251,-71,-251,47v0,80,86,84,143,108v92,39,167,79,167,210v0,231,-287,270,-480,192v5,-43,17,-86,30,-124","w":550},"T":{"d":"357,0v-48,4,-99,8,-147,0r0,-595r-179,0v-8,-39,-8,-84,0,-124r505,0v8,40,8,85,0,124r-179,0r0,595","w":567},"U":{"d":"336,12v-204,0,-270,-125,-270,-327r0,-404v46,-7,100,-7,146,0r0,373v1,124,2,232,124,232v122,0,123,-109,123,-232r0,-373v47,-7,101,-7,147,0r0,404v2,202,-66,327,-270,327","w":671},"V":{"d":"10,-719v54,-5,103,-10,158,0r157,567r159,-567v48,-7,103,-7,151,0r-232,719v-52,8,-111,8,-163,0","w":645},"W":{"d":"16,-719v44,-7,109,-10,155,0r103,541r124,-541v46,-7,89,-9,137,0r129,555r103,-555v44,-9,96,-6,140,0r-173,719v-52,8,-102,8,-158,0r-115,-479r-124,479v-52,3,-98,10,-150,0","w":921},"X":{"d":"615,0v-52,5,-102,10,-153,-1r-141,-372r112,-344v51,-8,103,-8,153,-1r-127,342xm47,-718v50,-7,102,-7,153,1r114,344r-143,372v-52,9,-101,9,-153,1r158,-376","w":633},"Y":{"d":"381,1v-47,7,-100,7,-147,0r0,-258r-224,-462v54,-8,107,-8,160,0r142,326r140,-326v51,-8,100,-8,153,0r-224,462r0,258","w":615},"Z":{"d":"38,-10r302,-585r-276,0v-8,-40,-8,-85,0,-124r482,0r8,12r-299,583r284,0v8,40,8,85,0,124r-494,0","w":580},"[":{"d":"288,54v8,39,8,78,0,114r-238,0r0,-944r238,0v8,36,8,75,0,114r-100,0r0,716r100,0","w":344},"\\":{"d":"15,-719v49,-8,92,-8,142,0r243,719v-48,8,-93,8,-141,0","w":414},"]":{"d":"56,168v-8,-36,-8,-75,0,-114r100,0r0,-716r-100,0v-8,-39,-8,-78,0,-114r238,0r0,944r-238,0","w":344},"^":{"d":"499,-363v-40,10,-91,10,-130,1r-98,-228r-91,228v-41,8,-89,9,-130,-1r158,-356v45,-8,88,-8,135,0","w":549},"_":{"d":"7,100v-7,-31,-7,-67,0,-98r490,0v7,31,7,67,0,98r-490,0","w":504},"`":{"d":"108,-719v52,-9,121,-8,173,0r112,123v-43,9,-93,7,-134,0","w":500},"a":{"d":"171,-168v0,78,93,76,157,63r0,-132v-70,-12,-157,-5,-157,69xm38,-162v0,-145,139,-179,290,-166v9,-118,-137,-96,-225,-68v-17,-33,-28,-57,-28,-104v50,-18,109,-29,170,-29v140,0,221,65,221,210r0,300v-53,16,-123,32,-198,31v-133,-1,-230,-41,-230,-174","w":522},"b":{"d":"254,12v-68,0,-135,-10,-186,-29r0,-714v48,-8,93,-8,141,0r0,264v20,-36,72,-64,130,-62v148,5,210,107,210,262v0,184,-111,279,-295,279xm300,-410v-60,0,-91,42,-91,110r0,188v114,25,197,-30,192,-151v-3,-87,-20,-147,-101,-147","w":590},"c":{"d":"311,-103v45,1,73,-7,106,-19v16,28,28,63,28,109v-48,20,-88,25,-148,25v-170,0,-256,-103,-256,-270v0,-165,84,-267,250,-271v61,-1,104,8,148,26v-1,38,-10,78,-25,106v-37,-12,-59,-17,-104,-17v-88,0,-125,63,-125,156v0,98,39,153,126,155","w":475},"d":{"d":"41,-252v0,-189,138,-304,339,-267r0,-212v44,-7,97,-7,141,0r0,714v-67,19,-123,30,-213,29v-168,-3,-267,-89,-267,-264xm187,-252v-6,118,83,168,193,139r0,-297v-26,-6,-35,-8,-64,-8v-92,0,-125,73,-129,166","w":588},"e":{"d":"293,-529v170,0,246,136,222,314r-332,0v-2,133,179,129,279,89v15,27,27,67,28,108v-52,20,-111,30,-176,30v-178,-1,-271,-93,-271,-267v0,-165,84,-274,250,-274xm386,-314v-2,-60,-34,-107,-95,-107v-70,0,-100,42,-107,107r202,0","w":562},"f":{"d":"365,-517v7,35,7,74,0,108r-120,0r0,409v-48,8,-93,8,-141,0r0,-409r-82,0v-7,-35,-7,-74,0,-108r82,0v-17,-182,130,-257,298,-214v-3,45,-8,77,-21,112v-76,-20,-151,0,-136,102r120,0","w":396},"g":{"d":"195,-172v-25,12,-34,51,-15,73v38,21,124,11,180,13v111,5,177,46,177,150v0,138,-137,185,-284,185v-119,0,-220,-21,-220,-133v0,-66,36,-97,79,-125v-29,-18,-50,-42,-50,-87v1,-58,26,-80,63,-108v-42,-30,-73,-75,-73,-141v0,-123,92,-181,220,-183v67,-1,126,24,162,55v27,-34,60,-50,123,-50v7,36,7,80,0,117r-81,0v8,16,13,34,13,61v0,148,-145,204,-294,173xm402,73v3,-75,-102,-50,-170,-55v-47,-3,-75,20,-75,64v0,55,47,64,105,65v68,1,138,-19,140,-74xm192,-345v0,56,24,90,81,90v56,0,79,-35,79,-90v0,-55,-23,-91,-79,-91v-57,0,-81,35,-81,91","w":566},"h":{"d":"209,1v-44,7,-97,7,-141,0r0,-732v43,-7,97,-7,141,0r0,275v30,-39,72,-73,143,-73v122,1,176,69,175,199r0,331v-44,7,-98,7,-142,0r0,-293v-1,-65,-14,-112,-75,-112v-74,0,-101,53,-101,133r0,272","w":586},"i":{"d":"31,-409v-8,-33,-8,-74,0,-108r206,0r0,517v-48,8,-90,8,-139,0r0,-409r-67,0xm223,-604v-44,7,-102,7,-146,0v-8,-46,-8,-87,0,-134v44,-8,102,-8,146,0v7,41,7,93,0,134","w":307},"j":{"d":"21,84v59,0,79,-36,78,-98r0,-395r-68,0v-8,-33,-8,-74,0,-108r206,0r0,528v1,127,-64,180,-187,181v-34,0,-71,-5,-99,-11v0,-41,5,-74,18,-103v14,3,35,6,52,6xm222,-607v-43,11,-102,11,-145,0v-8,-43,-8,-86,0,-128v43,-12,102,-12,145,0v8,42,8,85,0,128","w":307},"k":{"d":"61,-731v46,-8,95,-8,141,0r0,731v-46,8,-95,8,-141,0r0,-731xm222,-271r128,-246v50,-8,104,-8,153,0r-132,239r154,278v-54,8,-99,8,-153,0","w":535},"l":{"d":"316,-3v-140,32,-250,-21,-250,-172r0,-556v48,-8,93,-8,141,0r0,525v0,59,6,100,64,98v12,0,25,-2,36,-4v9,37,14,71,9,109","w":324},"m":{"d":"306,-404v-73,0,-94,54,-94,133r0,271v-48,8,-94,8,-142,0r0,-517v34,-8,82,-8,116,0v9,18,12,48,16,72v27,-46,70,-84,143,-84v81,0,132,31,155,92v27,-47,74,-94,149,-92v124,1,171,70,171,200r0,329v-48,8,-94,8,-142,0r0,-292v-2,-65,-7,-112,-68,-112v-70,0,-94,50,-94,125r0,279v-48,8,-94,8,-142,0r0,-292v-2,-65,-7,-112,-68,-112","w":879},"n":{"d":"312,-404v-74,0,-100,53,-100,133r0,271v-48,8,-94,8,-142,0r0,-517v34,-8,82,-8,116,0v9,18,12,48,16,72v31,-44,74,-84,149,-84v124,0,178,68,177,199r0,330v-48,8,-94,8,-142,0r0,-292v-1,-65,-13,-112,-74,-112","w":587},"o":{"d":"538,-257v0,165,-83,269,-249,269v-167,0,-248,-105,-248,-269v0,-165,81,-272,248,-272v167,0,249,106,249,272xm185,-257v0,92,21,161,104,161v84,0,105,-69,105,-161v0,-93,-21,-161,-105,-161v-83,0,-104,69,-104,161","w":580},"p":{"d":"550,-267v0,199,-133,300,-341,274r0,230v-45,7,-97,7,-142,0r0,-755v36,-7,78,-7,115,1v9,19,13,49,17,74v27,-48,72,-86,146,-86v145,0,205,109,205,262xm301,-407v-127,0,-85,175,-92,297v113,31,196,-29,190,-153v-4,-79,-21,-144,-98,-144","w":591},"q":{"d":"520,237v-44,7,-97,7,-141,0r-1,-233v-196,28,-344,-55,-337,-252v6,-175,111,-277,290,-281v75,-2,129,10,189,23r0,743xm189,-248v0,117,81,164,189,135r0,-294v-118,-30,-189,46,-189,159","w":587},"r":{"d":"212,1v-44,7,-97,7,-142,0r0,-518v36,-8,81,-8,116,1v9,19,12,48,16,73v32,-48,90,-96,176,-76v7,38,5,89,-3,125v-109,-15,-163,36,-163,149r0,246","w":402},"s":{"d":"193,-98v45,0,94,-11,94,-56v0,-58,-72,-55,-117,-71v-69,-25,-119,-53,-119,-142v0,-108,88,-164,203,-162v59,0,107,11,154,28v-3,36,-15,77,-29,103v-31,-13,-71,-25,-114,-25v-39,0,-72,9,-72,44v0,53,68,51,109,65v71,25,127,57,123,151v-5,121,-99,173,-227,175v-65,1,-111,-10,-158,-28v3,-40,15,-77,29,-108v40,15,74,26,124,26","w":460},"t":{"d":"271,6v-123,-1,-188,-54,-187,-181r0,-234r-65,0r-5,-20r187,-239r23,0r0,151r121,0v7,34,6,73,0,108r-121,0r0,203v-9,87,50,115,131,92v11,30,16,72,11,109v-31,7,-62,11,-95,11","w":383},"u":{"d":"319,12v-174,0,-258,-72,-258,-251r0,-278v48,-8,94,-8,142,0r0,274v-1,87,22,139,107,138v25,0,45,-2,62,-7r0,-405v48,-8,93,-8,141,0r0,497v-47,16,-126,32,-194,32","w":572},"v":{"d":"5,-516v49,-10,109,-10,157,-1r113,385r111,-385v48,-8,104,-9,153,1r-196,516v-45,6,-102,8,-145,-1","w":544},"w":{"d":"7,-516v47,-10,106,-10,153,-1r83,382r96,-382v41,-8,102,-7,141,0r94,375r82,-375v45,-8,97,-9,143,1r-161,516v-44,6,-100,8,-142,-1r-94,-342r-97,343v-45,6,-99,8,-142,-1","w":806},"x":{"d":"133,-267r-99,-250v46,-8,101,-8,150,0r79,253r-103,264v-50,8,-94,8,-145,0xm270,-264r80,-253v48,-8,102,-8,150,0r-100,250r119,267v-51,8,-95,8,-145,0","w":534},"y":{"d":"253,0v-30,0,-63,4,-91,0r-152,-517v47,-10,105,-8,152,0r108,451r122,-451v46,-8,95,-9,142,0r-193,639v-19,111,-139,151,-264,114v-4,-40,7,-74,18,-103v27,8,77,14,101,-3v35,-23,43,-84,57,-130","w":542},"z":{"d":"457,-109v7,34,7,75,0,109r-422,0r-8,-12r233,-396r-198,0v-7,-34,-7,-75,0,-109r407,0r5,12r-237,396r220,0","w":493},"{":{"d":"281,-75v0,83,10,139,100,129v8,39,8,72,0,110v-160,14,-238,-57,-234,-214r-3,-92v0,-87,-32,-131,-94,-157r0,-26v62,-26,94,-70,94,-157v0,-130,2,-259,106,-292v33,-10,84,-16,131,-13v8,39,8,72,0,110v-89,-9,-100,45,-100,129v0,114,-6,204,-84,236v77,33,84,122,84,237","w":437},"|":{"d":"102,-776v46,-8,91,-8,137,0r0,944v-47,8,-91,8,-137,0r0,-944","w":341},"}":{"d":"156,-548v0,-84,-10,-138,-100,-129v-8,-38,-8,-71,0,-110v121,-8,200,26,223,122v24,96,-15,257,63,313v13,9,27,19,45,27r0,26v-62,26,-94,70,-94,157v0,131,-2,260,-107,293v-32,10,-83,16,-130,13v-8,-38,-8,-71,0,-110v89,9,100,-45,100,-129v0,-116,7,-204,84,-237v-78,-32,-84,-122,-84,-236","w":437},"~":{"d":"65,-335v-22,-25,-44,-53,-53,-88v27,-32,76,-60,137,-59v68,2,108,40,177,40v42,0,56,-11,85,-36v25,24,42,56,54,91v-27,32,-77,59,-138,57v-92,-3,-193,-82,-262,-5","w":476},"\u00a0":{"w":220}}});