/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built In easIng capabilities added In jQuery 1.1
 * to offer multiple easIng options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

// 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;
	}
});

(function(a){a.fn.lavaLamp=function(b){b=a.extend({fx:"swing",speed:500,click:function(){return true},startItem:"no",autoReturn:true,returnDelay:0,setOnClick:true,homeTop:0,homeLeft:0,homeWidth:0,homeHeight:0,returnHome:false},b||{});return this.each(function(){var h=location.pathname+location.search+location.hash;var e=new Object;var d;var i;var f;var g;if(b.homeTop||b.homeLeft){f=a('<li class="homeLava selectedLava"></li>').css({left:b.homeLeft,top:b.homeTop,width:b.homeWidth,height:b.homeHeight,position:"absolute"});a(this).prepend(f)}var j=a("li",this);if(b.startItem=="no"){e=a('li a[href$="'+h+'"]',this).parent("li")}if(e.length==0&&b.startItem=="no"&&location.hash){e=a('li a[href$="'+location.hash+'"]',this).parent("li")}if(e.length==0||b.startItem!="no"){if(b.startItem=="no"){b.startItem=0}e=a(j[b.startItem])}g=a("li.selectedLava",this)[0]||a(e).addClass("selectedLava")[0];j.mouseover(function(){if(a(this).hasClass("homeLava")){g=a(this)[0]}c(this)});i=a('<li class="backLava"><div class="leftLava"></div><div class="bottomLava"></div><div class="cornerLava"></div></li>').appendTo(this);a(this).mouseout(function(){if(b.autoReturn){if(b.returnHome&&f){c(f[0])}else{if(b.returnDelay){if(d){clearTimeout(d)}d=setTimeout(c,b.returnDelay+b.speed)}else{c()}}}});j.click(function(k){if(b.setOnClick){a(g).removeClass("selectedLava");a(this).addClass("selectedLava");g=this}return b.click.apply(this,[k,this])});if(b.homeTop||b.homeLeft){i.css({left:b.homeLeft,top:b.homeTop,width:b.homeWidth,height:b.homeHeight})}else{i.css({left:g.offsetLeft,top:g.offsetTop,width:g.offsetWidth,height:g.offsetHeight})}function c(k){if(!k){k=g}var m=0,l=0;if(!a.browser.msie){m=(i.outerWidth()-i.innerWidth())/2;l=(i.outerHeight()-i.innerHeight())/2}i.stop().animate({left:k.offsetLeft-m,top:k.offsetTop-l,width:k.offsetWidth,height:k.offsetHeight},b.speed,b.fx)}})}})(jQuery);

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Comfortaa © Johan Aakerlund. 2008. All Rights Reserved
 * 
 * Designer:
 * Johan Aakerlund - aajohan
 */
