
 /*!
  * jCarousel - Riding carousels with jQuery
  *   http://sorgalla.com/jcarousel/
  *
  * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
  * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
  * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
  *
  * Built on top of the jQuery library
  *   http://jquery.com
  *
  * Inspired by the "Carousel Component" by Bill Scott
  *   http://billwscott.com/carousel/
  */

 (function($){$.fn.jcarousel=function(o){if(typeof o=='string'){var instance=$(this).data('jcarousel'),args=Array.prototype.slice.call(arguments,1);return instance[o].apply(instance,args);}else
 return this.each(function(){$(this).data('jcarousel',new $jc(this,o));});};var defaults={vertical:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:'normal',easing:'swing',auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:'<div></div>',buttonPrevHTML:'<div></div>',buttonNextEvent:'click',buttonPrevEvent:'click',buttonNextCallback:null,buttonPrevCallback:null};$.jcarousel=function(e,o){this.options=$.extend({},defaults,o||{});this.locked=false;this.container=null;this.clip=null;this.list=null;this.buttonNext=null;this.buttonPrev=null;this.wh=!this.options.vertical?'width':'height';this.lt=!this.options.vertical?'left':'top';var skin='',split=e.className.split(' ');for(var i=0;i<split.length;i++){if(split[i].indexOf('jcarousel-skin')!=-1){$(e).removeClass(split[i]);skin=split[i];break;}}if(e.nodeName=='UL'||e.nodeName=='OL'){this.list=$(e);this.container=this.list.parent();if(this.container.hasClass('jcarousel-clip')){if(!this.container.parent().hasClass('jcarousel-container'))this.container=this.container.wrap('<div></div>');this.container=this.container.parent();}else if(!this.container.hasClass('jcarousel-container'))this.container=this.list.wrap('<div></div>').parent();}else{this.container=$(e);this.list=this.container.find('ul,ol').eq(0);}if(skin!=''&&this.container.parent()[0].className.indexOf('jcarousel-skin')==-1)this.container.wrap('<div class=" '+skin+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass('jcarousel-clip'))this.clip=this.list.wrap('<div></div>').parent();this.buttonNext=$('.jcarousel-next',this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null)this.buttonNext=this.clip.after(this.options.buttonNextHTML).next();this.buttonNext.addClass(this.className('jcarousel-next'));this.buttonPrev=$('.jcarousel-prev',this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null)this.buttonPrev=this.clip.after(this.options.buttonPrevHTML).next();this.buttonPrev.addClass(this.className('jcarousel-prev'));this.clip.addClass(this.className('jcarousel-clip')).css({overflow:'hidden',position:'relative'});this.list.addClass(this.className('jcarousel-list')).css({overflow:'hidden',position:'relative',top:0,left:0,margin:0,padding:0});this.container.addClass(this.className('jcarousel-container')).css({position:'relative'});var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var li=this.list.children('li');var self=this;if(li.size()>0){var wh=0,i=this.options.offset;li.each(function(){self.format(this,i++);wh+=self.dimension(this,di);});this.list.css(this.wh,wh+'px');if(!o||o.size===undefined)this.options.size=li.size();}this.container.css('display','block');this.buttonNext.css('display','block');this.buttonPrev.css('display','block');this.funcNext=function(){self.next();};this.funcPrev=function(){self.prev();};this.funcResize=function(){self.reload();};if(this.options.initCallback!=null)this.options.initCallback(this,'init');if($.browser.safari){this.buttons(false,false);$(window).bind('load.jcarousel',function(){self.setup();});}else
 this.setup();};var $jc=$.jcarousel;$jc.fn=$jc.prototype={jcarousel:'0.2.4'};$jc.fn.extend=$jc.extend=$.extend;$jc.fn.extend({setup:function(){this.first=null;this.last=null;this.prevFirst=null;this.prevLast=null;this.animating=false;this.timer=null;this.tail=null;this.inTail=false;if(this.locked)return;this.list.css(this.lt,this.pos(this.options.offset)+'px');var p=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(p,false);$(window).unbind('resize.jcarousel',this.funcResize).bind('resize.jcarousel',this.funcResize);},reset:function(){this.list.empty();this.list.css(this.lt,'0px');this.list.css(this.wh,'10px');if(this.options.initCallback!=null)this.options.initCallback(this,'reset');this.setup();},reload:function(){if(this.tail!=null&&this.inTail)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;if(this.options.reloadCallback!=null)this.options.reloadCallback(this);if(this.options.visible!=null){var self=this;var di=Math.ceil(this.clipping()/this.options.visible),wh=0,lt=0;$('li',this.list).each(function(i){wh+=self.dimension(this,di);if(i+1<self.first)lt=wh;});this.list.css(this.wh,wh+'px');this.list.css(this.lt,-lt+'px');}this.scroll(this.first,false);},lock:function(){this.locked=true;this.buttons();},unlock:function(){this.locked=false;this.buttons();},size:function(s){if(s!=undefined){this.options.size=s;if(!this.locked)this.buttons();}return this.options.size;},has:function(i,i2){if(i2==undefined||!i2)i2=i;if(this.options.size!==null&&i2>this.options.size)i2=this.options.size;for(var j=i;j<=i2;j++){var e=this.get(j);if(!e.length||e.hasClass('jcarousel-item-placeholder'))return false;}return true;},get:function(i){return $('.jcarousel-item-'+i,this.list);},add:function(i,s){var e=this.get(i),old=0,add=0;if(e.length==0){var c,e=this.create(i),j=$jc.intval(i);while(c=this.get(--j)){if(j<=0||c.length){j<=0?this.list.prepend(e):c.after(e);break;}}}else
 old=this.dimension(e);e.removeClass(this.className('jcarousel-item-placeholder'));typeof s=='string'?e.html(s):e.empty().append(s);var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var wh=this.dimension(e,di)-old;if(i>0&&i<this.first)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-wh+'px');this.list.css(this.wh,$jc.intval(this.list.css(this.wh))+wh+'px');return e;},remove:function(i){var e=this.get(i);if(!e.length||(i>=this.first&&i<=this.last))return;var d=this.dimension(e);if(i<this.first)this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+d+'px');e.remove();this.list.css(this.wh,$jc.intval(this.list.css(this.wh))-d+'px');},next:function(){this.stopAuto();if(this.tail!=null&&!this.inTail)this.scrollTail(false);else
 this.scroll(((this.options.wrap=='both'||this.options.wrap=='last')&&this.options.size!=null&&this.last==this.options.size)?1:this.first+this.options.scroll);},prev:function(){this.stopAuto();if(this.tail!=null&&this.inTail)this.scrollTail(true);else
 this.scroll(((this.options.wrap=='both'||this.options.wrap=='first')&&this.options.size!=null&&this.first==1)?this.options.size:this.first-this.options.scroll);},scrollTail:function(b){if(this.locked||this.animating||!this.tail)return;var pos=$jc.intval(this.list.css(this.lt));!b?pos-=this.tail:pos+=this.tail;this.inTail=!b;this.prevFirst=this.first;this.prevLast=this.last;this.animate(pos);},scroll:function(i,a){if(this.locked||this.animating)return;this.animate(this.pos(i),a);},pos:function(i){var pos=$jc.intval(this.list.css(this.lt));if(this.locked||this.animating)return pos;if(this.options.wrap!='circular')i=i<1?1:(this.options.size&&i>this.options.size?this.options.size:i);var back=this.first>i;var f=this.options.wrap!='circular'&&this.first<=1?1:this.first;var c=back?this.get(f):this.get(this.last);var j=back?f:f-1;var e=null,l=0,p=false,d=0,g;while(back?--j>=i:++j<i){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c[back?'before':'after'](e);if(this.first!=null&&this.options.wrap=='circular'&&this.options.size!==null&&(j<=0||j>this.options.size)){g=this.get(this.index(j));if(g.length)this.add(j,g.children().clone(true));}}c=e;d=this.dimension(e);if(p)l+=d;if(this.first!=null&&(this.options.wrap=='circular'||(j>=1&&(this.options.size==null||j<=this.options.size))))pos=back?pos+d:pos-d;}var clipping=this.clipping();var cache=[];var visible=0,j=i,v=0;var c=this.get(i-1);while(++visible){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c.length==0?this.list.prepend(e):c[back?'before':'after'](e);if(this.first!=null&&this.options.wrap=='circular'&&this.options.size!==null&&(j<=0||j>this.options.size)){g=this.get(this.index(j));if(g.length)this.add(j,g.find('>*').clone(true));}}c=e;var d=this.dimension(e);if(d==0){alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');return 0;}if(this.options.wrap!='circular'&&this.options.size!==null&&j>this.options.size)cache.push(e);else if(p)l+=d;v+=d;if(v>=clipping)break;j++;}for(var x=0;x<cache.length;x++)cache[x].remove();if(l>0){this.list.css(this.wh,this.dimension(this.list)+l+'px');if(back){pos-=l;this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-l+'px');}}var last=i+visible-1;if(this.options.wrap!='circular'&&this.options.size&&last>this.options.size)last=this.options.size;if(j>last){visible=0,j=last,v=0;while(++visible){var e=this.get(j--);if(!e.length)break;v+=this.dimension(e);if(v>=clipping)break;}}var first=last-visible+1;if(this.options.wrap!='circular'&&first<1)first=1;if(this.inTail&&back){pos+=this.tail;this.inTail=false;}this.tail=null;if(this.options.wrap!='circular'&&last==this.options.size&&(last-visible+1)>=1){var m=$jc.margin(this.get(last),!this.options.vertical?'marginRight':'marginBottom');if((v-m)>clipping)this.tail=v-clipping-m;}while(i-->first)pos+=this.dimension(this.get(i));this.prevFirst=this.first;this.prevLast=this.last;this.first=first;this.last=last;return pos;},animate:function(p,a){if(this.locked||this.animating)return;this.animating=true;var self=this;var scrolled=function(){self.animating=false;if(p==0)self.list.css(self.lt,0);if(self.options.wrap=='circular'||self.options.wrap=='both'||self.options.wrap=='last'||self.options.size==null||self.last<self.options.size)self.startAuto();self.buttons();self.notify('onAfterAnimation');};this.notify('onBeforeAnimation');if(!this.options.animation||a==false){this.list.css(this.lt,p+'px');scrolled();}else{var o=!this.options.vertical?{'left':p}:{'top':p};this.list.animate(o,this.options.animation,this.options.easing,scrolled);}},startAuto:function(s){if(s!=undefined)this.options.auto=s;if(this.options.auto==0)return this.stopAuto();if(this.timer!=null)return;var self=this;this.timer=setTimeout(function(){self.next();},this.options.auto*1000);},stopAuto:function(){if(this.timer==null)return;clearTimeout(this.timer);this.timer=null;},buttons:function(n,p){if(n==undefined||n==null){var n=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='first')||this.options.size==null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=='first')&&this.options.size!=null&&this.last>=this.options.size)n=this.tail!=null&&!this.inTail;}if(p==undefined||p==null){var p=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='last')||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=='last')&&this.options.size!=null&&this.first==1)p=this.tail!=null&&this.inTail;}var self=this;this.buttonNext[n?'bind':'unbind'](this.options.buttonNextEvent+'.jcarousel',this.funcNext)[n?'removeClass':'addClass'](this.className('jcarousel-next-disabled')).attr('disabled',n?false:true);this.buttonPrev[p?'bind':'unbind'](this.options.buttonPrevEvent+'.jcarousel',this.funcPrev)[p?'removeClass':'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled',p?false:true);if(this.buttonNext.length>0&&(this.buttonNext[0].jcarouselstate==undefined||this.buttonNext[0].jcarouselstate!=n)&&this.options.buttonNextCallback!=null){this.buttonNext.each(function(){self.options.buttonNextCallback(self,this,n);});this.buttonNext[0].jcarouselstate=n;}if(this.buttonPrev.length>0&&(this.buttonPrev[0].jcarouselstate==undefined||this.buttonPrev[0].jcarouselstate!=p)&&this.options.buttonPrevCallback!=null){this.buttonPrev.each(function(){self.options.buttonPrevCallback(self,this,p);});this.buttonPrev[0].jcarouselstate=p;}},notify:function(evt){var state=this.prevFirst==null?'init':(this.prevFirst<this.first?'next':'prev');this.callback('itemLoadCallback',evt,state);if(this.prevFirst!==this.first){this.callback('itemFirstInCallback',evt,state,this.first);this.callback('itemFirstOutCallback',evt,state,this.prevFirst);}if(this.prevLast!==this.last){this.callback('itemLastInCallback',evt,state,this.last);this.callback('itemLastOutCallback',evt,state,this.prevLast);}this.callback('itemVisibleInCallback',evt,state,this.first,this.last,this.prevFirst,this.prevLast);this.callback('itemVisibleOutCallback',evt,state,this.prevFirst,this.prevLast,this.first,this.last);},callback:function(cb,evt,state,i1,i2,i3,i4){if(this.options[cb]==undefined||(typeof this.options[cb]!='object'&&evt!='onAfterAnimation'))return;var callback=typeof this.options[cb]=='object'?this.options[cb][evt]:this.options[cb];if(!$.isFunction(callback))return;var self=this;if(i1===undefined)callback(self,state,evt);else if(i2===undefined)this.get(i1).each(function(){callback(self,this,i1,state,evt);});else{for(var i=i1;i<=i2;i++)if(i!==null&&!(i>=i3&&i<=i4))this.get(i).each(function(){callback(self,this,i,state,evt);});}},create:function(i){return this.format('<li></li>',i);},format:function(e,i){var $e=$(e).addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-'+i)).css({'float':'left','list-style':'none'});$e.attr('jcarouselindex',i);return $e;},className:function(c){return c+' '+c+(!this.options.vertical?'-horizontal':'-vertical');},dimension:function(e,d){var el=e.jquery!=undefined?e[0]:e;var old=!this.options.vertical?el.offsetWidth+$jc.margin(el,'marginLeft')+$jc.margin(el,'marginRight'):el.offsetHeight+$jc.margin(el,'marginTop')+$jc.margin(el,'marginBottom');if(d==undefined||old==d)return old;var w=!this.options.vertical?d-$jc.margin(el,'marginLeft')-$jc.margin(el,'marginRight'):d-$jc.margin(el,'marginTop')-$jc.margin(el,'marginBottom');$(el).css(this.wh,w+'px');return this.dimension(el);},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-$jc.intval(this.clip.css('borderLeftWidth'))-$jc.intval(this.clip.css('borderRightWidth')):this.clip[0].offsetHeight-$jc.intval(this.clip.css('borderTopWidth'))-$jc.intval(this.clip.css('borderBottomWidth'));},index:function(i,s){if(s==undefined)s=this.options.size;return Math.round((((i-1)/s)-Math.floor((i-1)/s))*s)+1;}});$jc.extend({defaults:function(d){return $.extend(defaults,d||{});},margin:function(e,p){if(!e)return 0;var el=e.jquery!=undefined?e[0]:e;if(p=='marginRight'&&$.browser.safari){var old={'display':'block','float':'none','width':'auto'},oWidth,oWidth2;$.swap(el,old,function(){oWidth=el.offsetWidth;});old['marginRight']=0;$.swap(el,old,function(){oWidth2=el.offsetWidth;});return oWidth2-oWidth;}return $jc.intval($.css(el,p));},intval:function(v){v=parseInt(v);return isNaN(v)?0:v;}});})(jQuery);


/*
 * jQuery Cycle Plugin (core engine only)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.99 (12-MAR-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
(function($){var ver="2.99";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){$.fn.cycle.debug&&log(s);}function log(){window.console&&console.log&&console.log("[cycle] "+Array.prototype.join.call(arguments," "));}$.expr[":"].paused=function(el){return el.cyclePause;};$.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;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;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;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards);},startTime);}});};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"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);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 checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var 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,!options.backwards);}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}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]:[];if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.backwards);});}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);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}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=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{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||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}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;}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.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);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.cssAfter=opts.cssAfter||{};opts.cssFirst=opts.cssFirst||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);$($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;}var buffer=opts.fx=="none"?0:opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){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){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}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 e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length){opts.after[0].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0);});}if(opts.pager||opts.pagerAnchorBuilder){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]);}debug("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"){$s.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||opts.pagerAnchorBuilder){$.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){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=0;}if(opts.busy){debug("transition active, ignoring new tx request");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.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;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(){opts.busy=0;$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing("+fx+"); currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){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];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while(opts.fx!="none"&&(t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;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){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;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,moveForward);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}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[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$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;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",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){debug("applying clearType background-color hack");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&&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();if(typeof opts.cssBefore.opacity=="undefined"){opts.cssBefore.opacity=1;}opts.cssBefore.display="block";if(opts.slideResize&&w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(opts.slideResize&&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,fwd,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,function(){cb();});};$l.animate(opts.animOut,speedOut,easeOut,function(){$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={activePagerClass:"activeSlide",after:null,allowPagerClickBubble:false,animIn:null,animOut:null,autostop:0,autostopCount:0,backwards:false,before:null,cleartype:!$.support.opacity,cleartypeNoBg:false,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:"fade",fxFn:null,height:"auto",manualTrump:true,next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:"click.cycle",pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:"click.cycle",random:0,randomizeEffects:1,requeueOnImageNotLoaded:true,requeueTimeout:250,rev:0,shuffle:null,slideExpr:null,slideResize:1,speed:1000,speedIn:null,speedOut:null,startingSlide:0,sync:1,timeout:4000,timeoutFn:null,updateActivePagerLink:null};})(jQuery);

/*
 * SpicySelect jQuery Plugin
 *
 * http://github.com/paulelliott/jquery-spicyselect
 *
 * Copyright (c) 2009 Paul Elliott (paul@codingfrontier.com)
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
 */
(function($) {
  $.fn.extend({
    spicyselect: function(user_settings) {
      //Override the default settings with the user settings
      var settings = $.extend({
        defaultText: "",
        animate: true,
        label_markup: "<a></a>",
        label_text_selector: "> a"
      }, user_settings);

      //Iterate through all the selects being masked
      return this.each(function() {
        //Get and move the select box off the screen
        var selectBox = $(this).css({
          position: 'absolute',
          left: '-9999px'
        }).focus(function() {
          $("#" + $(this).data("mask_id")).addClass('focus');
        }).blur(function() {
          //IE goes crazy with this for some reason
          if (!$.browser.msie) {
            hideMask($("#" + $(this).data("mask_id")), settings);
          }
        });
        var selectOptions = $("> *", this);

        //Create and store the id for the masking ol
        var maskId = selectBox.attr('id') + '_mask';
        selectBox.data("mask_id", maskId);

        //Insert the basic structure for the mask into the DOM right after the select
        selectBox.after("<div id='" + maskId + "'><div></div><ol></ol></div>");
        var selectMask = $("#" + maskId).addClass("spicyselect").addClass(selectBox.attr("class")).focus(function() {
          selectMask.addClass("focus");
        });
        selectMask.find("> div").html(settings.label_markup);
        selectMask.data("select_id", selectBox.attr("id"));
        var label = selectMask.find("> div " + settings.label_text_selector);

        //Handle the keypress events
        selectBox.keydown(function(e) {
          //If the keypress was not ctrl, alt, or command and not a tab or enter, send it to the mask instead
          if (e.which != 9 && !e.altKey && !e.ctrlKey && !e.metaKey) {
            //if the down arrow was pressed, show the list
            if (e.which == 40) { //if the down arrow was pressed
              if (selectMask.find("> ol").is(":hidden")) {
                showMask(selectMask, settings);
              } else {
                var current = selectMask.find(".current");
                if (current.length == 0) { //If none are selected, select the first one.
                  selectMask.find("li:first").addClass("current");
                } else if (!selectMask.find("li:last").is(".current")) { //If the last one is selected, do nothing
                  //If any other one is selected, move it down one.
                  var currentIndex = selectMask.find("li").index(current);
                  selectMask.find("li:eq(" + (currentIndex + 1) + ")").addClass("current");
                  current.removeClass("current");
                }
              }
            } else if (e.which == 38 && selectMask.find("> ol").is(":visible")) { //if the up arrow is pressed
              //If the first one is selected, do nothing
              //If any other one is selected, move it up one.
              var current = selectMask.find(".current");
              var currentIndex = selectMask.find("li").index(current);
              selectMask.find("li:eq(" + (currentIndex - 1) + ")").addClass("current");
              current.removeClass("current");
            } else if (e.which == 27) { //if escape is pressed
              hideMask(selectMask, settings);
            } else if ((e.which == 13 || e.which == 32) && selectMask.find("> ol").is(":visible")) { //enter or spacebar is pressed
              //select the current option
              selectOption(selectMask, label, selectMask.find("li.current"));
              hideMask(selectMask, settings);
            } else if (e.which == 13) {
              //allow enter to pass through to the form if the the options are not visible.
            } else {
              showMask(selectMask, settings);
              keyhandler(selectMask, e);
            }

            return false;
          }
        });

        //If the first option has no value, assume it to be the default.
        if (selectOptions.length && !selectOptions[0].value) {
          settings.defaultText = selectOptions[0].text;
          selectOptions = selectOptions.slice(1);
        }
        label.text(settings.defaultText);

        //Iterate over the children of the select
        var options = selectMask.find("> ol").hide();
        selectOptions.each(function() {
          var option = $(this);

          //For an optgroup...
          if (option.is("optgroup")) {
            //Put the optgroup into a new ol
            var optgroup = $("<ol></ol>");
            optgroup.append(createLi(option));

            //Iterate over the options contained within and put them in the ol
            $("option", option[0]).each(function() {
              optgroup.append(createLi($(this)));
              $(this).is(":selected") && label.text(this.text);
            });

            options.append(optgroup);
          } else {
            if (!this.value) {
              //A valueless option is considered to be the default value
              settings.defaultText = this.text;
            } else {
              //Write an option with a blue into the ol
              options.append(createLi(option));
            }
          }

          //If the option was selected, use its label for display
          option.is(":selected") && label.text(option.text());
        });

        //Toggle the the ol if the display anchor is clicked
        selectMask.find("> div").click(function() {
          //Whenever the spicyselect is clicked, put focus to the underlying select
          selectBox.focus().click();

          if (selectMask.find("> ol").is(":visible")) {
            hideMask(selectMask, settings);
          } else {
            showMask(selectMask, settings);
          }
          return false;
        });

        //When the user selects an option from the list
        selectMask.find("ol li").live('click', function() {
          if ($(this).is(".optgroup_label")) return false;
          var mask = $(this).addClass("current").closest("div");
          selectOption(mask, label, $(this));
          hideMask(mask, settings);
        }).mouseover(function() {
          selectMask.find("ol li.current").removeClass("current");
          $(this).addClass("current");
        });

        //Disable selection of any text within selectMask
        selectMask.bind('select mousedown', function() { return false; });
      });
    }
  });

  function hideMask(mask, settings) {
    settings.animate && mask.find("> ol").slideUp("fast") || mask.find("> ol").hide();
    mask.removeClass("focus");
  }

  function showMask(mask, settings) {
    mask.find(".current").removeClass("current");
    settings.animate && mask.find("> ol").slideDown("fast") || mask.find("> ol").show();
    mask.addClass("focus");
  }

  function selectOption(mask, label, option) {
    if (option.length > 0) {
      label.text(option.text());
      $("#" + mask.data("select_id")).val(option.data("value")).change();
    }
  }

  function keyhandler(mask, e) {
    //Append the new character to the search data and store it
    if (e.which == 8 || e.which == 46) {
      mask.data("search_data", "");
    } else {
      var searchData = ((mask.data("search_data") || "") + String.fromCharCode(e.which)).toLowerCase();
      mask.data("search_data", searchData);
      mask.find("li.current").removeClass("current");
      mask.find("li").each(function() {
        var element = $(this);
        if (!element.hasClass("optgroup_label") && element.text().toLowerCase().match(searchData)) {
          element.addClass("current");
          return false;
        }
      });
    }
  }

  //Create an li for the mask from an option or optgroup
  function createLi(option) {
    var text = option.is("optgroup") ? option.attr("label") : option.text();
    var li = $("<li>" + text + "</li>").addClass(option.attr('class'));
    li.attr("style", option.attr('style'));
    option.is("optgroup") && li.addClass("optgroup_label");
    li.data('value', option.val());
    return li;
  }

  //Lame hack for IE
  if ($.browser.msie) {
  
    //If the user clicks off the select, hide it
    $("*").live('click', function(e) {
		
		flag = e.clientX ? true : false;
		if (flag) {
		  if ($(this).closest('.spicyselect').length == 0) {
			hideMask($(".spicyselect"), {
			  defaultText: "",
			  animate: true,
			  label_markup: "<a></a>",
			  label_text_selector: "> a"
			});
		  }
		 }
    });
  }

})(jQuery);

/*!
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */

