// Give the selection the height of the viewport of if bigger the height of the argument
// Change those heights if the size of the viewport changes
$.fn.maxHeight = function(ref) {
  // Equal the height of #sidebar with the viewport of the browser / or if bigger the height of #container
  var selection = $(this);
  $(this).height(function() {
	var window_height = $(window).height();
	var container_height = $(ref).height();	  
	if (window_height > container_height) {
		return window_height;
		}
	else {
		return container_height;}
  });
  
  // When the height of the viewport resizes, change the height of the #sidebar to the new height / or if bigger remain the height of arument ref  
  function resizeSelection() {
	var window_height2 = $(window).height();
	var container_height2 = $(ref).height();
	if (window_height2 > container_height2) {		
		selection.height(window_height2);}
	else {		
		selection.height(container_height2);}
  };
  
  var resizeTimer = null;
  $(window).bind('resize', function() {
	  if (resizeTimer) clearTimeout(resizeTimer);
	  resizeTimer = setTimeout(resizeSelection, 1);
  }); 

};

/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});


/*
 * jQuery Cycle Plugin (core)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.86 (05-APR-2010)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.86";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}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(opts2.currSlide,opts2.nextSlide,opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev);},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,1);}}}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]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=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=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.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=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{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>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||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"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||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=false;}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.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(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; 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{var roll=(opts.nextSlide+1)==els.length;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(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,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(curr,next,opts,fwd);while((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,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){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,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});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.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,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,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null};})(jQuery);

$.fn.cycle.transitions.hideFirstThenSlideRight = function($cont, $slides, opts) { 
    var $el = $($slides[0]); 
    var w = $el.width(); 
    var h = $el.height(); 
    opts.cssBefore = { top:  0, 
        left: -290, 
        display: 'block'  }; 
    opts.animIn    = { left: 0	 }; 
    opts.animOut   = {  top: 0,
		left:-300 };     
};
  
/*------------------------------------------------------------------------------
/* FROM HERE STARTS THE CUFON SCRIPT TO USE A CUSTOM FONT 
----------------------------------------------------------------------------- */

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 * 
 * Cufon - Add custom fonts
 */
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("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}})());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}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1990, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype Library GmbH, and may be registered in certain
 * jurisdictions.
 * 
 * Full name:
 * HelveticaNeueLTStd-ThCn
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":426,"face":{"font-family":"Helvetica Neue LT Std","font-weight":250,"font-stretch":"condensed","units-per-em":"1000","panose-1":"2 11 4 6 2 2 2 3 2 4","ascent":"714","descent":"-286","x-height":"12","bbox":"-41 -913 769 194","underline-thickness":"50","underline-position":"-50","stemh":"34","stemv":"38","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":240,"k":{"T":37,"V":37,"W":37,"Y":37,"\u00dd":37,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37}},"!":{"d":"90,-714r42,0r0,230r-6,298r-30,0r-6,-298r0,-230xm90,0r0,-96r42,0r0,96r-42,0","w":222},"\"":{"d":"75,-486r0,-228r34,0r0,228r-34,0xm187,-486r0,-228r34,0r0,228r-34,0","w":296},"#":{"d":"292,-225r-137,0r-31,225r-34,0r31,-225r-108,0r0,-34r112,0r25,-178r-109,0r0,-34r113,0r31,-225r34,0r-31,225r137,0r31,-225r34,0r-31,225r108,0r0,34r-112,0r-25,178r109,0r0,34r-113,0r-31,225r-34,0xm296,-259r25,-178r-137,0r-25,178r137,0","w":480},"$":{"d":"255,-338r0,316v86,-7,149,-68,149,-158v0,-104,-64,-134,-149,-158xm225,-390r0,-284v-73,4,-135,45,-135,143v0,85,52,120,135,141xm225,96r0,-84v-162,-9,-194,-109,-191,-220r42,0v-5,112,33,177,149,186r0,-326v-93,-28,-177,-72,-177,-179v0,-109,72,-178,177,-181r0,-70r30,0r0,70v124,7,175,78,175,187r-42,0v0,-88,-38,-147,-133,-153r0,294v105,31,191,72,191,197v0,121,-82,190,-191,195r0,84r-30,0","w":480},"%":{"d":"420,-165v0,117,34,147,88,147v52,0,88,-30,88,-147v0,-117,-34,-147,-88,-147v-46,0,-88,30,-88,147xm172,12r303,-720r34,0r-303,720r-34,0xm89,-531v0,117,34,147,88,147v52,0,88,-30,88,-147v0,-117,-34,-147,-88,-147v-46,0,-88,30,-88,147xm386,-165v0,-114,37,-177,122,-177v95,0,122,63,122,177v0,118,-39,177,-122,177v-97,0,-122,-63,-122,-177xm55,-531v0,-114,37,-177,122,-177v95,0,122,63,122,177v0,118,-39,177,-122,177v-97,0,-122,-63,-122,-177","w":685},"&":{"d":"481,0r-72,-100v-44,64,-104,112,-200,112v-135,0,-189,-100,-189,-182v0,-115,91,-174,170,-235v-36,-49,-89,-119,-89,-183v0,-74,59,-126,134,-126v92,0,132,65,132,124v1,86,-70,146,-129,193r165,230v18,-39,27,-89,27,-132r38,0v0,54,-14,116,-41,165r96,134r-42,0xm218,-427v54,-38,111,-90,111,-162v0,-56,-40,-91,-93,-91v-64,0,-97,42,-97,98v1,50,49,118,79,155xm387,-130r-177,-247v-64,50,-148,116,-148,201v0,90,64,154,152,154v81,0,140,-56,173,-108","w":537},"(":{"d":"220,184r-30,0v-63,-105,-124,-256,-124,-449v0,-193,61,-344,124,-449r30,0v-66,109,-120,273,-120,449v0,176,54,340,120,449","w":222},")":{"d":"2,-714r30,0v63,105,124,256,124,449v0,193,-61,344,-124,449r-30,0v66,-109,120,-273,120,-449v0,-176,-54,-340,-120,-449","w":222},"*":{"d":"30,-617r12,-30r92,44r0,-111r30,0r0,111r90,-44r12,28r-87,42r59,80r-26,19r-63,-88r-66,88r-26,-19r62,-80","w":296},"+":{"d":"283,0r0,-236r-236,0r0,-34r236,0r0,-236r34,0r0,236r236,0r0,34r-236,0r0,236r-34,0","w":600},",":{"d":"99,0r0,-102r42,0r0,100v0,78,-17,107,-58,130r0,-34v25,-18,28,-50,28,-94r-12,0","w":240,"k":{" ":37}},"-":{"d":"63,-255r0,-34r189,0r0,34r-189,0","w":315},".":{"d":"99,0r0,-102r42,0r0,102r-42,0","w":240,"k":{" ":37}},"\/":{"d":"-9,12r256,-738r40,0r-256,738r-40,0","w":278},"0":{"d":"84,-348v0,269,58,326,156,326v98,0,156,-61,156,-326v0,-133,0,-326,-156,-326v-156,0,-156,217,-156,326xm42,-348v0,-247,62,-360,198,-360v147,0,198,109,198,360v0,261,-64,360,-198,360v-144,0,-198,-111,-198,-360","w":480},"1":{"d":"244,0r0,-636v-34,39,-108,78,-169,84r0,-34v71,-7,151,-60,173,-122r34,0r0,708r-38,0","w":480},"2":{"d":"434,0r-388,0v0,-101,46,-182,123,-247v84,-71,217,-135,217,-272v0,-91,-51,-155,-144,-155v-108,0,-149,91,-149,181r-42,0v0,-121,67,-215,195,-215v73,0,182,39,182,190v0,150,-134,216,-224,293v-60,52,-116,125,-116,187r346,0r0,38","w":480},"3":{"d":"199,-353r0,-34v110,7,174,-34,174,-144v0,-89,-48,-143,-136,-143v-103,0,-138,79,-140,157r-42,0v0,-111,69,-191,184,-191v103,0,176,63,176,176v0,81,-43,144,-120,164v89,8,143,80,143,169v0,122,-73,211,-207,211v-122,0,-184,-82,-189,-196r42,0v0,86,48,162,149,162v85,0,163,-50,163,-176v0,-101,-69,-165,-197,-155","w":480},"4":{"d":"322,-225r0,-418r-2,0r-249,418r251,0xm322,0r0,-191r-289,0r0,-38r285,-479r42,0r0,483r87,0r0,34r-87,0r0,191r-38,0","w":480},"5":{"d":"55,-331r42,-365r305,0r0,38r-273,0r-34,281r2,0v28,-50,85,-82,147,-82v131,0,192,101,192,225v0,129,-60,246,-203,246v-140,0,-191,-94,-189,-189r42,0v1,93,55,155,143,155v118,0,165,-96,165,-209v0,-110,-53,-194,-154,-194v-88,0,-128,61,-143,94r-42,0","w":480},"6":{"d":"419,-547r-42,0v0,-56,-36,-127,-128,-127v-129,0,-176,163,-167,357v17,-60,61,-135,168,-135v114,0,188,81,188,224v0,139,-63,240,-199,240v-171,0,-197,-169,-197,-331v0,-208,32,-389,211,-389v135,0,166,114,166,161xm92,-217v0,89,39,195,149,195v96,0,155,-69,155,-206v0,-106,-47,-190,-151,-190v-106,0,-153,88,-153,201","w":480},"7":{"d":"437,-696r0,38v-184,210,-268,537,-268,658r-46,0v0,-141,110,-468,276,-658r-356,0r0,-38r394,0","w":480},"8":{"d":"374,-535v0,-81,-48,-139,-134,-139v-86,0,-134,58,-134,139v0,88,55,138,134,138v82,0,134,-50,134,-138xm84,-191v0,105,59,169,156,169v93,0,156,-64,156,-169v0,-118,-60,-172,-156,-172v-87,0,-156,54,-156,172xm42,-191v0,-110,63,-172,139,-189v-77,-15,-117,-80,-117,-155v0,-104,66,-173,176,-173v111,0,176,69,176,173v0,75,-40,134,-114,157v84,12,136,80,136,187v0,124,-76,203,-199,203v-122,0,-197,-79,-197,-203","w":480},"9":{"d":"61,-149r42,0v0,56,36,127,128,127v129,0,176,-163,167,-358v-17,61,-61,136,-168,136v-114,0,-188,-81,-188,-224v0,-139,63,-240,199,-240v171,0,197,169,197,331v0,209,-32,389,-211,389v-135,0,-166,-114,-166,-161xm388,-479v0,-89,-39,-195,-149,-195v-96,0,-155,69,-155,206v0,106,47,190,151,190v106,0,153,-88,153,-201","w":480},":":{"d":"99,0r0,-102r42,0r0,102r-42,0xm99,-395r0,-102r42,0r0,102r-42,0","w":240,"k":{" ":37}},";":{"d":"99,0r0,-102r42,0r0,100v0,78,-17,107,-58,130r0,-34v25,-18,28,-50,28,-94r-12,0xm99,-395r0,-102r42,0r0,102r-42,0","w":240,"k":{" ":37}},"<":{"d":"47,-236r0,-34r506,-242r0,30r-476,229r476,229r0,30","w":600},"=":{"d":"47,-334r0,-34r506,0r0,34r-506,0xm47,-138r0,-34r506,0r0,34r-506,0","w":600},">":{"d":"553,-270r0,34r-506,242r0,-30r476,-229r-476,-229r0,-30","w":600},"?":{"d":"183,-183r0,-50v0,-169,166,-171,166,-327v0,-83,-52,-132,-131,-132v-113,0,-143,90,-141,183r-42,0v-3,-105,39,-217,182,-217v132,0,174,91,174,164v0,179,-166,173,-166,327r0,52r-42,0xm183,0r0,-96r42,0r0,96r-42,0"},"@":{"d":"228,-288v0,75,42,117,105,117v108,0,187,-168,187,-257v0,-46,-8,-115,-95,-115v-121,0,-197,148,-197,255xm572,-557r42,0r-95,292v-18,41,-28,94,24,94v94,0,184,-126,184,-251v0,-170,-154,-270,-310,-270v-190,0,-344,155,-344,339v0,194,172,331,346,331v114,0,221,-57,286,-148r42,0v-63,112,-195,182,-328,182v-223,0,-388,-158,-388,-372v0,-208,174,-366,384,-366v199,0,354,122,354,305v0,149,-129,284,-240,284v-40,0,-65,-28,-70,-70v-34,45,-83,70,-139,70v-81,0,-134,-68,-134,-148v0,-135,101,-292,245,-292v69,0,104,48,117,90","w":800},"A":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0","w":481},"B":{"d":"61,0r0,-714r192,0v140,0,187,72,187,178v0,99,-57,147,-132,162v103,7,155,82,155,180v0,120,-78,194,-204,194r-198,0xm103,-391r137,0v92,0,158,-44,158,-145v0,-97,-48,-144,-140,-144r-155,0r0,289xm103,-34r141,0v116,0,177,-43,177,-161v1,-183,-152,-163,-318,-162r0,323","w":500,"k":{",":74,".":74}},"C":{"d":"467,-509r-42,0v0,-96,-51,-183,-156,-183v-142,0,-189,133,-189,334v0,192,39,336,183,336v138,0,171,-162,171,-218r42,0v0,84,-42,252,-220,252v-155,0,-218,-137,-218,-368v0,-224,63,-370,229,-370v167,0,200,147,200,217","w":500,"k":{",":74,".":74}},"D":{"d":"103,-34r121,0v152,0,215,-104,215,-323v0,-219,-51,-323,-215,-323r-121,0r0,646xm61,0r0,-714v279,-5,420,-19,420,357v0,293,-122,357,-257,357r-163,0","w":519,"k":{",":74,".":74}},"E":{"d":"61,0r0,-714r341,0r0,38r-299,0r0,285r279,0r0,38r-279,0r0,315r308,0r0,38r-350,0"},"F":{"d":"61,0r0,-714r342,0r0,38r-300,0r0,285r279,0r0,38r-279,0r0,353r-42,0","w":407,"k":{"\u00eb":18,"\u00e3":18,"\u00e0":18,"\u00e4":18,",":111,".":111,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e5":18,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37,"e":18,"\u00e9":18,"\u00ea":18,"\u00e8":18,"o":18,"\u00f8":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"r":10}},"G":{"d":"447,0v-2,-46,4,-102,-2,-144v-23,97,-87,156,-188,156v-156,0,-219,-137,-219,-368v0,-224,63,-370,229,-370v167,0,200,147,200,217r-42,0v0,-96,-51,-183,-156,-183v-142,0,-189,133,-189,334v0,192,39,336,183,336v150,0,182,-151,176,-301r-196,0r0,-34r238,0r0,357r-34,0","w":519,"k":{",":55,".":55}},"H":{"d":"61,0r0,-714r42,0r0,313r313,0r0,-313r42,0r0,714r-42,0r0,-363r-313,0r0,363r-42,0","w":519},"I":{"d":"61,0r0,-714r42,0r0,714r-42,0","w":164},"J":{"d":"66,-209v-5,116,34,187,116,187v62,0,122,-31,122,-141r0,-551r42,0r0,551v0,119,-66,175,-161,175v-133,0,-163,-93,-161,-221r42,0","w":407,"k":{",":74,".":74}},"K":{"d":"61,0r0,-714r42,0r0,397r2,0r295,-397r46,0r-224,301r246,413r-48,0r-225,-378r-92,122r0,256r-42,0","w":463,"k":{"O":10,"\u00d8":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10}},"L":{"d":"61,0r0,-714r42,0r0,676r299,0r0,38r-341,0","k":{"T":92,"V":92,"W":92,"y":37,"\u00fd":37,"\u00ff":37,"Y":111,"\u00dd":111}},"M":{"d":"552,0r0,-660r-2,0r-205,660r-42,0r-205,-660r-2,0r0,660r-42,0r0,-714r68,0r203,642r2,0r198,-642r69,0r0,714r-42,0","w":648},"N":{"d":"54,-714r56,0r311,648r2,0r0,-648r42,0r0,714r-55,0r-312,-648r-2,0r0,648r-42,0r0,-714","w":519,"k":{",":55,".":55}},"O":{"d":"269,-726v142,0,230,92,230,369v0,313,-129,369,-230,369v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369xm269,-692v-140,0,-189,139,-189,335v0,196,40,335,189,335v131,0,188,-108,188,-335v0,-193,-43,-335,-188,-335","w":537,"k":{",":74,".":74}},"P":{"d":"61,0r0,-714r185,0v167,3,194,121,194,198v0,121,-75,198,-203,198r-134,0r0,318r-42,0xm103,-352r138,0v85,0,157,-46,157,-164v0,-102,-54,-164,-151,-164r-144,0r0,328","w":463,"k":{"\u00e4":18,",":129,".":129,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37,"e":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00e8":18,"o":18,"\u00f8":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18}},"Q":{"d":"319,-177r85,85v40,-62,53,-155,53,-265v0,-193,-43,-335,-188,-335v-140,0,-189,139,-189,335v0,196,40,335,189,335v46,0,82,-14,113,-41r-88,-89xm481,37r-75,-76v-38,36,-86,51,-137,51v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369v142,0,230,92,230,369v0,143,-27,236,-69,291r76,78","w":537,"k":{",":50,".":50,"U":-10,"\u00da":-10,"\u00db":-10,"\u00dc":-10,"\u00d9":-10}},"R":{"d":"61,0r0,-714r209,0v99,0,177,57,177,187v0,97,-55,164,-143,179v146,9,140,117,138,252v0,41,6,67,24,96r-48,0v-20,-33,-19,-110,-18,-170v0,-102,-28,-161,-143,-161r-154,0r0,331r-42,0xm103,-365v160,-3,302,32,302,-162v0,-96,-54,-153,-141,-153r-161,0r0,315","w":500,"k":{"T":18,"Y":18,"\u00dd":18}},"S":{"d":"77,-220v-9,118,45,198,162,198v99,0,165,-71,165,-162v0,-127,-115,-147,-211,-181v-94,-33,-145,-78,-145,-175v0,-115,79,-186,191,-186v132,0,191,75,191,194r-42,0v0,-96,-44,-160,-145,-160v-80,0,-153,37,-153,148v0,128,119,141,211,175v91,34,145,77,145,182v0,127,-94,199,-207,199v-165,0,-204,-116,-204,-185r0,-47r42,0","w":481,"k":{",":74,".":74}},"T":{"d":"192,0r0,-676r-190,0r0,-38r422,0r0,38r-190,0r0,676r-42,0","k":{"\u00fc":84,"\u00f2":84,"\u00f6":84,"\u00ec":18,"\u00ee":18,"\u00ed":18,"\u00e8":84,"\u00eb":84,"\u00ea":84,"\u00e3":84,"\u00e5":84,"\u00e0":84,"\u00e4":84,"\u00e2":84,"w":84,"y":65,"\u00fd":65,"\u00ff":65,",":111,".":111,"a":84,"\u00e6":84,"\u00e1":84,"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,"e":84,"\u00e9":84,"o":84,"\u00f8":84,"\u00f3":84,"\u00f4":84,"\u00f5":84,"r":84,"-":111,";":74,"i":18,"\u00ef":18,"u":84,"\u00fa":84,"\u00fb":84,"\u00f9":84,":":74}},"U":{"d":"94,-714r0,525v0,100,45,167,156,167v103,0,156,-67,156,-167r0,-525r42,0r0,517v0,161,-99,209,-198,209v-99,0,-198,-38,-198,-209r0,-517r42,0","w":500,"k":{",":74,".":74}},"V":{"d":"196,0r-195,-714r42,0r178,666r2,0r178,-666r42,0r-195,714r-52,0","w":444,"k":{"\u00f6":28,"\u00f4":28,"\u00e8":28,"\u00eb":28,"\u00ea":28,"\u00e3":28,"\u00e5":28,"\u00e0":28,"\u00e4":28,"\u00e2":28,",":111,".":111,"a":28,"\u00e6":28,"\u00e1":28,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37,"e":28,"\u00e9":28,"o":28,"\u00f8":28,"\u00f3":28,"\u00f2":28,"\u00f5":28,"-":40,";":37,"u":28,"\u00fa":28,"\u00fb":28,"\u00fc":28,"\u00f9":28,":":37}},"W":{"d":"485,0r-132,-654r-2,0r-135,654r-50,0r-155,-714r42,0r137,654r2,0r134,-654r51,0r135,654r2,0r137,-654r42,0r-156,714r-52,0","w":704,"k":{"\u00fc":8,"\u00f6":28,"\u00ea":28,"\u00e4":28,",":92,".":92,"a":28,"\u00e6":28,"\u00e1":28,"\u00e2":28,"\u00e0":28,"\u00e5":28,"\u00e3":28,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"e":28,"\u00e9":28,"\u00eb":28,"\u00e8":28,"o":28,"\u00f8":28,"\u00f3":28,"\u00f4":28,"\u00f2":28,"\u00f5":28,"-":40,";":30,"u":8,"\u00fa":8,"\u00fb":8,"\u00f9":8,":":30}},"X":{"d":"409,0r-178,-324r-178,324r-45,0r202,-363r-185,-351r42,0r166,309r168,-309r42,0r-188,351r200,363r-46,0","w":463},"Y":{"d":"201,0r0,-294r-195,-420r46,0r170,376r174,-376r42,0r-195,420r0,294r-42,0","w":444,"k":{"\u00fc":47,"\u00f6":65,",":130,".":130,"a":65,"\u00e6":65,"\u00e1":65,"\u00e2":65,"\u00e4":65,"\u00e0":65,"\u00e5":65,"\u00e3":65,"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,"e":65,"\u00e9":65,"\u00ea":65,"\u00eb":65,"\u00e8":65,"o":65,"\u00f8":65,"\u00f3":65,"\u00f4":65,"\u00f2":65,"\u00f5":65,"-":92,";":55,"i":18,"\u00ed":18,"\u00ee":18,"\u00ef":18,"\u00ec":18,"u":47,"\u00fa":47,"\u00fb":47,"\u00f9":47,":":55}},"Z":{"d":"17,0r0,-42r363,-634r-342,0r0,-38r384,0r0,42r-363,634r367,0r0,38r-409,0","w":443},"[":{"d":"82,184r0,-898r134,0r0,30r-100,0r0,838r100,0r0,30r-134,0","w":222},"\\":{"d":"31,-726r256,738r-40,0r-256,-738r40,0","w":278},"]":{"d":"140,-714r0,898r-134,0r0,-30r100,0r0,-838r-100,0r0,-30r134,0","w":222},"^":{"d":"47,-243r236,-453r34,0r236,453r-30,0r-223,-427r-223,427r-30,0","w":600},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50","w":500},"a":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175","w":389},"b":{"d":"53,0r0,-714r38,0r0,283r2,0v19,-56,53,-104,134,-104v131,0,161,119,161,272v0,162,-41,275,-163,275v-76,0,-116,-47,-134,-113r0,101r-38,0xm226,-501v-96,0,-135,77,-135,238v0,153,35,241,128,241v103,0,127,-108,127,-241v0,-163,-32,-238,-120,-238","k":{",":55,".":55}},"c":{"d":"327,-171r42,0v0,49,-27,183,-162,183v-135,0,-169,-119,-169,-276v0,-173,53,-271,176,-271v127,0,152,124,152,162r-42,0v0,-32,-21,-128,-111,-128v-97,0,-133,89,-133,239v0,163,36,240,133,240v96,0,114,-110,114,-149","w":389,"k":{",":55,".":55}},"d":{"d":"335,0v-2,-32,4,-73,-2,-101v-13,71,-59,113,-132,113v-122,0,-163,-113,-163,-275v0,-160,36,-272,165,-272v74,0,108,52,132,104r0,-283r38,0r0,714r-38,0xm80,-263v0,133,24,241,127,241v93,0,128,-88,128,-241v1,-172,-51,-238,-130,-238v-90,0,-125,79,-125,238"},"e":{"d":"80,-298r254,0v0,-95,-15,-203,-123,-203v-116,0,-131,135,-131,203xm376,-264r-296,0v0,84,1,242,123,242v110,0,128,-110,128,-149r38,0v0,80,-44,183,-162,183v-135,0,-169,-110,-169,-288v0,-160,57,-259,175,-259v123,0,163,102,163,271","w":407,"k":{",":55,".":55}},"f":{"d":"79,0r0,-489r-71,0r0,-34r71,0v-1,-97,-13,-192,92,-191v12,0,26,0,39,3r0,34v-50,-8,-93,-3,-93,65r0,89r87,0r0,34r-87,0r0,489r-38,0","w":204,"k":{",":92,".":92}},"g":{"d":"80,-264v0,134,28,230,127,230v95,0,128,-96,128,-238v0,-152,-41,-229,-123,-229v-84,0,-132,59,-132,237xm373,-523r0,494v0,129,-38,213,-168,213v-133,0,-142,-103,-142,-130r38,0v0,54,34,96,108,96v89,0,126,-51,126,-160r0,-96r-3,0v-15,46,-45,106,-137,106v-123,0,-157,-121,-157,-264v0,-143,27,-271,165,-271v70,0,107,42,132,99r0,-87r38,0","k":{",":40,".":40}},"h":{"d":"51,0r0,-714r38,0r0,270r2,0v18,-46,62,-91,133,-91v74,0,132,42,132,141r0,394r-38,0r0,-376v0,-93,-39,-125,-104,-125v-80,0,-125,75,-125,166r0,335r-38,0","w":407},"i":{"d":"55,0r0,-523r38,0r0,523r-38,0xm55,-612r0,-102r38,0r0,102r-38,0","w":148},"j":{"d":"-38,176r0,-34v53,5,93,8,93,-72r0,-593r38,0r0,589v-2,102,-52,119,-131,110xm55,-612r0,-102r38,0r0,102r-38,0","w":148},"k":{"d":"51,0r0,-714r38,0r0,469r2,0r226,-278r48,0r-162,194r191,329r-48,0r-170,-295r-87,103r0,192r-38,0","w":389},"l":{"d":"55,0r0,-714r38,0r0,714r-38,0","w":148},"m":{"d":"57,0r0,-523r38,0v2,25,-4,57,2,78v15,-54,61,-90,126,-90v84,0,103,54,115,98v7,-38,46,-98,128,-98v83,0,125,50,125,133r0,402r-38,0r0,-393v0,-70,-36,-108,-90,-108v-78,0,-120,64,-120,154r0,347r-38,0r0,-375v0,-78,-26,-126,-92,-126v-82,0,-118,72,-118,154r0,347r-38,0","w":648},"n":{"d":"51,0r0,-523r38,0v2,25,-4,58,2,79v18,-46,62,-91,133,-91v74,0,132,42,132,141r0,394r-38,0r0,-376v0,-93,-39,-125,-104,-125v-80,0,-125,75,-125,166r0,335r-38,0","w":407},"o":{"d":"388,-262v0,151,-34,274,-178,274v-138,0,-172,-123,-172,-274v0,-150,34,-273,178,-273v138,0,172,123,172,273xm346,-261v0,-151,-33,-240,-133,-240v-100,0,-133,89,-133,240v0,150,33,239,133,239v100,0,133,-89,133,-239","k":{",":55,".":55}},"p":{"d":"53,176r0,-699r38,0v2,29,-4,67,2,92v19,-56,53,-104,134,-104v124,0,161,119,161,272v0,162,-41,275,-163,275v-76,0,-116,-47,-134,-113r0,277r-38,0xm91,-263v0,153,35,241,128,241v103,0,127,-108,127,-241v0,-168,-49,-238,-120,-238v-96,0,-135,77,-135,238","k":{",":55,".":55}},"q":{"d":"335,176r0,-277r-2,0v-13,71,-59,113,-132,113v-122,0,-163,-113,-163,-275v0,-153,35,-272,165,-272v79,0,108,52,132,104r0,-92r38,0r0,699r-38,0xm80,-263v0,133,24,241,127,241v93,0,128,-88,128,-241v0,-161,-44,-238,-130,-238v-81,0,-125,75,-125,238"},"r":{"d":"51,0r0,-523r38,0v2,29,-4,66,2,91v22,-66,68,-109,153,-103r0,34v-107,-10,-155,75,-155,169r0,332r-38,0","w":241,"k":{"v":-18,"y":-18,"\u00fd":-18,"\u00ff":-18,",":92,".":92,"m":-10,"n":-10,"\u00f1":-10,"-":92,";":37}},"s":{"d":"313,-376r-38,0v1,-62,-6,-125,-98,-125v-55,0,-101,28,-101,97v0,89,91,107,158,133v63,25,95,68,95,139v0,88,-68,144,-151,144v-151,0,-156,-102,-155,-179r38,0v-3,86,24,144,117,145v77,0,109,-51,109,-109v0,-50,-20,-84,-78,-107v-78,-30,-175,-62,-175,-162v0,-87,60,-135,143,-135v123,0,138,80,136,159","w":352,"k":{",":55,".":55}},"t":{"d":"8,-489r0,-34r71,0r0,-155r38,0r0,155r87,0r0,34r-87,0r0,403v3,73,44,60,93,52r0,34v-74,18,-131,-1,-131,-82r0,-407r-71,0","w":204},"u":{"d":"356,-523r0,523r-38,0v-2,-25,4,-58,-2,-79v-18,46,-62,91,-133,91v-74,0,-132,-42,-132,-141r0,-394r38,0r0,376v0,93,39,125,104,125v80,0,125,-75,125,-166r0,-335r38,0","w":407},"v":{"d":"201,0r-45,0r-147,-523r42,0r127,475r2,0r121,-475r42,0","w":352,"k":{",":74,".":74}},"w":{"d":"370,0r-99,-469r-2,0r-103,469r-48,0r-112,-523r42,0r93,469r2,0r103,-469r48,0r99,469r2,0r94,-469r42,0r-113,523r-48,0","w":537,"k":{",":55,".":55}},"x":{"d":"13,0r141,-269r-134,-254r47,0r110,222r113,-222r42,0r-133,254r140,269r-47,0r-117,-236r-120,236r-42,0","w":352},"y":{"d":"185,-54r116,-469r42,0r-162,601v-24,86,-68,105,-155,96r0,-34v72,6,99,2,121,-80r16,-55r-154,-528r42,0r132,469r2,0","w":352,"k":{",":74,".":74}},"z":{"d":"15,0r0,-34r259,-455r-245,0r0,-34r287,0r0,34r-259,455r262,0r0,34r-304,0","w":334},"{":{"d":"29,-250r0,-30v56,0,71,-77,71,-148r0,-168v1,-115,44,-122,136,-118r0,30r-51,0v-39,0,-51,30,-51,88r0,166v1,142,-54,156,-71,166v19,4,71,24,71,163r0,167v-3,84,29,94,102,88r0,30v-92,4,-135,-3,-136,-118r0,-168v0,-71,-15,-148,-71,-148","w":222},"|":{"d":"92,12r0,-738r38,0r0,738r-38,0","w":222},"}":{"d":"193,-280r0,30v-56,0,-71,77,-71,148r0,168v-1,115,-44,122,-136,118r0,-30r51,0v39,0,51,-30,51,-88r0,-166v-1,-142,54,-156,71,-166v-19,-4,-71,-24,-71,-163r0,-167v3,-84,-29,-94,-102,-88r0,-30v92,-4,135,3,136,118r0,168v0,71,15,148,71,148","w":222},"~":{"d":"406,-202v-79,0,-139,-68,-218,-68v-48,0,-75,44,-93,71r-23,-22v29,-45,56,-83,122,-83v79,0,139,68,218,68v48,0,75,-44,93,-71r23,22v-29,45,-56,83,-122,83","w":600},"\u00a1":{"d":"96,-360r30,0r6,298r0,234r-42,0r0,-234xm90,-542r42,0r0,96r-42,0r0,-96","w":222},"\u00a2":{"d":"235,-22r0,-479v-86,11,-118,98,-118,239v0,153,32,231,118,240xm235,103r0,-91v-128,-6,-160,-123,-160,-276v0,-165,48,-261,160,-271r0,-78r24,0r0,78v120,6,144,125,144,162r-42,0v0,-31,-20,-122,-102,-128r0,479v88,-7,104,-111,104,-149r42,0v0,47,-24,173,-146,183r0,91r-24,0","w":480},"\u00a3":{"d":"307,12v-58,0,-107,-37,-169,-37v-39,0,-71,19,-91,34r-23,-34v83,-74,161,-180,105,-309r-101,0r0,-34r87,0v-29,-48,-67,-102,-67,-166v0,-101,83,-174,191,-174v141,0,200,97,200,207r-42,0v0,-98,-44,-173,-160,-173v-77,0,-147,51,-147,136v0,58,40,121,67,170r140,0r0,34r-126,0v52,121,-12,231,-103,304r2,2v24,-16,52,-31,83,-31v48,-1,106,37,152,37v56,0,111,-42,132,-59r19,28v-42,37,-93,65,-149,65","w":480},"\u00a5":{"d":"219,0r0,-171r-135,0r0,-34r135,0r0,-82r-135,0r0,-34r118,0r-178,-375r46,0r170,367r174,-367r42,0r-178,375r126,0r0,34r-143,0r0,82r143,0r0,34r-143,0r0,171r-42,0","w":480},"\u00a7":{"d":"177,-221r136,94v41,-22,88,-54,88,-117v0,-50,-24,-82,-64,-109r-166,-111v-41,20,-91,58,-91,124v0,53,51,87,97,119xm78,-20r42,0v-4,82,38,137,121,137v76,0,122,-41,122,-103v0,-61,-55,-100,-108,-136r-142,-95v-115,-68,-92,-214,31,-267v-31,-27,-58,-53,-58,-105v0,-89,75,-137,162,-137v113,0,157,77,155,146r-42,0v2,-57,-32,-112,-113,-112v-84,0,-120,49,-120,103v0,46,33,72,87,109r153,103v113,77,97,212,-28,270v114,85,79,258,-97,258v-123,0,-171,-76,-165,-171","w":481},"\u00a4":{"d":"29,-160r49,-50v-67,-69,-67,-207,0,-277r-49,-49r23,-23r50,49v71,-68,207,-67,276,0r50,-49r23,23r-49,49v68,72,67,207,0,277r49,50r-23,23r-50,-49v-72,67,-204,68,-276,0r-50,49xm240,-169v96,0,175,-79,175,-179v0,-100,-79,-179,-175,-179v-96,0,-175,79,-175,179v0,100,79,179,175,179","w":480},"'":{"d":"75,-486r0,-228r34,0r0,228r-34,0","w":184},"\u00ab":{"d":"281,-116r-114,-135r0,-38r114,-139r0,50r-84,108r84,104r0,50xm166,-116r-114,-135r0,-38r114,-139r0,50r-84,108r84,104r0,50","w":333},"\u00b7":{"d":"69,-330v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,51,-51,51v-28,0,-51,-23,-51,-51","w":240},"\u00b6":{"d":"271,139r0,-461v-115,0,-205,-68,-205,-196v0,-128,90,-196,223,-196r187,0r0,853r-38,0r0,-819r-129,0r0,819r-38,0xm271,-356r0,-324v-91,0,-163,58,-163,162v0,104,72,162,163,162","w":600},"\u00bb":{"d":"52,-116r0,-50r84,-108r-84,-104r0,-50r114,135r0,38xm167,-116r0,-50r84,-108r-84,-104r0,-50r114,135r0,38","w":333},"\u00bf":{"d":"243,-359r0,50v0,169,-166,171,-166,327v0,83,52,132,131,132v113,0,143,-90,141,-183r42,0v3,105,-39,217,-182,217v-132,0,-174,-91,-174,-164v0,-179,166,-173,166,-327r0,-52r42,0xm201,-542r42,0r0,96r-42,0r0,-96"},"`":{"d":"38,-736r78,140r-33,0r-93,-140r48,0","w":148},"\u00b4":{"d":"34,-596r78,-140r48,0r-93,140r-33,0","w":148},"\u00af":{"d":"-34,-651r0,-30r216,0r0,30r-216,0","w":148},"\u00a8":{"d":"120,-618r0,-102r42,0r0,102r-42,0xm-14,-618r0,-102r42,0r0,102r-42,0","w":148},"\u00b8":{"d":"73,0r30,0r-42,57v8,4,20,-3,40,-3v36,0,69,26,69,66v0,32,-29,74,-99,74v-36,0,-64,-8,-84,-18r9,-22v42,20,140,33,140,-33v0,-53,-78,-48,-107,-29r-10,-12","w":148},"\u00c6":{"d":"148,-256r188,0r0,-420r-7,0xm336,0r0,-222r-202,0r-93,222r-45,0r307,-714r374,0r0,38r-299,0r0,285r279,0r0,38r-279,0r0,315r309,0r0,38r-351,0","w":704},"\u00aa":{"d":"62,-611r-34,0v0,-42,17,-97,102,-97v81,0,97,38,97,86r0,198v-2,23,14,30,31,22r0,19v-30,15,-76,1,-65,-44r-2,0v-15,27,-44,50,-92,50v-56,0,-81,-39,-81,-87v0,-44,22,-74,70,-92v38,-14,104,-11,105,-62v0,-48,-26,-60,-64,-60v-63,0,-67,47,-67,67xm108,-407v81,0,95,-81,83,-160v-25,16,-61,25,-92,33v-67,17,-63,127,9,127","w":276},"\u00d8":{"d":"139,-83r232,-575v-28,-23,-61,-34,-102,-34v-140,0,-189,139,-189,335v0,118,14,215,59,274xm398,-629r-233,573v26,22,60,34,104,34v131,0,188,-108,188,-335v0,-117,-16,-215,-59,-272xm88,41r35,-86v-54,-54,-85,-152,-85,-312v0,-277,100,-369,231,-369v45,0,85,9,117,31r28,-68r33,12r-32,79v54,54,84,153,84,315v0,313,-129,369,-230,369v-45,0,-85,-10,-118,-33r-30,74","w":537,"k":{",":74,".":74}},"\u00ba":{"d":"157,-377v-95,0,-117,-71,-117,-166v0,-94,22,-165,117,-165v94,0,116,71,116,165v0,95,-22,166,-116,166xm74,-543v0,82,21,136,82,136v61,0,83,-54,83,-136v0,-82,-22,-135,-83,-135v-61,0,-82,53,-82,135","w":313},"\u00e6":{"d":"79,-374r-38,0v0,-70,26,-161,146,-161v87,0,111,55,125,89v11,-30,42,-89,113,-89v123,0,163,102,163,271r-272,0v-2,115,11,242,113,242v96,0,114,-110,114,-149r38,0v0,80,-44,183,-153,183v-82,0,-119,-71,-134,-122v-13,57,-51,122,-139,122v-91,0,-131,-65,-131,-146v0,-75,31,-123,103,-142r93,-24v57,-9,58,-36,58,-99v0,-84,-42,-102,-92,-102v-100,0,-106,89,-107,127xm66,-131v0,65,30,109,96,109v73,0,116,-64,116,-160v0,-34,4,-77,-2,-107v-23,17,-89,29,-127,40v-60,16,-83,56,-83,118xm316,-298r230,0v0,-117,-32,-203,-114,-203v-84,0,-116,86,-116,203","w":612},"\u00f8":{"d":"308,-452r-167,406v18,16,42,24,72,24v100,0,133,-89,133,-239v0,-85,-10,-150,-38,-191xm118,-71r167,-406v-19,-16,-42,-24,-72,-24v-100,0,-133,89,-133,240v0,84,10,149,38,190xm72,43r29,-72v-49,-48,-63,-135,-63,-233v0,-150,34,-273,178,-273v35,0,63,8,84,22r25,-60r28,10r-28,69v49,48,63,134,63,232v0,151,-34,274,-178,274v-34,0,-61,-8,-84,-22r-26,63","k":{",":55,".":55}},"\u00df":{"d":"51,0r0,-540v0,-111,60,-174,162,-174v172,0,207,265,49,302r0,2v80,11,136,73,136,191v0,140,-64,231,-231,225r0,-34v128,5,188,-47,189,-190v1,-127,-59,-178,-184,-172r0,-34v87,4,149,-19,149,-133v0,-69,-36,-123,-112,-123v-70,0,-120,35,-120,141r0,539r-38,0","k":{",":55,".":55}},"\u00b9":{"d":"156,-280r0,-380v-20,23,-68,47,-110,50r0,-30v48,-4,101,-37,114,-68r30,0r0,428r-34,0","w":313},"\u00ac":{"d":"519,-108r0,-226r-472,0r0,-34r506,0r0,260r-34,0","w":600},"\u00b5":{"d":"356,-523r0,523r-38,0v-2,-25,4,-58,-2,-79v-22,78,-161,136,-225,43r-2,0r0,212r-38,0r0,-699r38,0r0,376v0,93,39,125,104,125v80,0,125,-75,125,-166r0,-335r38,0","w":407},"\u00d0":{"d":"61,0r0,-355r-60,0r0,-36r60,0r0,-323v279,-5,420,-19,420,357v0,293,-122,357,-257,357r-163,0xm283,-355r-180,0r0,321r121,0v152,0,215,-104,215,-323v0,-219,-51,-323,-215,-323r-121,0r0,289r180,0r0,36","w":519,"k":{",":74,".":74}},"\u00bd":{"d":"85,32r459,-760r34,0r-459,760r-34,0xm139,-280r0,-380v-20,23,-68,47,-110,50r0,-30v48,-4,101,-37,114,-68r30,0r0,428r-34,0xm692,0r-253,0v-2,-62,13,-102,75,-152v51,-40,144,-87,144,-159v0,-54,-34,-87,-87,-87v-76,0,-98,51,-98,100r-34,0v0,-73,42,-130,131,-130v53,0,122,23,122,109v0,104,-99,143,-162,194v-47,38,-57,73,-57,95r219,0r0,30","w":721},"\u00b1":{"d":"283,-314r0,-192r34,0r0,192r236,0r0,34r-236,0r0,192r-34,0r0,-192r-236,0r0,-34r236,0xm47,0r0,-34r506,0r0,34r-506,0","w":600},"\u00de":{"d":"61,0r0,-714r42,0r0,140r143,0v167,3,194,121,194,198v0,121,-75,198,-203,198r-134,0r0,178r-42,0xm103,-212r138,0v85,0,157,-46,157,-164v0,-102,-54,-164,-151,-164r-144,0r0,328","w":463},"\u00bc":{"d":"599,-138r0,-242r-2,0r-157,242r159,0xm599,0r0,-108r-193,0r0,-35r185,-285r42,0r0,290r59,0r0,30r-59,0r0,108r-34,0xm96,32r459,-760r34,0r-459,760r-34,0xm139,-280r0,-380v-20,23,-68,47,-110,50r0,-30v48,-4,101,-37,114,-68r30,0r0,428r-34,0","w":721},"\u00f7":{"d":"553,-236r-506,0r0,-34r506,0r0,34xm249,-455v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,51,-51,51v-28,0,-51,-23,-51,-51xm249,-51v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,51,-51,51v-28,0,-51,-23,-51,-51","w":600},"\u00a6":{"d":"92,12r0,-266r38,0r0,266r-38,0xm92,-460r0,-266r38,0r0,266r-38,0","w":222},"\u00b0":{"d":"57,-565v0,-79,64,-143,143,-143v79,0,143,64,143,143v0,79,-64,143,-143,143v-79,0,-143,-64,-143,-143xm91,-565v0,60,49,109,109,109v60,0,109,-49,109,-109v0,-60,-49,-109,-109,-109v-60,0,-109,49,-109,109","w":400},"\u00fe":{"d":"53,176r0,-890r38,0r0,283r2,0v19,-56,53,-104,134,-104v124,0,161,119,161,272v0,162,-41,275,-163,275v-76,0,-116,-47,-134,-113r0,277r-38,0xm91,-263v0,153,35,241,128,241v103,0,127,-108,127,-241v0,-168,-49,-238,-120,-238v-96,0,-135,77,-135,238","k":{",":55,".":55}},"\u00be":{"d":"599,-138r0,-242r-2,0r-157,242r159,0xm599,0r0,-108r-193,0r0,-35r185,-285r42,0r0,290r59,0r0,30r-59,0r0,108r-34,0xm131,32r459,-760r34,0r-459,760r-34,0xm131,-487r0,-30v66,4,108,-26,108,-83v0,-48,-31,-78,-83,-78v-64,0,-87,45,-88,85r-34,0v0,-67,45,-115,127,-115v65,0,112,37,112,106v0,47,-25,89,-78,97r0,3v63,8,93,47,93,101v0,74,-47,128,-132,128v-95,0,-131,-56,-131,-119r34,0v0,41,29,89,94,89v50,0,101,-31,101,-97v0,-59,-45,-92,-123,-87","w":721},"\u00b2":{"d":"283,-280r-253,0v-2,-62,13,-102,75,-152v51,-40,144,-87,144,-159v0,-54,-34,-87,-87,-87v-76,0,-98,51,-98,100r-34,0v0,-73,42,-130,131,-130v53,0,122,23,122,109v0,104,-99,143,-162,194v-47,38,-57,73,-57,95r219,0r0,30","w":313},"\u00ae":{"d":"262,-139r0,-438r168,0v98,0,145,42,145,122v0,75,-54,108,-113,118r130,198r-45,0r-130,-199r-113,0r0,199r-42,0xm304,-543r0,171v101,-1,229,16,229,-84v0,-108,-126,-85,-229,-87xm69,-357v0,183,148,331,331,331v183,0,331,-148,331,-331v0,-183,-148,-331,-331,-331v-183,0,-331,148,-331,331xm31,-357v0,-204,165,-369,369,-369v204,0,369,165,369,369v0,204,-165,369,-369,369v-204,0,-369,-165,-369,-369","w":800},"\u00f0":{"d":"80,-262v0,151,33,240,133,240v100,0,133,-89,133,-240v0,-150,-33,-239,-133,-239v-100,0,-133,89,-133,239xm111,-642r79,-47v-21,-21,-56,-45,-77,-55r36,-22v23,11,52,32,77,56r80,-48r26,26r-81,48v69,75,137,194,137,423v0,154,-34,273,-174,273v-142,0,-176,-119,-176,-273v0,-155,34,-274,176,-274v40,0,72,13,96,33r2,-2v-13,-52,-59,-124,-96,-159r-79,47"},"\u00d7":{"d":"300,-232r-197,197r-21,-22r197,-196r-197,-197r21,-21r197,197r197,-197r21,21r-197,197r197,196r-21,22","w":600},"\u00b3":{"d":"131,-487r0,-30v66,4,108,-26,108,-83v0,-48,-31,-78,-83,-78v-64,0,-87,45,-88,85r-34,0v0,-67,45,-115,127,-115v65,0,112,37,112,106v0,47,-25,89,-78,97r0,3v63,8,93,47,93,101v0,74,-47,128,-132,128v-95,0,-131,-56,-131,-119r34,0v0,41,29,89,94,89v50,0,101,-31,101,-97v0,-59,-45,-92,-123,-87","w":313},"\u00a9":{"d":"602,-437r-42,0v-14,-77,-72,-121,-160,-121v-115,0,-173,104,-173,200v0,112,66,203,173,203v91,0,141,-51,160,-127r42,0v-14,96,-90,161,-202,161v-123,0,-215,-84,-215,-237v0,-146,98,-234,215,-234v110,0,186,50,202,155xm31,-357v0,-204,165,-369,369,-369v204,0,369,165,369,369v0,204,-165,369,-369,369v-204,0,-369,-165,-369,-369xm69,-357v0,183,148,331,331,331v183,0,331,-148,331,-331v0,-183,-148,-331,-331,-331v-183,0,-331,148,-331,331","w":800},"\u00c1":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0xm201,-751r78,-140r48,0r-93,140r-33,0","w":481},"\u00c2":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0xm126,-751r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","w":481},"\u00c4":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0xm287,-773r0,-102r42,0r0,102r-42,0xm153,-773r0,-102r42,0r0,102r-42,0","w":481},"\u00c0":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0xm205,-891r78,140r-33,0r-93,-140r48,0","w":481},"\u00c5":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0xm152,-824v0,-49,40,-89,89,-89v49,0,89,40,89,89v0,49,-40,89,-89,89v-49,0,-89,-40,-89,-89xm182,-824v0,33,26,59,59,59v33,0,59,-26,59,-59v0,-33,-26,-59,-59,-59v-33,0,-59,26,-59,59","w":481},"\u00c3":{"d":"367,-256r-123,-416r-2,0r-126,416r251,0xm443,0r-68,-222r-269,0r-68,222r-42,0r222,-714r53,0r214,714r-42,0xm187,-864v45,0,70,51,108,51v33,0,38,-37,38,-56r30,0v0,30,-16,86,-68,86v-44,0,-71,-51,-108,-51v-33,0,-38,36,-38,55r-30,0v0,-29,16,-85,68,-85","w":481},"\u00c7":{"d":"212,80r46,-68v-158,1,-219,-136,-220,-368v0,-224,63,-370,229,-370v167,0,200,147,200,217r-42,0v0,-96,-51,-183,-156,-183v-142,0,-189,133,-189,334v0,192,39,336,183,336v138,0,171,-162,171,-218r42,0v0,79,-37,232,-187,250r-35,47v8,4,20,-3,40,-3v36,0,69,26,69,66v0,32,-29,74,-99,74v-36,0,-64,-8,-84,-18r9,-22v42,20,140,33,140,-33v0,-53,-78,-48,-107,-29","w":500,"k":{",":74,".":74}},"\u00c9":{"d":"61,0r0,-714r341,0r0,38r-299,0r0,285r279,0r0,38r-279,0r0,315r308,0r0,38r-350,0xm190,-751r78,-140r48,0r-93,140r-33,0"},"\u00ca":{"d":"61,0r0,-714r341,0r0,38r-299,0r0,285r279,0r0,38r-279,0r0,315r308,0r0,38r-350,0xm115,-751r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0"},"\u00cb":{"d":"61,0r0,-714r341,0r0,38r-299,0r0,285r279,0r0,38r-279,0r0,315r308,0r0,38r-350,0xm276,-773r0,-102r42,0r0,102r-42,0xm142,-773r0,-102r42,0r0,102r-42,0"},"\u00c8":{"d":"61,0r0,-714r341,0r0,38r-299,0r0,285r279,0r0,38r-279,0r0,315r308,0r0,38r-350,0xm194,-891r78,140r-33,0r-93,-140r48,0"},"\u00cd":{"d":"61,0r0,-714r42,0r0,714r-42,0xm42,-751r78,-140r48,0r-93,140r-33,0","w":164},"\u00ce":{"d":"61,0r0,-714r42,0r0,714r-42,0xm-33,-751r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","w":164},"\u00cf":{"d":"61,0r0,-714r42,0r0,714r-42,0xm128,-773r0,-102r42,0r0,102r-42,0xm-6,-773r0,-102r42,0r0,102r-42,0","w":164},"\u00cc":{"d":"61,0r0,-714r42,0r0,714r-42,0xm46,-891r78,140r-33,0r-93,-140r48,0","w":164},"\u00d1":{"d":"54,-714r56,0r311,648r2,0r0,-648r42,0r0,714r-55,0r-312,-648r-2,0r0,648r-42,0r0,-714xm206,-864v45,0,70,51,108,51v33,0,38,-37,38,-56r30,0v0,30,-16,86,-68,86v-44,0,-71,-51,-108,-51v-33,0,-38,36,-38,55r-30,0v0,-29,16,-85,68,-85","w":519,"k":{",":55,".":55}},"\u00d3":{"d":"269,-726v142,0,230,92,230,369v0,313,-129,369,-230,369v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369xm269,-692v-140,0,-189,139,-189,335v0,196,40,335,189,335v131,0,188,-108,188,-335v0,-193,-43,-335,-188,-335xm229,-751r78,-140r48,0r-93,140r-33,0","w":537,"k":{",":74,".":74}},"\u00d4":{"d":"269,-726v142,0,230,92,230,369v0,313,-129,369,-230,369v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369xm269,-692v-140,0,-189,139,-189,335v0,196,40,335,189,335v131,0,188,-108,188,-335v0,-193,-43,-335,-188,-335xm154,-751r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","w":537,"k":{",":74,".":74}},"\u00d6":{"d":"269,-726v142,0,230,92,230,369v0,313,-129,369,-230,369v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369xm269,-692v-140,0,-189,139,-189,335v0,196,40,335,189,335v131,0,188,-108,188,-335v0,-193,-43,-335,-188,-335xm315,-773r0,-102r42,0r0,102r-42,0xm181,-773r0,-102r42,0r0,102r-42,0","w":537,"k":{",":74,".":74}},"\u00d2":{"d":"269,-726v142,0,230,92,230,369v0,313,-129,369,-230,369v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369xm269,-692v-140,0,-189,139,-189,335v0,196,40,335,189,335v131,0,188,-108,188,-335v0,-193,-43,-335,-188,-335xm233,-891r78,140r-33,0r-93,-140r48,0","w":537,"k":{",":74,".":74}},"\u00d5":{"d":"269,-726v142,0,230,92,230,369v0,313,-129,369,-230,369v-137,0,-231,-92,-231,-369v0,-277,100,-369,231,-369xm269,-692v-140,0,-189,139,-189,335v0,196,40,335,189,335v131,0,188,-108,188,-335v0,-193,-43,-335,-188,-335xm215,-864v45,0,70,51,108,51v33,0,38,-37,38,-56r30,0v0,30,-16,86,-68,86v-44,0,-71,-51,-108,-51v-33,0,-38,36,-38,55r-30,0v0,-29,16,-85,68,-85","w":537,"k":{",":74,".":74}},"\u00da":{"d":"94,-714r0,525v0,100,45,167,156,167v103,0,156,-67,156,-167r0,-525r42,0r0,517v0,161,-99,209,-198,209v-99,0,-198,-38,-198,-209r0,-517r42,0xm210,-751r78,-140r48,0r-93,140r-33,0","w":500,"k":{",":74,".":74}},"\u00db":{"d":"94,-714r0,525v0,100,45,167,156,167v103,0,156,-67,156,-167r0,-525r42,0r0,517v0,161,-99,209,-198,209v-99,0,-198,-38,-198,-209r0,-517r42,0xm135,-751r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","w":500,"k":{",":74,".":74}},"\u00dc":{"d":"94,-714r0,525v0,100,45,167,156,167v103,0,156,-67,156,-167r0,-525r42,0r0,517v0,161,-99,209,-198,209v-99,0,-198,-38,-198,-209r0,-517r42,0xm296,-773r0,-102r42,0r0,102r-42,0xm162,-773r0,-102r42,0r0,102r-42,0","w":500,"k":{",":74,".":74}},"\u00d9":{"d":"94,-714r0,525v0,100,45,167,156,167v103,0,156,-67,156,-167r0,-525r42,0r0,517v0,161,-99,209,-198,209v-99,0,-198,-38,-198,-209r0,-517r42,0xm214,-891r78,140r-33,0r-93,-140r48,0","w":500,"k":{",":74,".":74}},"\u00dd":{"d":"201,0r0,-294r-195,-420r46,0r170,376r174,-376r42,0r-195,420r0,294r-42,0xm182,-751r78,-140r48,0r-93,140r-33,0","w":444,"k":{",":130,".":130,"a":65,"\u00e6":65,"\u00e1":65,"\u00e2":65,"\u00e4":65,"\u00e0":65,"\u00e5":65,"\u00e3":65,"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,"e":65,"\u00e9":65,"\u00ea":65,"\u00eb":65,"\u00e8":65,"o":65,"\u00f8":65,"\u00f3":65,"\u00f4":65,"\u00f6":65,"\u00f2":65,"\u00f5":65,"-":92,";":55,"i":18,"\u00ed":18,"\u00ee":18,"\u00ef":18,"\u00ec":18,"u":47,"\u00fa":47,"\u00fb":47,"\u00fc":47,"\u00f9":47,":":55}},"\u00e1":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175xm155,-596r78,-140r48,0r-93,140r-33,0","w":389},"\u00e2":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175xm80,-596r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","w":389},"\u00e4":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175xm241,-618r0,-102r42,0r0,102r-42,0xm107,-618r0,-102r42,0r0,102r-42,0","w":389},"\u00e0":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175xm159,-736r78,140r-33,0r-93,-140r48,0","w":389},"\u00e5":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175xm106,-669v0,-49,40,-89,89,-89v49,0,89,40,89,89v0,49,-40,89,-89,89v-49,0,-89,-40,-89,-89xm136,-669v0,33,26,59,59,59v33,0,59,-26,59,-59v0,-33,-26,-59,-59,-59v-33,0,-59,26,-59,59","w":389},"\u00e3":{"d":"332,-397r0,334v-1,38,23,40,47,30r0,30v-35,18,-81,13,-85,-48v-1,-10,3,-27,-2,-33v-15,54,-67,96,-137,96v-91,0,-131,-65,-131,-146v0,-79,32,-124,106,-144r113,-31v45,-12,51,-33,51,-77v0,-95,-44,-115,-101,-115v-88,0,-114,55,-114,127r-38,0v0,-71,26,-161,148,-161v115,0,143,63,143,138xm294,-197v0,-35,4,-77,-2,-108v-19,35,-97,41,-143,56v-60,19,-83,53,-83,115v0,68,30,112,96,112v89,0,132,-70,132,-175xm141,-709v45,0,70,51,108,51v33,0,38,-37,38,-56r30,0v0,30,-16,86,-68,86v-44,0,-71,-51,-108,-51v-33,0,-38,36,-38,55r-30,0v0,-29,16,-85,68,-85","w":389},"\u00e7":{"d":"147,80r46,-68v-123,-9,-155,-125,-155,-276v0,-152,34,-271,169,-271v134,0,159,122,159,162r-42,0v0,-32,-21,-128,-111,-128v-97,0,-133,89,-133,239v0,151,36,240,133,240v96,0,114,-118,114,-149r42,0v0,47,-25,172,-146,183r-34,45v8,4,20,-3,40,-3v36,0,69,26,69,66v0,32,-29,74,-99,74v-36,0,-64,-8,-84,-18r9,-22v42,20,140,33,140,-33v0,-53,-78,-48,-107,-29","w":389,"k":{",":55,".":55}},"\u00e9":{"d":"80,-298r254,0v0,-95,-15,-203,-123,-203v-116,0,-131,135,-131,203xm376,-264r-296,0v0,84,1,242,123,242v110,0,128,-110,128,-149r38,0v0,80,-44,183,-162,183v-135,0,-169,-110,-169,-288v0,-160,57,-259,175,-259v123,0,163,102,163,271xm171,-596r78,-140r48,0r-93,140r-33,0","w":407,"k":{",":55,".":55}},"\u00ea":{"d":"80,-298r254,0v0,-95,-15,-203,-123,-203v-116,0,-131,135,-131,203xm376,-264r-296,0v0,84,1,242,123,242v110,0,128,-110,128,-149r38,0v0,80,-44,183,-162,183v-135,0,-169,-110,-169,-288v0,-160,57,-259,175,-259v123,0,163,102,163,271xm96,-596r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","w":407,"k":{",":55,".":55}},"\u00eb":{"d":"80,-298r254,0v0,-95,-15,-203,-123,-203v-116,0,-131,135,-131,203xm376,-264r-296,0v0,84,1,242,123,242v110,0,128,-110,128,-149r38,0v0,80,-44,183,-162,183v-135,0,-169,-110,-169,-288v0,-160,57,-259,175,-259v123,0,163,102,163,271xm257,-618r0,-102r42,0r0,102r-42,0xm123,-618r0,-102r42,0r0,102r-42,0","w":407,"k":{",":55,".":55}},"\u00e8":{"d":"80,-298r254,0v0,-95,-15,-203,-123,-203v-116,0,-131,135,-131,203xm376,-264r-296,0v0,84,1,242,123,242v110,0,128,-110,128,-149r38,0v0,80,-44,183,-162,183v-135,0,-169,-110,-169,-288v0,-160,57,-259,175,-259v123,0,163,102,163,271xm175,-736r78,140r-33,0r-93,-140r48,0","w":407,"k":{",":55,".":55}},"\u00ed":{"d":"55,0r0,-523r38,0r0,523r-38,0xm34,-596r78,-140r48,0r-93,140r-33,0","w":148},"\u00ee":{"d":"55,0r0,-523r38,0r0,523r-38,0xm-41,-596r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","w":148},"\u00ef":{"d":"55,0r0,-523r38,0r0,523r-38,0xm120,-618r0,-102r42,0r0,102r-42,0xm-14,-618r0,-102r42,0r0,102r-42,0","w":148},"\u00ec":{"d":"55,0r0,-523r38,0r0,523r-38,0xm38,-736r78,140r-33,0r-93,-140r48,0","w":148},"\u00f1":{"d":"51,0r0,-523r38,0v2,25,-4,58,2,79v18,-46,62,-91,133,-91v74,0,132,42,132,141r0,394r-38,0r0,-376v0,-93,-39,-125,-104,-125v-80,0,-125,75,-125,166r0,335r-38,0xm150,-709v45,0,70,51,108,51v33,0,38,-37,38,-56r30,0v0,30,-16,86,-68,86v-44,0,-71,-51,-108,-51v-33,0,-38,36,-38,55r-30,0v0,-29,16,-85,68,-85","w":407},"\u00f3":{"d":"388,-262v0,151,-34,274,-178,274v-138,0,-172,-123,-172,-274v0,-150,34,-273,178,-273v138,0,172,123,172,273xm346,-261v0,-151,-33,-240,-133,-240v-100,0,-133,89,-133,240v0,150,33,239,133,239v100,0,133,-89,133,-239xm173,-596r78,-140r48,0r-93,140r-33,0","k":{",":55,".":55}},"\u00f4":{"d":"388,-262v0,151,-34,274,-178,274v-138,0,-172,-123,-172,-274v0,-150,34,-273,178,-273v138,0,172,123,172,273xm346,-261v0,-151,-33,-240,-133,-240v-100,0,-133,89,-133,240v0,150,33,239,133,239v100,0,133,-89,133,-239xm98,-596r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","k":{",":55,".":55}},"\u00f6":{"d":"388,-262v0,151,-34,274,-178,274v-138,0,-172,-123,-172,-274v0,-150,34,-273,178,-273v138,0,172,123,172,273xm346,-261v0,-151,-33,-240,-133,-240v-100,0,-133,89,-133,240v0,150,33,239,133,239v100,0,133,-89,133,-239xm259,-618r0,-102r42,0r0,102r-42,0xm125,-618r0,-102r42,0r0,102r-42,0","k":{",":55,".":55}},"\u00f2":{"d":"388,-262v0,151,-34,274,-178,274v-138,0,-172,-123,-172,-274v0,-150,34,-273,178,-273v138,0,172,123,172,273xm346,-261v0,-151,-33,-240,-133,-240v-100,0,-133,89,-133,240v0,150,33,239,133,239v100,0,133,-89,133,-239xm177,-736r78,140r-33,0r-93,-140r48,0","k":{",":55,".":55}},"\u00f5":{"d":"388,-262v0,151,-34,274,-178,274v-138,0,-172,-123,-172,-274v0,-150,34,-273,178,-273v138,0,172,123,172,273xm346,-261v0,-151,-33,-240,-133,-240v-100,0,-133,89,-133,240v0,150,33,239,133,239v100,0,133,-89,133,-239xm159,-709v45,0,70,51,108,51v33,0,38,-37,38,-56r30,0v0,30,-16,86,-68,86v-44,0,-71,-51,-108,-51v-33,0,-38,36,-38,55r-30,0v0,-29,16,-85,68,-85","k":{",":55,".":55}},"\u00fa":{"d":"356,-523r0,523r-38,0v-2,-25,4,-58,-2,-79v-18,46,-62,91,-133,91v-74,0,-132,-42,-132,-141r0,-394r38,0r0,376v0,93,39,125,104,125v80,0,125,-75,125,-166r0,-335r38,0xm164,-596r78,-140r48,0r-93,140r-33,0","w":407},"\u00fb":{"d":"356,-523r0,523r-38,0v-2,-25,4,-58,-2,-79v-18,46,-62,91,-133,91v-74,0,-132,-42,-132,-141r0,-394r38,0r0,376v0,93,39,125,104,125v80,0,125,-75,125,-166r0,-335r38,0xm89,-596r94,-140r42,0r94,140r-42,0r-73,-110r-73,110r-42,0","w":407},"\u00fc":{"d":"356,-523r0,523r-38,0v-2,-25,4,-58,-2,-79v-18,46,-62,91,-133,91v-74,0,-132,-42,-132,-141r0,-394r38,0r0,376v0,93,39,125,104,125v80,0,125,-75,125,-166r0,-335r38,0xm250,-618r0,-102r42,0r0,102r-42,0xm116,-618r0,-102r42,0r0,102r-42,0","w":407},"\u00f9":{"d":"356,-523r0,523r-38,0v-2,-25,4,-58,-2,-79v-18,46,-62,91,-133,91v-74,0,-132,-42,-132,-141r0,-394r38,0r0,376v0,93,39,125,104,125v80,0,125,-75,125,-166r0,-335r38,0xm168,-736r78,140r-33,0r-93,-140r48,0","w":407},"\u00fd":{"d":"185,-54r116,-469r42,0r-162,601v-24,86,-68,105,-155,96r0,-34v72,6,99,2,121,-80r16,-55r-154,-528r42,0r132,469r2,0xm136,-596r78,-140r48,0r-93,140r-33,0","w":352,"k":{",":74,".":74}},"\u00ff":{"d":"185,-54r116,-469r42,0r-162,601v-24,86,-68,105,-155,96r0,-34v72,6,99,2,121,-80r16,-55r-154,-528r42,0r132,469r2,0xm222,-618r0,-102r42,0r0,102r-42,0xm88,-618r0,-102r42,0r0,102r-42,0","w":352,"k":{",":74,".":74}},"\u00a0":{"w":240},"\u00ad":{"d":"63,-255r0,-34r189,0r0,34r-189,0","w":315}}});