Cufon.registerFont({"w":178,"face":{"font-family":"Comfortaa","font-weight":700,"font-stretch":"expanded","units-per-em":"360","panose-1":"2 15 8 3 0 0 0 6 0 3","ascent":"288","descent":"-72","x-height":"5","cap-height":"5","bbox":"-1.96357 -326.394 346.033 81.7361","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":89},"\u00a0":{"w":89},"!":{"d":"25,-243v2,-22,38,-21,38,1r0,169v-2,25,-38,20,-38,0r0,-170xm19,-18v0,-33,47,-27,47,-2v0,15,-6,25,-24,25v-12,0,-23,-7,-23,-23","w":89},"\"":{"d":"14,-260v0,-26,40,-21,38,-2v-4,44,-3,60,-19,61v-19,1,-19,-39,-19,-59xm57,-262v2,-21,34,-23,38,1v-9,47,1,60,-20,60v-19,1,-14,-42,-18,-61","w":97},"#":{"d":"148,-175v17,-61,2,-75,33,-82v33,18,11,24,4,82v20,-2,33,-2,37,18v-2,22,-22,18,-44,18r-5,23v20,-1,41,1,39,19v-3,28,-21,16,-46,18v-18,62,-2,76,-34,85v-35,-11,-3,-57,-3,-85r-31,0v-8,30,-2,90,-30,85v-37,-7,-5,-67,-5,-85v-32,9,-47,-31,-15,-37r23,0r5,-23v-19,2,-37,-3,-36,-19v3,-26,21,-15,43,-17v17,-62,5,-78,32,-81v33,6,7,56,5,81r28,0xm113,-139r-4,23r27,0r5,-23r-28,0","w":234},"$":{"d":"109,-37v25,-15,25,-57,0,-71r0,71xm72,-216v-19,7,-18,48,0,56r0,-56xm154,-224v0,30,-32,18,-45,2r0,70v31,9,55,41,55,76v0,35,-18,61,-55,76v2,19,-3,39,-18,37v-19,-3,-20,-16,-19,-37v-26,5,-52,-18,-60,-39v2,-12,9,-19,19,-19v8,-2,30,28,41,26r0,-93v-30,-10,-49,-35,-49,-70v0,-28,24,-53,49,-65v-9,-33,30,-53,37,-18r0,18v9,-1,41,21,45,36"},"%":{"d":"14,-193v-1,-34,26,-66,71,-68v32,-2,67,33,67,68v0,35,-27,66,-69,69v-35,2,-68,-29,-69,-69xm220,-253v12,-11,33,-1,30,15v-48,78,-122,164,-177,240v-14,7,-33,0,-30,-16v0,-5,8,-15,20,-31xm91,-224v-21,-6,-38,8,-40,32v-2,35,59,44,64,6v3,-21,-5,-32,-24,-38xm144,-59v-3,-37,30,-70,69,-72v33,-2,67,28,68,71v1,33,-28,67,-70,67v-32,0,-64,-30,-67,-66xm218,-94v-39,-9,-53,55,-15,63v23,5,42,-6,42,-32v0,-15,-9,-27,-27,-31","w":283},"&":{"d":"93,-115v-24,25,-32,28,-32,48v0,37,55,47,75,9r7,-7xm93,-169v24,-20,31,-36,5,-50v-31,0,-33,33,-5,50xm91,-257v60,-6,83,86,29,115r50,50v11,-15,45,-49,55,-10v2,7,-15,22,-28,36v12,17,35,24,38,49v-14,43,-48,-8,-65,-21v-37,36,-35,40,-74,43v-36,2,-72,-30,-73,-74v-1,-26,20,-51,43,-73v-27,-30,-31,-24,-32,-57v-1,-28,22,-55,57,-58","w":256},"'":{"d":"16,-258v1,-26,40,-21,38,-2v-4,46,-3,61,-18,62v-19,2,-16,-41,-20,-60","w":60},"(":{"d":"97,-279v11,-13,37,-6,34,13v-46,98,-50,222,0,326v-8,30,-36,23,-42,-9v-46,-105,-42,-226,8,-330","w":133},")":{"d":"13,-263v-3,-15,6,-24,20,-24v9,0,13,10,21,28v45,108,42,230,-10,332v-14,10,-30,6,-32,-14v45,-97,52,-218,1,-322","w":133},"*":{"d":"137,-190v-4,28,-39,20,-40,-7v2,28,-40,33,-40,5v0,-8,8,-17,20,-23v-35,9,-53,-31,-18,-38v5,0,13,5,24,13v-6,-16,-10,-36,14,-39v23,4,21,23,13,39v11,-14,43,-18,43,8v0,13,-18,20,-36,17v8,7,22,10,20,25","w":180},"+":{"d":"77,-149v0,0,-4,-56,20,-53v22,-2,18,31,18,53v24,0,56,-3,54,20v-3,30,-27,15,-54,18v0,23,4,56,-20,54v-26,-3,-16,-30,-18,-54v-25,-2,-51,9,-53,-20v-2,-19,31,-19,53,-18"},",":{"d":"21,32v-2,-16,23,-14,29,-27v-42,-4,-41,-60,0,-60v29,0,33,18,33,44v0,28,-20,50,-48,58v-8,0,-13,-5,-14,-15","w":97},"-":{"d":"12,-105v7,-33,56,-18,89,-18v10,0,16,7,19,20v-7,33,-56,18,-89,18v-11,0,-17,-6,-19,-20","w":117},"\u00ad":{"d":"12,-105v7,-33,56,-18,89,-18v10,0,16,7,19,20v-7,33,-56,18,-89,18v-11,0,-17,-6,-19,-20","w":117},".":{"d":"23,-24v-2,-34,55,-41,59,-3v1,18,-9,31,-30,32v-16,0,-28,-9,-29,-29","w":97},"\/":{"d":"99,-263v12,-16,42,-7,35,13v-56,164,-92,254,-98,269v-12,13,-33,11,-35,-11v1,-4,33,-95,98,-271","w":135},"0":{"d":"85,5v-90,3,-106,-148,-67,-223v15,-29,40,-40,66,-40v86,0,106,144,67,223v-14,29,-40,40,-66,40xm84,-222v-40,0,-51,58,-50,100v1,43,9,89,50,91v36,1,50,-45,50,-96v0,-39,-12,-95,-50,-95","w":173},"1":{"d":"7,-227v-6,-21,34,-26,55,-31v11,2,16,8,16,17r0,229v0,24,-36,20,-36,1r0,-203v-19,6,-30,5,-35,-13","w":99},"2":{"d":"0,-177v0,-39,38,-79,81,-81v39,-2,83,37,82,81v0,25,-15,45,-36,70r-66,76r88,0v9,0,16,7,17,19v-2,12,-8,17,-18,17r-129,0v-23,-5,-20,-22,-4,-40r103,-117v19,-28,3,-68,-38,-68v-23,0,-40,19,-44,47v-3,22,-36,15,-36,-4","w":171},"3":{"d":"15,-186v-2,-36,28,-67,68,-71v54,-5,96,80,48,118v60,41,27,144,-51,144v-39,0,-80,-33,-80,-81v0,-20,36,-24,36,1v0,56,85,58,89,2v2,-29,-20,-46,-50,-49v-16,-11,-11,-34,14,-34v36,0,35,-61,-6,-65v-32,-4,-24,50,-50,51v-12,-3,-18,-8,-18,-16","w":167},"4":{"d":"119,-249v12,-15,37,-5,32,17r0,126v20,0,36,-4,39,17v2,17,-17,22,-39,19v-5,28,14,75,-19,75v-31,0,-12,-47,-17,-75r-101,1v-16,-6,-19,-24,-6,-34v70,-91,107,-140,111,-146xm56,-106r59,0r0,-76","w":193},"5":{"d":"39,-68v10,50,89,47,91,-10v1,-41,-47,-52,-96,-47v-9,0,-15,-5,-18,-15r0,-99v-1,-8,10,-21,24,-17r101,0v21,0,25,38,0,38r-88,0r0,56v67,-9,110,23,115,84v3,40,-37,83,-85,83v-41,0,-81,-36,-83,-84v7,-25,42,-21,39,11"},"6":{"d":"38,-88v-6,32,10,55,43,57v23,2,43,-16,44,-45v1,-23,-16,-43,-45,-44v-19,0,-33,11,-42,32xm82,5v-61,0,-111,-82,-62,-134r72,-124v14,-10,27,-5,31,13v-5,19,-35,62,-46,84v44,-5,83,35,85,80v2,39,-35,81,-80,81","w":167},"7":{"d":"119,-220r-94,0v-25,0,-19,-36,-1,-36r128,0v20,4,20,18,10,35r-126,221v-13,11,-33,1,-31,-15v1,-5,39,-74,114,-205","w":169},"8":{"d":"34,-142v-40,-36,-12,-116,50,-116v54,0,95,79,47,118v62,42,28,145,-52,145v-37,0,-80,-37,-79,-81v0,-28,12,-50,34,-66xm53,-198v-7,23,7,37,31,41v33,5,46,-57,7,-63v-19,-4,-33,4,-38,22xm125,-64v9,-31,-11,-54,-43,-57v-23,-2,-44,15,-45,45v0,24,16,45,45,45v20,0,36,-10,43,-33","w":170},"9":{"d":"124,-177v0,-55,-84,-59,-87,-3v-2,25,14,45,44,47v22,1,43,-17,43,-44xm81,-258v62,-4,100,80,56,140r-88,119v-13,9,-34,0,-31,-14v4,-19,44,-62,58,-83v-38,-1,-74,-36,-76,-81v-2,-40,36,-79,81,-81","w":170},":":{"d":"30,-146v0,-35,48,-36,54,-4v3,18,-7,29,-28,32v-18,-3,-26,-12,-26,-28xm57,-1v-39,0,-30,-58,0,-54v34,2,36,50,0,54","w":97},";":{"d":"25,-142v0,-35,48,-34,54,-3v3,17,-6,28,-27,31v-18,-3,-27,-12,-27,-28xm51,-51v24,-2,33,12,33,40v0,24,-16,45,-48,51v-21,-1,-16,-32,2,-30r20,-6v-35,-3,-39,-46,-7,-55","w":97},"\u037e":{"d":"25,-142v0,-35,48,-34,54,-3v3,17,-6,28,-27,31v-18,-3,-27,-12,-27,-28xm51,-51v24,-2,33,12,33,40v0,24,-16,45,-48,51v-21,-1,-16,-32,2,-30r20,-6v-35,-3,-39,-46,-7,-55","w":97},"<":{"d":"75,-110v3,1,32,20,89,55v11,13,7,32,-13,33v-39,-17,-86,-52,-124,-73v-15,-17,-4,-27,16,-39v69,-41,103,-65,107,-65v31,7,24,35,-5,45v-1,1,-24,16,-70,44"},"=":{"d":"43,-152r107,0v10,0,16,7,19,20v-3,12,-10,18,-19,18r-107,0v-11,0,-17,-6,-19,-20v3,-12,10,-18,19,-18xm43,-93r107,0v27,0,21,38,0,38r-109,0v-21,-1,-24,-38,2,-38"},">":{"d":"118,-114v-66,-45,-86,-41,-94,-69v15,-35,27,-19,64,6v60,40,86,35,86,65v0,9,-8,14,-20,21v-75,44,-98,67,-112,66v-29,-8,-21,-34,7,-45"},"?":{"d":"10,-177v0,-38,39,-80,83,-80v39,0,80,39,80,82v0,24,-11,45,-32,64v-19,10,-29,25,-29,45v1,25,-36,19,-36,2v0,-35,16,-54,46,-78v33,-26,12,-77,-31,-79v-24,-2,-44,23,-46,51v-9,18,-35,9,-35,-7xm92,6v-32,0,-28,-46,3,-46v11,0,22,8,22,25v-3,14,-11,21,-25,21","w":172},"@":{"d":"163,-174v-31,-1,-62,25,-63,64v-1,32,25,63,66,63v29,0,61,-28,61,-64v0,-32,-26,-62,-64,-63xm346,-109v-2,62,-26,102,-84,102v-24,0,-36,-4,-35,-24v-62,54,-165,6,-165,-80v0,-50,43,-99,101,-101v50,-2,103,42,102,104r0,63v28,1,42,-31,42,-67v0,-65,-65,-131,-134,-131v-68,0,-135,57,-135,135v0,97,121,177,212,111v14,-3,26,7,25,18v5,18,-63,44,-106,44v-87,0,-170,-86,-170,-175v0,-86,82,-171,177,-171v84,0,172,82,170,172","w":354},"A":{"d":"125,-131r-22,-56r-20,56r42,0xm87,-247v17,-18,29,-7,39,19r81,216v-6,24,-37,22,-40,-9r-29,-73r-70,0r-35,93v-12,12,-35,5,-33,-13","w":209,"k":{"t":26,"j":33,"Y":31,"W":20,"V":33,"T":31}},"B":{"d":"117,-145v67,35,46,150,-39,150v-28,0,-78,11,-78,-18r0,-226v3,-33,36,-13,64,-18v48,-8,92,70,53,112xm36,-156v33,2,58,-4,59,-33v1,-25,-28,-34,-59,-31r0,64xm36,-31v46,3,84,-4,84,-45v0,-37,-39,-49,-84,-44r0,89","w":165,"k":{"j":40}},"C":{"d":"0,-126v0,-94,123,-175,208,-106v9,15,3,32,-17,31v-60,-47,-154,-4,-154,75v0,68,87,124,152,76v15,0,24,7,23,19v3,15,-48,36,-82,36v-63,0,-130,-59,-130,-131","w":228,"k":{"y":20,"v":15,"j":45,"f":16}},"D":{"d":"193,-125v0,64,-60,131,-130,130v-24,-1,-63,7,-63,-18r0,-227v3,-33,33,-12,62,-19v65,-3,131,61,131,134xm157,-127v0,-54,-45,-102,-120,-95r0,191v69,8,120,-30,120,-96","w":200,"k":{"j":49,"T":25}},"E":{"d":"13,-260v42,4,97,2,141,1v11,0,17,7,19,20v-2,11,-9,18,-20,18r-116,0r0,79v35,6,93,-18,101,17v-1,34,-65,14,-101,19r0,75r120,0v9,0,14,6,16,19v-3,11,-9,17,-17,17r-139,0v-12,-2,-17,-8,-17,-18r0,-227v1,-14,9,-15,13,-20","w":181,"k":{"y":21,"v":16,"j":32}},"F":{"d":"13,-260v42,4,97,2,141,1v11,0,17,7,19,20v-2,11,-9,18,-20,18r-116,0r0,79v35,6,93,-18,101,17v-1,34,-65,14,-101,19r0,94v-2,25,-37,20,-37,-1r0,-227v1,-14,9,-15,13,-20","w":168,"k":{"\u00c5":35,"\u00c4":32,"z":11,"j":39,"J":26,"A":32}},"G":{"d":"210,-221v-8,41,-50,-6,-85,1v-40,-3,-88,47,-88,95v0,61,74,119,139,82r0,-52v-24,-1,-63,7,-60,-19v3,-31,50,-12,79,-17v31,2,18,60,18,91v0,41,-54,43,-83,45v-63,5,-130,-58,-130,-131v0,-92,120,-175,205,-108v3,4,5,9,5,13","w":219,"k":{"j":35}},"H":{"d":"0,-238v1,-14,7,-20,20,-19v11,1,16,8,16,16r0,99r115,0r0,-98v0,-24,36,-20,36,0r0,229v0,9,-6,15,-19,16v-11,-2,-17,-8,-17,-18r0,-93r-115,0r0,94v-1,21,-36,23,-36,-1r0,-225","w":193,"k":{"j":28}},"I":{"d":"11,-242v-3,-21,28,-18,48,-18v25,0,23,38,1,37r3,0r0,192r-2,0v9,0,17,6,17,19v0,24,-27,16,-50,17v-26,1,-16,-39,-2,-36r0,-192r2,0v-11,0,-16,-6,-17,-19","w":94,"k":{"j":34}},"J":{"d":"37,-71v0,50,94,56,94,-8r0,-163v3,-21,37,-23,37,1r0,163v2,42,-36,83,-86,83v-39,0,-82,-38,-82,-84v4,-13,8,-19,19,-18v12,0,18,9,18,26","w":171,"k":{"j":25}},"K":{"d":"4,-239v-1,-26,36,-20,36,-1r0,102v86,-81,105,-115,125,-116v24,6,18,24,1,41r-78,79r92,113v1,32,-29,34,-44,3r-74,-90r-22,22v-6,33,17,91,-19,91v-10,0,-17,-6,-17,-18r0,-226","w":188,"k":{"y":12,"v":21,"j":32}},"L":{"d":"0,-238v1,-14,7,-20,20,-19v11,1,16,8,16,16r0,210r104,0v10,0,16,6,18,19v-3,11,-9,17,-18,17r-122,0v-10,0,-18,-6,-18,-18r0,-225","w":167,"k":{"\u00d6":33,"y":25,"v":42,"j":39,"Y":54,"W":40,"V":49,"T":56,"Q":25,"O":29,"G":27,"C":29}},"M":{"d":"47,-154r0,142v-1,21,-35,24,-36,-1r0,-224v2,-28,35,-27,38,1r81,180v1,-5,64,-149,86,-195v11,-12,33,-7,32,14r0,224v0,25,-37,21,-36,1r0,-142v-44,99,-67,150,-69,153v-20,14,-27,2,-39,-25","w":261,"k":{"j":33}},"N":{"d":"175,-66r0,-174v3,-22,37,-24,37,0r0,227v-6,26,-33,22,-47,-7r-129,-165r0,172v0,9,-5,18,-18,18v-10,0,-18,-6,-18,-18r0,-224v1,-26,31,-26,38,-4v6,7,52,65,137,175","w":225,"k":{"j":31}},"O":{"d":"0,-127v-2,-64,60,-131,131,-131v63,0,132,58,132,132v0,65,-57,131,-133,131v-65,0,-127,-58,-130,-132xm131,-221v-47,-1,-95,41,-95,96v0,46,43,94,97,94v46,0,93,-43,93,-95v0,-48,-41,-94,-95,-95","w":270,"k":{"j":45,"T":19}},"P":{"d":"153,-182v1,55,-48,90,-116,81r0,89v-1,21,-37,24,-37,-1r0,-225v1,-34,48,-16,77,-20v35,-4,76,34,76,76xm116,-180v2,-34,-37,-46,-79,-41r0,84v43,2,77,0,79,-43","w":161,"k":{"\u00c5":41,"\u00c4":36,"j":43,"J":31,"A":40}},"Q":{"d":"36,-125v0,66,90,125,150,77v-17,-22,-27,-23,-27,-39v10,-36,39,-6,53,12v40,-65,-6,-145,-81,-146v-47,-1,-95,41,-95,96xm131,-258v92,0,176,125,106,210v18,18,26,28,26,35v0,9,-6,15,-18,18v-7,3,-22,-17,-34,-26v-84,65,-208,2,-211,-106v-2,-64,60,-131,131,-131","w":272,"k":{"j":29,"T":24}},"R":{"d":"142,-185v1,29,-12,49,-38,65v39,67,58,103,58,105v-4,28,-33,25,-43,-5r-53,-91r-29,0r0,99v-1,21,-37,24,-37,-1r0,-225v1,-33,44,-17,72,-20v33,-3,68,32,70,73xm105,-177v7,-34,-26,-49,-68,-45r0,75v35,1,60,2,68,-30","w":164,"k":{"j":26}},"S":{"d":"52,-125v-68,-32,-49,-133,27,-133v24,0,54,11,61,42v0,9,-6,14,-18,16v-10,1,-25,-27,-45,-22v-16,0,-30,15,-31,35v0,15,9,25,27,32v34,-2,82,45,77,81v5,72,-109,111,-148,43v-7,-12,4,-26,16,-25v14,1,32,32,55,25v19,1,40,-18,40,-46v0,-28,-34,-43,-61,-48","w":156,"k":{"j":31}},"T":{"d":"17,-258r164,0v23,3,24,37,-3,37r-61,0r0,209v-1,21,-36,23,-36,-1r0,-208v-29,-3,-80,11,-81,-19v3,-12,9,-18,17,-18","w":208,"k":{"\u00f6":27,"\u00e5":20,"\u00e4":42,"\u00d6":31,"\u00c5":34,"\u00c4":31,"z":16,"y":26,"x":24,"w":20,"v":27,"u":20,"s":24,"r":17,"q":45,"p":43,"o":42,"n":32,"m":36,"j":47,"g":43,"f":33,"e":50,"d":42,"c":54,"a":49,"Q":29,"O":22,"J":47,"G":28,"C":33,"A":57}},"U":{"d":"103,5v-50,0,-97,-40,-96,-99r0,-144v1,-14,7,-20,20,-19v11,1,16,8,16,16v6,83,-26,209,58,210v30,1,57,-25,57,-61r0,-148v0,-24,36,-20,36,0r0,155v4,42,-44,90,-91,90","w":205,"k":{"j":33}},"V":{"d":"103,-66r69,-185v12,-14,32,-9,34,12r-84,227v-9,27,-38,21,-43,-12r-79,-217v0,-10,6,-18,19,-18v10,0,15,12,23,32","w":213,"k":{"\u00c5":41,"\u00c4":41,"j":47,"J":38,"A":41}},"W":{"d":"149,-175r-49,171v-15,17,-30,9,-38,-20v-33,-130,-59,-202,-62,-216v6,-27,31,-23,39,6r45,156v32,-111,48,-169,51,-173v15,-14,34,-7,36,21v3,8,18,59,44,152r50,-171v9,-17,38,-8,33,11r-68,236v-17,15,-29,4,-37,-22","w":305,"k":{"\u00c5":33,"\u00c4":24,"j":39,"A":27}},"X":{"d":"1,-234v-5,-25,26,-33,36,-12r70,90r77,-99v14,-7,27,-2,29,16v-17,35,-60,79,-83,113v26,40,62,69,83,114v-3,23,-30,22,-37,2r-69,-87r-77,98v-13,10,-33,0,-30,-16v12,-23,64,-83,84,-112v-54,-68,-81,-103,-83,-107","w":223,"k":{"y":18,"j":23,"G":25}},"Y":{"d":"94,-158v54,-71,49,-94,79,-99v26,11,14,25,-7,57r-53,80r0,106v-2,25,-31,26,-37,4r0,-110v-24,-41,-55,-75,-76,-119v4,-24,31,-24,38,-3","w":195,"k":{"\u00f6":23,"\u00e5":17,"\u00e4":23,"\u00c5":28,"\u00c4":28,"s":23,"q":32,"p":30,"o":34,"j":35,"g":29,"e":28,"d":28,"c":28,"a":30,"J":34,"A":42}},"Z":{"d":"17,-258r179,0v21,5,22,27,1,44r-141,183r140,0v12,2,18,8,17,19v-1,12,-8,17,-18,17r-177,0v-10,0,-16,-6,-18,-19v38,-62,111,-145,157,-207r-139,0v-26,-1,-19,-37,-1,-37","w":217,"k":{"j":20}},"[":{"d":"56,-284v27,9,88,-13,89,21v1,23,-38,18,-64,18r0,287v24,1,65,-7,64,19v-2,30,-54,16,-83,19v-13,-2,-19,-10,-19,-20r0,-322v0,-16,9,-17,13,-22","w":136},"\\":{"d":"0,-258v2,-13,8,-19,20,-19v12,0,17,12,25,34r90,245v-3,14,-9,20,-22,19v-10,0,-15,-12,-23,-33v-53,-150,-86,-231,-90,-246","w":121},"]":{"d":"5,-264v0,-30,53,-13,84,-19v12,3,18,9,18,18r0,327v-2,28,-55,18,-84,18v-21,0,-26,-34,0,-39v13,2,31,0,46,1r0,-287v-25,0,-64,6,-64,-19","w":133},"^":{"d":"65,-255v39,-10,77,94,76,93v0,10,-6,15,-19,17v-14,1,-36,-43,-48,-58r-35,54v-31,10,-38,-15,-16,-44v28,-37,39,-60,42,-62","w":165},"_":{"d":"19,0r156,0v13,2,18,8,17,20v-1,11,-8,17,-17,17r-156,0v-11,0,-17,-7,-19,-20v3,-11,10,-17,19,-17","w":168,"k":{"_":7}},"`":{"d":"95,-177v-14,-3,-92,-62,-41,-76v22,2,62,51,60,57v-3,12,-9,19,-19,19","w":132},"a":{"d":"95,-149v-29,-1,-58,24,-59,60v-1,30,24,58,62,58v27,0,56,-25,56,-60v0,-29,-23,-57,-59,-58xm95,-185v47,-1,99,39,95,97v-2,33,16,93,-18,93v-9,0,-18,-7,-18,-20v-57,49,-154,5,-154,-76v0,-45,40,-93,95,-94","w":211,"k":{"j":43,"Y":54,"T":62}},"b":{"d":"106,5v-51,2,-98,-43,-98,-101r0,-144v0,-10,6,-17,19,-17v32,6,11,59,17,91v56,-53,156,2,156,75v0,47,-40,94,-94,96xm105,-151v-31,-2,-59,23,-61,61v-1,30,23,59,62,59v28,0,58,-24,58,-61v0,-29,-24,-57,-59,-59","w":211,"k":{"j":35,"Y":52,"V":23,"T":49}},"c":{"d":"0,-90v0,-75,106,-132,163,-68v8,14,-1,30,-16,29v-8,0,-34,-24,-53,-20v-28,-2,-56,24,-58,60v-3,47,67,80,103,40v14,-5,25,1,27,17v4,12,-42,37,-74,37v-43,0,-92,-46,-92,-95","w":176,"k":{"j":30,"Y":26,"T":49}},"d":{"d":"0,-91v0,-71,98,-129,156,-75v4,-31,-15,-90,19,-91v11,2,17,8,17,16r0,154v0,46,-49,99,-99,92v-43,3,-93,-47,-93,-96xm98,-151v-32,-2,-60,23,-62,61v-1,29,23,58,62,59v28,1,58,-24,58,-61v0,-29,-23,-57,-58,-59","w":204,"k":{"j":27}},"e":{"d":"0,-90v-2,-47,42,-94,95,-95v50,-2,98,41,96,100v0,12,-8,18,-18,18r-132,0v7,27,55,48,89,26v15,0,22,7,22,19v0,14,-22,24,-57,27v-46,2,-93,-39,-95,-95xm153,-103v-2,-16,-34,-53,-60,-45v-24,-3,-50,22,-55,45r115,0","w":198,"k":{"j":40,"Y":43,"T":56}},"f":{"d":"45,-182v-2,-48,24,-79,76,-76v20,1,24,34,-1,37v-26,-3,-41,9,-38,39v24,2,50,-8,51,19v1,18,-30,18,-51,17r0,134v0,20,-32,23,-37,1v3,-43,0,-90,1,-135v-23,-1,-44,6,-46,-19v-1,-15,23,-19,45,-17","w":147,"k":{"\u00c5":14,"\u00c4":14,"j":43,"J":31,"A":22}},"g":{"d":"1,-90v0,-47,44,-95,95,-95v52,-1,94,49,94,113r0,79v2,29,-53,71,-94,71v-37,0,-82,-22,-92,-64v3,-22,32,-23,38,2v30,44,117,35,112,-31v-57,51,-153,0,-153,-75xm97,-149v-32,-2,-59,21,-60,60v-1,29,22,58,61,58v28,0,56,-22,56,-60v0,-28,-23,-56,-57,-58","w":201,"k":{"Y":45,"T":50}},"h":{"d":"94,-150v-28,0,-52,21,-49,62v-6,33,17,93,-19,93v-9,0,-15,-5,-18,-16r0,-228v0,-24,37,-21,37,-2r0,70v51,-41,135,0,135,66r0,93v0,20,-34,24,-36,1v-4,-62,17,-139,-50,-139","w":193,"k":{"j":35,"Y":46,"T":54}},"i":{"d":"18,-213v0,-25,36,-20,36,-2v0,13,-3,21,-18,21v-9,0,-15,-7,-18,-19xm18,-166v-2,-26,36,-23,36,-4r0,158v0,9,-5,17,-18,17v-10,0,-18,-6,-18,-18r0,-153","w":75,"k":{"j":30}},"j":{"d":"100,-5v1,44,-31,81,-82,82v-10,0,-18,-6,-18,-19v0,-10,6,-18,19,-18v27,0,45,-17,45,-51r0,-157v0,-10,7,-16,19,-18v12,2,17,9,17,18r0,163xm82,-230v24,3,25,35,-1,37v-23,-5,-24,-32,1,-37","w":115},"k":{"d":"176,-168v-3,20,-79,56,-73,57r72,91v-2,36,-24,28,-46,0r-57,-71r-22,14v-5,30,16,79,-19,82v-9,0,-14,-5,-17,-16r0,-229v-1,-26,36,-20,36,-2r0,122v63,-39,86,-67,108,-67v10,0,16,6,18,19","w":185,"k":{"j":27,"T":44}},"l":{"d":"11,-237v1,-14,7,-20,20,-19v11,1,17,8,17,16r0,209v15,-1,25,2,25,19v0,22,-23,16,-44,17v-10,0,-18,-6,-18,-18r0,-224","w":83,"k":{"j":27}},"m":{"d":"89,-146v-56,0,-40,79,-42,134v-1,20,-36,24,-36,0r0,-150v-1,-22,30,-27,36,-9v28,-20,80,-12,99,16v5,-10,32,-26,58,-27v37,-3,77,31,77,75r0,96v0,9,-6,15,-18,16v-11,-2,-17,-7,-17,-17v0,-56,24,-133,-44,-134v-18,-1,-38,15,-38,38r0,96v-1,25,-35,19,-35,0v0,-55,13,-134,-40,-134","w":303,"k":{"j":29,"Y":39,"T":46}},"n":{"d":"107,-148v-33,0,-59,21,-57,67v-6,31,16,86,-19,86v-10,0,-17,-6,-17,-18r0,-152v-2,-26,36,-23,36,-4r0,3v55,-48,149,1,149,71r0,84v0,9,-7,15,-19,16v-32,-6,-14,-59,-17,-91v-3,-35,-18,-62,-56,-62","w":210,"k":{"j":22,"Y":33,"T":39}},"o":{"d":"0,-89v0,-47,43,-95,95,-95v47,0,94,47,94,95v0,49,-41,94,-98,94v-42,0,-91,-46,-91,-94xm153,-91v0,-73,-112,-74,-116,0v-2,32,23,59,60,60v28,1,56,-23,56,-60","w":195,"k":{"j":35,"Y":40,"T":45}},"p":{"d":"199,-90v0,69,-96,126,-153,74v-6,34,16,87,-18,94v-9,0,-15,-5,-18,-17r0,-145v0,-55,34,-96,95,-101v47,-4,94,47,94,95xm104,-148v-29,0,-56,22,-57,59v-1,29,24,57,60,57v28,0,55,-24,56,-60v1,-27,-26,-56,-59,-56","w":206,"k":{"j":32,"Y":40,"T":52}},"q":{"d":"4,-89v0,-47,43,-94,94,-94v50,0,94,44,94,100r0,144v-2,25,-36,20,-36,2r0,-78v-57,51,-152,0,-152,-74xm97,-146v-28,0,-56,21,-57,58v0,29,23,57,59,57v27,1,56,-23,56,-60v0,-27,-26,-55,-58,-55","w":202,"k":{"Y":43,"V":21,"T":46}},"r":{"d":"141,-144v-48,-15,-82,4,-87,54v-4,34,17,95,-19,95v-10,0,-18,-6,-18,-18r0,-153v-1,-28,40,-24,37,-1v15,-13,34,-20,57,-20v16,1,48,6,48,26v0,11,-8,17,-18,17","w":162,"k":{"j":30,"Z":35,"T":39,"J":41}},"s":{"d":"82,-32v16,0,32,-9,42,-25v0,-2,-2,-5,-7,-5v-87,-24,-102,-7,-113,-59v-6,-26,42,-63,79,-63v32,0,58,14,77,44v5,29,-29,34,-40,9v-23,-23,-66,-22,-79,11v64,25,117,9,120,63v1,27,-40,64,-81,62v-29,-1,-75,-15,-75,-53v0,-9,6,-16,19,-17v14,2,32,40,58,33","w":170,"k":{"j":33,"Y":45,"T":41}},"t":{"d":"101,5v-39,4,-67,-16,-67,-58r0,-93v-18,2,-35,-4,-34,-18v3,-22,14,-17,34,-17v2,-26,-9,-72,19,-69v29,3,13,42,17,69v22,1,41,-7,44,17v2,18,-22,20,-44,18v8,42,-25,120,33,116v9,0,15,6,16,18v-2,11,-8,17,-18,17","w":121,"k":{"j":25}},"u":{"d":"105,-31v29,2,55,-24,57,-60v2,-33,-13,-92,19,-95v11,3,17,9,17,18r0,157v0,9,-7,15,-19,16v-12,-2,-18,-7,-17,-19v-62,47,-155,3,-150,-80v2,-32,-13,-89,19,-92v33,7,13,55,18,87v-2,44,21,66,56,68","w":208,"k":{"j":27,"T":44}},"v":{"d":"0,-165v5,-31,27,-24,41,4r52,106v38,-81,59,-123,62,-126v12,-10,34,-1,30,13v-7,27,-60,129,-78,167v-19,14,-27,3,-39,-22v-41,-88,-65,-134,-68,-142","w":193,"k":{"\u00c5":31,"\u00c4":28,"j":38,"Z":42,"T":44,"A":28}},"w":{"d":"116,-105r-33,102v-9,14,-29,9,-34,-7r-49,-154v9,-30,29,-22,40,11r27,83v21,-68,33,-103,35,-106v15,-14,27,-5,35,19r28,87v20,-64,32,-100,34,-105v11,-16,34,-4,33,12r-52,161v-18,15,-28,4,-37,-22","w":242,"k":{"j":39,"Y":23,"T":58}},"x":{"d":"18,-182v19,0,56,63,61,66v6,-7,21,-29,49,-61v8,-10,35,-1,30,15v-4,12,-44,56,-56,74v38,49,57,65,56,76v-2,21,-31,22,-40,0r-39,-48v-41,46,-40,60,-61,65v-30,-10,-15,-26,8,-55r30,-38v-18,-26,-43,-45,-56,-76v2,-12,8,-18,18,-18","w":163,"k":{"j":27,"T":37}},"y":{"d":"80,-67v29,-71,45,-108,47,-111v11,-10,32,-2,30,13r-94,226v-10,9,-33,1,-29,-14v0,-2,9,-25,27,-69r-58,-144v9,-26,30,-19,40,11v24,68,29,68,37,88","w":162,"k":{"\u00c5":15,"\u00c4":15,"j":32,"Z":21,"Y":17,"X":14,"T":54,"A":22}},"z":{"d":"12,-184v39,4,89,2,130,1v26,9,18,22,0,44r-86,108r86,0v23,2,23,36,0,36r-124,0v-31,-11,-15,-26,10,-58r75,-94v-34,-4,-97,14,-103,-18v1,-13,9,-14,12,-19","w":172,"k":{"j":32,"Y":11,"T":53}},"{":{"d":"83,-241v-1,-32,28,-44,67,-44v22,0,29,34,3,37v-12,2,-33,-6,-33,8v0,41,8,92,-7,122v16,30,3,86,7,127v7,14,55,-6,50,25v2,18,-24,17,-44,17v-57,0,-40,-88,-42,-145v-7,-10,-41,-2,-38,-24v3,-23,24,-13,37,-22r0,-101"},"|":{"d":"76,-272v0,-26,37,-21,37,0r0,335v-2,19,-37,25,-37,-2r0,-333"},"}":{"d":"19,-264v0,-23,22,-19,44,-19v19,0,41,12,41,39r0,102v4,12,43,1,36,26v1,13,-15,17,-31,16v-4,0,-5,4,-5,12v-5,65,27,146,-68,136v-25,-2,-19,-37,0,-36v10,-2,30,5,31,-6v3,-41,-8,-96,8,-124v-15,-29,-4,-83,-7,-123v-8,-15,-49,8,-49,-23"},"~":{"d":"33,-128v2,-34,57,-34,82,-12v10,2,17,-2,25,-4v15,3,22,10,22,22v0,28,-59,37,-82,12v-10,-3,-17,3,-27,3v-13,-3,-20,-10,-20,-21"},"\u00a3":{"d":"171,-34v0,1,-12,39,-28,38r-100,0v-10,0,-18,-7,-18,-19v0,-3,9,-24,27,-63v4,-9,3,-16,3,-26v-20,1,-44,0,-41,-19v2,-15,11,-19,26,-18v-37,-56,-12,-123,58,-123v23,0,50,11,60,40v-3,12,-9,19,-19,19v-12,1,-25,-26,-45,-22v-40,8,-43,46,-11,86v23,0,59,-5,56,19v-3,24,-24,17,-47,18v1,26,-6,39,-19,71v19,-1,43,2,60,-1v-1,-8,11,-21,19,-19v12,3,19,9,19,19","w":166},"\u00c4":{"d":"78,-270v-25,-2,-24,-38,2,-37v23,2,23,36,-2,37xm111,-287v0,-26,34,-28,36,-1v0,9,-6,15,-18,18v-12,-2,-18,-8,-18,-17xm125,-131r-21,-56r-21,56r42,0xm87,-248v16,-18,29,-7,39,19r81,217v0,9,-5,17,-18,17v-11,0,-16,-10,-22,-26r-28,-74r-70,0r-36,94v-12,12,-35,4,-33,-13","w":215,"k":{"v":28,"j":28,"Y":37,"W":33,"V":37,"T":41}},"\u00c5":{"d":"112,-260v-21,9,-42,-10,-43,-34v-2,-36,62,-47,68,-7v3,22,-5,33,-25,41xm93,-293v1,14,22,12,20,-1v-1,-13,-19,-12,-20,1xm125,-131r-21,-57r-21,57r42,0xm88,-248v17,-19,29,-8,39,19r81,217v-6,25,-36,21,-40,-9r-29,-74r-70,0r-36,94v-12,12,-35,4,-33,-13","w":214,"k":{"v":29,"j":34,"Y":43,"W":32,"V":40,"T":39}},"\u00d6":{"d":"75,-289v3,-20,34,-22,37,2v-2,28,-41,20,-37,-2xm150,-289v3,-20,37,-23,37,2v0,26,-37,21,-37,2r0,-4xm0,-126v0,-65,60,-131,131,-131v63,0,131,59,131,132v0,65,-58,130,-132,130v-64,0,-130,-55,-130,-131xm131,-220v-47,-1,-95,41,-95,96v0,46,43,93,97,93v46,0,93,-44,93,-95v0,-47,-41,-93,-95,-94","w":270,"k":{"j":34,"Y":19,"T":26}},"\u00e4":{"d":"68,-189v-24,-2,-23,-36,2,-35v23,3,21,34,-2,35xm100,-205v0,-25,34,-26,36,-1v0,9,-6,15,-18,18v-12,-2,-18,-8,-18,-17xm94,-146v-30,-1,-57,22,-58,58v-1,29,23,57,60,58v25,1,55,-26,55,-59v0,-28,-23,-56,-57,-57xm94,-182v45,-1,97,39,93,96v-2,33,16,85,-18,91v-8,0,-20,-8,-17,-19v-57,47,-152,5,-152,-75v0,-46,40,-92,94,-93","w":199,"k":{"j":34,"Y":31,"V":19,"T":51}},"\u00e5":{"d":"89,-259v45,-11,64,63,15,73v-24,5,-45,-7,-45,-37v0,-17,9,-31,30,-36xm97,-231v-14,-1,-12,18,-3,18v7,1,11,-2,12,-9v-1,-6,-4,-9,-9,-9xm94,-146v-30,-1,-57,22,-58,58v-1,29,23,57,60,58v25,1,55,-26,55,-59v0,-28,-23,-56,-57,-57xm94,-182v45,-1,97,39,93,96v-2,33,16,85,-18,91v-8,0,-20,-8,-17,-19v-57,47,-152,5,-152,-75v0,-46,40,-92,94,-93","w":198,"k":{"j":33,"Y":20,"V":17,"T":20}},"\u00f6":{"d":"68,-188v-23,-2,-23,-35,2,-35v23,3,21,34,-2,35xm99,-204v0,-25,35,-26,36,-1v0,9,-6,15,-18,18v-12,-2,-18,-8,-18,-17xm0,-88v0,-46,43,-93,93,-93v47,0,93,46,93,93v0,47,-40,93,-96,93v-41,0,-90,-46,-90,-93xm92,-145v-28,0,-55,22,-56,59v-1,28,23,55,59,55v27,0,55,-23,55,-59v0,-28,-26,-55,-58,-55","w":195,"k":{"j":40,"Y":23,"T":40}},"\u20ac":{"d":"0,-128v0,-95,125,-176,211,-107v10,15,2,31,-17,31v-49,-35,-124,-20,-147,35r123,0v26,0,21,37,0,37r-132,0v-1,3,-1,6,0,9r132,0v26,0,21,37,0,37r-123,0v16,47,95,74,145,35v15,0,24,7,23,19v4,16,-49,37,-84,37v-64,0,-131,-60,-131,-133","w":209}}});