/*global window, jQuery */
(function($) {
    // Default configuration properties.
    var defaults = {
        vertical: false,
        rtl: false,
        start: 1,
        offset: 1,
        size: null,
        scroll: 3,
        visible: null,
        animation: 'normal',
        easing: 'swing',
        auto: 0,
        wrap: null,
        initCallback: null,
        reloadCallback: null,
        itemLoadCallback: null,
        itemFirstInCallback: null,
        itemFirstOutCallback: null,
        itemLastInCallback: null,
        itemLastOutCallback: null,
        itemVisibleInCallback: null,
        itemVisibleOutCallback: null,
        buttonNextHTML: '<div></div>',
        buttonPrevHTML: '<div></div>',
        buttonNextEvent: 'click',
        buttonPrevEvent: 'click',
        buttonNextCallback: null,
        buttonPrevCallback: null,
        itemFallbackDimension: null,
        webkit_fixed: false
    }, windowLoaded = false;

    $(window).bind('load.jcarousel', function() { windowLoaded = true; });

    /**
     * The jCarousel object.
     *
     * @constructor
     * @class jcarousel
     * @param e {HTMLElement} The element to create the carousel for.
     * @param o {Object} A set of key/value pairs to set as configuration properties.
     * @cat Plugins/jCarousel
     */
    $.jcarousel = function(e, o) {
        this.options    = $.extend({}, defaults, o || {});

        this.locked          = false;
        this.autoStopped     = false;

        this.container       = null;
        this.clip            = null;
        this.list            = null;
        this.buttonNext      = null;
        this.buttonPrev      = null;
        this.buttonNextState = null;
        this.buttonPrevState = null;

        // Only set if not explicitly passed as option
        if (!o || o.rtl === undefined) {
            this.options.rtl = ($(e).attr('dir') || $('html').attr('dir') || '').toLowerCase() == 'rtl';
        }

        this.wh = !this.options.vertical ? 'width' : 'height';
        this.lt = !this.options.vertical ? (this.options.rtl ? 'right' : 'left') : 'top';

        // Extract skin class
        var skin = '', split = e.className.split(' ');

        for (var i = 0; i < split.length; i++) {
            if (split[i].indexOf('jcarousel-skin') != -1) {
                $(e).removeClass(split[i]);
                skin = split[i];
                break;
            }
        }

        if (e.nodeName.toUpperCase() == 'UL' || e.nodeName.toUpperCase() == 'OL') {
            this.list = $(e);
            this.container = this.list.parent();

            if (this.container.hasClass('jcarousel-clip')) {
                if (!this.container.parent().hasClass('jcarousel-container')) {
                    this.container = this.container.wrap('<div></div>');
                }

                this.container = this.container.parent();
            } else if (!this.container.hasClass('jcarousel-container')) {
                this.container = this.list.wrap('<div></div>').parent();
            }
        } else {
            this.container = $(e);
            this.list = this.container.find('ul,ol').eq(0);
        }

        if (skin !== '' && this.container.parent()[0].className.indexOf('jcarousel-skin') == -1) {
            this.container.wrap('<div class=" '+ skin + '"></div>');
        }

        this.clip = this.list.parent();

        if (!this.clip.length || !this.clip.hasClass('jcarousel-clip')) {
            this.clip = this.list.wrap('<div></div>').parent();
        }

        this.buttonNext = $('.jcarousel-next', this.container);

        if (this.buttonNext.size() === 0 && this.options.buttonNextHTML !== null) {
            this.buttonNext = this.clip.after(this.options.buttonNextHTML).next();
        }

        this.buttonNext.addClass(this.className('jcarousel-next'));

        this.buttonPrev = $('.jcarousel-prev', this.container);

        if (this.buttonPrev.size() === 0 && this.options.buttonPrevHTML !== null) {
            this.buttonPrev = this.clip.after(this.options.buttonPrevHTML).next();
        }

        this.buttonPrev.addClass(this.className('jcarousel-prev'));

        this.clip.addClass(this.className('jcarousel-clip')).css({
            overflow: 'hidden',
            position: 'relative'
        });

        this.list.addClass(this.className('jcarousel-list')).css({
            overflow: 'hidden',
            position: 'relative',
            top: 0,
            margin: 0,
            padding: 0
        }).css((this.options.rtl ? 'right' : 'left'), 0);

        this.container.addClass(this.className('jcarousel-container')).css({
            position: 'relative'
        });

        if (!this.options.vertical && this.options.rtl) {
            this.container.addClass('jcarousel-direction-rtl').attr('dir', 'rtl');
        }

        var di = this.options.visible !== null ? Math.ceil(this.clipping() / this.options.visible) : null;
        var li = this.list.children('li');

        var self = this;

        if (li.size() > 0) {
            var wh = 0, j = this.options.offset;
            li.each(function() {
                self.format(this, j++);
                wh += self.dimension(this, di);
            });

            this.list.css(this.wh, (wh + 100) + 'px');

            // Only set if not explicitly passed as option
            if (!o || o.size === undefined) {
                this.options.size = li.size();
            }
        }

        // For whatever reason, .show() does not work in Safari...
        this.container.css('display', 'block');
        this.buttonNext.css('display', 'block');
        this.buttonPrev.css('display', 'block');

        this.funcNext   = function() { self.next(); };
        this.funcPrev   = function() { self.prev(); };
        this.funcResize = function() { self.reload(); };

        if (this.options.initCallback !== null) {
            this.options.initCallback(this, 'init');
        }

        if (!windowLoaded && $.browser.safari) {
            this.buttons(false, false);
            $(window).bind('load.jcarousel', function() { self.setup(); });
        } else {
            this.setup();
        }
    };

    // Create shortcut for internal use
    var $jc = $.jcarousel;

    $jc.fn = $jc.prototype = {
        jcarousel: '0.2.7'
    };

    $jc.fn.extend = $jc.extend = $.extend;

    $jc.fn.extend({
        /**
         * Setups the carousel.
         *
         * @method setup
         * @return undefined
         */
        setup: function() {
            this.first     = null;
            this.last      = null;
            this.prevFirst = null;
            this.prevLast  = null;
            this.animating = false;
            this.timer     = null;
            this.tail      = null;
            this.inTail    = false;

            if (this.locked) {
                return;
            }

            this.list.css(this.lt, this.pos(this.options.offset) + 'px');
            var p = this.pos(this.options.start, true);
            this.prevFirst = this.prevLast = null;
            this.animate(p, false);

            $(window).unbind('resize.jcarousel', this.funcResize).bind('resize.jcarousel', this.funcResize);
        },

        /**
         * Clears the list and resets the carousel.
         *
         * @method reset
         * @return undefined
         */
        reset: function() {
            this.list.empty();

            this.list.css(this.lt, '0px');
            this.list.css(this.wh, '10px');

            if (this.options.initCallback !== null) {
                this.options.initCallback(this, 'reset');
            }

            this.setup();
        },

        /**
         * Reloads the carousel and adjusts positions.
         *
         * @method reload
         * @return undefined
         */
        reload: function() {
            if (this.tail !== null && this.inTail) {
                this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) + this.tail);
            }

            this.tail   = null;
            this.inTail = false;

            if (this.options.reloadCallback !== null) {
                this.options.reloadCallback(this);
            }

            if (this.options.visible !== null) {
                var self = this;
                var di = Math.ceil(this.clipping() / this.options.visible), wh = 0, lt = 0;
                this.list.children('li').each(function(i) {
                    wh += self.dimension(this, di);
                    if (i + 1 < self.first) {
                        lt = wh;
                    }
                });

                this.list.css(this.wh, wh + 'px');
                this.list.css(this.lt, -lt + 'px');
            }

            this.scroll(this.first, false);
        },

        /**
         * Locks the carousel.
         *
         * @method lock
         * @return undefined
         */
        lock: function() {
            this.locked = true;
            this.buttons();
        },

        /**
         * Unlocks the carousel.
         *
         * @method unlock
         * @return undefined
         */
        unlock: function() {
            this.locked = false;
            this.buttons();
        },

        /**
         * Sets the size of the carousel.
         *
         * @method size
         * @return undefined
         * @param s {Number} The size of the carousel.
         */
        size: function(s) {
            if (s !== undefined) {
                this.options.size = s;
                if (!this.locked) {
                    this.buttons();
                }
            }

            return this.options.size;
        },

        /**
         * Checks whether a list element exists for the given index (or index range).
         *
         * @method get
         * @return bool
         * @param i {Number} The index of the (first) element.
         * @param i2 {Number} The index of the last element.
         */
        has: function(i, i2) {
            if (i2 === undefined || !i2) {
                i2 = i;
            }

            if (this.options.size !== null && i2 > this.options.size) {
                i2 = this.options.size;
            }

            for (var j = i; j <= i2; j++) {
                var e = this.get(j);
                if (!e.length || e.hasClass('jcarousel-item-placeholder')) {
                    return false;
                }
            }

            return true;
        },

        /**
         * Returns a jQuery object with list element for the given index.
         *
         * @method get
         * @return jQuery
         * @param i {Number} The index of the element.
         */
        get: function(i) {
            return $('.jcarousel-item-' + i, this.list);
        },

        /**
         * Adds an element for the given index to the list.
         * If the element already exists, it updates the inner html.
         * Returns the created element as jQuery object.
         *
         * @method add
         * @return jQuery
         * @param i {Number} The index of the element.
         * @param s {String} The innerHTML of the element.
         */
        add: function(i, s) {
            var e = this.get(i), old = 0, n = $(s);

            if (e.length === 0) {
                var c, j = $jc.intval(i);
                e = this.create(i);
                while (true) {
                    c = this.get(--j);
                    if (j <= 0 || c.length) {
                        if (j <= 0) {
                            this.list.prepend(e);
                        } else {
                            c.after(e);
                        }
                        break;
                    }
                }
            } else {
                old = this.dimension(e);
            }

            if (n.get(0).nodeName.toUpperCase() == 'LI') {
                e.replaceWith(n);
                e = n;
            } else {
                e.empty().append(s);
            }

            this.format(e.removeClass(this.className('jcarousel-item-placeholder')), i);

            var di = this.options.visible !== null ? Math.ceil(this.clipping() / this.options.visible) : null;
            var wh = this.dimension(e, di) - old;

            if (i > 0 && i < this.first) {
                this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) - wh + 'px');
            }

            this.list.css(this.wh, $jc.intval(this.list.css(this.wh)) + wh + 'px');

            return e;
        },

        /**
         * Removes an element for the given index from the list.
         *
         * @method remove
         * @return undefined
         * @param i {Number} The index of the element.
         */
        remove: function(i) {
            var e = this.get(i);

            // Check if item exists and is not currently visible
            if (!e.length || (i >= this.first && i <= this.last)) {
                return;
            }

            var d = this.dimension(e);

            if (i < this.first) {
                this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) + d + 'px');
            }

            e.remove();

            this.list.css(this.wh, $jc.intval(this.list.css(this.wh)) - d + 'px');
        },

        /**
         * Moves the carousel forwards.
         *
         * @method next
         * @return undefined
         */
        next: function() {
            if (this.tail !== null && !this.inTail) {
                this.scrollTail(false);
            } else {
                this.scroll(((this.options.wrap == 'both' || this.options.wrap == 'last') && this.options.size !== null && this.last == this.options.size) ? 1 : this.first + this.options.scroll);
            }
        },

        /**
         * Moves the carousel backwards.
         *
         * @method prev
         * @return undefined
         */
        prev: function() {
            if (this.tail !== null && this.inTail) {
                this.scrollTail(true);
            } else {
                this.scroll(((this.options.wrap == 'both' || this.options.wrap == 'first') && this.options.size !== null && this.first == 1) ? this.options.size : this.first - this.options.scroll);
            }
        },

        /**
         * Scrolls the tail of the carousel.
         *
         * @method scrollTail
         * @return undefined
         * @param b {Boolean} Whether scroll the tail back or forward.
         */
        scrollTail: function(b) {
            if (this.locked || this.animating || !this.tail) {
                return;
            }

            this.pauseAuto();

            var pos  = $jc.intval(this.list.css(this.lt));

            pos = !b ? pos - this.tail : pos + this.tail;
            this.inTail = !b;

            // Save for callbacks
            this.prevFirst = this.first;
            this.prevLast  = this.last;

            this.animate(pos);
        },

        /**
         * Scrolls the carousel to a certain position.
         *
         * @method scroll
         * @return undefined
         * @param i {Number} The index of the element to scoll to.
         * @param a {Boolean} Flag indicating whether to perform animation.
         */
        scroll: function(i, a, fix) {
        	fix = fix ? fix : {};
        	
            if (this.locked || this.animating) {
                return;
            }

            this.pauseAuto();

            this.animate(this.pos(i), a, {
            	i: i
            });
        },

        /**
         * Prepares the carousel and return the position for a certian index.
         *
         * @method pos
         * @return {Number}
         * @param i {Number} The index of the element to scoll to.
         * @param fv {Boolean} Whether to force last item to be visible.
         */
        pos: function(i, fv) {
            var pos  = $jc.intval(this.list.css(this.lt));

            if (this.locked || this.animating) {
                return pos;
            }

            if (this.options.wrap != 'circular') {
                i = i < 1 ? 1 : (this.options.size && i > this.options.size ? this.options.size : i);
            }

            var back = this.first > i;

            // Create placeholders, new list width/height
            // and new list position
            var f = this.options.wrap != 'circular' && this.first <= 1 ? 1 : this.first;
            var c = back ? this.get(f) : this.get(this.last);
            var j = back ? f : f - 1;
            var e = null, l = 0, p = false, d = 0, g;

            while (back ? --j >= i : ++j < i) {
                e = this.get(j);
                p = !e.length;
                if (e.length === 0) {
                    e = this.create(j).addClass(this.className('jcarousel-item-placeholder'));
                    c[back ? 'before' : 'after' ](e);

                    if (this.first !== null && this.options.wrap == 'circular' && this.options.size !== null && (j <= 0 || j > this.options.size)) {
                        g = this.get(this.index(j));
                        if (g.length) {
                            e = this.add(j, g.clone(true));
                        }
                    }
                }

                c = e;
                d = this.dimension(e);

                if (p) {
                    l += d;
                }

                if (this.first !== null && (this.options.wrap == 'circular' || (j >= 1 && (this.options.size === null || j <= this.options.size)))) {
                    pos = back ? pos + d : pos - d;
                }
            }

            // Calculate visible items
            var clipping = this.clipping(), cache = [], visible = 0, v = 0;
            c = this.get(i - 1);
            j = i;

            while (++visible) {
                e = this.get(j);
                p = !e.length;
                if (e.length === 0) {
                    e = this.create(j).addClass(this.className('jcarousel-item-placeholder'));
                    // This should only happen on a next scroll
                    if (c.length === 0) {
                        this.list.prepend(e);
                    } else {
                        c[back ? 'before' : 'after' ](e);
                    }

                    if (this.first !== null && this.options.wrap == 'circular' && this.options.size !== null && (j <= 0 || j > this.options.size)) {
                        g = this.get(this.index(j));
                        if (g.length) {
                            e = this.add(j, g.clone(true));
                        }
                    }
                }

                c = e;
                d = this.dimension(e);
                if (d === 0) {
                    throw new Error('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');
                }

                if (this.options.wrap != 'circular' && this.options.size !== null && j > this.options.size) {
                    cache.push(e);
                } else if (p) {
                    l += d;
                }

                v += d;

                if (v >= clipping) {
                    break;
                }

                j++;
            }

             // Remove out-of-range placeholders
            for (var x = 0; x < cache.length; x++) {
                cache[x].remove();
            }

            // Resize list
            if (l > 0) {
                this.list.css(this.wh, this.dimension(this.list) + l + 'px');

                if (back) {
                    pos -= l;
                    this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) - l + 'px');
                }
            }

            // Calculate first and last item
            var last = i + visible - 1;
            if (this.options.wrap != 'circular' && this.options.size && last > this.options.size) {
                last = this.options.size;
            }

            if (j > last) {
                visible = 0;
                j = last;
                v = 0;
                while (++visible) {
                    e = this.get(j--);
                    if (!e.length) {
                        break;
                    }
                    v += this.dimension(e);
                    if (v >= clipping) {
                        break;
                    }
                }
            }

            var first = last - visible + 1;
            if (this.options.wrap != 'circular' && first < 1) {
                first = 1;
            }

            if (this.inTail && back) {
                pos += this.tail;
                this.inTail = false;
            }

            this.tail = null;
            if (this.options.wrap != 'circular' && last == this.options.size && (last - visible + 1) >= 1) {
                var m = $jc.margin(this.get(last), !this.options.vertical ? 'marginRight' : 'marginBottom');
                if ((v - m) > clipping) {
                    this.tail = v - clipping - m;
                }
            }

            if (fv && i === this.options.size && this.tail) {
                pos -= this.tail;
                this.inTail = true;
            }

            // Adjust position
            while (i-- > first) {
                pos += this.dimension(this.get(i));
            }

            // Save visible item range
            this.prevFirst = this.first;
            this.prevLast  = this.last;
            this.first     = first;
            this.last      = last;

            return pos;
        },

        /**
         * Animates the carousel to a certain position.
         *
         * @method animate
         * @return undefined
         * @param p {Number} Position to scroll to.
         * @param a {Boolean} Flag indicating whether to perform animation.
         */
        animate: function(p, a, fix) {
        	fix = fix ? fix : {};
        	
            if (this.locked || this.animating) {
                return;
            }

            this.animating = true;

            var self = this;
            var scrolled = function() {
                self.animating = false;

                if (p === 0) {
                    self.list.css(self.lt,  0);
                }

                if (!self.autoStopped && (self.options.wrap == 'circular' || self.options.wrap == 'both' || self.options.wrap == 'last' || self.options.size === null || self.last < self.options.size || (self.last == self.options.size && self.tail !== null && !self.inTail))) {
                    self.startAuto();
                }

                self.buttons();
                self.notify('onAfterAnimation');

                // This function removes items which are appended automatically for circulation.
                // This prevents the list from growing infinitely.
                if (self.options.wrap == 'circular' && self.options.size !== null) {
                    for (var i = self.prevFirst; i <= self.prevLast; i++) {
                        if (i !== null && !(i >= self.first && i <= self.last) && (i < 1 || i > self.options.size)) {
                            self.remove(i);
                        }
                    }
                }
            };

            this.notify('onBeforeAnimation');

            // Animate
            if (!this.options.animation || a === false) {
                this.list.css(this.lt, p + 'px');
                scrolled();
            } else {
            	//	fix the GUIYI bug under webkit browser, some hardcodes, by psyche.lei@dextrys
            	if ($.browser.webkit && !this.webkit_fixed) {
            		p = '-' + ((fix.i-1) * 214)+'px';
            		this.webkit_fixed = true;
            	}
                var o = !this.options.vertical ? (this.options.rtl ? {'right': p} : {'left': p}) : {'top': p};
                this.list.animate(o, this.options.animation, this.options.easing, scrolled);
            }
        },

        /**
         * Starts autoscrolling.
         *
         * @method auto
         * @return undefined
         * @param s {Number} Seconds to periodically autoscroll the content.
         */
        startAuto: function(s) {
            if (s !== undefined) {
                this.options.auto = s;
            }

            if (this.options.auto === 0) {
                return this.stopAuto();
            }

            if (this.timer !== null) {
                return;
            }

            this.autoStopped = false;

            var self = this;
            this.timer = window.setTimeout(function() { self.next(); }, this.options.auto * 1000);
        },

        /**
         * Stops autoscrolling.
         *
         * @method stopAuto
         * @return undefined
         */
        stopAuto: function() {
            this.pauseAuto();
            this.autoStopped = true;
        },

        /**
         * Pauses autoscrolling.
         *
         * @method pauseAuto
         * @return undefined
         */
        pauseAuto: function() {
            if (this.timer === null) {
                return;
            }

            window.clearTimeout(this.timer);
            this.timer = null;
        },

        /**
         * Sets the states of the prev/next buttons.
         *
         * @method buttons
         * @return undefined
         */
        buttons: function(n, p) {
            if (n == null) {
                n = !this.locked && this.options.size !== 0 && ((this.options.wrap && this.options.wrap != 'first') || this.options.size === null || this.last < this.options.size);
                if (!this.locked && (!this.options.wrap || this.options.wrap == 'first') && this.options.size !== null && this.last >= this.options.size) {
                    n = this.tail !== null && !this.inTail;
                }
            }

            if (p == null) {
                p = !this.locked && this.options.size !== 0 && ((this.options.wrap && this.options.wrap != 'last') || this.first > 1);
                if (!this.locked && (!this.options.wrap || this.options.wrap == 'last') && this.options.size !== null && this.first == 1) {
                    p = this.tail !== null && this.inTail;
                }
            }

            var self = this;

            if (this.buttonNext.size() > 0) {
                this.buttonNext.unbind(this.options.buttonNextEvent + '.jcarousel', this.funcNext);

                if (n) {
                    this.buttonNext.bind(this.options.buttonNextEvent + '.jcarousel', this.funcNext);
                }

                this.buttonNext[n ? 'removeClass' : 'addClass'](this.className('jcarousel-next-disabled')).attr('disabled', n ? false : true);

                if (this.options.buttonNextCallback !== null && this.buttonNext.data('jcarouselstate') != n) {
                    this.buttonNext.each(function() { self.options.buttonNextCallback(self, this, n); }).data('jcarouselstate', n);
                }
            } else {
                if (this.options.buttonNextCallback !== null && this.buttonNextState != n) {
                    this.options.buttonNextCallback(self, null, n);
                }
            }

            if (this.buttonPrev.size() > 0) {
                this.buttonPrev.unbind(this.options.buttonPrevEvent + '.jcarousel', this.funcPrev);

                if (p) {
                    this.buttonPrev.bind(this.options.buttonPrevEvent + '.jcarousel', this.funcPrev);
                }

                this.buttonPrev[p ? 'removeClass' : 'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled', p ? false : true);

                if (this.options.buttonPrevCallback !== null && this.buttonPrev.data('jcarouselstate') != p) {
                    this.buttonPrev.each(function() { self.options.buttonPrevCallback(self, this, p); }).data('jcarouselstate', p);
                }
            } else {
                if (this.options.buttonPrevCallback !== null && this.buttonPrevState != p) {
                    this.options.buttonPrevCallback(self, null, p);
                }
            }

            this.buttonNextState = n;
            this.buttonPrevState = p;
        },

        /**
         * Notify callback of a specified event.
         *
         * @method notify
         * @return undefined
         * @param evt {String} The event name
         */
        notify: function(evt) {
            var state = this.prevFirst === null ? 'init' : (this.prevFirst < this.first ? 'next' : 'prev');

            // Load items
            this.callback('itemLoadCallback', evt, state);

            if (this.prevFirst !== this.first) {
                this.callback('itemFirstInCallback', evt, state, this.first);
                this.callback('itemFirstOutCallback', evt, state, this.prevFirst);
            }

            if (this.prevLast !== this.last) {
                this.callback('itemLastInCallback', evt, state, this.last);
                this.callback('itemLastOutCallback', evt, state, this.prevLast);
            }

            this.callback('itemVisibleInCallback', evt, state, this.first, this.last, this.prevFirst, this.prevLast);
            this.callback('itemVisibleOutCallback', evt, state, this.prevFirst, this.prevLast, this.first, this.last);
        },

        callback: function(cb, evt, state, i1, i2, i3, i4) {
            if (this.options[cb] == null || (typeof this.options[cb] != 'object' && evt != 'onAfterAnimation')) {
                return;
            }

            var callback = typeof this.options[cb] == 'object' ? this.options[cb][evt] : this.options[cb];

            if (!$.isFunction(callback)) {
                return;
            }

            var self = this;

            if (i1 === undefined) {
                callback(self, state, evt);
            } else if (i2 === undefined) {
                this.get(i1).each(function() { callback(self, this, i1, state, evt); });
            } else {
                var call = function(i) {
                    self.get(i).each(function() { callback(self, this, i, state, evt); });
                };
                for (var i = i1; i <= i2; i++) {
                    if (i !== null && !(i >= i3 && i <= i4)) {
                        call(i);
                    }
                }
            }
        },

        create: function(i) {
            return this.format('<li></li>', i);
        },

        format: function(e, i) {
            e = $(e);
            var split = e.get(0).className.split(' ');
            for (var j = 0; j < split.length; j++) {
                if (split[j].indexOf('jcarousel-') != -1) {
                    e.removeClass(split[j]);
                }
            }
            e.addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-' + i)).css({
                'float': (this.options.rtl ? 'right' : 'left'),
                'list-style': 'none'
            }).attr('jcarouselindex', i);
            return e;
        },

        className: function(c) {
            return c + ' ' + c + (!this.options.vertical ? '-horizontal' : '-vertical');
        },

        dimension: function(e, d) {
            var el = e.jquery !== undefined ? e[0] : e;

            var old = !this.options.vertical ?
                (el.offsetWidth || $jc.intval(this.options.itemFallbackDimension)) + $jc.margin(el, 'marginLeft') + $jc.margin(el, 'marginRight') :
                (el.offsetHeight || $jc.intval(this.options.itemFallbackDimension)) + $jc.margin(el, 'marginTop') + $jc.margin(el, 'marginBottom');

            if (d == null || old == d) {
                return old;
            }

            var w = !this.options.vertical ?
                d - $jc.margin(el, 'marginLeft') - $jc.margin(el, 'marginRight') :
                d - $jc.margin(el, 'marginTop') - $jc.margin(el, 'marginBottom');

            $(el).css(this.wh, w + 'px');

            return this.dimension(el);
        },

        clipping: function() {
            return !this.options.vertical ?
                this.clip[0].offsetWidth - $jc.intval(this.clip.css('borderLeftWidth')) - $jc.intval(this.clip.css('borderRightWidth')) :
                this.clip[0].offsetHeight - $jc.intval(this.clip.css('borderTopWidth')) - $jc.intval(this.clip.css('borderBottomWidth'));
        },

        index: function(i, s) {
            if (s == null) {
                s = this.options.size;
            }

            return Math.round((((i-1) / s) - Math.floor((i-1) / s)) * s) + 1;
        }
    });

    $jc.extend({
        /**
         * Gets/Sets the global default configuration properties.
         *
         * @method defaults
         * @return {Object}
         * @param d {Object} A set of key/value pairs to set as configuration properties.
         */
        defaults: function(d) {
            return $.extend(defaults, d || {});
        },

        margin: function(e, p) {
            if (!e) {
                return 0;
            }

            var el = e.jquery !== undefined ? e[0] : e;

            if (p == 'marginRight' && $.browser.safari) {
                var old = {'display': 'block', 'float': 'none', 'width': 'auto'}, oWidth, oWidth2;

                $.swap(el, old, function() { oWidth = el.offsetWidth; });

                old.marginRight = 0;
                $.swap(el, old, function() { oWidth2 = el.offsetWidth; });

                return oWidth2 - oWidth;
            }

            return $jc.intval($.css(el, p));
        },

        intval: function(v) {
            v = parseInt(v, 10);
            return isNaN(v) ? 0 : v;
        }
    });

    /**
     * Creates a carousel for all matched elements.
     *
     * @example $("#mycarousel").jcarousel();
     * @before <ul id="mycarousel" class="jcarousel-skin-name"><li>First item</li><li>Second item</li></ul>
     * @result
     *
     * <div class="jcarousel-skin-name">
     *   <div class="jcarousel-container">
     *     <div class="jcarousel-clip">
     *       <ul class="jcarousel-list">
     *         <li class="jcarousel-item-1">First item</li>
     *         <li class="jcarousel-item-2">Second item</li>
     *       </ul>
     *     </div>
     *     <div disabled="disabled" class="jcarousel-prev jcarousel-prev-disabled"></div>
     *     <div class="jcarousel-next"></div>
     *   </div>
     * </div>
     *
     * @method jcarousel
     * @return jQuery
     * @param o {Hash|String} A set of key/value pairs to set as configuration properties or a method name to call on a formerly created instance.
     */
    $.fn.jcarousel = function(o) {
        if (typeof o == 'string') {
            var instance = $(this).data('jcarousel'), args = Array.prototype.slice.call(arguments, 1);
            return instance[o].apply(instance, args);
        } else {
            return this.each(function() {
                $(this).data('jcarousel', new $jc(this, o));
            });
        }
    };

})(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}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ?1989, 1990, 2002 Adobe Systems Incorporated. All rights reserved. ?1981,
 * 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Trade Gothic is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * TradeGothicLTStd
 * 
 * Designer:
 * Jackson Burke
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Trade Gothic LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 2 5 2 2 2 4","ascent":"260","descent":"-100","x-height":"4","bbox":"-60 -346 360 80.6135","underline-thickness":"18","underline-position":"-18","stemh":"18","stemv":"26","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":109},"!":{"d":"41,-260r38,0r-8,178r-23,0xm42,-40r35,0r0,40r-35,0r0,-40","w":119},"\"":{"d":"27,-163r0,-97r23,0r0,97r-23,0xm70,-163r0,-97r23,0r0,97r-23,0","w":119},"#":{"d":"90,-158r-7,55r48,0r8,-55r-49,0xm80,-83r-11,83r-23,0r12,-83r-36,0r0,-20r38,0r8,-55r-36,0r0,-20r39,0r11,-82r22,0r-11,82r49,0r11,-82r22,0r-11,82r34,0r0,20r-37,0r-7,55r34,0r0,20r-37,0r-11,83r-23,0r12,-83r-49,0","w":219},"$":{"d":"99,-150r0,-88v-29,-1,-47,16,-47,40v0,32,24,43,47,48xm123,-116r0,94v26,-1,51,-18,51,-44v0,-32,-27,-42,-51,-50xm99,-260r0,-28r24,0r0,28v30,2,54,24,67,43r-19,15v-10,-17,-29,-32,-48,-36r0,94v50,16,77,35,77,76v0,40,-36,68,-77,68r0,45r-24,0r0,-45v-35,-1,-61,-26,-79,-47r21,-16v12,17,34,40,58,41r0,-101v-26,-6,-73,-23,-73,-71v0,-45,36,-66,73,-66","w":219},"%":{"d":"238,-22v21,0,38,-16,38,-38v0,-22,-17,-37,-38,-37v-21,0,-37,15,-37,37v0,22,16,38,37,38xm238,0v-33,0,-60,-26,-60,-60v0,-34,27,-60,60,-60v33,0,60,26,60,60v0,34,-27,60,-60,60xm82,-140v-33,0,-60,-26,-60,-60v0,-34,27,-60,60,-60v33,0,60,26,60,60v0,34,-27,60,-60,60xm82,-163v21,0,38,-15,38,-37v0,-22,-17,-38,-38,-38v-21,0,-38,16,-38,38v0,22,17,37,38,37xm75,4r149,-268r21,0r-149,268r-21,0","w":320},"&":{"d":"109,-241v-42,2,-27,57,-13,77v18,-12,39,-31,39,-51v0,-16,-13,-26,-26,-26xm191,-131r24,6v-5,27,-17,59,-30,77v11,12,34,22,43,22r0,26v-24,2,-40,-10,-60,-26v-39,51,-152,35,-152,-45v0,-35,29,-61,56,-78v-28,-39,-31,-115,38,-115v30,0,53,18,53,49v0,30,-30,54,-54,71v17,31,40,58,58,78v8,-11,19,-37,24,-65xm45,-69v1,59,78,58,105,27v-24,-27,-47,-58,-66,-88v-21,14,-39,29,-39,61","w":240},"\u2019":{"d":"69,-260r0,40r-23,51r-15,0r17,-51r-15,0r0,-40r36,0","w":100,"k":{"\u2019":27,"s":20,"\u0161":20}},"(":{"d":"73,-264r28,0v-69,84,-66,210,0,294r-27,0v-67,-83,-66,-210,-1,-294","w":119},")":{"d":"47,30r-28,0v69,-84,66,-210,0,-294r27,0v66,84,66,210,1,294","w":119},"*":{"d":"80,-196r-53,-8r6,-24r49,24r3,-2r-8,-54r24,0r-7,54v16,1,33,-17,50,-23r9,24r-53,11r-1,3r38,38r-20,15r-26,-48r-3,0r-26,48r-19,-14r38,-41"},"+":{"d":"97,-105r0,-82r22,0r0,82r83,0r0,23r-83,0r0,82r-22,0r0,-82r-83,0r0,-23r83,0","w":216},",":{"d":"72,-40v4,43,-11,66,-22,93r-15,0r16,-53r-14,0r0,-40r35,0","w":109},"-":{"d":"105,-82r-91,0r0,-23r91,0r0,23","w":119},".":{"d":"37,-40r35,0r0,40r-35,0r0,-40","w":109},"\/":{"d":"81,-264r22,0r-84,268r-22,0","w":100},"0":{"d":"18,-130v0,-94,35,-134,92,-134v57,0,92,40,92,134v0,94,-35,134,-92,134v-57,0,-92,-40,-92,-134xm45,-130v0,79,23,111,65,111v42,0,64,-32,64,-111v0,-79,-22,-111,-64,-111v-42,0,-65,32,-65,111","w":219},"1":{"d":"171,0r-115,0r0,-22r45,0r0,-212r-50,5r0,-17v29,-5,42,-21,76,-18r0,242r44,0r0,22","w":219},"2":{"d":"193,-22r0,22r-169,0r0,-27v45,-91,142,-97,142,-167v0,-30,-20,-47,-53,-47v-37,0,-57,30,-61,56r-26,-5v8,-36,30,-74,88,-74v42,0,79,25,79,70v0,79,-114,101,-142,172r142,0","w":219},"3":{"d":"12,-48r21,-14v20,27,44,43,71,43v38,0,62,-19,62,-50v0,-44,-40,-63,-99,-58r0,-23v53,3,89,-11,89,-48v0,-26,-22,-43,-47,-43v-32,0,-46,14,-63,36r-21,-15v18,-24,42,-44,84,-44v46,0,75,24,75,65v0,31,-21,50,-41,58v89,36,53,145,-39,145v-50,0,-80,-32,-92,-52","w":219},"4":{"d":"204,-61r-45,0r0,61r-26,0r0,-61r-119,0r0,-23r107,-176r38,0r0,176r45,0r0,23xm133,-233r-92,149r92,0r0,-149","w":219},"5":{"d":"180,-260r0,22r-111,0r-7,84v53,-47,137,-16,137,66v0,40,-24,92,-90,92v-44,0,-67,-25,-83,-50r23,-12v26,56,122,55,122,-30v0,-72,-93,-87,-113,-26r-22,-5r11,-141r133,0","w":219},"6":{"d":"184,-248r-11,22v-58,-38,-124,-2,-124,94v39,-50,149,-42,149,52v0,55,-41,84,-84,84v-54,0,-92,-32,-92,-121v0,-82,36,-147,106,-147v28,0,48,9,56,16xm171,-79v2,-87,-121,-72,-121,-7v0,37,25,67,62,67v37,0,59,-25,59,-60","w":219},"7":{"d":"158,-238r-131,0r0,-22r165,0r0,16r-110,244r-31,0","w":219},"8":{"d":"204,-68v0,40,-30,72,-94,72v-64,0,-95,-32,-95,-72v-1,-34,28,-55,57,-71v-29,-11,-46,-33,-46,-60v0,-42,36,-65,84,-65v48,0,84,23,84,65v1,28,-19,48,-46,61v31,11,56,35,56,70xm42,-68v0,23,21,49,68,49v47,0,67,-26,67,-49v0,-30,-31,-45,-72,-59v-32,14,-63,29,-63,59xm166,-200v0,-56,-113,-55,-113,0v0,28,36,44,57,50v29,-7,56,-25,56,-50","w":219},"9":{"d":"36,-12r11,-21v59,37,122,-2,124,-94v-39,50,-149,41,-149,-53v0,-55,40,-84,83,-84v54,0,93,32,93,121v0,82,-36,147,-106,147v-28,0,-48,-9,-56,-16xm49,-181v0,84,105,73,121,14v9,-90,-123,-98,-121,-14","w":219},":":{"d":"72,0r-35,0r0,-40r35,0r0,40xm72,-104r-35,0r0,-40r35,0r0,40","w":109},";":{"d":"72,-40v4,43,-11,66,-22,93r-15,0r16,-53r-14,0r0,-40r35,0xm72,-104r-35,0r0,-40r35,0r0,40","w":109},"<":{"d":"199,-22r0,22r-182,-84r0,-20r182,-83r0,22r-157,71","w":216},"=":{"d":"202,-141r0,22r-188,0r0,-22r188,0xm202,-68r0,22r-188,0r0,-22r188,0","w":216},">":{"d":"17,-22r157,-72r-157,-71r0,-22r182,83r0,21r-182,83r0,-22","w":216},"?":{"d":"79,-82r-24,0v-10,-68,52,-82,54,-128v0,-14,-9,-31,-31,-31v-17,0,-27,8,-37,28r-22,-11v20,-57,117,-53,117,15v0,55,-68,66,-57,127xm49,-40r35,0r0,40r-35,0r0,-40","w":159},"@":{"d":"97,-111v0,21,8,35,25,35v33,0,58,-42,58,-71v0,-23,-13,-33,-26,-33v-35,0,-57,40,-57,69xm164,-73v-27,40,-96,21,-96,-34v0,-68,83,-140,124,-71r7,-21r24,0r-33,116v0,5,2,9,8,9v27,0,51,-40,51,-75v0,-58,-46,-91,-100,-91v-63,0,-107,49,-107,111v0,105,138,146,196,71r28,0v-23,41,-69,62,-117,62v-74,0,-133,-59,-133,-133v0,-76,60,-135,133,-135v67,0,123,46,123,111v0,70,-51,103,-83,103v-14,0,-24,-11,-25,-23","w":288},"A":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0","w":219},"B":{"d":"163,-136v28,9,52,33,51,66v0,39,-23,70,-94,70r-81,0r0,-260r96,0v80,-3,99,102,28,124xm68,-124r0,100v54,1,117,4,117,-47v0,-50,-59,-57,-117,-53xm68,-235r0,87r50,0v78,5,81,-89,12,-87r-62,0","w":240},"C":{"d":"180,-83r26,5v-12,48,-39,82,-92,82v-58,0,-99,-43,-99,-134v0,-85,36,-134,99,-134v48,0,76,28,88,76r-26,8v-9,-37,-26,-59,-65,-59v-37,0,-67,34,-67,109v0,75,30,109,73,109v40,0,55,-30,63,-62","w":219},"D":{"d":"65,-235r0,211v85,7,130,-19,129,-106v-1,-93,-47,-111,-129,-105xm36,0r0,-260v113,-9,187,15,187,130v0,76,-41,130,-119,130r-68,0","w":240},"E":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260","w":219},"F":{"d":"36,-260r154,0r0,25r-125,0r0,87r93,0r0,24r-93,0r0,124r-29,0r0,-260","w":200,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":46,".":46}},"G":{"d":"124,-125r87,0r0,125r-23,0v-1,-7,2,-18,-1,-24v-13,18,-39,28,-68,28v-59,0,-102,-43,-102,-134v0,-153,159,-182,195,-57r-27,5v-13,-41,-35,-57,-65,-57v-38,0,-74,26,-74,109v0,83,36,109,74,109v51,0,67,-31,63,-79r-59,0r0,-25","w":240},"H":{"d":"192,-260r29,0r0,260r-29,0r0,-124r-124,0r0,124r-29,0r0,-260r29,0r0,112r124,0r0,-112","w":259},"I":{"d":"45,-260r29,0r0,260r-29,0r0,-260","w":119},"J":{"d":"95,-260r29,0r0,193v9,86,-93,86,-121,37r21,-14v16,28,71,39,71,-15r0,-201","w":159},"K":{"d":"71,-87r0,87r-29,0r0,-260r29,0r0,135r108,-135r34,0r-81,98r91,162r-33,0r-77,-138","w":240},"L":{"d":"191,0r-152,0r0,-260r29,0r0,236r123,0r0,24","w":200,"k":{"T":33,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":33,"\u00dd":33,"\u0178":33,"\u2019":40}},"M":{"d":"261,0r-26,0r-1,-238r-73,238r-22,0r-74,-238r0,238r-26,0r0,-260r45,0r66,210r66,-210r45,0r0,260","w":299},"N":{"d":"65,0r-26,0r0,-260r41,0r115,200r0,-200r26,0r0,260r-24,0r-132,-232r0,232","w":259},"O":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134","w":240},"P":{"d":"65,-235r0,95v54,3,121,0,112,-48v5,-51,-59,-49,-112,-47xm65,0r-29,0r0,-260r91,0v55,0,79,32,79,73v0,58,-65,78,-141,71r0,116","w":219,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":46,".":46}},"Q":{"d":"234,-7r0,28v-32,0,-44,-11,-58,-34v-78,46,-158,-4,-158,-117v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,43,-9,77,-26,99v9,17,21,24,39,24xm130,-57r0,-27v23,3,37,9,49,26v9,-17,14,-41,14,-72v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109v0,95,55,132,115,95v-9,-13,-17,-20,-32,-22","w":240},"R":{"d":"65,-235r0,92v53,1,112,5,112,-47v0,-54,-60,-44,-112,-45xm65,0r-29,0r0,-260r84,0v102,-11,111,118,34,136r56,124r-32,0r-52,-118r-61,0r0,118","w":240,"k":{"T":13,"V":6,"W":6,"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"187,-199r-26,5v-1,-49,-109,-66,-109,-5v0,57,146,42,146,126v0,38,-21,77,-87,77v-57,0,-79,-37,-93,-68r26,-9v10,27,30,52,68,52v38,0,58,-20,58,-47v0,-66,-147,-47,-147,-129v0,-37,32,-67,79,-67v40,0,71,22,85,65","w":219},"T":{"d":"192,-235r-78,0r0,235r-28,0r0,-235r-78,0r0,-25r184,0r0,25","w":200,"k":{"\u00fc":33,"\u0161":33,"\u00f2":33,"\u00f6":33,"\u00ec":33,"\u00ee":33,"\u00ed":33,"\u00e8":33,"\u00eb":33,"\u00ea":33,"\u00e3":33,"\u00e5":33,"\u00e0":33,"\u00e4":33,"\u00e2":33,"w":33,"y":33,"\u00fd":33,"\u00ff":33,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33,"-":33,"a":33,"\u00e6":33,"\u00e1":33,"c":33,"\u00e7":33,"e":33,"\u00e9":33,"i":33,"\u00ef":33,"o":33,"\u00f8":33,"\u0153":33,"\u00f3":33,"\u00f4":33,"\u00f5":33,"r":33,"s":33,"u":33,"\u00fa":33,"\u00fb":33,"\u00f9":33,":":33,";":33}},"U":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182","w":259},"V":{"d":"87,0r-81,-260r29,0r65,213r65,-213r29,0r-81,260r-26,0","w":200,"k":{"\u00f6":13,"\u00f4":13,"\u00ee":6,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"y":6,"\u00fd":6,"\u00ff":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":40,".":40,"-":20,"a":13,"\u00e6":13,"\u00e1":13,"e":13,"\u00e9":13,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":27,";":27}},"W":{"d":"73,0r-63,-260r27,0r49,207r51,-207r25,0r53,207r47,-207r28,0r-62,260r-25,0r-54,-210r-51,210r-25,0","w":299,"k":{"\u00fc":6,"\u00f6":13,"\u00ea":13,"\u00e4":13,"y":6,"\u00fd":6,"\u00ff":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":13,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00eb":13,"\u00e8":13,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":20,";":20}},"X":{"d":"99,-107r-61,107r-33,0r78,-136r-73,-124r33,0r56,95r55,-95r33,0r-71,124r79,136r-33,0","w":200},"Y":{"d":"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0","w":200,"k":{"\u00fc":13,"\u00f6":20,"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,":":33,";":33,"p":13,"q":20}},"Z":{"d":"184,-24r0,24r-168,0r0,-21r131,-214r-119,0r0,-25r155,0r0,19r-133,217r134,0","w":200},"[":{"d":"27,27r0,-287r74,0r0,15r-48,0r0,257r48,0r0,15r-74,0","w":119},"\\":{"d":"-3,-264r22,0r84,268r-22,0","w":100},"]":{"d":"93,-260r0,287r-74,0r0,-15r48,0r0,-257r-48,0r0,-15r74,0","w":119},"^":{"d":"40,-100r-23,0r81,-160r20,0r81,160r-23,0r-68,-135","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"\u2018":{"d":"31,-173r0,-39r23,-52r15,0r-17,52r15,0r0,39r-36,0","w":100,"k":{"\u2018":27}},"a":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2"},"b":{"d":"58,-169v51,-44,126,-25,126,75v0,105,-80,119,-131,74r-5,20r-18,0v5,-83,1,-174,2,-260r26,0r0,91xm58,-143r0,99v41,47,100,27,100,-48v0,-86,-60,-93,-100,-51","w":200},"c":{"d":"159,-140r-24,9v-7,-23,-22,-37,-44,-37v-32,0,-51,26,-51,74v0,81,73,101,103,41r20,9v-19,32,-35,48,-72,48v-47,0,-77,-38,-77,-98v0,-60,30,-97,77,-97v39,0,56,22,68,51"},"d":{"d":"17,-94v2,-101,74,-117,126,-75r0,-91r25,0r2,260r-24,0r-3,-18v-46,43,-128,26,-126,-76xm143,-44r0,-99v-41,-42,-101,-36,-101,51v0,76,60,95,101,48","w":200},"e":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57"},"f":{"d":"67,0r-26,0r0,-165r-31,0r0,-22r31,0v-5,-59,15,-89,69,-75r0,23v-22,-3,-46,-6,-43,24r0,28r41,0r0,22r-41,0r0,165","w":119},"g":{"d":"173,-194r0,26v-11,0,-23,2,-29,5v38,48,-18,129,-89,98v-19,3,-19,31,1,31v89,0,117,16,117,53v0,27,-27,50,-85,50v-82,0,-108,-57,-49,-83v-34,-11,-28,-48,2,-59v-51,-35,-21,-118,45,-118v20,0,34,4,46,13v11,-8,27,-15,41,-16xm149,20v0,-18,-19,-28,-65,-28v-41,0,-52,18,-52,31v0,14,8,24,60,24v31,0,57,-9,57,-27xm132,-124v0,-27,-15,-44,-47,-44v-30,0,-45,19,-45,43v0,25,19,43,48,43v30,0,44,-20,44,-42"},"h":{"d":"32,-260r26,0r1,98v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-260","w":200},"i":{"d":"37,0r0,-187r26,0r0,187r-26,0xm37,-264r26,0r0,31r-26,0r0,-31","w":100},"j":{"d":"42,-187r26,0r0,217v3,31,-32,47,-60,35r0,-21v14,6,34,4,34,-16r0,-215xm68,-264r0,31r-26,0r0,-31r26,0","w":100},"k":{"d":"30,0r0,-260r26,0r1,167r75,-94r32,0r-55,69r62,118r-31,0r-49,-96r-35,40r0,56r-26,0"},"l":{"d":"37,-260r26,0r0,260r-26,0r0,-260","w":100},"m":{"d":"55,-162v26,-36,87,-39,104,1v17,-18,38,-30,60,-30v25,0,51,11,51,57r0,134r-26,0r0,-134v-1,-57,-64,-31,-81,-6r0,140r-26,0r0,-134v-1,-57,-65,-30,-82,-6r0,140r-25,0r0,-187r25,0r0,25","w":299},"n":{"d":"32,-187r26,0v1,8,-2,19,1,25v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-187","w":200},"o":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97"},"p":{"d":"184,-94v0,100,-75,120,-126,76r0,87r-26,0r0,-256r26,0r0,22v45,-49,126,-31,126,71xm58,-143r0,98v39,43,100,37,100,-50v0,-75,-60,-95,-100,-48","w":200},"q":{"d":"143,-18v-52,43,-126,25,-126,-76v0,-103,80,-119,126,-73r5,-20r20,0r0,256r-25,0r0,-87xm143,-45r0,-98v-41,-47,-101,-27,-101,48v0,87,61,93,101,50","w":200},"r":{"d":"25,0r0,-187r26,0v1,12,-2,27,1,37v14,-26,30,-40,61,-40r0,26v-32,1,-50,21,-62,60r0,104r-26,0","w":119,"k":{",":20,".":20,"-":13}},"s":{"d":"9,-32r20,-16v14,35,94,40,94,-2v0,-48,-110,-22,-109,-90v1,-63,101,-64,126,-18r-18,16v-14,-18,-28,-26,-48,-26v-22,0,-34,10,-34,27v0,41,109,20,109,90v0,72,-110,67,-140,19","w":159},"t":{"d":"6,-187r31,0r0,-62r26,0r0,62r43,0r0,22r-43,0r0,133v-3,16,30,14,44,11r0,22v-24,5,-78,8,-70,-28r0,-138r-31,0r0,-22","w":119},"u":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187","w":200},"v":{"d":"154,-187r-56,187r-35,0r-57,-187r26,0r48,155r48,-155r26,0","w":159,"k":{",":20,".":20}},"w":{"d":"57,0r-51,-187r26,0r39,144r36,-144r27,0r38,145r36,-145r26,0r-50,187r-26,0r-38,-145r-37,145r-26,0","w":240,"k":{",":20,".":20}},"x":{"d":"38,-187r41,66r39,-66r29,0r-52,89r61,98r-30,0r-47,-77r-46,77r-29,0r59,-98r-54,-89r29,0","w":159},"y":{"d":"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143","w":159,"k":{",":27,".":27}},"z":{"d":"149,-22r0,22r-138,0r0,-19r102,-146r-92,0r0,-22r127,0r0,19r-102,146r103,0","w":159},"{":{"d":"17,-109r0,-15v62,-6,-29,-157,78,-140r0,16v-18,-1,-29,0,-29,20v0,43,15,107,-27,112v44,3,27,69,27,111v0,20,11,21,29,20r0,15v-34,3,-55,-5,-55,-39v0,-36,14,-98,-23,-100","w":119},"|":{"d":"29,4r0,-268r22,0r0,268r-22,0","w":79},"}":{"d":"103,-124r0,15v-62,5,30,157,-79,139r0,-15v18,1,30,1,30,-20v0,-43,-15,-107,27,-112v-44,-3,-27,-69,-27,-111v0,-20,-12,-21,-30,-20r0,-16v35,-3,56,6,56,40v0,36,-14,98,23,100","w":119},"~":{"d":"70,-117v24,-1,57,23,77,24v14,0,23,-13,31,-25r14,15v-12,16,-24,32,-46,32v-36,0,-90,-50,-108,2r-14,-16v9,-17,22,-32,46,-32","w":216},"\u00a1":{"d":"79,73r-38,0r8,-178r23,0xm78,-148r-36,0r0,-39r36,0r0,39","w":119},"\u00a2":{"d":"76,-33r49,-133v-43,-10,-67,18,-67,72v0,27,6,49,18,61xm141,-154r-48,132v31,8,52,1,68,-31r20,9v-20,39,-50,56,-96,44r-15,40r-20,0r17,-49v-22,-16,-35,-45,-35,-85v0,-69,39,-108,100,-94r12,-32r21,0r-15,41v13,9,21,23,27,39r-24,9v-3,-9,-7,-17,-12,-23","w":219},"\u00a3":{"d":"126,-140r0,22r-52,0v4,26,3,48,-8,73v43,32,108,40,118,-20r23,5v-6,82,-109,72,-154,36v-10,14,-22,25,-43,28r0,-28v29,-3,48,-52,38,-94r-39,0r0,-22r36,0v-16,-63,7,-124,75,-124v45,0,71,25,81,67r-25,5v-6,-20,-19,-49,-55,-49v-64,0,-54,55,-50,101r55,0","w":219},"\u2044":{"d":"-39,4r-21,0r158,-268r22,0","w":60},"\u00a5":{"d":"122,-84r0,84r-24,0r0,-84r-64,0r0,-23v20,-2,48,4,64,-2r-16,-29r-48,0r0,-23r37,0r-53,-99r26,0r66,125r66,-125r26,0r-53,99r37,0r0,23r-48,0v-5,11,-12,19,-16,31r64,0r0,23r-64,0","w":219},"\u0192":{"d":"19,67r4,-24v24,9,46,1,52,-32r28,-155r-41,0r0,-22r45,0v10,-62,30,-114,91,-95r-6,24v-38,-21,-49,24,-57,71r41,0r0,22r-45,0r-30,152v-7,45,-33,68,-82,59","w":219},"\u00a7":{"d":"35,-1r18,-12v9,25,62,37,62,1v0,-32,-94,-95,-94,-131v0,-22,14,-37,43,-38v-33,-27,-26,-81,25,-83v22,0,36,9,53,30r-17,10v-3,-17,-58,-32,-57,1v0,11,3,15,43,55v39,39,48,51,48,72v0,24,-18,35,-39,38v30,29,27,87,-30,88v-24,0,-45,-12,-55,-31xm135,-95v7,-9,-55,-76,-68,-69v-12,0,-22,9,-22,20v-3,13,55,73,69,69v11,0,21,-8,21,-20"},"\u00a4":{"d":"110,-62v37,0,67,-26,67,-68v0,-42,-30,-68,-67,-68v-37,0,-67,26,-67,68v0,42,30,68,67,68xm184,-220r15,15r-19,20v25,29,25,81,0,110r19,20r-15,15r-20,-20v-27,25,-82,25,-109,0r-20,20r-15,-15r20,-20v-25,-29,-25,-81,0,-110r-20,-20r15,-15r20,20v27,-25,82,-25,109,0","w":219},"'":{"d":"29,-163r0,-97r22,0r0,97r-22,0","w":79},"\u201c":{"d":"37,-173r0,-39r23,-52r15,0r-17,52r14,0r0,39r-35,0xm111,-173v-4,-42,11,-64,22,-91r15,0r-17,52r15,0r0,39r-35,0"},"\u00ab":{"d":"76,-150r25,0r-47,56r47,57r-25,0r-47,-57xm126,-150r25,0r-46,56r46,57r-24,0r-48,-57"},"\u2039":{"d":"66,-150r25,0r-46,56r46,57r-24,0r-48,-57","w":119},"\u203a":{"d":"28,-150r26,0r46,56r-47,57r-25,0r47,-57","w":119},"\ufb01":{"d":"63,0r-26,0r0,-165r-32,0r0,-22r32,0v-5,-59,14,-89,68,-75r0,23v-22,-4,-45,-5,-42,24r0,28r40,0r0,22r-40,0r0,165xm143,0r0,-187r26,0r0,187r-26,0xm143,-264r26,0r0,31r-26,0r0,-31","w":200},"\ufb02":{"d":"63,0r-26,0r0,-165r-32,0r0,-22r32,0v-5,-59,14,-89,68,-75r0,23v-22,-4,-45,-5,-42,24r0,28r40,0r0,22r-40,0r0,165xm143,-260r26,0r0,260r-26,0r0,-260","w":200},"\u2013":{"d":"0,-85r0,-18r180,0r0,18r-180,0"},"\u2020":{"d":"76,-264r28,0r-8,75r57,-8r0,29r-57,-10v13,65,3,138,0,208r-12,0v-3,-70,-13,-144,0,-208r-57,10r0,-29r57,8"},"\u2021":{"d":"96,-178v8,41,8,82,0,123r57,-10r0,28r-57,-8r8,75r-28,0r8,-75r-57,8r0,-28r57,10v-8,-41,-8,-82,0,-123r-57,10r0,-29r57,8r-8,-75r28,0r-8,75r57,-8r0,29"},"\u00b7":{"d":"32,-93v0,-13,10,-23,23,-23v12,0,22,10,22,23v0,12,-10,22,-22,22v-13,0,-23,-10,-23,-22","w":109},"\u00b6":{"d":"79,30r0,-149v-44,0,-75,-31,-75,-69v0,-47,31,-72,81,-72r99,0r0,18r-25,0r0,272r-22,0r0,-272r-37,0r0,272r-21,0"},"\u2022":{"d":"25,-130v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65"},"\u201a":{"d":"69,-40r0,40r-23,51r-15,0r17,-51r-15,0r0,-40r36,0","w":100},"\u201e":{"d":"143,-40r0,40r-23,51r-15,0r17,-51r-14,0r0,-40r35,0xm69,-40r0,40r-22,51r-15,0r17,-51r-15,0r0,-40r35,0"},"\u201d":{"d":"143,-260r0,40r-23,51r-15,0r17,-51r-14,0r0,-40r35,0xm69,-260r0,40r-22,51r-15,0r17,-51r-15,0r0,-40r35,0"},"\u00bb":{"d":"79,-150r25,0r47,56r-47,57r-25,0r47,-57xm29,-150r25,0r47,56r-48,57r-24,0r46,-57"},"\u2026":{"d":"42,-40r36,0r0,40r-36,0r0,-40xm162,-40r36,0r0,40r-36,0r0,-40xm282,-40r36,0r0,40r-36,0r0,-40","w":360},"\u2030":{"d":"248,-53v0,-30,25,-54,53,-54v28,0,54,24,54,54v0,30,-26,53,-54,53v-28,0,-53,-23,-53,-53xm269,-53v0,17,14,32,32,32v15,0,33,-13,33,-32v-1,-42,-64,-43,-65,0xm118,-53v0,-30,25,-54,53,-54v28,0,53,24,53,54v0,30,-25,53,-53,53v-28,0,-53,-23,-53,-53xm139,-53v0,17,14,32,32,32v15,0,32,-13,32,-32v-1,-42,-63,-43,-64,0xm5,-207v0,-30,26,-53,54,-53v28,0,53,23,53,53v0,30,-25,54,-53,54v-28,0,-54,-24,-54,-54xm26,-207v0,17,15,33,33,33v15,0,32,-14,32,-33v-1,-42,-63,-41,-65,0xm197,-264r-144,268r-21,0r143,-268r22,0","w":360},"\u00bf":{"d":"81,-105r24,0v10,68,-54,82,-54,128v0,38,56,42,68,3r22,11v-20,56,-117,52,-117,-15v0,-55,68,-66,57,-127xm111,-148r-35,0r0,-39r35,0r0,39","w":159},"`":{"d":"2,-260r39,0r32,51r-24,0","w":100},"\u00b4":{"d":"59,-260r39,0r-47,51r-24,0","w":100},"\u02c6":{"d":"-3,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0","w":100},"\u02dc":{"d":"27,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v-24,0,-63,-32,-71,3r-18,0v2,-22,15,-39,39,-39","w":100},"\u00af":{"d":"106,-220r-112,0r0,-22r112,0r0,22","w":100},"\u02d8":{"d":"88,-259r17,0v-4,33,-24,49,-55,49v-31,0,-51,-16,-55,-49r17,0v4,38,72,37,76,0","w":100},"\u02d9":{"d":"66,-212r-32,0r0,-34r32,0r0,34","w":100},"\u00a8":{"d":"94,-212r-31,0r0,-34r31,0r0,34xm37,-212r-31,0r0,-34r31,0r0,34","w":100},"\u02da":{"d":"14,-245v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm30,-245v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20","w":100},"\u00b8":{"d":"46,0r17,0v-4,7,-15,15,-16,22v22,-8,44,9,41,28v4,32,-55,37,-78,23r7,-16v12,9,43,11,43,-8v0,-15,-18,-16,-31,-11r-6,-7","w":100},"\u02dd":{"d":"32,-260r39,0r-45,51r-22,0xm86,-260r39,0r-47,51r-24,0","w":100},"\u02db":{"d":"95,44r5,11v-8,6,-29,21,-54,21v-23,0,-35,-13,-35,-32v0,-24,27,-42,81,-51r0,4v-19,6,-53,20,-53,44v1,29,42,15,56,3","w":100},"\u02c7":{"d":"-3,-260r29,0r24,34r24,-34r29,0r-36,51r-34,0","w":100},"\u2014":{"d":"0,-85r0,-18r360,0r0,18r-360,0","w":360},"\u00c6":{"d":"6,0r146,-260r183,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-81r-96,0r-44,81r-33,0xm97,-106r82,0r0,-134r-8,0","w":360},"\u00aa":{"d":"24,-231r-15,-9v12,-29,87,-38,88,10v1,26,-3,61,3,81r-19,0r-2,-13v-16,18,-74,25,-74,-16v0,-24,21,-38,73,-47v2,-16,-7,-22,-23,-22v-19,0,-28,8,-31,16xm78,-179r0,-29v-34,6,-54,16,-54,31v0,25,44,11,54,-2","w":108},"\u0141":{"d":"68,-121r0,97r123,0r0,24r-152,0r0,-110r-33,14r0,-25r33,-13r0,-126r29,0r0,114r69,-28r0,25","w":200,"k":{"T":33,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":33,"\u00dd":33,"\u0178":33,"\u2019":40}},"\u00d8":{"d":"62,-57r103,-165v-58,-42,-118,-5,-118,92v0,31,6,56,15,73xm178,-204r-103,165v55,44,118,6,118,-91v0,-32,-6,-56,-15,-74xm224,-277r-30,47v17,22,27,56,27,100v0,116,-84,165,-161,114r-24,39r-24,0r33,-54v-18,-23,-27,-56,-27,-99v0,-114,82,-164,161,-115r20,-32r25,0","w":240},"\u0152":{"d":"125,-264v67,0,142,3,214,4r0,25r-127,0r0,87r91,0r0,24r-91,0r0,100r135,0r0,24r-163,0r-59,4v-80,0,-112,-59,-112,-134v0,-75,32,-134,112,-134xm184,-68r0,-124v0,-35,-21,-47,-60,-47v-55,0,-82,38,-82,109v0,71,27,109,82,109v39,0,60,-12,60,-47","w":360},"\u00ba":{"d":"25,-206v0,27,10,42,29,42v19,0,29,-15,29,-41v0,-26,-10,-41,-29,-41v-18,0,-29,15,-29,40xm4,-205v0,-36,20,-59,50,-59v31,0,50,23,50,59v0,36,-19,58,-50,58v-30,0,-50,-22,-50,-58","w":108},"\u00e6":{"d":"121,-48r0,-53v-37,8,-83,20,-83,53v0,48,75,24,83,0xm262,-89r-115,0v-7,73,73,92,101,39r20,10v-15,42,-100,68,-133,12v-27,27,-48,32,-72,32v-24,0,-51,-18,-51,-48v0,-56,54,-70,109,-80v2,-28,-8,-45,-35,-44v-27,0,-42,16,-47,29r-22,-12v14,-40,94,-58,121,-15v42,-51,139,-22,124,77xm147,-111r89,0v0,-35,-17,-57,-45,-57v-30,0,-43,22,-44,57","w":280},"\u0131":{"d":"37,0r0,-187r26,0r0,187r-26,0","w":100},"\u0142":{"d":"63,-141r0,141r-26,0r0,-128r-32,17r0,-25r32,-16r0,-108r26,0r0,94r32,-16r0,25","w":100},"\u00f8":{"d":"131,-143r-68,115v41,25,80,-5,78,-66v0,-21,-4,-37,-10,-49xm151,-217r23,0r-29,51v42,52,24,170,-55,170v-16,0,-29,-5,-39,-12r-22,38r-23,0r30,-51v-43,-51,-26,-175,54,-170v15,0,29,4,39,11xm49,-45r68,-114v-41,-25,-80,4,-78,65v0,21,4,37,10,49"},"\u0153":{"d":"34,-94v0,48,17,75,47,75v32,0,47,-27,47,-75v0,-48,-14,-74,-47,-74v-30,0,-47,26,-47,74xm269,-89r-115,0v0,41,13,70,49,70v22,0,40,-12,48,-31r20,10v-8,45,-111,65,-130,9v-42,68,-133,31,-133,-63v0,-94,89,-129,133,-63v41,-68,142,-33,128,68xm155,-111r88,0v0,-35,-16,-57,-44,-57v-31,0,-43,22,-44,57","w":280},"\u00df":{"d":"83,-6r10,-21v27,20,63,-1,63,-42v0,-47,-25,-63,-65,-63r0,-23v30,3,49,-14,49,-44v0,-27,-13,-42,-40,-42v-28,0,-40,16,-40,48r0,193r-26,0r0,-199v0,-46,33,-65,67,-65v73,0,84,92,33,118v33,10,48,38,48,75v1,65,-53,91,-99,65","w":200},"\u00b9":{"d":"27,-253v20,-4,28,-13,52,-11r0,141r28,0r0,18r-76,0r0,-18r27,0r0,-123r-31,5r0,-12","w":131},"\u00ac":{"d":"179,-46r0,-73r-165,0r0,-22r188,0r0,95r-23,0","w":216},"\u00b5":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-21,24,-50,37,-83,23r0,71r-26,0r0,-256r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187","w":200},"\u2122":{"d":"135,-260r0,20r-46,0r0,128r-24,0r0,-128r-46,0r0,-20r116,0xm182,-235v-4,38,0,83,-1,123r-24,0r0,-148r38,0r44,112r44,-112r37,0r0,148r-24,0r-1,-123r-48,123r-16,0","w":356},"\u00d0":{"d":"65,-148r67,0r0,24r-67,0r0,100v85,7,130,-19,129,-106v-1,-93,-47,-111,-129,-105r0,87xm12,-148r24,0r0,-112v113,-9,187,15,187,130v0,76,-41,130,-119,130r-68,0r0,-124r-24,0r0,-24","w":240},"\u00bd":{"d":"32,-253v20,-4,28,-13,51,-11r0,141r29,0r0,18r-77,0r0,-18r27,0r0,-123r-30,5r0,-12xm310,0r-112,0r0,-19v29,-53,91,-58,91,-95v0,-44,-72,-24,-74,5r-17,-5v7,-23,25,-44,60,-44v30,0,51,15,51,41v0,50,-70,60,-92,99r93,0r0,18xm93,4r-21,0r158,-268r22,0","w":329},"\u00b1":{"d":"97,-123r0,-64r22,0r0,64r83,0r0,23r-83,0r0,64r-22,0r0,-64r-83,0r0,-23r83,0xm14,0r0,-22r188,0r0,22r-188,0","w":216},"\u00de":{"d":"65,-185r0,95v54,3,121,0,112,-48v5,-51,-59,-49,-112,-47xm65,0r-29,0r0,-260r29,0r0,50r62,0v55,0,79,32,79,73v0,58,-65,78,-141,71r0,66","w":219},"\u00bc":{"d":"312,-37r-29,0r0,37r-19,0r0,-37r-75,0r0,-16r67,-103r27,0r0,101r29,0r0,18xm264,-135v-20,25,-35,54,-53,80r53,0r0,-80xm32,-253v20,-4,28,-13,51,-11r0,141r29,0r0,18r-77,0r0,-18r27,0r0,-123r-30,5r0,-12xm100,4r-21,0r158,-268r22,0","w":329},"\u00f7":{"d":"202,-82r-188,0r0,-23r188,0r0,23xm86,-168v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm86,-19v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,23,-22,23v-12,0,-22,-11,-22,-23","w":216},"\u00a6":{"d":"29,4r0,-101r22,0r0,101r-22,0xm29,-163r0,-101r22,0r0,101r-22,0","w":79},"\u00b0":{"d":"20,-212v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52xm37,-212v0,21,16,36,35,36v19,0,35,-15,35,-36v0,-21,-16,-36,-35,-36v-19,0,-35,15,-35,36","w":144},"\u00fe":{"d":"184,-94v0,100,-75,120,-126,76r0,87r-26,0r0,-329r26,0r0,95v45,-49,126,-31,126,71xm58,-143r0,98v39,43,100,37,100,-50v0,-75,-60,-95,-100,-48","w":200},"\u00be":{"d":"312,-37r-29,0r0,37r-19,0r0,-37r-75,0r0,-16r67,-103r27,0r0,101r29,0r0,18xm264,-135v-20,25,-35,54,-53,80r53,0r0,-80xm53,-180r0,-18v29,1,58,-3,56,-27v-2,-28,-60,-27,-68,-2r-15,-10v15,-34,105,-39,103,12v0,19,-11,31,-24,35v51,21,33,87,-28,87v-32,0,-52,-18,-60,-30r15,-12v16,32,79,32,83,-3v3,-26,-26,-34,-62,-32xm106,4r-21,0r158,-268r22,0","w":329},"\u00b2":{"d":"122,-105r-112,0r0,-20v29,-53,92,-58,92,-95v0,-15,-12,-26,-33,-26v-25,0,-37,17,-42,32r-17,-6v7,-23,26,-44,61,-44v30,0,50,16,50,42v0,50,-69,60,-91,99r92,0r0,18","w":131},"\u00ae":{"d":"116,-120r0,67r-24,0r0,-154v51,0,114,-8,114,44v0,28,-17,39,-40,42r44,68r-26,0r-41,-67r-27,0xm116,-188r0,49v30,1,72,0,66,-26v6,-25,-38,-24,-66,-23xm9,-130v0,-77,62,-134,135,-134v73,0,135,57,135,134v0,77,-62,134,-135,134v-73,0,-135,-57,-135,-134xm253,-130v0,-64,-48,-112,-109,-112v-62,0,-109,48,-109,112v0,65,47,112,109,112v61,0,109,-47,109,-112","w":288},"\u2212":{"d":"202,-82r-188,0r0,-23r188,0r0,23","w":216},"\u00f0":{"d":"90,-19v34,0,51,-28,51,-70v0,-41,-17,-68,-51,-68v-34,0,-51,27,-51,68v0,42,17,70,51,70xm46,-251r23,-9v10,6,20,15,30,25r40,-22r11,18r-35,20v30,34,52,80,52,126v0,56,-26,97,-77,97v-51,0,-77,-38,-77,-93v0,-64,43,-104,104,-85v-5,-11,-13,-22,-23,-33r-39,21r-12,-18r37,-20v-13,-13,-27,-22,-34,-27"},"\u00d7":{"d":"108,-109r78,-78r16,16r-78,77r78,78r-16,16r-78,-78r-78,78r-16,-16r78,-78r-78,-77r16,-16","w":216},"\u00b3":{"d":"40,-180r0,-18v29,1,58,-3,56,-27v-2,-28,-60,-27,-68,-2r-15,-10v15,-34,105,-39,103,12v0,19,-10,31,-23,35v51,22,32,87,-29,87v-32,0,-52,-18,-60,-30r15,-12v16,32,79,32,83,-3v3,-26,-26,-34,-62,-32","w":131},"\u00a9":{"d":"190,-105r25,0v-17,96,-152,58,-145,-26v-11,-87,133,-114,145,-26r-25,0v-18,-59,-100,-32,-94,26v-9,59,84,86,94,26xm9,-130v0,-77,62,-134,135,-134v73,0,135,57,135,134v0,77,-62,134,-135,134v-73,0,-135,-57,-135,-134xm253,-130v0,-64,-48,-112,-109,-112v-62,0,-109,48,-109,112v0,65,47,112,109,112v61,0,109,-47,109,-112","w":288},"\u00c1":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm119,-325r39,0r-47,51r-24,0","w":219},"\u00c2":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm58,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":219},"\u00c4":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm154,-277r-31,0r0,-34r31,0r0,34xm98,-277r-32,0r0,-34r32,0r0,34","w":219},"\u00c0":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm62,-325r40,0r32,51r-25,0","w":219},"\u00c5":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm74,-310v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm90,-310v0,11,9,21,20,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20","w":219},"\u00c3":{"d":"108,-240r-37,134r78,0r-37,-134r-4,0xm39,0r-30,0r80,-260r42,0r80,260r-30,0r-24,-81r-94,0xm87,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39","w":219},"\u00c7":{"d":"180,-83r26,5v-11,45,-35,77,-82,81v-4,6,-14,13,-14,19v22,-8,44,9,41,28v5,33,-54,37,-77,23r6,-16v13,9,44,12,44,-8v0,-15,-19,-17,-31,-11r-7,-7r21,-28v-54,-4,-92,-46,-92,-133v0,-85,36,-134,99,-134v48,0,76,28,88,76r-26,8v-9,-37,-26,-59,-65,-59v-37,0,-67,34,-67,109v0,75,30,109,73,109v40,0,55,-30,63,-62","w":219},"\u00c9":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm129,-325r39,0r-47,51r-24,0","w":219},"\u00ca":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm68,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":219},"\u00cb":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm165,-277r-32,0r0,-34r32,0r0,34xm108,-277r-32,0r0,-34r32,0r0,34","w":219},"\u00c8":{"d":"39,-260r156,0r0,25r-127,0r0,87r90,0r0,24r-90,0r0,100r134,0r0,24r-163,0r0,-260xm72,-325r40,0r32,51r-24,0","w":219},"\u00cd":{"d":"45,-260r29,0r0,260r-29,0r0,-260xm69,-325r39,0r-47,51r-24,0","w":119},"\u00ce":{"d":"45,-260r29,0r0,260r-29,0r0,-260xm8,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":119},"\u00cf":{"d":"45,-260r29,0r0,260r-29,0r0,-260xm104,-277r-31,0r0,-34r31,0r0,34xm48,-277r-32,0r0,-34r32,0r0,34","w":119},"\u00cc":{"d":"45,-260r29,0r0,260r-29,0r0,-260xm12,-325r39,0r33,51r-25,0","w":119},"\u00d1":{"d":"65,0r-26,0r0,-260r41,0r115,200r0,-200r26,0r0,260r-24,0r-132,-232r0,232xm107,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v-24,0,-63,-32,-71,3r-18,0v2,-22,15,-39,39,-39","w":259},"\u00d3":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm129,-325r39,0r-47,51r-24,0","w":240},"\u00d4":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm68,-274r35,-51r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":240},"\u00d6":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm165,-277r-32,0r0,-34r32,0r0,34xm108,-277r-32,0r0,-34r32,0r0,34","w":240},"\u00d2":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm72,-325r40,0r32,51r-24,0","w":240},"\u00d5":{"d":"47,-130v0,74,27,109,73,109v46,0,73,-35,73,-109v0,-74,-27,-109,-73,-109v-46,0,-73,35,-73,109xm18,-130v0,-87,38,-134,102,-134v64,0,101,47,101,134v0,87,-37,134,-101,134v-64,0,-102,-47,-102,-134xm97,-316v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39","w":240},"\u0160":{"d":"187,-199r-26,5v-1,-49,-109,-66,-109,-5v0,57,146,42,146,126v0,38,-21,77,-87,77v-57,0,-79,-37,-93,-68r26,-9v10,27,30,52,68,52v38,0,58,-20,58,-47v0,-66,-147,-47,-147,-129v0,-37,32,-67,79,-67v40,0,71,22,85,65xm58,-325r28,0r24,34r24,-34r29,0r-36,51r-34,0","w":219},"\u00da":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm139,-325r39,0r-47,51r-24,0","w":259},"\u00db":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm77,-274r36,-51r34,0r36,51r-29,0r-24,-33r-24,33r-29,0","w":259},"\u00dc":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm174,-277r-31,0r0,-34r31,0r0,34xm117,-277r-31,0r0,-34r31,0r0,34","w":259},"\u00d9":{"d":"39,-260r29,0r0,184v0,30,21,55,62,55v41,0,62,-25,62,-55r0,-184r29,0r0,182v0,52,-37,82,-91,82v-54,0,-91,-30,-91,-82r0,-182xm82,-325r39,0r32,51r-24,0","w":259},"\u00dd":{"d":"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0xm109,-325r39,0r-47,51r-24,0","w":200,"k":{"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":33,";":33,"p":13,"q":20}},"\u0178":{"d":"86,0r0,-109r-80,-151r31,0r63,119r63,-119r31,0r-80,151r0,109r-28,0xm144,-277r-31,0r0,-34r31,0r0,34xm87,-277r-31,0r0,-34r31,0r0,34","w":200,"k":{"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":33,";":33,"p":13,"q":20}},"\u017d":{"d":"184,-24r0,24r-168,0r0,-21r131,-214r-119,0r0,-25r155,0r0,19r-133,217r134,0xm48,-325r28,0r24,34r24,-34r29,0r-36,51r-34,0","w":200},"\u00e1":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm97,-260r39,0r-47,51r-24,0"},"\u00e2":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm36,-209r35,-51r34,0r36,51r-29,0r-24,-34r-24,34r-28,0"},"\u00e4":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm132,-212r-31,0r0,-34r31,0r0,34xm76,-212r-32,0r0,-34r32,0r0,34"},"\u00e0":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm40,-260r40,0r32,51r-25,0"},"\u00e5":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm52,-245v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm68,-245v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20"},"\u00e3":{"d":"43,-139r-22,-12v18,-49,134,-62,135,16v1,42,-4,101,4,135r-27,0r-3,-26v-23,37,-115,47,-115,-22v0,-41,32,-61,115,-76v3,-31,-13,-45,-39,-44v-29,0,-43,16,-48,29xm130,-50r0,-51v-59,10,-89,27,-89,53v0,49,67,27,89,-2xm65,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39"},"\u00e7":{"d":"159,-140r-24,9v-7,-23,-22,-37,-44,-37v-32,0,-51,26,-51,74v0,81,73,101,103,41r20,9v-17,29,-32,44,-63,47v-4,6,-13,13,-13,19v22,-8,44,9,41,28v4,32,-55,37,-78,23r7,-16v12,9,43,11,43,-8v0,-15,-18,-16,-31,-11v-13,-11,9,-23,14,-35v-42,-4,-69,-40,-69,-97v0,-60,30,-97,77,-97v39,0,56,22,68,51"},"\u00e9":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm99,-260r39,0r-47,51r-24,0"},"\u00ea":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm37,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0"},"\u00eb":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm134,-212r-31,0r0,-34r31,0r0,34xm77,-212r-31,0r0,-34r31,0r0,34"},"\u00e8":{"d":"148,-50r20,10v-12,21,-30,44,-72,44v-42,0,-82,-30,-82,-98v0,-116,149,-138,148,-12r0,17r-122,0v-4,72,80,93,108,39xm41,-111r95,0v0,-35,-17,-57,-45,-57v-31,0,-48,22,-50,57xm42,-260r39,0r32,51r-24,0"},"\u00ed":{"d":"37,0r0,-187r26,0r0,187r-26,0xm59,-260r39,0r-47,51r-24,0","w":100},"\u00ee":{"d":"37,0r0,-187r26,0r0,187r-26,0xm-3,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0","w":100},"\u00ef":{"d":"37,0r0,-187r26,0r0,187r-26,0xm94,-212r-31,0r0,-34r31,0r0,34xm37,-212r-31,0r0,-34r31,0r0,34","w":100},"\u00ec":{"d":"37,0r0,-187r26,0r0,187r-26,0xm2,-260r39,0r32,51r-24,0","w":100},"\u00f1":{"d":"32,-187r26,0v1,8,-2,19,1,25v30,-41,109,-44,109,26r0,136r-26,0r0,-135v-1,-57,-66,-28,-84,-5r0,140r-26,0r0,-187xm77,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v0,0,-63,-32,-70,3r-18,0v2,-22,14,-39,38,-39","w":200},"\u00f3":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm99,-260r39,0r-47,51r-24,0"},"\u00f4":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm37,-209r36,-51r34,0r36,51r-29,0r-24,-34r-24,34r-29,0"},"\u00f6":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm134,-212r-31,0r0,-34r31,0r0,34xm77,-212r-31,0r0,-34r31,0r0,34"},"\u00f2":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm42,-260r39,0r32,51r-24,0"},"\u00f5":{"d":"141,-94v0,-48,-20,-74,-51,-74v-31,0,-51,26,-51,74v0,48,20,75,51,75v31,0,51,-27,51,-75xm167,-94v0,54,-26,98,-77,98v-51,0,-77,-44,-77,-98v0,-54,26,-97,77,-97v51,0,77,43,77,97xm67,-251v25,0,58,30,67,-3r18,0v-2,18,-16,39,-35,39v-24,0,-63,-32,-71,3r-18,0v2,-22,15,-39,39,-39"},"\u0161":{"d":"9,-32r20,-16v14,35,94,40,94,-2v0,-48,-110,-22,-109,-90v1,-63,101,-64,126,-18r-18,16v-14,-18,-28,-26,-48,-26v-22,0,-34,10,-34,27v0,41,109,20,109,90v0,72,-110,67,-140,19xm27,-260r29,0r24,34r24,-34r28,0r-36,51r-33,0","w":159},"\u00fa":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm109,-260r39,0r-47,51r-24,0","w":200},"\u00fb":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm48,-209r35,-51r34,0r36,51r-29,0r-24,-34r-24,34r-28,0","w":200},"\u00fc":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm144,-212r-31,0r0,-34r31,0r0,34xm87,-212r-31,0r0,-34r31,0r0,34","w":200},"\u00f9":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-30,41,-109,44,-109,-26r0,-136r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187xm52,-260r39,0r32,51r-24,0","w":200},"\u00fd":{"d":"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143xm89,-260r39,0r-47,51r-24,0","w":159,"k":{",":27,".":27}},"\u00ff":{"d":"127,-187r27,0r-66,204v-19,49,-42,56,-82,50r0,-21v31,2,49,4,63,-44r-65,-189r28,0r51,143xm124,-212r-31,0r0,-34r31,0r0,34xm67,-212r-31,0r0,-34r31,0r0,34","w":159,"k":{",":27,".":27}},"\u017e":{"d":"149,-22r0,22r-138,0r0,-19r102,-146r-92,0r0,-22r127,0r0,19r-102,146r103,0xm27,-260r29,0r24,34r24,-34r28,0r-36,51r-33,0","w":159},"\u2126":{"d":"21,-19v19,-2,45,4,60,-2v-29,-23,-55,-63,-55,-116v0,-73,52,-124,119,-124v70,0,116,58,116,123v0,57,-31,94,-56,119r61,0r0,19r-93,0r0,-14v32,-19,64,-60,64,-120v0,-49,-33,-108,-93,-108v-57,0,-94,49,-94,108v0,57,32,102,63,120r0,14r-92,0r0,-19","w":287},"\u03bc":{"d":"168,0r-26,0v-1,-8,2,-19,-1,-25v-21,24,-50,37,-83,23r0,71r-26,0r0,-256r26,0r0,135v1,56,66,29,84,5r0,-140r26,0r0,187","w":200},"\u03c0":{"d":"211,-171r-33,0v1,51,-4,135,6,171r-23,0v-12,-30,-5,-123,-7,-171r-76,0v-2,49,-16,138,-30,171r-24,0v15,-39,28,-120,30,-171v-26,0,-38,2,-46,5r-4,-15v45,-19,145,-7,210,-10","w":221},"\u20ac":{"d":"204,-226r-10,29v-7,-13,-27,-44,-65,-44v-46,0,-62,43,-63,78r116,0r-7,23r-109,0r0,31r98,0r-8,23r-90,0v1,39,29,67,64,67v36,0,52,-19,64,-34r0,30v-15,17,-35,27,-64,27v-54,0,-87,-40,-91,-90r-30,0r8,-23r22,0r0,-31r-30,0r8,-23r22,0v-3,-88,104,-144,165,-63","w":219},"\u2113":{"d":"166,-55r12,10v-17,31,-42,47,-72,47v-46,-1,-63,-34,-63,-74v-7,5,-15,12,-23,18r-8,-14v11,-9,21,-17,30,-26r0,-103v0,-68,31,-88,58,-88v32,0,48,28,48,60v0,48,-33,92,-82,138v-3,44,19,70,45,70v26,0,46,-20,55,-38xm66,-200r0,89v36,-37,64,-74,64,-113v0,-24,-8,-43,-30,-43v-15,0,-34,17,-34,67","w":187},"\u212e":{"d":"67,-52v36,64,148,61,190,4r21,0v-26,31,-69,51,-117,51v-82,0,-148,-60,-148,-133v0,-74,66,-134,148,-134v83,1,150,60,148,138r-242,1r0,73xm255,-209v-37,-62,-153,-62,-188,2v1,24,-3,54,2,74r184,0v6,-20,0,-52,2,-76","w":322},"\u2202":{"d":"40,-251r-9,-17v72,-49,161,-8,161,119v0,81,-34,151,-101,151v-51,0,-74,-44,-74,-85v0,-57,38,-93,82,-93v39,0,61,29,69,39v9,-103,-60,-164,-128,-114xm41,-84v0,37,21,67,53,67v39,0,64,-45,70,-95v-6,-17,-28,-45,-61,-45v-33,0,-62,32,-62,73","w":211},"\u220f":{"d":"263,-236r-45,0r0,272r-23,0r0,-272r-117,0r0,272r-24,0r0,-272r-44,0r0,-21r253,0r0,21","w":272},"\u2211":{"d":"208,36r-199,0r0,-16r108,-130r-103,-130r0,-17r188,0r0,20v-50,2,-108,-4,-154,2r97,122r-104,126r167,0r0,23","w":217},"\u2219":{"d":"32,-93v0,-13,10,-23,23,-23v12,0,22,10,22,23v0,12,-10,22,-22,22v-13,0,-23,-10,-23,-22","w":109},"\u221a":{"d":"221,-305r-87,361r-22,0r-64,-173r-29,11r-6,-15r50,-19r53,144v3,8,3,19,7,25r79,-334r19,0","w":221},"\u221e":{"d":"279,-107v0,36,-28,60,-58,60v-25,0,-44,-16,-71,-46v-21,23,-41,46,-73,46v-31,0,-57,-25,-57,-58v0,-34,26,-60,60,-60v29,0,51,23,72,47v21,-23,40,-47,72,-47v33,0,55,24,55,58xm37,-105v0,23,16,42,43,42v25,0,45,-25,61,-42v-18,-21,-36,-45,-64,-45v-25,0,-40,21,-40,45xm222,-150v-27,0,-48,29,-62,43v26,28,42,44,63,44v25,0,39,-21,39,-42v0,-28,-17,-45,-40,-45","w":299},"\u222b":{"d":"129,-308r-5,17v-37,-16,-48,21,-48,71v0,57,5,128,5,187v0,71,-23,101,-77,85r5,-17v37,13,50,-12,50,-69v0,-105,-45,-306,70,-274","w":133},"\u2248":{"d":"72,-160v49,0,89,61,120,1r10,9v-10,19,-25,36,-49,36v-26,0,-55,-29,-84,-30v-18,0,-29,14,-39,29r-11,-9v12,-22,31,-36,53,-36xm72,-96v36,1,50,29,82,30v17,0,26,-10,38,-29r10,10v-10,19,-25,35,-49,35v-26,0,-55,-29,-84,-30v-19,0,-29,14,-39,29r-11,-9v12,-22,31,-36,53,-36","w":222},"\u2260":{"d":"156,-189r-18,39r64,0r0,16r-71,0r-27,58r98,0r0,16r-106,0r-21,47r-13,-6r19,-41r-61,0r0,-16r68,0r27,-58r-95,0r0,-16r102,0r21,-45","w":222},"\u2264":{"d":"201,-33r-179,-87r0,-16r179,-86r0,19r-160,75r160,75r0,20xm201,-1r-181,0r0,-16r181,0r0,16","w":222},"\u2265":{"d":"23,-222r178,86r0,17r-178,86r0,-20r159,-75r-159,-75r0,-19xm201,-1r-180,0r0,-16r180,0r0,16","w":222},"\u25ca":{"d":"199,-129r-79,147r-20,0r-78,-147r79,-146r19,0xm177,-128r-67,-127v-19,44,-45,84,-66,126r67,127v19,-45,45,-84,66,-126","w":221},"\u00a0":{"w":109},"\u00ad":{"d":"105,-82r-91,0r0,-23r91,0r0,23","w":119},"\u02c9":{"d":"106,-220r-112,0r0,-22r112,0r0,22","w":100},"\u03a9":{"d":"21,-19v19,-2,45,4,60,-2v-29,-23,-55,-63,-55,-116v0,-73,52,-124,119,-124v70,0,116,58,116,123v0,57,-31,94,-56,119r61,0r0,19r-93,0r0,-14v32,-19,64,-60,64,-120v0,-49,-33,-108,-93,-108v-57,0,-94,49,-94,108v0,57,32,102,63,120r0,14r-92,0r0,-19","w":287},"\u2215":{"d":"-39,4r-21,0r158,-268r22,0","w":60},"\u2206":{"d":"12,0r0,-18r102,-247r28,0r100,247r0,18r-230,0xm37,-19r179,0r-88,-219r-2,0","w":254},"\u2010":{"d":"105,-82r-91,0r0,-23r91,0r0,23","w":119}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ?1989, 1990, 2002 Adobe Systems Incorporated. All rights reserved. ?1981,
 * 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Trade Gothic is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * TradeGothicLTStd-Bold
 * 
 * Designer:
 * Jackson Burke
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Trade Gothic LT Std","font-weight":700,"font-stretch":"semi-condensed","units-per-em":"360","panose-1":"2 11 8 4 5 5 2 2 2 4","ascent":"260","descent":"-100","x-height":"4","bbox":"-60 -350 360 81.9651","underline-thickness":"18","underline-position":"-18","stemh":"30","stemv":"45","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"!":{"d":"76,-260r-10,172r-32,0r-10,-172r52,0xm76,0r-52,0r0,-51r52,0r0,51","w":100},"\"":{"d":"72,-163r0,-97r39,0r0,97r-39,0xm9,-163r0,-97r39,0r0,97r-39,0","w":119},"#":{"d":"182,-108r0,34r-35,0r-11,74r-34,0r10,-74r-36,0r-10,74r-35,0r10,-74r-34,0r0,-34r39,0r6,-44r-34,0r0,-34r39,0r10,-74r35,0r-11,74r36,0r11,-74r34,0r-10,74r31,0r0,34r-35,0r-7,44r31,0xm123,-152r-36,0r-6,44r35,0","w":200},"$":{"d":"7,-46r31,-28v11,15,28,30,46,34r0,-74v-37,-11,-72,-35,-72,-76v0,-42,32,-68,72,-70r0,-23r28,0r0,23v30,5,51,20,68,38r-28,27v-10,-13,-23,-23,-40,-25r0,66v40,14,76,33,76,82v0,44,-34,71,-76,72r0,41r-28,0r0,-41v-25,0,-59,-22,-77,-46xm84,-162r0,-60v-17,0,-31,10,-31,28v0,16,15,27,31,32xm112,-106r0,66v19,0,32,-13,32,-31v0,-21,-15,-27,-32,-35","w":200},"%":{"d":"77,-260v36,0,65,30,65,65v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-35,29,-65,65,-65xm77,-225v-41,0,-35,59,0,59v16,0,30,-14,30,-29v0,-15,-14,-30,-30,-30xm243,-130v36,0,65,30,65,65v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-35,29,-65,65,-65xm243,-94v-16,0,-30,14,-30,29v0,15,14,30,30,30v16,0,30,-15,30,-30v0,-15,-14,-29,-30,-29xm71,4r149,-268r31,0r-149,268r-31,0","w":320},"&":{"d":"99,-233v-32,0,-26,49,-8,69v14,-12,31,-24,31,-45v0,-11,-8,-24,-23,-24xm183,-131r39,11v-8,22,-17,44,-30,65v10,7,23,14,36,15r0,44v-25,0,-42,-6,-66,-27v-42,48,-150,31,-150,-45v0,-36,18,-55,44,-72v-14,-21,-21,-37,-21,-59v0,-87,130,-82,128,-6v0,33,-26,53,-50,72v14,19,29,37,46,53v9,-17,19,-33,24,-51xm81,-107v-32,16,-18,70,18,70v13,0,26,-7,33,-15v-20,-17,-36,-36,-51,-55","w":240},"\u2019":{"d":"18,-156r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":79,"k":{"s":6,"\u0161":6}},"(":{"d":"109,30r-42,0v-63,-80,-64,-214,0,-294r42,0v-28,39,-51,84,-51,147v0,63,23,108,51,147","w":119},")":{"d":"53,30r-43,0v28,-39,52,-84,52,-147v0,-63,-24,-108,-52,-147r43,0v63,80,64,214,0,294","w":119},"*":{"d":"72,-260r36,0v-2,18,-10,37,-9,54r48,-24r9,32v-17,4,-39,1,-53,8r38,38r-27,20v-9,-15,-13,-36,-25,-48r-23,48r-27,-20v11,-14,31,-25,37,-40r-52,-6r9,-32r48,24v1,-17,-7,-36,-9,-54"},"+":{"d":"86,-120r0,-76r44,0r0,76r76,0r0,44r-76,0r0,76r-44,0r0,-76r-76,0r0,-44r76,0","w":216},",":{"d":"28,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":100},"-":{"d":"104,-78r-89,0r0,-40r89,0r0,40","w":119},".":{"d":"76,0r-52,0r0,-51r52,0r0,51","w":100},"\/":{"d":"121,-264r-98,268r-44,0r98,-268r44,0","w":100},"0":{"d":"13,-86r0,-88v0,-55,31,-90,87,-90v56,0,87,35,87,90r0,88v0,55,-31,90,-87,90v-56,0,-87,-35,-87,-90xm100,-222v-53,0,-40,80,-40,130v0,42,13,55,40,55v53,0,40,-80,40,-131v0,-42,-13,-54,-40,-54","w":200},"1":{"d":"85,0r0,-199r-40,0r0,-28v38,-8,45,-21,57,-37r28,0r0,264r-45,0","w":200},"2":{"d":"178,0r-164,0r0,-42v104,-99,121,-118,121,-145v0,-21,-12,-35,-35,-35v-27,1,-39,17,-37,43r-48,0v-4,-50,27,-85,81,-85v51,0,86,26,86,76v0,60,-70,107,-107,147r103,0r0,41","w":200},"3":{"d":"12,-76r48,0v0,27,11,39,38,39v24,0,38,-17,38,-39v0,-29,-16,-41,-52,-41r0,-41v58,9,61,-64,12,-64v-18,0,-30,12,-31,30r-47,0v0,-48,35,-72,79,-72v77,0,108,93,49,128v28,11,38,33,38,62v0,51,-38,78,-85,78v-58,0,-87,-31,-87,-80","w":200},"4":{"d":"40,-105r74,0r-1,-102xm0,-110r110,-150r49,0r0,155r37,0r0,37r-37,0r0,68r-45,0r0,-68r-114,0r0,-42","w":200},"5":{"d":"13,-75r47,0v-1,24,14,38,37,38v31,0,41,-21,41,-57v0,-55,-54,-63,-76,-30r-40,0r0,-136r150,0r0,41r-109,0r0,54v14,-10,29,-16,48,-16v55,0,74,35,74,88v0,60,-25,97,-87,97v-65,0,-85,-40,-85,-79","w":200},"6":{"d":"60,-106v-2,43,8,69,40,69v25,0,38,-18,38,-48v0,-52,-55,-50,-78,-21xm180,-192r-47,0v-1,-18,-15,-30,-33,-30v-36,0,-43,34,-40,78v16,-12,35,-20,56,-20v45,0,69,35,69,77v0,53,-26,91,-85,91v-56,0,-87,-35,-87,-90r0,-88v0,-55,31,-90,87,-90v45,0,76,25,80,72","w":200},"7":{"d":"11,-219r0,-41r164,0r0,24r-70,236r-52,0r72,-219r-114,0","w":200},"8":{"d":"140,-75v0,-24,-16,-40,-40,-40v-24,0,-40,16,-40,40v0,22,11,38,40,38v29,0,40,-16,40,-38xm133,-189v0,-18,-14,-33,-33,-33v-19,0,-33,15,-33,33v0,18,15,33,33,33v18,0,33,-15,33,-33xm187,-74v0,51,-38,78,-87,78v-49,0,-87,-27,-87,-78v0,-29,10,-51,38,-62v-21,-10,-32,-34,-32,-57v0,-48,36,-71,81,-71v45,0,81,23,81,71v0,23,-11,47,-32,57v28,11,38,33,38,62","w":200},"9":{"d":"140,-154v2,-42,-8,-68,-40,-68v-25,0,-37,17,-37,47v-1,53,54,51,77,21xm20,-68r47,0v1,18,15,31,33,31v35,0,43,-35,40,-79v-16,12,-35,20,-56,20v-45,0,-69,-35,-69,-77v0,-53,26,-91,85,-91v56,0,87,35,87,90r0,88v0,55,-31,90,-87,90v-45,0,-76,-25,-80,-72","w":200},":":{"d":"76,0r-52,0r0,-51r52,0r0,51xm76,-108r-52,0r0,-51r52,0r0,51","w":100},";":{"d":"28,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm76,-108r-52,0r0,-51r52,0r0,51","w":100},"<":{"d":"206,-39r0,42r-196,-84r0,-34r196,-84r0,42r-140,59","w":216},"=":{"d":"206,-164r0,44r-196,0r0,-44r196,0xm206,-76r0,44r-196,0r0,-44r196,0","w":216},">":{"d":"10,3r0,-42r140,-59r-140,-59r0,-42r196,84r0,34","w":216},"?":{"d":"143,-202v0,40,-62,67,-52,116r-39,0r0,-36v0,-17,46,-63,46,-84v0,-12,-11,-21,-23,-21v-15,0,-29,16,-30,32r-41,-12v10,-74,139,-78,139,5xm97,0r-51,0r0,-51r51,0r0,51","w":159},"@":{"d":"148,-163v-39,-3,-57,70,-11,72v40,3,57,-70,11,-72xm186,-177r5,-18r32,0r-20,102v0,4,1,7,5,7v17,0,36,-20,36,-59v0,-58,-40,-88,-95,-88v-60,0,-99,44,-99,103v0,94,113,132,176,78r33,0v-64,104,-246,50,-246,-78v0,-76,62,-134,137,-134v63,0,125,43,125,109v0,79,-69,104,-91,104v-11,1,-18,-9,-21,-19v-31,41,-93,8,-93,-44v0,-61,76,-117,116,-63","w":288},"A":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0","w":200},"B":{"d":"22,0r0,-260v74,-3,154,-4,154,67v0,23,-11,41,-32,54v69,34,39,151,-49,139r-73,0xm72,-116r0,75v35,3,60,-7,60,-38v0,-31,-26,-39,-60,-37xm72,-219r0,62v30,3,54,-7,54,-31v0,-27,-24,-34,-54,-31","w":200},"C":{"d":"68,-183r0,106v0,29,12,37,32,37v26,0,35,-22,32,-54r50,0v3,68,-31,98,-82,98v-48,0,-82,-24,-82,-88r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r-50,0v2,-30,-10,-44,-32,-44v-20,0,-32,8,-32,37","w":200},"D":{"d":"22,0r0,-260v88,-2,161,-5,160,90r0,80v1,95,-71,93,-160,90xm72,-216r0,172v39,2,60,-5,60,-52v0,-59,15,-135,-60,-120","w":200},"E":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44"},"F":{"d":"72,0r-50,0r0,-260r130,0r0,44r-80,0r0,60r63,0r0,44r-63,0r0,112","w":159,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":40,".":40}},"G":{"d":"154,0r-7,-22v-42,51,-129,25,-129,-62r0,-92v0,-64,34,-88,82,-88v51,0,78,30,80,89r-50,0v6,-59,-62,-62,-62,-8r0,106v0,29,12,37,32,37v25,1,32,-23,30,-52r-35,0r0,-41r85,0r0,133r-26,0","w":200},"H":{"d":"75,0r-50,0r0,-260r50,0r0,104r70,0r0,-104r50,0r0,260r-50,0r0,-112r-70,0r0,112","w":219},"I":{"d":"75,0r-50,0r0,-260r50,0r0,260","w":100},"J":{"d":"45,-260r50,0r0,205v2,43,-40,66,-91,58r0,-44v24,3,41,1,41,-24r0,-195","w":119},"K":{"d":"72,0r-50,0r0,-260r50,0r1,107r64,-107r55,0r-67,105r74,155r-56,0r-52,-109r-19,29r0,80","w":200},"L":{"d":"152,0r-130,0r0,-260r50,0r0,216r80,0r0,44","w":159,"k":{"T":20,"V":20,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"M":{"d":"68,0r-43,0r0,-260r70,0r45,171r45,-171r70,0r0,260r-43,0r0,-204r-53,204r-38,0r-53,-204r0,204","w":280},"N":{"d":"71,0r-46,0r0,-260r55,0r69,154r0,-154r46,0r0,260r-48,0r-76,-168r0,168","w":219},"O":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37","w":200},"P":{"d":"75,0r-50,0r0,-260r72,0v61,0,91,29,91,78v0,56,-43,83,-113,78r0,104xm75,-219r0,74v36,2,63,-2,63,-37v0,-35,-27,-40,-63,-37","w":200,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":46,".":46}},"Q":{"d":"198,-24r0,43v-24,0,-41,-11,-53,-25v-60,25,-127,5,-127,-78r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88v0,49,7,110,-10,143v7,5,15,9,26,9xm97,-65r0,-43v16,2,27,12,35,24v-5,-47,19,-138,-32,-136v-20,0,-32,8,-32,37r0,106v-2,38,26,42,51,33v-7,-10,-14,-18,-22,-21","w":200},"R":{"d":"192,0r-53,0r-43,-106r-24,0r0,106r-50,0r0,-260r72,0v96,-12,118,114,49,144xm72,-219r0,72v34,2,61,0,61,-36v0,-36,-26,-38,-61,-36","w":200,"k":{"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"177,-201r-45,13v-8,-24,-19,-34,-36,-34v-18,0,-28,10,-28,28v0,39,111,42,111,123v0,45,-31,75,-83,75v-40,0,-71,-22,-84,-73r48,-11v6,31,24,43,39,43v17,0,31,-12,31,-31v0,-49,-111,-50,-111,-123v0,-45,27,-73,78,-73v44,0,71,26,80,63","w":200},"T":{"d":"7,-260r166,0r0,44r-58,0r0,216r-50,0r0,-216r-58,0r0,-44","k":{"\u00fc":20,"\u0161":20,"\u00f2":20,"\u00f6":20,"\u00ec":20,"\u00ee":20,"\u00ed":20,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"w":20,"y":20,"\u00fd":20,"\u00ff":20,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":27,".":27,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"c":20,"\u00e7":20,"e":20,"\u00e9":20,"i":20,"\u00ef":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f5":20,"r":20,"s":20,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,":":27,";":27}},"U":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182","w":219},"V":{"d":"72,0r-67,-260r49,0r47,186r45,-186r49,0r-66,260r-57,0","w":200,"k":{"\u00f6":13,"\u00f4":13,"\u00ee":6,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":27,".":27,"-":13,"a":13,"\u00e6":13,"\u00e1":13,"e":13,"\u00e9":13,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":13,";":13}},"W":{"d":"63,0r-55,-260r46,0r36,170r36,-170r48,0r36,170r35,-170r46,0r-57,260r-48,0r-37,-178r-39,178r-47,0","w":299,"k":{"\u00f6":6,"\u00ea":6,"\u00e4":6,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":20,".":20,"-":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,":":6,";":6}},"X":{"d":"63,-260r37,78r38,-78r53,0r-63,123r69,137r-54,0r-43,-92r-43,92r-54,0r70,-137r-64,-123r54,0","w":200},"Y":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0","w":200,"k":{"\u00fc":13,"\u00f6":20,"v":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,":":20,";":20,"p":13,"q":20}},"Z":{"d":"22,-216r0,-44r144,0r0,42r-98,174r100,0r0,44r-156,0r0,-42r98,-174r-88,0"},"[":{"d":"102,27r-84,0r0,-287r84,0r0,22r-44,0r0,243r44,0r0,22","w":119},"\\":{"d":"77,4r-98,-268r44,0r98,268r-44,0","w":100},"]":{"d":"18,-260r84,0r0,287r-84,0r0,-22r44,0r0,-243r-44,0r0,-22","w":119},"^":{"d":"61,-115r-42,0r70,-145r38,0r70,145r-43,0r-46,-102","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"\u2018":{"d":"62,-264r-18,54r22,0r0,51r-52,0r0,-51r23,-54r25,0","w":79},"a":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3"},"b":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm63,0r-41,0r0,-260r45,0r0,82v50,-43,95,-20,95,56v0,59,1,126,-50,126v-21,0,-39,-17,-49,-28r0,24"},"c":{"d":"162,-128r-45,0v2,-21,-7,-32,-27,-32v-44,-1,-27,63,-27,101v0,15,11,23,27,23v21,0,30,-13,27,-35r45,0v0,52,-27,75,-72,75v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v44,0,71,21,72,71"},"d":{"d":"113,-44r0,-108v-24,-22,-49,-25,-50,33v-1,32,0,99,23,89v10,0,18,-4,27,-14xm158,0r-41,0v-1,-7,2,-18,-1,-24v-8,12,-28,28,-48,28v-51,0,-50,-67,-50,-126v0,-76,45,-99,95,-56r0,-82r45,0r0,260"},"e":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39"},"f":{"d":"97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74","w":100,"k":{"\u2019":-13}},"g":{"d":"105,-125v0,-25,-8,-38,-24,-38v-17,0,-23,12,-23,43v0,24,7,36,21,36v19,0,26,-7,26,-41xm172,-199r0,39v-11,-4,-19,-3,-29,2v17,62,-9,126,-79,109v-3,4,-8,6,-8,11v0,24,114,-13,114,58v0,33,-34,49,-87,49v-74,0,-96,-43,-48,-66v-30,-14,-16,-52,9,-61v-47,-30,-45,-141,37,-141v19,0,39,8,51,22v12,-14,23,-22,40,-22xm127,23v-4,-17,-48,-10,-67,-14v-5,5,-9,8,-9,15v0,10,15,15,42,15v22,0,34,-6,34,-16"},"h":{"d":"67,0r-45,0r0,-260r45,0r0,86v27,-33,91,-40,91,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148"},"i":{"d":"27,-196r46,0r0,196r-46,0r0,-196xm73,-230r-46,0r0,-41r46,0r0,41","w":100},"j":{"d":"27,-196r46,0r0,212v-1,43,-33,57,-72,52r0,-40v19,0,26,-6,26,-18r0,-206xm73,-230r-46,0r0,-41r46,0r0,41","w":100},"k":{"d":"69,0r-45,0r0,-260r45,0r1,140r48,-76r51,0r-45,66r49,130r-48,0r-33,-92r-23,32r0,60"},"l":{"d":"27,0r0,-260r46,0r0,260r-46,0","w":100},"m":{"d":"22,0r0,-196r44,0r0,22v23,-27,71,-39,83,4v24,-37,89,-45,89,22r0,148r-45,0r0,-149v-1,-32,-31,-11,-40,1r0,148r-46,0r0,-149v-1,-32,-33,-11,-40,1r0,148r-45,0","w":259},"n":{"d":"67,0r-45,0r0,-196r44,0r0,22v30,-33,92,-41,92,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148"},"o":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23"},"p":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm22,-196r41,0v1,7,-2,18,1,24v8,-12,28,-27,48,-27v51,0,50,66,50,125v0,76,-46,100,-95,56r0,87r-45,0r0,-265"},"q":{"d":"113,-44r0,-108v-24,-22,-49,-25,-50,33v-1,32,0,99,23,89v10,0,18,-4,27,-14xm117,-196r41,0r0,265r-45,0r0,-87v-50,45,-95,20,-95,-56v0,-59,-1,-125,50,-125v21,0,39,16,49,27r0,-24"},"r":{"d":"67,0r-45,0r0,-196r44,0v1,8,-2,20,1,26v10,-19,23,-29,46,-29r0,49v-18,-10,-46,-6,-46,16r0,134","w":119,"k":{"\u2019":-6,",":20,".":20,"-":13}},"s":{"d":"145,-150r-37,14v-6,-29,-50,-39,-50,-9v0,30,89,31,89,89v0,39,-27,60,-65,60v-27,0,-52,-7,-74,-56r41,-11v4,18,15,30,33,30v14,0,22,-6,22,-17v0,-37,-89,-29,-89,-95v0,-37,30,-54,62,-54v34,0,57,19,68,49","w":159},"t":{"d":"20,-150r-18,0r0,-37r18,0r0,-53r46,0r0,53r29,0r0,37r-29,0r0,100v-1,13,14,15,29,14r0,38v-36,6,-75,1,-75,-37r0,-115","w":100},"u":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148"},"v":{"d":"50,-196r30,126r30,-126r46,0r-54,196r-44,0r-54,-196r46,0","w":159,"k":{",":13,".":13}},"w":{"d":"51,0r-46,-196r42,0r27,123r26,-123r39,0r29,123r25,-123r42,0r-46,196r-42,0r-29,-122r-24,122r-43,0","w":240,"k":{",":13,".":13}},"x":{"d":"56,-101r-50,-95r48,0r26,56r26,-56r48,0r-49,96r53,100r-49,0r-29,-63r-30,63r-48,0","w":159},"y":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69","w":159,"k":{",":13,".":13}},"z":{"d":"18,-156r0,-40r131,0r0,39r-83,117r83,0r0,40r-138,0r0,-39r82,-117r-75,0","w":159},"{":{"d":"94,-264r0,22v-67,-12,7,116,-59,125v41,2,29,63,29,104v0,21,11,23,30,22r0,21v-39,2,-66,-1,-70,-43v-3,-34,15,-96,-25,-93r0,-22v40,4,22,-59,25,-93v4,-41,31,-45,70,-43","w":119},"|":{"d":"18,4r0,-268r44,0r0,268r-44,0","w":79},"}":{"d":"26,30r0,-21v67,11,-6,-115,59,-126v-42,-2,-29,-62,-29,-103v0,-21,-11,-23,-30,-22r0,-22v39,-2,66,1,70,43v3,34,-14,97,25,94r0,22v-39,-4,-22,59,-25,92v-4,41,-31,45,-70,43","w":119},"~":{"d":"149,-64v-38,0,-97,-55,-116,1r-14,-35v9,-17,22,-33,48,-33v27,0,63,26,85,26v14,0,23,-14,32,-28r13,35v-11,16,-24,34,-48,34","w":216},"\u00a1":{"d":"76,64r-52,0r10,-172r32,0xm24,-196r52,0r0,51r-52,0r0,-51","w":100},"\u00a2":{"d":"69,-49r27,-111v-48,-2,-23,62,-29,101v0,4,0,7,2,10xm172,-128r-45,0v0,-10,1,-18,-5,-23r-30,115v27,1,38,-9,35,-35r46,0v1,56,-34,79,-89,74r-13,47r-32,0r15,-55v-35,-14,-32,-69,-32,-120v0,-57,32,-77,86,-74r12,-44r32,0r-14,51v22,9,34,31,34,64","w":200},"\u00a3":{"d":"40,-114r-34,0r0,-32r30,0v-20,-61,10,-118,68,-118v58,0,84,30,84,78r-46,0v-2,-22,-10,-38,-34,-38v-38,-1,-32,48,-25,78r48,0r0,32r-44,0v0,9,-2,45,-9,61v25,20,75,29,71,-25r43,0v0,42,-11,82,-65,82v-24,0,-36,-4,-68,-24v-19,17,-30,24,-51,24r0,-44v26,0,37,-39,32,-74","w":200},"\u2044":{"d":"-60,4r146,-268r34,0r-146,268r-34,0","w":60},"\u00a5":{"d":"180,-163r0,32r-46,0r-11,26r57,0r0,32r-59,0r0,73r-42,0r0,-73r-58,0r0,-32r56,0r-11,-26r-45,0r0,-32r30,0r-45,-97r44,0r51,116r49,-116r44,0r-45,97r31,0","w":200},"\u0192":{"d":"9,65r6,-37v22,8,37,7,42,-26r26,-134r-35,0r0,-31r42,0v16,-85,35,-113,97,-96r-6,36v-33,-11,-37,3,-47,60r36,0r0,31r-42,0r-23,119v-6,49,-35,97,-96,78","w":200},"\u00a7":{"d":"145,-235r-25,20v-8,-16,-46,-29,-46,-3v0,28,87,70,87,119v0,24,-17,37,-39,41v35,29,17,88,-33,88v-31,0,-43,-13,-58,-30r24,-19v5,17,51,31,51,2v0,-30,-87,-80,-87,-118v0,-32,15,-42,37,-46v-30,-29,-18,-84,31,-83v25,0,42,9,58,29xm53,-144v-5,9,55,68,60,62v9,0,14,-7,14,-16v5,-6,-53,-66,-60,-60v-7,0,-14,6,-14,14"},"\u00a4":{"d":"193,-58r-21,21r-20,-21v-23,23,-81,24,-104,0r-20,21r-21,-21r20,-20v-21,-25,-21,-79,0,-104r-20,-20r21,-21r20,21v23,-23,81,-24,104,0r20,-21r21,21r-20,20v21,25,21,79,0,104xm149,-130v0,-30,-18,-53,-49,-53v-31,0,-49,23,-49,53v0,30,18,53,49,53v31,0,49,-23,49,-53","w":200},"'":{"d":"20,-163r0,-97r40,0r0,97r-40,0","w":79},"\u201c":{"d":"62,-264r-18,54r22,0r0,51r-52,0r0,-51r23,-54r25,0xm142,-264r-18,54r21,0r0,51r-51,0r0,-51r23,-54r25,0","w":159},"\u00ab":{"d":"139,-40r-44,-58r44,-58r40,0r-44,58r44,58r-40,0xm66,-40r-44,-58r44,-58r39,0r-44,58r44,58r-39,0","w":200},"\u2039":{"d":"14,-98r44,-58r39,0r-44,58r44,58r-39,0","w":119},"\u203a":{"d":"106,-98r-44,58r-39,0r44,-58r-44,-58r39,0","w":119},"\ufb01":{"d":"116,-187r45,0r0,187r-45,0r0,-187xm161,-221r-45,0r0,-41r45,0r0,41xm97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74"},"\ufb02":{"d":"116,0r0,-260r45,0r0,260r-45,0xm97,-261r0,37v-26,-4,-31,11,-28,37r27,0r0,37r-27,0r0,150r-46,0r0,-150r-20,0r0,-37r20,0v-5,-60,22,-88,74,-74"},"\u2013":{"d":"180,-83r-180,0r0,-30r180,0r0,30"},"\u2020":{"d":"24,-168r0,-35r58,10r-9,-71r34,0r-9,71r58,-10r0,35r-57,-10r9,61v-5,41,-8,97,-11,144r-14,0v-3,-47,-6,-103,-11,-144r9,-61"},"\u2021":{"d":"72,-118r9,-64r-57,10r0,-35r58,10r-9,-67r34,0r-9,67r58,-10r0,35r-57,-10r9,64r-9,63r57,-9r0,34r-58,-10r9,67r-34,0r9,-67r-58,10r0,-34r57,9"},"\u00b7":{"d":"50,-125v16,0,27,13,27,27v0,14,-11,27,-27,27v-16,0,-27,-13,-27,-27v0,-14,11,-27,27,-27","w":100},"\u00b6":{"d":"68,30r0,-163v-40,0,-64,-23,-64,-62v0,-43,22,-65,77,-65r116,0r0,30r-25,0r0,260r-40,0r0,-260r-24,0r0,260r-40,0","w":200},"\u2022":{"d":"25,-130v0,-36,29,-65,65,-65v36,0,65,29,65,65v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65"},"\u201a":{"d":"18,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0","w":79},"\u201e":{"d":"18,53r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm98,53r18,-53r-22,0r0,-51r51,0r0,51r-22,53r-25,0","w":159},"\u201d":{"d":"18,-156r18,-53r-22,0r0,-51r52,0r0,51r-23,53r-25,0xm98,-156r18,-53r-22,0r0,-51r51,0r0,51r-22,53r-25,0","w":159},"\u00bb":{"d":"105,-98r-44,58r-39,0r44,-58r-44,-58r39,0xm179,-98r-44,58r-40,0r44,-58r-44,-58r40,0","w":200},"\u2026":{"d":"86,0r-51,0r0,-51r51,0r0,51xm325,0r-51,0r0,-51r51,0r0,51xm206,0r-52,0r0,-51r52,0r0,51","w":360},"\u2030":{"d":"58,-260v30,0,54,24,54,53v0,29,-24,54,-54,54v-30,0,-53,-25,-53,-54v0,-29,23,-53,53,-53xm58,-230v-14,0,-23,10,-23,23v0,13,9,24,23,24v14,0,24,-11,24,-24v0,-13,-10,-23,-24,-23xm172,-77v-14,0,-24,11,-24,24v0,13,10,23,24,23v14,0,23,-10,23,-23v0,-13,-9,-24,-23,-24xm172,-107v30,0,53,25,53,54v0,29,-23,53,-53,53v-30,0,-54,-24,-54,-53v0,-29,24,-54,54,-54xm302,-77v-14,0,-24,11,-24,24v0,13,10,23,24,23v14,0,23,-10,23,-23v0,-13,-9,-24,-23,-24xm302,-107v30,0,53,25,53,54v0,29,-23,53,-53,53v-30,0,-54,-24,-54,-53v0,-29,24,-54,54,-54xm27,4r147,-268r28,0r-147,268r-28,0","w":360},"\u00bf":{"d":"17,6v0,-40,61,-67,51,-115r40,0r0,35v0,17,-46,63,-46,84v0,12,11,21,23,21v15,0,29,-16,30,-32r41,12v-10,74,-137,78,-139,-5xm63,-196r51,0r0,51r-51,0r0,-51","w":159},"`":{"d":"-9,-272r56,0r34,52r-37,0","w":100},"\u00b4":{"d":"53,-272r56,0r-53,52r-37,0","w":100},"\u02c6":{"d":"27,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u02dc":{"d":"93,-268r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":100},"\u00af":{"d":"113,-230r-126,0r0,-27r126,0r0,27","w":100},"\u02d8":{"d":"87,-271r24,0v-5,36,-27,52,-63,52v-34,0,-55,-17,-58,-52r23,0v4,35,69,35,74,0","w":100},"\u02d9":{"d":"28,-264r44,0r0,42r-44,0r0,-42","w":100},"\u00a8":{"d":"-6,-264r43,0r0,42r-43,0r0,-42xm63,-264r43,0r0,42r-43,0r0,-42","w":100},"\u02da":{"d":"50,-217v-21,0,-38,-18,-38,-39v0,-21,17,-38,38,-38v21,0,39,17,39,38v0,21,-18,39,-39,39xm50,-275v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19","w":100},"\u00b8":{"d":"1,73r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r21,-32r20,0v-4,8,-14,16,-15,23v18,-9,45,5,44,25v-2,39,-55,40,-85,25","w":100},"\u02dd":{"d":"21,-272r55,0r-51,52r-35,0xm86,-272r56,0r-53,52r-36,0","w":100},"\u02db":{"d":"93,-8r0,5v-19,7,-51,21,-51,45v0,30,40,15,53,3r8,12v-25,22,-92,37,-92,-11v0,-38,54,-49,82,-54","w":100},"\u02c7":{"d":"73,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":100},"\u2014":{"d":"360,-83r-360,0r0,-30r360,0r0,30","w":360},"\u00c6":{"d":"168,-220r-56,113r62,0r0,-113r-6,0xm58,0r-53,0r133,-260r192,0r0,44r-106,0r0,60r79,0r0,44r-79,0r0,68r110,0r0,44r-160,0r0,-63r-85,0","w":360},"\u00aa":{"d":"6,-226v1,-27,23,-37,48,-38v67,-2,37,66,45,120r-31,0v-1,-3,0,-7,-1,-12v-13,19,-63,22,-63,-14v0,-27,28,-40,62,-50v1,-11,-1,-19,-13,-18v-9,0,-15,5,-15,12r-32,0xm46,-166v17,1,23,-12,20,-31v-15,6,-30,11,-30,22v0,6,5,9,10,9","w":108},"\u0141":{"d":"72,-114r0,70r80,0r0,44r-130,0r0,-94r-22,9r0,-41r22,-9r0,-125r50,0r0,104r59,-23r-1,41","w":159,"k":{"T":20,"V":20,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"\u00d8":{"d":"127,-208v-17,-21,-59,-18,-59,25r0,89xm76,-48v21,15,56,12,56,-29r0,-79xm161,-277r37,0r-26,50v17,33,8,95,10,143v3,82,-64,102,-125,79r-17,33r-38,0r29,-56v-21,-31,-11,-98,-13,-148v-3,-85,70,-103,130,-77","w":200},"\u0152":{"d":"122,-220v-58,0,-52,60,-51,117v0,48,14,63,51,63v62,0,40,-80,40,-133v0,-30,-8,-47,-40,-47xm21,-167v-2,-98,88,-93,180,-93r118,0r0,44r-107,0r0,60r80,0r0,44r-80,0r0,68r110,0r0,44r-149,0v-86,14,-153,-6,-152,-98r0,-69","w":339},"\u00ba":{"d":"54,-142v-44,0,-47,-32,-47,-77v0,-31,17,-45,47,-45v42,0,47,33,47,78v0,31,-18,44,-47,44xm54,-237v-24,0,-14,35,-14,55v0,9,4,14,14,14v24,0,14,-35,14,-55v0,-9,-4,-14,-14,-14","w":108},"\u00e6":{"d":"114,-48r0,-48v-24,9,-52,24,-52,45v1,31,42,23,52,3xm258,-87r-99,0v-2,28,2,54,27,54v19,0,26,-12,26,-27r46,0v-2,40,-26,64,-72,64v-32,0,-52,-17,-60,-26v-30,23,-46,26,-64,26v-27,0,-45,-15,-45,-47v0,-45,43,-65,97,-82v2,-21,-3,-38,-21,-38v-14,0,-25,10,-25,24r-46,0v3,-68,86,-75,119,-38v35,-43,122,-18,117,44r0,46xm159,-124r53,0v2,-23,-4,-39,-26,-39v-22,0,-29,16,-27,39","w":280},"\u0131":{"d":"73,0r-46,0r0,-196r46,0r0,196","w":100},"\u0142":{"d":"73,-136r0,136r-46,0r0,-113r-26,14r0,-34r26,-14r0,-113r46,0r0,90r26,-13r0,34","w":100},"\u00f8":{"d":"63,-75v17,-25,29,-55,44,-81v-17,-9,-44,-2,-44,19r0,62xm117,-114v-16,23,-27,51,-41,75v17,8,41,0,41,-20r0,-55xm56,-2r-23,42r-32,0r32,-59v-19,-20,-13,-67,-15,-106v-3,-67,55,-85,109,-68r18,-34r32,0r-28,53v18,21,11,65,13,103v3,66,-52,87,-106,69"},"\u0153":{"d":"90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm262,-87r-100,0v-3,29,3,54,28,54v19,0,27,-12,27,-27r45,0v7,63,-92,86,-122,38v-32,46,-132,30,-122,-49r0,-54v-9,-78,89,-94,122,-49v30,-46,129,-23,122,41r0,46xm162,-124r55,0v2,-23,-5,-39,-27,-39v-22,0,-30,15,-28,39","w":280},"\u00df":{"d":"67,0r-45,0r0,-188v0,-42,15,-72,68,-72v61,0,87,86,41,119v55,20,41,145,-20,145v-9,0,-18,-2,-26,-6r0,-41v21,8,34,1,34,-32v0,-27,-6,-45,-34,-45r0,-37v16,-1,26,-13,26,-32v0,-18,-6,-31,-24,-31v-14,0,-20,10,-20,21r0,199"},"\u00b9":{"d":"51,-105r0,-119r-24,0r0,-19v22,-4,29,-12,35,-21r22,0r0,159r-33,0","w":119},"\u00ac":{"d":"162,-32r0,-88r-152,0r0,-44r196,0r0,132r-44,0","w":216},"\u00b5":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-15,13,-29,25,-47,26r0,65r-45,0r0,-265r45,0r0,144v1,33,31,22,46,4r0,-148"},"\u2122":{"d":"213,-260r34,90r33,-90r56,0r0,148r-39,0r0,-100r-36,100r-29,0r-36,-100r0,100r-38,0r0,-148r55,0xm134,-260r0,30r-41,0r0,118r-40,0r0,-118r-41,0r0,-30r122,0","w":360},"\u00d0":{"d":"3,-112r0,-44r19,0r0,-104v88,-2,161,-5,160,90r0,80v1,95,-71,93,-160,90r0,-112r-19,0xm104,-156r0,44r-32,0r0,68v39,2,60,-5,60,-52v0,-59,15,-135,-60,-120r0,60r32,0","w":200},"\u00bd":{"d":"53,-105r0,-119r-24,0r0,-19v22,-4,28,-12,34,-21r22,0r0,159r-32,0xm285,0r-107,0r0,-27v66,-58,77,-69,77,-85v0,-10,-6,-20,-21,-20v-18,1,-24,10,-23,24r-32,0v-2,-30,16,-50,52,-50v33,0,56,15,56,45v0,36,-43,63,-67,86r65,0r0,27xm49,4r145,-268r35,0r-146,268r-34,0","w":300},"\u00b1":{"d":"86,-148r0,-48r44,0r0,48r76,0r0,44r-76,0r0,49r-44,0r0,-49r-76,0r0,-44r76,0xm10,0r0,-44r196,0r0,44r-196,0","w":216},"\u00de":{"d":"75,0r-50,0r0,-260r50,0r0,48v70,-5,113,20,113,77v0,56,-43,83,-113,78r0,57xm75,-171r0,73v36,2,63,-2,63,-37v0,-35,-28,-38,-63,-36","w":200},"\u00bc":{"d":"194,-66r37,0v-1,-15,2,-34,-1,-47xm160,-66r71,-90r33,0r0,90r23,0r0,25r-23,0r0,41r-33,0r0,-41r-71,0r0,-25xm53,-105r0,-119r-24,0r0,-19v22,-4,28,-12,34,-21r22,0r0,159r-32,0xm55,4r146,-268r34,0r-145,268r-35,0","w":300},"\u00f7":{"d":"206,-76r-196,0r0,-44r196,0r0,44xm73,-178v0,-19,16,-34,35,-34v18,0,34,16,34,34v0,17,-16,34,-34,34v-19,0,-35,-15,-35,-34xm73,-18v0,-19,16,-34,35,-34v18,0,34,15,34,34v0,17,-16,35,-34,35v-19,0,-35,-17,-35,-35","w":216},"\u00a6":{"d":"18,4r0,-103r44,0r0,103r-44,0xm18,-161r0,-103r44,0r0,103r-44,0","w":79},"\u00b0":{"d":"72,-181v17,0,30,-14,30,-31v0,-17,-13,-31,-30,-31v-17,0,-30,14,-30,31v0,17,13,31,30,31xm72,-161v-29,0,-52,-22,-52,-51v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,51,-52,51","w":144},"\u00fe":{"d":"67,-152r0,108v24,22,49,25,50,-33v1,-32,0,-99,-23,-89v-10,0,-18,4,-27,14xm22,-260r44,0r1,84v5,-9,25,-23,45,-23v51,0,50,66,50,125v0,76,-46,100,-95,56r0,87r-45,0r0,-329"},"\u00be":{"d":"194,-66r37,0v-1,-15,2,-34,-1,-47xm160,-66r71,-90r33,0r0,90r23,0r0,25r-23,0r0,41r-33,0r0,-41r-71,0r0,-25xm17,-219v0,-30,22,-43,51,-45v49,-4,71,56,32,77v49,20,19,84,-31,84v-38,0,-56,-19,-56,-48r32,0v0,15,7,21,24,21v15,0,23,-8,23,-21v0,-17,-11,-23,-33,-23r0,-27v35,6,39,-35,9,-36v-11,0,-19,8,-19,18r-32,0xm62,4r146,-268r35,0r-146,268r-35,0","w":300},"\u00b2":{"d":"112,-105r-107,0r0,-27v66,-58,77,-69,77,-85v0,-10,-6,-20,-21,-20v-19,1,-23,9,-22,24r-33,0v-2,-30,17,-51,53,-51v33,0,55,16,55,46v0,36,-42,63,-66,86r64,0r0,27","w":119},"\u00ae":{"d":"121,-117r0,60r-31,0r0,-146v52,0,115,-9,115,44v0,27,-16,38,-37,39r34,63r-35,0r-31,-60r-15,0xm121,-177r0,34v22,-1,55,6,51,-19v5,-18,-31,-15,-51,-15xm144,4v-72,0,-138,-50,-138,-134v0,-84,66,-134,138,-134v72,0,138,50,138,134v0,84,-66,134,-138,134xm241,-130v0,-60,-44,-102,-97,-102v-54,0,-97,42,-97,102v0,60,43,102,97,102v53,0,97,-42,97,-102","w":288},"\u2212":{"d":"206,-76r-196,0r0,-44r196,0r0,44","w":216},"\u00f0":{"d":"90,-148v-42,-2,-27,54,-27,90v0,14,11,22,27,22v42,2,27,-54,27,-90v0,-14,-11,-22,-27,-22xm63,-255r43,-5v4,4,7,8,11,13r39,-13r11,27r-33,11v27,44,28,91,28,156v0,49,-27,70,-72,70v-65,0,-72,-51,-72,-121v0,-54,35,-75,87,-69v-2,-8,-5,-15,-9,-23r-39,14r-11,-27r34,-12v-5,-7,-11,-14,-17,-21"},"\u00d7":{"d":"10,-165r31,-31r67,67r67,-67r31,31r-67,67r67,67r-31,31r-67,-67r-67,67r-31,-31r67,-67","w":216},"\u00b3":{"d":"7,-219v0,-30,23,-43,52,-45v49,-3,71,56,32,77v47,18,19,84,-31,84v-38,0,-56,-19,-56,-48r32,0v0,15,6,21,23,21v15,0,24,-8,24,-21v0,-17,-11,-23,-33,-23r0,-27v35,6,37,-35,8,-36v-11,0,-18,8,-18,18r-33,0","w":119},"\u00a9":{"d":"144,4v-72,0,-138,-50,-138,-134v0,-84,66,-134,138,-134v72,0,138,50,138,134v0,84,-66,134,-138,134xm241,-130v0,-60,-44,-102,-97,-102v-54,0,-97,42,-97,102v0,60,43,102,97,102v53,0,97,-42,97,-102xm181,-110r33,0v-6,37,-34,57,-65,57v-45,0,-74,-34,-74,-78v0,-84,126,-110,137,-23r-31,0v-14,-40,-74,-25,-69,22v-6,47,60,66,69,22","w":288},"\u00c1":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm103,-327r56,0r-53,52r-37,0","w":200},"\u00c2":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm77,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":200},"\u00c4":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm44,-319r43,0r0,41r-43,0r0,-41xm113,-319r43,0r0,41r-43,0r0,-41","w":200},"\u00c0":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm41,-327r56,0r34,52r-37,0","w":200},"\u00c5":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm100,-273v-21,0,-38,-17,-38,-38v0,-21,17,-39,38,-39v21,0,39,18,39,39v0,21,-18,38,-39,38xm100,-330v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19","w":200},"\u00c3":{"d":"101,-204v-11,32,-16,71,-25,105r49,0xm53,0r-48,0r64,-260r64,0r62,260r-47,0r-13,-55r-68,0xm143,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":200},"\u00c7":{"d":"68,-183r0,106v0,29,12,37,32,37v26,0,35,-22,32,-54r50,0v3,66,-29,99,-78,98v-3,6,-12,13,-12,19v18,-9,45,5,44,25v-2,39,-55,40,-85,25r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r20,-29v-40,-4,-68,-29,-68,-87r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r-50,0v2,-30,-10,-44,-32,-44v-20,0,-32,8,-32,37","w":200},"\u00c9":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm93,-327r56,0r-53,52r-37,0"},"\u00ca":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm67,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00cb":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm34,-319r43,0r0,41r-43,0r0,-41xm103,-319r43,0r0,41r-43,0r0,-41"},"\u00c8":{"d":"162,0r-140,0r0,-260r136,0r0,44r-86,0r0,60r66,0r0,44r-66,0r0,68r90,0r0,44xm31,-327r56,0r34,52r-37,0"},"\u00cd":{"d":"75,0r-50,0r0,-260r50,0r0,260xm53,-327r56,0r-53,52r-37,0","w":100},"\u00ce":{"d":"75,0r-50,0r0,-260r50,0r0,260xm27,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u00cf":{"d":"75,0r-50,0r0,-260r50,0r0,260xm-6,-319r43,0r0,41r-43,0r0,-41xm63,-319r43,0r0,41r-43,0r0,-41","w":100},"\u00cc":{"d":"75,0r-50,0r0,-260r50,0r0,260xm-9,-327r56,0r34,52r-37,0","w":100},"\u00d1":{"d":"71,0r-46,0r0,-260r55,0r69,154r0,-154r46,0r0,260r-48,0r-76,-168r0,168xm153,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":219},"\u00d3":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm103,-327r56,0r-53,52r-37,0","w":200},"\u00d4":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm77,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":200},"\u00d6":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm44,-319r43,0r0,41r-43,0r0,-41xm113,-319r43,0r0,41r-43,0r0,-41","w":200},"\u00d2":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm41,-327r56,0r34,52r-37,0","w":200},"\u00d5":{"d":"18,-84r0,-92v0,-64,34,-88,82,-88v48,0,82,24,82,88r0,92v0,64,-34,88,-82,88v-48,0,-82,-24,-82,-88xm68,-183r0,106v0,29,12,37,32,37v20,0,32,-8,32,-37r0,-106v0,-29,-12,-37,-32,-37v-20,0,-32,8,-32,37xm143,-323r23,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,1,57,31,67,-2","w":200},"\u0160":{"d":"177,-201r-45,13v-8,-24,-19,-34,-36,-34v-18,0,-28,10,-28,28v0,39,111,42,111,123v0,45,-31,75,-83,75v-40,0,-71,-22,-84,-73r48,-11v6,31,24,43,39,43v17,0,31,-12,31,-31v0,-49,-111,-50,-111,-123v0,-45,27,-73,78,-73v44,0,71,26,80,63xm123,-275r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":200},"\u00da":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm113,-327r56,0r-53,52r-36,0","w":219},"\u00db":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm87,-327r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":219},"\u00dc":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm54,-319r44,0r0,41r-44,0r0,-41xm123,-319r43,0r0,41r-43,0r0,-41","w":219},"\u00d9":{"d":"25,-260r50,0r0,182v0,25,11,38,35,38v24,0,35,-13,35,-38r0,-182r50,0r0,182v0,57,-34,82,-85,82v-51,0,-85,-25,-85,-82r0,-182xm51,-327r56,0r34,52r-37,0","w":219},"\u00dd":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0xm103,-327r56,0r-53,52r-37,0","w":200,"k":{"v":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20,"p":13,"q":20}},"\u0178":{"d":"57,-260r44,105r42,-105r53,0r-71,155r0,105r-50,0r0,-105r-71,-155r53,0xm44,-319r43,0r0,41r-43,0r0,-41xm113,-319r43,0r0,41r-43,0r0,-41","w":200,"k":{"v":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20,"p":13,"q":20}},"\u017d":{"d":"22,-216r0,-44r144,0r0,42r-98,174r100,0r0,44r-156,0r0,-42r98,-174r-88,0xm113,-275r-46,0r-41,-52r41,0r23,29r23,-29r41,0"},"\u00e1":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm93,-272r56,0r-53,52r-37,0"},"\u00e2":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00e4":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00e0":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm31,-272r56,0r34,52r-37,0"},"\u00e5":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm90,-217v-21,0,-39,-18,-39,-39v0,-21,18,-38,39,-38v21,0,39,17,39,38v0,21,-18,39,-39,39xm90,-275v-11,0,-19,9,-19,19v0,11,8,19,19,19v10,0,19,-8,19,-19v0,-10,-9,-19,-19,-19"},"\u00e3":{"d":"17,-139v3,-40,33,-60,73,-60v104,-2,54,113,69,199r-45,0v-1,-5,-2,-11,-3,-19v-25,30,-99,37,-99,-24v0,-45,42,-65,99,-82v11,-43,-45,-51,-48,-14r-46,0xm111,-48r0,-48v-27,9,-54,24,-54,45v0,32,41,22,54,3xm132,-268r24,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,0,57,31,66,-2"},"\u00e7":{"d":"162,-128r-45,0v2,-21,-7,-32,-27,-32v-44,-1,-27,63,-27,101v0,15,11,23,27,23v21,0,30,-13,27,-35r45,0v0,50,-25,74,-68,75v-3,6,-12,13,-12,19v18,-9,45,5,44,25v-2,39,-55,40,-85,25r7,-15v16,6,43,12,47,-8v-1,-23,-34,-2,-39,-18r20,-29v-55,-1,-58,-63,-58,-128v0,-52,27,-74,72,-74v44,0,71,21,72,71"},"\u00e9":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm93,-272r56,0r-53,52r-37,0"},"\u00ea":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00eb":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00e8":{"d":"162,-87r-99,0v-2,28,2,54,27,54v19,0,27,-12,27,-27r45,0v-2,40,-26,64,-72,64v-43,0,-72,-27,-72,-70r0,-64v0,-43,29,-69,72,-69v60,0,79,46,72,112xm63,-124r54,0v2,-23,-5,-39,-27,-39v-22,0,-29,16,-27,39xm31,-272r56,0r34,52r-37,0"},"\u00ed":{"d":"73,0r-46,0r0,-196r46,0r0,196xm53,-272r56,0r-53,52r-37,0","w":100},"\u00ee":{"d":"73,0r-46,0r0,-196r46,0r0,196xm27,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0","w":100},"\u00ef":{"d":"73,0r-46,0r0,-196r46,0r0,196xm-6,-264r43,0r0,42r-43,0r0,-42xm63,-264r43,0r0,42r-43,0r0,-42","w":100},"\u00ec":{"d":"73,0r-46,0r0,-196r46,0r0,196xm-9,-272r56,0r34,52r-37,0","w":100},"\u00f1":{"d":"67,0r-45,0r0,-196r44,0r0,22v30,-33,92,-41,92,25r0,149r-45,0r0,-144v-1,-33,-31,-22,-46,-4r0,148xm132,-268r24,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,0,57,31,66,-2"},"\u00f3":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm93,-272r56,0r-53,52r-37,0"},"\u00f4":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm67,-272r46,0r41,52r-41,0r-23,-29r-23,29r-41,0"},"\u00f6":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm34,-264r43,0r0,42r-43,0r0,-42xm103,-264r43,0r0,42r-43,0r0,-42"},"\u00f2":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm31,-272r56,0r34,52r-37,0"},"\u00f5":{"d":"90,4v-66,0,-72,-57,-72,-129v0,-52,27,-74,72,-74v66,0,72,56,72,128v0,52,-27,75,-72,75xm90,-160v-44,-1,-27,63,-27,101v0,15,11,23,27,23v44,1,27,-63,27,-101v0,-15,-11,-23,-27,-23xm132,-268r24,0v-5,23,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v4,-23,16,-44,42,-44v28,0,57,31,66,-2"},"\u0161":{"d":"145,-150r-37,14v-6,-29,-50,-39,-50,-9v0,30,89,31,89,89v0,39,-27,60,-65,60v-27,0,-52,-7,-74,-56r41,-11v4,18,15,30,33,30v14,0,22,-6,22,-17v0,-37,-89,-29,-89,-95v0,-37,30,-54,62,-54v34,0,57,19,68,49xm103,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":159},"\u00fa":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm90,-272r55,0r-52,52r-37,0"},"\u00fb":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm64,-272r45,0r41,52r-40,0r-23,-29r-23,29r-41,0"},"\u00fc":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm31,-264r43,0r0,42r-43,0r0,-42xm99,-264r44,0r0,42r-44,0r0,-42"},"\u00f9":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-30,34,-92,42,-92,-25r0,-149r45,0r0,144v1,33,31,22,46,4r0,-148xm28,-272r56,0r33,52r-36,0"},"\u00fd":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69xm83,-272r56,0r-53,52r-37,0","w":159,"k":{",":13,".":13}},"\u00ff":{"d":"12,68r0,-39v45,5,49,-25,37,-67r-45,-158r46,0r31,130r29,-130r46,0r-52,195v-15,58,-38,74,-92,69xm24,-264r43,0r0,42r-43,0r0,-42xm93,-264r43,0r0,42r-43,0r0,-42","w":159,"k":{",":13,".":13}},"\u017e":{"d":"18,-156r0,-40r131,0r0,39r-83,117r83,0r0,40r-138,0r0,-39r82,-117r-75,0xm103,-220r-46,0r-41,-52r41,0r23,29r23,-29r41,0","w":159},"\u2126":{"d":"14,-35v16,-1,36,2,50,-1v-23,-22,-45,-58,-45,-106v0,-66,45,-119,109,-119v122,-1,129,172,61,226r50,0r0,35r-93,0r0,-26v23,-15,45,-50,45,-109v0,-46,-22,-90,-64,-90v-40,0,-65,38,-65,91v0,54,22,93,45,108r0,26r-93,0r0,-35","w":254},"\u03bc":{"d":"113,-196r45,0r0,196r-44,0r0,-22v-15,13,-29,25,-47,26r0,65r-45,0r0,-265r45,0r0,144v1,33,31,22,46,4r0,-148"},"\u03c0":{"d":"206,-157r-26,0v1,48,-3,120,4,157r-41,0v-11,-32,-4,-111,-6,-157r-52,0v-2,41,-11,118,-24,157r-41,0v13,-43,22,-115,23,-157v-18,0,-28,1,-36,4r-5,-28v41,-22,143,-8,207,-12","w":214},"\u20ac":{"d":"161,-141r-77,0r0,26r68,0r-10,32v-18,2,-44,-4,-58,2v-3,53,64,53,98,29r0,42v-63,31,-153,6,-143,-73r-28,0r10,-32r18,0r0,-26r-28,0r10,-31r18,0v-13,-87,93,-116,154,-70r-13,41v-30,-32,-105,-28,-96,29r87,0","w":200},"\u2113":{"d":"158,-66r18,18v-18,36,-45,50,-73,50v-45,-1,-63,-29,-64,-66v-6,5,-14,10,-20,15r-10,-23v11,-9,20,-17,29,-26r0,-94v0,-65,29,-92,63,-92v34,0,49,28,49,64v0,44,-28,86,-71,129v-3,34,10,59,33,59v20,0,36,-17,46,-34xm79,-192r0,61v26,-30,44,-62,44,-90v0,-20,-5,-32,-20,-32v-12,0,-24,13,-24,61","w":182},"\u212e":{"d":"67,-52v36,64,148,61,190,4r21,0v-26,31,-69,51,-117,51v-82,0,-148,-60,-148,-133v0,-74,66,-134,148,-134v83,1,150,60,148,138r-242,1r0,73xm255,-209v-37,-62,-153,-62,-188,2v1,24,-3,54,2,74r184,0v6,-20,0,-52,2,-76","w":322},"\u2202":{"d":"37,-238r-12,-32v70,-48,162,-11,162,118v0,92,-36,154,-100,154v-50,0,-73,-46,-73,-87v0,-59,36,-96,78,-96v31,0,47,21,54,30v3,-56,-21,-105,-62,-105v-22,0,-38,10,-47,18xm92,-34v28,0,46,-41,50,-80v-4,-12,-19,-33,-42,-33v-25,0,-44,30,-44,63v0,28,14,50,36,50","w":205},"\u220f":{"d":"249,-219r-37,0r0,255r-42,0r0,-255r-82,0r0,255r-42,0r0,-255r-37,0r0,-38r240,0r0,38","w":258},"\u2211":{"d":"193,36r-185,0r0,-28r89,-119r-85,-117r0,-29r175,0r0,36r-118,1r76,102r-85,114r133,0r0,40","w":200},"\u2219":{"d":"50,-125v16,0,27,13,27,27v0,14,-11,27,-27,27v-16,0,-27,-13,-27,-27v0,-14,11,-27,27,-27","w":100},"\u221a":{"d":"215,-309r-81,361r-34,0r-54,-163r-27,10r-7,-24r59,-24r39,120v3,12,5,23,7,31r68,-311r30,0","w":212},"\u221e":{"d":"209,-166v32,0,59,23,56,60v-5,75,-85,83,-123,20v-19,23,-38,42,-68,42v-30,0,-56,-25,-56,-60v0,-36,25,-62,59,-62v27,0,47,17,66,41v16,-18,34,-41,66,-41xm42,-104v0,20,14,36,36,36v21,0,37,-19,51,-36v-15,-20,-29,-39,-53,-39v-21,0,-34,17,-34,39xm240,-104v0,-23,-13,-39,-34,-39v-22,0,-39,24,-51,37v22,27,34,38,53,38v21,0,32,-19,32,-36","w":282},"\u222b":{"d":"49,-219v0,-69,27,-110,84,-94r-4,29v-36,-11,-43,22,-42,69v0,59,6,114,6,179v0,72,-27,113,-86,93r6,-31v35,11,42,-12,42,-62v0,-66,-6,-121,-6,-183","w":141},"\u2248":{"d":"66,-165v32,0,46,26,70,27v14,0,23,-10,33,-26r15,14v-11,22,-27,37,-48,37v-24,0,-47,-27,-72,-27v-16,0,-25,13,-34,26r-16,-13v11,-22,30,-38,52,-38xm66,-98v33,0,44,27,70,27v14,0,23,-11,33,-27r15,14v-11,21,-27,38,-48,38v-24,0,-48,-27,-72,-28v-16,0,-25,14,-34,27r-16,-14v11,-22,30,-37,52,-37","w":199},"\u2260":{"d":"145,-187r-14,33r50,0r0,24r-59,0r-22,50r81,0r0,26r-91,0r-18,41r-19,-8r14,-33r-49,0r0,-26r59,0r22,-50r-81,0r0,-24r90,0r18,-41","w":199},"\u2264":{"d":"180,-36r-161,-82r0,-27r161,-81r0,29r-136,66r136,65r0,30xm182,3r-164,0r0,-25r164,0r0,25","w":199},"\u2265":{"d":"20,-226r161,81r0,27r-161,82r0,-30r136,-66r-136,-65r0,-29xm181,3r-163,0r0,-25r163,0r0,25","w":199},"\u25ca":{"d":"194,-129r-72,147r-34,0r-70,-147r72,-146r34,0xm156,-127r-50,-113v-12,41,-34,73,-50,110v16,38,38,71,49,113","w":212},"\u00a0":{"w":100},"\u00ad":{"d":"104,-78r-89,0r0,-40r89,0r0,40","w":119},"\u02c9":{"d":"113,-230r-126,0r0,-27r126,0r0,27","w":100},"\u03a9":{"d":"14,-35v16,-1,36,2,50,-1v-23,-22,-45,-58,-45,-106v0,-66,45,-119,109,-119v122,-1,129,172,61,226r50,0r0,35r-93,0r0,-26v23,-15,45,-50,45,-109v0,-46,-22,-90,-64,-90v-40,0,-65,38,-65,91v0,54,22,93,45,108r0,26r-93,0r0,-35","w":254},"\u2215":{"d":"-60,4r146,-268r34,0r-146,268r-34,0","w":60},"\u2206":{"d":"10,0r0,-26r84,-237r50,0r81,237r0,26r-215,0xm53,-35r127,0r-41,-113v-8,-19,-14,-55,-23,-67v-16,56,-43,125,-63,180","w":235},"\u2010":{"d":"104,-78r-89,0r0,-40r89,0r0,40","w":119}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Data by Anna Wheeler and Type Solutions, Inc. ?1993. Microsoft Corporation.
 * All rights reserved.
 * 
 * Manufacturer:
 * Type Solutions, Inc. StingRay! V1.00.
 */
