/*
 * clearingInput: a jQuery plugin
 *
 * clearingInput is a simple jQuery plugin that provides example/label text
 * inside text inputs that automatically clears when the input is focused.
 * Common uses are for a hint/example, or as a label when space is limited.
 *
 * For usage and examples, visit:
 * http://github.com/alexrabarts/jquery-clearinginput
 *
 * Licensed under the MIT:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Copyright (c) 2008 Stateless Systems (http://statelesssystems.com)
 *
 * @author   Alex Rabarts (alexrabarts -at- gmail -dawt- com)
 * @requires jQuery v1.2 or later
 * @version  0.1.1
 */

(function($){$.extend($.fn,{clearingInput:function(options){var defaults={blurClass:'blur'};options=$.extend(defaults,options);return this.each(function(){var input=$(this).addClass(options.blurClass);var form=input.parents('form:first');var label,text;text=options.text||textFromLabel()||input.val();if(text){input.val(text);input.blur(function(){if(input.val()===''){input.val(text).addClass(options.blurClass);}}).focus(function(){if(input.val()===text){input.val('');}
input.removeClass(options.blurClass);});form.submit(function(){if(input.hasClass(options.blurClass)){input.val('');}});input.blur();}
function textFromLabel(){label=form.find('label[for='+input.attr('id')+']');return label?label.css({position:'absolute',left:'-9999px'}).text():'';}});}});})(jQuery);

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */
;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"></span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}},o.delay);},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu;},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone());};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass);});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this));}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '));});};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)
this.toggleClass(sf.c.shadowClass+'-off');};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul);});return this;}});})(jQuery);