Cufon.registerFont({"w":163,"face":{"font-family":"Modern","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 7 7 4 7 5 5 2 3 3","ascent":"288","descent":"-72","x-height":"3","bbox":"-14 -245.549 356 76.144","underline-thickness":"18","underline-position":"-23.4","stemh":"4","stemv":"34","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":88},"\u00a0":{"w":88},"!":{"d":"7,-15v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20xm28,-235v46,39,-5,119,2,182r-5,0v0,-61,-18,-91,-18,-140v0,-17,9,-37,21,-42","w":81},"\"":{"d":"43,-216v0,24,-10,54,-14,79r-7,0v-10,-50,-15,-77,-15,-79v0,-12,7,-19,18,-19v12,0,18,7,18,19xm76,-136v0,-25,-35,-99,4,-99v21,0,20,19,15,40r-12,59r-7,0","w":130},"#":{"d":"7,-144r0,-12r47,0r17,-72r11,0r-16,72r54,0r17,-72r12,0r-17,72r28,0r0,12r-30,0r-14,60r44,0r0,12r-47,0r-17,72r-11,0r16,-72r-54,0r-17,72r-12,0r17,-72r-28,0r0,-12r30,0r14,-60r-44,0xm49,-84r55,0r14,-60r-55,0"},"$":{"d":"109,-234v27,4,46,22,49,49v3,26,-37,32,-39,7v-2,-13,10,-25,22,-18v-4,-16,-16,-27,-32,-32r0,85v37,9,68,30,68,71v0,43,-30,66,-68,73r0,41r-7,0r0,-40r-35,1r0,39r-7,0r0,-41v-29,-6,-52,-18,-52,-50v0,-14,8,-27,22,-26v14,0,20,9,20,23v0,12,-16,22,-24,12v-2,20,18,30,34,35r0,-100v-32,-10,-53,-26,-53,-64v0,-35,23,-56,53,-63v0,-6,-2,-16,7,-13r0,11v13,-2,23,-1,35,0r0,-11r7,0r0,11xm67,-3r35,-1r0,-90r-35,-9r0,100xm109,-6v22,-6,36,-18,36,-43v0,-28,-13,-35,-36,-43r0,86xm102,-229v-13,-1,-23,-1,-35,1r0,77r35,7r0,-85xm60,-226v-38,7,-38,64,0,73r0,-73","w":209},"%":{"d":"123,-92v25,0,44,21,44,47v0,25,-19,48,-44,48v-25,0,-44,-22,-44,-48v0,-25,19,-47,44,-47xm123,-90v-20,0,-21,21,-21,45v0,25,0,45,21,45v20,0,22,-21,22,-45v0,-25,-1,-45,-22,-45xm53,-235v25,0,43,21,43,47v0,25,-18,48,-43,48v-25,0,-44,-22,-44,-48v0,-25,19,-47,44,-47xm53,-143v20,0,21,-21,21,-45v0,-25,0,-45,-21,-45v-20,0,-22,21,-22,45v0,25,1,45,22,45xm129,-232r7,0r-90,232r-7,0"},"&":{"d":"101,-159v26,-4,38,-64,6,-70v-41,3,-21,50,-6,70xm71,-144v-61,13,-36,130,15,135v19,-2,27,-18,36,-35xm9,-58v0,-44,25,-80,59,-90v-18,-30,-3,-85,34,-84v22,0,38,11,38,33v0,22,-20,35,-38,43r40,77v8,-17,25,-38,29,-57v0,-14,-20,-14,-39,-14r0,-4r87,0r0,4v-50,0,-54,49,-75,78v15,18,17,53,46,56v23,-4,20,-27,21,-60r4,0v0,56,-1,79,-46,79v-23,0,-32,-20,-44,-42v-16,29,-28,42,-70,42v-28,0,-46,-32,-46,-61","w":220},"'":{"d":"43,-216v0,24,-10,54,-14,79r-7,0v-10,-50,-15,-77,-15,-79v0,-12,7,-19,18,-19v12,0,18,7,18,19","w":81},"(":{"d":"118,75v-53,-22,-111,-88,-111,-155v0,-67,59,-133,111,-155r0,11v-47,29,-85,71,-85,143v0,74,37,114,85,144r0,12","w":126},")":{"d":"7,-235v53,22,111,88,111,155v0,67,-59,133,-111,155r0,-12v47,-29,85,-71,85,-144v0,-73,-38,-114,-85,-143r0,-11","w":126},"*":{"d":"59,-170v-11,7,-25,28,-41,32v-5,0,-10,-6,-10,-12v5,-16,36,-17,49,-24v-17,-6,-26,-9,-27,-9v-17,0,-34,-22,-12,-27v19,7,19,14,41,32v-2,-14,-8,-29,-8,-45v0,-8,4,-12,11,-12v22,5,3,41,2,57v13,-9,23,-28,41,-32v5,0,11,5,11,11v-5,17,-34,17,-50,25v28,10,40,6,50,25v-2,15,-19,12,-26,2v-4,-3,-13,-11,-26,-23v2,14,8,29,8,44v0,8,-3,13,-10,13v-22,-5,-4,-40,-3,-57"},"+":{"d":"79,-64r-65,0r0,-9r65,0r0,-65r8,0r0,65r65,0r0,9r-65,0r0,64r-8,0r0,-64"},",":{"d":"40,-1v-10,9,-29,0,-28,-14v0,-14,9,-23,23,-23v31,1,24,52,11,69v-8,12,-21,23,-40,32r-2,-5v19,-10,39,-32,36,-59","w":86},"-":{"d":"80,-86r0,19r-73,0r0,-19r73,0","w":118},"\u00ad":{"d":"80,-86r0,19r-73,0r0,-19r73,0","w":118},".":{"d":"7,-19v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":81},"\/":{"d":"98,-232r7,0r-91,232r-7,0","w":72},"0":{"d":"84,-235v101,6,101,233,0,238v-102,-5,-103,-233,0,-238xm84,-232v-41,0,-28,140,-28,186v0,50,40,65,49,17v9,-21,8,-131,6,-157v-2,-31,-11,-46,-27,-46"},"1":{"d":"21,-4v21,-2,48,9,48,-20r0,-167v3,-27,-26,-17,-48,-19r0,-5v51,-1,64,0,88,-20r5,0r0,211v-5,26,22,18,44,20r0,4r-137,0r0,-4"},"2":{"d":"31,-46v21,-9,125,45,110,-32v9,-1,6,9,6,16v0,36,-6,62,-38,65v-36,3,-35,-48,-67,-45v-13,1,-16,21,-17,38r-6,0v0,-55,18,-77,58,-94v23,-10,36,-34,36,-67v0,-27,-5,-66,-38,-66v-28,0,-51,38,-49,71v2,-6,6,-10,13,-10v24,2,19,48,-3,47v-16,0,-20,-19,-20,-35v0,-38,27,-77,64,-77v45,0,72,36,72,82v0,80,-112,39,-121,107"},"3":{"d":"69,0v54,0,64,-120,16,-128v-12,-2,-36,15,-43,1v5,-14,25,-3,38,-4v21,0,28,-21,28,-43v0,-33,-5,-58,-33,-58v-22,0,-37,11,-41,30v12,-7,24,6,22,19v-3,21,-41,24,-38,-4v6,-73,135,-55,133,11v0,30,-31,42,-61,46v43,0,68,18,68,59v0,41,-44,75,-85,74v-34,0,-66,-27,-66,-60v0,-31,45,-38,45,-8v0,15,-13,26,-30,21v-2,21,25,44,47,44"},"4":{"d":"81,-76r0,-97r-61,97r61,0xm35,-4v20,-1,46,5,46,-20r0,-39r-74,0r107,-169r6,0r0,156r37,0r0,13r-37,0r0,39v-4,23,21,17,37,20r0,4r-122,0r0,-4"},"5":{"d":"86,-145v-27,-4,-50,27,-54,50r-4,-1r18,-139v29,13,81,31,100,0r4,-1v-15,45,-51,54,-102,33r-11,82v16,-20,26,-29,58,-29v36,0,61,40,61,78v0,39,-45,75,-88,75v-30,0,-56,-21,-56,-50v0,-16,8,-28,23,-28v13,0,19,9,19,23v0,15,-16,24,-26,16v-2,23,21,35,42,36v35,0,43,-42,43,-83v0,-38,-2,-59,-27,-62"},"6":{"d":"131,-212v-3,-13,-19,-20,-35,-20v-46,1,-42,63,-41,113v8,-21,17,-31,43,-31v37,0,60,34,60,73v0,48,-27,80,-75,80v-55,0,-70,-51,-70,-111v0,-63,28,-127,85,-127v26,0,46,13,46,37v0,14,-6,21,-19,21v-10,0,-20,-7,-20,-17v-1,-15,14,-26,26,-18xm117,-71v0,-33,-5,-72,-29,-72v-28,0,-34,36,-34,69v0,40,1,74,31,74v28,0,32,-37,32,-71"},"7":{"d":"139,-191v-24,15,-55,-5,-80,-5v-26,0,-33,24,-33,52r-4,0v0,0,3,-62,-1,-91v9,1,4,16,8,22v7,-17,10,-22,31,-22v18,-6,49,45,62,45v20,0,25,-23,25,-45v5,-1,4,3,4,7v-8,75,-51,79,-51,173v0,32,0,55,-23,58v-29,-2,-24,-43,-14,-68v14,-35,58,-90,76,-126"},"8":{"d":"120,-134v26,-30,15,-98,-35,-98v-27,0,-48,17,-48,44v0,40,32,41,83,54xm87,-235v54,0,96,75,36,103v23,6,38,33,38,62v0,41,-36,73,-78,73v-51,0,-101,-60,-62,-102r20,-18v-51,-30,-19,-118,46,-118xm46,-115v-29,31,-21,122,36,115v59,6,72,-84,21,-99v-19,-5,-38,-10,-57,-16"},"9":{"d":"39,-19v7,13,16,19,35,19v48,0,41,-57,43,-113v-24,61,-104,23,-104,-41v0,-47,27,-81,73,-81v52,0,72,55,72,112v0,63,-28,126,-86,126v-25,0,-48,-13,-48,-37v0,-13,7,-20,20,-20v10,0,19,7,19,18v0,12,-11,21,-24,17xm54,-161v0,33,2,72,28,72v31,0,34,-31,34,-69v0,-36,-3,-74,-31,-74v-28,0,-31,37,-31,71"},":":{"d":"7,-161v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm7,-19v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":81},";":{"d":"40,-1v-10,9,-29,0,-28,-14v0,-14,9,-23,23,-23v31,1,24,52,11,69v-8,12,-21,23,-40,32r-2,-5v19,-10,39,-32,36,-59xm12,-161v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":81},"<":{"d":"73,-154r8,0r-44,78r32,76r-10,0r-52,-76","w":108},"=":{"d":"138,-52r-109,0r0,-8r109,0r0,8xm138,-77r-109,0r0,-8r109,0r0,8"},">":{"d":"15,-154r66,78r-52,76r-10,0r32,-76r-44,-78r8,0","w":108},"?":{"d":"22,-14v0,-11,9,-21,20,-21v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20xm38,-49v-9,-66,46,-53,46,-117v0,-34,-1,-65,-27,-65v-23,0,-46,24,-39,42v9,-12,27,-1,27,15v0,10,-7,21,-18,21v-13,0,-20,-11,-20,-26v0,-30,22,-56,51,-56v36,0,60,32,60,69v0,63,-90,51,-74,117r-6,0","w":145},"@":{"d":"189,-228v-81,0,-154,67,-154,149v0,84,51,150,133,150v70,0,116,-47,135,-102r5,0v-19,57,-67,106,-140,106v-84,0,-152,-71,-152,-155v0,-83,89,-152,173,-152v87,0,145,115,88,184v-23,27,-40,44,-84,44v-20,0,-28,-12,-28,-32v-12,19,-17,32,-41,32v-26,0,-39,-15,-39,-42v0,-56,40,-115,90,-115v19,0,18,11,18,33r8,-29r32,0r-37,137v0,7,2,10,8,10v54,-4,76,-52,77,-108v1,-58,-36,-110,-92,-110xm175,-157v-46,0,-51,89,-62,133v0,12,4,17,16,17v36,-10,60,-86,60,-128v0,-14,-4,-22,-14,-22","w":316},"A":{"d":"143,-85r-33,-92r-33,92r66,0xm75,-81v-14,31,-29,82,23,77r0,4r-91,0r0,-4v39,-4,43,-23,58,-62r61,-169r8,0r77,211v10,22,9,18,43,20r0,4r-132,0r0,-4v21,0,47,2,47,-10v-7,-23,-16,-45,-24,-67r-70,0","w":248},"B":{"d":"137,-229v-19,1,-34,-5,-34,20r0,83v48,2,88,1,88,-48v0,-40,-14,-55,-54,-55xm248,-58v0,31,-37,58,-73,58r-168,0r0,-4v37,-4,52,9,52,-20r0,-185v1,-28,-18,-16,-52,-20r0,-3v89,4,215,-23,228,55v-2,41,-25,45,-67,53v46,7,80,22,80,66xm103,-24v-4,29,26,20,49,20v33,0,50,-20,50,-54v0,-57,-40,-70,-99,-64r0,98","w":256},"C":{"d":"57,-116v0,62,10,116,60,116v55,0,74,-38,74,-96r3,0v0,62,-20,99,-77,99v-65,0,-108,-47,-108,-115v0,-88,107,-168,160,-91v7,-11,12,-24,20,-34r0,105r-3,-2v2,-48,-28,-98,-70,-98v-52,0,-59,52,-59,116","w":196},"D":{"d":"261,-115v0,66,-47,116,-112,115r-140,0r0,-4v23,-3,50,7,50,-20r0,-184v1,-28,-19,-17,-50,-21r0,-3r140,0v59,0,112,55,112,117xm149,-229v-25,0,-46,-7,-46,21r0,184v-5,29,24,20,46,20v54,0,66,-50,66,-111v0,-58,-15,-114,-66,-114","w":261},"E":{"d":"100,-24v-1,27,21,19,48,19v62,0,83,-40,89,-102r4,0r0,107r-234,0r0,-4v30,-3,49,7,49,-20r0,-184v5,-27,-29,-17,-49,-21r0,-3r222,0r0,90r-4,0v0,-41,-27,-91,-67,-87v-23,2,-58,-9,-58,21r0,83v63,0,54,-11,66,-69r4,0r0,142r-4,0v-11,-57,-4,-69,-66,-69r0,97","w":249},"F":{"d":"7,-4v21,-2,49,7,49,-20r0,-184v4,-27,-28,-17,-49,-21r0,-3r223,0r0,90r-5,0v0,-41,-27,-87,-67,-87v-28,0,-37,-2,-55,6v-7,25,-1,68,-3,98v64,1,57,-11,68,-69r4,0r0,142r-4,0v-4,-59,-6,-69,-68,-69r0,97v-1,28,30,16,57,20r0,4r-150,0r0,-4","w":224},"G":{"d":"56,-115v0,59,11,111,56,115v50,4,56,-42,52,-94v4,-24,-21,-17,-39,-20r0,-4r123,0r0,4v-18,3,-43,-6,-43,20r0,94r-3,0v0,-14,-4,-28,-16,-28v-32,0,-36,31,-75,31v-64,0,-102,-48,-102,-114v0,-61,47,-124,101,-124v40,0,51,13,70,38r21,-38r0,101r-4,0v-8,-51,-32,-98,-81,-98v-47,0,-61,57,-60,117","w":242},"H":{"d":"155,-4v30,-3,48,7,48,-20r0,-93r-103,0r0,93v-3,26,26,17,48,20r0,4r-141,0r0,-4v21,-2,49,7,49,-20r0,-184v4,-27,-28,-17,-49,-21r0,-3r142,0r0,3v-29,3,-49,-5,-49,21r0,85r103,0r0,-85v5,-27,-29,-17,-49,-21r0,-3r142,0r0,3v-23,3,-49,-6,-49,21r0,184v0,27,18,16,49,20r0,4r-141,0r0,-4","w":292},"I":{"d":"56,-209v1,-28,-18,-16,-49,-20r0,-3r142,0r0,3v-23,3,-49,-7,-49,20r0,185v0,27,18,16,49,20r0,4r-142,0r0,-4v21,-2,49,7,49,-20r0,-185","w":149},"J":{"d":"55,3v-48,0,-70,-86,-18,-86v15,0,26,13,26,28v1,21,-29,32,-44,19v-2,22,17,36,36,36v38,0,37,-24,37,-73r0,-135v3,-28,-29,-17,-51,-21r0,-3r142,0r0,3v-29,3,-47,-6,-47,21r0,132v0,47,-33,79,-81,79","w":168},"K":{"d":"56,-209v1,-28,-18,-16,-49,-20r0,-3r142,0r0,3v-31,4,-48,-7,-49,20r0,108r83,-82v28,-24,17,-49,-23,-46r0,-3r101,0r0,3v-45,2,-63,45,-100,76r68,129v13,21,12,19,47,20r0,4r-125,0r0,-4v18,-1,38,4,36,-9r-57,-109r-30,29r0,69v-3,26,25,17,46,20r0,4r-139,0r0,-4v22,-4,49,8,49,-20r0,-185","w":265},"L":{"d":"100,-24v-1,27,20,19,49,19v63,0,89,-40,89,-106r5,0r0,111r-236,0r0,-4v22,-2,49,7,49,-20r0,-184v4,-27,-28,-17,-49,-21r0,-3r148,0r0,3v-27,2,-55,-7,-55,21r0,184","w":244},"M":{"d":"174,-4v20,-3,45,6,45,-20r-2,-202v-26,71,-45,152,-69,226r-8,0r-81,-226v-3,49,-1,106,-1,157v0,48,7,65,51,65r0,4r-102,0r0,-4v73,3,46,-104,46,-168v0,-40,-8,-57,-46,-57r0,-4r94,1r61,168r50,-168r100,0r0,3v-31,4,-49,-6,-49,21r0,184v-4,28,26,17,49,20r0,4r-138,0r0,-4","w":308},"N":{"d":"56,-61v0,-66,26,-171,-49,-168r0,-3r74,0r131,168v3,-32,0,-73,1,-107v0,-42,-10,-58,-51,-58r0,-3r102,0r0,3v-37,0,-46,18,-46,58r0,172r-8,0r-148,-194v-3,38,-1,84,-1,124v0,48,7,65,51,65r0,4r-105,0r0,-4v40,0,49,-15,49,-57","w":250},"O":{"d":"118,-235v61,0,108,54,108,119v0,62,-49,120,-108,119v-61,0,-109,-55,-109,-119v0,-62,50,-120,109,-119xm118,0v49,0,61,-56,61,-116v0,-62,-10,-116,-61,-116v-51,0,-61,54,-61,116v0,61,11,116,61,116","w":228},"P":{"d":"139,-229v-19,1,-34,-6,-34,20r0,101v53,3,88,-2,88,-58v0,-39,-16,-63,-54,-63xm60,-209v2,-29,-19,-16,-53,-20r0,-3v94,4,231,-24,231,69v0,55,-68,63,-133,58r0,81v-2,29,30,16,58,20r0,4r-156,0r0,-4v25,-3,53,8,53,-20r0,-185","w":232},"Q":{"d":"164,-12v5,23,16,59,39,59v22,-1,28,-35,24,-61v7,-1,3,12,4,17v0,33,-16,62,-48,62v-35,0,-54,-27,-54,-63v-70,8,-120,-51,-120,-118v0,-62,51,-119,109,-119v61,0,108,54,108,119v0,52,-26,85,-62,104xm96,-5v-19,-16,-4,-52,23,-52v21,0,32,18,39,34v34,-50,36,-211,-40,-209v-53,2,-60,51,-61,116v0,51,9,94,39,111xm91,-25v0,18,18,29,38,24v3,-20,11,-52,-17,-50v-12,0,-21,13,-21,26","w":232},"R":{"d":"137,-229v-19,1,-34,-5,-34,20r0,84v48,2,88,0,88,-49v0,-40,-15,-55,-54,-55xm235,-177v-2,37,-30,50,-69,55v44,9,56,40,56,96v0,12,1,20,11,20v13,0,13,-28,13,-46v6,-1,2,8,3,12v0,28,-4,43,-29,43v-44,1,-41,-43,-39,-91v2,-42,-41,-32,-78,-33r0,97v-5,30,29,17,51,20r0,4r-147,0r0,-4v37,-4,52,9,52,-20r0,-185v1,-28,-18,-16,-52,-20r0,-3v89,4,215,-23,228,55","w":248},"S":{"d":"156,-44v0,-76,-149,-38,-149,-125v0,-62,85,-87,125,-46v14,-12,22,-19,24,-20r0,78r-3,-1v-6,-37,-35,-74,-75,-74v-44,0,-66,47,-30,71v18,12,94,28,107,39v43,36,19,125,-48,125v-32,0,-52,-10,-67,-29v-14,19,-21,28,-22,29r0,-99r3,0v12,52,27,96,88,96v25,0,47,-20,47,-44","w":189},"T":{"d":"36,-4v26,-3,56,8,56,-20r0,-194v0,-11,0,-11,-10,-11v-55,4,-58,40,-70,99r-5,0r0,-102r213,0r0,102r-5,0v-12,-61,-15,-94,-70,-99v-10,0,-9,-1,-9,10r0,195v-1,28,30,17,56,20r0,4r-156,0r0,-4","w":219},"U":{"d":"151,-3v33,-1,64,-29,61,-66v-5,-64,22,-165,-49,-160r0,-3r97,0r0,3v-70,-3,-35,101,-43,160v3,41,-31,72,-70,72v-50,0,-98,-22,-98,-69r0,-142v1,-27,-18,-17,-45,-21r0,-3r139,0r0,3v-24,2,-51,-6,-49,21v9,78,-33,208,57,205","w":253},"V":{"d":"135,-229v-26,0,-49,-2,-41,21r56,151v14,-47,44,-92,44,-143v0,-19,-12,-29,-37,-29r0,-3r93,0r0,3v-37,0,-47,28,-58,62r-57,170r-10,0r-76,-211v-9,-23,-11,-20,-45,-21r0,-3r131,0r0,3","w":244},"W":{"d":"252,-229v-23,-1,-43,0,-37,21r46,151v14,-46,46,-90,46,-141v0,-20,-14,-31,-43,-31r0,-3r92,0r0,3v-34,5,-37,22,-51,62r-59,168r-11,0r-54,-175r-45,175r-12,0r-79,-209v-9,-22,-8,-20,-41,-21r0,-3r123,0r0,3v-23,-1,-45,-1,-37,21r56,150r33,-125v-11,-26,-4,-53,-50,-46r0,-3r123,0r0,3","w":348},"X":{"d":"85,-53v-20,24,0,52,34,49r0,4r-115,0r0,-4v57,-6,81,-66,113,-103r-61,-101v-12,-19,-19,-20,-52,-20r0,-4r141,0r0,4v-35,2,-51,2,-40,20r40,66v13,-21,42,-39,42,-66v0,-13,-10,-20,-31,-20r0,-4r96,0r0,4v-54,-2,-70,54,-104,91r69,113v12,20,19,20,53,20r0,4r-142,0r0,-4v35,-2,51,-2,40,-20r-47,-78","w":263},"Y":{"d":"64,-4v26,-3,56,8,56,-20r0,-74r-65,-110v-11,-20,-17,-21,-51,-21r0,-3r141,0r0,3v-24,-1,-52,2,-39,23r57,96v15,-29,48,-54,48,-91v0,-18,-14,-28,-40,-28r0,-3r96,0r0,3v-34,-3,-52,41,-62,58r-40,68r0,79v-3,28,29,17,55,20r0,4r-156,0r0,-4","w":261},"Z":{"d":"61,-8v94,14,136,-13,139,-101r5,0r0,109r-201,0r145,-225v0,-2,-4,-4,-12,-4v-83,-1,-85,16,-99,87r-5,0r0,-90r173,0","w":201},"[":{"d":"41,-24v0,28,18,16,49,20r0,4r-83,0r0,-232r83,0r0,3v-23,3,-49,-8,-49,20r0,185","w":117},"\\":{"d":"14,-232r91,232r-7,0r-91,-232r7,0","w":109},"]":{"d":"56,-209v1,-28,-18,-16,-49,-20r0,-3r83,0r0,232r-83,0r0,-4v31,-3,49,7,49,-20r0,-185","w":127},"^":{"d":"7,-204r35,-28r34,23r1,17r-37,-23r-33,23r0,-12","w":94},"_":{"d":"0,63r228,0r0,12r-228,0r0,-12","w":262},"`":{"d":"50,-192r-43,-40r35,0r16,40r-8,0","w":50},"a":{"d":"64,-1v37,-1,39,-45,36,-86v-6,7,-18,7,-29,9v-17,4,-24,20,-24,42v0,21,1,35,17,35xm101,-24v-9,38,-88,37,-88,-9v0,-42,49,-48,81,-54v11,-12,17,-71,-18,-63v-16,0,-30,7,-34,18v11,-4,19,7,19,17v0,10,-8,18,-18,18v-11,0,-19,-12,-19,-20v-1,-47,110,-51,110,-4r0,80v0,22,-2,38,14,38v21,-1,13,-38,15,-61v9,1,4,17,4,30v0,28,-4,37,-31,37v-22,0,-31,-8,-35,-27","w":166},"b":{"d":"100,-150v-34,5,-36,52,-36,95v0,33,7,55,36,55v25,0,28,-45,28,-76v-1,-41,-2,-68,-28,-74xm100,-154v38,0,66,39,65,78v0,38,-25,79,-61,79v-35,0,-39,-7,-55,-28v-7,9,-8,23,-18,28r0,-213v-1,-19,-11,-14,-35,-15r0,-4r68,-6r0,127v0,-20,16,-46,36,-46","w":170},"c":{"d":"9,-72v0,-42,33,-81,69,-82v30,0,55,14,55,42v0,10,-8,21,-20,21v-10,0,-17,-8,-17,-18v0,-10,7,-18,18,-18v-2,-15,-15,-23,-32,-23v-34,0,-35,33,-36,75v-1,39,9,73,38,73v34,0,51,-28,51,-63r4,0v0,41,-22,68,-62,68v-37,0,-68,-36,-68,-75","w":142},"d":{"d":"9,-76v0,-36,31,-78,67,-78v20,0,32,25,34,46r0,-102v-2,-24,-17,-12,-49,-15r0,-4r83,-6r0,214v0,19,12,11,33,14r0,3r-67,7r0,-53v0,25,-16,54,-40,53v-40,0,-61,-36,-61,-79xm77,-150v-33,4,-31,31,-31,74v0,38,0,76,28,76v43,-9,50,-141,3,-150","w":177},"e":{"d":"46,-74v0,41,5,73,37,73v31,0,53,-26,53,-57r4,0v0,37,-27,61,-64,61v-37,0,-67,-35,-67,-75v0,-42,29,-81,68,-82v44,0,62,34,62,80r-93,0xm109,-79v0,-31,-2,-71,-27,-71v-32,0,-36,33,-36,71r63,0","w":143},"f":{"d":"4,-4v22,-2,33,6,33,-14r0,-125r-33,0r0,-7r33,0v-5,-45,19,-85,56,-85v21,0,37,8,37,28v0,9,-7,19,-18,19v-20,1,-25,-33,-4,-35v-3,-6,-5,-9,-13,-9v-36,-3,-21,50,-24,82r33,0r0,7r-33,0r0,125v0,19,12,12,34,14r0,4r-101,0r0,-4","w":127},"g":{"d":"152,20v0,73,-148,71,-148,16v0,-16,20,-22,37,-27v-40,-4,-45,-71,1,-70v-49,-22,-13,-92,39,-92v10,0,20,3,28,6v-1,-23,1,-38,24,-36v7,0,14,6,14,13v0,8,-4,13,-12,13v-11,1,-16,-12,-10,-19v-14,0,-12,16,-12,31v16,8,31,22,31,44v-1,39,-56,60,-95,43v-17,0,-31,6,-31,22v5,16,39,11,64,11v40,0,70,10,70,45xm81,-56v25,0,31,-19,31,-47v0,-28,-6,-47,-31,-47v-24,0,-31,21,-31,47v0,30,4,47,31,47xm28,38v0,29,22,34,57,34v26,0,52,-12,52,-35v0,-28,-20,-29,-52,-29v-37,0,-57,0,-57,30","w":156},"h":{"d":"108,-4v13,-2,29,5,29,-14r0,-97v0,-21,-4,-35,-22,-35v-43,0,-38,79,-38,132v0,17,12,13,26,14r0,4r-96,0r0,-4v16,-3,36,7,36,-14r0,-188v0,-21,-9,-18,-35,-19r0,-4r69,-6r0,127v5,-24,18,-46,46,-46v28,0,48,14,48,41r0,95v-3,19,15,13,30,14r0,4r-93,0r0,-4","w":200},"i":{"d":"43,-129v-1,-21,-12,-12,-36,-15r0,-4r70,-5r0,135v0,21,12,11,35,14r0,4r-105,0r0,-4v16,-3,36,7,36,-14r0,-111xm37,-215v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20","w":115},"j":{"d":"49,-127v-1,-21,-10,-15,-37,-17r0,-3r70,-6r0,166v0,31,-29,62,-59,62v-21,0,-37,-8,-37,-28v0,-9,7,-19,19,-19v10,0,17,8,17,18v0,10,-7,17,-18,17v16,21,51,1,45,-29r0,-161xm43,-215v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":117},"k":{"d":"41,-210v-1,-19,-9,-14,-33,-15r0,-4r67,-6r0,163v17,-20,46,-38,56,-63v0,-12,-16,-15,-31,-15r0,-4r83,0r0,4v-34,-1,-45,26,-65,42r46,92v6,11,12,12,30,12r0,4r-88,0r0,-4v15,0,30,3,22,-13r-34,-67r-19,19v4,25,-15,69,25,61r0,4r-93,0r0,-4v22,-2,34,6,34,-14r0,-192","w":189},"l":{"d":"43,-210v-1,-19,-10,-14,-35,-15r0,-4r69,-6r0,217v0,21,12,11,35,14r0,4r-105,0r0,-4v16,-3,36,7,36,-14r0,-192","w":113},"m":{"d":"7,-4v14,-2,32,5,32,-14r0,-109v0,-19,-8,-17,-31,-17r0,-4r64,-6r0,46v3,-27,14,-46,43,-46v28,0,46,16,46,44v4,-26,15,-45,43,-44v25,0,47,16,47,41r0,95v-2,16,11,14,25,14r0,4r-85,0r0,-4v15,-1,25,3,25,-14r0,-91v0,-21,-2,-41,-19,-41v-43,0,-34,79,-36,132v-1,17,13,14,26,14r0,4r-85,0r0,-4v16,-1,26,4,25,-14r0,-91v0,-21,-3,-41,-20,-41v-43,0,-33,81,-35,132v-1,16,12,14,26,14r0,4r-91,0r0,-4","w":273},"n":{"d":"102,-4v13,-2,29,5,29,-14r0,-91v0,-21,-3,-41,-20,-41v-44,0,-38,79,-38,132v0,17,12,13,26,14r0,4r-92,0r0,-4v14,-2,34,6,32,-14v-2,-40,2,-87,-4,-124v-2,-2,-11,-2,-27,-2r0,-4r65,-6r0,46v4,-25,16,-46,45,-46v26,0,47,16,47,41r0,95v-2,18,14,13,29,14r0,4r-92,0r0,-4","w":193},"o":{"d":"156,-76v0,42,-35,79,-74,79v-43,0,-73,-36,-73,-79v0,-41,35,-78,73,-78v40,0,74,36,74,78xm46,-76v0,43,1,76,36,76v32,0,36,-37,36,-76v0,-42,-2,-74,-36,-74v-32,0,-36,35,-36,74","w":161},"p":{"d":"36,-129v-2,-18,-12,-13,-36,-15r0,-4r69,-6r0,52v3,-25,16,-52,40,-52v40,0,61,36,61,79v0,36,-31,78,-67,78v-20,0,-31,-23,-34,-44r0,99v1,19,13,11,36,14r0,3r-105,0r0,-3v16,-2,36,5,36,-14r0,-187xm102,-1v33,-4,31,-31,31,-74v0,-38,0,-75,-28,-75v-45,0,-49,140,-3,149","w":174},"q":{"d":"74,3v-38,0,-66,-39,-65,-78v0,-38,25,-79,61,-79v34,1,39,8,55,28r15,-28r4,0r0,212v0,20,13,11,35,14r0,3r-105,0r0,-3v16,-3,36,6,36,-15r0,-99v0,20,-16,45,-36,45xm74,-1v34,-5,36,-52,36,-95v0,-33,-7,-54,-36,-54v-25,0,-28,44,-28,75v1,40,3,67,28,74","w":171},"r":{"d":"43,-129v-1,-21,-11,-13,-36,-15r0,-4r70,-5r0,45v-3,-41,68,-67,68,-18v0,11,-7,22,-20,22v-11,0,-17,-9,-17,-21v0,-8,7,-20,16,-18v-1,-5,-6,-7,-13,-7v-41,10,-34,79,-34,132v0,21,12,11,35,14r0,4r-105,0r0,-4v16,-3,36,7,36,-14r0,-111","w":141},"s":{"d":"18,-60v11,37,16,59,59,60v16,0,27,-9,27,-25v0,-25,-18,-30,-43,-35v-28,-6,-51,-19,-51,-49v0,-45,56,-53,84,-34v9,-7,15,-11,15,-11r0,54r-3,0v-6,-24,-23,-50,-49,-50v-20,0,-33,8,-33,27v0,46,107,20,98,83v5,47,-70,56,-92,26r-15,17r0,-63r3,0","w":125},"t":{"d":"84,-3v28,2,21,-42,22,-74v9,1,1,21,5,33v0,33,-6,47,-37,47v-65,0,-36,-87,-42,-142r-28,0r0,-4v34,-8,55,-41,55,-83r7,0r0,76r42,0r0,11r-42,0r0,98v0,23,1,38,18,38","w":111},"u":{"d":"83,-4v45,0,42,-74,39,-127v-1,-22,-10,-12,-38,-15r0,-4r72,-4v2,46,-3,100,3,142v2,2,12,3,28,3r0,3r-65,6r0,-46v-4,23,-20,46,-47,46v-61,0,-43,-79,-43,-134v0,-17,-15,-11,-32,-12r0,-4r66,-4r0,119v0,19,2,31,17,31","w":187},"v":{"d":"25,-136v-3,-14,-8,-14,-25,-14r0,-4r83,0r0,4v-7,0,-25,-1,-25,5v11,34,24,67,36,100v9,-29,28,-58,28,-90v0,-10,-8,-15,-24,-15r0,-4r61,0r0,4v-27,3,-28,11,-38,40r-39,112r-7,0","w":154},"w":{"d":"171,-150v-10,0,-33,-2,-23,12r28,93v9,-29,28,-58,28,-90v0,-10,-8,-15,-24,-15r0,-4r60,0r0,4v-27,3,-28,11,-38,40r-38,112r-7,0r-34,-114r-33,114r-8,0r-52,-138v-5,-14,-9,-14,-30,-14r0,-4r86,0r0,4v-10,0,-33,-2,-23,12r35,95r23,-77v-6,-15,-4,-35,-30,-30r0,-4r80,0r0,4","w":234},"x":{"d":"93,-150v-12,0,-32,-2,-22,14r24,39v8,-12,25,-27,25,-42v0,-7,-7,-11,-20,-11r0,-4r64,0r0,4v-38,-1,-47,35,-66,57r47,76v8,13,8,13,30,13r0,4r-93,0r0,-4v24,-1,33,1,25,-13r-30,-47v-9,14,-24,29,-29,46v0,9,9,14,28,14r0,4r-76,0r0,-4v40,-2,56,-39,75,-64r-42,-68v-8,-12,-12,-14,-33,-14r0,-4r93,0r0,4","w":171},"y":{"d":"33,68v35,14,38,-38,51,-64r-52,-140v-3,-14,-8,-14,-25,-14r0,-4r83,0r0,4v-7,0,-25,-1,-25,5v11,34,24,67,36,100r29,-90v0,-10,-9,-15,-25,-15r0,-4r61,0r0,4v-27,3,-27,12,-38,40v-21,56,-37,125,-64,175v-11,19,-52,13,-52,-15v0,-9,7,-18,18,-18v19,-1,25,35,3,36","w":162},"z":{"d":"48,-5v59,10,91,-14,92,-71r4,0r0,76r-137,0r102,-148v-49,-8,-78,7,-80,60r-3,0r0,-66r124,0","w":149},"{":{"d":"25,-80v14,3,32,20,32,33r0,76v0,26,-2,43,20,43r0,3v-33,0,-53,-9,-53,-40v0,-38,15,-102,-17,-113r0,-4v50,-21,-28,-163,70,-153r0,3v-53,7,17,144,-52,152","w":97},"|":{"d":"14,-232r10,0r0,307r-10,0r0,-307","w":62},"}":{"d":"60,-80v-14,-3,-32,-20,-32,-33r0,-76v0,-26,1,-43,-21,-43r0,-3v33,0,53,10,53,41r0,85v0,16,4,24,17,27r0,4v-50,21,28,164,-70,153r0,-3v22,0,21,-16,21,-43r0,-76v-2,-14,20,-32,32,-33","w":97},"~":{"d":"82,-195v-14,-1,-36,-17,-49,-17v-13,0,-16,22,-26,16v16,-21,19,-32,41,-36v26,4,56,29,70,-1r4,2v-18,22,-18,31,-40,36","w":155}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ?1990, 1991, 1992, 1994, 1997, 1998, 2000, 2002, 2004 Adobe Systems
 * Incorporated. All rights reserved.
 * 
 * Trademark:
 * Minion is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MinionPro-Regular
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach
 * 
 * Vendor URL:
 * http://www.adobe.com/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":172,"face":{"font-family":"MinionPro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 4 5 3 5 2 1 2 2 3","ascent":"262","descent":"-98","x-height":"4","bbox":"-8.88889 -270 344 93.2494","underline-thickness":"18","underline-position":"-18","stemh":"12","stemv":"28","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":81},"!":{"d":"49,-239v28,0,19,14,17,39v-4,41,-8,83,-11,129v-2,3,-11,3,-12,0r-13,-158v0,-8,6,-10,19,-10xm49,4v-11,0,-20,-8,-20,-21v0,-12,8,-21,20,-21v12,0,21,9,21,21v0,13,-9,21,-21,21","w":99},"\"":{"d":"15,-246v10,-2,22,-12,30,-8v-1,8,-6,57,-9,79r-10,4v-4,-33,-10,-70,-11,-75xm69,-246v10,-2,21,-12,30,-8v-1,9,-7,57,-10,79r-10,4v-4,-33,-9,-70,-10,-75","w":114},"#":{"d":"161,-163r-3,21r-33,0r-11,49r31,0r-3,21r-32,0r-14,62r-14,0r14,-62r-39,0r-14,62r-13,0r13,-62r-34,0r4,-21r35,0r11,-49r-34,0r3,-21r35,0r13,-56r13,0r-12,56r39,0r12,-56r14,0r-12,56r31,0xm112,-142r-39,0r-11,49r39,0"},"$":{"d":"95,-131v30,11,61,28,61,64v0,34,-23,58,-61,63r0,31r-13,0r0,-30v-21,0,-42,-6,-56,-15v-3,-8,-7,-29,-10,-48r11,-2v6,21,20,49,55,53r0,-87v-28,-12,-59,-27,-58,-61v0,-28,19,-54,58,-58r0,-28r13,0r0,27v17,0,30,5,44,7v2,12,5,25,8,45r-10,3v-6,-21,-14,-39,-42,-43r0,79xm82,-135r0,-75v-47,6,-41,66,0,75xm95,-98r0,83v46,-9,45,-70,0,-83"},"%":{"d":"214,-226r-146,238r-11,-9r145,-238xm70,-229v70,0,71,131,-1,131v-36,0,-51,-37,-51,-65v0,-29,15,-66,52,-66xm69,-218v-22,0,-25,37,-25,55v0,18,4,54,26,54v23,0,25,-37,25,-54v0,-18,-3,-55,-26,-55xm204,-126v36,0,52,36,52,65v0,29,-16,65,-52,65v-36,0,-52,-37,-52,-65v0,-29,15,-65,52,-65xm204,-116v-22,0,-26,36,-26,55v0,18,4,55,26,55v22,0,25,-38,25,-55v0,-19,-3,-55,-25,-55","w":272},"&":{"d":"176,-78v8,-19,52,-63,0,-66r0,-10r82,0r0,10v-47,5,-47,44,-73,75v15,15,48,51,59,72r-3,3v-50,-6,-45,-20,-75,-48v-26,35,-50,47,-76,47v-45,0,-71,-34,-71,-65v0,-33,23,-48,54,-70v-45,-33,-23,-108,34,-107v29,0,53,21,53,50v0,33,-21,34,-44,53v12,10,37,32,60,56xm103,-225v-17,0,-30,14,-30,36v0,19,11,31,33,48v17,-13,27,-27,27,-46v0,-21,-12,-38,-30,-38xm50,-71v2,69,85,61,108,19v-19,-21,-42,-43,-75,-70v-24,17,-33,33,-33,51","w":255},"(":{"d":"108,53r-6,8v-103,-67,-104,-249,0,-317r6,9v-75,58,-75,242,0,300","w":124,"k":{"J":-6}},")":{"d":"23,-256v102,68,103,248,0,317r-7,-8v76,-58,75,-242,0,-300","w":124},"*":{"d":"131,-177r-47,9r14,49r-9,3r-25,-46r-44,27r-5,-8r37,-33r-38,-37r6,-8r43,29r21,-47r9,2r-10,50r48,1r0,9","w":145},"+":{"d":"190,-83r-75,0r0,83r-21,0r0,-83r-75,0r0,-18r75,0r0,-74r21,0r0,74r75,0r0,18","w":208},",":{"d":"34,-47v13,0,33,14,33,39v0,28,-25,43,-47,50r-4,-10v34,-8,37,-48,5,-55v-9,-6,0,-27,13,-24","w":82},"-":{"d":"108,-91r-5,20r-82,0r5,-20r82,0","w":128},".":{"d":"41,4v-11,0,-20,-8,-20,-21v0,-12,8,-20,20,-20v12,0,20,8,20,20v0,13,-8,21,-20,21","w":82},"\/":{"d":"107,-239r-78,255r-20,0r78,-255r20,0","w":119},"0":{"d":"87,-229v54,0,72,62,72,117v0,53,-19,116,-73,116v-54,0,-73,-59,-73,-116v0,-52,19,-117,74,-117xm86,-217v-58,2,-56,207,0,209v57,-2,57,-207,0,-209"},"1":{"d":"138,0r-99,0r0,-10v32,-3,35,-5,35,-31r0,-139v4,-26,-15,-20,-35,-21r0,-9v23,-4,44,-11,64,-19r0,188v0,26,2,28,35,31r0,10"},"2":{"d":"12,-8v37,-40,102,-88,102,-149v0,-30,-16,-47,-42,-47v-24,0,-40,19,-49,33r-8,-7v16,-23,31,-51,69,-51v32,0,61,23,61,61v0,51,-68,105,-99,142v42,-6,89,18,102,-24r10,3v-5,15,-8,31,-12,47r-134,0r0,-8"},"3":{"d":"138,-181v0,24,-19,31,-35,46v32,6,50,28,50,54v0,58,-69,85,-95,85v-30,0,-53,-20,-33,-37v17,-3,26,19,53,19v26,0,44,-20,44,-55v0,-42,-36,-54,-69,-43r-2,-10v33,-11,57,-24,57,-51v0,-22,-15,-34,-34,-34v-20,0,-34,15,-43,28r-8,-7v13,-20,30,-43,62,-43v32,0,53,21,53,48"},"4":{"d":"164,-64r-34,0v2,31,-11,56,30,54r0,10r-92,0r0,-10v44,1,31,-21,33,-54r-94,0r0,-10v34,-51,71,-105,108,-154r15,0r0,147r34,0r0,17xm101,-81r-1,-106v-23,32,-46,66,-70,106r71,0"},"5":{"d":"61,4v-28,0,-56,-18,-35,-36v18,-4,25,18,54,18v30,0,45,-26,45,-53v0,-47,-56,-67,-95,-47r13,-110r103,0v4,7,-6,17,-7,26r-84,0r-9,67v48,-28,114,5,109,50v4,41,-54,85,-94,85"},"6":{"d":"49,-123v40,-34,112,-13,112,48v0,43,-31,79,-74,79v-42,0,-74,-35,-74,-90v0,-102,65,-131,139,-145r2,12v-52,13,-84,28,-105,96xm130,-62v0,-45,-45,-75,-82,-50v-11,45,8,104,45,104v28,0,37,-30,37,-54"},"7":{"d":"161,-224r3,4r-102,221v-9,-1,-25,7,-29,-1v38,-62,78,-135,107,-198v-44,7,-106,-20,-113,27r-10,0v3,-20,5,-38,6,-53r138,0"},"8":{"d":"16,-57v1,-35,23,-39,48,-57v-59,-24,-48,-115,26,-115v34,0,58,24,58,54v0,30,-11,31,-39,52v25,14,48,31,48,62v-1,84,-144,87,-141,4xm121,-174v2,-60,-70,-51,-69,-6v0,27,21,38,47,51v12,-10,22,-23,22,-45xm45,-59v0,63,83,71,83,8v0,-27,-26,-43,-54,-57v-17,12,-29,29,-29,49"},"9":{"d":"88,-229v45,0,70,41,70,90v0,84,-57,138,-135,144r-2,-10v52,-9,91,-45,103,-100v-39,35,-110,15,-110,-47v0,-35,27,-77,74,-77xm82,-217v-57,7,-44,110,11,110v13,0,24,-4,32,-10v6,-42,-1,-97,-43,-100"},":":{"d":"42,-148v11,0,19,8,19,20v0,12,-8,21,-20,21v-12,0,-20,-9,-20,-21v0,-12,9,-20,21,-20xm41,4v-11,0,-19,-8,-19,-21v0,-12,8,-20,19,-20v12,0,21,8,21,20v0,13,-9,21,-21,21","w":82},";":{"d":"41,-148v11,0,20,8,20,20v0,12,-8,21,-20,21v-12,0,-20,-9,-20,-21v0,-12,8,-20,20,-20xm34,-47v13,0,33,14,33,39v0,28,-25,43,-47,50r-4,-10v32,-8,38,-48,5,-55v-9,-6,0,-27,13,-24","w":82},"<":{"d":"177,0r-155,-83r0,-17r155,-83r0,21r-134,71r134,71r0,20","w":198},"=":{"d":"190,-116r-171,0r0,-18r171,0r0,18xm190,-50r-171,0r0,-18r171,0r0,18","w":208},">":{"d":"177,-83r-155,83r0,-20r134,-71r-134,-71r0,-21r155,83r0,17","w":198},"?":{"d":"120,-182v0,35,-58,45,-58,75v0,12,6,20,17,29r-7,9v-14,-5,-40,-25,-40,-47v-5,-26,66,-53,66,-81v0,-40,-61,-4,-62,0v-5,0,-15,-7,-15,-16v21,-50,99,-20,99,31xm66,4v-11,0,-19,-8,-19,-21v0,-12,9,-20,20,-20v11,0,19,8,19,20v0,13,-8,21,-20,21","w":136},"@":{"d":"80,-57v-2,-44,48,-109,105,-91v5,1,8,1,12,1v-6,23,-12,52,-17,82v-4,19,-2,23,7,23v24,-1,52,-25,52,-74v0,-50,-36,-78,-85,-78v-67,0,-112,49,-112,116v0,48,25,97,97,97v21,0,47,-9,57,-14r4,10v-78,46,-180,14,-181,-90v0,-84,68,-133,137,-133v64,0,101,43,101,92v0,49,-37,89,-85,89v-29,1,-13,-28,-13,-46v-12,18,-44,46,-61,46v-9,0,-18,-9,-18,-30xm172,-133v-43,-17,-62,28,-64,67v0,13,3,16,7,16v6,0,26,-13,48,-43v4,-12,7,-29,9,-40","w":271},"A":{"d":"242,0r-88,0r0,-10v23,-3,26,-6,21,-20v-5,-14,-11,-33,-19,-55r-77,0v-6,16,-11,31,-16,46v-8,23,-4,26,23,29r0,10r-79,0r0,-10v23,-3,28,-6,41,-38r74,-188r11,-3r70,193v11,31,16,34,39,36r0,10xm150,-101r-32,-92r-34,92r66,0","w":248,"k":{"b":11,"f":1,"i":1,"m":1,"n":1,"r":1,"g":5,"h":-1,"k":-1,"l":-1,"j":15,"p":15,"t":15,"u":15,"s":6,"v":24,"w":24,"y":24,"a":4,"-":16,"J":6,"c":9,"d":9,"e":9,"o":9,"q":9,"C":10,"G":10,"O":10,"Q":10,"S":1,"T":24,"U":21,"V":35,"W":35,"x":1,"Y":28}},"B":{"d":"16,-234v70,2,167,-16,167,53v0,35,-31,46,-49,55v36,5,63,21,63,57v-2,75,-100,72,-184,69r0,-10v31,-2,33,-4,33,-34r0,-146v0,-30,-1,-32,-30,-34r0,-10xm102,-222v-19,0,-25,-3,-25,21r0,71v44,3,72,-10,72,-46v0,-24,-13,-46,-47,-46xm77,-118v5,40,-18,106,30,106v29,0,55,-15,55,-53v0,-42,-35,-56,-85,-53","w":211,"k":{"f":3,"i":3,"m":3,"n":3,"r":3,"h":2,"k":2,"l":2,"j":3,"p":3,"t":3,"u":3,"v":3,"w":3,"y":3,"a":-3,"c":-7,"d":-7,"e":-7,"o":-7,"q":-7,"C":-7,"G":-7,"O":-7,"Q":-7,"T":4,"U":6,"V":8,"W":8,",":6,".":6,"A":9,"B":1,"D":1,"E":1,"F":1,"H":1,"I":1,"K":1,"L":1,"N":1,"P":1,"R":1}},"C":{"d":"221,-63r10,4v-5,17,-14,43,-20,55v-10,2,-40,9,-66,9v-90,0,-129,-62,-129,-119v0,-99,108,-146,202,-116v3,20,5,35,7,54r-10,3v-10,-38,-31,-53,-70,-53v-60,0,-92,50,-92,105v0,67,39,113,94,113v37,0,56,-19,74,-55","w":239,"k":{"h":-2,"k":-2,"l":-2,"j":5,"p":5,"t":5,"u":5,"v":4,"w":4,"y":4,"a":-3,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"C":-3,"G":-3,"O":-3,"Q":-3}},"D":{"d":"248,-126v2,117,-110,134,-236,126r0,-10v31,-2,34,-4,34,-35r0,-144v0,-31,-3,-33,-31,-35r0,-10r101,0v82,0,131,31,132,108xm109,-222v-27,1,-32,-4,-32,25r0,150v0,27,12,34,38,34v67,0,98,-50,98,-108v0,-60,-39,-105,-104,-101","w":264,"k":{"b":-1,"h":1,"k":1,"l":1,"j":-2,"p":-2,"t":-2,"u":-2,"s":2,"v":-6,"w":-6,"y":-6,"a":-2,"J":6,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"C":-6,"G":-6,"O":-6,"Q":-6,"T":2,"U":4,"V":6,"W":6,"x":3,"Y":11,",":14,".":14,"A":13,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"z":1,"M":5,"X":10}},"E":{"d":"123,-12v49,1,48,-15,63,-46r11,1v-2,12,-10,46,-13,57r-174,0r0,-10v33,-3,36,-5,36,-35r0,-143v0,-32,-3,-34,-31,-36r0,-10r161,0v0,9,2,34,3,52r-11,1v-3,-41,-28,-42,-79,-41v-11,0,-12,2,-12,12r0,82v33,-2,77,9,72,-27r11,0r0,69r-11,0v1,-39,-37,-26,-72,-28r0,68v-1,36,12,33,46,34","w":204,"k":{"b":1,"g":3,"h":-2,"k":-2,"l":-2,"j":8,"p":8,"t":8,"u":8,"s":-1,"v":7,"w":7,"y":7,"a":-5,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"T":1,"V":4,"W":4,"x":-2,"Y":4}},"F":{"d":"167,-180v-3,-41,-28,-44,-78,-42v-11,0,-12,2,-12,12r0,85v33,-2,80,10,76,-26r10,0r0,69r-10,0v3,-38,-40,-27,-76,-29v7,42,-23,109,35,101r0,10r-98,0r0,-10v29,-2,32,-4,32,-35r0,-144v0,-31,-3,-33,-31,-35r0,-10r159,0v0,13,2,36,3,53","w":190,"k":{"f":6,"i":6,"m":6,"n":6,"r":6,"j":7,"p":7,"t":7,"u":7,"v":1,"w":1,"y":1,"a":7,"-":7,"c":7,"d":7,"e":7,"o":7,"q":7,",":40,".":40,"A":28,":":2,";":2}},"G":{"d":"153,-7v24,0,44,-2,42,-30v-2,-37,14,-64,-37,-62r0,-10r91,0r0,10v-41,-1,-19,55,-20,91v-22,5,-52,13,-81,13v-79,0,-132,-49,-132,-121v0,-110,117,-141,207,-113v1,13,2,32,5,56r-10,2v-9,-44,-35,-56,-70,-56v-55,0,-95,41,-95,107v0,52,31,113,100,113","w":257,"k":{"f":3,"i":3,"m":3,"n":3,"r":3,"h":1,"k":1,"l":1,"j":6,"p":6,"t":6,"u":6,"v":3,"w":3,"y":3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3}},"H":{"d":"262,-234r0,10v-30,3,-32,4,-32,34r0,146v0,30,3,32,32,34r0,10r-96,0r0,-10v57,6,24,-65,33,-106r-122,0v8,41,-23,112,32,106r0,10r-95,0r0,-10v29,-2,32,-4,32,-34r0,-146v0,-30,-2,-32,-32,-34r0,-10r93,0r0,10v-48,-6,-24,56,-30,93r122,0v-5,-38,18,-99,-31,-93r0,-10r94,0","w":275,"k":{"f":6,"i":6,"m":6,"n":6,"r":6,"g":10,"j":14,"p":14,"t":14,"u":14,"s":8,"v":12,"w":12,"y":12,"a":9,"c":9,"d":9,"e":9,"o":9,"q":9,"C":4,"G":4,"O":4,"Q":4,"x":2,"A":13,"z":4}},"I":{"d":"109,0r-95,0r0,-10v30,-2,32,-4,32,-35r0,-144v0,-31,-2,-33,-32,-35r0,-10r95,0r0,10v-30,2,-32,4,-32,35r0,144v0,31,2,33,32,35r0,10","w":122,"k":{"f":6,"i":6,"m":6,"n":6,"r":6,"g":10,"j":14,"p":14,"t":14,"u":14,"s":8,"v":12,"w":12,"y":12,"a":9,"c":9,"d":9,"e":9,"o":9,"q":9,"C":4,"G":4,"O":4,"Q":4,"x":2,"A":13,"z":4}},"J":{"d":"10,49v62,-30,38,-150,38,-238v0,-30,-3,-33,-32,-35r0,-10r93,0r0,10v-28,2,-31,5,-31,35v0,100,24,225,-64,248","w":118,"k":{"f":12,"i":12,"m":12,"n":12,"r":12,"j":12,"p":12,"t":12,"u":12,"v":8,"w":8,"y":8,"a":10,"c":8,"d":8,"e":8,"o":8,"q":8,"C":2,"G":2,"O":2,"Q":2,",":15,".":15,"A":13}},"K":{"d":"240,0r-55,0v-28,-31,-57,-67,-89,-105v-9,-10,-14,-10,-20,-9v6,41,-21,110,33,104r0,10r-93,0r0,-10v27,-2,30,-5,30,-36r0,-141v0,-33,-3,-35,-31,-37r0,-10r93,0r0,10v-51,-6,-26,60,-32,100v34,-14,63,-56,86,-80v16,-17,2,-19,-14,-20r0,-10r86,0r0,10v-59,6,-76,52,-122,90v27,34,67,79,85,98v19,21,26,24,43,26r0,10","w":242,"k":{"f":3,"i":3,"m":3,"n":3,"r":3,"h":-3,"k":-3,"l":-3,"j":17,"p":17,"t":17,"u":17,"v":28,"w":28,"y":28,"a":4,"c":9,"d":9,"e":9,"o":9,"q":9,"C":13,"G":13,"O":13,"Q":13,"A":4}},"L":{"d":"120,-12v42,2,46,-15,58,-47r11,2v-2,11,-10,46,-13,57r-163,0r0,-10v30,-2,33,-4,33,-35r0,-144v0,-31,-2,-33,-32,-35r0,-10r94,0r0,10v-28,2,-31,4,-31,35r0,142v-1,37,11,34,43,35","w":193,"k":{"f":-2,"i":-2,"m":-2,"n":-2,"r":-2,"h":-3,"k":-3,"l":-3,"j":8,"p":8,"t":8,"u":8,"v":16,"w":16,"y":16,"a":-5,"-":3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"C":3,"G":3,"O":3,"Q":3,"T":23,"U":14,"V":28,"W":28,"Y":24,"A":-3}},"M":{"d":"310,0r-95,0r0,-10v30,-3,31,-5,31,-43r-3,-147r-88,197r-7,0r-81,-192r-7,163v1,17,9,19,33,22r0,10r-84,0r0,-10v47,-9,28,-29,38,-88v-4,-42,31,-134,-26,-126r0,-10r59,0r82,180r83,-180r61,0r0,10v-32,3,-34,4,-33,41r3,130v1,38,3,40,34,43r0,10","w":320,"k":{"f":3,"i":3,"m":3,"n":3,"r":3,"j":12,"p":12,"t":12,"u":12,"v":12,"w":12,"y":12,"a":6,"c":9,"d":9,"e":9,"o":9,"q":9,"C":3,"G":3,"O":3,"Q":3}},"N":{"d":"212,-142v-5,-58,13,-78,-38,-82r0,-10r85,0r0,10v-45,5,-33,27,-33,82r0,145r-11,0r-154,-188r0,90v4,59,-12,80,37,85r0,10r-85,0r0,-10v45,-4,33,-29,33,-85r0,-79v1,-43,-8,-44,-39,-50r0,-10r53,0r152,181r0,-89","w":267,"k":{"b":-1,"f":8,"i":8,"m":8,"n":8,"r":8,"g":10,"h":-2,"k":-2,"l":-2,"j":13,"p":13,"t":13,"u":13,"s":10,"v":11,"w":11,"y":11,"a":9,"c":9,"d":9,"e":9,"o":9,"q":9,"C":3,"G":3,"O":3,"Q":3,"x":3,"A":14,"z":5}},"O":{"d":"137,-239v61,0,116,47,116,119v0,78,-54,125,-120,125v-65,0,-117,-50,-117,-119v0,-65,45,-125,121,-125xm216,-110v0,-142,-162,-162,-163,-15v0,68,36,117,87,117v40,0,76,-33,76,-102","w":268,"k":{"b":-1,"h":1,"k":1,"l":1,"j":-2,"p":-2,"t":-2,"u":-2,"s":2,"v":-6,"w":-6,"y":-6,"a":-2,"J":6,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"C":-6,"G":-6,"O":-6,"Q":-6,"T":2,"U":4,"V":6,"W":6,"x":3,"Y":11,",":14,".":14,"A":13,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"z":1,"M":5,"X":10}},"P":{"d":"17,-234v78,1,174,-14,172,66v-1,62,-61,85,-113,67v5,41,-18,99,36,91r0,10r-98,0r0,-10v29,-2,32,-5,32,-35r0,-144v0,-32,-2,-33,-29,-35r0,-10xm100,-222v-19,0,-24,0,-24,21r0,88v37,10,78,4,79,-54v0,-39,-25,-55,-55,-55","w":202,"k":{"f":3,"i":3,"m":3,"n":3,"r":3,"h":2,"k":2,"l":2,"s":10,"v":-4,"w":-4,"y":-4,"a":8,"-":18,"c":12,"d":12,"e":12,"o":12,"q":12,",":50,".":50,"A":31,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,":":2,";":2}},"Q":{"d":"259,50r-3,7v-69,-4,-56,-8,-128,-52v-53,-1,-112,-52,-112,-118v0,-66,45,-126,122,-126v60,0,115,48,115,120v0,64,-40,105,-82,118v22,15,55,36,88,51xm125,-9v12,-3,26,-13,34,-1v29,-8,57,-41,57,-99v0,-143,-162,-163,-163,-14v0,61,30,105,72,114","w":268,"k":{"b":-1,"h":1,"k":1,"l":1,"j":-2,"p":-2,"t":-2,"u":-2,"s":2,"v":-6,"w":-6,"y":-6,"a":-2,"J":6,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"C":-6,"G":-6,"O":-6,"Q":-6,"T":2,"U":4,"V":6,"W":6,"x":3,"Y":11,",":14,".":14,"A":13,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"z":1,"M":5,"X":10}},"R":{"d":"140,-113v21,32,49,95,87,107r-1,9v-65,8,-81,-55,-108,-91v-5,-13,-21,-15,-42,-14v5,38,-17,99,32,92r0,10r-94,0r0,-10v30,-2,32,-4,32,-35r0,-145v0,-31,-3,-31,-31,-34r0,-10v74,2,173,-17,171,59v0,31,-20,50,-46,62xm100,-222v-19,0,-24,-2,-24,19r0,89v48,5,77,-15,76,-55v0,-39,-25,-53,-52,-53","w":223,"k":{"f":-1,"i":-1,"m":-1,"n":-1,"r":-1,"h":-4,"k":-4,"l":-4,"j":8,"p":8,"t":8,"u":8,"v":12,"w":12,"y":12,"a":-6,"-":15,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"C":3,"G":3,"O":3,"Q":3,"T":12,"U":13,"V":18,"W":18,"Y":16,",":-5,".":-5,"A":-1,"X":-7}},"S":{"d":"128,-51v0,-62,-103,-50,-106,-124v-2,-51,68,-78,119,-56v1,13,3,27,6,50r-10,1v-6,-23,-16,-47,-47,-47v-28,0,-40,20,-40,39v1,62,108,54,108,125v0,57,-83,87,-134,55v-3,-8,-6,-38,-9,-55r11,-3v5,22,22,58,59,58v27,0,43,-17,43,-43","w":170,"k":{"f":2,"i":2,"m":2,"n":2,"r":2,"h":2,"k":2,"l":2,"j":5,"p":5,"t":5,"u":5,"v":6,"w":6,"y":6,"J":5,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"T":4,"U":6,"Y":6,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"M":4}},"T":{"d":"96,-222v-58,-1,-69,1,-75,44r-11,0v2,-22,3,-45,4,-65v14,-1,13,12,27,9r143,0v13,2,12,-9,25,-9v0,17,2,43,4,64r-11,1v-6,-43,-21,-45,-75,-44r0,178v0,28,2,32,36,34r0,10r-103,0r0,-10v33,-2,36,-6,36,-34r0,-178","w":222,"k":{"t":35,"j":35,"i":30,"f":30,"m":30,"n":30,"r":30,"p":35,"u":35,"s":34,"v":26,"w":26,"y":26,"a":33,"-":20,"c":35,"d":35,"e":35,"o":35,"q":35,"C":3,"G":3,"O":3,"Q":3,"S":-3,"T":-10,"V":-10,"W":-10,"Y":-11,",":36,".":36,"A":26,"z":25,":":12,";":12,"M":3,"X":-9}},"U":{"d":"210,-117v0,-64,20,-106,-38,-107r0,-10r86,0r0,10v-54,0,-34,48,-34,109v0,71,-29,120,-92,120v-59,0,-89,-37,-89,-103r0,-90v0,-32,-3,-33,-31,-36r0,-10r93,0r0,10v-55,-5,-23,76,-31,118v0,58,22,92,67,92v52,0,69,-44,69,-103","w":264,"k":{"f":15,"i":15,"m":15,"n":15,"r":15,"g":16,"h":2,"k":2,"l":2,"j":14,"p":14,"t":14,"u":14,"s":19,"v":11,"w":11,"y":11,"a":16,"c":13,"d":13,"e":13,"o":13,"q":13,"x":19,",":27,".":27,"A":28,"z":17,"M":5}},"V":{"d":"247,-234r0,10v-24,3,-29,6,-43,38v-10,24,-47,115,-74,190r-12,0v-24,-66,-53,-144,-74,-196v-10,-27,-16,-30,-38,-32r0,-10r88,0r0,10v-26,3,-27,5,-21,21r61,158v18,-45,45,-116,57,-152v7,-21,4,-23,-25,-27r0,-10r81,0","w":253,"k":{"t":32,"j":32,"i":31,"f":31,"m":31,"n":31,"r":31,"h":4,"k":4,"l":4,"p":32,"u":32,"v":27,"w":27,"y":27,"a":36,"-":23,"c":35,"d":35,"e":35,"o":35,"q":35,"C":13,"G":13,"O":13,"Q":13,"S":12,"T":-6,",":52,".":52,"A":44,")":-1,"]":-1,"}":-1,":":26,";":26}},"W":{"d":"344,-234r0,10v-25,3,-28,6,-39,36v-8,23,-29,91,-59,192r-11,0r-64,-180v-20,63,-41,122,-59,180r-11,0r-59,-193v-9,-30,-14,-32,-36,-35r0,-10r87,0r0,10v-26,3,-26,7,-21,25v14,49,28,97,44,148v19,-61,41,-121,59,-180r10,0r64,180v15,-48,35,-118,40,-144v5,-22,4,-26,-24,-29r0,-10r79,0","w":349,"k":{"t":32,"j":32,"i":31,"f":31,"m":31,"n":31,"r":31,"h":4,"k":4,"l":4,"p":32,"u":32,"v":27,"w":27,"y":27,"a":36,"-":23,"c":35,"d":35,"e":35,"o":35,"q":35,"C":13,"G":13,"O":13,"Q":13,"S":12,"T":-6,",":52,".":52,"A":44,")":-1,"]":-1,"}":-1,":":26,";":26}},"X":{"d":"236,0r-95,0r0,-10v22,-3,25,-6,18,-18r-47,-77v-18,27,-32,52,-44,73v-9,15,-7,19,17,22r0,10r-82,0r0,-10v21,-2,32,-7,42,-21v9,-11,27,-37,59,-86r-49,-77v-15,-23,-20,-27,-46,-30r0,-10r89,0r0,10v-22,3,-22,6,-17,15v12,21,25,42,41,66v15,-23,26,-41,36,-59v9,-16,7,-19,-17,-22r0,-10r82,0r0,10v-60,12,-50,35,-93,92r56,89v17,25,25,30,50,33r0,10","w":235,"k":{"f":-4,"i":-4,"m":-4,"n":-4,"r":-4,"j":13,"p":13,"t":13,"u":13,"v":19,"w":19,"y":19,"c":5,"d":5,"e":5,"o":5,"q":5,"C":11,"G":11,"O":11,"Q":11,"S":-3,"T":1,"V":5,"W":5,"Y":3,"A":-9,"X":-8}},"Y":{"d":"223,-234r0,10v-25,3,-30,6,-43,29v-23,40,-51,75,-51,150v0,30,3,33,36,35r0,10r-102,0r0,-10v52,7,30,-44,35,-83v-9,-37,-37,-68,-53,-100v-13,-25,-18,-29,-40,-31r0,-10r86,0r0,10v-26,3,-24,8,-18,20v15,29,34,58,49,85v13,-24,33,-59,43,-81v8,-18,7,-21,-21,-24r0,-10r79,0","w":228,"k":{"t":36,"j":36,"i":32,"f":32,"m":32,"n":32,"r":32,"h":3,"k":3,"l":3,"p":36,"u":36,"v":32,"w":32,"y":32,"a":41,"-":31,"c":44,"d":44,"e":44,"o":44,"q":44,"C":16,"G":16,"O":16,"Q":16,"S":10,"T":-7,"V":-5,"W":-5,"Y":-2,",":42,".":42,"A":37,")":-1,"]":-1,"}":-1,":":30,";":30,"M":6}},"Z":{"d":"114,-13v74,0,68,-7,88,-50r10,2v-3,13,-9,46,-13,61r-186,0r-3,-5r152,-216r-63,0v-62,1,-46,7,-63,44r-10,0v2,-23,3,-50,4,-66v15,-1,12,9,28,9r143,0r3,5r-149,214v12,1,34,2,59,2","w":217,"k":{"f":-5,"i":-5,"m":-5,"n":-5,"r":-5,"j":3,"p":3,"t":3,"u":3,"v":13,"w":13,"y":13,"a":-7,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"A":-4}},"[":{"d":"104,59r-61,0r0,-312r61,0r0,10v-38,3,-39,5,-39,33r0,226v0,28,0,30,39,33r0,10","w":124,"k":{"J":-6}},"\\":{"d":"108,16r-21,0r-74,-255r20,0","w":119},"]":{"d":"81,59r-61,0r0,-10v38,-4,39,-6,39,-34r0,-225v0,-28,-1,-30,-39,-33r0,-10r61,0r0,312","w":124},"^":{"d":"179,-76r-22,0r-55,-125r-57,125r-20,0r69,-148r15,0","w":203},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"81,-162v55,0,46,65,46,121v1,24,11,25,25,18r4,9r-31,18v-12,0,-24,-12,-25,-23v-14,10,-32,23,-43,23v-26,0,-43,-21,-43,-44v0,-39,71,-43,85,-59v2,-28,-11,-46,-31,-46v-27,0,-17,34,-37,38v-6,0,-15,-6,-15,-15v9,-20,37,-31,65,-40xm99,-86v-17,11,-55,16,-54,41v1,34,36,33,54,15r0,-56","w":158},"b":{"d":"55,-145v14,-5,28,-17,44,-17v39,0,71,33,71,76v-2,73,-77,112,-144,77r0,-199v0,-23,0,-25,-23,-27r0,-9v17,-2,39,-7,52,-12r0,111xm55,-135v7,50,-22,126,34,126v30,0,49,-26,49,-68v0,-53,-41,-76,-83,-58","w":182,"k":{"b":2,"f":4,"i":4,"m":4,"n":4,"r":4,"h":3,"k":3,"l":3,"j":4,"p":4,"t":4,"u":4,"v":6,"w":6,"y":6,"a":-2,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"x":6,",":10,".":10,"z":2}},"c":{"d":"142,-141v-8,35,-34,-10,-55,-3v-24,0,-45,19,-45,57v0,73,58,84,98,47r7,8v-16,21,-40,36,-61,36v-45,0,-73,-36,-73,-75v0,-45,51,-91,91,-91v20,0,36,7,38,21","w":152,"k":{"b":1,"h":2,"k":2,"l":2,"j":-3,"p":-3,"t":-3,"u":-3,"v":-6,"w":-6,"y":-6,"a":-1}},"d":{"d":"186,-18r0,9v-8,1,-35,5,-56,13r0,-23v-45,39,-116,26,-116,-53v0,-57,57,-105,116,-85v-6,-32,19,-83,-27,-78r0,-9v19,-2,43,-8,56,-12r0,215v-2,25,10,21,27,23xm130,-31r0,-99v-33,-34,-84,-25,-84,48v0,61,49,78,84,51","w":190,"k":{"b":1,"h":-2,"k":-2,"l":-2,"j":4,"p":4,"t":4,"u":4,"s":1,"v":3,"w":3,"y":3,"a":-1,",":2,".":2}},"e":{"d":"13,-72v0,-45,37,-90,77,-90v30,0,54,27,54,55v0,7,-1,11,-8,12v-6,1,-52,5,-95,6v2,71,57,86,96,51r5,8v-23,28,-47,34,-58,34v-44,0,-71,-35,-71,-76xm113,-112v-7,-52,-63,-45,-70,8v20,0,40,0,61,-1v6,0,9,-2,9,-7","w":153,"k":{"b":1,"h":1,"k":1,"l":1,"v":-3,"w":-3,"y":-3,"a":-2,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,",":2,".":2,"z":-2}},"f":{"d":"92,-237v-32,4,-25,36,-27,80r42,0v2,3,1,11,-3,14r-39,0r0,103v0,27,3,28,31,31r0,9r-85,0r0,-9v23,-2,25,-4,25,-28r0,-106v-8,-2,-24,4,-26,-4v5,-7,12,-12,26,-10v-5,-53,29,-88,72,-99v20,-1,43,19,23,33v-14,5,-22,-16,-39,-14","w":106,"k":{"?":-27,"!":-30,"f":-4,"i":-4,"m":-4,"n":-4,"r":-4,"h":-6,"k":-6,"l":-6,"j":-2,"p":-2,"t":-2,"u":-2,"v":-6,"w":-6,"y":-6,"c":3,"d":3,"e":3,"o":3,"q":3,",":2,".":2,")":-28,"]":-28,"}":-28,"\"":-43,"'":-43}},"g":{"d":"10,49v0,-24,25,-32,39,-46v-18,-6,-30,-16,-31,-35v14,-5,26,-15,32,-22v-16,-7,-32,-24,-32,-48v0,-55,60,-73,100,-50v17,-1,36,-3,49,-5v1,14,-15,25,-35,20v32,44,-13,106,-71,87v-15,9,-16,29,12,29v44,1,90,-8,90,42v0,36,-42,72,-90,72v-40,0,-63,-23,-63,-44xm113,-102v4,-55,-64,-68,-64,-6v-4,56,64,70,64,6xm138,34v0,-25,-22,-30,-51,-30v-32,0,-44,16,-48,36v0,20,20,34,47,34v34,0,52,-18,52,-40","w":168,"k":{"f":-2,"i":-2,"m":-2,"n":-2,"r":-2,"g":-2,"h":-3,"k":-3,"l":-3,"v":-9,"w":-9,"y":-9,"c":3,"d":3,"e":3,"o":3,"q":3,",":-1,".":-1}},"h":{"d":"185,0r-76,0r0,-9v40,2,19,-56,23,-88v6,-51,-49,-55,-72,-26r0,86v0,23,1,26,23,28r0,9r-77,0r1,-9v22,-2,24,-4,24,-28r0,-172v0,-23,0,-24,-24,-26r0,-9v17,-3,39,-8,53,-12r0,121v31,-39,104,-40,101,35v6,33,-17,94,24,91r0,9","w":192,"k":{"T":27,"b":4,"g":3,"h":-2,"k":-2,"l":-2,"j":7,"p":7,"t":7,"u":7,"s":3,"v":8,"w":8,"y":8,"a":1,"c":1,"d":1,"e":1,"o":1,"q":1}},"i":{"d":"49,-193v-9,0,-18,-8,-18,-18v0,-11,8,-19,18,-19v10,0,18,8,18,19v0,10,-8,18,-18,18xm91,0r-79,0r0,-9v46,2,17,-67,25,-103v0,-22,-1,-25,-23,-28r0,-8v18,-3,36,-8,51,-14r0,124v0,24,3,27,26,29r0,9","w":96,"k":{"b":1,"h":-2,"k":-2,"l":-2,"j":4,"p":4,"t":4,"u":4,"s":1,"v":3,"w":3,"y":3,"a":-1,",":2,".":2}},"j":{"d":"49,-193v-10,0,-18,-8,-18,-18v0,-11,8,-19,18,-19v10,0,18,8,18,19v0,10,-8,18,-18,18xm65,-40v3,59,-34,124,-61,133v-8,3,-21,-22,-6,-25v60,-10,38,-104,38,-179v0,-24,-2,-26,-24,-29r0,-8v19,-3,38,-8,53,-14r0,122","w":92,"k":{"j":4,"p":4,"t":4,"u":4,"a":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,",":3,".":3}},"k":{"d":"93,-95v19,20,55,83,92,86r0,9r-50,1v-17,-18,-39,-48,-59,-72v-7,-8,-9,-8,-17,-6v3,30,-12,73,26,68r0,9r-80,0r0,-9v24,-2,26,-5,26,-28r0,-170v0,-24,-1,-26,-23,-28r0,-9v17,-2,37,-7,51,-12r0,169v27,-5,35,-27,49,-44v9,-10,6,-14,-11,-16r0,-9r73,-3r0,9v-46,8,-48,25,-77,55","w":178,"k":{"b":4,"f":-1,"i":-1,"m":-1,"n":-1,"r":-1,"h":-3,"k":-3,"l":-3,"j":5,"p":5,"t":5,"u":5,"v":2,"w":2,"y":2,"c":3,"d":3,"e":3,"o":3,"q":3}},"l":{"d":"86,0r-81,0r0,-9v23,-2,26,-4,26,-28r0,-171v0,-24,-2,-25,-25,-27r0,-9v19,-2,42,-8,54,-12r0,219v0,24,3,26,26,28r0,9","w":91,"k":{"b":1,"h":-2,"k":-2,"l":-2,"j":4,"p":4,"t":4,"u":4,"s":1,"v":3,"w":3,"y":3,"a":-1,",":2,".":2}},"m":{"d":"161,-132v18,-12,32,-28,57,-30v53,-4,47,70,46,125v0,24,2,26,23,28r0,9r-77,0r0,-9v41,4,22,-56,25,-90v5,-49,-45,-50,-72,-23v3,26,0,58,1,86v0,23,3,25,23,27r0,9r-77,0r0,-9v44,4,22,-56,26,-90v6,-49,-48,-48,-71,-23r0,85v0,23,3,26,21,28r0,9r-76,0r0,-9v49,2,19,-65,27,-103v0,-23,-1,-25,-22,-28r0,-8v16,-3,34,-8,50,-15r0,29v23,-23,79,-47,96,2","w":294,"k":{"T":27,"b":4,"g":3,"h":-2,"k":-2,"l":-2,"j":7,"p":7,"t":7,"u":7,"s":3,"v":8,"w":8,"y":8,"a":1,"c":1,"d":1,"e":1,"o":1,"q":1}},"n":{"d":"65,-134v13,-9,34,-27,54,-28v55,-3,48,69,47,125v0,24,2,26,23,28r0,9r-76,0r0,-9v40,3,20,-57,24,-90v6,-48,-49,-49,-72,-23r0,85v0,24,3,26,24,28r0,9r-79,0r0,-9v49,2,19,-65,27,-103v0,-23,-3,-24,-22,-28r0,-8v17,-3,34,-7,50,-14r0,28","w":196,"k":{"T":27,"b":4,"g":3,"h":-2,"k":-2,"l":-2,"j":7,"p":7,"t":7,"u":7,"s":3,"v":8,"w":8,"y":8,"a":1,"c":1,"d":1,"e":1,"o":1,"q":1}},"o":{"d":"13,-75v2,-118,159,-108,157,-6v0,58,-42,85,-78,85v-49,0,-79,-39,-79,-79xm88,-150v-22,0,-41,22,-41,63v0,84,90,119,90,14v0,-42,-17,-77,-49,-77","w":183,"k":{"b":2,"f":4,"i":4,"m":4,"n":4,"r":4,"h":3,"k":3,"l":3,"j":4,"p":4,"t":4,"u":4,"v":6,"w":6,"y":6,"a":-2,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"x":6,",":10,".":10,"z":2}},"p":{"d":"61,-137v16,-8,32,-25,51,-25v40,0,63,33,63,68v0,54,-41,98,-89,98v-11,0,-20,-3,-25,-6v4,35,-16,84,30,79r0,9r-85,0r0,-9v23,-2,26,-4,26,-28r0,-163v0,-23,-1,-24,-23,-27r0,-9v15,-3,35,-8,52,-15r0,28xm61,-125r0,98v35,32,84,5,84,-53v0,-58,-50,-75,-84,-45","w":188,"k":{"b":2,"f":4,"i":4,"m":4,"n":4,"r":4,"h":3,"k":3,"l":3,"j":4,"p":4,"t":4,"u":4,"v":6,"w":6,"y":6,"a":-2,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"x":6,",":10,".":10,"z":2}},"q":{"d":"14,-71v-1,-64,71,-108,131,-84v2,1,9,-5,14,-3r-1,206v0,25,2,26,27,29r0,9r-86,0r0,-9v50,5,23,-52,30,-88r-38,15v-52,0,-77,-40,-77,-75xm129,-22r0,-110v-34,-31,-84,-12,-83,49v1,55,43,79,83,61","w":183,"k":{"j":4,"p":4,"t":4,"u":4,"a":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,",":3,".":3}},"r":{"d":"65,-162v1,12,-2,29,1,39v11,-18,26,-39,43,-39v23,0,28,27,10,36v-11,5,-15,-10,-25,-8v-9,0,-21,11,-29,31v7,37,-22,99,30,94r0,9r-83,0r0,-9v22,-2,25,-4,25,-28r0,-75v0,-24,-2,-25,-23,-28r0,-8v18,-3,34,-7,51,-14","w":133,"k":{"f":-2,"i":-2,"m":-2,"n":-2,"r":-2,"g":3,"h":1,"k":1,"l":1,"j":-4,"p":-4,"t":-4,"u":-4,"s":2,"v":-10,"w":-10,"y":-10,"-":9,"c":5,"d":5,"e":5,"o":5,"q":5,"x":-7,",":23,".":23,":":-9,";":-9}},"s":{"d":"94,-33v-1,-41,-77,-36,-73,-82v-5,-37,54,-58,86,-40v3,8,7,29,8,38r-9,3v-7,-22,-19,-36,-37,-36v-14,0,-24,11,-24,25v0,38,83,36,76,80v3,50,-71,59,-100,37v-3,-5,-6,-29,-6,-42r9,-2v6,24,22,44,44,44v13,0,26,-10,26,-25","w":132,"k":{"h":1,"k":1,"l":1,"j":2,"p":2,"t":2,"u":2,"s":2,"a":-2,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3}},"t":{"d":"104,-22v8,17,-22,21,-36,26v-56,0,-30,-94,-36,-147v-9,-1,-24,4,-26,-4v5,-7,12,-12,26,-10r0,-26v10,-7,14,-21,29,-24r0,50r41,0v4,4,2,11,-3,14r-38,0v3,46,-17,154,43,121","w":109,"k":{"f":-2,"i":-2,"m":-2,"n":-2,"r":-2,"g":-1,"h":-2,"k":-2,"l":-2,"j":4,"p":4,"t":4,"u":4,"v":-1,"w":-1,"y":-1,"a":-2,"c":2,"d":2,"e":2,"o":2,"q":2}},"u":{"d":"103,-153v17,-1,44,-4,57,-7r0,120v-1,22,8,22,26,22r0,9v-16,0,-42,15,-55,11r0,-25v-28,29,-99,48,-99,-26r0,-71v1,-26,-7,-21,-22,-25r0,-8r52,-7v3,48,-17,143,31,142v13,0,26,-6,38,-18r0,-84v2,-26,-11,-21,-28,-25r0,-8","w":191,"k":{"b":1,"h":-2,"k":-2,"l":-2,"j":4,"p":4,"t":4,"u":4,"s":1,"v":3,"w":3,"y":3,"a":-1,",":2,".":2}},"v":{"d":"172,-157r0,9v-19,3,-22,6,-32,27v-12,27,-31,71,-51,125r-10,0r-49,-126v-8,-21,-12,-23,-31,-26r0,-9r74,0r0,9v-19,2,-20,6,-14,21v9,25,24,62,34,88v13,-30,24,-62,32,-85v6,-17,4,-21,-17,-24r0,-9r64,0","w":166,"k":{"b":-4,"f":-1,"i":-1,"m":-1,"n":-1,"r":-1,"h":-3,"k":-3,"l":-3,"v":-4,"w":-4,"y":-4,"c":3,"d":3,"e":3,"o":3,"q":3,",":26,".":26,":":-11,";":-11}},"w":{"d":"251,-157r0,9v-18,3,-22,7,-29,27v-11,29,-27,76,-43,125r-11,0v-14,-39,-28,-74,-43,-112v-14,36,-29,72,-43,112r-10,0v-13,-43,-27,-86,-42,-129v-6,-19,-10,-21,-27,-23r0,-9r75,0r0,9v-22,3,-24,5,-19,22r28,84r42,-114r9,0r44,115v8,-25,18,-56,25,-83v5,-19,2,-21,-21,-24r0,-9r65,0","w":246,"k":{"b":-4,"f":-1,"i":-1,"m":-1,"n":-1,"r":-1,"h":-3,"k":-3,"l":-3,"v":-4,"w":-4,"y":-4,"c":3,"d":3,"e":3,"o":3,"q":3,",":26,".":26,":":-11,";":-11}},"x":{"d":"171,0r-77,0r0,-9v15,-2,18,-5,12,-15r-27,-42v-8,12,-16,25,-23,38v-7,12,-6,16,12,19r0,9r-67,0r0,-9v40,-3,49,-41,71,-67v-21,-24,-27,-68,-66,-72r0,-9r71,0r0,9v-15,2,-15,5,-9,15r21,34v7,-11,15,-22,21,-34v6,-11,4,-13,-12,-15r0,-9r66,0r0,9v-42,3,-45,29,-68,59v23,26,33,77,75,80r0,9","w":169,"k":{"c":3,"d":3,"e":3,"o":3,"q":3}},"y":{"d":"172,-157r0,9v-19,3,-22,6,-32,26v-9,19,-20,49,-45,108v-24,58,-31,79,-37,98v-6,19,-33,5,-32,-9v7,-19,28,-21,36,-45v8,-21,17,-21,11,-41v-12,-42,-31,-84,-41,-110v-8,-20,-11,-24,-31,-27r0,-9r72,0r1,9v-17,3,-19,6,-14,20r33,90v10,-24,26,-67,33,-90v4,-13,2,-17,-19,-20r0,-9r65,0","w":165,"k":{"b":-4,"f":-1,"i":-1,"m":-1,"n":-1,"r":-1,"h":-3,"k":-3,"l":-3,"v":-4,"w":-4,"y":-4,"c":3,"d":3,"e":3,"o":3,"q":3,",":26,".":26,":":-11,";":-11}},"z":{"d":"135,-41v2,-9,7,-9,14,-4v-5,14,-12,31,-17,45r-118,0r-3,-5r90,-140v-42,-3,-69,0,-78,35r-9,-3v4,-14,9,-37,12,-52v14,-1,9,8,28,8r82,0r3,5r-88,140v42,0,69,4,84,-29","w":151},"{":{"d":"105,51r0,10v-21,0,-52,-4,-52,-46v0,-48,30,-100,-30,-107r0,-11v32,-2,33,-18,33,-31v0,-24,-3,-51,-3,-74v0,-42,31,-47,52,-47r0,10v-75,11,19,122,-55,148v46,10,25,70,25,113v0,17,3,31,30,35","w":124,"k":{"J":-6}},"|":{"d":"59,90r-23,0r0,-360r23,0r0,360","w":94},"}":{"d":"102,-102r0,10v-60,8,-30,58,-30,107v0,40,-31,46,-53,46r0,-10v75,-12,-16,-122,56,-149v-48,-11,-24,-70,-25,-114v0,-17,-5,-29,-31,-33r0,-10v22,0,53,4,53,46v0,49,-29,99,30,107","w":124},"~":{"d":"20,-70v31,-76,78,-22,125,-12v15,0,23,-9,31,-29r13,8v-8,25,-23,39,-46,39v-43,0,-90,-62,-111,3","w":208},"'":{"d":"15,-246v10,-2,22,-12,30,-8v-1,8,-6,57,-9,79r-10,4v-4,-34,-10,-70,-11,-75","w":60},"`":{"d":"89,-181r-10,4v-14,-24,-37,-43,-41,-60v3,-2,23,-6,28,-5","w":144},"\u00a0":{"w":81}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ?1990, 1991, 1992, 1994, 1997, 1998, 2000, 2002, 2004 Adobe Systems
 * Incorporated. All rights reserved.
 * 
 * Trademark:
 * Minion is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MinionPro-Bold
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach
 * 
 * Vendor URL:
 * http://www.adobe.com/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"MinionPro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 4 7 3 6 2 1 2 2 3","ascent":"262","descent":"-98","x-height":"4","bbox":"-8.02102 -270 349 90","underline-thickness":"18","underline-position":"-18","stemh":"15","stemv":"46","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":78},"!":{"d":"51,-239v37,0,31,11,26,41v-6,39,-13,78,-18,119v-1,4,-16,5,-17,0r-21,-145v0,-9,6,-15,30,-15xm51,4v-15,0,-27,-11,-27,-28v0,-17,11,-28,27,-28v16,0,28,11,28,28v0,17,-12,28,-28,28","w":102},"\"":{"d":"13,-243v14,-2,32,-15,44,-9v-1,12,-9,64,-14,93r-13,7v-7,-36,-15,-86,-17,-91xm79,-243v14,-2,32,-15,43,-9v-1,12,-8,66,-13,93r-13,7v-7,-36,-15,-86,-17,-91","w":136},"#":{"d":"168,-169r-3,30r-35,0r-10,43r30,0r-5,30r-32,0r-15,61r-18,0r15,-61r-35,0r-14,61r-18,0r14,-61r-34,0r4,-30r37,0r10,-43r-32,0r4,-30r36,0r12,-52r19,0r-13,52r35,0r12,-52r17,0r-12,52r31,0xm112,-139r-34,0r-11,43r35,0"},"$":{"d":"99,-137v32,10,67,28,67,66v0,38,-26,62,-67,67r0,30r-15,0r0,-29v-30,0,-52,-11,-59,-15v-3,-9,-7,-32,-10,-51r12,-3v6,17,21,51,57,54r0,-76v-32,-13,-64,-32,-64,-64v0,-33,23,-58,64,-63r0,-27r15,0r0,26v18,-1,32,4,46,7v3,13,6,26,9,49r-12,1v-6,-18,-15,-38,-43,-42r0,70xm84,-143r0,-64v-41,7,-35,57,0,64xm99,-89r0,70v31,-6,48,-49,5,-67"},"%":{"d":"216,-225r-147,238r-13,-9r147,-238xm71,-229v39,0,56,36,56,63v0,27,-16,63,-56,63v-39,0,-56,-36,-56,-63v0,-27,17,-63,56,-63xm71,-216v-17,0,-21,33,-21,50v0,18,4,50,21,50v17,0,20,-33,20,-50v0,-18,-2,-50,-20,-50xm206,-122v39,0,55,36,55,63v0,27,-16,63,-56,63v-39,0,-56,-35,-56,-62v0,-28,17,-64,57,-64xm205,-109v-17,0,-21,31,-21,50v0,17,5,50,22,50v17,0,20,-33,20,-50v0,-18,-3,-50,-21,-50","w":275},"&":{"d":"180,-85v8,-16,46,-54,-2,-56r0,-12r86,0r0,12v-42,2,-51,40,-74,66v23,22,46,50,63,76r-2,4v-67,-1,-63,-17,-91,-43v-22,29,-45,43,-69,43v-49,0,-76,-36,-76,-67v0,-30,19,-43,51,-65v-45,-35,-22,-112,41,-112v50,0,81,52,46,82r-29,21v10,9,31,27,56,51xm104,-225v-14,0,-24,15,-24,32v0,18,10,30,34,49v21,-12,29,-81,-10,-81xm60,-78v0,58,64,62,90,29v-26,-27,-44,-42,-75,-69v-10,10,-15,26,-15,40","w":257},"(":{"d":"113,52r-9,10v-103,-71,-104,-249,0,-319r9,10v-68,60,-66,242,0,299","w":126,"k":{"J":-5}},")":{"d":"23,-257v102,71,102,249,0,319r-9,-9v68,-59,66,-243,0,-301","w":126},"*":{"d":"134,-174r-47,10r12,50r-10,4r-26,-46r-44,26r-6,-9r36,-35r-37,-37r6,-9r44,28r22,-47r10,2r-8,51r48,2r0,10","w":145},"+":{"d":"191,-80r-74,0r0,80r-26,0r0,-80r-74,0r0,-23r74,0r0,-72r26,0r0,72r74,0r0,23","w":207},",":{"d":"36,-58v18,0,42,18,42,46v0,33,-31,53,-61,60r-4,-13v38,-12,45,-50,6,-61v-11,-8,-1,-36,17,-32","w":91},"-":{"d":"109,-95r-6,25r-88,0r5,-25r89,0","w":123},".":{"d":"45,4v-15,0,-26,-11,-26,-27v0,-16,12,-27,27,-27v15,0,26,11,26,27v0,16,-11,27,-27,27","w":91},"\/":{"d":"109,-239r-78,255r-25,0r78,-255r25,0","w":117},"0":{"d":"91,-229v60,0,79,65,79,117v0,53,-19,116,-80,116v-60,0,-80,-64,-80,-116v0,-54,21,-117,81,-117xm89,-214v-43,3,-40,203,2,204v43,-2,41,-205,-2,-204"},"1":{"d":"147,0r-110,0r0,-12v28,-2,31,-7,31,-33r0,-131v4,-28,-15,-20,-34,-23r0,-11v24,-4,50,-10,82,-19r0,184v0,25,2,31,31,33r0,12"},"2":{"d":"12,-9v35,-35,97,-89,97,-144v0,-25,-12,-43,-37,-43v-22,0,-37,15,-49,32r-10,-8v17,-27,35,-57,77,-57v36,0,66,24,66,64v0,42,-63,95,-94,126v42,-5,83,16,96,-24r12,4v-6,21,-10,44,-14,59r-144,0r0,-9"},"3":{"d":"148,-180v0,25,-21,28,-38,43v35,6,53,30,53,57v0,59,-78,84,-100,84v-33,1,-66,-24,-38,-42v20,-12,29,22,60,22v18,0,32,-14,32,-48v0,-43,-30,-52,-63,-45r-3,-12v31,-10,52,-25,52,-47v0,-48,-56,-38,-73,-6r-10,-8v16,-22,30,-47,69,-47v37,0,59,21,59,49"},"4":{"d":"175,-63r-32,0v2,30,-8,52,29,51r0,12r-108,0r0,-12v41,-1,32,-19,33,-51r-92,0r0,-14v39,-55,78,-107,112,-149r26,0r0,143r32,0r0,20xm97,-83r-1,-94v-17,24,-41,57,-64,94r65,0"},"5":{"d":"60,4v-30,0,-63,-23,-35,-44v21,-4,31,24,60,24v22,0,33,-20,33,-47v0,-48,-55,-63,-93,-46r16,-115r115,0v4,11,-7,26,-9,39r-92,0r-10,55v53,-29,119,1,119,49v0,42,-60,85,-104,85"},"6":{"d":"64,-129v42,-33,109,-8,109,52v0,45,-34,81,-82,81v-45,0,-81,-34,-81,-91v0,-101,70,-132,149,-144r3,14v-47,13,-78,25,-98,88xm126,-62v0,-43,-27,-67,-64,-53v-9,44,10,112,36,105v22,0,28,-29,28,-52"},"7":{"d":"171,-224r4,4v-34,72,-71,146,-104,220v-13,-1,-33,9,-40,0v42,-63,79,-126,110,-185v-43,6,-103,-18,-114,23r-13,0v5,-28,7,-47,10,-62r147,0"},"8":{"d":"12,-57v2,-35,26,-37,48,-53v-61,-25,-46,-119,34,-119v39,0,66,24,66,56v0,25,-17,32,-38,47v25,14,48,30,48,62v1,90,-162,87,-158,7xm122,-171v1,-55,-59,-54,-60,-12v0,24,18,37,46,50v6,-6,14,-17,14,-38xm55,-61v-2,62,71,69,71,12v0,-26,-18,-35,-53,-54v-10,8,-18,23,-18,42"},"9":{"d":"91,-229v52,0,79,42,79,91v0,86,-61,140,-151,143r-2,-13v53,-9,91,-48,100,-91v-40,35,-108,4,-108,-52v0,-32,27,-78,82,-78xm84,-214v-46,0,-32,106,15,106v9,0,15,-3,20,-5v6,-41,0,-101,-35,-101"},":":{"d":"46,-151v15,0,26,12,26,28v0,15,-11,27,-26,27v-15,0,-26,-12,-26,-27v0,-16,11,-28,26,-28xm46,4v-15,0,-26,-11,-26,-27v0,-15,11,-27,26,-27v15,0,27,12,27,27v0,16,-11,27,-27,27","w":91},";":{"d":"46,-151v15,0,26,12,26,28v0,15,-11,27,-26,27v-15,0,-26,-12,-26,-27v0,-16,11,-28,26,-28xm37,-58v18,0,41,18,41,45v0,34,-31,53,-61,61r-3,-13v36,-12,44,-51,5,-61v-11,-9,-1,-36,18,-32","w":91},"<":{"d":"179,0r-160,-79r0,-24r160,-79r0,25r-134,66r134,66r0,25","w":197},"=":{"d":"191,-113r-174,0r0,-23r174,0r0,23xm191,-47r-174,0r0,-23r174,0r0,23","w":207},">":{"d":"179,-79r-160,79r0,-25r134,-66r-134,-66r0,-25r160,79r0,24","w":197},"?":{"d":"130,-176v10,42,-88,52,-48,95r-8,8v-19,-7,-46,-25,-46,-48v-11,-25,74,-61,75,-76v-7,-34,-64,12,-65,13v-8,0,-21,-12,-21,-25v23,-56,115,-25,113,33xm68,4v-15,0,-27,-11,-27,-28v0,-16,12,-28,27,-28v16,0,28,12,28,28v0,17,-12,28,-28,28","w":143},"@":{"d":"78,-58v0,-53,56,-109,124,-89v-3,12,-10,44,-17,80v-3,17,-1,23,5,23v22,0,51,-22,51,-72v0,-49,-38,-76,-84,-76v-64,0,-109,49,-109,115v0,45,27,95,96,95v22,0,42,-5,55,-12r4,11v-78,45,-183,10,-183,-92v0,-83,67,-133,137,-133v66,0,104,43,104,91v0,50,-38,91,-90,91v-28,0,-17,-24,-15,-43v-12,17,-40,43,-59,43v-10,0,-19,-10,-19,-32xm170,-131v-38,-16,-55,23,-56,60v-1,13,3,18,7,18v11,5,51,-50,49,-78","w":275},"A":{"d":"78,-77v-2,21,-39,63,9,64r0,13r-81,0r0,-13v24,-3,29,-7,41,-37r74,-185r18,-4r69,187v12,32,16,36,39,39r0,13r-103,0r0,-13v44,-3,5,-42,3,-64r-69,0xm140,-96r-27,-78v-10,26,-20,52,-29,78r56,0","w":254,"k":{"b":9,"f":3,"i":3,"m":3,"n":3,"r":3,"j":12,"p":12,"t":12,"u":12,"v":22,"w":22,"y":22,"a":3,"-":11,"g":4,"J":7,"c":9,"d":9,"e":9,"o":9,"q":9,"C":11,"G":11,"O":11,"Q":11,"s":5,"S":5,"T":26,"U":22,"V":33,"W":33,"X":7,"Y":30,"z":1}},"B":{"d":"15,-234v75,4,184,-21,186,53v1,36,-33,47,-57,55v42,5,69,23,69,57v0,81,-113,69,-200,69r0,-13v28,-3,31,-4,31,-35r0,-138v0,-31,-3,-32,-29,-35r0,-13xm111,-219v-17,1,-21,3,-20,20r0,68v38,2,58,-10,58,-43v0,-33,-19,-45,-38,-45xm91,-116v4,36,-14,101,26,101v20,0,43,-16,43,-51v1,-36,-25,-52,-69,-50","w":229,"k":{"b":3,"f":6,"i":6,"m":6,"n":6,"r":6,"h":3,"k":3,"l":3,"j":5,"p":5,"t":5,"u":5,"v":4,"w":4,"y":4,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"C":-3,"G":-3,"O":-3,"Q":-3,"T":5,"U":6,"V":12,"W":12,",":4,".":4,"A":14,"B":1,"D":1,"E":1,"F":1,"H":1,"I":1,"K":1,"L":1,"N":1,"P":1,"R":1}},"C":{"d":"225,-67r13,5v-5,18,-15,45,-21,58v-9,2,-43,9,-67,9v-96,0,-135,-62,-135,-119v0,-97,111,-147,208,-116v3,20,5,37,8,59r-13,3v-12,-42,-39,-56,-67,-56v-52,0,-81,50,-81,103v0,111,116,150,155,54","w":243,"k":{"f":-3,"i":-3,"m":-3,"n":-3,"r":-3,"h":-5,"k":-5,"l":-5,"j":3,"p":3,"t":3,"u":3,"v":3,"w":3,"y":3,"a":-4,"c":-7,"d":-7,"e":-7,"o":-7,"q":-7,"C":-4,"G":-4,"O":-4,"Q":-4}},"D":{"d":"258,-126v0,120,-117,133,-246,126r0,-13v28,-3,32,-4,32,-35r0,-138v0,-31,-4,-32,-29,-35r0,-13r108,0v81,0,135,31,135,108xm118,-219v-24,0,-26,2,-26,25r0,144v0,26,5,35,30,35v48,0,82,-40,82,-104v0,-60,-29,-100,-86,-100","w":273,"k":{"h":1,"k":1,"l":1,"j":-2,"p":-2,"t":-2,"u":-2,"v":-6,"w":-6,"y":-6,"a":-2,"J":6,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"C":-6,"G":-6,"O":-6,"Q":-6,"s":3,"T":7,"U":4,"V":6,"W":6,"X":13,"Y":13,"z":1,",":13,".":13,"A":20,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,"x":1,"M":6}},"E":{"d":"133,-15v40,0,46,-18,60,-47r13,2v-3,16,-10,49,-13,60r-184,0r0,-13v31,-3,35,-4,35,-35r0,-138v0,-31,-4,-33,-30,-35r0,-13r170,0v0,6,3,32,4,54r-14,2v-6,-34,-23,-43,-67,-40v-13,0,-15,0,-15,12r0,77v33,-1,64,7,64,-27r13,0r0,72r-13,0v0,-35,-30,-25,-64,-27r0,62v-2,34,10,33,41,34","w":209,"k":{"f":-1,"i":-1,"m":-1,"n":-1,"r":-1,"h":-5,"k":-5,"l":-5,"j":3,"p":3,"t":3,"u":3,"v":5,"w":5,"y":5,"a":-9,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"s":-3,"T":2,"z":-2,"x":-5}},"F":{"d":"176,-177v-7,-36,-25,-44,-70,-41v-13,0,-14,0,-14,12r0,80v33,-1,72,7,69,-26r13,0r0,71r-13,0v2,-35,-35,-26,-69,-27v5,40,-18,102,34,95r0,13r-112,0r0,-13v26,-3,30,-4,30,-38r0,-133v0,-32,-4,-34,-30,-37r0,-13r171,0v0,6,2,34,4,55","w":199,"k":{"i":8,"f":8,"m":8,"n":8,"r":8,"h":-1,"k":-1,"l":-1,"j":7,"p":7,"t":7,"u":7,"a":5,"-":5,"c":6,"d":6,"e":6,"o":6,"q":6,",":37,".":37,"A":26,":":1,";":1}},"G":{"d":"156,-9v31,0,29,-28,29,-59v0,-25,-2,-28,-40,-31r0,-13r108,0r0,13v-34,0,-17,58,-18,91v-22,5,-53,13,-82,13v-84,0,-137,-47,-137,-119v0,-109,120,-144,213,-115v1,12,2,31,5,59r-13,3v-9,-40,-36,-57,-70,-57v-43,0,-80,38,-80,103v0,54,26,112,85,112","w":261,"k":{"f":3,"i":3,"m":3,"n":3,"r":3,"h":-1,"k":-1,"l":-1,"j":1,"p":1,"t":1,"u":1,"v":4,"w":4,"y":4,"a":-3,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5}},"H":{"d":"269,-234r0,13v-28,3,-31,4,-31,35r0,138v0,30,4,32,31,35r0,13r-110,0r0,-13v52,5,24,-62,31,-102r-98,0v6,38,-20,107,29,102r0,13r-107,0r0,-13v26,-3,30,-4,30,-35r0,-138v0,-31,-3,-32,-31,-35r0,-13r108,0r0,13v-45,-5,-24,52,-29,88r98,0v-4,-37,16,-94,-30,-88r0,-13r109,0","w":281,"k":{"b":2,"f":5,"i":5,"m":5,"n":5,"r":5,"h":-1,"k":-1,"l":-1,"j":13,"p":13,"t":13,"u":13,"v":11,"w":11,"y":11,"a":8,"g":9,"c":8,"d":8,"e":8,"o":8,"q":8,"C":4,"G":4,"O":4,"Q":4,"s":8,"z":4,"A":14,"x":3}},"I":{"d":"122,0r-109,0r0,-13v27,-3,31,-5,31,-35r0,-138v0,-31,-4,-32,-31,-35r0,-13r109,0r0,13v-27,3,-30,4,-30,35r0,138v0,30,3,32,30,35r0,13","w":136,"k":{"b":2,"f":5,"i":5,"m":5,"n":5,"r":5,"h":-1,"k":-1,"l":-1,"j":13,"p":13,"t":13,"u":13,"v":11,"w":11,"y":11,"a":8,"g":9,"c":8,"d":8,"e":8,"o":8,"q":8,"C":4,"G":4,"O":4,"Q":4,"s":8,"z":4,"A":14,"x":3}},"J":{"d":"7,45v62,-26,38,-148,38,-231v0,-31,-4,-32,-31,-35r0,-13r107,0r0,13v-25,3,-28,4,-28,35v-1,106,21,221,-80,244","w":131,"k":{"f":13,"i":13,"m":13,"n":13,"r":13,"j":14,"p":14,"t":14,"u":14,"v":6,"w":6,"y":6,"a":9,"c":10,"d":10,"e":10,"o":10,"q":10,"C":4,"G":4,"O":4,"Q":4,",":12,".":12,"A":17}},"K":{"d":"252,0r-73,0r-71,-101v-8,-11,-12,-13,-17,-12v6,39,-20,106,31,100r0,13r-108,0r0,-13v26,-3,30,-4,30,-35r0,-138v0,-31,-4,-32,-31,-35r0,-13r106,0r0,13v-47,-5,-22,59,-28,96v29,-12,63,-61,77,-77v12,-13,3,-20,-15,-19r0,-13r94,0r0,13v-48,0,-84,53,-110,78v23,35,50,71,76,104v15,19,25,24,39,26r0,13","w":253,"k":{"f":1,"i":1,"m":1,"n":1,"r":1,"h":-6,"k":-6,"l":-6,"j":15,"p":15,"t":15,"u":15,"v":25,"w":25,"y":25,"a":4,"c":8,"d":8,"e":8,"o":8,"q":8,"C":14,"G":14,"O":14,"Q":14,"A":4}},"L":{"d":"127,-15v36,0,46,-17,57,-50r13,4v-3,15,-10,51,-13,61r-175,0r0,-13v31,-3,35,-4,35,-35r0,-138v0,-31,-4,-32,-31,-35r0,-13r109,0r0,13v-27,3,-30,4,-30,35r0,141v-2,31,10,30,35,30","w":198,"k":{"f":-6,"i":-6,"m":-6,"n":-6,"r":-6,"h":-8,"k":-8,"l":-8,"j":3,"p":3,"t":3,"u":3,"v":14,"w":14,"y":14,"a":-9,"c":-10,"d":-10,"e":-10,"o":-10,"q":-10,"T":22,"U":9,"V":24,"W":24,"Y":25,"A":-8}},"M":{"d":"310,0r-107,0r0,-13v27,-3,29,-5,29,-38v0,-45,4,-98,-3,-139r-79,187r-10,0r-75,-183r-5,94v1,54,-16,75,33,79r0,13r-87,0r0,-13v48,-9,26,-29,37,-89v-3,-41,31,-125,-25,-119r0,-13r75,0r69,158r71,-158r72,0r0,13v-29,3,-30,5,-29,35r3,135v1,33,3,35,31,38r0,13","w":319,"k":{"j":10,"p":10,"t":10,"u":10,"v":11,"w":11,"y":11,"a":3,"c":7,"d":7,"e":7,"o":7,"q":7,"C":2,"G":2,"O":2,"Q":2}},"N":{"d":"211,-139v-6,-58,14,-77,-38,-83r0,-12r88,0r0,12v-42,6,-32,30,-32,83r0,143r-18,0r-149,-180r-2,0r0,81v6,57,-14,77,38,82r0,13r-88,0r0,-13v44,-5,33,-29,33,-82v0,-51,18,-131,-37,-127r0,-12r66,0r139,158r0,-63","w":266,"k":{"f":5,"i":5,"m":5,"n":5,"r":5,"h":-3,"k":-3,"l":-3,"j":10,"p":10,"t":10,"u":10,"v":11,"w":11,"y":11,"a":8,"g":10,"c":8,"d":8,"e":8,"o":8,"q":8,"C":4,"G":4,"O":4,"Q":4,"s":10,"z":5,"A":17,"x":4}},"O":{"d":"142,-239v66,0,119,48,119,119v0,78,-56,125,-124,125v-72,0,-122,-52,-122,-121v0,-62,45,-123,127,-123xm135,-224v-36,0,-64,39,-64,101v0,62,27,113,73,113v34,0,62,-33,62,-99v0,-72,-29,-115,-71,-115","w":275,"k":{"h":1,"k":1,"l":1,"j":-2,"p":-2,"t":-2,"u":-2,"v":-6,"w":-6,"y":-6,"a":-2,"J":6,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"C":-6,"G":-6,"O":-6,"Q":-6,"s":3,"T":7,"U":4,"V":6,"W":6,"X":13,"Y":13,"z":1,",":13,".":13,"A":20,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,"x":1,"M":6}},"P":{"d":"15,-234v84,1,190,-15,189,67v-1,61,-61,88,-113,69v4,39,-17,92,34,86r0,12r-112,0r0,-12v27,-3,31,-5,31,-36r0,-138v0,-31,-4,-32,-29,-35r0,-13xm108,-220v-12,1,-18,3,-17,15r0,93v31,9,61,6,61,-54v0,-41,-22,-54,-44,-54","w":215,"k":{"f":4,"i":4,"m":4,"n":4,"r":4,"h":3,"k":3,"l":3,"v":-7,"w":-7,"y":-7,"a":8,"-":20,"c":13,"d":13,"e":13,"o":13,"q":13,"s":9,"Y":3,",":54,".":54,"A":39,"B":2,"D":2,"E":2,"F":2,"H":2,"I":2,"K":2,"L":2,"N":2,"P":2,"R":2,":":3,";":3}},"Q":{"d":"264,49r-3,10v-74,2,-64,-4,-138,-54v-52,-1,-108,-58,-108,-120v0,-64,43,-124,126,-124v66,0,120,48,120,119v0,60,-37,104,-80,117v23,16,57,39,83,52xm129,-11v14,-3,29,-14,39,-2v17,-7,38,-37,38,-96v0,-72,-29,-115,-72,-115v-39,0,-64,44,-64,101v0,57,22,101,59,112","w":272,"k":{"h":1,"k":1,"l":1,"j":-2,"p":-2,"t":-2,"u":-2,"v":-6,"w":-6,"y":-6,"a":-2,"J":6,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"C":-6,"G":-6,"O":-6,"Q":-6,"s":3,"T":7,"U":4,"V":6,"W":6,"X":13,"Y":13,"z":1,",":13,".":13,"A":20,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,"x":1,"M":6}},"R":{"d":"159,-114v18,31,46,92,79,106r-3,11v-81,3,-86,-41,-114,-88v-7,-13,-13,-17,-30,-16v4,37,-16,93,30,88r0,13r-108,0r0,-13v27,-3,31,-5,31,-35r0,-138v0,-29,-4,-32,-30,-35r0,-13v81,3,191,-20,190,61v0,32,-21,49,-45,59xm110,-220v-16,0,-19,1,-19,17r0,88v40,3,62,-18,62,-52v0,-39,-23,-53,-43,-53","w":237,"k":{"f":-3,"i":-3,"m":-3,"n":-3,"r":-3,"h":-7,"k":-7,"l":-7,"j":9,"p":9,"t":9,"u":9,"v":8,"w":8,"y":8,"a":-6,"-":16,"c":2,"d":2,"e":2,"o":2,"q":2,"C":5,"G":5,"O":5,"Q":5,"T":12,"U":13,"V":16,"W":16,"X":-7,"Y":19,",":-4,".":-4,"A":-3}},"S":{"d":"125,-47v-1,-52,-105,-62,-105,-122v0,-40,31,-70,82,-70v23,0,44,7,50,9v1,13,4,30,7,52r-12,3v-7,-23,-22,-50,-51,-50v-20,0,-34,15,-34,36v0,20,12,31,44,47v38,18,64,38,64,74v0,61,-87,92,-146,60v-4,-9,-7,-38,-10,-60r12,-5v7,23,28,64,63,64v22,0,36,-15,36,-38","w":181,"k":{"f":4,"i":4,"m":4,"n":4,"r":4,"h":2,"k":2,"l":2,"j":4,"p":4,"t":4,"u":4,"v":6,"w":6,"y":6,"a":-3,"J":6,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"T":4,"U":5,"Y":9,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,"M":4}},"T":{"d":"92,-218v-58,0,-58,5,-69,46r-13,0v1,-26,3,-53,4,-71v15,-1,16,12,30,9r144,0v13,2,15,-10,30,-9v0,15,2,47,4,70r-13,1v-8,-42,-19,-48,-69,-46r0,170v0,31,3,32,35,35r0,13r-117,0r0,-13v30,-3,34,-4,34,-35r0,-170","w":230,"k":{"t":33,"j":33,"i":29,"f":29,"m":29,"n":29,"r":29,"p":33,"u":33,"v":24,"w":24,"y":24,"a":32,"-":16,"c":37,"d":37,"e":37,"o":37,"q":37,"C":8,"G":8,"O":8,"Q":8,"s":38,"S":-3,"T":-7,"V":-11,"W":-11,"X":-10,"Y":-7,"z":26,",":32,".":32,"A":31,":":13,";":13,"M":3}},"U":{"d":"209,-112v0,-57,17,-110,-39,-109r0,-13r90,0r0,13v-50,1,-33,57,-33,110v0,67,-30,117,-93,116v-62,-1,-93,-33,-93,-103v0,-44,22,-128,-31,-123r0,-13r109,0r0,13v-51,-5,-30,75,-30,117v0,54,19,85,58,85v43,0,62,-33,62,-93","w":262,"k":{"b":-4,"f":11,"i":11,"m":11,"n":11,"r":11,"h":-2,"k":-2,"l":-2,"j":8,"p":8,"t":8,"u":8,"v":8,"w":8,"y":8,"a":10,"g":11,"c":10,"d":10,"e":10,"o":10,"q":10,"s":15,"T":-5,"z":14,",":23,".":23,"A":28,"x":16,"M":4}},"V":{"d":"253,-234r0,13v-23,3,-31,7,-45,41v-12,28,-44,110,-72,184r-18,0v-24,-66,-58,-153,-73,-190v-11,-28,-18,-33,-40,-35r0,-13r108,0r0,13v-26,4,-26,8,-21,23r53,136v20,-53,35,-95,45,-126v8,-25,8,-29,-22,-33r0,-13r85,0","w":255,"k":{"t":31,"j":31,"i":34,"f":34,"m":34,"n":34,"r":34,"h":3,"k":3,"l":3,"p":31,"u":31,"v":20,"w":20,"y":20,"a":35,"-":18,"c":33,"d":33,"e":33,"o":33,"q":33,"C":14,"G":14,"O":14,"Q":14,"S":13,"T":-5,",":51,".":51,"A":46,")":-2,"]":-2,"}":-2,":":26,";":26}},"W":{"d":"349,-234r0,13v-24,4,-30,8,-40,38v-8,23,-30,86,-60,187r-18,0r-60,-160r-54,160r-19,0r-57,-189v-9,-28,-15,-33,-36,-36r0,-13r106,0r0,13v-27,3,-27,8,-22,26r37,124r51,-161r18,0r61,163v14,-44,29,-101,34,-122v5,-22,3,-27,-26,-30r0,-13r85,0","w":352,"k":{"t":31,"j":31,"i":34,"f":34,"m":34,"n":34,"r":34,"h":3,"k":3,"l":3,"p":31,"u":31,"v":20,"w":20,"y":20,"a":35,"-":18,"c":33,"d":33,"e":33,"o":33,"q":33,"C":14,"G":14,"O":14,"Q":14,"S":13,"T":-5,",":51,".":51,"A":46,")":-2,"]":-2,"}":-2,":":26,";":26}},"X":{"d":"252,0r-116,0r0,-13v24,-4,22,-8,16,-20v-4,-6,-11,-20,-38,-65v-17,26,-31,49,-39,63v-9,15,-6,18,18,22r0,13r-90,0r0,-13v20,-2,33,-7,43,-19v13,-16,37,-49,58,-80r-51,-84v-10,-17,-20,-22,-44,-25r0,-13r108,0r0,13v-20,4,-18,9,-14,17v6,12,17,30,32,54v11,-14,23,-35,32,-51v7,-13,6,-16,-17,-20r0,-13r87,0r0,13v-53,6,-61,46,-93,84r60,95v15,23,23,26,48,29r0,13","w":249,"k":{"f":-6,"i":-6,"m":-6,"n":-6,"r":-6,"j":13,"p":13,"t":13,"u":13,"v":20,"w":20,"y":20,"a":-2,"c":6,"d":6,"e":6,"o":6,"q":6,"C":14,"G":14,"O":14,"Q":14,"S":-2,"T":2,"V":6,"W":6,"X":-5,"Y":6,"A":-4}},"Y":{"d":"233,-234r0,13v-23,3,-31,9,-44,30v-18,31,-46,73,-46,141v0,33,2,35,34,38r0,12r-117,0r0,-12v47,5,31,-39,34,-78v-7,-41,-24,-51,-49,-101v-12,-24,-19,-27,-39,-30r0,-13r102,0r0,13v-23,3,-23,7,-17,20r42,79v10,-21,28,-55,37,-77v6,-14,6,-19,-21,-22r0,-13r84,0","w":235,"k":{"t":35,"j":35,"i":32,"f":32,"m":32,"n":32,"r":32,"h":1,"k":1,"l":1,"p":35,"u":35,"v":31,"w":31,"y":31,"a":41,"-":26,"c":40,"d":40,"e":40,"o":40,"q":40,"C":16,"G":16,"O":16,"Q":16,"S":11,"T":-5,"V":3,"W":3,"X":3,"Y":5,",":42,".":42,"A":38,":":27,";":27,"M":5}},"Z":{"d":"120,-16v58,0,72,-7,87,-53r12,2v-3,18,-9,54,-13,67r-192,0r-4,-6r138,-212r-46,0v-61,1,-46,9,-63,47r-12,0v1,-28,3,-53,4,-72v15,-1,13,9,30,9r146,0r3,5r-134,211v12,1,21,2,44,2","w":222,"k":{"f":-2,"i":-2,"m":-2,"n":-2,"r":-2,"j":3,"p":3,"t":3,"u":3,"v":12,"w":12,"y":12,"a":-5,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"A":-1}},"[":{"d":"109,58r-67,0r0,-311r67,0r0,13v-36,3,-38,5,-38,33r0,219v0,28,1,30,38,33r0,13","w":126,"k":{"J":-5}},"\\":{"d":"109,16r-25,0r-74,-255r25,0","w":119},"]":{"d":"84,58r-66,0r0,-13v36,-3,37,-5,37,-33r0,-219v0,-28,-1,-30,-37,-33r0,-13r66,0r0,311","w":126},"^":{"d":"182,-77r-28,0r-54,-120r-55,120r-26,0r70,-147r23,0","w":201},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"a":{"d":"86,-163v59,-2,54,57,54,117v0,24,10,23,24,18r3,12r-39,20v-17,1,-28,-10,-31,-21v-14,9,-31,21,-38,21v-30,0,-48,-24,-48,-46v0,-41,70,-41,84,-58v2,-24,-5,-46,-21,-46v-23,0,-15,42,-38,43v-10,0,-22,-9,-22,-18v7,-24,45,-34,72,-42xm95,-86v-12,10,-38,14,-36,36v2,27,19,33,36,22r0,-58","w":167},"b":{"d":"71,-150v47,-34,110,8,110,63v0,78,-83,112,-157,78r0,-195v0,-21,-1,-24,-21,-25r0,-11v18,-2,47,-7,68,-13r0,103xm71,-39v-1,18,6,29,23,29v19,0,37,-21,37,-66v0,-53,-24,-70,-60,-62r0,99","w":192,"k":{"b":3,"f":4,"i":4,"m":4,"n":4,"r":4,"h":1,"k":1,"l":1,"j":3,"p":3,"t":3,"u":3,"v":1,"w":1,"y":1,"a":-3,"g":-1,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,",":8,".":8,"x":9}},"c":{"d":"130,-122v-34,-24,-75,-43,-75,30v0,69,52,78,89,49r6,8v-17,23,-39,39,-61,39v-49,0,-79,-37,-79,-76v0,-46,60,-94,98,-91v33,-6,50,32,22,41","w":151,"k":{"j":-2,"p":-2,"t":-2,"u":-2,"v":-10,"w":-10,"y":-10,"a":-5,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,",":-3,".":-3}},"d":{"d":"195,-21r0,12v-9,1,-43,6,-71,14r0,-21v-41,39,-114,16,-114,-59v0,-53,50,-95,114,-87v-4,-30,15,-69,-24,-67r0,-11v23,-3,52,-8,70,-13r0,208v-2,25,8,21,25,24xm124,-29r0,-101v-6,-13,-15,-18,-26,-18v-8,0,-36,9,-36,64v0,54,29,72,62,55","w":196,"k":{"b":1,"h":-4,"k":-4,"l":-4,"j":2,"p":2,"t":2,"u":2,"a":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,",":1,".":1}},"e":{"d":"11,-73v0,-50,39,-90,82,-90v33,0,59,28,59,58v0,7,-3,11,-11,12v-6,1,-51,5,-86,6v1,59,52,73,89,43r6,8v-47,76,-139,36,-139,-37xm85,-149v-14,0,-25,17,-28,45v15,0,28,-1,43,-1v5,0,7,-1,7,-7v0,-18,-8,-37,-22,-37","w":157,"k":{"b":1,"f":2,"i":2,"m":2,"n":2,"r":2,"h":1,"k":1,"l":1,"j":-1,"p":-1,"t":-1,"u":-1,"v":-6,"w":-6,"y":-6,"a":-3,"g":-1,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"z":-3,",":2,".":2,"x":1}},"f":{"d":"90,-231v-22,5,-10,35,-11,72r42,0v1,4,0,14,-5,17r-37,0r0,103v0,23,3,24,30,27r0,12r-98,0r0,-12v21,-3,22,-4,22,-27r0,-103v-8,-1,-23,4,-25,-4v6,-7,9,-16,25,-13v-3,-47,32,-88,78,-94v28,-4,47,25,22,40v-17,10,-28,-21,-43,-18","w":119,"k":{"?":-21,"!":-22,"f":-2,"i":-2,"m":-2,"n":-2,"r":-2,"h":-6,"k":-6,"l":-6,"v":-7,"w":-7,"y":-7,"a":-1,"c":5,"d":5,"e":5,"o":5,"q":5,"s":2,",":-2,".":-2,")":-30,"]":-30,"}":-30,"\"":-41,"'":-41}},"g":{"d":"10,44v0,-20,25,-28,38,-38v-22,-7,-31,-18,-32,-39v18,-8,30,-18,37,-24v-22,-7,-36,-25,-36,-47v2,-54,65,-71,109,-50v19,2,42,-7,53,-2v-3,13,-14,28,-36,21v31,43,-20,99,-77,82v-11,11,-4,23,19,23v44,1,88,-7,88,44v0,41,-48,74,-96,74v-46,0,-67,-24,-67,-44xm85,-150v-11,0,-22,14,-22,40v0,25,8,45,25,45v14,0,22,-14,22,-41v0,-23,-7,-44,-25,-44xm139,34v-1,-24,-24,-26,-52,-26v-27,0,-38,6,-38,25v0,18,18,35,46,35v27,0,44,-15,44,-34","w":177,"k":{"f":-3,"i":-3,"m":-3,"n":-3,"r":-3,"h":-4,"k":-4,"l":-4,"j":-1,"p":-1,"t":-1,"u":-1,"v":-9,"w":-9,"y":-9,"a":-1}},"h":{"d":"191,0r-84,0r0,-12v35,-1,11,-58,18,-88v0,-43,-29,-45,-52,-27r0,91v0,20,2,22,17,24r0,12r-86,0r0,-12v21,-2,23,-3,23,-26r0,-168v0,-22,-1,-21,-20,-23r0,-11v19,-3,44,-8,66,-13r0,113v31,-36,103,-32,98,36r0,66v0,23,2,23,20,26r0,12","w":198,"k":{"T":26,"b":2,"h":-3,"k":-3,"l":-3,"j":3,"p":3,"t":3,"u":3,"v":5,"w":5,"y":5,"g":3}},"i":{"d":"53,-186v-13,0,-25,-11,-25,-25v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-11,25,-26,25xm103,0r-93,0r0,-12v21,-3,23,-3,23,-29r0,-71v0,-24,-3,-25,-20,-28r0,-10v22,-3,46,-7,66,-13r0,122v0,25,2,26,24,29r0,12","w":106,"k":{"b":1,"h":-4,"k":-4,"l":-4,"j":2,"p":2,"t":2,"u":2,"a":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,",":1,".":1}},"j":{"d":"53,-186v-13,0,-25,-11,-25,-25v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-12,25,-26,25xm80,-46v0,67,-41,120,-74,134v-5,0,-14,-8,-14,-20v-1,-17,34,-8,36,-17v8,-42,3,-108,5,-161v0,-26,-2,-27,-21,-30r0,-10v22,-3,45,-8,68,-13r0,117","w":103,"k":{"j":4,"p":4,"t":4,"u":4,",":3,".":3}},"k":{"d":"110,-102v22,25,45,84,83,90r0,12r-64,0v-12,-13,-33,-55,-53,-77r-4,0v3,29,-11,68,24,65r0,12r-93,0r0,-12v22,-3,24,-4,24,-27r0,-166v0,-20,-3,-23,-22,-25r0,-10v17,-2,43,-6,67,-13r0,165v21,-5,33,-30,42,-45v4,-8,3,-12,-11,-14r0,-11r78,-3r0,11v-42,6,-50,22,-71,48","w":184,"k":{"b":2,"f":-4,"i":-4,"m":-4,"n":-4,"r":-4,"h":-7,"k":-7,"l":-7,"j":3,"p":3,"t":3,"u":3,"a":-3}},"l":{"d":"97,0r-93,0r0,-12v22,-3,23,-5,23,-28r0,-164v0,-22,-2,-22,-22,-25r0,-11v21,-3,47,-8,68,-13r0,213v0,24,2,26,24,28r0,12","w":100,"k":{"b":1,"h":-4,"k":-4,"l":-4,"j":2,"p":2,"t":2,"u":2,"a":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,",":1,".":1}},"m":{"d":"174,-135v16,-10,31,-27,54,-28v56,-4,49,70,48,127v0,21,1,21,20,24r0,12r-84,0r0,-12v33,1,13,-59,18,-88v-3,-46,-27,-41,-53,-23v2,27,1,58,1,87v0,21,3,22,19,24r0,12r-84,0r0,-12v36,0,13,-60,19,-90v-1,-42,-30,-39,-53,-22r0,88v0,21,2,22,16,24r0,12r-84,0r0,-12v21,-3,22,-3,22,-26r0,-75v0,-21,-1,-24,-18,-27r0,-10v17,-3,41,-8,63,-14r0,28v24,-25,81,-42,96,1","w":303,"k":{"T":26,"b":2,"h":-3,"k":-3,"l":-3,"j":3,"p":3,"t":3,"u":3,"v":5,"w":5,"y":5,"g":3}},"n":{"d":"79,-138v13,-8,33,-25,51,-25v54,0,48,69,47,125v0,23,2,23,21,26r0,12r-84,0r0,-12v31,2,17,-62,17,-90v0,-42,-30,-40,-52,-23r0,88v0,22,2,23,17,25r0,12r-87,0r0,-12v22,-3,24,-3,24,-27r0,-75v0,-22,-2,-22,-19,-26r0,-10v20,-3,44,-8,65,-14r0,26","w":203,"k":{"T":26,"b":2,"h":-3,"k":-3,"l":-3,"j":3,"p":3,"t":3,"u":3,"v":5,"w":5,"y":5,"g":3}},"o":{"d":"97,-163v50,0,82,38,82,81v0,58,-42,86,-84,86v-57,0,-84,-41,-84,-80v0,-58,46,-87,86,-87xm127,-72v0,-88,-64,-110,-65,-17v0,44,14,79,37,79v14,0,28,-9,28,-62","w":189,"k":{"b":3,"f":4,"i":4,"m":4,"n":4,"r":4,"h":1,"k":1,"l":1,"j":3,"p":3,"t":3,"u":3,"v":1,"w":1,"y":1,"a":-3,"g":-1,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,",":8,".":8,"x":9}},"p":{"d":"76,-141v13,-7,27,-21,45,-22v42,0,65,34,65,69v0,53,-41,88,-87,98v-9,0,-18,-2,-23,-4v5,34,-18,75,30,71r0,12r-100,0r0,-12v23,-2,24,-5,24,-25r0,-162v0,-20,-3,-21,-21,-24r0,-10v19,-3,43,-10,67,-17r0,26xm76,-127r0,99v31,29,64,8,63,-48v-2,-56,-33,-72,-63,-51","w":196,"k":{"b":3,"f":4,"i":4,"m":4,"n":4,"r":4,"h":1,"k":1,"l":1,"j":3,"p":3,"t":3,"u":3,"v":1,"w":1,"y":1,"a":-3,"g":-1,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,",":8,".":8,"x":9}},"q":{"d":"10,-72v-2,-64,76,-107,139,-84v2,2,15,-7,20,-3r-1,205v0,21,2,22,24,25r0,12r-98,0r0,-12v46,3,22,-45,28,-79v-49,33,-121,-19,-112,-64xm122,-21r0,-113v-27,-33,-61,-10,-61,49v0,48,30,75,61,64","w":192,"k":{"j":4,"p":4,"t":4,"u":4,",":3,".":3}},"r":{"d":"79,-164v1,12,-2,28,1,38v13,-22,27,-37,41,-37v31,-1,28,43,6,49v-19,-1,-35,-24,-48,9r0,68v0,22,2,23,30,25r0,12r-99,0r0,-12v20,-2,23,-3,23,-25r0,-79v0,-18,-2,-20,-19,-24r0,-10v22,-3,43,-7,65,-14","w":145,"k":{"j":-4,"p":-4,"t":-4,"u":-4,"v":-12,"w":-12,"y":-12,"a":-3,"-":9,"c":3,"d":3,"e":3,"o":3,"q":3,",":24,".":24,"x":-6,":":-10,";":-10}},"s":{"d":"91,-29v-1,-34,-75,-34,-73,-83v-6,-40,57,-63,95,-45v4,8,8,34,9,41r-11,3v-10,-22,-21,-36,-38,-36v-9,0,-19,7,-19,19v0,34,85,38,76,81v1,54,-76,63,-110,41v-2,-6,-6,-31,-6,-48r11,-1v8,23,25,47,47,47v12,0,19,-8,19,-19","w":137,"k":{"f":1,"i":1,"m":1,"n":1,"r":1,"h":1,"k":1,"l":1,"j":1,"p":1,"t":1,"u":1,"v":-1,"w":-1,"y":-1,"a":-1,"g":-1,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3}},"t":{"d":"118,-13v-30,20,-88,29,-88,-28r0,-101v-8,-1,-22,4,-24,-4v5,-7,9,-16,24,-13r0,-26r41,-28r5,2r0,52r36,0v4,4,3,14,-3,17r-33,0r0,89v3,39,17,33,39,27","w":122,"k":{"b":4,"f":2,"i":2,"m":2,"n":2,"r":2,"j":6,"p":6,"t":6,"u":6,"v":1,"w":1,"y":1,"g":3,"c":4,"d":4,"e":4,"o":4,"q":4,",":-3,".":-3}},"u":{"d":"103,-155v19,-1,52,-5,69,-7r0,117v-1,24,6,23,23,25r0,11v-21,1,-50,14,-69,11r0,-22v-24,33,-96,35,-96,-27r0,-74v1,-22,-8,-18,-20,-24r0,-10r67,-7r-1,107v0,37,30,39,50,22r0,-88v2,-24,-10,-19,-23,-24r0,-10","w":199,"k":{"b":1,"h":-4,"k":-4,"l":-4,"j":2,"p":2,"t":2,"u":2,"a":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,",":1,".":1}},"v":{"d":"174,-159r0,11v-18,4,-22,8,-30,25v-13,29,-31,72,-53,127r-14,0v-18,-45,-33,-87,-51,-128v-6,-16,-12,-20,-29,-24r0,-11r89,0r0,11v-17,4,-18,6,-14,19v9,25,22,60,28,75v6,-17,18,-49,26,-74v4,-12,3,-17,-17,-20r0,-11r65,0","w":167,"k":{"b":-4,"f":-4,"i":-4,"m":-4,"n":-4,"r":-4,"h":-3,"k":-3,"l":-3,"j":-3,"p":-3,"t":-3,"u":-3,"v":-3,"w":-3,"y":-3,"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,",":27,".":27,":":-11,";":-11}},"w":{"d":"252,-159r0,11v-17,3,-20,6,-28,25v-13,33,-28,77,-46,127r-13,0v-14,-34,-30,-67,-43,-100v-14,33,-26,66,-40,100r-13,0r-43,-129v-6,-17,-10,-21,-25,-23r0,-11r89,0r0,11v-21,3,-23,7,-19,19v8,22,12,50,22,70v13,-31,24,-64,37,-98r14,0r42,99v5,-17,16,-53,20,-68v3,-14,1,-19,-21,-22r0,-11r67,0","w":245,"k":{"b":-4,"f":-4,"i":-4,"m":-4,"n":-4,"r":-4,"h":-3,"k":-3,"l":-3,"j":-3,"p":-3,"t":-3,"u":-3,"v":-3,"w":-3,"y":-3,"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,",":27,".":27,":":-11,";":-11}},"x":{"d":"99,-105v7,-18,36,-36,6,-43r0,-11r66,0r0,11v-37,5,-41,27,-64,54v20,26,34,78,71,82r0,12r-90,0r0,-12v14,-2,15,-5,9,-16r-18,-32v-6,16,-39,41,-8,48r0,12r-68,0r0,-12v37,-5,46,-35,68,-60v-21,-25,-27,-70,-65,-76r0,-11r85,0r0,11v-28,7,6,29,8,43","w":173,"k":{"c":2,"d":2,"e":2,"o":2,"q":2}},"y":{"d":"174,-159r0,11v-17,3,-21,7,-30,26v-12,24,-73,176,-80,200v-6,22,-37,5,-38,-13v10,-25,58,-32,45,-71v-18,-52,-39,-103,-46,-119v-6,-15,-11,-20,-28,-23r0,-11r89,0r0,11v-15,3,-18,5,-14,17r27,80v8,-20,21,-56,27,-77v4,-12,1,-17,-17,-20r0,-11r65,0","w":167,"k":{"b":-4,"f":-4,"i":-4,"m":-4,"n":-4,"r":-4,"h":-3,"k":-3,"l":-3,"j":-3,"p":-3,"t":-3,"u":-3,"v":-3,"w":-3,"y":-3,"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"s":1,",":27,".":27,":":-11,";":-11}},"z":{"d":"141,-45v4,-8,9,-12,17,-5v-7,20,-13,39,-17,50r-128,0r-4,-6v30,-47,54,-90,81,-138v-40,-4,-58,8,-68,38r-11,-5v5,-18,10,-40,14,-56v21,11,76,8,118,8r4,5r-80,138v38,0,57,2,74,-29","w":160,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4}},"{":{"d":"112,46r0,14v-28,0,-61,-6,-61,-50v0,-42,27,-95,-30,-101r-1,-13v59,-6,31,-58,31,-100v0,-44,33,-52,61,-52r0,14v-77,11,17,124,-60,145v49,9,29,64,28,108v0,18,5,32,32,35","w":128,"k":{"J":-5}},"|":{"d":"64,90r-31,0r0,-360r31,0r0,360","w":97},"}":{"d":"109,-104r0,13v-58,7,-31,56,-31,102v0,42,-33,49,-61,49r0,-13v76,-8,-15,-123,60,-145v-49,-8,-27,-68,-28,-110v0,-15,-5,-31,-32,-34r0,-14v28,0,61,6,61,50v0,46,-27,96,31,102","w":128},"~":{"d":"19,-78v34,-69,79,-22,126,-12v13,0,22,-10,29,-26r16,11v-9,24,-24,38,-47,38v-43,0,-83,-53,-108,1","w":207},"'":{"d":"12,-243v15,-2,33,-15,45,-9v-1,12,-9,63,-14,93r-13,7v-7,-36,-16,-86,-18,-91","w":71},"`":{"d":"86,-181r-11,5r-46,-56v-1,-12,30,-11,38,-12v7,21,13,41,19,63","w":144},"\u00a0":{"w":78}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1993 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":225,"face":{"font-family":"copper","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 14 6 5 2 2 3 2 4 4","ascent":"288","descent":"-72","bbox":"17 -198 209 8","underline-thickness":"19.5117","underline-position":"-17.4023","unicode-range":"U+0030-U+0039"},"glyphs":{" ":{},"0":{"d":"113,-168v-40,0,-66,32,-66,73v0,41,27,74,66,74v39,0,66,-33,66,-74v0,-40,-26,-73,-66,-73xm113,3v-55,0,-96,-42,-96,-97v0,-55,41,-98,96,-98v56,0,96,42,96,98v0,56,-41,97,-96,97"},"1":{"d":"88,-162v14,3,22,-20,7,-23r0,-4r47,0v-1,9,-9,3,-9,15r0,159v-1,10,9,6,9,15r-47,0v0,-9,8,-5,8,-15r0,-129v-8,3,-18,4,-21,13r-4,0r0,-36v7,-1,4,6,10,5"},"2":{"d":"43,0v-10,-1,-6,7,-15,8v-3,-78,80,-89,119,-128v15,-23,-6,-50,-34,-48v-21,2,-61,17,-54,40r-4,3r-28,-38v30,2,49,-29,91,-29v36,0,64,21,64,56v-1,63,-96,64,-119,109r116,0v10,1,6,-8,15,-8r0,43v-9,0,-5,-8,-15,-8r-136,0"},"3":{"d":"30,-20v-5,0,-6,9,-11,4r19,-42v3,0,5,1,4,5v17,34,121,51,121,-6v0,-26,-21,-32,-49,-32v-19,0,-26,-2,-29,9r-4,0r0,-42r4,0v2,11,11,8,27,9v23,0,40,-6,40,-26v0,-45,-91,-26,-99,0v1,4,3,8,-1,10r-30,-36v25,-2,60,-28,90,-26v37,3,70,17,70,52v0,18,-10,28,-22,37v70,30,20,108,-46,108v-26,0,-59,-12,-84,-24"},"4":{"d":"139,-61r0,-102r-87,102r87,0xm199,-29v-8,-5,-11,-10,-31,-8v1,13,-4,31,8,33r0,4r-45,0v6,-8,10,-17,8,-37r-102,0v-10,-1,-6,7,-15,8r0,-33r99,-115v4,-6,-3,-6,-3,-12r58,0v-1,9,-8,4,-8,15r0,112v11,-1,25,3,27,-7r4,0r0,40"},"5":{"d":"31,-19v-3,2,-7,6,-10,2r28,-40v0,22,34,34,61,34v30,1,54,-16,54,-44v0,-42,-74,-51,-92,-23v1,4,1,7,-2,9r-45,-41v16,-2,10,-32,11,-52v1,-11,-7,-6,-8,-15r140,0v10,1,6,-8,15,-9r0,42v-9,0,-4,-11,-15,-8r-105,0r0,44v50,-26,131,-9,131,54v0,79,-108,82,-163,47"},"6":{"d":"117,-104v-30,0,-53,14,-53,42v0,25,24,42,51,42v31,0,51,-15,52,-43v1,-25,-24,-41,-50,-41xm30,-90v0,-86,83,-124,152,-90v5,1,7,-8,11,-3r-20,40v-4,-1,-2,-2,-2,-5v-10,-26,-74,-29,-93,-4v-10,13,-17,27,-18,48v38,-41,137,-25,137,40v0,43,-37,68,-81,68v-54,0,-86,-39,-86,-94"},"7":{"d":"111,-15v-5,8,6,8,6,15r-52,0v0,-8,12,-5,13,-14r82,-149r-121,0v-11,-2,-6,8,-15,8r0,-43v9,1,5,9,15,9r140,0v10,2,5,-9,14,-9r0,29"},"8":{"d":"172,-55v-1,-46,-117,-45,-118,0v0,48,118,48,118,0xm165,-139v-2,-42,-102,-41,-105,0v1,39,105,40,105,0xm25,-55v0,-23,15,-37,33,-45v-16,-7,-26,-16,-25,-38v0,-37,39,-54,80,-54v41,0,80,17,80,54v1,22,-9,31,-25,38v17,8,33,22,33,45v0,42,-39,58,-88,59v-49,1,-86,-17,-88,-59"},"9":{"d":"107,-87v29,0,54,-14,53,-41v0,-25,-26,-41,-53,-41v-26,0,-49,17,-49,42v0,24,23,40,49,40xm50,-47v0,29,79,38,97,10v11,-11,18,-26,19,-47v-41,36,-140,22,-138,-41v1,-42,37,-67,81,-67v53,0,87,39,87,94v0,60,-34,103,-92,102v-22,5,-62,-22,-74,-11r-4,-1r20,-41"},"\u00a0":{}}});