/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.71 (11-AUG-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 */
;(function($){var ver="2.71";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}if(opts2.timeout||opts2.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev);},opts2.continuous?10:opts2.timeout+(opts2.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pagerEvent!="click"){$a.click(function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.52
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());


/* FRANKLIN GOTHIC
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ITC Franklin Gothic is a registered trademark of International Typeface
 * Corporation.
 */
Cufon.registerFont({"w":216,"face":{"font-family":"ITC Franklin Gothic Book","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":"-27 -273 360 69","underline-thickness":"22.32","underline-position":"-34.56","stemh":"23","stemv":"28","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":108},"!":{"d":"33,-39r38,0r0,39r-38,0r0,-39xm60,-62r-16,0r-13,-185r43,0","w":108},"\"":{"d":"37,-247r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89xm94,-247r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89","w":165},"#":{"d":"84,-247r24,0r-13,70r48,0r13,-70r24,0r-12,70r35,0r0,23r-41,0r-9,57r38,0r0,22r-44,0r-14,75r-24,0r14,-75r-48,0r-15,75r-23,0r13,-75r-37,0r0,-22r43,0r10,-57r-40,0r0,-23r45,0xm90,-154r-10,57r48,0r10,-57r-48,0"},"$":{"d":"195,-74v0,38,-35,66,-74,66r0,35r-22,0r0,-35v-36,-4,-66,-20,-78,-56r25,-10v8,23,28,40,53,41r0,-84v-32,-5,-69,-25,-68,-61v0,-41,31,-60,68,-65r0,-30r22,0r0,30v32,3,57,17,69,48r-24,8v-6,-21,-24,-31,-45,-32r0,78v37,3,74,28,74,67xm121,-112r0,79v23,0,46,-14,46,-39v0,-27,-23,-37,-46,-40xm99,-145r0,-74v-21,1,-41,13,-41,36v0,24,20,34,41,38"},"%":{"d":"64,0r-26,0r150,-247r26,0xm191,-125v69,0,70,128,1,129v-69,-1,-71,-128,-1,-129xm191,-107v-24,0,-29,26,-29,47v0,18,5,45,30,45v25,0,29,-27,29,-45v0,-21,-6,-47,-30,-47xm60,-251v69,1,70,128,0,129v-68,-1,-69,-128,0,-129xm60,-232v-24,0,-29,25,-29,46v0,18,4,46,29,46v25,0,30,-28,30,-46v0,-21,-6,-46,-30,-46","w":252},"&":{"d":"150,-39r-59,-86v-26,11,-45,24,-45,54v0,55,73,65,104,32xm111,-228v-45,2,-28,55,-8,75v18,-10,41,-20,41,-44v0,-18,-15,-31,-33,-31xm164,-21v-48,49,-150,21,-149,-48v0,-37,30,-65,64,-75v-35,-34,-31,-108,31,-107v32,0,58,20,58,53v0,33,-25,50,-52,63r52,78v18,-22,28,-50,33,-78r27,5v-7,33,-23,66,-46,92v11,16,29,13,50,11r0,26v-32,5,-52,1,-68,-20","w":244},"'":{"d":"37,-247r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89","w":108},"(":{"d":"90,62r-18,0v-72,-87,-70,-221,-1,-309r19,0v-61,91,-59,217,0,309","w":108},")":{"d":"36,62r-18,0v59,-92,61,-218,0,-309r19,0v69,88,71,222,-1,309","w":108},"*":{"d":"169,-124r-52,-33r3,62r-22,0r3,-62r-53,33r-11,-18r55,-29r-55,-29r11,-18r53,33r-3,-62r22,0r-3,62r52,-33r10,18r-56,29r56,29"},"+":{"d":"96,-197r24,0r0,81r81,0r0,24r-81,0r0,81r-24,0r0,-81r-81,0r0,-24r81,0r0,-81"},",":{"d":"77,-41r0,37r-27,50r-16,0r22,-46r-19,0r0,-41r40,0","w":108},"-":{"d":"77,-104r0,23r-77,0r0,-23r77,0","w":79},".":{"d":"76,-41r0,41r-40,0r0,-41r40,0","w":108},"\/":{"d":"32,62r-24,0r148,-309r25,0","w":187},"0":{"d":"106,-251v64,0,96,68,96,129v0,55,-27,126,-93,126v-68,0,-95,-70,-95,-127v0,-56,24,-128,92,-128xm109,-20v50,0,61,-59,61,-98v0,-41,-10,-109,-64,-109v-51,0,-60,63,-60,102v0,41,10,105,63,105"},"1":{"d":"200,-23r0,23r-173,0r0,-23r74,0r0,-187v-20,21,-42,40,-68,53r0,-31v29,-15,56,-33,76,-59r22,0r0,224r69,0"},"2":{"d":"196,-26r0,26r-175,0r0,-26r100,-78v22,-20,44,-41,44,-73v0,-31,-28,-49,-56,-49v-32,0,-58,25,-59,56r-29,-8v8,-94,175,-98,175,1v0,78,-89,108,-136,151r136,0"},"3":{"d":"170,-69v0,-40,-48,-52,-95,-47r0,-24v44,4,86,-5,86,-43v0,-61,-99,-53,-110,-3r-28,-8v14,-37,49,-57,88,-57v41,0,81,22,81,67v0,27,-21,50,-47,54v32,5,57,27,57,61v0,91,-165,99,-188,13r29,-10v11,63,127,59,127,-3"},"4":{"d":"164,0r-30,0r0,-58r-122,0r0,-20r113,-169r39,0r0,166r40,0r0,23r-40,0r0,58xm134,-81r0,-142r-90,142r90,0"},"5":{"d":"183,-247r-3,27r-121,0r-6,79v47,-53,146,-18,146,57v0,101,-156,118,-182,29r27,-9v16,64,125,54,125,-20v0,-65,-91,-78,-116,-25r-25,-5r8,-133r147,0"},"6":{"d":"112,4v-142,0,-119,-255,5,-255v39,0,67,19,79,55r-28,8v-9,-23,-25,-37,-51,-37v-61,0,-72,65,-72,113v12,-30,41,-49,74,-49v46,0,81,35,81,80v0,49,-40,85,-88,85xm52,-76v-1,30,29,55,60,55v33,0,59,-25,59,-58v0,-31,-25,-58,-57,-58v-33,0,-62,27,-62,61"},"7":{"d":"191,-228v-48,56,-88,132,-88,228r-31,0v0,-81,35,-160,87,-220r-134,0r3,-27r163,0r0,19"},"8":{"d":"173,-62v0,-33,-41,-46,-68,-53v-26,5,-62,20,-62,51v0,35,38,45,66,45v26,0,64,-11,64,-43xm203,-66v-2,97,-190,90,-190,3v0,-35,28,-54,58,-65v-25,-9,-46,-30,-46,-59v2,-88,167,-83,168,-2v0,30,-21,48,-48,57v30,13,58,30,58,66xm56,-190v0,26,31,42,53,47v23,-6,57,-17,57,-45v0,-31,-29,-40,-55,-40v-23,0,-55,10,-55,38"},"9":{"d":"22,-46r25,-9v9,22,29,34,53,34v56,1,73,-66,70,-109v-31,73,-153,48,-153,-37v0,-48,37,-84,85,-84v73,0,97,59,97,122v0,62,-25,133,-99,133v-35,0,-66,-16,-78,-50xm105,-111v32,0,60,-26,60,-57v0,-34,-26,-57,-60,-57v-35,0,-59,25,-59,59v0,34,26,55,59,55"},":":{"d":"76,-41r0,41r-40,0r0,-41r40,0xm76,-183r0,41r-40,0r0,-41r40,0","w":108},";":{"d":"77,-41r0,37r-27,50r-16,0r22,-46r-19,0r0,-41r40,0xm77,-183r0,41r-40,0r0,-41r40,0","w":108},"<":{"d":"196,-184r0,22r-142,58r142,59r0,22r-176,-75r0,-12"},"=":{"d":"15,-127r0,-23r186,0r0,23r-186,0xm15,-57r0,-24r186,0r0,24r-186,0"},">":{"d":"196,-110r0,12r-176,75r0,-22r141,-59r-141,-58r0,-22"},"?":{"d":"106,-61r-26,0v-4,-40,7,-62,39,-77v18,-8,30,-22,30,-43v0,-29,-23,-44,-50,-44v-33,0,-51,23,-56,53r-27,-6v2,-92,162,-99,165,-3v1,43,-41,60,-69,80v-9,11,-5,24,-6,40xm112,-35r0,35r-36,0r0,-35r36,0","w":194},"@":{"d":"194,-182r23,0r-28,86v-4,13,3,24,17,21v31,-6,52,-44,47,-75v-9,-49,-56,-79,-103,-80v-58,-2,-120,62,-113,121v9,79,91,108,162,81r9,19v-81,33,-185,-2,-195,-89v-9,-82,61,-157,148,-153v54,3,111,42,114,100v2,45,-31,106,-91,96v-13,-3,-18,-15,-19,-21v-3,9,-38,30,-57,18v-55,-18,-21,-104,5,-117v18,-19,70,-17,74,12xm140,-75v26,-8,60,-81,19,-91v-40,-10,-70,42,-47,81v8,13,21,12,28,10","w":288},"A":{"d":"200,0r-32,0r-25,-72r-91,0r-22,72r-26,0r80,-247r36,0xm136,-95r-37,-119r-39,119r76,0","w":201},"B":{"d":"176,-69v1,-52,-58,-51,-116,-48r0,91v54,1,115,7,116,-43xm168,-183v0,-46,-58,-40,-108,-39r0,81v52,1,108,7,108,-42xm207,-68v0,43,-41,68,-85,68r-93,0r0,-247r93,0v39,-4,77,23,77,60v0,28,-16,50,-43,56v31,6,51,31,51,63","w":223},"C":{"d":"49,-123v-1,48,20,101,67,101v38,0,55,-29,63,-61r28,6v-12,47,-39,81,-91,81v-136,0,-138,-256,2,-255v50,0,79,34,89,79r-29,6v-9,-31,-24,-59,-61,-59v-54,0,-68,59,-68,102","w":223},"D":{"d":"224,-124v0,61,-41,124,-105,124r-88,0r0,-247r78,0v68,-7,115,59,115,123xm192,-124v0,-49,-31,-104,-85,-97r-45,0r0,195r45,0v52,6,85,-47,85,-98","w":237},"E":{"d":"190,-27r0,27r-159,0r0,-247r156,0r0,27r-125,0r0,78r99,0r0,25r-99,0r0,90r128,0","w":201},"F":{"d":"60,0r-30,0r0,-247r151,0r0,27r-121,0r0,78r100,0r0,25r-100,0r0,117","w":172},"G":{"d":"51,-122v0,48,23,102,71,100v43,-1,66,-31,62,-77r-61,0r0,-26r93,0r0,127r-19,0r-8,-31v-15,23,-42,33,-69,33v-63,0,-103,-63,-103,-125v0,-65,34,-130,107,-130v47,0,77,27,89,71r-29,8v-6,-31,-30,-53,-62,-53v-56,0,-71,58,-71,103","w":237},"H":{"d":"206,0r-31,0r0,-117r-115,0r0,117r-31,0r0,-247r31,0r0,103r115,0r0,-103r31,0r0,247","w":237},"I":{"d":"62,0r-31,0r0,-247r31,0r0,247","w":93},"J":{"d":"116,-81v7,63,-46,102,-110,80r0,-26v25,5,56,10,71,-10v10,-12,8,-29,8,-44r0,-166r31,0r0,166","w":144},"K":{"d":"226,0r-34,0r-74,-136r-56,70r0,66r-31,0r0,-247r31,0r0,143r111,-143r34,0r-67,86","w":223},"L":{"d":"176,-27r0,27r-146,0r0,-247r31,0r0,220r115,0","w":180},"M":{"d":"56,-216r-1,216r-26,0r0,-247r46,0r74,198r73,-198r45,0r0,247r-30,0r0,-216r-2,0r-78,216r-21,0","w":295},"N":{"d":"211,0r-30,0r-126,-215r0,215r-25,0r0,-247r38,0r117,201r0,-201r26,0r0,247","w":237},"O":{"d":"118,4v-71,0,-102,-64,-102,-126v0,-62,30,-129,101,-129v69,0,102,64,102,125v0,60,-31,130,-101,130xm186,-125v0,-47,-21,-100,-68,-100v-55,0,-70,60,-70,104v0,42,18,99,70,99v53,0,68,-61,68,-103","w":237},"P":{"d":"190,-173v-2,64,-62,81,-136,73r0,100r-31,0r0,-247r83,0v45,-5,85,31,84,74xm159,-173v0,-27,-21,-48,-51,-48r-54,0r0,95v53,3,105,2,105,-47","w":201},"Q":{"d":"117,-223v-50,0,-69,52,-69,102v0,43,14,99,67,99v57,0,71,-54,71,-101v0,-46,-13,-100,-69,-100xm118,4v-143,-1,-131,-258,-1,-255v130,3,138,220,26,251v-3,36,30,34,61,30r0,24v-43,14,-88,-3,-86,-50","w":237},"R":{"d":"122,-247v43,-4,82,28,82,69v0,29,-17,56,-46,64r49,114r-33,0r-45,-107r-69,0r0,107r-31,0r0,-247r93,0xm173,-178v0,-49,-60,-43,-113,-42r0,88v55,2,113,6,113,-46","w":223},"S":{"d":"184,-120v55,50,2,124,-69,124v-50,0,-83,-23,-100,-71r28,-6v10,34,38,50,73,50v29,0,63,-15,59,-44v-9,-72,-146,-22,-148,-116v0,-48,41,-68,84,-68v41,0,75,21,88,61r-28,7v-5,-27,-34,-43,-60,-43v-23,0,-53,12,-53,39v0,59,90,34,126,67","w":223},"T":{"d":"105,0r-31,0r0,-220r-70,0r0,-27r171,0r0,27r-70,0r0,220","w":180},"U":{"d":"69,-43v37,44,118,12,105,-48r0,-156r25,0r0,156v13,81,-95,132,-150,71v-44,-49,-13,-147,-20,-227r31,0r0,156v0,15,-1,36,9,48","w":230},"V":{"d":"200,-247r-83,247r-30,0r-83,-247r32,0r69,204r68,-204r27,0","w":201},"W":{"d":"292,-247r-59,247r-31,0r-54,-192r-50,192r-31,0r-63,-247r32,0r50,200r52,-200r25,0r57,200r45,-200r27,0","w":295},"X":{"d":"184,-247r-69,113r79,134r-35,0r-62,-105r-65,105r-29,0r79,-128r-70,-119r34,0r55,91r55,-91r28,0","w":194},"Y":{"d":"200,-247r-83,143r0,104r-31,0r0,-104r-82,-143r36,0r65,114r67,-114r28,0","w":201},"Z":{"d":"180,-27r0,27r-174,0r0,-27r134,-194r-128,0r0,-26r164,0r0,21r-135,199r139,0","w":194},"[":{"d":"87,62r-64,0r0,-309r64,0r0,18r-39,0r0,271r39,0r0,20","w":108},"\\":{"d":"180,0r-24,0r-149,-247r24,0","w":187},"]":{"d":"87,62r-64,0r0,-20r40,0r0,-271r-40,0r0,-18r64,0r0,309","w":108},"^":{"d":"37,-93r63,-154r16,0r63,154r-22,0r-49,-120r-49,120r-22,0"},"_":{"d":"180,23r0,23r-180,0r0,-23r180,0","w":180},"`":{"d":"102,-201r-77,-33r12,-24r72,43","w":136},"a":{"d":"90,-18v39,-1,61,-33,58,-74v-42,0,-98,-4,-98,42v0,23,20,32,40,32xm20,-52v0,-55,67,-66,128,-61v2,-36,-12,-54,-47,-53v-23,0,-45,8,-50,33r-26,-5v11,-56,95,-65,135,-32v31,41,4,110,19,170r-28,0r-3,-34v-22,56,-128,50,-128,-18","w":194},"b":{"d":"100,-165v-71,1,-67,146,0,146v37,0,49,-40,49,-70v0,-31,-10,-76,-49,-76xm105,-188v46,-2,74,47,74,94v0,46,-22,98,-76,98v-24,0,-46,-14,-57,-35r-10,31r-14,0r0,-247r28,0v2,30,-4,68,2,94v12,-22,27,-35,53,-35","w":194},"c":{"d":"135,-65r26,5v-6,37,-32,64,-71,64v-54,0,-78,-47,-78,-95v0,-48,24,-97,78,-97v40,0,65,26,71,64r-26,4v-3,-24,-18,-44,-44,-44v-38,0,-49,40,-49,71v0,30,9,72,47,72v27,0,41,-19,46,-44","w":172},"d":{"d":"91,-20v39,0,57,-40,51,-88v3,-32,-21,-58,-50,-57v-32,1,-49,36,-48,70v0,30,8,75,47,75xm87,4v-46,1,-73,-49,-73,-95v0,-46,22,-97,75,-97v23,0,40,12,53,30r0,-89r28,0r0,247r-25,0v-1,-10,2,-24,-1,-32v-12,23,-30,36,-57,36","w":194},"e":{"d":"45,-89v-3,36,21,69,54,69v24,0,41,-13,49,-35r27,5v-11,33,-43,54,-78,54v-55,0,-84,-44,-84,-95v0,-50,30,-97,85,-97v57,0,81,48,80,99r-133,0xm46,-110r101,0v0,-30,-17,-56,-49,-56v-31,0,-51,27,-52,56","w":194},"f":{"d":"107,-183r0,22r-43,0r0,161r-28,0r0,-161r-32,0r0,-22r32,0v-5,-50,28,-79,81,-65r0,23v-8,-1,-15,-3,-23,-3v-31,0,-30,22,-30,45r43,0","w":108},"g":{"d":"89,69v-39,0,-85,-10,-85,-47v0,-19,11,-31,28,-37v-26,-13,-22,-55,8,-62v-65,-52,11,-141,83,-103v5,-29,20,-32,49,-31r1,23v-19,0,-32,1,-35,21v45,49,-6,124,-78,101v-9,0,-19,8,-19,17v1,23,36,19,57,19v40,0,82,8,82,47v0,46,-56,52,-91,52xm86,-85v24,0,41,-16,41,-40v0,-23,-19,-40,-41,-40v-24,0,-41,17,-41,40v0,25,16,40,41,40xm90,47v24,-1,63,-3,63,-29v-9,-36,-65,-17,-101,-25v-11,5,-20,12,-20,25v0,25,39,29,58,29","w":180},"h":{"d":"111,-188v39,0,58,39,58,81r0,107r-28,0v-6,-62,23,-165,-37,-165v-31,0,-51,36,-51,71r0,94r-28,0r0,-247r28,0r1,98v12,-24,29,-39,57,-39","w":194},"i":{"d":"57,-183r0,183r-28,0r0,-183r28,0xm59,-247r0,32r-31,0r0,-32r31,0","w":86},"j":{"d":"51,3v6,45,-33,75,-78,58r0,-22v30,8,50,-4,50,-36r0,-186r28,0r0,186xm53,-247r0,32r-31,0r0,-32r31,0","w":79},"k":{"d":"177,0r-30,0r-53,-102r-39,45r0,57r-28,0r0,-247r28,0r0,158r84,-93r31,0r-57,64","w":180},"l":{"d":"57,0r-28,0r0,-247r28,0r0,247","w":86},"m":{"d":"97,-165v-62,0,-41,99,-44,165r-29,0r0,-183r26,0v1,11,-2,26,1,35v14,-50,98,-54,106,4v10,-25,31,-44,59,-44v74,2,52,109,55,188r-28,0v-6,-63,22,-165,-36,-165v-62,0,-42,98,-45,165r-28,0v-6,-62,22,-165,-37,-165","w":295},"n":{"d":"105,-163v-67,0,-51,92,-52,163r-28,0r0,-183r26,0v1,11,-2,25,1,34v10,-23,31,-39,57,-39v41,0,61,40,61,87r0,101r-29,0v-7,-61,23,-163,-36,-163","w":194},"o":{"d":"94,4v-109,0,-106,-192,4,-192v54,0,81,47,81,95v0,51,-30,97,-85,97xm46,-93v0,36,15,73,50,73v35,0,51,-37,51,-73v0,-35,-17,-72,-51,-72v-34,0,-50,36,-50,72","w":194},"p":{"d":"104,-20v33,1,48,-37,48,-72v0,-30,-10,-71,-48,-71v-40,0,-48,42,-48,91v0,25,22,52,48,52xm111,-188v101,3,92,191,0,192v-25,0,-42,-12,-55,-33r0,89r-28,0r0,-243r26,0r0,35v9,-24,30,-40,57,-40","w":194},"q":{"d":"93,-21v65,0,68,-144,0,-144v-37,0,-48,43,-48,73v0,30,11,71,48,71xm144,-153r12,-30r14,0r0,243r-28,0r-1,-95v-9,23,-29,39,-55,39v-102,0,-95,-189,3,-192v28,0,41,13,55,35","w":194},"r":{"d":"116,-160v-74,-4,-62,86,-62,160r-28,0r0,-183r25,0v1,14,-2,31,1,43v10,-28,27,-53,64,-47r0,27","w":115},"s":{"d":"14,-49r28,-5v4,25,33,34,55,34v19,0,44,-7,44,-30v0,-29,-39,-28,-65,-33v-28,-6,-54,-19,-54,-51v0,-73,127,-71,141,-7r-26,5v-7,-20,-26,-29,-47,-29v-17,0,-39,7,-39,27v0,42,69,21,98,44v13,11,22,24,22,41v0,79,-143,74,-157,4","w":187},"t":{"d":"112,-21r0,22v-47,11,-79,-9,-79,-57r0,-106r-32,0r0,-22r32,0r0,-46r29,-3r0,49r40,0r0,22r-40,0r0,111v-4,30,22,36,50,30","w":115},"u":{"d":"89,-21v65,0,50,-93,51,-162r28,0r0,183r-25,0v-1,-11,2,-27,-1,-36v-9,23,-31,40,-56,40v-38,0,-61,-36,-61,-76r0,-111r28,0v6,61,-23,162,36,162","w":194},"v":{"d":"159,-183r-63,183r-29,0r-66,-183r32,0r51,149r50,-149r25,0","w":158},"w":{"d":"233,-183r-52,183r-23,0r-41,-136r-37,136r-24,0r-55,-183r29,0r39,137r39,-137r20,0r41,137r41,-137r23,0","w":237},"x":{"d":"158,0r-33,0r-47,-74r-47,74r-28,0r61,-95r-55,-88r33,0r39,63r40,-63r27,0r-53,82","w":158},"y":{"d":"153,-183r-72,200v-7,31,-35,59,-76,45r0,-23v35,12,53,-13,59,-42r-63,-180r29,0r49,138r50,-138r24,0","w":151},"z":{"d":"144,-183r0,16r-100,145r100,0r0,22r-134,0r0,-22r97,-139r-90,0r0,-22r127,0","w":151},"{":{"d":"12,-84r0,-22v67,-6,-20,-159,84,-145r0,22v-16,2,-29,0,-29,23r0,58v0,36,-23,51,-26,53v3,3,26,18,26,54v0,33,-16,86,29,81r0,22v-32,-1,-52,-2,-56,-41v-4,-42,13,-99,-28,-105","w":108},"|":{"d":"58,-247r0,247r-22,0r0,-247r22,0","w":93},"}":{"d":"96,-106r0,22v-68,7,20,160,-84,146r0,-22v16,-2,29,-2,29,-23r-1,-58v0,-36,24,-51,27,-54v-3,-2,-27,-17,-27,-53v0,-32,17,-86,-28,-81r0,-22v32,0,53,4,56,41v4,42,-14,99,28,104","w":108},"~":{"d":"45,-76r-25,0v1,-17,7,-33,14,-42v20,-25,44,-12,51,-9v23,9,51,42,80,28v4,-6,6,-19,6,-26r24,0v1,43,-30,69,-74,45r-43,-24v-22,-13,-33,5,-33,28"},"\u00d7":{"d":"15,-180r17,-17r76,77r76,-77r17,17r-76,76r76,77r-17,17r-76,-77r-76,77r-17,-17r76,-77"},"\u2026":{"d":"80,-41r0,41r-40,0r0,-41r40,0xm200,-41r0,41r-40,0r0,-41r40,0xm320,-41r0,41r-40,0r0,-41r40,0","w":360},"\u2014":{"d":"360,-104r0,23r-360,0r0,-23r360,0","w":360},"\u2013":{"d":"180,-104r0,23r-180,0r0,-23r180,0","w":180},"\u201c":{"d":"89,-168r0,-31r29,-48r14,0r-21,43r14,0r0,36r-36,0xm35,-168r0,-31r29,-48r13,0r-21,43r15,0r0,36r-36,0","w":165},"\u201d":{"d":"132,-247r0,31r-29,48r-13,0r21,-43r-15,0r0,-36r36,0xm77,-247r0,31r-28,48r-14,0r21,-43r-15,0r0,-36r36,0","w":165},"\u2018":{"d":"37,-167r0,-37r24,-43r13,0r-18,43r18,0r0,37r-37,0","w":108},"\u2019":{"d":"74,-247r0,37r-24,43r-13,0r18,-43r-18,0r0,-37r37,0","w":108},"\u2122":{"d":"75,-99r-22,0r0,-130r-40,0r0,-18r103,0r0,18r-41,0r0,130xm172,-247r43,118r42,-118r33,0r0,148r-23,0r0,-129r-46,129r-16,0r-47,-129r0,129r-18,0r0,-148r32,0","w":302},"\u00a0":{"w":108}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ITC Franklin Gothic is a registered trademark of International Typeface
 * Corporation.
 */
Cufon.registerFont({"w":216,"face":{"font-family":"ITC Franklin Gothic Demi","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 7 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-15 -271 360 64.3213","underline-thickness":"22.32","underline-position":"-34.56","stemh":"7","stemv":"53","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":108},"!":{"d":"86,0r-56,0r0,-56r56,0r0,56xm41,-74r-18,-173r70,0r-18,173r-34,0","w":115},"\"":{"d":"15,-247r50,0v3,39,-5,67,-15,93r-19,0v-11,-26,-19,-53,-16,-93xm100,-247r50,0v3,39,-5,67,-15,93r-19,0v-11,-26,-19,-53,-16,-93","w":165},"#":{"d":"80,-251r38,0r-14,71r36,0r14,-71r38,0r-14,71r29,0r0,39r-35,0r-9,42r34,0r0,39r-43,0r-11,60r-39,0r12,-60r-36,0r-12,60r-38,0r12,-60r-33,0r0,-39r41,0r8,-42r-34,0r0,-39r42,0xm96,-141r-8,42r37,0r9,-42r-38,0"},"$":{"d":"123,-7r0,34r-30,0r0,-34v-38,-4,-70,-24,-79,-63r50,-11v6,24,24,32,47,32v16,0,36,-6,36,-25v0,-19,-26,-22,-40,-25v-41,-9,-81,-21,-81,-71v0,-39,30,-67,67,-72r0,-29r30,0r0,29v34,3,61,20,72,53r-45,15v-7,-19,-18,-27,-39,-27v-14,0,-32,3,-32,21v9,36,64,24,91,41v61,38,23,136,-47,132"},"%":{"d":"60,-120v-36,0,-50,-32,-50,-64v0,-32,14,-63,50,-63v36,0,52,31,52,63v0,32,-16,64,-52,64xm79,-182v-1,-17,1,-44,-19,-43v-19,0,-17,28,-17,41v0,13,-1,41,17,41v19,0,19,-26,19,-39xm43,0r138,-247r28,0r-137,247r-29,0xm193,0v-36,0,-51,-32,-51,-64v0,-32,15,-63,51,-63v36,0,51,31,51,63v0,32,-15,64,-51,64xm211,-62v-1,-17,1,-44,-18,-43v-19,0,-18,28,-18,41v0,13,0,41,18,41v19,0,18,-26,18,-39","w":252},"&":{"d":"120,-213v-37,1,-18,42,1,52v30,-4,36,-53,-1,-52xm175,-23v-55,52,-171,28,-171,-52v0,-36,29,-58,61,-69v-12,-15,-23,-29,-23,-49v2,-79,152,-78,150,4v0,30,-20,48,-46,58r34,38v12,-13,18,-31,22,-48r51,6v-6,29,-21,56,-40,78v10,12,22,13,40,11r0,43v-32,7,-59,2,-78,-20xm145,-56r-50,-56v-17,6,-29,15,-29,35v1,39,54,44,79,21","w":259},"'":{"d":"29,-247r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93","w":108},"(":{"d":"66,-247r40,0v-57,92,-57,217,-1,309r-39,0v-67,-88,-70,-221,0,-309","w":136},")":{"d":"15,-247r40,0v70,87,69,221,1,309r-39,0v55,-93,55,-217,-2,-309","w":136},"*":{"d":"95,-193r-1,-54r28,0r-1,54r51,-18r9,27r-52,16r33,42r-23,17r-31,-45r-30,46r-24,-18r34,-42r-53,-16r9,-27"},"+":{"d":"86,-191r44,0r0,66r65,0r0,43r-65,0r0,65r-44,0r0,-65r-65,0r0,-43r65,0r0,-66"},",":{"d":"82,-56r0,51r-36,63r-20,0r28,-58r-28,0r0,-56r56,0","w":108},"-":{"d":"0,-112r84,0r0,39r-84,0r0,-39","w":86},".":{"d":"82,0r-56,0r0,-56r56,0r0,56","w":108},"\/":{"d":"31,62r-36,0r176,-309r36,0"},"0":{"d":"107,4v-69,0,-96,-69,-96,-128v0,-59,27,-127,96,-127v71,0,97,66,97,127v0,61,-26,128,-97,128xm144,-121v0,-36,2,-88,-37,-88v-38,0,-36,59,-36,85v1,36,1,85,36,85v37,0,37,-46,37,-82"},"1":{"d":"19,-147r0,-51v31,-9,66,-22,84,-49r42,0r0,202r68,0r0,45r-200,0r0,-45r75,0r0,-139"},"2":{"d":"111,-251v47,0,91,32,89,77v-2,68,-71,94,-115,125r119,0r-5,49r-185,0r0,-48r92,-70v17,-15,35,-31,35,-55v0,-19,-14,-32,-33,-32v-28,0,-40,22,-43,47r-51,-11v10,-52,43,-82,97,-82"},"3":{"d":"142,-73v2,-31,-35,-36,-69,-33r0,-43v33,2,65,-1,64,-30v0,-17,-16,-29,-34,-29v-21,0,-33,13,-37,32r-51,-9v10,-43,47,-66,90,-66v42,0,89,20,89,68v1,28,-20,45,-43,54v30,6,50,26,50,58v0,71,-104,98,-160,56v-18,-14,-30,-34,-34,-57r53,-7v1,45,79,54,82,6"},"4":{"d":"51,-99r68,0r0,-104xm174,-99r34,0r0,42r-34,0r0,57r-58,0r0,-57r-108,0r0,-42r100,-148r66,0r0,148"},"5":{"d":"211,-83v0,104,-175,122,-193,16r54,-8v4,45,81,43,81,-4v0,-40,-57,-53,-75,-20r-47,-8r10,-140r156,0r-7,51r-108,0r-4,55v46,-49,133,-9,133,58"},"6":{"d":"12,-122v0,-64,36,-129,102,-129v43,0,77,24,86,66r-50,14v-3,-19,-14,-38,-36,-38v-41,1,-47,49,-43,82v35,-57,132,-21,132,48v0,46,-42,83,-89,83v-74,0,-102,-60,-102,-126xm110,-37v24,0,37,-19,37,-41v0,-21,-16,-37,-37,-37v-21,0,-38,17,-38,38v0,22,15,40,38,40"},"7":{"d":"65,0v1,-82,38,-150,84,-196r-126,0r5,-51r173,0r0,44v-42,49,-73,116,-70,203r-66,0"},"8":{"d":"122,-149v44,-10,25,-64,-15,-64v-17,0,-33,7,-33,26v0,24,30,31,48,38xm150,-62v-1,-27,-35,-35,-57,-41v-17,5,-31,15,-31,34v0,26,25,33,46,33v17,0,42,-5,42,-26xm19,-177v-1,-44,45,-74,90,-74v41,0,89,18,89,66v0,24,-15,43,-37,52v27,12,45,29,45,60v0,50,-53,77,-102,77v-46,0,-94,-26,-94,-71v0,-30,18,-45,44,-55v-21,-11,-35,-30,-35,-55"},"9":{"d":"103,-40v36,1,44,-42,42,-79v-40,52,-131,20,-131,-50v0,-54,41,-82,91,-82v72,0,97,61,97,124v0,64,-34,131,-101,131v-41,0,-71,-20,-81,-60r51,-10v4,16,15,26,32,26xm105,-210v-21,0,-36,17,-36,38v0,22,15,37,36,37v21,0,38,-17,38,-37v0,-21,-17,-38,-38,-38"},":":{"d":"84,0r-57,0r0,-56r57,0r0,56xm84,-127r-57,0r0,-56r57,0r0,56","w":108},";":{"d":"82,-56r0,51r-36,63r-20,0r28,-58r-28,0r0,-56r56,0xm82,-127r-56,0r0,-56r56,0r0,56","w":108},"<":{"d":"20,-82r0,-43r176,-66r0,47r-113,40r113,41r0,46"},"=":{"d":"21,-168r174,0r0,43r-174,0r0,-43xm21,-82r174,0r0,43r-174,0r0,-43"},">":{"d":"20,-191r176,66r0,43r-176,65r0,-46r113,-41r-113,-40r0,-47"},"?":{"d":"72,-70v0,-42,-2,-53,33,-73v26,-15,28,-64,-10,-63v-26,0,-34,24,-35,45r-50,-7v6,-49,39,-83,90,-83v44,0,84,27,84,74v0,29,-17,50,-40,65v-20,13,-26,16,-25,42r-47,0xm124,0r-57,0r0,-56r57,0r0,56","w":194},"@":{"d":"147,-153v-36,-2,-48,65,-7,67v38,2,48,-66,7,-67xm266,-148v0,50,-37,94,-83,98v-11,0,-21,-5,-20,-17v-32,36,-89,4,-89,-44v0,-58,70,-105,109,-57r4,-17r32,0r-17,98v-1,6,-3,12,4,12v14,0,33,-25,33,-62v0,-54,-39,-84,-90,-84v-57,0,-94,42,-94,97v0,88,104,123,164,75r33,0v-61,98,-230,48,-230,-75v0,-72,57,-127,128,-127v59,-1,116,45,116,103","w":288},"A":{"d":"148,-247r78,247r-63,0r-15,-51r-80,0r-15,51r-51,0r79,-247r67,0xm82,-96r53,0r-26,-87","w":230},"B":{"d":"228,-67v0,42,-46,67,-94,67r-111,0r0,-247r111,0v45,-5,87,24,87,65v0,29,-21,46,-45,54v31,6,52,29,52,61xm161,-177v0,-33,-45,-26,-80,-26r0,54v37,0,80,6,80,-28xm167,-77v-1,-34,-48,-28,-86,-28r0,59v40,0,87,7,86,-31","w":237},"C":{"d":"222,-155r-60,4v0,-27,-10,-53,-42,-53v-41,0,-44,53,-44,83v0,34,3,77,47,77v27,0,40,-22,43,-46r56,4v-6,57,-45,90,-102,90v-73,0,-109,-60,-109,-127v0,-68,37,-128,111,-128v62,0,94,37,100,96","w":237},"D":{"d":"225,-124v0,67,-51,124,-122,124r-81,0r0,-247r71,0v75,-10,132,54,132,123xm165,-126v0,-46,-28,-87,-86,-76r0,156v59,10,86,-31,86,-80","w":237},"E":{"d":"199,-199r-119,0r0,50r94,0r0,46r-94,0r0,55r119,0r0,48r-177,0r0,-247r177,0r0,48","w":208},"F":{"d":"198,-199r-118,0r0,56r94,0r0,47r-94,0r0,96r-58,0r0,-247r176,0r0,48","w":194},"G":{"d":"160,-86r-47,0r0,-46r102,0r0,132r-26,0r-9,-28v-18,22,-38,32,-67,32v-72,0,-102,-60,-102,-125v0,-67,32,-130,107,-130v53,0,89,33,97,85r-55,8v-3,-25,-15,-46,-43,-46v-41,0,-47,52,-47,83v0,32,9,78,49,78v25,0,42,-18,41,-43","w":237},"H":{"d":"213,-247r0,247r-57,0r0,-102r-77,0r0,102r-57,0r0,-247r57,0r0,97r77,0r0,-97r57,0","w":237},"I":{"d":"81,-247r0,247r-58,0r0,-247r58,0","w":108},"J":{"d":"5,-48v33,9,59,0,59,-35r0,-164r58,0r0,171v6,71,-50,89,-117,76r0,-48","w":144},"K":{"d":"80,-247r0,116r77,-116r55,0r-59,88r74,159r-64,0r-49,-107r-34,50r0,57r-57,0r0,-247r57,0","w":230},"L":{"d":"78,-49r100,0r0,49r-157,0r0,-247r57,0r0,198","w":180},"M":{"d":"234,-201r-62,201r-40,0r-61,-201r0,201r-48,0r0,-247r90,0r43,148r46,-148r90,0r0,247r-58,0r0,-201","w":316},"N":{"d":"212,-247r0,247r-49,0r-96,-166r0,166r-45,0r0,-247r63,0r83,145r0,-145r44,0","w":237},"O":{"d":"223,-124v0,64,-41,128,-105,128v-66,0,-106,-64,-106,-128v0,-66,33,-127,106,-127v65,0,105,64,105,127xm162,-123v0,-34,-7,-80,-44,-80v-37,0,-46,44,-46,79v0,31,5,80,46,80v38,0,44,-44,44,-79","w":237},"P":{"d":"214,-171v0,49,-45,88,-97,80r-37,0r0,91r-58,0r0,-247r93,0v52,-6,99,27,99,76xm156,-169v1,-34,-38,-35,-76,-33r0,66v38,2,75,3,76,-33","w":223},"Q":{"d":"162,-123v0,-34,-7,-80,-44,-80v-37,0,-46,44,-46,79v0,31,5,80,46,80v38,0,44,-44,44,-79xm118,-251v113,0,142,185,53,239v-2,23,25,21,44,17r0,44v-41,9,-77,-2,-78,-47v-79,17,-125,-56,-125,-126v0,-66,33,-127,106,-127","w":237},"R":{"d":"127,-247v51,-6,95,26,95,74v0,28,-16,54,-43,64r46,109r-64,0r-38,-98r-42,0r0,98r-58,0r0,-247r104,0xm162,-173v-1,-35,-44,-31,-81,-30r0,63v40,1,82,4,81,-33","w":237},"S":{"d":"14,-172v0,-91,157,-111,182,-21r-49,17v-7,-21,-20,-30,-42,-30v-15,0,-34,4,-34,23v0,18,21,23,35,25v45,6,97,29,97,80v0,99,-183,114,-202,13r53,-12v7,26,26,35,52,35v17,0,38,-6,38,-27v0,-21,-28,-24,-43,-27v-44,-9,-87,-22,-87,-76"},"T":{"d":"187,-247r0,49r-62,0r0,198r-58,0r0,-198r-62,0r0,-49r182,0","w":194},"U":{"d":"81,-98v-10,48,44,73,78,42v17,-51,2,-127,7,-191r50,0r0,149v0,27,1,56,-20,76v-40,36,-110,36,-152,4v-25,-19,-25,-50,-25,-80r0,-149r62,0r0,149","w":237},"V":{"d":"213,-247r-74,247r-62,0r-74,-247r61,0r50,176r51,-176r48,0"},"W":{"d":"320,-247r-62,247r-57,0r-41,-163r-39,163r-56,0r-64,-247r59,0r39,166r40,-166r53,0r42,166r38,-166r48,0","w":324},"X":{"d":"216,-247r-68,115r77,132r-67,0r-50,-90r-49,90r-55,0r76,-131r-68,-116r68,0r40,75r42,-75r54,0","w":230},"Y":{"d":"215,-247r-78,143r0,104r-57,0r0,-104r-79,-143r67,0r48,94r47,-94r52,0"},"Z":{"d":"220,-204r-125,157r129,0r0,47r-199,0r0,-42r124,-158r-116,0r0,-47r187,0r0,43","w":237},"[":{"d":"107,39r0,23r-77,0r0,-309r77,0r0,23r-36,0r0,263r36,0","w":136},"\\":{"d":"49,-247r37,0r81,247r-36,0"},"]":{"d":"30,62r0,-23r36,0r0,-263r-36,0r0,-23r77,0r0,309r-77,0","w":136},"^":{"d":"25,-94r60,-153r45,0r61,153r-41,0r-42,-108r-42,108r-41,0"},"_":{"d":"180,23r0,23r-180,0r0,-23r180,0","w":180},"`":{"d":"34,-261r79,39r-8,21r-82,-29","w":136},"a":{"d":"124,-114v3,-21,-5,-37,-26,-37v-17,0,-32,8,-32,26r-50,-4v9,-64,97,-70,145,-41v38,36,4,110,21,170r-53,0v-2,-9,-2,-19,-2,-28v-24,47,-116,44,-116,-20v0,-53,62,-65,113,-66xm90,-30v26,0,38,-29,34,-57v-20,2,-57,6,-57,33v0,14,8,24,23,24","w":194},"b":{"d":"74,-103v-1,33,-2,70,28,70v30,0,30,-38,30,-58v0,-21,0,-59,-29,-59v-26,0,-29,28,-29,47xm20,0r0,-247r53,0v2,28,-4,63,2,87v9,-18,23,-26,44,-26v52,0,68,52,68,95v0,48,-19,95,-74,95v-26,0,-39,-10,-52,-32v-6,8,-9,18,-12,28r-29,0","w":194},"c":{"d":"181,-116r-50,3v0,-17,-9,-33,-28,-33v-29,0,-32,29,-32,52v0,22,0,54,30,54v19,0,28,-15,30,-32r50,3v-4,45,-38,73,-83,73v-55,0,-88,-40,-88,-94v0,-56,34,-96,92,-96v42,0,75,27,79,70","w":194},"d":{"d":"176,0r-50,0v-1,-9,2,-21,-1,-28v-10,19,-25,32,-48,32v-51,0,-66,-51,-66,-93v0,-44,14,-97,67,-97v21,0,33,6,45,23r0,-84r53,0r0,247xm96,-35v29,0,28,-35,27,-67v0,-18,-1,-47,-25,-47v-30,0,-31,39,-31,61v0,20,3,53,29,53","w":194},"e":{"d":"184,-82r-118,0v-12,51,62,66,68,19r49,4v0,9,-22,63,-84,63v-55,0,-90,-39,-90,-93v0,-54,32,-97,89,-97v53,0,90,50,86,104xm66,-114r65,0v-1,-20,-8,-38,-31,-38v-23,0,-32,17,-34,38","w":194},"f":{"d":"78,-137r0,137r-53,0r0,-137r-21,0r0,-41r21,0v-8,-55,36,-86,90,-70r0,40v-25,-5,-42,3,-37,30r32,0r0,41r-32,0","w":108},"g":{"d":"98,-157v-17,0,-30,10,-30,27v0,18,12,28,30,28v17,0,31,-9,31,-28v0,-18,-14,-27,-31,-27xm49,14v1,21,35,18,53,18v13,0,50,1,50,-18v-12,-24,-57,-9,-92,-15v-6,3,-11,8,-11,15xm202,5v-1,46,-57,59,-106,59v-29,0,-94,-1,-94,-42v0,-19,14,-29,31,-33v-39,-16,-21,-68,14,-74v-20,-8,-33,-22,-33,-44v0,-61,81,-65,133,-50v3,-34,23,-37,56,-34r0,34v-16,-3,-33,-2,-35,14v10,11,14,21,14,36v-3,54,-63,61,-112,53v-5,3,-9,8,-9,14v3,26,46,15,73,18v32,4,68,9,68,49","w":201},"h":{"d":"72,-158v28,-54,121,-24,104,42r0,116r-53,0r0,-99v0,-16,2,-45,-21,-45v-52,0,-23,91,-30,144r-53,0r0,-247r53,0r0,89","w":194},"i":{"d":"73,-183r0,183r-53,0r0,-183r53,0xm73,-251r0,52r-53,0r0,-52r53,0","w":93},"j":{"d":"19,-183r53,0r0,167v0,17,3,38,-5,54v-15,29,-48,28,-82,23r0,-42v26,7,34,-13,34,-35r0,-167xm72,-251r0,52r-53,0r0,-52r53,0","w":93},"k":{"d":"141,-121r60,121r-60,0r-38,-83r-30,36r0,47r-53,0r0,-247r53,0r0,148v20,-30,45,-56,68,-84r52,0","w":201},"l":{"d":"20,0r0,-247r53,0r0,247r-53,0","w":93},"m":{"d":"201,-144v-48,7,-20,92,-27,144r-53,0r0,-97v0,-19,3,-47,-24,-47v-28,0,-26,27,-26,47r0,97r-53,0r0,-183r50,0v1,9,-2,21,1,28v16,-42,85,-42,101,0v9,-22,30,-31,53,-31v37,0,62,34,54,72r0,114r-53,0r0,-97v2,-21,1,-50,-23,-47","w":295},"n":{"d":"99,-144v-48,0,-21,93,-28,144r-53,0r0,-183r50,0v1,10,-2,23,1,31v11,-23,25,-34,52,-34v76,0,52,107,55,186r-53,0r0,-98v0,-19,3,-46,-24,-46","w":194},"o":{"d":"96,-186v57,0,89,42,89,96v0,52,-35,94,-89,94v-56,0,-86,-43,-86,-96v0,-53,30,-94,86,-94xm128,-90v0,-25,-3,-62,-31,-62v-28,0,-30,34,-30,55v0,21,-1,65,29,65v30,0,32,-36,32,-58","w":194},"p":{"d":"103,-149v-27,1,-32,33,-29,64v-3,24,6,52,29,51v27,0,28,-40,28,-59v0,-19,-1,-56,-28,-56xm119,-186v46,0,67,48,67,95v0,45,-16,95,-69,95v-19,1,-33,-10,-43,-24r0,82r-53,0r0,-245r50,0r0,27v10,-20,25,-30,48,-30","w":194},"q":{"d":"95,-34v29,-1,30,-39,30,-73v0,-19,-5,-43,-29,-43v-30,0,-29,37,-29,58v0,26,3,59,28,58xm180,-183v-7,76,-1,164,-3,245r-53,0r0,-81v-10,15,-22,23,-42,23v-55,0,-72,-49,-72,-96v0,-47,21,-94,75,-94v25,0,39,7,52,29v6,-8,11,-17,14,-26r29,0","w":194},"r":{"d":"21,-183r50,0r0,34v6,-22,19,-41,49,-37r0,53v-64,0,-42,75,-46,133r-53,0r0,-183","w":122},"s":{"d":"168,-59v-1,78,-147,89,-164,9r45,-7v4,19,24,25,41,25v10,0,32,-4,32,-18v-6,-26,-54,-13,-75,-26v-22,-8,-36,-26,-36,-49v2,-79,133,-82,150,-14r-39,11v-5,-17,-19,-25,-36,-25v-11,0,-27,4,-27,17v0,34,109,-5,109,77","w":180},"t":{"d":"32,-141r-30,0r0,-42r32,0r5,-54r46,-3r0,57r39,0r0,42r-39,0r0,73v-6,29,14,29,42,28r0,40v-28,4,-61,11,-81,-8v-29,-27,-9,-85,-14,-133","w":136},"u":{"d":"93,-39v49,0,23,-92,29,-144r53,0r0,183r-49,0v-1,-10,2,-23,-1,-31v-9,23,-27,35,-52,35v-77,0,-50,-108,-54,-187r53,0r0,115v0,15,2,29,21,29","w":194},"v":{"d":"170,-183r-62,183r-42,0r-63,-183r56,0r35,116r36,-116r40,0","w":172},"w":{"d":"264,-183r-55,183r-48,0r-29,-117r-28,117r-46,0r-56,-183r56,0r30,112r28,-112r49,0r27,112r30,-112r42,0","w":266},"x":{"d":"178,-183r-52,85r61,98r-61,0r-38,-63r-38,63r-46,0r61,-98r-52,-85r61,0r29,50r29,-50r46,0","w":194},"y":{"d":"170,-183r-56,171v-12,50,-34,86,-99,74r0,-42v25,3,52,8,56,-20r-67,-183r58,0r34,109r34,-109r40,0","w":172},"z":{"d":"142,-183r0,34r-82,110r85,0r0,39r-144,0r0,-39r81,-107r-74,0r0,-37r134,0","w":151},"{":{"d":"48,-126r0,-76v6,-44,31,-48,71,-45r0,32v-18,-2,-35,3,-30,18r0,70v0,27,-26,29,-35,33v11,1,35,3,35,35r0,71v-5,13,12,21,30,18r0,32v-40,3,-71,-1,-71,-46r0,-75v0,-21,-23,-21,-30,-21r0,-30v7,0,30,1,30,-16","w":136},"|":{"d":"76,-247r0,247r-44,0r0,-247r44,0","w":108},"}":{"d":"89,-59r0,75v-6,44,-31,49,-71,46r0,-32v49,9,27,-49,30,-89v3,-33,25,-32,34,-36v-11,-1,-34,-6,-34,-32r0,-70v4,-14,-12,-21,-30,-18r0,-32v40,-2,71,0,71,45r0,76v0,17,23,16,30,16r0,30v-7,0,-30,0,-30,21","w":136},"~":{"d":"51,-83r-35,0v-2,-39,27,-79,74,-53r40,24v33,20,36,-4,36,-20r34,0v1,38,-27,79,-74,53r-45,-24v-31,-17,-30,8,-30,20"},"\u00d7":{"d":"21,-160r30,-31r57,57r57,-57r30,31r-56,56r56,56r-30,32r-57,-57r-57,57r-30,-32r56,-56"},"\u2026":{"d":"88,0r-56,0r0,-56r56,0r0,56xm208,0r-56,0r0,-56r56,0r0,56xm328,0r-57,0r0,-56r57,0r0,56","w":360},"\u2014":{"d":"0,-112r360,0r0,39r-360,0r0,-39","w":360},"\u2013":{"d":"0,-112r180,0r0,39r-180,0r0,-39","w":180},"\u201c":{"d":"77,-247r-25,49r25,0r0,52r-52,0r0,-46r32,-55r20,0xm148,-247r-25,49r25,0r0,52r-53,0r0,-46r33,-55r20,0","w":172},"\u201d":{"d":"116,-146r-21,0r26,-49r-26,0r0,-52r53,0r0,45xm45,-146r-20,0r25,-49r-25,0r0,-52r52,0r0,45","w":172},"\u2018":{"d":"82,-247r-25,49r25,0r0,52r-52,0r0,-46r32,-55r20,0","w":108},"\u2019":{"d":"30,-146r25,-49r-25,0r0,-52r52,0r0,45r-32,56r-20,0","w":108},"\u2122":{"d":"333,-247r0,145r-31,0r-1,-117r-42,117r-19,0r-43,-117r0,117r-31,0r0,-145r51,0r32,86r33,-86r51,0xm150,-247r0,28r-44,0r0,117r-35,0r0,-117r-44,0r0,-28r123,0","w":360},"\u00a0":{"w":108}}});



/* SYNCHRO LET
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1990 Esselte Letraset, Ltd. All rights reserved.
 */
Cufon.registerFont({"w":208,"face":{"font-family":"Synchro LET","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"0 -340.52 374 82","underline-thickness":"0","underline-position":"0","unicode-range":"U+0020-U+2026"},"glyphs":{" ":{"w":100},"!":{"d":"46,-68v-26,4,-27,-27,-11,-34v-13,-7,-15,-28,0,-35v-11,-5,-17,-28,0,-33v1,-6,-14,-9,-11,-19v-1,-8,7,-13,12,-17v-14,-7,-19,-37,9,-35v26,-4,27,25,12,34v10,7,15,28,-1,35v14,6,13,30,0,35v13,4,15,29,0,34v14,8,17,37,-10,35xm67,-15v0,11,-8,16,-22,16v-14,0,-21,-6,-21,-17v0,-12,9,-18,24,-17v13,0,19,6,19,18","w":91},"\"":{"d":"100,-209v-10,6,11,9,7,20v0,11,-8,17,-22,17v-23,0,-28,-27,-10,-32v-10,-7,-19,-36,11,-36v22,0,28,22,14,31xm45,-209v-10,6,11,9,7,20v0,11,-7,17,-21,17v-24,0,-29,-26,-11,-32v-10,-9,-19,-36,11,-36v22,0,28,22,14,31","w":116},"$":{"d":"194,-188v0,11,-8,17,-22,17v-14,0,-21,-6,-21,-18v0,-11,7,-16,21,-16v14,0,22,6,22,17xm104,-274v23,0,26,22,13,33v14,3,44,-2,42,18v-3,33,-61,12,-92,18v-10,0,-18,-7,-18,-17v-2,-20,24,-18,42,-19v-12,-9,-11,-33,13,-33xm173,-102v27,-3,24,28,10,34v16,5,15,36,-9,33v-25,4,-28,-27,-11,-33v-14,-5,-17,-38,10,-34xm49,-120v0,-30,60,-16,91,-16v13,0,20,5,20,16v0,30,-58,13,-89,17v-15,2,-22,-6,-22,-17xm25,-171v-15,-6,-15,-37,12,-34v24,-2,25,27,9,34v15,7,16,37,-12,35v-11,0,-20,-7,-20,-18v0,-10,8,-13,11,-17xm70,-34v30,3,87,-13,90,16v2,22,-24,16,-42,19v12,8,11,36,-14,32v-24,2,-25,-23,-12,-32v-16,-3,-43,3,-43,-18v0,-11,8,-18,21,-17xm35,-68v15,0,22,5,22,17v0,12,-7,18,-23,17v-10,0,-20,-6,-19,-17v0,-11,6,-17,20,-17"},"%":{"d":"214,-223v0,12,-8,18,-22,18v-14,0,-21,-6,-21,-17v0,-11,7,-17,21,-17v15,0,22,5,22,16xm166,-171v-13,1,-21,-6,-21,-16v0,-12,7,-17,21,-17v15,0,22,5,22,16v0,12,-8,17,-22,17xm141,-170v14,0,21,5,21,16v0,11,-6,18,-20,18v-14,0,-21,-6,-22,-17v-1,-12,7,-17,21,-17xm94,-206v10,2,26,3,26,18v0,15,-14,16,-26,19v14,5,10,34,-10,33v-22,-1,-52,4,-50,-18v-3,-7,12,-13,7,-17v-14,2,-23,-6,-24,-17v-1,-14,15,-17,26,-19v-14,-7,-10,-34,9,-33v22,1,51,-4,51,17v1,7,-4,13,-9,17xm136,-120v0,12,-7,18,-21,18v-14,0,-21,-5,-21,-16v0,-12,6,-18,20,-18v15,0,22,5,22,16xm170,-102v28,-5,31,21,18,33v10,1,27,2,25,18v1,15,-16,15,-25,20v14,7,10,36,-12,31v-21,0,-48,4,-48,-17v-4,-9,15,-14,5,-17v-24,5,-29,-30,-9,-33v4,-1,9,0,12,-2v-10,-6,-11,-33,9,-33r25,0xm89,-102v15,0,22,5,22,16v0,12,-7,18,-20,18v-15,0,-23,-6,-23,-17v0,-12,8,-17,21,-17xm43,-51v0,-12,8,-17,23,-17v13,0,19,5,19,16v0,11,-7,18,-20,18v-16,1,-21,-6,-22,-17xm59,-18v0,12,-6,18,-20,18v-15,0,-22,-6,-22,-17v0,-12,7,-17,22,-17v14,0,20,5,20,16xm52,-203v12,8,9,24,0,31v8,2,24,1,33,0v-9,-5,-10,-26,0,-31v-6,-4,-26,-3,-33,0xm179,-35v-8,-5,-12,-27,1,-32v-9,-2,-26,-1,-35,0v10,5,10,26,0,32v8,2,25,2,34,0","w":230},"&":{"d":"54,-223v4,-31,60,-17,91,-17v13,0,20,6,20,17v0,32,-62,17,-93,17v-9,0,-19,-7,-18,-17xm43,-35v-30,0,-28,-27,-13,-35v-15,-5,-13,-26,0,-33v-11,-4,-14,-28,0,-34v-11,-3,-15,-29,0,-33v-12,-9,-17,-36,11,-36v26,0,26,29,10,34v11,5,16,26,3,33v31,5,78,2,111,1v-12,-9,-11,-36,13,-33v23,-3,26,24,13,32v11,4,27,3,25,19v3,14,-17,18,-25,19v11,5,9,30,-3,33v16,5,14,34,-10,34v-24,0,-27,-26,-11,-34v-11,-5,-15,-26,-2,-33v-30,-4,-82,-5,-111,1v13,5,9,27,-3,31v14,6,17,34,-8,34xm70,-34v32,3,91,-13,95,17v-7,31,-64,12,-98,17v-18,-2,-17,-36,3,-34","w":230},"'":{"d":"45,-209v-10,6,11,9,7,20v0,11,-7,17,-21,17v-24,0,-29,-26,-11,-32v-10,-9,-19,-36,11,-36v22,0,28,22,14,31","w":61},"(":{"d":"86,-240v14,0,22,6,22,18v0,11,-6,17,-20,17v-15,1,-22,-8,-22,-18v0,-11,6,-17,20,-17xm62,-171v-16,0,-21,-6,-22,-17v0,-11,7,-17,21,-17v14,0,22,6,22,17v0,11,-7,17,-21,17xm46,-137v13,7,15,29,0,35v18,6,16,37,-11,34v-25,3,-24,-30,-9,-34v-11,-4,-17,-29,-1,-34v-15,-7,-14,-37,10,-35v25,-3,29,27,11,34xm61,-68v16,-1,21,6,22,17v0,11,-6,17,-20,17v-14,1,-22,-6,-22,-17v0,-11,7,-17,20,-17xm88,0v-13,0,-21,-6,-21,-17v0,-11,7,-17,21,-17v14,0,21,6,21,17v0,11,-7,17,-21,17","w":126},")":{"d":"33,-239v15,0,21,6,22,16v0,12,-9,18,-23,18v-14,0,-20,-6,-20,-18v0,-11,7,-16,21,-16xm58,-205v15,-1,22,6,22,17v0,11,-6,17,-20,17v-15,0,-22,-6,-22,-18v0,-11,7,-16,20,-16xm85,-171v27,-3,24,29,10,34v14,6,13,30,0,34v16,7,17,35,-10,35v-26,0,-25,-30,-10,-35v-14,-4,-14,-30,0,-34v-18,-5,-14,-37,10,-34xm60,-34v-14,0,-22,-6,-22,-18v0,-11,8,-16,23,-16v13,0,20,6,20,17v0,11,-7,17,-21,17xm35,0v-14,0,-22,-5,-22,-17v0,-13,8,-17,23,-17v13,0,19,6,19,17v0,11,-6,17,-20,17","w":126},"*":{"d":"92,-207v-13,0,-22,-5,-22,-17v0,-11,8,-17,23,-17v13,0,20,6,20,17v0,11,-7,17,-21,17xm39,-241v14,0,22,6,23,17v0,12,-7,17,-21,17v-15,0,-22,-5,-22,-17v0,-11,7,-17,20,-17xm88,-190v0,11,-8,17,-21,17v-15,0,-22,-6,-22,-17v0,-12,7,-17,22,-17v14,0,21,6,21,17xm90,-173v13,0,24,4,23,17v0,12,-6,17,-20,17v-15,0,-22,-5,-22,-17v0,-11,6,-17,19,-17xm40,-172v14,-1,22,5,22,16v0,12,-7,17,-20,17v-15,0,-22,-5,-22,-17v0,-11,7,-16,20,-16","w":132},"+":{"d":"116,-136v24,1,58,-5,61,16v-1,23,-36,17,-61,18v-1,24,6,61,-17,61v-23,0,-16,-37,-17,-61v-25,-1,-62,5,-62,-17v0,-22,37,-16,62,-17v1,-24,-6,-62,16,-62v22,0,18,36,18,62","w":197},",":{"d":"7,17v-1,-14,15,-17,26,-18v-14,-8,-12,-33,13,-33v14,0,21,6,21,17v1,13,-16,17,-26,19v14,6,11,32,-11,32v-16,0,-22,-5,-23,-17","w":90},"-":{"d":"39,-136v30,3,81,-13,86,16v-4,33,-60,18,-92,18v-10,0,-19,-7,-19,-17v1,-13,8,-19,25,-17","w":139},"\u2010":{"d":"39,-136v30,3,81,-13,86,16v-4,33,-60,18,-92,18v-10,0,-19,-7,-19,-17v1,-13,8,-19,25,-17","w":139},".":{"d":"46,0v-14,0,-22,-5,-22,-17v0,-11,7,-17,21,-17v14,0,22,5,22,17v0,11,-7,17,-21,17","w":90},"\/":{"d":"167,-224v0,-11,8,-18,23,-17v14,0,20,6,20,17v0,11,-7,17,-21,17v-14,0,-22,-6,-22,-17xm155,-206v25,-10,42,26,16,33v-27,10,-43,-26,-16,-33xm158,-155v-1,12,-8,18,-23,18v-13,0,-20,-7,-20,-18v0,-12,7,-17,22,-17v14,0,21,6,21,17xm89,-120v0,-12,8,-17,22,-17v14,0,21,6,21,17v0,11,-7,17,-22,17v-14,0,-21,-6,-21,-17xm85,-68v-15,0,-22,-6,-23,-17v0,-12,8,-18,23,-18v13,0,20,6,20,18v0,11,-6,17,-20,17xm80,-51v-1,11,-8,19,-23,18v-14,0,-21,-6,-21,-17v0,-12,7,-18,22,-18v14,0,22,6,22,17xm15,-3v-12,-11,-3,-30,17,-30v14,0,21,6,21,17v0,19,-27,23,-38,13","w":219},"0":{"d":"74,-240v32,0,86,-13,92,17v-4,32,-63,12,-94,17v-10,0,-17,-8,-18,-17v0,-11,7,-17,20,-17xm189,-171v10,4,17,29,0,33v10,8,16,30,-1,36v14,5,13,29,0,34v15,7,15,38,-12,34v-24,2,-25,-28,-9,-34v-11,-3,-14,-31,1,-34v-10,-2,-16,-26,-3,-33v-12,-6,-43,4,-43,-18v0,-22,27,-15,43,-20v-14,-7,-10,-35,13,-32v26,-2,27,25,11,34xm131,-120v-1,11,-7,18,-22,17v-14,0,-21,-5,-21,-16v0,-12,7,-18,21,-18v14,0,22,6,22,17xm54,-105v15,6,44,-4,43,19v-1,19,-24,18,-43,19v12,8,11,32,-13,32v-29,0,-25,-27,-11,-35v-14,-4,-11,-27,0,-33v-13,-6,-14,-29,1,-34v-14,-8,-14,-29,0,-35v-16,-5,-15,-37,10,-34v24,-3,27,28,11,35v13,8,12,27,0,34v11,5,13,24,2,32xm148,-33v10,0,17,6,17,16v0,11,-7,17,-19,17v-33,0,-93,14,-93,-17v0,-12,7,-17,22,-16r73,0","w":218},"1":{"d":"67,-240v20,-1,21,29,6,35v15,5,14,30,0,34v12,4,16,30,1,33v7,6,17,29,-1,36v12,4,16,29,0,34v13,7,14,29,0,35v16,7,16,34,-10,34v-27,0,-27,-28,-10,-34v-15,-4,-15,-30,0,-34v-14,-6,-16,-29,0,-35v-14,-4,-15,-31,0,-34v-15,-7,-14,-28,0,-36v-14,-4,-15,-25,-3,-32v-11,-6,-44,4,-43,-19v1,-24,36,-16,60,-17","w":108},"2":{"d":"160,-170v12,-6,-10,-9,-6,-21v0,-12,7,-17,22,-17v25,0,26,27,9,34v16,6,17,37,-9,34v-21,4,-28,-19,-16,-30xm69,-240v32,0,93,-15,93,17v0,12,-6,17,-19,17v-32,0,-92,15,-92,-17v0,-10,8,-17,18,-17xm150,-137v13,0,21,5,21,17v0,10,-6,18,-18,17r-85,0v-10,0,-17,-7,-17,-17v6,-32,66,-17,99,-17xm17,-188v0,-12,8,-17,22,-17v13,0,20,5,20,16v0,12,-7,18,-21,18v-14,0,-21,-6,-21,-17xm36,-103v27,-3,30,28,12,35v13,4,16,24,4,32v35,6,83,2,122,2v16,0,22,5,23,17v0,10,-8,17,-17,17r-146,0v-19,0,-23,-27,-6,-34v-13,-5,-15,-30,0,-34v-15,-5,-16,-38,8,-35","w":213},"3":{"d":"179,-171v15,6,16,37,-10,34v-25,3,-27,-26,-11,-34v-15,-8,-15,-34,11,-34v27,0,24,27,10,34xm62,-240v33,0,88,-14,94,17v-4,31,-62,17,-93,17v-9,0,-19,-7,-19,-17v0,-10,8,-17,18,-17xm96,-137v24,0,59,-8,59,17v1,25,-35,15,-57,17v-11,1,-20,-7,-20,-17v1,-9,8,-17,18,-17xm182,-72v-11,6,11,9,7,20v0,11,-7,18,-22,18v-25,0,-24,-28,-9,-34v-15,-6,-16,-37,10,-34v21,-2,28,21,14,30xm10,-188v0,-11,7,-19,21,-18v15,0,22,6,22,17v0,11,-8,17,-22,17v-14,0,-21,-5,-21,-16xm67,-34v31,3,83,-14,88,17v-3,31,-60,17,-90,17v-14,0,-21,-6,-21,-17v0,-12,6,-19,23,-17xm30,-68v14,0,22,5,22,16v0,12,-7,17,-21,17v-14,0,-21,-6,-21,-17v0,-11,6,-16,20,-16","w":206},"4":{"d":"83,-172v13,0,23,5,23,17v0,12,-8,18,-23,18v-14,0,-20,-6,-20,-18v0,-11,7,-17,20,-17xm152,-241v26,-4,29,26,12,34v11,6,16,27,0,35v10,6,18,26,0,33v10,7,16,25,3,35v11,2,29,3,29,18v0,16,-16,18,-29,20v13,7,6,29,-3,33v15,6,16,37,-10,34v-25,3,-28,-28,-11,-34v-11,-5,-16,-25,-3,-33v-32,-6,-78,-2,-114,-2v-25,0,-23,-33,-4,-34v5,-1,11,0,15,-2v-13,-6,-10,-34,10,-33v26,-4,30,24,16,33v19,4,56,3,77,0v-10,-7,-11,-26,3,-33v-11,-5,-16,-24,-3,-33v-12,-6,-43,4,-43,-19v0,-20,27,-15,43,-19v-12,-7,-11,-35,12,-33","w":207},"5":{"d":"159,-240v13,0,20,6,21,17v0,11,-6,17,-18,17v-36,2,-79,-4,-111,2v12,6,10,27,-2,33v12,5,15,25,2,32v25,6,64,0,93,2v13,0,18,6,18,17v0,11,-6,17,-19,17r-100,0v-19,1,-23,-25,-9,-33v-18,-2,-23,-29,-6,-36v-17,-5,-12,-34,6,-36v-15,-7,-11,-32,10,-32r115,0xm175,-103v26,0,27,26,11,35v16,8,15,34,-10,34v-27,0,-26,-26,-11,-35v-17,-6,-13,-34,10,-34xm162,-17v-2,31,-58,12,-87,17v-30,4,-32,-34,-6,-34r75,0v12,0,18,6,18,17xm17,-51v0,-12,7,-17,21,-17v14,0,21,5,21,16v0,13,-8,17,-22,17v-14,0,-19,-6,-20,-16","w":211},"6":{"d":"121,-241v27,-4,30,29,10,33v-14,3,-31,-1,-30,-15v1,-12,7,-16,20,-18xm66,-189v0,-12,7,-19,22,-18v14,0,21,6,21,17v0,12,-9,17,-21,18v-14,0,-22,-7,-22,-17xm175,-34v-26,4,-29,-27,-12,-34v-14,-7,-17,-35,10,-35v25,0,28,26,11,35v15,5,16,37,-9,34xm39,-138v-5,-8,-14,-37,15,-34v24,-3,26,24,12,33v20,6,51,2,75,2v13,0,20,5,20,16v0,11,-7,18,-18,18r-94,1v12,7,9,29,-3,33v15,6,17,39,-11,34v-25,2,-26,-27,-10,-34v-11,-5,-16,-27,0,-34v-19,-10,-9,-39,14,-35xm68,-34v34,5,92,-15,92,17v0,11,-5,17,-18,17v-32,0,-87,14,-93,-17v-1,-11,9,-18,19,-17","w":204},"7":{"d":"179,-205v16,6,14,34,-8,34v-27,0,-29,-21,-15,-33v-31,-3,-69,0,-102,-1v-10,0,-19,-8,-19,-18v0,-9,8,-18,17,-17r121,0v20,0,22,29,6,35xm143,-136v-13,1,-20,-7,-21,-16v0,-13,7,-19,22,-19v14,0,21,6,21,17v0,12,-9,17,-22,18xm139,-120v0,12,-7,18,-22,18v-14,0,-21,-6,-21,-17v0,-11,6,-17,20,-17v15,0,23,5,23,16xm32,-171v-15,0,-22,-7,-22,-17v0,-13,8,-17,23,-17v13,0,20,6,20,17v0,11,-7,17,-21,17xm102,-33v15,7,16,38,-12,34v-24,2,-25,-27,-9,-34v-11,-4,-15,-30,1,-34v-13,-5,-20,-35,10,-35v26,0,25,28,10,35v15,6,13,30,0,34","w":202},"8":{"d":"190,-175v-12,7,11,8,7,20v0,13,-9,18,-24,18v-25,0,-21,-29,-8,-35v-17,-6,-15,-37,11,-33v21,-2,28,22,14,30xm70,-240v32,0,87,-14,92,17v-3,34,-63,12,-94,18v-10,0,-17,-8,-17,-18v0,-12,6,-17,19,-17xm190,-72v-10,7,11,9,7,20v0,12,-8,17,-22,17v-25,0,-24,-29,-9,-33v-15,-6,-17,-38,10,-35v22,-2,27,22,14,31xm52,-120v5,-31,61,-16,93,-16v11,0,17,5,17,16v0,32,-62,13,-94,17v-8,1,-17,-8,-16,-17xm54,-176v-13,7,9,9,5,22v0,12,-8,18,-22,17v-26,3,-24,-30,-9,-34v-15,-6,-15,-37,9,-34v21,-4,28,18,17,29xm67,-34v32,0,91,-13,96,16v-3,34,-64,14,-95,18v-20,2,-20,-34,-1,-34xm54,-72v-12,6,10,8,6,20v-1,12,-7,18,-22,18v-25,0,-26,-26,-10,-33v-14,-8,-16,-38,11,-35v21,-2,27,20,15,30","w":213},"9":{"d":"61,-240v32,3,95,-14,95,17v0,31,-61,15,-94,18v-22,2,-23,-37,-1,-35xm185,-175v-14,6,9,10,5,21v3,9,-12,16,-9,19v17,8,8,38,-14,33v-6,5,9,7,6,17v0,12,-7,18,-21,18v-25,0,-27,-25,-13,-33v-26,-11,-95,16,-95,-19v0,-11,7,-17,20,-17r93,-1v-11,-6,-13,-28,1,-32v-10,-6,-18,-37,8,-36v22,-5,30,18,19,30xm31,-205v25,-3,27,26,11,34v16,7,14,35,-11,35v-26,0,-26,-28,-10,-35v-16,-6,-15,-37,10,-34xm139,-51v0,12,-9,18,-22,18v-14,0,-21,-5,-21,-16v0,-12,7,-18,20,-18v15,0,23,5,23,16xm104,-16v0,10,-10,17,-20,17v-15,0,-23,-6,-23,-17v0,-15,9,-18,25,-17v12,1,18,7,18,17","w":204},":":{"d":"46,-103v-14,0,-22,-7,-22,-17v0,-11,7,-17,21,-17v14,0,21,6,21,17v0,11,-7,17,-20,17xm46,0v-14,0,-22,-5,-22,-17v0,-11,7,-17,21,-17v14,0,21,5,21,17v0,11,-7,17,-20,17","w":90},";":{"d":"46,-103v-14,1,-22,-6,-22,-17v0,-11,7,-17,21,-17v14,0,21,6,21,17v0,11,-7,17,-20,17xm7,17v-1,-14,15,-17,26,-18v-14,-8,-12,-33,13,-33v14,0,21,6,21,17v1,13,-16,17,-26,19v14,6,11,32,-11,32v-16,0,-22,-5,-23,-17","w":90},"=":{"d":"113,-154v10,0,18,7,18,17v0,10,-7,17,-17,17r-86,0v-10,0,-19,-7,-19,-17v1,-13,8,-17,25,-17r79,0xm113,-84v10,0,18,7,18,17v0,10,-7,17,-17,17r-86,0v-11,0,-19,-6,-19,-16v1,-13,8,-19,25,-18r79,0","w":139},"?":{"d":"192,-175v-10,7,11,10,7,21v0,12,-8,17,-23,17v-28,0,-22,-28,-9,-35v-17,-7,-13,-35,11,-33v22,-3,27,21,14,30xm140,-240v14,0,24,4,24,17v0,33,-67,18,-101,18v-13,0,-19,-7,-19,-18v0,-12,7,-17,21,-17r75,0xm122,-119v0,-12,8,-17,23,-17v13,0,20,5,20,16v0,11,-7,18,-20,18v-16,0,-23,-4,-23,-17xm32,-171v-14,0,-23,-6,-23,-17v0,-13,9,-17,24,-17v13,0,19,6,19,17v0,11,-6,17,-20,17xm130,-85v0,12,-7,17,-22,17v-14,0,-20,-6,-20,-17v0,-13,9,-18,23,-17v13,0,19,6,19,17xm122,-16v0,11,-7,17,-22,17v-14,0,-21,-6,-21,-17v0,-12,9,-18,24,-17v12,1,19,7,19,17","w":210},"A":{"d":"109,-207v-15,1,-22,-6,-23,-17v0,-12,7,-17,21,-17v15,0,22,6,22,17v0,12,-6,17,-20,17xm113,-189v0,-13,7,-18,23,-17v14,0,21,6,21,17v0,12,-8,17,-23,17v-13,0,-21,-8,-21,-17xm79,-207v15,0,22,6,23,17v0,12,-8,18,-22,18v-14,0,-21,-6,-21,-17v0,-12,7,-18,20,-18xm38,1v-26,4,-26,-29,-10,-34v-13,-5,-15,-30,0,-35v-13,-3,-15,-31,0,-35v-20,-9,-7,-39,12,-36v-15,-8,-11,-37,14,-33v24,-2,26,24,12,33v22,4,60,3,83,0v-11,-9,-12,-33,12,-33v26,0,28,23,15,33v18,0,31,26,11,36v14,6,14,31,0,35v14,4,13,32,0,35v15,5,16,37,-9,34v-26,4,-28,-25,-12,-34v-14,-8,-11,-28,0,-36v-14,-4,-14,-26,-2,-32v-30,-4,-83,-5,-112,1v20,10,-8,32,2,36v12,8,3,28,-5,31v16,6,15,37,-11,34","w":215},"B":{"d":"176,-175v14,5,16,34,-9,34v-28,0,-27,-25,-12,-35v-18,-6,-13,-34,11,-34v26,0,25,28,10,35xm184,-34v-27,0,-28,-26,-12,-34v-14,-6,-16,-35,9,-35v26,0,29,25,12,35v15,6,15,34,-9,34xm41,0v-20,0,-21,-28,-6,-34v-15,-5,-13,-29,0,-35v-15,-7,-13,-28,0,-34v-12,-5,-15,-27,0,-34v-13,-7,-14,-28,0,-34v-10,-4,-19,-30,0,-33v0,-7,-12,-9,-11,-19v1,-11,8,-17,22,-17r83,0v16,-1,24,5,24,17v0,34,-67,8,-94,19v12,7,9,28,-3,33v18,5,8,27,4,34r90,0v13,0,20,6,20,17v0,11,-6,17,-18,17r-93,1v10,7,9,28,-3,34v14,4,13,26,2,32v24,8,63,3,92,3v13,0,20,6,20,16v0,11,-7,17,-20,17r-109,0","w":218},"C":{"d":"179,-171v-14,0,-22,-5,-22,-17v0,-12,9,-18,23,-17v13,0,19,5,19,16v0,11,-6,18,-20,18xm74,-240v32,0,86,-14,91,17v-2,30,-58,13,-88,17v-16,2,-23,-5,-23,-17v0,-11,6,-17,20,-17xm187,-35v-11,3,-30,-1,-30,-16v0,-11,7,-17,21,-17v24,0,28,28,9,33xm57,-73v-14,6,5,10,5,21v0,11,-6,18,-19,18v-26,0,-31,-25,-13,-34v-13,-7,-13,-27,0,-36v-14,-4,-14,-29,0,-32v-1,-8,-12,-7,-10,-18v-4,-14,18,-16,4,-22v-12,-10,-1,-32,15,-30v23,-3,31,25,13,33v6,7,17,29,-1,36v14,5,13,29,0,34v8,5,17,21,6,30xm54,-17v3,-30,61,-16,92,-16v13,0,19,5,19,16v-1,29,-51,15,-78,17v-25,2,-30,-1,-33,-17"},"D":{"d":"181,-205v27,-3,28,26,12,34v13,8,14,27,0,34v12,7,15,27,0,35v14,6,14,28,0,34v15,6,16,34,-10,34v-26,0,-27,-26,-11,-34v-14,-6,-14,-28,0,-34v-14,-8,-12,-28,0,-36v-16,-5,-12,-27,0,-33v-13,-6,-17,-36,9,-34xm40,0v-19,-1,-20,-30,-5,-35v-15,-4,-14,-29,0,-33v-13,-7,-15,-29,0,-35v-14,-6,-13,-28,0,-34v-12,-6,-16,-27,0,-34v-13,-8,-15,-29,0,-34v-14,-6,-15,-35,8,-35r108,0v9,0,20,6,19,17v-1,10,-7,18,-18,18r-93,1v12,7,9,28,-3,33v15,5,13,29,0,34v14,5,15,30,0,34v12,7,15,28,0,35v11,4,16,26,2,32v26,5,63,1,93,2v9,0,19,7,19,17v0,11,-7,17,-21,17r-109,0","w":223},"E":{"d":"164,-240v10,0,18,7,18,17v0,7,-7,17,-16,17r-94,0v-10,0,-18,-7,-18,-17v0,-9,8,-17,16,-17r94,0xm57,-176v-13,5,18,25,-3,37v20,5,52,1,76,2v12,0,18,6,18,17v0,33,-64,8,-94,19v12,7,9,27,-3,33v16,6,15,34,-9,34v-26,0,-28,-26,-11,-34v-13,-4,-15,-31,0,-35v-13,-3,-15,-28,-1,-33v-9,-7,-18,-28,0,-34v-2,-7,-11,-6,-11,-18v0,-12,8,-18,22,-18v20,0,27,19,16,30xm170,-33v17,2,14,33,-4,33r-93,0v-25,3,-24,-33,-4,-33r101,0","w":194},"F":{"d":"150,-205v-33,0,-93,15,-93,-18v0,-12,6,-17,20,-17r74,0v11,0,17,6,17,17v0,12,-6,18,-18,18xm45,1v-28,4,-28,-28,-12,-34v-12,-5,-15,-29,0,-34v-14,-6,-14,-30,0,-35v-14,-6,-14,-28,0,-34v-12,-7,-15,-28,0,-35v-15,-6,-16,-38,12,-34v24,-1,26,26,9,34v13,6,15,25,3,32v-1,3,1,3,4,3v30,4,86,-13,90,17v-3,34,-67,8,-94,19v11,7,10,27,-3,32v13,7,14,29,-1,35v16,6,17,36,-8,34","w":177},"G":{"d":"199,-189v0,11,-7,18,-22,18v-14,0,-20,-6,-20,-17v0,-12,7,-17,21,-17v14,0,21,5,21,16xm54,-223v0,-31,59,-17,90,-17v14,0,21,6,21,17v0,33,-61,17,-92,17v-13,0,-19,-6,-19,-17xm188,-68v15,6,16,34,-9,34v-23,0,-28,-22,-14,-33v-20,-5,-60,9,-60,-18v0,-28,48,-14,75,-17v26,-3,21,29,8,34xm51,-68v19,7,11,37,-11,34v-23,3,-25,-28,-10,-34v-13,-7,-13,-27,0,-36v-14,-2,-14,-28,-1,-31v-6,-7,-18,-28,1,-35v-13,-8,-18,-37,10,-35v26,-4,27,25,11,34v14,4,14,29,0,34v13,5,14,30,0,34v13,7,14,29,0,35xm54,-17v0,-31,63,-11,94,-17v11,1,17,7,17,17v0,32,-61,17,-93,17v-10,0,-18,-7,-18,-17","w":213},"H":{"d":"182,-241v28,-4,27,29,12,35v13,7,15,29,0,34v13,6,15,29,0,35v13,5,14,30,0,35v13,4,15,29,0,34v14,6,14,29,0,35v16,5,16,34,-9,34v-27,0,-28,-25,-12,-34v-2,-3,-13,-9,-11,-18v-4,-10,18,-14,7,-20v-12,-7,-6,-25,2,-30v-31,-5,-80,-3,-112,0v12,8,9,28,-3,33v14,5,14,30,0,34v14,7,16,38,-12,35v-23,3,-27,-28,-9,-33v-12,-8,-15,-29,0,-37v-15,-4,-13,-29,0,-33v-12,-6,-15,-30,0,-35v-14,-5,-13,-31,0,-35v-12,-4,-16,-29,0,-33v-12,-8,-19,-36,12,-36v25,0,25,27,9,35v14,5,15,29,0,34v11,5,15,26,3,33v31,4,80,3,112,0v-14,-7,-7,-27,2,-34v-14,-6,-11,-29,1,-33v-15,-4,-16,-38,8,-35","w":229},"I":{"d":"73,-68v14,3,13,27,3,32v8,10,45,-7,42,18v-3,33,-61,14,-93,18v-20,3,-22,-31,-3,-33v9,-1,25,4,28,-3v-9,-7,-12,-26,3,-32v-13,-5,-15,-30,0,-35v-12,-4,-15,-29,0,-34v-16,-4,-14,-31,0,-34v-13,-5,-16,-25,-3,-33v-12,-6,-45,5,-43,-19v3,-31,59,-17,90,-17v14,0,21,6,21,17v0,22,-27,14,-42,19v10,7,11,26,-3,33v12,4,16,28,1,32v-3,6,13,9,10,19v4,10,-17,16,-7,21v13,6,6,27,-4,31","w":125},"J":{"d":"169,-240v22,0,22,28,7,35v13,4,14,28,0,34v14,6,13,28,0,34v13,7,14,28,0,34v11,7,17,25,0,35v18,7,14,34,-12,34v-24,0,-25,-28,-9,-34v-12,-5,-17,-29,0,-33v-10,-8,-17,-28,0,-36v-13,-6,-13,-27,0,-35v-14,-4,-14,-26,-2,-32v-24,-11,-93,14,-95,-19v0,-8,8,-17,17,-17r94,0xm62,-33v32,0,86,-13,91,16v-5,30,-57,13,-87,17v-17,2,-24,-5,-25,-17v0,-11,7,-16,21,-16xm50,-52v-1,12,-7,19,-22,18v-14,0,-21,-5,-21,-16v0,-12,7,-18,20,-18v15,0,23,5,23,16"},"K":{"d":"163,-223v0,-12,7,-18,21,-18v14,0,21,6,21,17v0,12,-7,18,-23,17v-13,0,-19,-5,-19,-16xm150,-172v-14,0,-22,-5,-22,-17v0,-12,7,-17,22,-17v14,0,21,6,21,17v0,12,-7,17,-21,17xm136,-155v0,12,-7,18,-21,18v-14,0,-22,-6,-22,-18v0,-11,8,-17,22,-17v14,0,21,6,21,17xm147,-33v-10,-1,-19,-6,-19,-17v0,-16,25,-24,37,-13v12,11,5,33,-18,30xm163,-16v-1,-9,8,-17,16,-17v18,-1,26,5,26,17v0,12,-7,17,-21,17v-14,0,-21,-6,-21,-17xm136,-86v0,12,-7,18,-21,18v-15,0,-22,-6,-22,-17v0,-12,7,-18,21,-18v15,0,22,6,22,17xm36,-102v-13,-6,-17,-29,-1,-35v-14,-7,-12,-28,0,-36v-14,-3,-14,-29,0,-32v-2,-7,-11,-6,-11,-19v0,-12,8,-17,22,-17v25,0,26,28,10,34v12,7,15,29,0,35v13,5,14,28,3,33v15,7,51,-7,52,19v1,25,-32,15,-52,19v11,6,10,30,-3,33v13,7,15,27,0,35v15,6,17,34,-11,34v-26,0,-26,-26,-10,-34v-14,-8,-13,-27,0,-36v-15,-4,-14,-29,1,-33","w":212},"L":{"d":"42,-241v27,-4,28,26,12,34v12,7,15,26,0,35v16,7,11,29,0,36v17,4,11,28,0,33v13,6,14,29,0,34v13,7,16,35,-10,35v-26,0,-27,-28,-11,-35v-13,-2,-15,-31,0,-34v-12,-4,-15,-28,0,-34v-11,-6,-16,-28,0,-35v-14,-7,-14,-29,0,-35v-16,-5,-15,-37,9,-34xm167,-33v11,-1,18,6,18,16v0,10,-8,17,-18,17r-92,0v-9,0,-20,-6,-19,-17v1,-12,8,-16,25,-16r86,0","w":192},"M":{"d":"84,-206v21,-2,22,27,9,33v11,2,31,2,43,0v-12,-8,-10,-33,8,-33v10,0,35,3,22,-7v-8,-12,0,-31,18,-28v24,-2,27,28,10,35v14,4,15,30,0,34v12,5,16,29,0,35v15,8,13,29,0,35v14,5,14,29,0,34v14,7,14,31,0,35v17,6,14,38,-10,34v-26,2,-28,-27,-11,-34v-10,-5,-17,-29,0,-33v-10,-8,-16,-29,0,-36v-11,-6,-14,-30,1,-35v-14,-7,-14,-26,-3,-33v-3,-4,-21,-2,-26,0v17,11,5,37,-17,34v12,8,11,36,-13,33v-26,2,-26,-25,-13,-33v-2,-2,-8,0,-11,-1v-16,-1,-19,-28,-6,-33v-4,-3,-21,-4,-26,0v13,7,7,28,-2,34v14,5,11,29,-1,33v13,5,14,30,0,35v12,5,16,29,1,33v11,9,17,36,-11,36v-25,0,-28,-28,-11,-34v-13,-5,-12,-29,0,-36v-12,-4,-16,-27,-1,-32v3,-6,-13,-8,-10,-19v-1,-9,7,-14,11,-17v-11,-6,-16,-28,0,-35v-11,-3,-17,-29,0,-33v-1,-8,-12,-8,-11,-19v0,-11,11,-17,24,-17v23,0,23,26,11,33v4,5,17,1,25,2","w":229},"N":{"d":"194,-33v15,6,16,38,-10,34v-25,3,-28,-27,-11,-34v-11,-6,-15,-28,0,-34v-10,-7,-16,-26,-2,-34v-12,-5,-43,3,-43,-19v0,-19,25,-17,43,-18v-13,-9,-8,-27,2,-35v-15,-4,-13,-30,1,-33v-14,-8,-17,-37,11,-35v23,-4,27,29,10,33v6,7,18,26,-1,36v12,4,15,30,0,35v15,5,13,31,0,35v12,3,16,28,1,33v1,8,12,6,10,18v2,10,-7,14,-11,18xm115,-137v-14,1,-22,-8,-22,-18v0,-11,7,-17,20,-17v15,0,23,6,23,17v0,12,-7,18,-21,18xm44,-241v24,0,31,22,15,33v12,5,43,-4,43,18v0,23,-27,15,-43,20v12,6,8,29,-3,33v15,5,13,29,0,34v14,7,13,30,0,35v13,5,14,30,0,35v15,5,16,37,-10,34v-25,4,-28,-27,-11,-34v-13,-7,-14,-28,0,-36v-16,-5,-12,-29,0,-34v-13,-5,-15,-28,0,-34v-11,-6,-16,-29,0,-35v-12,-5,-16,-28,0,-33v-2,-8,-11,-7,-11,-19v0,-11,7,-17,20,-17","w":229},"O":{"d":"69,-240v33,5,90,-14,96,17v-2,30,-55,12,-83,17v-34,6,-35,-29,-13,-34xm177,-205v29,-3,26,27,11,34v16,5,15,29,0,34v15,6,14,28,0,34v14,6,14,30,0,35v15,5,16,34,-9,34v-27,0,-27,-26,-12,-34v-11,-6,-15,-29,1,-34v-13,-4,-15,-31,0,-35v-14,-4,-14,-29,0,-34v-14,-5,-17,-37,9,-34xm51,-69v16,7,14,38,-11,34v-23,3,-28,-27,-10,-32v-9,-7,-16,-29,0,-35v-11,-6,-14,-30,0,-35v-13,-8,-11,-27,0,-36v-18,-8,-10,-39,13,-33v24,-1,23,28,8,34v13,7,13,27,0,35v14,3,14,30,0,34v12,6,16,29,0,34xm54,-17v4,-30,62,-16,93,-16v12,0,18,5,18,16v0,32,-63,13,-95,17v-8,1,-17,-9,-16,-17","w":218},"P":{"d":"194,-171v17,8,14,35,-11,35v-29,0,-20,-31,-11,-36v-16,-7,-13,-36,12,-33v26,-2,26,27,10,34xm94,-136v27,0,76,-11,76,16v0,30,-48,18,-76,18v-9,0,-18,-7,-18,-17v0,-10,9,-17,18,-17xm149,-240v13,-1,22,5,21,17v0,12,-7,18,-21,18r-90,1v12,8,9,27,-3,33v14,6,14,29,0,35v13,5,14,29,0,34v12,4,16,27,1,34v11,5,14,30,-1,35v15,6,17,36,-9,34v-24,5,-31,-25,-13,-32v-5,-8,-18,-28,1,-35v-10,-9,-16,-28,0,-36v-12,-6,-16,-28,0,-34v-13,-6,-14,-30,0,-35v-13,-5,-15,-27,0,-34v-14,-7,-16,-35,9,-35r105,0","w":216},"Q":{"d":"54,-223v5,-31,59,-13,90,-17v28,-4,26,36,4,34v-32,-3,-88,15,-94,-17xm188,-68v16,7,14,33,-6,34v-8,1,-19,-2,-25,1v13,9,9,35,-11,33v-31,-4,-91,13,-92,-17v-1,-30,52,-10,77,-19v-12,-4,-12,-32,7,-32v8,0,26,2,27,-2v-14,-7,-7,-27,2,-33v-14,-4,-11,-31,0,-35v-15,-5,-10,-27,0,-34v-16,-7,-13,-36,12,-33v24,-2,25,27,9,34v15,5,13,27,0,35v15,4,13,28,0,33v14,6,13,29,0,35xm135,-86v0,12,-7,19,-22,18v-13,0,-20,-5,-20,-16v0,-12,7,-19,22,-19v13,0,20,6,20,17xm51,-137v15,5,13,29,0,34v13,5,14,28,0,34v14,5,17,36,-8,34v-28,5,-29,-26,-13,-33v-12,-6,-15,-29,0,-35v-11,-4,-15,-30,1,-34v-11,-4,-17,-29,-2,-33v-9,-7,-16,-36,12,-36v27,0,24,29,10,35v14,5,14,28,0,34","w":218},"R":{"d":"198,-175v-10,7,10,10,7,21v0,11,-9,17,-20,18v-24,2,-31,-26,-13,-33v2,-7,-12,-8,-10,-18v0,-12,7,-18,21,-18v21,0,28,20,15,30xm93,-136v27,0,75,-11,77,16v2,22,-25,16,-43,19v13,7,13,36,-11,33v-24,5,-30,-23,-14,-32v-8,-3,-27,-3,-26,-19v0,-10,7,-17,17,-17xm47,1v-26,4,-29,-28,-12,-34v-14,-5,-12,-30,0,-36v-14,-3,-15,-29,0,-32v-11,-8,-16,-28,0,-36v-14,-6,-13,-28,0,-34v-13,-6,-14,-29,0,-34v-16,-11,-16,-35,19,-35r99,0v10,0,17,7,17,17v0,10,-7,17,-17,17v-31,1,-67,-3,-94,2v20,12,-8,31,2,37v12,7,4,27,-5,30v12,6,15,30,0,35v12,6,15,26,0,34v12,7,15,29,-1,35v16,6,17,36,-8,34xm149,-67v14,0,21,4,21,16v0,12,-8,18,-21,18v-15,0,-22,-6,-22,-17v0,-12,8,-17,22,-17xm204,-17v0,12,-6,18,-20,18v-15,0,-22,-6,-22,-17v0,-11,7,-17,20,-17v15,0,22,5,22,16","w":219},"S":{"d":"194,-189v0,11,-7,19,-21,18v-14,0,-21,-7,-21,-18v0,-11,6,-16,20,-16v15,0,22,5,22,16xm73,-240v30,4,87,-13,87,17v0,31,-59,17,-92,17v-13,0,-19,-6,-19,-17v1,-12,8,-18,24,-17xm188,-72v-12,6,8,8,6,20v-2,11,-7,18,-23,18v-24,0,-23,-29,-8,-34v-16,-8,-16,-36,11,-34v20,-2,26,20,14,30xm69,-137v32,4,86,-14,91,17v-4,31,-58,17,-89,17v-15,0,-22,-6,-22,-17v0,-10,6,-19,20,-17xm14,-155v-2,-11,19,-15,6,-21v-12,-9,-6,-33,15,-30v28,-1,25,26,11,36v17,6,14,36,-10,33v-12,1,-22,-7,-22,-18xm71,-34v32,0,89,-13,89,17v0,11,-6,17,-19,17v-32,0,-92,15,-92,-17v0,-12,8,-17,22,-17xm35,-68v14,0,22,5,22,16v0,11,-7,17,-21,17v-14,0,-21,-5,-22,-15v0,-12,8,-18,21,-18"},"T":{"d":"168,-240v13,-1,20,7,20,17v0,32,-54,8,-77,20v11,6,10,28,-3,32v14,6,14,29,0,35v14,5,14,28,0,34v13,4,16,30,0,34v15,6,15,29,0,35v17,6,17,36,-9,34v-25,5,-28,-27,-11,-34v-12,-5,-16,-29,0,-34v-11,-4,-17,-28,-1,-33v3,-5,-15,-9,-11,-20v-3,-11,19,-14,7,-20v-21,-10,11,-30,0,-35v-12,-6,-7,-23,2,-29v-22,-9,-76,12,-78,-19v0,-10,9,-17,19,-17r142,0","w":195},"U":{"d":"192,-207v11,6,14,30,-1,35v14,5,13,30,0,34v13,4,15,29,0,34v15,6,12,30,0,36v19,6,12,37,-11,33v-25,2,-26,-27,-10,-34v-12,-6,-16,-28,0,-33v-1,-7,-13,-8,-11,-18v-1,-9,7,-13,11,-18v-13,-6,-13,-28,0,-35v-16,-6,-10,-28,0,-35v-17,-6,-15,-36,10,-33v27,-2,26,27,12,34xm42,-241v27,-4,28,26,12,34v12,7,15,26,0,35v16,7,11,29,0,36v17,4,11,28,0,33v13,6,14,29,0,34v13,7,16,35,-10,35v-26,0,-27,-28,-11,-35v-13,-2,-15,-31,0,-34v-12,-4,-15,-28,0,-34v-11,-6,-16,-28,0,-35v-14,-7,-14,-29,0,-35v-16,-5,-15,-37,9,-34xm56,-17v3,-30,62,-16,93,-16v12,0,18,4,18,15v-3,32,-59,18,-91,18v-11,0,-21,-6,-20,-17","w":223},"V":{"d":"179,-241v24,0,28,26,11,35v13,6,14,28,0,35v13,5,16,29,0,33v11,8,15,30,-1,36v16,5,16,36,-9,34v-26,3,-27,-27,-11,-34v-14,-5,-15,-29,0,-35v-13,-5,-14,-28,0,-34v-14,-7,-14,-29,0,-35v-14,-5,-17,-35,10,-35xm27,-203v10,-6,-11,-10,-7,-21v0,-11,7,-17,21,-17v25,0,28,25,11,34v12,8,15,27,0,35v10,6,16,29,0,33v-1,6,13,7,10,18v3,12,-11,15,-10,20v16,6,13,36,-10,33v-25,3,-29,-27,-12,-34v-10,-6,-15,-30,1,-35v-14,-5,-14,-31,0,-35v-10,-3,-17,-23,-4,-31xm146,-33v-15,0,-23,-5,-23,-18v0,-11,7,-17,22,-17v14,0,21,7,21,18v0,12,-7,17,-20,17xm75,-33v-14,1,-21,-8,-21,-19v0,-11,7,-16,19,-16v15,0,24,7,24,18v0,11,-8,17,-22,17xm131,-16v0,11,-7,17,-20,17v-15,0,-23,-6,-23,-17v0,-11,7,-17,22,-17v14,0,21,6,21,17","w":220},"W":{"d":"181,-241v27,-4,27,29,11,35v15,5,14,30,0,34v13,6,15,28,0,35v13,5,15,29,0,34v12,5,16,29,0,35v15,7,16,35,-11,35v-25,0,-25,-27,-10,-35v-14,-5,-13,-29,0,-35v-15,-5,-12,-29,0,-34v-14,-6,-14,-28,0,-35v-15,-5,-13,-30,1,-34v-17,-5,-16,-38,9,-35xm45,-33v-27,4,-29,-30,-12,-35v-13,-5,-14,-29,0,-35v-13,-5,-14,-29,0,-35v-15,-4,-13,-29,0,-34v-16,-5,-11,-28,0,-36v-18,-7,-13,-36,11,-33v24,-3,27,26,10,34v13,8,15,27,0,35v13,6,15,28,0,35v12,4,16,30,0,33v11,6,16,29,0,36v15,7,16,37,-9,35xm123,-68v16,8,15,38,-13,35v-21,3,-25,-28,-9,-33v1,-6,-14,-8,-10,-19v1,-12,7,-18,23,-17v24,-3,25,29,9,34xm168,-15v0,11,-8,16,-23,16v-13,0,-20,-6,-20,-18v0,-11,7,-16,21,-16v15,0,23,6,22,18xm56,-17v0,-11,8,-16,22,-16v14,0,21,5,21,17v0,11,-8,17,-22,17v-14,0,-21,-6,-21,-18","w":225},"X":{"d":"155,-224v0,-23,45,-22,43,0v4,13,-18,16,-6,21v12,11,5,34,-16,31v-27,3,-25,-30,-9,-34v-5,-5,-13,-8,-12,-18xm142,-171v16,-2,31,1,30,16v0,11,-7,18,-22,18v-24,0,-28,-31,-8,-34xm53,-211v-11,7,10,12,7,22v0,12,-7,17,-21,17v-26,0,-28,-27,-11,-34v-13,-6,-18,-38,10,-35v22,-3,29,22,15,30xm172,-85v0,12,-8,17,-22,17v-14,0,-21,-6,-21,-17v0,-12,7,-17,21,-17v15,0,22,6,22,17xm88,-137v23,1,58,-7,58,17v0,25,-36,17,-60,17v-10,0,-17,-7,-17,-17v0,-11,6,-17,19,-17xm43,-155v0,-11,7,-17,21,-17v14,0,22,6,22,17v0,12,-7,18,-20,18v-15,1,-23,-6,-23,-18xm187,-35v1,8,11,8,11,19v0,11,-7,17,-19,17v-29,0,-29,-28,-12,-34v-17,-6,-16,-38,10,-35v24,-3,27,28,10,33xm86,-86v0,12,-8,18,-22,18v-14,0,-21,-6,-21,-17v0,-12,7,-18,21,-18v15,0,22,6,22,17xm39,-68v28,0,23,27,10,36v17,6,14,36,-10,33v-27,2,-27,-27,-11,-34v-15,-5,-17,-35,11,-35","w":214},"Y":{"d":"175,-241v25,-3,28,26,12,34v13,8,14,28,0,35v14,6,14,28,0,34v13,9,15,27,0,34v13,6,14,29,0,35v16,6,15,38,-12,34v-25,1,-21,-27,-9,-35v-18,-4,-7,-26,-4,-33r-93,0v-10,1,-17,-9,-17,-18v0,-9,8,-17,16,-17r95,-1v-11,-8,-10,-29,3,-33v-14,-5,-14,-30,0,-35v-15,-6,-16,-36,9,-34xm36,-241v30,-3,26,27,13,36v15,4,13,28,0,33v16,7,15,35,-12,35v-24,0,-25,-28,-9,-35v-15,-8,-13,-28,0,-34v-15,-5,-16,-38,8,-35xm69,-33v32,4,88,-16,95,15v-4,33,-62,18,-94,18v-9,0,-19,-7,-18,-17v0,-8,9,-17,17,-16xm18,-51v0,-12,7,-17,22,-17v14,0,21,5,21,16v0,11,-8,18,-23,18v-14,0,-20,-6,-20,-17","w":219},"Z":{"d":"142,-171v-26,0,-28,-23,-15,-33v-28,-6,-69,0,-101,-2v-9,0,-20,-6,-19,-17v-1,-10,9,-17,18,-17r115,0v22,-3,29,27,10,33v1,7,13,8,11,18v0,11,-6,18,-19,18xm135,-154v0,12,-7,17,-21,17v-14,0,-21,-6,-21,-18v0,-11,7,-16,22,-16v13,0,20,6,20,17xm89,-103v-15,0,-21,-6,-22,-17v0,-12,10,-18,24,-17v12,0,19,6,19,17v0,11,-8,17,-21,17xm63,-102v14,-1,21,5,21,16v0,12,-8,19,-23,18v-11,0,-20,-7,-20,-17v0,-12,8,-17,22,-17xm38,-68v26,0,22,26,12,33v28,6,69,-1,101,1v13,0,19,6,19,17v0,7,-7,17,-16,17r-127,0v-26,3,-25,-32,-4,-34v4,-6,-9,-8,-7,-17v0,-11,7,-17,22,-17","w":176},"[":{"d":"40,0v-19,-1,-20,-30,-5,-35v-15,-4,-14,-29,0,-33v-13,-7,-15,-29,0,-35v-14,-6,-13,-28,0,-34v-12,-6,-16,-27,0,-34v-13,-8,-15,-29,0,-34v-14,-6,-15,-37,8,-35v28,2,75,-11,76,17v1,27,-37,15,-60,19v12,7,9,28,-3,33v15,5,13,29,0,34v14,5,15,30,0,34v12,7,15,28,0,35v11,4,16,26,2,32v16,7,61,-8,60,19v-1,29,-51,13,-78,17","w":126},"\\":{"d":"33,-207v-17,1,-24,-5,-24,-17v0,-11,7,-17,21,-17v15,0,23,5,23,17v0,11,-7,17,-20,17xm57,-207v14,0,21,6,22,18v0,11,-8,17,-21,17v-16,1,-21,-5,-22,-17v0,-12,7,-18,21,-18xm105,-155v0,11,-7,18,-20,18v-15,0,-23,-6,-23,-18v0,-11,7,-17,21,-17v15,0,22,5,22,17xm131,-120v-1,11,-7,17,-21,17v-15,0,-22,-6,-22,-17v0,-12,8,-17,22,-17v14,0,21,5,21,17xm138,-68v-17,0,-24,-6,-24,-17v0,-12,7,-18,21,-18v15,0,22,6,22,18v0,11,-6,17,-19,17xm184,-50v0,11,-7,17,-21,17v-15,0,-23,-6,-23,-18v0,-11,8,-17,22,-17v15,0,22,6,22,18xm186,-33v16,0,24,6,24,18v0,11,-7,17,-21,17v-15,0,-22,-6,-22,-18v0,-11,6,-17,19,-17","w":219},"]":{"d":"96,-35v14,6,14,35,-6,35v-27,0,-78,11,-78,-17v0,-25,39,-13,60,-19v-12,-6,-9,-29,3,-32v-14,-6,-14,-29,0,-35v-14,-3,-14,-30,0,-34v-12,-4,-16,-29,0,-34v-12,-6,-17,-25,-3,-33v-20,-5,-61,9,-60,-19v1,-28,48,-14,76,-17v20,-2,23,29,7,34v10,4,17,27,2,33v0,5,20,22,3,31v-6,10,19,27,-4,39v15,6,12,30,-1,35v14,3,17,29,1,33","w":126},"_":{"d":"180,82r-180,0r0,-34r180,0r0,34","w":180},"`":{"d":"72,-312v-13,8,16,8,13,23v0,11,-8,17,-23,17v-24,0,-23,-23,-12,-33v-14,-1,-33,-1,-33,-19v0,-18,19,-17,37,-16v20,-4,27,16,18,28","w":125},"a":{"d":"109,-207v-15,1,-22,-6,-23,-17v0,-12,7,-17,21,-17v15,0,22,6,22,17v0,12,-6,17,-20,17xm113,-189v0,-13,7,-18,23,-17v14,0,21,6,21,17v0,12,-8,17,-23,17v-13,0,-21,-8,-21,-17xm79,-207v15,0,22,6,23,17v0,12,-8,18,-22,18v-14,0,-21,-6,-21,-17v0,-12,7,-18,20,-18xm38,1v-26,4,-26,-29,-10,-34v-13,-5,-15,-30,0,-35v-13,-3,-15,-31,0,-35v-20,-9,-7,-39,12,-36v-15,-8,-11,-37,14,-33v24,-2,26,24,12,33v22,4,60,3,83,0v-11,-9,-12,-33,12,-33v26,0,28,23,15,33v18,0,31,26,11,36v14,6,14,31,0,35v14,4,13,32,0,35v15,5,16,37,-9,34v-26,4,-28,-25,-12,-34v-14,-8,-11,-28,0,-36v-14,-4,-14,-26,-2,-32v-30,-4,-83,-5,-112,1v20,10,-8,32,2,36v12,8,3,28,-5,31v16,6,15,37,-11,34","w":215},"b":{"d":"176,-175v14,5,16,34,-9,34v-28,0,-27,-25,-12,-35v-18,-6,-13,-34,11,-34v26,0,25,28,10,35xm184,-34v-27,0,-28,-26,-12,-34v-14,-6,-16,-35,9,-35v26,0,29,25,12,35v15,6,15,34,-9,34xm41,0v-20,0,-21,-28,-6,-34v-15,-5,-13,-29,0,-35v-15,-7,-13,-28,0,-34v-12,-5,-15,-27,0,-34v-13,-7,-14,-28,0,-34v-10,-4,-19,-30,0,-33v0,-7,-12,-9,-11,-19v1,-11,8,-17,22,-17r83,0v16,-1,24,5,24,17v0,34,-67,8,-94,19v12,7,9,28,-3,33v18,5,8,27,4,34r90,0v13,0,20,6,20,17v0,11,-6,17,-18,17r-93,1v10,7,9,28,-3,34v14,4,13,26,2,32v24,8,63,3,92,3v13,0,20,6,20,16v0,11,-7,17,-20,17r-109,0","w":218},"c":{"d":"179,-171v-14,0,-22,-5,-22,-17v0,-12,9,-18,23,-17v13,0,19,5,19,16v0,11,-6,18,-20,18xm74,-240v32,0,86,-14,91,17v-2,30,-58,13,-88,17v-16,2,-23,-5,-23,-17v0,-11,6,-17,20,-17xm187,-35v-11,3,-30,-1,-30,-16v0,-11,7,-17,21,-17v24,0,28,28,9,33xm57,-73v-14,6,5,10,5,21v0,11,-6,18,-19,18v-26,0,-31,-25,-13,-34v-13,-7,-13,-27,0,-36v-14,-4,-14,-29,0,-32v-1,-8,-12,-7,-10,-18v-4,-14,18,-16,4,-22v-12,-10,-1,-32,15,-30v23,-3,31,25,13,33v6,7,17,29,-1,36v14,5,13,29,0,34v8,5,17,21,6,30xm54,-17v3,-30,61,-16,92,-16v13,0,19,5,19,16v-1,29,-51,15,-78,17v-25,2,-30,-1,-33,-17"},"d":{"d":"181,-205v27,-3,28,26,12,34v13,8,14,27,0,34v12,7,15,27,0,35v14,6,14,28,0,34v15,6,16,34,-10,34v-26,0,-27,-26,-11,-34v-14,-6,-14,-28,0,-34v-14,-8,-12,-28,0,-36v-16,-5,-12,-27,0,-33v-13,-6,-17,-36,9,-34xm40,0v-19,-1,-20,-30,-5,-35v-15,-4,-14,-29,0,-33v-13,-7,-15,-29,0,-35v-14,-6,-13,-28,0,-34v-12,-6,-16,-27,0,-34v-13,-8,-15,-29,0,-34v-14,-6,-15,-35,8,-35r108,0v9,0,20,6,19,17v-1,10,-7,18,-18,18r-93,1v12,7,9,28,-3,33v15,5,13,29,0,34v14,5,15,30,0,34v12,7,15,28,0,35v11,4,16,26,2,32v26,5,63,1,93,2v9,0,19,7,19,17v0,11,-7,17,-21,17r-109,0","w":223},"e":{"d":"164,-240v10,0,18,7,18,17v0,7,-7,17,-16,17r-94,0v-10,0,-18,-7,-18,-17v0,-9,8,-17,16,-17r94,0xm57,-176v-13,5,18,25,-3,37v20,5,52,1,76,2v12,0,18,6,18,17v0,33,-64,8,-94,19v12,7,9,27,-3,33v16,6,15,34,-9,34v-26,0,-28,-26,-11,-34v-13,-4,-15,-31,0,-35v-13,-3,-15,-28,-1,-33v-9,-7,-18,-28,0,-34v-2,-7,-11,-6,-11,-18v0,-12,8,-18,22,-18v20,0,27,19,16,30xm170,-33v17,2,14,33,-4,33r-93,0v-25,3,-24,-33,-4,-33r101,0","w":194},"f":{"d":"150,-205v-33,0,-93,15,-93,-18v0,-12,6,-17,20,-17r74,0v11,0,17,6,17,17v0,12,-6,18,-18,18xm45,1v-28,4,-28,-28,-12,-34v-12,-5,-15,-29,0,-34v-14,-6,-14,-30,0,-35v-14,-6,-14,-28,0,-34v-12,-7,-15,-28,0,-35v-15,-6,-16,-38,12,-34v24,-1,26,26,9,34v13,6,15,25,3,32v-1,3,1,3,4,3v30,4,86,-13,90,17v-3,34,-67,8,-94,19v11,7,10,27,-3,32v13,7,14,29,-1,35v16,6,17,36,-8,34","w":177},"g":{"d":"199,-189v0,11,-7,18,-22,18v-14,0,-20,-6,-20,-17v0,-12,7,-17,21,-17v14,0,21,5,21,16xm54,-223v0,-31,59,-17,90,-17v14,0,21,6,21,17v0,33,-61,17,-92,17v-13,0,-19,-6,-19,-17xm188,-68v15,6,16,34,-9,34v-23,0,-28,-22,-14,-33v-20,-5,-60,9,-60,-18v0,-28,48,-14,75,-17v26,-3,21,29,8,34xm51,-68v19,7,11,37,-11,34v-23,3,-25,-28,-10,-34v-13,-7,-13,-27,0,-36v-14,-2,-14,-28,-1,-31v-6,-7,-18,-28,1,-35v-13,-8,-18,-37,10,-35v26,-4,27,25,11,34v14,4,14,29,0,34v13,5,14,30,0,34v13,7,14,29,0,35xm54,-17v0,-31,63,-11,94,-17v11,1,17,7,17,17v0,32,-61,17,-93,17v-10,0,-18,-7,-18,-17","w":213},"h":{"d":"182,-241v28,-4,27,29,12,35v13,7,15,29,0,34v13,6,15,29,0,35v13,5,14,30,0,35v13,4,15,29,0,34v14,6,14,29,0,35v16,5,16,34,-9,34v-27,0,-28,-25,-12,-34v-2,-3,-13,-9,-11,-18v-4,-10,18,-14,7,-20v-12,-7,-6,-25,2,-30v-31,-5,-80,-3,-112,0v12,8,9,28,-3,33v14,5,14,30,0,34v14,7,16,38,-12,35v-23,3,-27,-28,-9,-33v-12,-8,-15,-29,0,-37v-15,-4,-13,-29,0,-33v-12,-6,-15,-30,0,-35v-14,-5,-13,-31,0,-35v-12,-4,-16,-29,0,-33v-12,-8,-19,-36,12,-36v25,0,25,27,9,35v14,5,15,29,0,34v11,5,15,26,3,33v31,4,80,3,112,0v-14,-7,-7,-27,2,-34v-14,-6,-11,-29,1,-33v-15,-4,-16,-38,8,-35","w":229},"i":{"d":"73,-68v14,3,13,27,3,32v8,10,45,-7,42,18v-3,33,-61,14,-93,18v-20,3,-22,-31,-3,-33v9,-1,25,4,28,-3v-9,-7,-12,-26,3,-32v-13,-5,-15,-30,0,-35v-12,-4,-15,-29,0,-34v-16,-4,-14,-31,0,-34v-13,-5,-16,-25,-3,-33v-12,-6,-45,5,-43,-19v3,-31,59,-17,90,-17v14,0,21,6,21,17v0,22,-27,14,-42,19v10,7,11,26,-3,33v12,4,16,28,1,32v-3,6,13,9,10,19v4,10,-17,16,-7,21v13,6,6,27,-4,31","w":125},"j":{"d":"169,-240v22,0,22,28,7,35v13,4,14,28,0,34v14,6,13,28,0,34v13,7,14,28,0,34v11,7,17,25,0,35v18,7,14,34,-12,34v-24,0,-25,-28,-9,-34v-12,-5,-17,-29,0,-33v-10,-8,-17,-28,0,-36v-13,-6,-13,-27,0,-35v-14,-4,-14,-26,-2,-32v-24,-11,-93,14,-95,-19v0,-8,8,-17,17,-17r94,0xm62,-33v32,0,86,-13,91,16v-5,30,-57,13,-87,17v-17,2,-24,-5,-25,-17v0,-11,7,-16,21,-16xm50,-52v-1,12,-7,19,-22,18v-14,0,-21,-5,-21,-16v0,-12,7,-18,20,-18v15,0,23,5,23,16"},"k":{"d":"163,-223v0,-12,7,-18,21,-18v14,0,21,6,21,17v0,12,-7,18,-23,17v-13,0,-19,-5,-19,-16xm150,-172v-14,0,-22,-5,-22,-17v0,-12,7,-17,22,-17v14,0,21,6,21,17v0,12,-7,17,-21,17xm136,-155v0,12,-7,18,-21,18v-14,0,-22,-6,-22,-18v0,-11,8,-17,22,-17v14,0,21,6,21,17xm147,-33v-10,-1,-19,-6,-19,-17v0,-16,25,-24,37,-13v12,11,5,33,-18,30xm163,-16v-1,-9,8,-17,16,-17v18,-1,26,5,26,17v0,12,-7,17,-21,17v-14,0,-21,-6,-21,-17xm136,-86v0,12,-7,18,-21,18v-15,0,-22,-6,-22,-17v0,-12,7,-18,21,-18v15,0,22,6,22,17xm36,-102v-13,-6,-17,-29,-1,-35v-14,-7,-12,-28,0,-36v-14,-3,-14,-29,0,-32v-2,-7,-11,-6,-11,-19v0,-12,8,-17,22,-17v25,0,26,28,10,34v12,7,15,29,0,35v13,5,14,28,3,33v15,7,51,-7,52,19v1,25,-32,15,-52,19v11,6,10,30,-3,33v13,7,15,27,0,35v15,6,17,34,-11,34v-26,0,-26,-26,-10,-34v-14,-8,-13,-27,0,-36v-15,-4,-14,-29,1,-33","w":212},"l":{"d":"42,-241v27,-4,28,26,12,34v12,7,15,26,0,35v16,7,11,29,0,36v17,4,11,28,0,33v13,6,14,29,0,34v13,7,16,35,-10,35v-26,0,-27,-28,-11,-35v-13,-2,-15,-31,0,-34v-12,-4,-15,-28,0,-34v-11,-6,-16,-28,0,-35v-14,-7,-14,-29,0,-35v-16,-5,-15,-37,9,-34xm167,-33v11,-1,18,6,18,16v0,10,-8,17,-18,17r-92,0v-9,0,-20,-6,-19,-17v1,-12,8,-16,25,-16r86,0","w":192},"m":{"d":"84,-206v21,-2,22,27,9,33v11,2,31,2,43,0v-12,-8,-10,-33,8,-33v10,0,35,3,22,-7v-8,-12,0,-31,18,-28v24,-2,27,28,10,35v14,4,15,30,0,34v12,5,16,29,0,35v15,8,13,29,0,35v14,5,14,29,0,34v14,7,14,31,0,35v17,6,14,38,-10,34v-26,2,-28,-27,-11,-34v-10,-5,-17,-29,0,-33v-10,-8,-16,-29,0,-36v-11,-6,-14,-30,1,-35v-14,-7,-14,-26,-3,-33v-3,-4,-21,-2,-26,0v17,11,5,37,-17,34v12,8,11,36,-13,33v-26,2,-26,-25,-13,-33v-2,-2,-8,0,-11,-1v-16,-1,-19,-28,-6,-33v-4,-3,-21,-4,-26,0v13,7,7,28,-2,34v14,5,11,29,-1,33v13,5,14,30,0,35v12,5,16,29,1,33v11,9,17,36,-11,36v-25,0,-28,-28,-11,-34v-13,-5,-12,-29,0,-36v-12,-4,-16,-27,-1,-32v3,-6,-13,-8,-10,-19v-1,-9,7,-14,11,-17v-11,-6,-16,-28,0,-35v-11,-3,-17,-29,0,-33v-1,-8,-12,-8,-11,-19v0,-11,11,-17,24,-17v23,0,23,26,11,33v4,5,17,1,25,2","w":229},"n":{"d":"194,-33v15,6,16,38,-10,34v-25,3,-28,-27,-11,-34v-11,-6,-15,-28,0,-34v-10,-7,-16,-26,-2,-34v-12,-5,-43,3,-43,-19v0,-19,25,-17,43,-18v-13,-9,-8,-27,2,-35v-15,-4,-13,-30,1,-33v-14,-8,-17,-37,11,-35v23,-4,27,29,10,33v6,7,18,26,-1,36v12,4,15,30,0,35v15,5,13,31,0,35v12,3,16,28,1,33v1,8,12,6,10,18v2,10,-7,14,-11,18xm115,-137v-14,1,-22,-8,-22,-18v0,-11,7,-17,20,-17v15,0,23,6,23,17v0,12,-7,18,-21,18xm44,-241v24,0,31,22,15,33v12,5,43,-4,43,18v0,23,-27,15,-43,20v12,6,8,29,-3,33v15,5,13,29,0,34v14,7,13,30,0,35v13,5,14,30,0,35v15,5,16,37,-10,34v-25,4,-28,-27,-11,-34v-13,-7,-14,-28,0,-36v-16,-5,-12,-29,0,-34v-13,-5,-15,-28,0,-34v-11,-6,-16,-29,0,-35v-12,-5,-16,-28,0,-33v-2,-8,-11,-7,-11,-19v0,-11,7,-17,20,-17","w":229},"o":{"d":"69,-240v33,5,90,-14,96,17v-2,30,-55,12,-83,17v-34,6,-35,-29,-13,-34xm177,-205v29,-3,26,27,11,34v16,5,15,29,0,34v15,6,14,28,0,34v14,6,14,30,0,35v15,5,16,34,-9,34v-27,0,-27,-26,-12,-34v-11,-6,-15,-29,1,-34v-13,-4,-15,-31,0,-35v-14,-4,-14,-29,0,-34v-14,-5,-17,-37,9,-34xm51,-69v16,7,14,38,-11,34v-23,3,-28,-27,-10,-32v-9,-7,-16,-29,0,-35v-11,-6,-14,-30,0,-35v-13,-8,-11,-27,0,-36v-18,-8,-10,-39,13,-33v24,-1,23,28,8,34v13,7,13,27,0,35v14,3,14,30,0,34v12,6,16,29,0,34xm54,-17v4,-30,62,-16,93,-16v12,0,18,5,18,16v0,32,-63,13,-95,17v-8,1,-17,-9,-16,-17","w":218},"p":{"d":"194,-171v17,8,14,35,-11,35v-29,0,-20,-31,-11,-36v-16,-7,-13,-36,12,-33v26,-2,26,27,10,34xm94,-136v27,0,76,-11,76,16v0,30,-48,18,-76,18v-9,0,-18,-7,-18,-17v0,-10,9,-17,18,-17xm149,-240v13,-1,22,5,21,17v0,12,-7,18,-21,18r-90,1v12,8,9,27,-3,33v14,6,14,29,0,35v13,5,14,29,0,34v12,4,16,27,1,34v11,5,14,30,-1,35v15,6,17,36,-9,34v-24,5,-31,-25,-13,-32v-5,-8,-18,-28,1,-35v-10,-9,-16,-28,0,-36v-12,-6,-16,-28,0,-34v-13,-6,-14,-30,0,-35v-13,-5,-15,-27,0,-34v-14,-7,-16,-35,9,-35r105,0","w":216},"q":{"d":"54,-223v5,-31,59,-13,90,-17v28,-4,26,36,4,34v-32,-3,-88,15,-94,-17xm188,-68v16,7,14,33,-6,34v-8,1,-19,-2,-25,1v13,9,9,35,-11,33v-31,-4,-91,13,-92,-17v-1,-30,52,-10,77,-19v-12,-4,-12,-32,7,-32v8,0,26,2,27,-2v-14,-7,-7,-27,2,-33v-14,-4,-11,-31,0,-35v-15,-5,-10,-27,0,-34v-16,-7,-13,-36,12,-33v24,-2,25,27,9,34v15,5,13,27,0,35v15,4,13,28,0,33v14,6,13,29,0,35xm135,-86v0,12,-7,19,-22,18v-13,0,-20,-5,-20,-16v0,-12,7,-19,22,-19v13,0,20,6,20,17xm51,-137v15,5,13,29,0,34v13,5,14,28,0,34v14,5,17,36,-8,34v-28,5,-29,-26,-13,-33v-12,-6,-15,-29,0,-35v-11,-4,-15,-30,1,-34v-11,-4,-17,-29,-2,-33v-9,-7,-16,-36,12,-36v27,0,24,29,10,35v14,5,14,28,0,34","w":218},"r":{"d":"198,-175v-10,7,10,10,7,21v0,11,-9,17,-20,18v-24,2,-31,-26,-13,-33v2,-7,-12,-8,-10,-18v0,-12,7,-18,21,-18v21,0,28,20,15,30xm93,-136v27,0,75,-11,77,16v2,22,-25,16,-43,19v13,7,13,36,-11,33v-24,5,-30,-23,-14,-32v-8,-3,-27,-3,-26,-19v0,-10,7,-17,17,-17xm47,1v-26,4,-29,-28,-12,-34v-14,-5,-12,-30,0,-36v-14,-3,-15,-29,0,-32v-11,-8,-16,-28,0,-36v-14,-6,-13,-28,0,-34v-13,-6,-14,-29,0,-34v-16,-11,-16,-35,19,-35r99,0v10,0,17,7,17,17v0,10,-7,17,-17,17v-31,1,-67,-3,-94,2v20,12,-8,31,2,37v12,7,4,27,-5,30v12,6,15,30,0,35v12,6,15,26,0,34v12,7,15,29,-1,35v16,6,17,36,-8,34xm149,-67v14,0,21,4,21,16v0,12,-8,18,-21,18v-15,0,-22,-6,-22,-17v0,-12,8,-17,22,-17xm204,-17v0,12,-6,18,-20,18v-15,0,-22,-6,-22,-17v0,-11,7,-17,20,-17v15,0,22,5,22,16","w":219},"s":{"d":"194,-189v0,11,-7,19,-21,18v-14,0,-21,-7,-21,-18v0,-11,6,-16,20,-16v15,0,22,5,22,16xm73,-240v30,4,87,-13,87,17v0,31,-59,17,-92,17v-13,0,-19,-6,-19,-17v1,-12,8,-18,24,-17xm188,-72v-12,6,8,8,6,20v-2,11,-7,18,-23,18v-24,0,-23,-29,-8,-34v-16,-8,-16,-36,11,-34v20,-2,26,20,14,30xm69,-137v32,4,86,-14,91,17v-4,31,-58,17,-89,17v-15,0,-22,-6,-22,-17v0,-10,6,-19,20,-17xm14,-155v-2,-11,19,-15,6,-21v-12,-9,-6,-33,15,-30v28,-1,25,26,11,36v17,6,14,36,-10,33v-12,1,-22,-7,-22,-18xm71,-34v32,0,89,-13,89,17v0,11,-6,17,-19,17v-32,0,-92,15,-92,-17v0,-12,8,-17,22,-17xm35,-68v14,0,22,5,22,16v0,11,-7,17,-21,17v-14,0,-21,-5,-22,-15v0,-12,8,-18,21,-18"},"t":{"d":"168,-240v13,-1,20,7,20,17v0,32,-54,8,-77,20v11,6,10,28,-3,32v14,6,14,29,0,35v14,5,14,28,0,34v13,4,16,30,0,34v15,6,15,29,0,35v17,6,17,36,-9,34v-25,5,-28,-27,-11,-34v-12,-5,-16,-29,0,-34v-11,-4,-17,-28,-1,-33v3,-5,-15,-9,-11,-20v-3,-11,19,-14,7,-20v-21,-10,11,-30,0,-35v-12,-6,-7,-23,2,-29v-22,-9,-76,12,-78,-19v0,-10,9,-17,19,-17r142,0","w":195},"u":{"d":"192,-207v11,6,14,30,-1,35v14,5,13,30,0,34v13,4,15,29,0,34v15,6,12,30,0,36v19,6,12,37,-11,33v-25,2,-26,-27,-10,-34v-12,-6,-16,-28,0,-33v-1,-7,-13,-8,-11,-18v-1,-9,7,-13,11,-18v-13,-6,-13,-28,0,-35v-16,-6,-10,-28,0,-35v-17,-6,-15,-36,10,-33v27,-2,26,27,12,34xm42,-241v27,-4,28,26,12,34v12,7,15,26,0,35v16,7,11,29,0,36v17,4,11,28,0,33v13,6,14,29,0,34v13,7,16,35,-10,35v-26,0,-27,-28,-11,-35v-13,-2,-15,-31,0,-34v-12,-4,-15,-28,0,-34v-11,-6,-16,-28,0,-35v-14,-7,-14,-29,0,-35v-16,-5,-15,-37,9,-34xm56,-17v3,-30,62,-16,93,-16v12,0,18,4,18,15v-3,32,-59,18,-91,18v-11,0,-21,-6,-20,-17","w":223},"v":{"d":"179,-241v24,0,28,26,11,35v13,6,14,28,0,35v13,5,16,29,0,33v11,8,15,30,-1,36v16,5,16,36,-9,34v-26,3,-27,-27,-11,-34v-14,-5,-15,-29,0,-35v-13,-5,-14,-28,0,-34v-14,-7,-14,-29,0,-35v-14,-5,-17,-35,10,-35xm27,-203v10,-6,-11,-10,-7,-21v0,-11,7,-17,21,-17v25,0,28,25,11,34v12,8,15,27,0,35v10,6,16,29,0,33v-1,6,13,7,10,18v3,12,-11,15,-10,20v16,6,13,36,-10,33v-25,3,-29,-27,-12,-34v-10,-6,-15,-30,1,-35v-14,-5,-14,-31,0,-35v-10,-3,-17,-23,-4,-31xm146,-33v-15,0,-23,-5,-23,-18v0,-11,7,-17,22,-17v14,0,21,7,21,18v0,12,-7,17,-20,17xm75,-33v-14,1,-21,-8,-21,-19v0,-11,7,-16,19,-16v15,0,24,7,24,18v0,11,-8,17,-22,17xm131,-16v0,11,-7,17,-20,17v-15,0,-23,-6,-23,-17v0,-11,7,-17,22,-17v14,0,21,6,21,17","w":220},"w":{"d":"181,-241v27,-4,27,29,11,35v15,5,14,30,0,34v13,6,15,28,0,35v13,5,15,29,0,34v12,5,16,29,0,35v15,7,16,35,-11,35v-25,0,-25,-27,-10,-35v-14,-5,-13,-29,0,-35v-15,-5,-12,-29,0,-34v-14,-6,-14,-28,0,-35v-15,-5,-13,-30,1,-34v-17,-5,-16,-38,9,-35xm45,-33v-27,4,-29,-30,-12,-35v-13,-5,-14,-29,0,-35v-13,-5,-14,-29,0,-35v-15,-4,-13,-29,0,-34v-16,-5,-11,-28,0,-36v-18,-7,-13,-36,11,-33v24,-3,27,26,10,34v13,8,15,27,0,35v13,6,15,28,0,35v12,4,16,30,0,33v11,6,16,29,0,36v15,7,16,37,-9,35xm123,-68v16,8,15,38,-13,35v-21,3,-25,-28,-9,-33v1,-6,-14,-8,-10,-19v1,-12,7,-18,23,-17v24,-3,25,29,9,34xm168,-15v0,11,-8,16,-23,16v-13,0,-20,-6,-20,-18v0,-11,7,-16,21,-16v15,0,23,6,22,18xm56,-17v0,-11,8,-16,22,-16v14,0,21,5,21,17v0,11,-8,17,-22,17v-14,0,-21,-6,-21,-18","w":225},"x":{"d":"155,-224v0,-23,45,-22,43,0v4,13,-18,16,-6,21v12,11,5,34,-16,31v-27,3,-25,-30,-9,-34v-5,-5,-13,-8,-12,-18xm142,-171v16,-2,31,1,30,16v0,11,-7,18,-22,18v-24,0,-28,-31,-8,-34xm53,-211v-11,7,10,12,7,22v0,12,-7,17,-21,17v-26,0,-28,-27,-11,-34v-13,-6,-18,-38,10,-35v22,-3,29,22,15,30xm172,-85v0,12,-8,17,-22,17v-14,0,-21,-6,-21,-17v0,-12,7,-17,21,-17v15,0,22,6,22,17xm88,-137v23,1,58,-7,58,17v0,25,-36,17,-60,17v-10,0,-17,-7,-17,-17v0,-11,6,-17,19,-17xm43,-155v0,-11,7,-17,21,-17v14,0,22,6,22,17v0,12,-7,18,-20,18v-15,1,-23,-6,-23,-18xm187,-35v1,8,11,8,11,19v0,11,-7,17,-19,17v-29,0,-29,-28,-12,-34v-17,-6,-16,-38,10,-35v24,-3,27,28,10,33xm86,-86v0,12,-8,18,-22,18v-14,0,-21,-6,-21,-17v0,-12,7,-18,21,-18v15,0,22,6,22,17xm39,-68v28,0,23,27,10,36v17,6,14,36,-10,33v-27,2,-27,-27,-11,-34v-15,-5,-17,-35,11,-35","w":214},"y":{"d":"175,-241v25,-3,28,26,12,34v13,8,14,28,0,35v14,6,14,28,0,34v13,9,15,27,0,34v13,6,14,29,0,35v16,6,15,38,-12,34v-25,1,-21,-27,-9,-35v-18,-4,-7,-26,-4,-33r-93,0v-10,1,-17,-9,-17,-18v0,-9,8,-17,16,-17r95,-1v-11,-8,-10,-29,3,-33v-14,-5,-14,-30,0,-35v-15,-6,-16,-36,9,-34xm36,-241v30,-3,26,27,13,36v15,4,13,28,0,33v16,7,15,35,-12,35v-24,0,-25,-28,-9,-35v-15,-8,-13,-28,0,-34v-15,-5,-16,-38,8,-35xm69,-33v32,4,88,-16,95,15v-4,33,-62,18,-94,18v-9,0,-19,-7,-18,-17v0,-8,9,-17,17,-16xm18,-51v0,-12,7,-17,22,-17v14,0,21,5,21,16v0,11,-8,18,-23,18v-14,0,-20,-6,-20,-17","w":219},"z":{"d":"142,-171v-26,0,-28,-23,-15,-33v-28,-6,-69,0,-101,-2v-9,0,-20,-6,-19,-17v-1,-10,9,-17,18,-17r115,0v22,-3,29,27,10,33v1,7,13,8,11,18v0,11,-6,18,-19,18xm135,-154v0,12,-7,17,-21,17v-14,0,-21,-6,-21,-18v0,-11,7,-16,22,-16v13,0,20,6,20,17xm89,-103v-15,0,-21,-6,-22,-17v0,-12,10,-18,24,-17v12,0,19,6,19,17v0,11,-8,17,-21,17xm63,-102v14,-1,21,5,21,16v0,12,-8,19,-23,18v-11,0,-20,-7,-20,-17v0,-12,8,-17,22,-17xm38,-68v26,0,22,26,12,33v28,6,69,-1,101,1v13,0,19,6,19,17v0,7,-7,17,-16,17r-127,0v-26,3,-25,-32,-4,-34v4,-6,-9,-8,-7,-17v0,-11,7,-17,22,-17","w":176},"|":{"d":"71,44v0,10,-7,17,-17,17v-11,0,-17,-7,-17,-21r0,-305v-9,-40,33,-45,34,-13r0,322","w":100},"\u00d7":{"d":"149,-94v12,10,12,38,-9,33v-18,-5,-28,-23,-41,-34v-15,12,-30,43,-56,31v-12,-25,20,-40,31,-55v-11,-16,-43,-31,-31,-56v23,-15,40,20,56,32v15,-12,30,-44,55,-32v15,23,-19,40,-31,56","w":197},"\u2026":{"d":"301,0v-14,0,-22,-5,-22,-17v0,-11,7,-17,21,-17v14,0,21,5,21,17v0,11,-6,17,-20,17xm181,0v-14,0,-22,-5,-22,-17v0,-11,7,-17,21,-17v14,0,21,5,21,17v0,11,-6,17,-20,17xm61,0v-14,0,-22,-5,-22,-17v0,-11,7,-17,21,-17v14,0,21,5,21,17v0,11,-6,17,-20,17","w":360},"\u2013":{"d":"177,-136v10,0,17,7,17,17v0,11,-7,17,-21,17r-124,0v-40,10,-47,-34,-14,-34r142,0"},"\u2014":{"d":"357,-136v10,0,17,7,17,17v0,11,-7,17,-21,17r-304,0v-40,10,-47,-34,-14,-34r322,0","w":388},"\u201c":{"d":"88,-205v16,-1,-5,-7,-1,-17v0,-11,7,-17,21,-17v14,0,22,5,22,16v0,14,-16,18,-26,19v13,7,13,35,-11,33v-16,2,-23,-6,-23,-17v-1,-10,9,-17,18,-17xm33,-205v17,0,-3,-7,0,-17v0,-11,7,-17,21,-17v14,0,21,5,21,16v0,15,-15,18,-25,19v11,8,12,33,-11,33v-16,0,-23,-6,-24,-17v0,-9,9,-17,18,-17","w":144},"\u201d":{"d":"88,-205v16,-1,-5,-7,-1,-17v0,-11,7,-17,21,-17v14,0,22,5,22,16v0,14,-16,18,-26,19v13,7,13,35,-11,33v-16,2,-23,-6,-23,-17v-1,-10,9,-17,18,-17xm33,-205v17,0,-3,-7,0,-17v0,-11,7,-17,21,-17v14,0,21,5,21,16v0,15,-15,18,-25,19v11,8,12,33,-11,33v-16,0,-23,-6,-24,-17v0,-9,9,-17,18,-17","w":144},"\u2018":{"d":"33,-205v17,0,-3,-7,0,-17v0,-11,7,-17,21,-17v14,0,21,5,21,16v0,15,-15,18,-25,19v11,8,12,33,-11,33v-16,0,-23,-6,-24,-17v0,-9,9,-17,18,-17","w":90},"\u2019":{"d":"33,-205v17,0,-3,-7,0,-17v0,-11,7,-17,21,-17v14,0,21,5,21,16v0,15,-15,18,-25,19v11,8,12,33,-11,33v-16,0,-23,-6,-24,-17v0,-9,9,-17,18,-17","w":90},"\u00a0":{"w":100}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) The Font Bureau, Inc, 2003. All rights reserved.
 * 
 * Trademark:
 * Amplitude-Light is a trademark of The Font Bureau, Inc.
 * 
 * Manufacturer:
 * The Font Bureau, Inc
 * 
 * Designer:
 * Christian Schwartz
 * 
 * Vendor URL:
 * http://www.fontbureau.com
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"18,-24r110,-177r14,-17v-37,4,-79,1,-119,2r0,-18r134,0r0,25r-109,174r-17,20v38,-5,84,-2,126,-3r0,18r-139,0r0,-24","w":176,"k":{"\u00fa":9,"\u00f1":5,"\u00ea":9,"\u00d0":14,"\u00b7":14,"\u00b4":11,"\u00b1":14,"\u00ac":11,"\u00ab":11,"y":7,"w":7,"v":7,"u":7,"t":4,"s":4,"q":9,"p":4,"o":9,"j":4,"i":4,"g":4,"e":9,"d":9,"c":9,"a":5,"U":4,"Q":9,"O":9,"G":9,"C":9,"@":9,"-":14,"&":4}},{"d":"93,-116v-1,22,-14,36,-36,36v-22,0,-36,-14,-36,-36v0,-22,13,-37,36,-37v20,-1,37,17,36,37","w":113},{"d":"50,0r-20,0r0,-258r20,0v-1,60,3,124,-5,177r81,-106r22,0r-61,80v28,30,45,70,66,107r-24,0r-54,-98r-25,35r0,63","w":159,"k":{"\u00d0":11,"\u00bc":-7,"\u00bb":-5,"\u00b7":4,"\u00b4":4,"\u00b1":11,"\u00af":-2,"\u00ae":-2,"\u00ad":-5,"\u00ac":4,"\u00ab":4,"z":-5,"y":-4,"x":-4,"w":-4,"v":-4,"t":-4,"f":-2,"?":4,".":-7,"-":11,",":-7}},{"d":"75,-62r0,-19r47,-62r22,0v-19,24,-35,50,-57,71v22,21,38,48,57,72r-22,0xm18,-62r0,-19r47,-62r22,0v-19,24,-35,50,-57,71v22,21,38,48,57,72r-22,0","w":156,"k":{"s":-4,"Y":18,"W":4,"V":11,"T":18,"8":4,"7":7,"4":14}},{"d":"55,-112r0,112r-23,0r0,-234r23,0r0,105r102,0r0,-105r23,0r0,234r-23,0r0,-112r-102,0","w":212},{"d":"183,-148r0,17r-53,0r-17,39r70,0r0,17r-73,0r0,75r-22,0r0,-75r-73,0r0,-17r69,0r-17,-39r-52,0r0,-17r43,0r-39,-86r23,0v20,50,48,92,57,153v12,-58,37,-103,57,-153r19,0r-37,86r45,0","w":198,"k":{"3":4,"2":7}},{"d":"83,-156v-19,4,-39,7,-64,6r0,-19v24,-1,44,1,63,5v-6,-22,-8,-49,-7,-78r23,0v1,29,0,56,-7,78v19,-4,39,-6,63,-5r0,19v-24,1,-45,-2,-64,-6v10,37,11,90,0,128v19,-4,40,-6,64,-5r0,19v-24,1,-44,-1,-63,-5v7,21,8,48,7,77r-23,0v-1,-29,0,-56,7,-77v-19,4,-39,6,-63,5r0,-19v24,-1,45,1,64,5v-10,-37,-11,-90,0,-128","w":173},{"d":"34,-234r23,0r0,234r-23,0r0,-234","w":90,"k":{"\u00af":4,"\u00ae":4,"j":4,"i":4,"g":4,"f":4}},{"d":"161,-94v1,57,-21,99,-71,99v-54,0,-72,-43,-72,-98v0,-56,20,-97,72,-97v53,0,70,42,71,96xm40,-96v0,47,8,84,50,84v41,0,48,-39,49,-83v0,-44,-8,-78,-49,-78v-42,0,-50,33,-50,77","w":178,"k":{"\u00bc":4,"\u00ba":11,"\u00aa":14,"z":4,"y":4,"x":7,"w":2,"v":4,"`":14,"\\":22,"?":11,"\/":9,".":4,",":4,"*":7,")":4,"'":11}},{"d":"99,-242v-19,1,-44,-7,-44,17r0,38r43,0r0,18r-43,0r0,169r-20,0r0,-169r-24,0r0,-18r24,0v-2,-38,0,-76,35,-74v13,1,34,1,29,19xm130,-258r20,0r0,258r-20,0r0,-258","w":182},{"d":"72,-108v20,40,-9,84,-46,94v37,-5,81,-4,123,-4r0,18r-131,0r0,-22v30,-12,52,-50,31,-86r-35,0r0,-18r26,0v-27,-43,-17,-113,50,-113v26,0,43,7,59,15r-5,17v-29,-17,-103,-27,-96,30v3,21,9,36,16,51r59,0r0,18r-51,0","w":160,"k":{"9":4,"7":-4,"6":7,"4":14,"3":-4,"2":-4}},{"d":"63,-123v0,12,-9,20,-21,20v-12,0,-20,-9,-20,-20v0,-12,8,-22,20,-22v12,0,21,10,21,22","w":84,"k":{"\u00f1":4,"\u00e1":27,"z":11,"y":4,"x":14,"w":4,"v":4,"a":4,"Z":14,"Y":22,"X":25,"W":9,"V":16,"T":32,"S":4,"J":22,"A":18,"8":9,"7":18,"4":11,"3":18,"2":14,"1":14}},{"d":"137,-9v-11,7,-31,15,-50,14v-51,-2,-69,-40,-69,-99v0,-81,49,-114,117,-86r-3,17v-17,-4,-26,-9,-44,-10v-44,-1,-44,36,-48,80v-6,67,39,101,92,68","w":149,"k":{"\u00fa":2,"\u00d0":7,"\u00bc":-5,"\u00bb":-7,"\u00ba":-4,"\u00b4":4,"\u00b1":7,"\u00af":-4,"\u00ae":-4,"\u00ad":-7,"}":-5,"z":-4,"y":-5,"w":-4,"v":-5,"t":-2,"q":2,"o":2,"f":-4,"e":2,"d":2,"c":2,"]":-4,"Y":7,"V":7,"T":18,";":-5,":":-5,"\/":-5,".":-5,"-":7,",":-5,"*":-4,")":-4,"'":-4,"&":-4,"!":-7}},{"d":"96,-253v41,12,1,62,-10,78r-8,-4r16,-38v-10,-1,-19,-3,-17,-16v-1,-11,9,-20,19,-20xm41,-253v41,10,2,63,-10,78r-7,-4r15,-38v-11,-1,-17,-4,-17,-16v0,-11,9,-20,19,-20","w":137,"k":{"\u00fa":22,"\u00f1":20,"\u00ea":14,"\u00e1":43,"\u00af":4,"\u00ae":4,"z":11,"y":4,"x":5,"w":4,"v":4,"u":14,"t":4,"s":18,"r":11,"q":22,"p":11,"o":22,"n":11,"m":11,"g":29,"f":4,"e":22,"d":22,"c":22,"a":20,"Z":4,"W":-4,"T":-4,"S":7,"Q":14,"O":14,"J":36,"G":14,"C":14,"A":43,"9":11,"8":18,"6":38,"5":7,"4":61,"3":4,"2":7,"1":11,"0":22}},{"d":"88,-62v5,52,-30,83,-76,59r3,-16v27,14,51,2,51,-35r0,-180r22,0r0,172","w":118,"k":{"\u00e1":9,"\u00bc":7,"j":4,"i":4,"g":4,"J":5,"A":4,"\/":7,".":7,",":7}},{"d":"74,-122v-23,-11,-44,-29,-44,-60v1,-37,26,-54,63,-57v55,-4,84,56,51,96r-32,17v30,11,58,26,58,65v0,43,-32,62,-76,66v-68,7,-100,-73,-53,-112xm94,-221v-42,0,-55,44,-31,68v8,8,22,15,39,22v21,-12,37,-20,35,-53v-1,-24,-15,-37,-43,-37xm94,-12v49,0,71,-53,39,-81v-12,-10,-33,-17,-49,-24v-27,15,-44,23,-44,60v0,32,20,45,54,45","w":187,"k":{"\u00eb":5,"\u00e3":5,"\u00d0":7,"\u00bd":7,"\u00bc":7,"\u00bb":4,"\u00ba":14,"\u00b7":7,"\u00b4":9,"\u00b1":7,"\u00ad":4,"\u00aa":14,"\u00a9":11,"`":14,"\\":7,"?":7,">":4,"=":4,";":4,":":4,"9":7,"7":7,"3":5,"2":4,"\/":11,".":7,"-":7,",":7,"+":7,"'":14,"%":7,"\"":11}},{"d":"18,-62r0,-19r47,-62r22,0v-19,24,-35,50,-57,71v22,21,38,48,57,72r-22,0","w":100,"k":{"s":-4,"Y":18,"W":4,"V":11,"T":18,"8":4,"7":7,"4":14}},{"d":"134,-258v5,43,-40,54,-54,20v-8,-11,-21,-6,-19,14v1,9,-9,4,-15,5v-5,-43,40,-55,54,-20v9,10,21,6,19,-14v-1,-9,9,-4,15,-5"},{"d":"102,-234r18,0r-113,234r-19,0","w":108,"k":{"8":11,"7":-14,"6":22,"4":32}},{"d":"79,-249r24,0r48,95r-22,0v-13,-29,-28,-56,-38,-89v-10,33,-26,60,-40,89r-20,0","w":187},{"d":"83,-156v-19,4,-39,7,-64,6r0,-19v24,-1,44,1,63,5v-6,-22,-8,-49,-7,-78r23,0v1,29,0,56,-7,78v19,-4,39,-6,63,-5r0,19v-24,1,-45,-2,-64,-6v16,62,5,146,1,214r-9,0r-7,-106v-1,-40,0,-78,8,-108","w":173},{"d":"68,-4r-59,-183r21,0v17,58,39,110,49,175v11,-63,32,-117,49,-175r21,0r-79,245r-20,0","w":157,"k":{"\u00fa":4,"\u00f1":4,"\u00d0":4,"\u00bc":22,"\u00b7":4,"\u00b4":4,"\u00b1":4,"\u00af":-7,"\u00ae":-7,"\u00ac":11,"\u00ab":11,"\u00aa":-4,"z":2,"y":-4,"w":-4,"v":-4,"t":-7,"q":2,"o":4,"g":4,"f":-7,"e":4,"d":2,"c":4,"a":4,"`":-4,"\\":7,"?":5,";":4,":":4,"\/":22,".":22,"-":4,",":22,"*":-4,"&":4}},{"d":"29,-98v-37,-68,49,-117,101,-79r39,-15r0,26r-43,0v11,9,24,12,24,34v0,52,-53,71,-96,53v-18,10,-16,43,15,41v47,-3,94,-2,94,44v0,73,-146,80,-148,11v-1,-26,16,-32,33,-40v-21,-1,-32,-37,-16,-54r18,-8xm42,-133v0,31,13,44,44,44v30,0,44,-13,43,-43v0,-26,-15,-43,-43,-42v-28,0,-43,15,-44,41xm57,-20v-12,9,-23,16,-23,35v0,26,21,31,50,31v34,0,58,-12,59,-40v1,-37,-52,-24,-86,-26","w":175,"k":{"\u00d0":4,"\u00bb":-4,"\u00b7":4,"\u00b1":4,"\u00af":-4,"\u00ae":-4,"\u00ad":-4,"\u00ac":7,"\u00ab":7,"\u00aa":-5,"z":-4,"y":-7,"x":-4,"w":-7,"v":-7,"t":-4,"s":-4,"j":-11,"g":-4,"f":-4,"`":-5,"\\":7,"?":4,"\/":-7,"-":4,"*":-11}},{"d":"41,-37v41,7,2,62,-10,77r-7,-3r15,-39v-11,-1,-17,-4,-17,-16v0,-10,9,-21,19,-19","w":82,"k":{"\u00fa":4,"z":-4,"y":25,"w":18,"v":25,"u":5,"t":7,"s":2,"q":4,"o":4,"g":4,"e":4,"d":4,"c":5}},{"d":"100,-12v24,0,38,-10,53,-18r0,-204r23,0r0,234v-17,3,-14,-14,-20,-22v-9,19,-29,27,-59,27v-102,2,-56,-146,-66,-239r22,0r0,155v-1,42,7,67,47,67","w":208},{"d":"64,-135v-49,-15,-38,-104,24,-104v20,0,36,5,48,11r-5,15v-26,-12,-84,-17,-79,28v7,62,125,31,89,121v-6,15,-24,19,-42,23v15,9,30,25,30,50v0,53,-62,68,-103,44r4,-15v27,13,82,17,79,-28v-5,-65,-123,-31,-87,-123v7,-15,24,-19,42,-22xm125,-102v-12,-40,-106,-35,-87,27v6,21,32,22,50,30v27,-7,47,-24,37,-57","w":163,"k":{"9":7,"7":4}},{"d":"135,-231v0,20,-33,21,-33,0v0,-9,8,-17,16,-17v9,0,17,7,17,17xm62,-248v23,0,19,33,0,33v-8,0,-17,-7,-17,-16v0,-10,8,-17,17,-17"},{"d":"121,-166v0,39,-14,76,-54,76v-72,0,-70,-150,1,-149v39,1,53,34,53,73xm199,-234r18,0r-129,234r-18,0xm345,-144v71,0,70,149,-1,149v-39,0,-52,-34,-52,-75v0,-40,14,-74,53,-74xm272,-71v0,41,-14,76,-53,76v-40,0,-53,-34,-53,-75v0,-39,14,-74,53,-74v39,0,53,34,53,73xm36,-171v0,35,1,67,32,67v30,0,33,-34,32,-68v-1,-27,-6,-51,-32,-51v-27,0,-32,23,-32,52xm312,-76v-1,34,2,67,32,67v31,0,32,-33,32,-68v0,-29,-6,-51,-32,-51v-26,0,-31,25,-32,52xm187,-76v0,35,2,67,32,67v30,0,33,-34,32,-68v-1,-27,-6,-51,-32,-51v-26,0,-32,23,-32,52","w":412},{"d":"39,32v-2,30,-32,40,-56,24r3,-11v15,-1,29,4,32,-13r31,-176r-28,0r0,-18r32,0v9,-44,7,-115,68,-96v5,2,10,3,14,5r-3,11v-21,1,-44,-5,-48,17r-11,63r36,0r0,18r-40,0","w":126,"k":{"8":5,"7":-7,"6":14,"4":32}},{"d":"32,-234r23,0r0,216r101,0r0,18r-124,0r0,-234","w":168,"k":{"\u00fa":11,"\u00ea":11,"\u00d0":25,"\u00bc":-5,"\u00ba":32,"\u00b7":22,"\u00b4":22,"\u00b1":25,"\u00af":4,"\u00ae":4,"\u00ac":7,"\u00ab":7,"\u00aa":29,"y":18,"w":14,"v":18,"u":4,"t":7,"q":11,"o":11,"g":4,"f":4,"e":11,"d":9,"c":11,"`":29,"\\":36,"Y":34,"W":27,"V":36,"U":9,"T":27,"S":4,"Q":11,"O":11,"G":11,"C":11,"@":4,"?":7,"\/":-4,".":-5,"-":25,",":-5,"*":36,"'":32}},{"d":"93,-116v-1,22,-14,36,-36,36v-22,0,-36,-14,-36,-36v0,-22,13,-37,36,-37v20,-1,37,17,36,37","w":113,"k":{"\u00f1":4,"\u00e1":22,"z":13,"y":4,"x":14,"w":4,"v":4,"a":4,"Z":13,"Y":25,"X":27,"W":9,"V":16,"T":36,"S":4,"J":25,"A":14,"9":4,"8":7,"7":25,"4":5,"3":22,"2":11,"1":14}},{"d":"51,-65r-36,0r3,-18r36,0r12,-73r-36,0r3,-18r35,0r10,-60r16,0r-10,60r55,0r9,-60r16,0r-10,60r36,0r-3,18r-35,0r-12,73r35,0r-3,18r-34,0r-11,65r-15,0r10,-65r-55,0r-10,65r-16,0xm125,-82r11,-75r-55,0r-11,75r55,0","w":205,"k":{"8":5,"7":4,"6":4,"4":9,"3":4,"2":4,"1":4}},{"d":"13,0v19,-24,35,-51,57,-72v-22,-20,-38,-47,-57,-71r22,0r47,62r0,19r-47,62r-22,0","w":100,"k":{"\u00e1":5,"y":11,"x":11,"w":7,"v":11,"s":7,"g":4,"Z":5,"Y":40,"X":14,"W":18,"V":29,"T":36,"S":14,"J":7,"A":5,"9":14,"7":18,"5":4,"3":7,"1":7}},{"d":"86,22v4,14,-5,17,-17,17v-50,-2,-25,-70,-25,-108v0,-22,-11,-33,-32,-34r0,-18v76,0,-23,-134,57,-140v13,-1,21,4,17,18v-23,-2,-38,2,-32,31v8,37,21,96,-25,100v59,6,20,80,27,126v4,9,17,8,30,8","w":99,"k":{"j":-7}},{"d":"31,-187r20,0r0,187r-20,0r0,-187","w":82},{"d":"168,-211v45,61,38,216,-62,216v-19,0,-35,-4,-48,-14r-22,40r-14,-9r24,-43v-45,-61,-40,-223,61,-218v19,0,36,5,49,16r20,-38r15,8xm106,-220v-77,0,-73,127,-51,181r92,-168v-10,-9,-23,-13,-41,-13xm107,-12v75,4,74,-123,51,-181r-91,168v10,9,23,13,40,13","w":212},{"d":"11,-89r0,-19r27,-13r0,-113r22,0r0,103r56,-27r0,19r-56,27r0,94r99,0r0,18r-121,0r0,-102","w":172},{"d":"27,-178v33,-17,101,-22,105,25v9,-24,26,-36,56,-37v51,1,65,45,63,101r-112,0v0,45,8,77,52,77v20,0,34,-6,49,-13r3,16v-34,20,-98,21,-113,-21v-17,14,-24,37,-57,35v-54,8,-72,-64,-40,-94v16,-15,54,-17,85,-19v1,-34,0,-64,-35,-64v-20,0,-37,5,-53,11xm230,-104v15,-71,-68,-96,-87,-35v-3,9,-4,21,-4,35r91,0xm49,-80v-20,19,-15,76,26,68v27,1,37,-15,50,-28v-6,-15,-7,-33,-8,-54v-23,2,-56,3,-68,14","w":266,"k":{"\u00bc":4,"\u00ba":7,"\u00aa":11,"z":4,"y":2,"x":4,"w":2,"v":2,"`":11,"\\":22,"?":11,"\/":4,".":4,",":4,"*":7,"'":7,"&":-2}},{"d":"136,-234r129,0r0,18r-98,0r0,86r86,0r0,17r-86,0r0,95r104,0r0,18r-127,0r0,-54r-84,0r-30,54r-22,0xm144,-71r2,-156v-20,57,-51,104,-77,156r75,0","w":287,"k":{"\u00fa":4,"\u00ea":4,"\u00bc":-4,"\u00b4":4,"y":7,"v":7,"q":4,"o":4,"e":4,"d":4,"c":4,"Y":2,"V":4,"Q":4,"O":4,"G":4,"C":4,"@":4,"?":-4,"\/":-4,".":-4,",":-4}},{"d":"264,-9v-38,23,-112,18,-116,-34v-8,29,-25,48,-58,48v-54,0,-72,-43,-72,-98v0,-56,20,-97,72,-97v32,0,52,19,58,48v6,-29,25,-48,60,-48v51,0,66,45,63,101r-112,0v1,44,9,78,53,77v20,0,33,-6,48,-13xm250,-104v16,-71,-67,-96,-86,-35v-3,9,-5,21,-5,35r91,0xm40,-96v-1,47,7,84,50,84v42,0,48,-38,49,-83v0,-44,-8,-78,-49,-78v-42,0,-50,33,-50,77","w":287,"k":{"\u00bc":4,"\u00ba":7,"\u00aa":11,"z":4,"y":2,"x":4,"w":2,"v":2,"`":11,"\\":22,"?":11,"\/":4,".":4,",":4,"*":7,"'":7,"&":-2}},{"d":"81,-277r18,0r37,64r-22,0v-9,-17,-18,-34,-24,-54v-7,20,-17,37,-27,54r-19,0"},{"w":85},{"d":"32,-258r21,0r0,258r-21,0r0,-258","w":84},{"d":"132,-137v5,-49,-62,-40,-82,-17r0,154r-20,0r0,-187v17,-3,13,15,19,23v20,-40,104,-36,104,32r0,132r-21,0r0,-137","k":{"\u00ba":9,"\u00af":2,"\u00ae":2,"\u00aa":9,"y":2,"v":2,"t":2,"g":4,"f":2,"`":9,"\\":18,"?":11,"*":7,"'":9}},{"d":"123,-148v5,46,-31,65,-54,34v-7,-6,-12,-18,-23,-19v-9,2,-7,19,-8,32r-17,0v-6,-45,32,-66,54,-34v7,6,12,18,23,19v9,-2,7,-18,8,-32r17,0","w":144},{"d":"110,-273r26,0r-38,60r-14,0"},{"d":"78,-98r-56,0r0,-20r56,0r0,-63r21,0r0,63r56,0r0,20r-56,0r0,63r-21,0r0,-63","w":176,"k":{"9":7,"8":7,"7":22,"5":4,"4":4,"3":22,"2":14,"1":22}},{"d":"148,-96v48,16,38,101,-23,101v-21,0,-34,-4,-46,-11r3,-17v23,13,82,22,76,-22v6,-58,-79,-20,-77,-91v1,-29,14,-47,46,-45v1,-36,0,-63,-37,-63v-36,0,-40,27,-40,65r0,179r-20,0r0,-172v1,-53,11,-88,60,-89v49,-1,58,36,56,87v-38,-4,-67,45,-28,67","w":194,"k":{"\u00b7":4,"\u00b4":4,"\u00af":4,"\u00ae":4,"y":9,"x":2,"w":4,"v":9,"u":2,"t":4,"g":4,"f":4}},{"d":"48,-273r26,0r25,60r-13,0","w":187},{"d":"9,-187r21,0r39,133r10,48v10,-66,32,-121,49,-181r21,0r-59,187r-23,0","w":157,"k":{"\u00fa":4,"\u00f1":4,"\u00d0":4,"\u00bc":22,"\u00b7":4,"\u00b4":4,"\u00b1":4,"\u00af":-7,"\u00ae":-7,"\u00ac":11,"\u00ab":11,"\u00aa":-4,"z":2,"y":-4,"w":-4,"v":-4,"t":-7,"q":2,"o":4,"g":4,"f":-7,"e":4,"d":2,"c":4,"a":4,"`":-4,"\\":7,"?":5,";":4,":":4,"\/":22,".":22,"-":4,",":22,"*":-4,"&":4}},{"d":"117,-121v61,25,47,126,-30,126v-31,0,-50,-7,-68,-17r5,-16v40,25,132,23,107,-49v-17,-50,-109,-21,-109,-100v0,-66,76,-73,125,-50r-5,17v-40,-16,-118,-20,-97,49v8,27,47,30,72,40","w":174,"k":{"\u00bc":4,"\u00bb":4,"\u00ba":5,"\u00b4":2,"\u00af":4,"\u00ae":4,"\u00ad":4,"\u00aa":4,"z":4,"y":5,"w":5,"v":5,"s":4,"f":4,"`":4,"Y":4,"W":4,"V":7,"T":5,"S":4,"\/":4,".":4,",":4,"'":5}},{"d":"157,-244v0,25,-34,19,-34,0v0,-21,35,-22,34,0xm98,-242v-19,1,-43,-7,-43,17r0,38r43,0r0,18r-43,0r0,169r-20,0r0,-169r-24,0r0,-18r24,0v-2,-38,0,-75,35,-74v11,0,21,5,29,8xm130,-187r20,0r0,187r-20,0r0,-187","w":182},{"d":"40,-87v0,44,9,75,52,75v21,0,32,-6,48,-13r4,16v-12,6,-34,14,-53,14v-54,-1,-73,-38,-73,-98v0,-56,17,-97,71,-97v51,0,65,47,63,103r-112,0xm131,-104v15,-71,-68,-96,-87,-35v-3,9,-4,21,-4,35r91,0","w":170,"k":{"\u00bc":4,"\u00ba":7,"\u00aa":11,"z":4,"y":2,"x":4,"w":2,"v":2,"`":11,"\\":22,"?":11,"\/":4,".":4,",":4,"*":7,"'":7,"&":-2}},{"d":"115,78v-20,13,-61,7,-59,-23v2,-28,19,-40,35,-55r11,0v-10,17,-26,27,-26,54v0,22,24,19,37,12"},{"d":"115,-166v-22,-11,-52,-2,-65,13r0,153r-20,0r0,-187v17,-3,13,15,19,23v11,-19,39,-34,70,-22","w":127,"k":{"\u00fa":4,"\u00f1":4,"\u00d0":11,"\u00bc":29,"\u00ba":-4,"\u00b1":11,"\u00af":-5,"\u00ae":-5,"\u00ac":18,"\u00ab":18,"\u00aa":-7,"z":-4,"y":-11,"x":-4,"w":-7,"v":-11,"t":-13,"s":-4,"q":2,"o":4,"g":4,"f":-5,"e":4,"d":2,"c":4,"a":4,"`":-7,";":7,":":7,"\/":25,".":29,"-":11,",":29,"*":-4,"'":-4,"&":4}},{"d":"41,-63v-5,-59,-7,-121,-6,-186r22,0r0,100r-6,86r-10,0xm66,-17v0,11,-8,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,10,-20,20,-20v11,0,20,9,20,20","w":91},{"d":"124,-61r-109,0r0,-12r101,-161r30,0r0,154r31,0r0,19r-31,0r0,61r-22,0r0,-61xm124,-80r0,-101r3,-45v-25,53,-58,98,-87,146r84,0","w":195,"k":{"\u00eb":9,"\u00e3":5,"\u00d0":7,"\u00bd":11,"\u00bc":7,"\u00bb":7,"\u00ba":18,"\u00b7":7,"\u00b4":11,"\u00b1":7,"\u00ad":7,"\u00aa":25,"\u00a9":14,"`":25,"\\":14,"?":7,">":4,"=":4,";":4,":":4,"9":4,"7":4,"3":7,"\/":7,".":7,"-":7,",":7,"+":7,"'":18,"%":11,"\"":14,"!":4}},{"d":"63,-18v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21v12,0,21,9,21,21","w":84,"k":{"\u00fa":4,"\u00ea":11,"\u00e1":-4,"z":-4,"y":22,"w":18,"v":22,"u":5,"t":7,"s":2,"q":4,"o":4,"g":4,"e":4,"d":4,"c":5,"Y":40,"W":25,"V":40,"U":11,"T":32,"Q":11,"O":11,"G":11,"C":14,"A":-4,"9":25,"8":7,"7":18,"6":11,"4":18,"0":11}},{"d":"15,-177v0,-62,65,-59,128,-57r0,270r-18,0r0,-253r-30,0r0,253r-18,0r0,-159v-39,10,-62,-14,-62,-54","w":174},{"d":"133,-273r26,0r-38,60r-14,0xm81,-273r26,0r-38,60r-14,0"},{"d":"122,-198r14,-21v-37,6,-83,2,-125,3r0,-18r138,0r0,24r-88,210r-23,0","w":164,"k":{"\u00d0":18,"\u00bc":40,"\u00bb":4,"\u00b7":11,"\u00b4":11,"\u00b1":18,"\u00ad":4,"\u00ac":18,"\u00ab":18,"\u00a7":7,"\u00a4":36,"\u00a2":14,"\\":-4,">":11,"=":14,"<":18,";":22,":":22,"8":4,"6":14,"4":18,"3":4,"0":4,"\/":36,".":40,"-":18,",":40,"+":18,"&":11,"#":11}},{"d":"102,-186v5,-44,-46,-39,-75,-27r-3,-15v41,-20,97,-15,97,47r0,81v-1,10,5,12,16,11r1,12v-6,4,-19,3,-26,1r-9,-17v-16,33,-86,26,-86,-25v0,-46,41,-48,85,-50r0,-18xm37,-119v-6,43,51,36,65,15r0,-53v-32,4,-68,1,-65,38","w":151},{"d":"79,36v-33,-34,-58,-83,-59,-150v0,-65,26,-112,58,-144r15,0v-30,38,-50,79,-50,148v0,67,23,106,51,146r-15,0","w":102,"k":{"\u00fa":4,"o":4,"e":4,"c":4}},{"d":"32,-156v-4,-29,-7,-59,-6,-93r22,0v1,34,-2,64,-6,93r-10,0","w":73,"k":{"9":4,"8":11,"6":14,"4":32,"2":4,"0":5}},{"d":"44,-277r22,0v9,17,18,34,24,54v7,-20,17,-37,27,-54r19,0r-37,64r-18,0"},{"d":"127,54v0,33,-46,38,-69,23r2,-13v14,7,48,15,48,-10v0,-18,-23,-16,-30,-8r-11,-9r15,-37r14,0r-13,32v16,-13,44,-1,44,22"},{"d":"41,-253v41,10,2,63,-10,78r-7,-4r15,-38v-11,-1,-17,-4,-17,-16v0,-11,9,-20,19,-20","w":82,"k":{"\u00fa":22,"\u00f1":20,"\u00ea":14,"\u00e1":43,"\u00af":4,"\u00ae":4,"z":11,"y":4,"x":5,"w":4,"v":4,"u":14,"t":4,"s":18,"r":11,"q":22,"p":11,"o":22,"n":11,"m":11,"g":29,"f":4,"e":22,"d":22,"c":22,"a":20,"Z":4,"W":-4,"T":-4,"S":7,"Q":14,"O":14,"J":36,"G":14,"C":14,"A":43,"9":11,"8":18,"6":38,"5":7,"4":61,"3":4,"2":7,"1":11,"0":22}},{"d":"70,0v19,-24,35,-51,57,-72v-22,-20,-38,-47,-57,-71r22,0r47,62r0,19r-47,62r-22,0xm13,0v19,-24,35,-51,57,-72v-22,-20,-38,-47,-57,-71r22,0r47,62r0,19r-47,62r-22,0","w":156,"k":{"\u00e1":5,"y":11,"x":11,"w":7,"v":11,"s":7,"g":4,"Z":5,"Y":40,"X":14,"W":18,"V":29,"T":36,"S":14,"J":7,"A":5,"9":14,"7":18,"5":4,"3":7,"1":7}},{"d":"20,-91v0,-75,48,-112,92,-143r33,0v-45,25,-87,57,-101,113v35,-45,132,-26,127,48v-3,49,-26,78,-75,78v-54,0,-75,-39,-76,-96xm148,-68v0,-72,-71,-72,-106,-42v-2,55,4,98,55,98v36,0,51,-18,51,-56","w":189,"k":{"\u00eb":7,"\u00e3":4,"\u00d0":5,"\u00bd":7,"\u00bc":7,"\u00ba":18,"\u00b7":4,"\u00b4":4,"\u00b1":5,"\u00aa":29,"\u00a9":14,"`":29,"\\":14,"?":11,"9":9,"7":11,"3":4,"\/":13,".":7,"-":5,",":7,"+":5,"'":18,"%":7,"\"":14}},{"d":"179,-118v0,70,-18,123,-80,123v-63,0,-79,-57,-79,-123v0,-64,17,-121,79,-121v62,0,80,56,80,121xm42,-122v0,57,4,110,57,110v51,0,57,-49,57,-112v0,-56,-9,-96,-57,-96v-48,0,-57,43,-57,98","w":198,"k":{"\u00bc":11,"\u00ba":7,"\u00aa":11,"\u00a9":5,"`":11,"\\":11,"?":5,"7":4,"3":4,"\/":14,".":11,",":11,"'":7,"\"":5}},{"d":"127,-137v5,-48,-58,-40,-77,-18r0,155r-20,0r0,-187v16,-3,13,14,19,22v10,-23,55,-34,83,-17r13,19v19,-40,101,-39,101,31r0,132r-21,0r0,-137v5,-49,-59,-40,-77,-17r0,154r-21,0r0,-137","w":273,"k":{"\u00ba":9,"\u00af":2,"\u00ae":2,"\u00aa":9,"y":2,"v":2,"t":2,"g":4,"f":2,"`":9,"\\":18,"?":11,"*":7,"'":9}},{"d":"56,-243v0,9,-7,16,-16,16v-9,0,-17,-6,-17,-16v0,-10,8,-17,17,-17v8,0,16,8,16,17xm50,19v3,37,-32,52,-59,35r2,-11v20,1,37,2,37,-19r0,-211r20,0r0,206","w":79,"k":{"j":-4}},{"d":"139,-167v40,47,28,172,-49,172v-15,0,-28,-4,-39,-12r-20,37r-14,-8r22,-40v-36,-50,-30,-177,51,-172v15,0,27,3,38,11r20,-36r13,8xm90,-174v-63,0,-56,99,-42,141r72,-132v-7,-6,-17,-9,-30,-9xm90,-11v60,4,56,-99,41,-141r-73,132v8,7,18,9,32,9","w":178},{"d":"22,-146r122,0r0,19r-122,0r0,-19xm22,-89r122,0r0,19r-122,0r0,-19","w":165,"k":{"9":5,"8":4,"7":22,"5":4,"3":14,"2":11,"1":14}},{"d":"19,-54v37,-16,70,-36,112,-47v-41,-13,-75,-32,-112,-48r0,-21r120,57r0,25r-120,56r0,-22","w":155,"k":{"9":9,"7":29,"5":4,"3":18,"2":7,"1":11}},{"d":"152,-234r24,0r-89,107r26,21r66,106r-25,0r-74,-121r-25,30r0,91r-23,0r0,-234r23,0v0,43,2,88,-4,125","w":191,"k":{"\u00fa":13,"\u00f1":4,"\u00ea":11,"\u00d0":25,"\u00b7":25,"\u00b4":22,"\u00b1":25,"\u00af":5,"\u00ae":5,"\u00ac":11,"\u00ab":11,"y":16,"w":11,"v":16,"u":7,"t":5,"q":13,"p":4,"o":13,"j":4,"i":4,"g":5,"f":5,"e":13,"d":13,"c":13,"a":4,"Y":4,"V":4,"U":4,"S":5,"Q":11,"O":11,"G":11,"C":11,"@":4,";":4,":":4,"-":25,"*":4,"&":4}},{"d":"90,-248v23,0,19,33,0,33v-8,0,-16,-7,-16,-16v0,-9,8,-17,16,-17"},{"d":"14,-234r23,0r54,177r11,49v15,-82,43,-151,65,-226r21,0r-74,234r-25,0","w":201,"k":{"\u00fb":4,"\u00fa":16,"\u00f1":14,"\u00ea":9,"\u00e1":36,"\u00d0":22,"\u00bc":40,"\u00bb":11,"\u00ba":-4,"\u00b7":16,"\u00b4":16,"\u00b1":22,"\u00ad":11,"\u00ac":29,"\u00ab":29,"\u00aa":4,"z":9,"y":4,"x":7,"w":4,"v":4,"u":11,"t":4,"s":7,"r":11,"q":16,"p":11,"o":16,"n":11,"m":11,"j":7,"i":7,"g":16,"e":16,"d":16,"c":16,"a":14,"`":4,"S":5,"Q":9,"O":9,"J":20,"G":9,"C":9,"A":22,"@":13,";":18,":":18,"\/":32,".":40,"-":22,",":40,"'":-4,"&":11}},{"d":"32,-234r121,0r0,18r-98,0r0,92r88,0r0,17r-88,0r0,107r-23,0r0,-234","w":172,"k":{"\u00fa":5,"\u00f1":11,"\u00ea":4,"\u00e1":31,"\u00bc":22,"\u00ba":-4,"\u00b7":4,"\u00b4":4,"\u00af":4,"\u00ae":4,"\u00ac":4,"\u00ab":4,"z":14,"y":7,"x":11,"w":4,"v":7,"u":7,"s":5,"r":7,"q":5,"p":7,"o":5,"n":7,"m":7,"j":4,"i":4,"g":11,"f":4,"e":5,"d":5,"c":5,"a":11,"\\":-4,"Z":5,"Y":4,"X":4,"V":4,"S":4,"Q":4,"O":4,"J":29,"G":4,"C":4,"A":22,"@":4,"?":-4,";":4,":":4,"\/":25,".":22,",":22,"'":-4,"&":7}},{"d":"110,-171v0,11,-9,21,-19,21v-11,0,-20,-10,-20,-21v0,-11,9,-19,20,-19v10,0,19,9,19,19xm142,50v-43,24,-121,21,-121,-50v0,-46,25,-62,64,-69r0,-56r14,0v-1,23,19,61,-6,68v-33,9,-52,17,-50,58v-8,56,60,47,96,34","w":152,"k":{"\u00fa":11,"\u00f1":11,"\u00ea":11,"\u00e1":14,"\u00af":11,"\u00ae":11,"z":7,"y":7,"x":11,"w":7,"v":7,"u":11,"t":7,"s":11,"r":11,"q":11,"o":11,"n":11,"m":11,"l":11,"k":11,"j":-22,"i":11,"h":11,"f":11,"e":11,"d":11,"c":11,"b":11,"a":11,"Z":14,"Y":25,"X":14,"W":18,"V":29,"U":13,"T":29,"S":11,"R":11,"Q":11,"P":11,"O":11,"N":11,"M":11,"L":11,"K":11,"J":11,"I":7,"H":11,"G":11,"F":11,"E":11,"D":11,"C":11,"B":11,"A":14,"9":14,"8":13,"7":22,"6":9,"5":4,"4":16,"3":11,"2":7,"1":11,"0":9}},{"d":"129,-272v6,41,-44,65,-68,35v-7,-8,-10,-21,-10,-35r17,0v0,19,4,31,22,31v18,0,22,-12,22,-31r17,0"},{"d":"132,-189v0,46,-25,63,-64,70r0,56r-14,0v1,-22,-20,-61,5,-68v32,-9,54,-16,50,-59v9,-56,-59,-48,-95,-34r-3,-15v43,-24,121,-19,121,50xm82,-17v0,11,-8,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,10,-20,20,-20v11,0,20,9,20,20","w":152},{"d":"194,-118v0,72,-22,123,-88,123v-66,0,-87,-54,-87,-123v0,-68,23,-121,88,-121v65,0,87,54,87,121xm42,-122v1,59,9,110,65,110v56,0,63,-52,63,-112v0,-58,-14,-96,-64,-96v-49,0,-64,41,-64,98","w":212,"k":{"\u00f1":2,"\u00e1":11,"\u00bc":11,"\u00ba":11,"\u00aa":7,"z":5,"x":4,"a":2,"`":7,"\\":11,"Z":9,"Y":13,"X":13,"W":5,"V":9,"T":11,"J":11,"A":7,"?":11,"\/":11,".":11,",":11,"'":11}},{"d":"22,-117r68,0r0,21r-68,0r0,-21","w":111,"k":{"\u00f1":4,"\u00e1":11,"z":9,"y":4,"x":14,"w":4,"v":4,"a":4,"Z":14,"Y":29,"X":25,"W":11,"V":22,"T":32,"S":7,"J":18,"A":11,"9":7,"8":7,"7":22,"5":4,"4":4,"3":22,"2":18,"1":22}},{"d":"102,-242v-20,2,-47,-8,-47,17r0,38r43,0r0,18r-43,0r0,169r-20,0r0,-169r-24,0r0,-18r24,0v-2,-38,-1,-74,35,-74v14,0,24,4,33,8","w":104,"k":{"\u00fa":4,"\u00d0":11,"\u00bc":14,"\u00ba":-9,"\u00b7":2,"\u00b4":2,"\u00b1":11,"\u00af":-4,"\u00ae":-4,"\u00ac":11,"\u00ab":11,"\u00aa":-13,"}":-11,"y":-9,"x":-2,"w":-4,"v":-9,"t":-5,"q":4,"o":4,"g":4,"f":-4,"e":4,"d":4,"c":4,"`":-13,"]":-9,"\\":-18,"?":-11,";":4,":":4,"\/":7,".":14,"-":11,",":14,"*":-13,")":-7,"'":-9}},{"d":"32,-234r32,0r52,177r10,50v13,-84,43,-151,64,-227r32,0r0,234r-22,0r0,-152r4,-76v-18,80,-44,152,-67,228r-25,0r-50,-168r-13,-60v5,72,4,151,4,228r-21,0r0,-234","w":254},{"d":"57,-243v0,9,-7,16,-16,16v-9,0,-16,-7,-16,-16v0,-9,8,-17,16,-17v8,0,16,8,16,17xm31,-187r20,0r0,187r-20,0r0,-187","w":82},{"d":"107,-13v19,1,32,-3,45,-7r0,-80r-38,0r0,-18r60,0r0,121v-13,3,-12,-10,-16,-16v-11,11,-25,19,-49,18v-69,-1,-86,-54,-90,-123v-5,-93,62,-146,149,-109r-4,18v-19,-5,-34,-11,-57,-11v-53,0,-65,46,-65,104v0,56,10,103,65,103","w":198,"k":{"\u00ba":4,"\u00aa":7,"y":5,"w":4,"v":5,"`":7,"\\":4,"Y":7,"W":5,"V":5,"T":4,"'":4}},{"d":"17,-89r0,-24r119,-57r0,22v-37,16,-71,35,-112,48v42,11,75,31,112,47r0,21","w":155,"k":{"7":11,"1":4}},{"d":"139,-157v1,46,-19,83,-60,83v-43,0,-61,-35,-61,-82v0,-47,17,-83,61,-83v43,0,58,37,60,82xm38,-159v0,38,5,70,41,70v35,0,40,-32,40,-69v0,-36,-5,-64,-40,-65v-34,0,-41,28,-41,64","w":156},{"d":"64,-126v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21v12,0,21,9,21,21xm43,-39v45,10,2,63,-9,80r-9,-4r16,-38v-11,-1,-18,-3,-18,-17v0,-11,9,-21,20,-21","w":86,"k":{"y":4,"v":4,"Y":25,"W":7,"V":18,"T":32,"9":4,"8":4,"7":23,"4":5}},{"d":"154,-62v0,71,-90,80,-140,51r5,-16v37,21,113,25,113,-39v0,-47,-32,-51,-79,-50r0,-18v42,2,72,-2,72,-45v0,-53,-67,-45,-101,-31r-4,-16v43,-23,127,-19,127,48v0,33,-19,44,-45,52v31,6,52,27,52,64","w":173,"k":{"\u00eb":4,"\u00d0":4,"\u00bc":4,"\u00ba":7,"\u00b7":4,"\u00b4":4,"\u00b1":4,"\u00aa":9,"\u00a9":4,"`":9,"\\":7,"7":4,"3":4,"\/":11,".":4,"-":4,",":4,"+":4,"'":7,"\"":4}},{"d":"32,-234r26,0v36,73,79,141,107,222v-8,-68,-6,-146,-6,-222r21,0r0,234r-24,0v-36,-74,-82,-139,-107,-224v6,70,3,149,4,224r-21,0r0,-234","w":212},{"d":"34,0r-20,0r75,-234r25,0r74,234r-23,0r-17,-54r-97,0xm143,-71v-15,-51,-33,-98,-41,-155v-12,55,-29,104,-45,155r86,0","w":201,"k":{"\u00fa":4,"\u00ea":7,"\u00d0":11,"\u00bc":-4,"\u00ba":36,"\u00b7":14,"\u00b4":18,"\u00b1":11,"\u00ac":5,"\u00ab":5,"\u00aa":36,"y":11,"w":9,"v":11,"u":4,"t":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"`":36,"\\":29,"Y":25,"W":18,"V":22,"U":4,"T":18,"Q":7,"O":7,"G":7,"C":7,"?":7,".":-4,"-":11,",":-4,"*":32,"'":36}},{"d":"64,-126v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21v12,0,21,9,21,21xm64,-18v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21v12,0,21,9,21,21","w":86,"k":{"y":4,"v":4,"Y":25,"W":7,"V":18,"T":32,"9":4,"8":4,"7":23,"4":5}},{"d":"55,-71v11,44,22,130,-43,105r1,-12v79,12,-24,-125,57,-134v-58,-6,-21,-79,-27,-124v-4,-9,-17,-7,-30,-7v-4,-14,3,-19,17,-18v79,2,-19,134,57,140r0,18v-22,1,-31,10,-32,32","w":99},{"d":"121,-166v0,39,-14,76,-54,76v-72,0,-70,-150,1,-149v39,1,53,34,53,73xm199,-234r18,0r-129,234r-18,0xm272,-71v0,41,-14,76,-53,76v-40,0,-53,-34,-53,-75v0,-39,14,-74,53,-74v39,0,53,34,53,73xm36,-171v0,35,1,67,32,67v30,0,33,-34,32,-68v-1,-27,-6,-51,-32,-51v-27,0,-32,23,-32,52xm187,-76v0,35,2,67,32,67v30,0,33,-34,32,-68v-1,-27,-6,-51,-32,-51v-26,0,-32,23,-32,52","w":286},{"d":"99,-1v-21,0,-38,-9,-49,-19r0,78r-20,0r0,-245v16,-3,13,14,19,22v11,-14,24,-26,50,-25v48,2,64,41,64,97v1,53,-19,90,-64,92xm50,-35v11,9,25,18,45,18v37,0,46,-32,46,-79v0,-44,-5,-76,-45,-77v-22,0,-32,7,-46,18r0,120","k":{"\u00bc":4,"\u00ba":11,"\u00aa":11,"z":4,"y":2,"x":5,"v":2,"`":11,"\\":22,"?":11,"\/":4,".":4,",":4,"*":7,"'":11}},{"d":"20,-116r184,0r0,18r-184,0r0,-18","w":223,"k":{"\u00f1":4,"\u00e1":11,"z":9,"y":4,"x":14,"w":4,"v":4,"a":4,"Z":14,"Y":29,"X":25,"W":11,"V":22,"T":32,"S":7,"J":18,"A":11,"9":7,"8":7,"7":22,"5":4,"4":4,"3":22,"2":18,"1":22}},{"d":"2,42r87,0r0,16r-87,0r0,-16","w":90},{"d":"67,-96r-53,-91r22,0v16,27,32,54,45,85v10,-32,25,-58,40,-85r20,0r-52,92r55,95r-22,0v-17,-29,-34,-56,-47,-89v-11,33,-27,61,-43,89r-20,0","w":155,"k":{"\u00fa":7,"\u00f1":4,"\u00d0":14,"\u00b7":14,"\u00b4":14,"\u00b1":14,"\u00ac":11,"\u00ab":11,"q":5,"o":7,"e":7,"d":5,"c":7,"a":4,"\\":13,"@":4,"-":14,"&":4}},{"d":"80,-121r-64,-113r24,0v19,34,39,66,54,104v12,-39,33,-70,51,-104r21,0r-63,113r68,121r-24,0r-43,-77r-16,-35v-12,43,-35,76,-54,112r-21,0","w":183,"k":{"\u00fa":7,"\u00f1":4,"\u00ea":13,"\u00d0":25,"\u00b7":27,"\u00b4":25,"\u00b1":25,"\u00ac":14,"\u00ab":14,"\u00aa":4,"y":7,"w":7,"v":7,"u":4,"t":4,"q":7,"o":7,"j":4,"i":4,"g":4,"e":7,"d":7,"c":7,"a":4,"`":4,"Q":13,"O":13,"G":13,"C":13,"@":5,"-":25,"&":4}},{"d":"173,-164v1,63,-50,76,-118,71r0,93r-23,0r0,-234r69,0v47,0,71,24,72,70xm149,-163v0,-57,-41,-55,-94,-53r0,107v53,2,94,2,94,-54","w":186,"k":{"\u00f1":4,"\u00e1":36,"\u00bc":32,"\u00ac":14,"\u00ab":14,"z":2,"y":-4,"w":-4,"v":-4,"t":-4,"s":-4,"a":4,"Z":7,"X":5,"J":25,"A":18,"\/":18,".":32,",":32,"*":-4,"&":4}},{"d":"163,-95v0,72,-31,114,-95,95r-22,-19v-5,7,-1,23,-16,20r0,-259r20,0r0,90v11,-10,26,-23,49,-22v49,2,64,38,64,95xm97,-173v-22,0,-35,10,-47,20r0,126v11,8,25,16,43,16v44,0,48,-40,48,-86v0,-41,-5,-76,-44,-76","k":{"\u00bc":4,"\u00ba":7,"\u00aa":11,"z":4,"y":2,"x":5,"v":2,"`":11,"\\":18,"?":11,"\/":4,".":4,",":4,"*":7,"'":7}},{"d":"51,-249r78,0r0,20r-78,0r0,-20"},{"d":"19,-177v0,-44,27,-64,74,-62r6,-41r17,2r-6,41v13,2,25,7,35,11r-4,15v-13,-4,-20,-7,-34,-9r-13,93v33,10,58,24,59,67v0,46,-28,68,-77,65r-8,50r-17,-3r7,-49v-16,-2,-29,-9,-41,-15r6,-14v13,6,23,10,38,13r14,-101v-31,-10,-56,-23,-56,-63xm90,-221v-53,-12,-67,56,-32,80v5,3,12,5,20,8xm78,-11v55,11,72,-64,34,-89v-5,-3,-13,-6,-21,-9","w":171,"k":{"9":11}},{"d":"211,-18v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21v12,0,21,9,21,21xm137,-18v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21v12,0,21,9,21,21xm63,-18v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-21,20,-21v12,0,21,9,21,21","w":232,"k":{"\u00fa":4,"\u00ea":11,"\u00e1":-4,"z":-4,"y":22,"w":18,"v":22,"u":5,"t":7,"s":2,"q":4,"o":4,"g":4,"e":4,"d":4,"c":5,"Y":40,"W":25,"V":40,"U":11,"T":32,"Q":11,"O":11,"G":11,"C":14,"A":-4,"9":25,"8":7,"7":18,"6":11,"4":18,"0":11}},{"d":"82,-239v78,-5,80,100,29,128v-31,27,-71,46,-78,96v34,-4,74,-3,112,-3r0,18r-130,0v-5,-96,97,-92,108,-175v8,-58,-64,-49,-96,-32r-5,-15v17,-9,33,-15,60,-17","w":166,"k":{"\u00d0":13,"\u00bc":4,"\u00ba":4,"\u00b7":4,"\u00b4":4,"\u00b1":13,"\u00ac":7,"\u00ab":7,"\u00aa":7,"`":7,">":2,"=":7,"<":7,";":4,":":4,"8":5,"6":4,"4":11,"3":4,"\/":4,".":4,"-":13,",":4,"+":11,"'":4}},{"d":"9,-187r21,0v13,60,30,114,38,179v8,-64,24,-120,38,-179r23,0v13,59,30,114,37,179v6,-66,25,-119,37,-179r19,0r-46,187r-22,0r-29,-123r-8,-54v-9,63,-26,119,-40,177r-22,0","w":230,"k":{"\u00fa":2,"\u00f1":2,"\u00d0":4,"\u00bc":18,"\u00b7":4,"\u00b4":4,"\u00b1":4,"\u00ac":7,"\u00ab":7,"\u00aa":-4,"y":-4,"w":-5,"v":-4,"t":-7,"o":2,"e":2,"c":2,"a":2,"`":-4,"\\":5,"?":4,"\/":14,".":18,"-":4,",":18,"*":-7,"&":4}},{"d":"96,-37v41,9,1,62,-10,77r-8,-3r16,-39v-10,-1,-19,-3,-17,-16v-1,-11,9,-21,19,-19xm41,-37v41,7,2,62,-10,77r-7,-3r15,-39v-11,-1,-17,-4,-17,-16v0,-10,9,-21,19,-19","w":137,"k":{"\u00fa":4,"\u00ea":11,"\u00e1":-4,"z":-4,"y":25,"w":18,"v":25,"u":5,"t":7,"s":2,"q":4,"o":4,"g":4,"e":4,"d":4,"c":5,"Y":40,"W":25,"V":40,"U":11,"T":32,"Q":11,"O":11,"G":11,"C":14,"A":-4,"9":25,"8":7,"7":18,"6":11,"4":18,"0":14}},{"d":"100,-234v75,-13,91,99,30,113v24,8,45,23,45,55v2,72,-72,68,-143,66r0,-234r68,0xm147,-171v5,-52,-45,-45,-93,-45r0,87v46,0,98,8,93,-42xm151,-63v7,-57,-46,-49,-97,-49r0,94v48,0,101,7,97,-45","w":193,"k":{"\u00e1":5,"\u00ba":4,"\u00b7":4,"\u00b4":4,"\u00aa":4,"z":4,"x":4,"g":4,"`":4,"\\":5,"Y":4,"X":4,"V":4,"T":4,"J":4,"A":5,"'":4}},{"d":"13,-234r22,0r32,150r10,78v10,-80,27,-153,41,-228r26,0r32,157r10,71v11,-80,28,-153,44,-228r20,0r-53,234r-25,0v-15,-74,-34,-144,-41,-227v-8,82,-27,152,-42,227r-25,0","w":260,"k":{"\u00fa":9,"\u00f1":9,"\u00ea":5,"\u00e1":18,"\u00d0":11,"\u00bc":25,"\u00bb":4,"\u00ba":-7,"\u00b7":9,"\u00b4":9,"\u00b1":11,"\u00ad":4,"\u00ac":18,"\u00ab":18,"\u00aa":-4,"z":5,"u":5,"r":4,"q":7,"p":4,"o":9,"n":4,"m":4,"j":4,"i":4,"g":11,"e":7,"d":7,"c":9,"a":9,"`":-4,"Q":5,"O":5,"J":18,"G":5,"C":5,"A":18,"@":5,"?":-5,";":7,":":7,"\/":22,".":25,"-":11,",":25,"*":-4,"'":-7,"&":7}},{"d":"82,-156v-4,-29,-7,-59,-6,-93r22,0v1,34,-2,64,-6,93r-10,0xm32,-156v-4,-29,-7,-59,-6,-93r22,0v1,34,-2,64,-6,93r-10,0","w":123,"k":{"9":4,"8":11,"6":14,"4":32,"2":4,"0":5}},{"d":"228,32v-21,9,-53,19,-85,18v-89,-1,-125,-49,-125,-141v0,-91,39,-140,127,-141v80,-1,111,44,112,121v0,68,-18,115,-86,106r-8,-21v-17,33,-94,35,-94,-20v0,-57,49,-61,106,-63v6,-25,15,-61,-23,-61v-18,0,-36,5,-52,8r0,-15v43,-21,119,-12,97,54v-4,34,-16,68,-15,102v47,12,57,-38,57,-94v0,-67,-26,-102,-95,-102v-82,0,-109,47,-108,130v1,78,28,122,106,122v32,0,57,-8,82,-17xm90,-56v-9,52,53,42,73,19r10,-59v-36,5,-76,0,-83,40","w":274,"k":{"\u00e1":7,"z":4,"x":4,"Z":9,"Y":13,"X":13,"W":5,"V":9,"T":7,"S":4,"J":11,"A":7}},{"d":"125,-252v0,23,-14,39,-35,39v-21,0,-35,-16,-35,-39v0,-23,14,-39,35,-39v21,0,35,16,35,39xm71,-252v0,18,3,25,19,25v16,0,19,-7,19,-25v0,-19,-4,-25,-19,-25v-15,0,-19,6,-19,25"},{"d":"113,-258r19,0r-108,294r-19,0","w":137,"k":{"\u00fa":22,"\u00f1":22,"\u00ea":11,"\u00e1":32,"z":18,"y":7,"x":13,"w":7,"v":7,"u":14,"t":4,"s":14,"r":14,"q":22,"p":14,"o":22,"n":14,"m":14,"g":22,"e":22,"d":22,"c":22,"a":22,"Z":5,"S":4,"Q":11,"O":11,"J":25,"G":11,"C":11,"A":32,"9":13,"8":14,"6":25,"5":11,"4":36,"3":7,"2":7,"1":7,"0":14,"\/":36}},{"d":"20,-116r105,0r0,18r-105,0r0,-18","w":144,"k":{"\u00f1":4,"\u00e1":11,"z":9,"y":4,"x":14,"w":4,"v":4,"a":4,"Z":14,"Y":29,"X":25,"W":11,"V":22,"T":32,"S":7,"J":18,"A":11,"9":7,"8":7,"7":22,"5":4,"4":4,"3":22,"2":18,"1":22}},{"d":"9,36v29,-41,51,-83,51,-154v0,-64,-22,-104,-50,-140r15,0v32,31,58,80,58,144v0,67,-26,116,-59,150r-15,0","w":102},{"d":"99,-3v-28,12,-67,12,-67,-31r0,-135r-23,0r0,-18r24,0r10,-50r10,0r0,50r42,0r0,18r-42,0r0,138v-4,24,25,15,45,17","w":109,"k":{"\u00d0":14,"\u00bc":-4,"\u00b7":5,"\u00b4":5,"\u00b1":14,"\u00af":6,"\u00ae":6,"\u00ac":4,"\u00ab":4,"z":-4,"y":-4,"w":-4,"v":-4,"t":4,"f":6,"\\":4,".":-4,"-":14,",":-4}},{"d":"82,-190v20,0,36,9,47,18r0,-86r21,0r0,258v-17,3,-14,-14,-20,-22v-13,12,-22,27,-48,26v-49,-1,-64,-43,-64,-99v0,-55,18,-92,64,-95xm85,-13v22,0,29,-8,44,-19r0,-124v-10,-9,-25,-16,-44,-17v-42,0,-46,37,-46,81v0,43,6,79,46,79","w":179},{"d":"54,-212v14,10,2,38,-13,34v-41,-10,-1,-62,10,-78r8,4r-15,39","w":82,"k":{"\u00fa":13,"\u00f1":4,"\u00ea":11,"\u00e1":36,"z":4,"u":4,"s":4,"r":4,"q":11,"p":4,"o":13,"n":4,"m":4,"g":14,"e":11,"d":11,"c":11,"a":4,"Z":7,"W":-7,"V":-4,"T":-7,"S":4,"Q":11,"O":11,"J":32,"G":11,"C":11,"A":36,"8":13,"6":22,"4":50,"3":4,"2":4,"0":11}},{"d":"14,-20r102,-151v-29,4,-64,3,-97,3r0,-19r114,0r0,21r-91,137r-13,15v31,-5,69,-3,104,-3r0,17r-119,0r0,-20","w":146,"k":{"\u00fa":4,"\u00d0":4,"\u00bc":-4,"\u00b7":4,"\u00b4":4,"\u00b1":4,"\u00aa":-4,"y":-4,"w":-4,"v":-4,"t":-5,"o":4,"g":2,"e":4,"c":4,"`":-4,"\\":11,".":-4,"-":4,",":-4}},{"d":"120,0v-74,-1,-101,-41,-101,-118v0,-72,29,-116,98,-116r149,0r0,18r-97,0r0,86r84,0r0,17r-84,0r0,95r103,0r0,18r-152,0xm43,-122v0,77,23,114,104,105r0,-199v-74,-6,-104,22,-104,94","w":288,"k":{"\u00fa":4,"\u00ea":4,"\u00bc":-4,"\u00b4":4,"y":7,"v":7,"q":4,"o":4,"e":4,"d":4,"c":4,"Y":2,"V":4,"Q":4,"O":4,"G":4,"C":4,"@":4,"?":-4,"\/":-4,".":-4,",":-4}},{"d":"32,-234r121,0r0,18r-98,0r0,86r86,0r0,17r-86,0r0,95r104,0r0,18r-127,0r0,-234","w":175,"k":{"\u00fa":4,"\u00ea":4,"\u00bc":-4,"\u00b4":4,"y":7,"v":7,"q":4,"o":4,"e":4,"d":4,"c":4,"Y":2,"V":4,"Q":4,"O":4,"G":4,"C":4,"@":4,"?":-4,"\/":-4,".":-4,",":-4}},{"d":"25,-258r51,0r0,16r-31,0r0,262r31,0r0,16r-51,0r0,-294","w":90,"k":{"j":-7}},{"d":"14,20r31,0r0,-262r-31,0r0,-16r51,0r0,294r-51,0r0,-16","w":90},{"d":"101,0v-41,15,-84,-3,-84,-49v0,-53,50,-56,101,-59v1,-34,0,-64,-35,-64v-20,0,-37,6,-53,11r-3,-17v46,-23,111,-16,111,55r0,96v-1,14,6,16,19,15v7,18,-15,19,-27,13r-12,-20xm38,-50v-8,51,66,43,80,18r0,-62v-38,4,-82,0,-80,44","w":169,"k":{"\u00ba":11,"\u00aa":18,"y":4,"w":2,"v":4,"u":2,"`":18,"\\":22,"?":7,"*":14,"'":11}},{"d":"42,-39v45,10,2,63,-9,80r-9,-4r16,-38v-11,-1,-18,-3,-18,-17v0,-11,9,-21,20,-21","w":84,"k":{"\u00fa":4,"\u00ea":11,"\u00e1":-4,"z":-4,"y":22,"w":18,"v":22,"u":5,"t":7,"s":2,"q":4,"o":4,"g":4,"e":4,"d":4,"c":5,"Y":40,"W":25,"V":40,"U":11,"T":32,"Q":11,"O":11,"G":11,"C":14,"A":-4,"9":25,"8":7,"7":18,"6":11,"4":18,"0":11}},{"d":"95,-253v53,0,65,71,33,101r-37,16r60,78v10,-21,15,-46,19,-76r19,0v-4,34,-11,69,-25,93r32,41r-26,0r-25,-31v-5,26,-28,36,-59,36v-43,0,-70,-25,-71,-67v-1,-41,24,-59,51,-73v-35,-31,-37,-118,29,-118xm86,-142v23,-10,40,-24,40,-56v1,-24,-11,-35,-31,-36v-48,-1,-34,74,-9,92xm39,-67v0,65,77,70,101,28r-67,-86v-22,13,-34,25,-34,58","w":212,"k":{"\u00fa":4,"\u00f1":4,"\u00ea":4,"\u00e1":4,"y":7,"x":4,"w":4,"v":7,"u":4,"s":2,"q":4,"o":4,"a":4,"Z":4,"Y":23,"W":7,"V":16,"U":7,"T":22,"S":7,"Q":4,"O":4,"G":4,"C":4,"A":4,"9":7,"8":7,"7":16,"6":4,"5":5,"4":11,"3":5,"0":4}},{"d":"132,-137v5,-49,-62,-40,-82,-17r0,154r-20,0r0,-258r20,0r0,93v21,-39,103,-34,103,33r0,132r-21,0r0,-137","k":{"\u00ba":9,"\u00af":2,"\u00ae":2,"\u00aa":9,"y":2,"v":2,"t":2,"g":4,"f":2,"`":9,"\\":18,"?":11,"*":7,"'":9}},{"d":"49,-50v-5,50,61,42,80,19r0,-156r21,0r0,187v-17,3,-14,-14,-20,-22v-21,41,-102,34,-102,-32r0,-133r21,0r0,137","w":179,"k":{"\u00ba":5,"\u00aa":5,"`":5,"\\":14,"?":11,"'":5}},{"d":"189,-118v3,100,-54,127,-157,118r0,-234r60,0v69,0,95,45,97,116xm166,-115v0,-78,-30,-109,-111,-101r0,199v79,7,111,-21,111,-98","w":208,"k":{"\u00f1":2,"\u00e1":14,"\u00bc":11,"\u00ba":7,"\u00aa":11,"z":4,"x":4,"w":-2,"a":2,"`":11,"\\":11,"Z":7,"Y":7,"X":11,"W":4,"V":5,"T":11,"J":11,"A":7,"?":11,"\/":7,".":11,",":11,"'":7}},{"d":"14,-98r0,-19r30,-16r0,-125r20,0r0,114r30,-16r0,19r-30,16r0,125r-20,0r0,-114","w":108},{"d":"5,-258r19,0r108,294r-19,0","w":137,"k":{"\u00fa":7,"\u00ea":11,"\u00af":7,"\u00ae":7,"y":22,"w":18,"v":22,"u":7,"t":7,"q":7,"o":7,"g":-5,"f":7,"e":7,"d":4,"c":7,"Y":29,"W":25,"V":32,"U":7,"T":22,"Q":11,"O":11,"G":11,"C":13,"9":22,"8":4,"7":14,"6":11,"4":7,"0":11}},{"d":"173,-167v-1,40,-22,62,-61,66v31,24,43,67,65,101r-25,0r-53,-99r-45,0r0,99r-22,0r0,-234v71,-2,145,-6,141,67xm149,-166v6,-55,-43,-52,-95,-50r0,101v52,2,100,3,95,-51","w":194,"k":{"\u00fa":4,"\u00d0":7,"\u00ba":4,"\u00b7":4,"\u00b4":4,"\u00b1":7,"\u00ac":7,"\u00ab":7,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"\\":4,"Y":4,"V":4,"U":4,"T":5,"?":4,"-":7,"'":4}},{"d":"166,-8v-18,8,-35,13,-60,13v-68,0,-83,-55,-87,-123v-5,-90,59,-147,143,-109r-4,17v-18,-4,-32,-10,-54,-10v-51,0,-61,47,-61,104v1,56,8,102,61,103v24,0,39,-6,56,-12","w":177,"k":{"\u00fa":4,"\u00f1":-2,"\u00ea":4,"\u00d0":11,"\u00bc":-5,"\u00ba":-4,"\u00b7":11,"\u00b4":11,"\u00b1":11,"}":-7,"y":4,"w":7,"v":4,"u":4,"q":2,"o":4,"l":-4,"k":-4,"h":-4,"e":4,"d":4,"c":4,"b":-4,"a":-2,"]":-5,"\\":-4,"Y":4,"V":4,"Q":4,"O":4,"G":4,"C":4,"@":4,"?":-5,"\/":-4,".":-5,"-":11,",":-5,"*":-4,")":-4,"'":-4,"&":-4,"!":-4}},{"d":"66,-171v0,11,-10,21,-20,21v-11,0,-20,-10,-20,-21v0,-11,9,-19,20,-19v10,0,20,8,20,19xm35,-38r6,-87r10,0v5,58,7,119,6,183r-22,0r0,-96","w":91,"k":{"j":-7,"Z":4,"Y":11,"W":4,"V":7,"T":11,"9":4,"7":7,"4":7}},{"d":"55,-2v-56,-28,-56,-199,32,-188v8,0,16,0,24,2r15,-46r16,4r-66,217v23,4,41,-4,56,-12r5,16v-15,10,-41,17,-66,13r-14,45r-16,-5xm106,-171v-71,-21,-75,67,-61,126v3,11,9,19,15,25","w":149},{"d":"107,-239v106,-4,111,189,43,233r-27,2r43,46r-26,7v-12,-14,-21,-31,-34,-44v-66,-3,-87,-54,-87,-123v0,-68,23,-118,88,-121xm42,-122v1,59,9,110,65,110v54,0,64,-48,63,-112v0,-58,-14,-96,-64,-96v-49,0,-64,41,-64,98","w":212,"k":{"\u00f1":2,"\u00e1":11,"\u00bc":11,"\u00ba":11,"\u00aa":7,"z":5,"x":4,"a":2,"`":7,"\\":11,"Z":9,"Y":13,"X":13,"W":5,"V":9,"T":11,"J":11,"A":7,"?":11,"\/":11,".":11,",":11,"'":11}},{"w":85},{"d":"169,-142v-1,75,-48,110,-92,142r-33,0v43,-27,86,-56,101,-111v-15,12,-28,25,-56,24v-47,0,-71,-29,-71,-74v0,-49,27,-78,75,-78v55,0,76,39,76,97xm41,-166v0,73,70,74,106,44v2,-54,-3,-100,-55,-99v-34,1,-51,17,-51,55","w":189,"k":{"\u00bc":25,"\u00ba":7,"\u00ac":5,"\u00ab":5,"\u00aa":7,"\u00a9":5,"\u00a7":4,"\u00a4":22,"`":7,"\\":7,"?":4,"<":4,"8":5,"7":4,"3":7,"2":11,"\/":25,".":25,",":25,"'":7,"&":4,"#":5,"\"":5}},{"d":"121,5v-54,-1,-72,-38,-79,-86r-28,0r0,-18r26,0r0,-34r-26,0r0,-18r28,0v3,-68,63,-109,132,-77r-4,18v-35,-16,-91,-14,-99,26v-2,9,-6,20,-7,33r74,0r0,18r-75,0r0,34r75,0r0,18r-74,0v5,46,21,74,69,68v16,-1,24,-6,38,-11r6,16v-18,8,-30,13,-56,13","w":185,"k":{"9":4,"7":-4,"6":7,"5":-4,"4":11,"3":-4,"2":-4}},{"d":"109,-212v13,11,3,37,-13,34v-41,-9,-1,-62,10,-78r7,4r-15,39xm54,-212v14,10,2,38,-13,34v-41,-10,-1,-62,10,-78r8,4r-15,39","w":137,"k":{"\u00fa":13,"\u00f1":4,"\u00ea":11,"\u00e1":36,"z":4,"u":4,"s":4,"r":4,"q":11,"p":4,"o":13,"n":4,"m":4,"g":14,"e":11,"d":11,"c":11,"a":4,"Z":7,"W":-7,"V":-4,"T":-7,"S":4,"Q":11,"O":11,"J":32,"G":11,"C":11,"A":36,"8":13,"6":22,"4":50,"3":4,"2":4,"0":11}},{"d":"23,-258r18,0r0,294r-18,0r0,-294","w":64},{"d":"97,-96v48,22,32,101,-29,101v-21,0,-40,-6,-52,-12r4,-16v25,14,88,22,86,-24v-2,-59,-89,-25,-89,-92v0,-53,62,-61,103,-41r-4,15v-31,-14,-98,-13,-77,40v8,20,39,20,58,29","w":141,"k":{"\u00d0":4,"\u00ba":4,"\u00b7":5,"\u00b4":7,"\u00b1":4,"\\":13,"?":11,"-":4,"'":4,"&":-4,"!":4}},{"d":"10,-216r0,-18r147,0r0,18r-62,0r0,216r-23,0r0,-216r-62,0","w":167,"k":{"\u00fa":22,"\u00f1":22,"\u00ea":11,"\u00e1":22,"\u00d0":32,"\u00bc":32,"\u00bb":18,"\u00ba":-7,"\u00b7":36,"\u00b4":32,"\u00b1":32,"\u00ad":18,"\u00ac":36,"\u00ab":36,"\u00aa":-4,"z":22,"y":22,"x":25,"w":22,"v":22,"u":18,"t":4,"s":18,"r":18,"q":22,"p":18,"o":22,"n":18,"m":18,"j":4,"i":4,"g":25,"e":22,"d":22,"c":22,"a":22,"`":-4,"\\":-4,"T":-5,"S":4,"Q":11,"O":11,"J":20,"G":11,"C":11,"A":18,"@":11,"?":-5,";":32,":":32,"\/":25,".":32,"-":32,",":32,"*":-7,"'":-7,"&":7}},{"d":"82,-83r-71,-151r24,0v20,48,45,90,58,145v14,-54,38,-97,58,-145r21,0r-68,149r0,85r-22,0r0,-83","w":182,"k":{"\u00fb":5,"\u00fa":20,"\u00f1":14,"\u00ea":13,"\u00e1":32,"\u00d0":29,"\u00bc":40,"\u00bb":18,"\u00ba":-4,"\u00b7":25,"\u00b4":22,"\u00b1":29,"\u00af":4,"\u00ae":4,"\u00ad":18,"\u00ac":40,"\u00ab":40,"z":14,"y":7,"x":11,"w":7,"v":7,"u":13,"t":4,"s":14,"r":13,"q":20,"p":13,"o":20,"n":13,"m":13,"j":4,"i":4,"g":20,"f":4,"e":20,"d":20,"c":20,"a":14,"Z":1,"S":4,"Q":13,"O":13,"J":25,"G":13,"C":13,"A":25,"@":16,";":25,":":25,"\/":29,".":40,"-":29,",":40,"*":-4,"'":-4,"&":13}},{"d":"131,-21v-11,10,-27,21,-49,20v-44,-2,-64,-39,-64,-92v0,-70,34,-113,98,-91r18,18v5,-7,2,-24,17,-21r0,245r-20,0r0,-79xm131,-156v-14,-10,-26,-17,-47,-17v-41,1,-45,38,-45,82v0,46,9,74,46,74v21,0,35,-8,46,-18r0,-121","k":{"\u00ba":4,"\u00aa":4,"`":4,"\\":18,"?":11,"*":4,"'":4}},{"d":"151,-73v4,74,-83,97,-137,61r5,-16v39,25,120,23,109,-47v11,-58,-58,-71,-83,-38r-21,-3r5,-118r111,0r0,18r-92,0v-2,31,-2,64,-8,91v11,-11,24,-23,47,-22v44,1,61,29,64,74","w":169,"k":{"\u00eb":7,"\u00d0":4,"\u00bd":5,"\u00bc":7,"\u00ba":4,"\u00b1":4,"\u00aa":14,"\u00a9":4,"`":14,"\\":4,";":4,":":4,"9":9,"7":5,"3":5,"\/":14,".":7,"-":4,",":7,"+":4,"'":4,"%":5,"\"":4}},{"d":"23,-17r35,0r0,-187r-35,0r0,-9v19,-7,30,-21,56,-21r0,217r33,0r0,17r-89,0r0,-17","w":133,"k":{"\u00eb":18,"\u00e3":14,"\u00d0":20,"\u00bd":14,"\u00ba":18,"\u00b7":14,"\u00b4":14,"\u00b1":20,"\u00ac":5,"\u00ab":5,"\u00aa":25,"\u00a9":14,"`":25,"\\":11,"?":5,">":7,"=":14,"<":11,"9":7,"7":4,"4":7,"-":20,"+":20,"'":18,"%":14,"#":4,"\"":14}},{"d":"33,-148v10,-16,24,-28,37,-40v-19,-3,-38,-5,-54,-11r6,-18v20,4,34,14,50,23v-3,-18,-7,-33,-6,-55r19,0v1,22,-4,38,-7,55v16,-9,31,-19,51,-23r5,18v-16,6,-34,8,-53,11v13,12,27,25,37,40r-16,12v-11,-14,-19,-31,-27,-48v-8,17,-16,34,-27,48","w":150,"k":{"\u00fa":7,"\u00f1":7,"\u00e1":32,"\u00af":-7,"\u00ae":-7,"z":4,"y":-4,"w":-7,"v":-4,"t":-4,"q":7,"o":7,"g":11,"f":-7,"e":7,"d":7,"c":7,"a":7,"Z":4,"Y":-4,"W":-4,"T":-7,"J":25,"A":32}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+161-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("n:v*`}F,]c-pn~;Sy}i>q:q-QwF*v}-pQw|>]cKEv_H{tZ,#c;R*joqR(cl$y6gVtc|qQuOVj:)*QuOVj:qZmc-$y6gVtcv$y6gVt6F$y6gVtoKoQuOVj:|.mo.$y6gVtcF$y6gVtZK$y6gVt6K3QuOVj:q>3cy$y6gVto._QuOVj:)%QuOVj:j1QuOVj:|&QuOVj:)w6iR*jB0#F>F$y6gVtcKSQuOVj:t*QuOVj:OUQuOVj:O1QuOVj:tRQuOVj:ORQuOVj:v.QuOVj:jZQuOVj:)V`:U4QuOVj:j>n*R*jB0}t;R*jB0ojQv6QuOVj:i;v_R*jB0ovQq.F~U$y6gVtov$y6gVtwW%QuOVj:OZniR*jB0.(_R*jB0ov;R*jB0ot#y$y6gVt}qwj:*5QuOVj:tUI6UkQuOVj:j%_&v$y6gVt}v$y6gVtZtx6>*}6c;uIiR*jB0;to{Z6&)?Ym_VQuOVj:WVQ%.tO:|$y6gVtZO&QuOVj:|ojEy$y6gVto;~_*V#WiR*jB0ot_V=g0~B)i:uq|nkjF(IWKm6O_cQtv]`$y3Yh.#o&;}E^P5J{lp=VR>Z,*w%1U?SH-4xQuOVj:qRnQK&tuP$y6gVvciic**.k~v^yOK$y6gVvo.$Qi|BQuOVj:)RQuOVj:)>OmgUQuOVj:)1QuOVj:i.YuFOcQ)*jm^#kEFV`:;,n~q#nmRPI6g{$B*#kEg{`B*Vk}R;`}y,]~REIcqpv#UE`u;V]uj-3%,S]ct^t#U=]Z,=Q#hx(Ey%y*Vpn6H^IZ^pn*Vp$%_pv:iptw_$k}->v>&&kw&py:_Zy~.{`wF.y:;=`#U^`%F,`}ilvm&Pv}->nBlPI:VSn>lPncy`t*lPQ_,-$ilPQQ,Pn~&h")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":180,"face":{"font-family":"Amplitude-Light","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 6 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-17 -291 397.753 85.057","underline-thickness":"7.2","underline-position":"-40.68","unicode-range":"U+0020-U+00FB"}}));
