//window.addEvent('domready', Background);
var galleryProject = false;
function Background() {
	var container = $("hg_container"),
		imageFile = container.getElement("span").get("html"),
		imageElement = new Element("img"),
		ratio = 1.33,
		fadeIn = container.hasClass("fadeIn"),
		ContainerTwo = $('hg_wrapper');

	if(!container) {
		return;
	}

	container.empty();
	if(ContainerTwo) {
		ContainerTwo.empty();
	}

	Asset.image(imageFile, {onload: initImage});


	function initImage() {
		imageElement.src = imageFile;
		container.adopt(imageElement)
		ratio = imageElement.width / imageElement.height;
/*		container.setStyles({
			'background-image': 'url(' + imageFile + ')',
			'background-position': 'center center',
			'background-repeat': 'no-repeat'
		});
*/
		window.removeEvents('resize', 'scroll');
		window.addEvents({
			resize: adjustBackground,
			scroll: adjustBackground
		});
		adjustBackground();
	}

	function adjustBackground() {
//		console.log("Background");

		if(galleryProject) {
			galleryProject.loadImageTxt();
		}

		minus = 0;
		if(ie) { minus = 17; }

		var dimensions = window.getSize(),
			scrolled = window.getScroll(),
			width = dimensions.x,
			height = width / ratio,
//			height = dimensions.y,
//			width = height / ratio,
			imgHeight = imageElement.height;
			margin = Math.ceil(imgHeight/3);

		if(width < 960 || height < 510) {
			if(width < 960 && height > 510) {
				width = 960;
				height = width / ratio;
			}
			else if(width > 960 && height < 510) {
				height = 510;
				width = height / ratio;
			}
			else if(width < 960 && height < 510) {
				if(width > height) {
					width = height * ratio;
				}
				else if(width < height) {
					height = width * ratio;
				}
			}
		}

		if (height < dimensions.y) {
			height = dimensions.y;
			width = height * ratio;
		}
		else if(width < dimensions.x) {
			width = dimensions.x;
			height = width * ratio;
		}

		container.setStyles({
			width: dimensions.x - minus,
			height: dimensions.y
		});

		if (Browser.Engine.trident4) {
			container.setStyles({
				top: scrolled.y,
				left: scrolled.x
			});
		}


		imageElement.setStyles({
			width: width,
			height: height,
			'top': ((height > dimensions.y) ? -((height - dimensions.y) / 2) : 0)
//			'top': -(height/2)
		});


		if(ContainerTwo) {
			ContainerTwo.setStyles({
				width: dimensions.x - minus,
				height: dimensions.y
			});
		}
	}
}

function backgroundTransition(newImageSrc) {
	var container = $("hg_container"),
		imageFile = newImageSrc,
		oldImageElement = container.getElement("img"),
		imageElement = new Element("img"),
		ratio = 1.33,
		fadeIn = container.hasClass("fadeIn"),
		ContainerTwo = $('hg_wrapper'),newImage, oldImage;
//		ContainerThree = $('hg_wrapper_bottom');

	if(!container) {
		return;
	}

//	container.empty();
	if(ContainerTwo) {
		ContainerTwo.empty();
	}

	Asset.image(imageFile, {onload: initImage});


	function initImage() {
		imageElement.src = imageFile;

		ratio = imageElement.width / imageElement.height;
/*		container.setStyles({
			'background-image': 'url(' + imageFile + ')',
			'background-position': 'center center',
			'background-repeat': 'no-repeat'
		});
*/
		imageElement.setStyle('z-index', '-99');
		oldImageElement.setStyle('z-index', '-98');

		newImage = new Fx.Tween(imageElement, {
			duration: 400,
//			transition: 'bounce:in',
			property: 'opacity'
		}).set(0);

		oldImage = new Fx.Tween(oldImageElement, {
			duration: 400,
//			transition: 'bounce:out',
			property: 'opacity'
		}).set(1);

		imageElement.inject(container, 'bottom');

		window.removeEvents('resize', 'scroll');
		window.addEvents({
			resize: adjustBackground,
			scroll: adjustBackground
		});
		adjustBackground();
		startEffect();
	}

	function adjustBackground() {
//		console.log("backgroundTransition");

		if(galleryProject) {
			galleryProject.loadImageTxt();
		}

		var minus = 0;
		if(ie) { minus = 17; }

		var dimensions = window.getSize(),
			scrolled = window.getScroll(),
			width = dimensions.x,
			height = width / ratio,
//			height = dimensions.y,
//			width = height / ratio,
			imgHeight = imageElement.height,
			margin = Math.ceil(imgHeight/3);

		if(width < 960 || height < 510) {
			if(width < 960 && height > 510) {
				width = 960;
				height = width / ratio;
			}
			else if(width > 960 && height < 510) {
				height = 510;
				width = height / ratio;
			}
			else if(width < 960 && height < 510) {
				if(width > height) {
					width = height * ratio;
				}
				else if(width < height) {
					height = width * ratio;
				}
			}
		}

		if (height < dimensions.y) {
			height = dimensions.y;
			width = height * ratio;
		}
		else if(width < dimensions.x) {
			width = dimensions.x;
			height = width * ratio;
		}

		container.setStyles({
			width: dimensions.x - minus,
			height: dimensions.y
		});

		if (Browser.Engine.trident4) {
			container.setStyles({
				top: scrolled.y,
				left: scrolled.x
			});
		}

		margin = ((height-(margin) > dimensions.y) ? -(margin) : 0);

		imageElement.setStyles({
			width: width,
			height: height,
			'top': ((height > dimensions.y) ? -((height - dimensions.y) / 2) : 0)
		});

		if(ContainerTwo) {
			ContainerTwo.setStyles({
				width: dimensions.x - minus,
				height: dimensions.y
			});
		}
	}

	function startEffect() {
		oldImage.start(0).chain(function() {
			oldImageElement.destroy();
		});
		newImage.start(1);
	}
}

// JavaScript Document

function initMainmenu() {
	var firstLevel = $$('.mainmenu ul.level_1')[0];
	
	if(!firstLevel) {
		return;	
	}
	
	firstLevel.getChildren('li').each(function(list, index) {
		if(list.hasClass('last')) {			
			secondLevel = list.getChildren('ul')[0];	
			if(secondLevel) {				
				secondLevel.setStyle("left", -99);
			}
		}
	});
}
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1988 Adobe Systems Incorporated.  All Rights Reserved.Helvetica
 * is a registered trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing   the Typefaces
 * licensed to you is copyrighted (c) 1988 Adobe  Systems Incorporated. All Rights
 * Reserved. This software is the  property of Adobe Systems Incorporated and its
 * licensors, and   may not be reproduced, used, displayed, modified, disclosed or 
 * transferred without the express written approval of Adobe.
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 */
Cufon.registerFont({"w":200,"face":{"font-family":"font-01","font-weight":550,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-15 -343 379 79.8246","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"\u00c2":{"d":"95,-283r-33,0r38,-51r40,0r39,51r-34,0r-25,-32xm80,-102r79,0r-40,-111xm96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0","w":240},"\u00c4":{"d":"80,-102r79,0r-40,-111xm96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm172,-326r0,39r-41,0r0,-39r41,0xm69,-287r0,-39r41,0r0,39r-41,0","w":240},"\u00c0":{"d":"80,-102r79,0r-40,-111xm96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm115,-334r33,51r-30,0r-51,-51r48,0","w":240},"\u00c5":{"d":"157,-306v0,23,-15,37,-37,37v-22,0,-37,-14,-37,-37v0,-22,15,-37,37,-37v22,0,37,15,37,37xm120,-328v-12,0,-21,11,-22,22v0,12,10,22,22,22v12,0,23,-9,22,-22v0,-12,-10,-22,-22,-22xm80,-102r79,0r-40,-111xm96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0","w":240},"\u00c3":{"d":"94,-326v26,-2,60,32,69,-2r21,0v-5,22,-13,41,-40,41v-24,0,-58,-29,-67,2r-20,0v3,-22,14,-39,37,-41xm80,-102r79,0r-40,-111xm96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0","w":240},"B":{"d":"195,-77v0,-56,-72,-37,-123,-40r0,80v51,-3,123,16,123,-40xm240,-72v0,93,-122,69,-213,72r0,-257v84,4,203,-23,202,64v0,29,-17,44,-37,55v31,6,48,30,48,66xm184,-185v1,-52,-67,-31,-112,-35r0,71v47,-2,111,13,112,-36","w":253},"C":{"d":"14,-129v-11,-126,157,-181,221,-83v6,11,10,23,11,37r-45,0v-8,-30,-25,-52,-64,-51v-56,1,-78,42,-78,97v0,55,22,98,78,98v42,0,61,-29,65,-67r44,0v-7,62,-42,104,-109,104v-79,0,-116,-55,-123,-135","w":259},"\u00c7":{"d":"14,-129v-11,-126,157,-181,221,-83v6,11,10,23,11,37r-45,0v-8,-30,-25,-52,-64,-51v-56,1,-78,42,-78,97v0,55,22,98,78,98v42,0,61,-29,65,-67r44,0v-7,62,-42,104,-109,104v-79,0,-116,-55,-123,-135xm171,47v1,38,-54,38,-81,25r7,-14v12,4,45,12,45,-9v1,-16,-20,-16,-31,-10r-7,-7r23,-32r18,0v-5,8,-13,13,-17,22v23,-4,43,3,43,25","w":259},"D":{"d":"202,-129v0,-79,-48,-98,-130,-91r0,183v82,6,130,-12,130,-92xm247,-129v0,78,-35,129,-113,129r-107,0r0,-257r107,0v78,2,113,51,113,128","w":259},"E":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257","w":226},"\u00c9":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm119,-334r48,0r-51,51r-30,0","w":226},"\u00ca":{"d":"88,-283r-33,0r39,-51r40,0r38,51r-33,0r-26,-32xm27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257","w":226},"\u00cb":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm165,-326r0,39r-41,0r0,-39r41,0xm62,-287r0,-39r41,0r0,39r-41,0","w":226},"\u00c8":{"d":"27,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0r0,-257xm108,-334r33,51r-30,0r-51,-51r48,0","w":226},"F":{"d":"27,-257r178,0r0,39r-133,0r0,67r117,0r0,37r-117,0r0,114r-45,0r0,-257","w":213,"k":{"A":20,".":46,",":46}},"G":{"d":"60,-129v0,54,22,97,79,98v46,1,71,-27,72,-70r-69,0r0,-34r110,0r0,135r-29,0r-7,-30v-21,24,-39,36,-77,36v-80,0,-117,-56,-124,-135v-11,-124,158,-182,222,-84v7,10,10,24,12,38r-44,0v-6,-32,-29,-51,-66,-51v-56,0,-79,43,-79,97","w":273},"H":{"d":"26,-257r45,0r0,102r117,0r0,-102r45,0r0,257r-45,0r0,-116r-117,0r0,116r-45,0r0,-257","w":259},"I":{"d":"27,-257r45,0r0,257r-45,0r0,-257","w":100},"\u00cd":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm56,-332r48,0r-51,51r-30,0","w":100},"\u00ce":{"d":"25,-283r-33,0r38,-51r40,0r39,51r-33,0r-26,-32xm27,-257r45,0r0,257r-45,0r0,-257","w":100},"\u00cf":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm102,-326r0,39r-41,0r0,-39r41,0xm-1,-287r0,-39r41,0r0,39r-41,0","w":100},"\u00cc":{"d":"27,-257r45,0r0,257r-45,0r0,-257xm45,-334r33,51r-30,0r-51,-51r48,0","w":100},"J":{"d":"85,-31v29,0,36,-19,36,-49r0,-177r45,0v-9,109,40,269,-85,263v-57,-3,-78,-37,-76,-96r45,0v-1,33,1,59,35,59","w":193},"K":{"d":"27,-257r45,0r0,117r115,-117r55,0r-102,103r109,154r-56,0r-84,-123r-37,37r0,86r-45,0r0,-257","w":246},"L":{"d":"27,-257r45,0r0,218r131,0r0,39r-176,0r0,-257","w":206,"k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"27,-257r63,0r72,201r69,-201r62,0r0,257r-42,0r-1,-198r-71,198r-38,0r-72,-198r0,198r-42,0r0,-257","w":320},"N":{"d":"26,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0r0,-257","w":259},"\u00d1":{"d":"154,-287v-24,0,-58,-29,-67,2r-20,0v5,-20,13,-40,37,-41v27,-1,60,32,70,-2r20,0v-4,23,-14,40,-40,41xm26,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0r0,-257","w":259},"O":{"d":"14,-129v0,-80,43,-134,123,-134v80,0,123,56,123,134v0,79,-44,135,-123,135v-79,0,-123,-55,-123,-135xm215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98","w":273},"\u0152":{"d":"137,-31v35,0,62,-17,62,-48r0,-96v-2,-34,-26,-51,-62,-51v-55,0,-77,43,-77,98v0,54,22,97,77,97xm136,-263v29,0,49,9,65,26r0,-20r175,0r0,39r-134,0r0,67r123,0r0,37r-123,0r0,75r137,0r0,39r-178,0r0,-23v-15,17,-38,29,-68,29v-78,0,-118,-54,-118,-133v0,-80,41,-136,121,-136","w":393},"\u00d3":{"d":"14,-129v0,-80,43,-134,123,-134v80,0,123,56,123,134v0,79,-44,135,-123,135v-79,0,-123,-55,-123,-135xm215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm143,-329r48,0r-51,51r-30,0","w":273},"\u00d4":{"d":"112,-283r-34,0r39,-51r40,0r39,51r-34,0r-25,-32xm14,-129v0,-80,43,-134,123,-134v80,0,123,56,123,134v0,79,-44,135,-123,135v-79,0,-123,-55,-123,-135xm215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98","w":273},"\u00d6":{"d":"14,-129v0,-80,43,-134,123,-134v80,0,123,56,123,134v0,79,-44,135,-123,135v-79,0,-123,-55,-123,-135xm215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm189,-326r0,39r-41,0r0,-39r41,0xm86,-287r0,-39r41,0r0,39r-41,0","w":273},"\u00d2":{"d":"14,-129v0,-80,43,-134,123,-134v80,0,123,56,123,134v0,79,-44,135,-123,135v-79,0,-123,-55,-123,-135xm215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98xm132,-334r33,51r-30,0r-51,-51r48,0","w":273},"\u00d8":{"d":"137,-226v-76,-3,-93,95,-65,155r118,-133v-11,-13,-29,-21,-53,-22xm137,-31v76,3,93,-95,65,-155r-118,133v11,13,29,22,53,22xm137,-263v35,0,60,12,80,29r27,-30r15,13r-28,32v17,23,29,52,29,90v0,79,-44,135,-123,135v-35,0,-60,-12,-80,-29r-27,30r-16,-13r29,-32v-17,-23,-30,-52,-29,-91v2,-80,43,-134,123,-134","w":273},"\u00d5":{"d":"111,-326v27,-1,59,32,69,-2r21,0v-5,22,-13,41,-40,41v-19,0,-34,-11,-52,-13v-7,0,-16,8,-15,15r-21,0v5,-21,14,-39,38,-41xm14,-129v0,-80,43,-134,123,-134v80,0,123,56,123,134v0,79,-44,135,-123,135v-79,0,-123,-55,-123,-135xm215,-129v0,-54,-22,-97,-78,-97v-56,0,-78,42,-78,97v0,55,22,98,78,98v56,0,78,-44,78,-98","w":273},"P":{"d":"183,-178v0,-56,-61,-40,-111,-42r0,85v51,-1,111,10,111,-43xm228,-177v0,52,-30,78,-87,78r-69,0r0,99r-45,0r0,-257r114,0v56,0,87,27,87,80","w":240,"k":{"A":27,".":61,",":61}},"Q":{"d":"59,-129v-2,65,41,115,107,92r-26,-22r21,-25r32,27v41,-51,26,-172,-56,-169v-56,2,-76,42,-78,97xm260,-129v0,43,-14,76,-36,99r33,29r-22,24r-38,-32v-88,45,-189,-18,-183,-120v4,-80,43,-134,123,-134v80,0,123,56,123,134","w":273},"R":{"d":"190,-181v0,-55,-68,-36,-118,-39r0,80v50,-3,118,15,118,-41xm197,0v-15,-42,4,-106,-58,-106r-67,0r0,106r-45,0r0,-257v88,4,208,-23,208,69v0,37,-19,55,-42,66v53,3,27,91,52,122r-48,0","w":253,"k":{"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"221,-75v4,101,-170,103,-200,31v-6,-12,-9,-26,-9,-42r45,0v0,40,27,51,65,55v48,6,75,-51,33,-70v-48,-21,-133,-14,-133,-87v0,-93,155,-96,184,-29v5,10,8,23,8,36r-45,0v-2,-32,-22,-45,-55,-45v-25,0,-47,8,-47,33v-1,20,14,28,30,33v52,17,122,18,124,85","w":233},"T":{"d":"3,-257r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0r0,-39","w":213,"k":{"A":33,"y":40,"w":40,"u":33,";":30,"s":40,"r":33,".":40,"o":40,"-":46,"e":40,",":40,":":30,"c":40,"a":36}},"U":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99","w":259},"\u00da":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm136,-329r48,0r-51,51r-30,0","w":259},"\u00db":{"d":"105,-283r-33,0r38,-51r40,0r39,51r-33,0r-26,-32xm130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99","w":259},"\u00dc":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm182,-326r0,39r-41,0r0,-39r41,0xm79,-287r0,-39r41,0r0,39r-41,0","w":259},"\u00d9":{"d":"130,6v-67,0,-106,-32,-106,-99r0,-164r45,0r0,150v0,45,13,74,61,74v47,0,60,-27,60,-74r0,-150r45,0r0,164v0,67,-39,99,-105,99xm125,-334r33,51r-30,0r-51,-51r48,0","w":259},"V":{"d":"-2,-257r47,0r65,203r66,-203r46,0r-88,257r-50,0","w":219,"k":{"A":20,"y":6,"u":13,";":17,"r":13,".":46,"o":20,"i":-4,"-":20,"e":20,",":46,":":17,"a":20}},"W":{"d":"2,-257r46,0r47,197r52,-197r46,0r51,197r48,-197r46,0r-71,257r-46,0r-52,-197r-53,197r-46,0","w":339,"k":{"A":9,"u":6,";":6,"r":6,".":27,"o":6,"-":10,"e":6,",":27,":":6,"a":13}},"X":{"d":"5,-257r54,0r58,91r61,-91r50,0r-85,124r91,133r-54,0r-64,-98r-66,98r-51,0r91,-133","w":233},"Y":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101","w":233,"k":{"A":27,"v":20,"u":31,";":33,"q":37,".":40,"p":31,"o":33,"i":3,"-":40,"e":33,",":40,":":33,"a":33}},"\u0178":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101xm168,-326r0,39r-41,0r0,-39r41,0xm65,-287r0,-39r41,0r0,39r-41,0","w":233},"Z":{"d":"20,-257r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0r0,-39","w":226},"a":{"d":"53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62"},"\u00e1":{"d":"53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm106,-263r48,0r-51,51r-30,0"},"\u00e2":{"d":"75,-212r-33,0r38,-51r40,0r39,51r-33,0r-26,-32xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62"},"\u00b4":{"d":"49,-263r48,0r-51,51r-30,0","w":86},"\u00e4":{"d":"53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm152,-255r0,39r-41,0r0,-39r41,0xm49,-216r0,-39r41,0r0,39r-41,0"},"\u00e6":{"d":"269,-109v7,-54,-75,-67,-90,-20v-2,6,-4,13,-4,20r94,0xm90,-27v36,-1,51,-24,46,-66v-24,18,-85,-2,-83,42v1,19,18,24,37,24xm18,-129v-3,-68,114,-81,147,-37v25,-36,107,-30,127,6v12,20,20,45,18,78r-135,0v-7,58,80,74,93,23r41,0v-7,65,-121,88,-153,30v-24,45,-144,53,-144,-20v0,-68,78,-48,121,-71v13,-21,-7,-39,-33,-39v-24,0,-38,10,-41,30r-41,0","w":320},"\u00e0":{"d":"53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62xm95,-263r33,51r-30,0r-51,-51r48,0"},"&":{"d":"116,-169v24,-11,27,-64,-7,-64v-35,-1,-32,46,-12,62v3,3,6,7,8,10xm53,-71v0,48,62,56,83,24r7,-9r-51,-63v-18,11,-39,19,-39,48xm209,-123v-3,23,-9,46,-20,63r49,60r-50,0r-23,-29v-35,55,-160,43,-153,-42v3,-42,31,-59,59,-75v-12,-15,-26,-31,-26,-56v0,-38,24,-61,63,-61v38,0,64,23,64,61v0,35,-24,53,-47,66r40,48v4,-10,7,-20,8,-35r36,0","w":233},"\u00e5":{"d":"138,-235v0,23,-15,37,-38,37v-22,0,-37,-15,-37,-37v0,-22,15,-37,37,-37v23,0,38,15,38,37xm100,-257v-12,0,-21,11,-22,22v0,12,10,22,22,22v12,0,23,-9,22,-22v0,-12,-10,-22,-22,-22xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62"},"^":{"d":"30,-121r65,-131r26,0r65,131r-37,0r-41,-89r-41,89r-37,0","w":216},"~":{"d":"70,-122v36,0,87,48,108,0v22,30,2,62,-32,62v-37,0,-86,-51,-108,0r-13,-31v8,-16,21,-31,45,-31","w":216},"*":{"d":"7,-206r8,-23r39,15r0,-43r25,0r0,43r39,-15r9,23r-41,14r25,34r-19,14r-26,-36r-24,36r-20,-14r25,-34","w":133},"@":{"d":"101,-111v0,19,10,33,29,33v44,1,72,-86,21,-96v-31,4,-50,31,-50,63xm71,-107v0,-70,80,-127,119,-68r6,-20r25,0r-29,111v0,3,2,9,7,8v33,-6,47,-39,47,-77v0,-56,-40,-87,-96,-87v-64,0,-104,44,-104,108v0,69,38,115,107,115v35,0,63,-16,81,-36r25,0v-20,34,-57,59,-107,59v-83,0,-134,-54,-134,-139v0,-79,53,-130,132,-130v68,0,120,37,120,105v0,60,-34,100,-85,108v-13,0,-19,-10,-22,-21v-27,37,-92,17,-92,-36","w":288},"\u00e3":{"d":"124,-216v-24,0,-58,-29,-67,2r-20,0v5,-20,13,-40,37,-41v27,-1,59,31,70,-2r20,0v-4,23,-14,40,-40,41xm53,-51v3,39,87,29,83,-12r0,-30v-25,16,-87,-1,-83,42xm103,-191v40,0,73,13,74,54r0,96v-1,14,8,16,20,13r0,28v-19,8,-56,8,-57,-18v-31,34,-128,34,-128,-31v0,-69,79,-48,122,-71v15,-21,-8,-39,-34,-39v-24,0,-38,10,-41,30r-41,0v3,-45,38,-62,85,-62"},"b":{"d":"114,-27v37,0,52,-29,52,-66v0,-36,-17,-65,-52,-66v-36,-1,-53,29,-52,66v2,36,16,66,52,66xm127,5v-32,1,-54,-10,-65,-31r0,26r-39,0r0,-257r41,0r0,95v12,-16,30,-29,56,-29v58,0,87,39,87,99v0,54,-25,95,-80,97","w":219},"\\":{"d":"135,6r-40,0r-103,-269r39,0","w":126},"|":{"d":"22,-263r36,0r0,269r-36,0r0,-269","w":79},"{":{"d":"32,19v-2,-42,13,-102,-33,-100r0,-32v15,-3,33,-7,33,-27r0,-74v2,-40,33,-53,79,-49r0,32v-24,-2,-41,2,-40,25v0,48,9,107,-37,109v51,-1,34,68,38,117v1,16,19,17,39,16r0,33v-46,4,-77,-9,-79,-50","w":106},"}":{"d":"74,-143v-1,21,17,28,34,30r0,32v-17,1,-34,8,-34,26v1,57,8,122,-46,124r-33,0r0,-33v24,1,42,1,40,-25v-3,-49,-7,-105,38,-109v-51,1,-36,-66,-38,-116v-1,-17,-20,-18,-40,-17r0,-32v46,-4,79,8,79,49r0,71","w":106},"[":{"d":"26,-263r80,0r0,32r-41,0r0,267r41,0r0,33r-80,0r0,-332","w":106},"]":{"d":"81,69r-81,0r0,-33r42,0r0,-267r-42,0r0,-32r81,0r0,332","w":106},"c":{"d":"13,-91v-10,-96,118,-133,167,-63v5,8,7,18,8,30r-41,0v-3,-22,-18,-35,-42,-35v-37,0,-51,28,-51,68v0,36,14,64,49,64v25,0,41,-18,44,-43r41,0v-6,46,-35,75,-85,75v-60,-1,-84,-38,-90,-96"},"\u00e7":{"d":"13,-91v-10,-96,118,-133,167,-63v5,8,7,18,8,30r-41,0v-3,-22,-18,-35,-42,-35v-37,0,-51,28,-51,68v0,36,14,64,49,64v25,0,41,-18,44,-43r41,0v-6,46,-35,75,-85,75v-60,-1,-84,-38,-90,-96xm141,47v1,38,-54,38,-81,25r7,-14v12,4,45,12,45,-9v1,-16,-20,-16,-31,-10r-7,-7r23,-32r18,0v-5,8,-13,13,-17,22v23,-4,43,3,43,25"},"\u00b8":{"d":"84,47v1,38,-54,38,-81,25r7,-14v12,4,45,12,45,-9v1,-16,-20,-16,-31,-10r-7,-7r23,-32r18,0v-5,8,-13,13,-17,22v23,-4,43,3,43,25","w":86},"\u00a2":{"d":"96,-159v-58,7,-54,127,0,132r0,-132xm190,-70v-8,43,-28,75,-78,75r0,32r-16,0r0,-32v-54,-3,-83,-41,-83,-96v0,-58,27,-97,83,-100r0,-33r16,0r0,33v44,3,72,25,77,67r-41,0v-3,-19,-15,-34,-36,-35r0,132v22,-4,35,-19,37,-43r41,0"},":":{"d":"25,-182r50,0r0,48r-50,0r0,-48xm25,-49r50,0r0,49r-50,0r0,-49","w":100},",":{"d":"25,-49r50,0v4,53,-3,98,-49,106r0,-22v15,-3,24,-18,24,-35r-25,0r0,-49","w":100},"\u00a9":{"d":"144,-263v80,0,132,51,132,134v0,83,-52,135,-132,135v-82,0,-132,-53,-132,-135v0,-83,52,-134,132,-134xm144,-17v66,0,103,-45,103,-112v0,-66,-38,-111,-103,-111v-65,0,-103,45,-103,111v0,67,37,112,103,112xm101,-129v-9,58,77,79,87,26r24,0v-6,33,-27,56,-63,56v-50,0,-73,-33,-77,-82v-7,-82,128,-109,140,-23r-24,0v-16,-53,-92,-31,-87,23","w":288},"d":{"d":"106,-159v-37,0,-52,29,-52,68v1,36,15,64,51,64v37,0,51,-29,52,-66v1,-37,-17,-66,-51,-66xm93,-191v31,-1,49,13,63,29r0,-95r41,0r0,257r-39,0v-1,-8,2,-19,-1,-25v-9,19,-31,30,-57,30v-59,0,-86,-39,-87,-99v0,-58,26,-94,80,-97","w":219},"\u00b0":{"d":"72,-149v-32,0,-54,-22,-54,-54v0,-32,22,-54,54,-54v32,0,54,22,54,54v0,32,-22,54,-54,54xm72,-237v-20,0,-34,14,-34,34v0,20,14,34,34,34v20,0,34,-14,34,-34v0,-20,-14,-34,-34,-34","w":144},"\u00a8":{"d":"95,-255r0,39r-41,0r0,-39r41,0xm-8,-216r0,-39r41,0r0,39r-41,0","w":86},"\u00f7":{"d":"17,-73r0,-36r182,0r0,36r-182,0xm134,-165v-1,14,-11,25,-26,26v-13,0,-26,-13,-26,-26v0,-14,12,-27,26,-26v13,0,27,13,26,26xm134,-17v-1,14,-11,25,-26,26v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,27,13,26,26","w":216},"$":{"d":"109,-26v47,5,61,-68,16,-79v-5,-2,-10,-4,-16,-5r0,84xm194,-75v0,53,-34,78,-85,81r0,28r-16,0r0,-28v-53,-2,-87,-29,-87,-84r41,0v1,32,13,51,46,52r0,-87v-40,-13,-82,-27,-81,-80v1,-48,35,-67,81,-70r0,-28r16,0r0,28v48,1,77,24,79,70r-41,0v-1,-25,-13,-37,-38,-38r0,76v42,12,85,26,85,80xm93,-231v-46,-8,-53,58,-15,68v5,2,10,3,15,4r0,-72"},"\u0131":{"d":"23,0r0,-186r41,0r0,186r-41,0","w":86},"e":{"d":"13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0"},"\u00e9":{"d":"13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm106,-263r48,0r-51,51r-30,0"},"\u00ea":{"d":"75,-212r-33,0r38,-51r40,0r39,51r-33,0r-26,-32xm13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0"},"\u00eb":{"d":"13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm152,-255r0,39r-41,0r0,-39r41,0xm49,-216r0,-39r41,0r0,39r-41,0"},"\u00e8":{"d":"13,-93v-8,-109,155,-131,175,-30v3,13,4,27,2,41r-136,0v-8,58,82,75,95,24r39,0v-9,39,-37,63,-84,63v-61,0,-86,-38,-91,-98xm149,-109v4,-53,-75,-68,-91,-20v-3,6,-4,13,-4,20r95,0xm95,-263r33,51r-30,0r-51,-51r48,0"},"8":{"d":"52,-74v0,29,21,47,48,47v27,0,48,-18,48,-47v0,-27,-20,-44,-48,-44v-28,0,-48,17,-48,44xm143,-136v80,24,46,149,-43,141v-53,-5,-89,-27,-89,-79v0,-32,19,-55,46,-62v-22,-8,-34,-25,-35,-52v-1,-46,31,-69,78,-69v78,0,107,97,43,121xm140,-186v1,-23,-18,-39,-40,-39v-22,0,-41,16,-40,39v1,23,17,37,40,37v24,0,40,-13,40,-37"},"=":{"d":"199,-109r-182,0r0,-37r182,0r0,37xm199,-36r-182,0r0,-37r182,0r0,37","w":216},"!":{"d":"28,-257r45,0v2,68,-5,126,-12,185r-21,0v-7,-59,-15,-117,-12,-185xm26,-45r48,0r0,45r-48,0r0,-45","w":100},"\u00a1":{"d":"73,66r-45,0v-2,-68,5,-127,12,-186r21,0v6,60,15,117,12,186xm74,-146r-48,0r0,-45r48,0r0,45","w":100},"f":{"d":"114,-222v-17,-5,-41,-5,-39,17r0,19r35,0r0,30r-35,0r0,156r-41,0r0,-156r-31,0r0,-30r31,0v-8,-57,27,-80,80,-69r0,33","w":113,"k":{"f":6}},"5":{"d":"147,-85v0,-53,-71,-70,-89,-29r-41,0r27,-138r131,0r0,37r-100,0v-3,21,-12,45,-12,65v44,-45,134,-7,125,65v11,93,-131,122,-168,46v-5,-10,-7,-21,-7,-33r41,0v2,27,19,43,46,43v34,0,47,-22,47,-56"},"\u0192":{"d":"47,-158r33,0v7,-60,22,-122,101,-103r-6,32v-48,-14,-45,37,-53,71r36,0r-5,31r-37,0v-24,75,1,204,-116,186r5,-32v20,4,39,3,43,-18r27,-136r-33,0"},"4":{"d":"188,-60r-32,0r0,60r-39,0r0,-60r-108,0r0,-40r108,-152r39,0r0,160r32,0r0,32xm40,-92r77,0r-1,-111"},"g":{"d":"54,-94v1,35,14,62,49,62v36,0,50,-30,50,-65v0,-35,-15,-62,-50,-62v-35,0,-49,28,-49,65xm97,-191v27,-1,45,12,56,30r0,-25r41,0r0,176v11,89,-120,109,-166,53v-5,-7,-8,-16,-9,-27r41,0v3,21,21,27,45,27v43,0,53,-34,47,-76v-11,18,-30,33,-56,33v-58,-1,-84,-39,-83,-98v1,-55,29,-92,84,-93","w":213},"\u00df":{"d":"101,-231v-26,0,-37,18,-37,47r0,184r-41,0r0,-188v1,-49,30,-75,79,-75v43,0,74,22,76,65v1,28,-17,46,-37,55v32,4,49,29,49,61v0,59,-38,93,-103,86r0,-32v42,7,63,-17,62,-56v-1,-33,-29,-44,-62,-44r0,-27v30,0,50,-11,50,-39v0,-24,-12,-37,-36,-37","w":206},"`":{"d":"38,-263r33,51r-30,0r-51,-51r48,0","w":86},">":{"d":"151,-91r-134,-57r0,-37r182,81r0,26r-182,81r0,-37","w":216},"\u00ab":{"d":"18,-78r0,-40r56,-44r0,37r-34,27r34,27r0,38xm89,-78r0,-40r56,-44r0,37r-34,27r34,27r0,38","w":166},"\u00bb":{"d":"77,-118r0,40r-55,45r0,-38r34,-27r-34,-27r0,-37xm149,-118r0,40r-56,45r0,-38r34,-27r-34,-27r0,-37","w":166},"h":{"d":"108,-159v-67,1,-40,97,-45,159r-41,0r0,-257r41,0r0,95v25,-46,122,-37,122,34r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42","w":206},"-":{"d":"18,-117r104,0r0,39r-104,0r0,-39","w":140},"\u00ad":{"d":"18,-117r104,0r0,39r-104,0r0,-39","w":140},"i":{"d":"23,-186r41,0r0,186r-41,0r0,-186xm23,-257r41,0r0,39r-41,0r0,-39","w":86},"\u00ed":{"d":"23,0r0,-186r41,0r0,186r-41,0xm49,-263r48,0r-51,51r-30,0","w":86},"\u00ee":{"d":"18,-212r-33,0r38,-51r40,0r39,51r-33,0r-26,-32xm23,0r0,-186r41,0r0,186r-41,0","w":86},"\u00ef":{"d":"23,0r0,-186r41,0r0,186r-41,0xm95,-255r0,39r-41,0r0,-39r41,0xm-8,-216r0,-39r41,0r0,39r-41,0","w":86},"\u00ec":{"d":"23,0r0,-186r41,0r0,186r-41,0xm38,-263r33,51r-30,0r-51,-51r48,0","w":86},"j":{"d":"-8,40v22,5,31,-3,31,-26r0,-200r41,0r0,202v1,43,-27,65,-72,56r0,-32xm23,-257r41,0r0,39r-41,0r0,-39","w":86},"k":{"d":"23,-257r41,0r0,146r74,-75r50,0r-71,68r78,118r-50,0r-57,-90r-24,23r0,67r-41,0r0,-257","w":193},"l":{"d":"23,-257r41,0r0,257r-41,0r0,-257","w":86},"<":{"d":"199,3r-182,-81r0,-26r182,-81r0,37r-134,57r134,57r0,37","w":216},"\u00ac":{"d":"162,-109r-145,0r0,-37r182,0r0,107r-37,0r0,-70","w":216},"m":{"d":"62,-160v13,-38,96,-44,109,0v14,-18,28,-31,58,-31v91,0,57,112,63,191r-41,0r-1,-129v-1,-20,-12,-30,-33,-30v-65,0,-33,100,-40,159r-41,0r0,-120v0,-25,-8,-40,-33,-39v-62,3,-34,99,-40,159r-41,0r0,-186r38,0v1,8,-3,22,2,26","w":313},"\u00af":{"d":"-8,-223r0,-23r103,0r0,23r-103,0","w":86},"\u02c9":{"d":"-8,-223r0,-23r103,0r0,23r-103,0","w":86},"\u00b5":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-10,26,-58,44,-81,18r0,77r-41,0r0,-255r41,0r0,114v0,29,9,45,35,45","w":206},"\u03bc":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-10,26,-58,44,-81,18r0,77r-41,0r0,-255r41,0r0,114v0,29,9,45,35,45","w":206},"n":{"d":"108,-159v-67,1,-40,97,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-43,124,30r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42","w":206},"9":{"d":"143,-171v0,-30,-15,-52,-46,-52v-30,0,-44,22,-44,52v0,30,15,53,44,53v30,0,46,-22,46,-53xm188,-125v4,90,-70,167,-147,111v-14,-10,-23,-28,-24,-50r41,0v-1,35,50,46,70,20v12,-16,18,-48,18,-72v-10,18,-29,30,-54,30v-52,0,-80,-33,-80,-85v0,-53,31,-85,87,-86v73,0,85,60,89,132"},"\u00f1":{"d":"127,-216v0,0,-58,-28,-67,2r-20,0v4,-21,14,-40,37,-41v28,-1,58,31,70,-2r20,0v-4,23,-14,41,-40,41xm108,-159v-67,1,-40,97,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-43,124,30r0,128r-41,0r0,-117v0,-28,-10,-42,-36,-42","w":206},"#":{"d":"178,-76r-34,0r-11,76r-29,0r11,-76r-40,0r-11,76r-28,0r10,-76r-34,0r0,-27r38,0r7,-46r-34,0r0,-27r37,0r11,-76r29,0r-11,76r40,0r10,-76r29,0r-10,76r31,0r0,27r-35,0r-6,46r30,0r0,27xm85,-149r-6,46r40,0r6,-46r-40,0"},"o":{"d":"54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98","w":213},"\u00f3":{"d":"54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm112,-263r48,0r-51,51r-30,0","w":213},"\u00f4":{"d":"81,-212r-33,0r39,-51r40,0r39,51r-34,0r-25,-32xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98","w":213},"\u00f6":{"d":"54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm158,-255r0,39r-41,0r0,-39r41,0xm55,-216r0,-39r41,0r0,39r-41,0","w":213},"\u0153":{"d":"316,-59v-4,67,-122,88,-151,30v-12,24,-35,34,-67,34v-58,0,-85,-41,-85,-99v0,-57,31,-95,89,-97v32,0,53,11,65,31v21,-42,110,-38,132,1v11,20,19,46,19,77r-136,0v-9,59,82,74,93,23r41,0xm277,-109v6,-54,-77,-68,-91,-19v-2,6,-4,13,-4,19r95,0xm149,-94v0,-34,-13,-65,-48,-65v-35,0,-47,30,-47,65v0,37,11,67,47,67v36,0,48,-30,48,-67","w":326},"\u00f2":{"d":"54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98xm101,-263r33,51r-30,0r-51,-51r48,0","w":213},"1":{"d":"19,-210v37,0,66,-13,74,-42r33,0r0,252r-45,0r0,-178r-62,0r0,-32"},"\u00aa":{"d":"37,-170v11,25,63,13,51,-23v-14,10,-50,0,-51,23xm68,-257v25,0,50,7,51,33r0,55v-2,9,6,9,12,7r0,25v-16,4,-38,5,-39,-15v-22,32,-106,18,-82,-32v12,-25,62,-11,78,-33v1,-14,-10,-17,-22,-17v-13,0,-25,3,-25,15r-31,0v4,-27,27,-38,58,-38","w":136},"\u00ba":{"d":"69,-158v23,0,33,-16,33,-37v0,-22,-11,-39,-33,-39v-21,0,-32,17,-32,39v0,21,10,36,32,37xm69,-257v40,0,65,24,65,62v0,37,-25,62,-65,61v-40,0,-64,-24,-64,-61v0,-37,24,-62,64,-62","w":136},"\u00f8":{"d":"71,-42v40,39,107,-6,87,-70v-1,-6,-3,-12,-6,-18xm107,5v-26,-2,-46,-8,-61,-20r-23,25r-11,-10r23,-26v-47,-60,-16,-171,72,-165v27,2,46,8,61,20r23,-25r11,10r-23,25v47,60,16,172,-72,166xm143,-144v-40,-39,-107,6,-87,70v1,6,3,12,6,18","w":213},"\u00f5":{"d":"81,-255v27,-1,58,31,69,-2r20,0v-4,23,-14,41,-40,41v-19,0,-33,-12,-51,-13v-7,0,-16,8,-15,15r-21,0v5,-21,14,-40,38,-41xm54,-93v0,37,16,66,53,66v37,0,53,-29,53,-66v0,-37,-16,-66,-53,-66v-37,0,-53,29,-53,66xm201,-93v0,60,-33,98,-94,98v-61,0,-94,-38,-94,-98v0,-60,33,-98,94,-98v61,0,94,38,94,98","w":213},"p":{"d":"114,-27v37,0,52,-29,52,-66v0,-36,-17,-65,-52,-66v-36,-1,-53,29,-52,66v2,36,16,66,52,66xm127,5v-29,0,-51,-11,-63,-29r0,93r-41,0r0,-255r39,0r0,25v10,-20,31,-30,58,-30v58,0,87,39,87,99v0,54,-25,97,-80,97","w":219},"\u00b6":{"d":"11,-189v-3,-83,97,-67,177,-68r0,315r-29,0r0,-292r-42,0r0,292r-28,0r0,-182v-46,-1,-76,-22,-78,-65","w":216},"(":{"d":"103,-263v-55,85,-59,248,0,332r-34,0v-27,-45,-51,-94,-51,-166v0,-67,22,-122,51,-166r34,0","w":100},")":{"d":"-3,69v55,-85,59,-248,0,-332r34,0v27,45,51,94,51,166v0,67,-22,122,-51,166r-34,0","w":100},"%":{"d":"234,-261r27,0r-139,270r-28,0xm330,-67v0,43,-17,72,-60,72v-42,0,-61,-29,-60,-72v1,-41,18,-71,60,-71v42,0,60,29,60,71xm270,-115v-40,1,-37,96,0,97v39,-2,40,-96,0,-97xm150,-185v0,43,-19,71,-60,71v-42,0,-60,-28,-60,-71v0,-43,18,-72,60,-72v42,0,60,30,60,72xm89,-234v-39,2,-38,96,0,97v39,-1,40,-96,0,-97","w":360},".":{"d":"25,-49r50,0r0,49r-50,0r0,-49","w":100},"\u00b7":{"d":"50,-81v-36,-1,-34,-55,0,-54v16,1,26,10,27,26v0,13,-13,29,-27,28","w":100},"\u2219":{"d":"50,-81v-36,-1,-34,-55,0,-54v16,1,26,10,27,26v0,13,-13,29,-27,28","w":100},"+":{"d":"90,-182r36,0r0,73r73,0r0,36r-73,0r0,73r-36,0r0,-73r-73,0r0,-36r73,0r0,-73","w":216},"\u00b1":{"d":"90,-182r36,0r0,45r73,0r0,37r-73,0r0,45r-36,0r0,-45r-73,0r0,-37r73,0r0,-45xm17,-37r182,0r0,37r-182,0r0,-37","w":216},"q":{"d":"105,-159v-35,1,-50,30,-51,66v0,38,15,65,51,66v36,1,52,-29,52,-66v0,-38,-16,-67,-52,-66xm100,-191v28,0,46,12,58,30r0,-25r39,0r0,255r-41,0r-1,-93v-12,18,-34,29,-62,29v-55,0,-80,-41,-80,-97v0,-60,28,-97,87,-99","w":219},"?":{"d":"102,-229v-31,0,-43,23,-43,54r-41,0v1,-55,31,-88,86,-88v48,0,77,26,79,73v2,63,-66,56,-64,120r-39,0v-3,-51,25,-67,49,-92v20,-21,6,-67,-27,-67xm75,-45r48,0r0,45r-48,0r0,-45"},"\u00bf":{"d":"98,38v30,0,43,-23,43,-52r42,0v-2,54,-33,86,-87,86v-47,0,-77,-24,-78,-71v-3,-65,66,-55,63,-121r39,0v2,51,-22,70,-49,92v-18,23,-5,66,27,66xm124,-191r0,45r-48,0r0,-45r48,0"},"\"":{"d":"30,-257r37,0r0,101r-37,0r0,-101xm93,-257r37,0r0,101r-37,0r0,-101","w":159},"'":{"d":"32,-257r36,0r0,101r-36,0r0,-101","w":100},"r":{"d":"131,-150v-43,-10,-68,19,-68,61r0,89r-41,0r0,-186r38,0v1,11,-2,27,1,36v8,-26,33,-46,70,-40r0,40","w":126,"k":{"q":6,".":33,"o":6,"n":-6,"-":20,"e":6,"d":6,",":33,"c":6}},"\u00ae":{"d":"204,-158v0,26,-16,39,-39,41r42,66r-28,0r-38,-64r-23,0r0,64r-25,0r0,-150v51,0,111,-9,111,43xm180,-159v-1,-27,-36,-20,-62,-21r0,44v26,-2,62,6,62,-23xm144,-263v80,0,132,51,132,134v0,83,-52,135,-132,135v-82,0,-132,-53,-132,-135v0,-83,52,-134,132,-134xm144,-17v66,0,103,-45,103,-112v0,-66,-38,-111,-103,-111v-65,0,-103,45,-103,111v0,67,37,112,103,112","w":288},"s":{"d":"158,-94v56,56,-21,119,-97,95v-29,-8,-49,-25,-49,-61r41,0v1,23,20,30,42,33v35,4,58,-34,21,-46v-42,-13,-101,-11,-101,-65v0,-66,121,-67,147,-22v4,7,8,16,9,26r-43,0v-3,-23,-24,-24,-48,-24v-26,0,-31,34,-5,38v26,10,65,8,83,26","w":186},"\u00a7":{"d":"132,-52v16,-5,31,-27,17,-44v-17,-21,-56,-34,-80,-50v-26,5,-29,49,-2,57xm47,-166v-44,-45,16,-119,84,-92v26,10,43,29,44,63r-39,0v3,-39,-60,-49,-64,-9v19,60,121,43,121,118v0,28,-18,43,-39,52v12,12,19,23,20,46v3,76,-122,79,-142,20v-3,-9,-7,-20,-7,-32r39,0v-6,43,68,60,69,12v-16,-65,-120,-47,-125,-124v-2,-29,17,-45,39,-54"},";":{"d":"25,-49r50,0v4,53,-3,98,-49,106r0,-22v15,-3,24,-18,24,-35r-25,0r0,-49xm25,-182r50,0r0,48r-50,0r0,-48","w":100},"\u037e":{"d":"25,-49r50,0v4,53,-3,98,-49,106r0,-22v15,-3,24,-18,24,-35r-25,0r0,-49xm25,-182r50,0r0,48r-50,0r0,-48","w":100},"7":{"d":"46,0v8,-94,50,-159,97,-215r-130,0r0,-37r172,0r0,34v-49,56,-87,121,-94,218r-45,0"},"6":{"d":"57,-82v0,30,15,53,46,53v29,0,44,-23,44,-53v0,-29,-14,-51,-44,-51v-30,0,-46,21,-46,51xm12,-127v-4,-90,70,-167,147,-111v14,10,23,28,24,50r-41,0v1,-31,-41,-46,-63,-26v-18,15,-26,50,-25,78v10,-18,30,-30,54,-30v50,0,80,33,80,85v0,52,-31,85,-84,86v-74,1,-89,-58,-92,-132"},"\/":{"d":"95,-263r40,0r-104,269r-39,0","w":126},"\u00c1":{"d":"80,-102r79,0r-40,-111xm96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm126,-329r48,0r-51,51r-30,0","w":240},"\u00a3":{"d":"13,-23v25,-16,52,-55,31,-92r-33,0r0,-23r23,0v-10,-12,-17,-30,-17,-51v-2,-73,103,-94,150,-52v16,15,25,37,25,67r-42,0v-1,-33,-14,-55,-48,-55v-47,0,-46,64,-24,91r53,0r0,23r-44,0v18,35,-9,68,-30,84v38,-27,93,23,124,-11r18,28v-38,48,-122,-14,-167,20"},"t":{"d":"112,0v-42,6,-78,1,-78,-46r0,-110r-31,0r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,111v0,16,21,16,37,13r0,32","w":119},"3":{"d":"148,-74v1,-37,-29,-44,-66,-43r0,-31v32,1,56,-9,56,-39v0,-22,-16,-36,-39,-36v-30,0,-41,23,-42,52r-41,0v4,-51,29,-86,83,-86v45,0,78,22,80,67v1,29,-15,45,-36,55v28,5,46,30,46,63v0,90,-151,103,-172,25v-4,-11,-6,-23,-6,-36r41,0v0,30,16,54,48,54v27,0,48,-18,48,-45"},"2":{"d":"105,-257v85,-6,104,105,46,146v-31,22,-69,40,-88,74r123,0r0,37r-172,0v0,-88,89,-98,124,-152v19,-29,4,-73,-35,-71v-33,2,-43,28,-43,63r-41,0v1,-59,28,-93,86,-97"},"u":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45","w":206},"\u00fa":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm109,-263r48,0r-51,51r-30,0","w":206},"\u00fb":{"d":"78,-212r-33,0r39,-51r39,0r39,51r-33,0r-26,-32xm98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45","w":206},"\u00fc":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm155,-255r0,39r-41,0r0,-39r41,0xm52,-216r0,-39r41,0r0,39r-41,0","w":206},"\u00f9":{"d":"98,-27v70,1,40,-97,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-30,31,-53,31v-94,0,-65,-108,-69,-191r41,0r0,114v0,29,9,45,35,45xm98,-263r33,51r-30,0r-51,-51r48,0","w":206},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"v":{"d":"3,-186r45,0r48,143r45,-143r43,0r-67,186r-46,0","w":186,"k":{".":27,",":27}},"w":{"d":"5,-186r43,0r37,139r35,-139r42,0r34,139r38,-139r41,0r-58,186r-42,0r-35,-138r-35,138r-43,0","w":280,"k":{".":20,",":20}},"x":{"d":"72,-98r-65,-88r50,0r39,57r40,-57r48,0r-63,86r71,100r-49,0r-48,-69r-45,69r-49,0","w":193},"y":{"d":"19,37v32,12,49,-11,53,-38r-71,-185r45,0r49,139r48,-139r42,0r-82,220v-9,32,-41,46,-84,38r0,-35","w":186,"k":{".":33,",":33}},"\u00ff":{"d":"19,37v32,12,49,-11,53,-38r-71,-185r45,0r49,139r48,-139r42,0r-82,220v-9,32,-41,46,-84,38r0,-35xm145,-255r0,39r-41,0r0,-39r41,0xm42,-216r0,-39r41,0r0,39r-41,0","w":186},"\u00a5":{"d":"80,-59r-50,0r0,-24r50,0r0,-24r-50,0r0,-24r36,0r-68,-126r46,0r56,115r57,-115r45,0r-68,126r36,0r0,24r-49,0r0,24r49,0r0,24r-49,0r0,59r-41,0r0,-59"},"z":{"d":"15,-186r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0r0,-32","w":180},"0":{"d":"54,-126v0,46,4,97,46,97v43,0,46,-51,46,-97v0,-46,-3,-97,-46,-97v-42,0,-46,51,-46,97xm13,-126v0,-69,17,-131,87,-131v70,0,87,62,87,131v0,69,-17,131,-87,131v-70,0,-87,-62,-87,-131"},"A":{"d":"80,-102r79,0r-40,-111xm96,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0","w":240,"k":{"y":6,"w":6,"v":6,"Y":27,"W":9,"V":22,"T":33}},"\u00c6":{"d":"95,-100r70,0r0,-118r-13,0xm125,-257r208,0r0,39r-126,0r0,67r118,0r0,37r-118,0r0,75r128,0r0,39r-170,0r0,-66r-87,0r-30,66r-51,0","w":346},"\u00d0":{"d":"247,-129v0,78,-35,129,-113,129r-107,0r0,-114r-24,0r0,-37r24,0r0,-106r107,0v78,2,113,51,113,128xm202,-129v0,-79,-48,-98,-130,-91r0,69r71,0r0,37r-71,0r0,77v82,6,130,-12,130,-92","w":259},"\u0141":{"d":"27,-257r45,0r0,110r72,-51r0,33r-72,52r0,74r131,0r0,39r-176,0r0,-82r-27,20r0,-33r27,-19r0,-143","w":206},"\u0160":{"d":"137,-283r-40,0r-39,-51r33,0r26,32r25,-32r34,0xm221,-75v4,101,-170,103,-200,31v-6,-12,-9,-26,-9,-42r45,0v0,40,27,51,65,55v48,6,75,-51,33,-70v-48,-21,-133,-14,-133,-87v0,-93,155,-96,184,-29v5,10,8,23,8,36r-45,0v-2,-32,-22,-45,-55,-45v-25,0,-47,8,-47,33v-1,20,14,28,30,33v52,17,122,18,124,85","w":233},"\u00de":{"d":"228,-139v0,79,-74,83,-156,79r0,60r-45,0r0,-257r45,0r0,39v82,-4,156,-1,156,79xm183,-139v0,-56,-61,-40,-111,-42r0,85v51,-1,111,10,111,-43","w":240},"\u00dd":{"d":"94,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0r0,-101xm122,-329r48,0r-51,51r-30,0","w":233},"\u017d":{"d":"134,-283r-40,0r-39,-51r33,0r25,32r26,-32r33,0xm20,-257r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0r0,-39","w":226},"\u00a6":{"d":"22,-99r36,0r0,105r-36,0r0,-105xm22,-263r36,0r0,105r-36,0r0,-105","w":79},"\u00a4":{"d":"152,-54v-20,24,-83,24,-104,1r-21,21r-20,-21r21,-22v-24,-19,-24,-83,0,-102r-21,-22r21,-21r20,20v21,-20,81,-22,102,0r21,-21r22,22r-20,21v22,24,22,81,-1,104r20,21r-20,20xm49,-126v0,31,20,54,51,54v31,0,51,-23,51,-54v0,-32,-19,-54,-50,-54v-31,0,-52,22,-52,54"},"\u00f0":{"d":"104,-27v66,2,73,-123,4,-123v-37,1,-52,26,-52,62v0,34,14,60,48,61xm147,-166v-4,-16,-24,-36,-38,-47r-39,18r-18,-17r34,-17v-10,-5,-18,-9,-30,-12r27,-22v13,4,26,10,38,18r37,-18r18,17r-34,17v76,45,85,239,-41,234v-57,-2,-83,-39,-86,-96v-4,-72,76,-116,132,-75","w":213},"\u0142":{"d":"23,-115r-25,19r0,-25r25,-19r0,-117r41,0r0,85r24,-20r0,26r-24,19r0,147r-41,0r0,-115","w":86},"\u00d7":{"d":"20,-154r31,-20r57,57r57,-57r31,20r-63,63r63,63r-31,20r-57,-58r-57,58r-31,-20r62,-63","w":216},"\u00bd":{"d":"200,-261r28,0r-150,270r-29,0xm13,-229v24,0,45,-5,50,-25r25,0r0,156r-31,0r0,-110r-44,0r0,-21xm231,-161v55,-5,74,64,33,90v-17,17,-47,23,-57,46r77,0r0,25r-114,0v0,-59,57,-62,82,-96v12,-16,-1,-39,-22,-39v-20,0,-26,16,-27,35r-31,0v0,-38,22,-58,59,-61","w":300},"\u00bc":{"d":"259,0r-31,0r0,-35r-71,0r0,-29r67,-90r35,0r0,92r17,0r0,27r-17,0r0,35xm228,-62v-1,-18,2,-41,-1,-57r-42,57r43,0xm13,-229v25,0,45,-5,50,-25r25,0r0,156r-31,0r0,-110r-44,0r0,-21xm202,-261r28,0r-151,270r-28,0","w":300},"\u00b9":{"d":"13,-229v24,0,45,-5,50,-25r25,0r0,156r-31,0r0,-110r-44,0r0,-21","w":129},"\u0161":{"d":"113,-212r-40,0r-38,-51r33,0r25,32r26,-32r33,0xm158,-94v56,56,-21,119,-97,95v-29,-8,-49,-25,-49,-61r41,0v1,23,20,30,42,33v35,4,58,-34,21,-46v-42,-13,-101,-11,-101,-65v0,-66,121,-67,147,-22v4,7,8,16,9,26r-43,0v-3,-23,-24,-24,-48,-24v-26,0,-31,34,-5,38v26,10,65,8,83,26","w":186},"\u00fe":{"d":"127,5v-26,0,-53,-11,-63,-29r0,93r-41,0r0,-326r41,0r0,95v12,-16,30,-29,56,-29v58,0,87,39,87,99v0,54,-25,95,-80,97xm114,-27v37,0,52,-29,52,-66v0,-36,-17,-65,-52,-66v-36,-1,-53,29,-52,66v2,36,16,66,52,66","w":219},"\u00be":{"d":"272,0r-31,0r0,-35r-70,0r0,-29r66,-90r35,0r0,92r17,0r0,27r-17,0r0,35xm241,-62v-1,-18,2,-41,-1,-57r-42,57r43,0xm221,-261r28,0r-150,270r-28,0xm95,-146v0,-23,-21,-24,-42,-25r0,-21v19,2,35,-4,36,-22v-6,-30,-54,-20,-51,10r-29,0v2,-33,22,-49,55,-53v50,-6,74,58,31,74v53,21,26,88,-30,88v-38,0,-59,-20,-59,-56r29,0v0,18,11,31,30,31v15,0,30,-11,30,-26","w":300},"\u00b3":{"d":"95,-146v0,-22,-19,-26,-42,-25r0,-21v19,0,35,-4,36,-22v-6,-30,-54,-20,-51,10r-29,0v2,-33,22,-49,55,-53v50,-6,74,58,31,74v53,21,26,88,-30,88v-38,0,-59,-20,-59,-56r29,0v0,18,11,31,30,31v15,0,31,-11,30,-26","w":129},"\u00b2":{"d":"68,-257v55,-4,74,59,34,88v-19,14,-47,23,-58,46r77,0r0,25r-113,0v-4,-69,73,-58,85,-112v0,-15,-13,-22,-26,-22v-19,0,-26,15,-26,34r-32,0v-1,-36,24,-56,59,-59","w":129},"\u00fd":{"d":"19,37v32,12,49,-11,53,-38r-71,-185r45,0r49,139r48,-139r42,0r-82,220v-9,32,-41,46,-84,38r0,-35xm99,-263r48,0r-51,51r-30,0","w":186},"\u017e":{"d":"110,-212r-40,0r-38,-51r33,0r25,32r26,-32r33,0xm15,-186r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0r0,-32","w":180}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990 Adobe Systems Incorporated.  All Rights Reserved.Helvetica
 * is a trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1990 Adobe Systems.  All Rights Reserved.
 * This software is the property of Adobe Systems  Incorporated and its licensors,
 * and may not be reproduced, used,   displayed, modified, disclosed or transferred
 * without the express   written approval of Adobe.    The digitally encoded
 * machine readable outline data for producing  the Typefaces licensed to you is
 * copyrighted (c) 1981 Linotype AG  and/or its subsidiaries. All Rights Reserved. 
 * This data is the property of Linotype AG and/or its subsidiaries  and may not be
 * reproduced, used, displayed, modified, disclosed or   transferred without the
 * express written approval of Linotype AG   and/or its subsidiaries.  12
 * Helvetica* 63 Medium Extended 85472
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 */
Cufon.registerFont({"w":266,"face":{"font-family":"font-02","font-weight":550,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 5 5 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"7","bbox":"-35 -352 415 79.8789","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":126},"\u00a0":{"w":126},"$":{"d":"142,-32v53,8,86,-55,24,-66v-7,-2,-16,-4,-24,-5r0,71xm123,-215v-50,-8,-76,52,-21,61v7,1,13,3,21,4r0,-65xm260,-75v0,62,-58,77,-118,81r0,36r-19,0r0,-36v-65,-4,-113,-24,-117,-87r58,0v3,32,26,45,59,49r0,-75v-54,-6,-110,-13,-110,-72v0,-59,52,-73,110,-76r0,-21r19,0r0,21v55,5,102,25,110,78r-59,0v-3,-21,-25,-36,-51,-38r0,66v55,7,118,12,118,74"},"%":{"d":"87,-228v-23,1,-32,19,-32,43v0,24,9,42,32,42v24,0,33,-19,33,-42v0,-23,-9,-43,-33,-43xm242,-255r33,0r-150,261r-34,0xm280,-107v-24,0,-33,20,-33,43v0,23,9,42,33,42v23,-1,32,-19,32,-42v0,-24,-9,-43,-32,-43xm87,-115v-45,0,-68,-24,-68,-70v0,-46,23,-70,68,-70v46,0,69,25,69,70v0,45,-23,70,-69,70xm280,6v-46,0,-69,-25,-69,-70v0,-45,23,-70,69,-70v46,0,68,26,68,70v0,44,-22,70,-68,70","w":366},"&":{"d":"283,-120v-6,22,-15,43,-29,59r66,61r-68,0r-27,-26v-51,52,-203,48,-201,-46v2,-45,36,-63,69,-76v-13,-11,-27,-27,-27,-51v0,-41,35,-58,77,-58v43,0,75,18,75,56v0,33,-27,50,-52,59r59,55v10,-11,16,-28,21,-43xm143,-223v-46,-2,-26,49,-5,60v15,-10,34,-12,34,-36v0,-17,-14,-23,-29,-24xm76,-76v-2,60,92,55,119,25r-77,-72v-18,10,-41,20,-42,47","w":313},"(":{"d":"101,68v-38,-43,-71,-88,-71,-162v0,-76,33,-122,71,-163r36,0v-74,73,-74,252,0,325r-36,0","w":153},")":{"d":"53,-257v38,44,70,89,70,163v0,75,-33,121,-70,162r-36,0v72,-74,73,-251,0,-325r36,0","w":153},"*":{"d":"59,-181r-47,-17r11,-29r45,17r0,-47r31,0r0,48r44,-18r11,29r-46,17r34,37r-25,19r-34,-38r-34,38r-23,-19","w":166},"+":{"d":"90,-73r-73,0r0,-36r73,0r0,-73r36,0r0,73r73,0r0,36r-73,0r0,73r-36,0r0,-73","w":216},",":{"d":"35,-51r56,0v3,57,-3,107,-56,111r0,-21v19,-5,26,-16,27,-39r-27,0r0,-51","w":126},"-":{"d":"23,-123r127,0r0,43r-127,0r0,-43","w":173},"\u00ad":{"d":"23,-123r127,0r0,43r-127,0r0,-43","w":173},".":{"d":"35,-51r56,0r0,51r-56,0r0,-51","w":126},"\/":{"d":"107,-264r41,0r-109,271r-41,0","w":146},"0":{"d":"138,-255v78,0,113,52,113,130v0,81,-40,131,-122,131v-78,0,-113,-53,-113,-131v0,-81,40,-130,122,-130xm133,-32v50,0,66,-43,66,-93v0,-49,-16,-92,-66,-92v-49,0,-65,42,-65,92v0,51,16,93,65,93"},"1":{"d":"9,-209v44,2,80,-8,87,-44r40,0r0,253r-52,0r0,-173r-75,0r0,-36","w":180},"2":{"d":"243,-171v0,92,-129,72,-167,131r167,0r0,40r-227,0v1,-97,96,-105,157,-144v34,-22,9,-73,-35,-73v-38,0,-59,20,-62,54r-54,0v1,-64,46,-92,109,-92v61,0,112,21,112,84"},"3":{"d":"250,-77v0,102,-181,105,-223,40v-7,-11,-10,-26,-10,-43r51,0v-1,62,126,65,126,6v0,-40,-45,-41,-89,-40r0,-36v36,0,81,5,80,-30v-1,-28,-24,-37,-55,-37v-32,0,-51,16,-55,43r-52,0v-2,-103,216,-114,216,-7v-1,26,-18,39,-39,46v27,7,50,26,50,58"},"4":{"d":"159,-208r-95,115r95,0r0,-115xm14,-97r137,-156r56,0r0,160r45,0r0,38r-45,0r0,55r-48,0r0,-55r-145,0r0,-42"},"5":{"d":"194,-81v0,-59,-90,-61,-118,-31r-51,-1r24,-136r181,0r0,40r-144,0r-11,57v63,-33,173,-14,173,66v0,108,-176,118,-222,48v-6,-9,-9,-21,-10,-33r54,0v8,55,124,53,124,-10"},"6":{"d":"16,-125v0,-78,36,-129,117,-130v62,-1,101,21,109,69r-53,0v-6,-40,-82,-38,-102,-9v-10,14,-19,34,-19,58v48,-51,187,-34,180,55v-5,62,-50,87,-115,88v-84,1,-117,-50,-117,-131xm134,-127v-35,0,-60,13,-60,47v0,34,25,48,60,48v36,0,60,-14,60,-48v0,-34,-25,-47,-60,-47"},"7":{"d":"50,0v16,-91,74,-151,126,-207r-170,0r0,-42r224,0r0,43v-48,56,-101,119,-117,206r-63,0","w":240},"8":{"d":"133,6v-66,-1,-117,-19,-117,-77v0,-35,19,-58,52,-65v-24,-8,-41,-22,-41,-51v0,-55,49,-68,106,-68v58,0,106,13,106,68v0,29,-18,43,-41,51v33,8,53,30,53,65v0,57,-52,77,-118,77xm81,-184v1,24,24,32,52,32v28,0,52,-8,52,-32v0,-22,-17,-33,-52,-33v-35,0,-52,11,-52,33xm133,-116v-36,0,-61,12,-61,42v0,29,26,42,61,42v35,0,60,-12,61,-42v0,-31,-25,-42,-61,-42"},"9":{"d":"251,-124v0,78,-37,128,-118,130v-62,1,-101,-21,-109,-69r53,0v6,40,82,37,102,8v10,-15,19,-33,20,-57v-48,51,-188,34,-181,-55v5,-62,50,-87,115,-88v84,-2,118,49,118,131xm132,-122v37,1,61,-15,61,-48v0,-32,-25,-47,-61,-47v-35,0,-60,14,-60,47v0,34,24,48,60,48"},":":{"d":"35,-188r56,0r0,51r-56,0r0,-51xm35,-51r56,0r0,51r-56,0r0,-51","w":126},";":{"d":"35,-51r56,0v3,57,-3,107,-56,111r0,-21v19,-5,26,-16,27,-39r-27,0r0,-51xm35,-188r56,0r0,51r-56,0r0,-51","w":126},"\u037e":{"d":"35,-51r56,0v3,57,-3,107,-56,111r0,-21v19,-5,26,-16,27,-39r-27,0r0,-51xm35,-188r56,0r0,51r-56,0r0,-51","w":126},"<":{"d":"17,-106r182,-79r0,36r-133,58r133,58r0,36r-182,-79r0,-30","w":216},"=":{"d":"17,-149r182,0r0,36r-182,0r0,-36xm17,-69r182,0r0,36r-182,0r0,-36","w":216},">":{"d":"199,-76r-182,79r0,-36r133,-58r-133,-58r0,-36r182,79r0,30","w":216},"?":{"d":"123,-262v62,0,104,22,106,79v2,64,-74,56,-85,108r-50,0v-3,-67,81,-54,81,-111v0,-28,-25,-38,-53,-38v-32,0,-53,17,-54,50r-52,0v3,-59,43,-88,107,-88xm91,-51r56,0r0,51r-56,0r0,-51","w":253},"@":{"d":"150,-171v-29,3,-45,29,-47,58v-1,18,11,33,28,33v31,0,45,-29,47,-60v1,-16,-12,-32,-28,-31xm148,-203v21,0,34,10,42,26r6,-21r28,0r-27,113v0,6,0,9,6,9v31,-5,46,-36,46,-71v0,-60,-40,-90,-100,-90v-65,0,-105,43,-105,108v0,66,39,109,105,109v37,0,67,-13,85,-33r28,0v-20,35,-60,60,-112,60v-82,0,-138,-52,-138,-136v0,-84,57,-135,141,-135v71,0,123,40,123,111v0,59,-35,98,-88,105v-13,1,-23,-8,-23,-21v-28,40,-102,16,-98,-39v4,-53,29,-95,81,-95","w":288},"A":{"d":"186,-104r-43,-108r-45,108r88,0xm111,-257r64,0r115,257r-60,0r-27,-64r-121,0r-27,64r-58,0","w":286,"k":{"y":6,"w":6,"v":6,"Y":25,"W":13,"V":13,"T":20}},"B":{"d":"282,-76v0,49,-35,76,-88,76r-168,0r0,-257r170,0v47,-1,73,20,74,64v0,30,-15,45,-35,54v28,7,47,27,47,63xm216,-185v0,-53,-87,-25,-136,-32r0,64v49,-7,136,23,136,-32xm226,-78v0,-58,-92,-29,-146,-36r0,74v56,-6,146,22,146,-38","w":299},"C":{"d":"12,-129v-12,-147,211,-178,272,-72v6,12,11,25,12,39r-58,0v-7,-40,-36,-62,-83,-62v-59,0,-87,40,-87,100v0,56,34,89,90,91v49,1,72,-27,80,-65r58,0v-11,71,-62,106,-147,105v-88,-1,-130,-51,-137,-136","w":313},"D":{"d":"237,-128v0,-60,-27,-90,-84,-89r-73,0r0,177r76,0v56,0,82,-30,81,-88xm291,-126v0,74,-34,126,-113,126r-152,0r0,-257r139,0v88,-2,126,46,126,131","w":306},"E":{"d":"26,-257r223,0r0,40r-169,0r0,65r163,0r0,40r-163,0r0,72r172,0r0,40r-226,0r0,-257"},"F":{"d":"26,-257r214,0r0,40r-160,0r0,65r151,0r0,40r-151,0r0,112r-54,0r0,-257","w":246,"k":{"A":13,".":40,",":40}},"G":{"d":"68,-127v-10,110,165,128,178,26r-72,0r0,-40r126,0r0,141r-31,0r-8,-33v-20,24,-56,40,-98,40v-94,0,-145,-45,-151,-136v-9,-141,200,-177,271,-81v7,11,12,23,13,36r-59,0v-9,-33,-37,-49,-77,-50v-63,0,-86,36,-92,97","w":326},"H":{"d":"26,-257r54,0r0,100r160,0r0,-100r54,0r0,257r-54,0r0,-117r-160,0r0,117r-54,0r0,-257","w":320},"I":{"d":"26,-257r54,0r0,257r-54,0r0,-257","w":106},"J":{"d":"104,-33v36,0,43,-26,43,-60r0,-164r54,0r0,179v-2,57,-34,85,-96,85v-70,0,-102,-31,-100,-100r54,0v-1,36,8,60,45,60","w":226},"K":{"d":"26,-257r54,0r0,119r132,-119r74,0r-120,104r127,153r-73,0r-96,-118r-44,38r0,80r-54,0r0,-257","w":293},"L":{"d":"26,-257r54,0r0,215r157,0r0,42r-211,0r0,-257","w":240,"k":{"y":13,"Y":47,"W":27,"V":33,"T":40}},"M":{"d":"26,-257r78,0r90,199r89,-199r77,0r0,257r-50,0r1,-212r-95,212r-46,0r-95,-212r2,212r-51,0r0,-257","w":386},"N":{"d":"26,-257r62,0r154,193r0,-193r52,0r0,257r-61,0r-155,-193r0,193r-52,0r0,-257","w":320},"O":{"d":"314,-129v0,92,-56,136,-151,136v-94,0,-151,-44,-151,-136v0,-91,57,-135,151,-135v94,0,151,44,151,135xm68,-129v0,61,35,96,95,96v60,0,95,-35,95,-96v0,-60,-35,-95,-95,-95v-60,0,-95,35,-95,95","w":326},"P":{"d":"214,-177v0,-60,-81,-35,-134,-40r0,79v53,-5,134,21,134,-39xm268,-177v-2,49,-31,78,-83,79r-105,0r0,98r-54,0r0,-257v101,6,247,-31,242,80","w":280,"k":{"A":13,".":46,",":46}},"Q":{"d":"314,-129v0,45,-16,81,-43,103r35,30r-26,30r-45,-39v-20,8,-44,12,-72,12v-94,-1,-151,-44,-151,-136v0,-91,57,-135,151,-135v94,0,151,44,151,135xm68,-129v-2,72,57,109,129,91r-24,-21r25,-29r35,29v17,-17,25,-41,25,-70v-1,-60,-35,-95,-95,-95v-60,0,-94,35,-95,95","w":326},"R":{"d":"223,0v-13,-38,5,-102,-51,-102r-92,0r0,102r-54,0r0,-257v98,9,250,-35,250,70v1,34,-19,53,-43,62v52,7,26,86,49,125r-59,0xm220,-180v-1,-57,-87,-32,-140,-37r0,75v53,-6,141,22,140,-38","w":293},"S":{"d":"139,-33v39,0,80,-23,55,-57v-52,-37,-178,1,-181,-95v-3,-106,196,-97,230,-30v5,9,8,20,9,32r-59,0v-4,-30,-31,-37,-64,-41v-51,-7,-86,50,-30,63v64,16,160,2,161,85v1,111,-214,104,-246,30v-5,-11,-8,-24,-8,-37r59,0v2,37,33,50,74,50"},"T":{"d":"96,-217r-96,0r0,-40r247,0r0,40r-97,0r0,217r-54,0r0,-217","w":246,"k":{"y":27,"w":33,"u":27,"s":27,"r":27,"o":27,"i":27,"e":27,"c":27,"a":27,"A":13,";":33,":":33,".":33,"-":33,",":33}},"U":{"d":"150,7v-84,0,-126,-33,-126,-118r0,-146r54,0v9,93,-36,224,72,224v108,0,63,-132,72,-224r54,0r-1,170v-5,68,-51,94,-125,94","w":299},"V":{"d":"-6,-257r61,0r84,206r82,-206r58,0r-113,257r-57,0","w":273,"k":{"y":6,"u":6,"r":6,"o":13,"e":13,"a":13,"A":13,";":13,":":13,".":40,"-":13,",":40}},"W":{"d":"-2,-257r58,0r59,199r64,-199r56,0r65,199r59,-199r56,0r-86,257r-58,0r-65,-197r-65,197r-58,0","w":413,"k":{"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":20,"-":13,",":20}},"X":{"d":"100,-132r-97,-125r67,0r64,89r67,-89r65,0r-100,125r105,132r-68,0r-70,-95r-71,95r-66,0"},"Y":{"d":"110,-98r-113,-159r66,0r74,114r73,-114r66,0r-112,159r0,98r-54,0r0,-98","w":273,"k":{"v":6,"u":13,"q":25,"p":13,"o":27,"i":6,"e":27,"a":27,"A":25,";":20,":":20,".":46,"-":33,",":46}},"Z":{"d":"5,-39r178,-178r-165,0r0,-40r235,0r0,39r-175,176r177,0r0,42r-250,0r0,-39","w":259},"[":{"d":"37,-257r99,0r0,36r-53,0r0,253r53,0r0,36r-99,0r0,-325","w":153},"\\":{"d":"-2,-264r41,0r109,271r-41,0","w":146},"]":{"d":"71,-221r-54,0r0,-36r99,0r0,325r-99,0r0,-36r54,0r0,-253","w":153},"^":{"d":"108,-207r-50,103r-36,0r71,-145r30,0r71,145r-36,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"a":{"d":"122,-198v60,0,102,9,103,64r1,97v3,6,18,4,26,3r0,35v-25,7,-72,9,-73,-20v-37,37,-167,43,-167,-34v0,-78,111,-46,162,-75v9,-30,-23,-36,-52,-36v-33,0,-50,11,-52,32r-48,0v7,-49,44,-67,100,-66xm104,-24v43,0,78,-18,71,-71v-31,18,-107,-3,-111,41v-2,23,19,30,40,30","w":253},"b":{"d":"196,-95v0,-41,-23,-63,-64,-63v-41,0,-64,22,-64,63v0,41,22,64,64,64v43,0,64,-23,64,-64xm144,7v-35,0,-60,-14,-74,-33r0,26r-50,0r0,-261r50,0r1,98v12,-23,41,-33,73,-33v65,0,104,39,104,101v0,63,-38,101,-104,102","w":259},"c":{"d":"12,-95v-10,-122,204,-140,223,-29r-52,0v-5,-21,-27,-36,-53,-36v-42,1,-66,24,-66,65v0,39,20,64,61,64v36,1,50,-16,59,-42r52,0v-9,53,-46,80,-106,80v-73,0,-113,-34,-118,-102","w":246},"d":{"d":"128,-158v-41,0,-64,22,-64,63v0,41,22,64,64,64v43,0,64,-23,64,-64v0,-41,-23,-63,-64,-63xm116,-196v33,0,60,12,74,33r0,-98r50,0r0,261r-50,0v-1,-8,2,-20,-1,-26v-12,21,-39,33,-73,33v-66,-1,-104,-39,-104,-102v0,-62,39,-100,104,-101","w":259},"e":{"d":"66,-83v-5,61,100,70,122,27r54,0v-18,36,-53,64,-110,63v-73,0,-118,-32,-118,-101v0,-69,46,-104,115,-104v76,0,118,39,117,115r-180,0xm194,-114v-2,-55,-91,-66,-118,-25v-5,6,-8,15,-10,25r128,0","w":259},"f":{"d":"137,-227v-31,-4,-61,-4,-52,36r52,0r0,36r-52,0r0,155r-50,0r0,-155r-39,0r0,-36r39,0v-10,-68,34,-81,102,-72r0,36","w":133},"g":{"d":"127,-158v-37,0,-65,21,-65,59v0,39,28,59,69,59v37,0,64,-20,64,-60v0,-41,-31,-58,-68,-58xm116,-196v35,0,67,12,79,33r0,-29r50,0r0,186v3,88,-117,101,-190,72v-20,-8,-33,-24,-35,-49r52,0v4,24,30,28,58,28v50,0,73,-28,64,-78v-54,59,-192,31,-184,-66v4,-60,40,-97,106,-97"},"h":{"d":"129,-158v-33,2,-59,18,-59,55r0,103r-50,0r0,-261r50,0r1,99v30,-49,156,-50,156,32r0,130r-50,0v-7,-63,26,-163,-48,-158","w":246},"i":{"d":"22,-191r49,0r0,191r-49,0r0,-191xm22,-261r49,0r0,40r-49,0r0,-40","w":92},"j":{"d":"-19,34v25,3,41,-1,41,-27r0,-198r49,0r0,200v4,56,-34,69,-90,63r0,-38xm22,-261r49,0r0,40r-49,0r0,-40","w":92},"k":{"d":"20,-261r50,0r0,147r88,-77r70,0r-88,72r96,119r-67,0r-68,-87r-31,25r0,62r-50,0r0,-261","w":226},"l":{"d":"22,-261r49,0r0,261r-49,0r0,-261","w":92},"m":{"d":"270,-158v-31,2,-51,19,-52,52r0,106r-50,0v-8,-62,28,-158,-46,-158v-71,0,-49,92,-52,158r-50,0r0,-191r50,0v1,9,-2,22,1,29v23,-40,124,-50,142,1v30,-50,153,-52,153,34r0,127r-49,0v-7,-62,27,-163,-47,-158","w":386},"n":{"d":"129,-158v-33,2,-59,18,-59,55r0,103r-50,0r0,-191r50,0v1,9,-2,22,1,29v30,-49,156,-50,156,32r0,130r-50,0v-7,-63,26,-163,-48,-158","w":246},"o":{"d":"130,-160v-42,0,-66,23,-66,65v1,41,23,64,66,64v43,0,66,-23,66,-64v0,-42,-24,-65,-66,-65xm130,7v-73,0,-118,-33,-118,-102v0,-70,46,-103,118,-103v71,0,118,33,118,103v0,69,-45,102,-118,102","w":259},"p":{"d":"196,-95v0,-41,-23,-63,-64,-63v-41,0,-64,22,-64,63v0,41,22,64,64,64v43,0,64,-23,64,-64xm144,7v-35,0,-60,-14,-74,-33r0,99r-50,0r0,-264r50,0v1,9,-2,21,1,28v12,-23,41,-33,73,-33v65,0,104,39,104,101v0,63,-38,101,-104,102","w":259},"q":{"d":"128,-158v-41,0,-64,22,-64,63v0,41,22,64,64,64v43,0,64,-23,64,-64v0,-41,-23,-63,-64,-63xm116,-196v33,0,60,12,74,33r0,-28r50,0r0,264r-50,0r-1,-99v-12,21,-39,33,-73,33v-66,-1,-104,-39,-104,-102v0,-62,39,-100,104,-101","w":259},"r":{"d":"162,-145v-45,-14,-92,4,-92,53r0,92r-50,0r0,-191r50,0v1,12,-2,27,1,37v14,-29,47,-47,91,-40r0,49","w":166,"k":{".":27,"-":20,",":27}},"s":{"d":"215,-85v43,83,-86,113,-166,81v-21,-9,-38,-26,-39,-56r54,0v0,44,95,45,105,9v-16,-54,-152,4,-152,-85v0,-93,203,-79,199,4r-52,0v-1,-41,-89,-43,-97,-10v13,45,123,9,148,57","w":233},"t":{"d":"139,1v-53,8,-103,7,-103,-54r0,-102r-40,0r0,-36r40,0r0,-59r49,0r0,59r52,0r0,36r-52,0r0,87v-6,37,20,37,54,33r0,36","w":146},"u":{"d":"177,-27v-33,48,-157,51,-157,-36r0,-128r50,0v7,64,-26,164,49,160v33,-2,57,-19,58,-55r0,-105r50,0r0,191r-50,0r0,-27","w":246},"v":{"d":"0,-191r56,0r57,142r59,-142r56,0r-87,191r-54,0","w":226,"k":{".":20,",":20}},"w":{"d":"1,-191r54,0r50,140r46,-140r52,0r46,140r49,-140r54,0r-72,191r-56,0r-48,-132r-46,132r-56,0","w":353,"k":{".":20,",":20}},"x":{"d":"83,-98r-80,-93r64,0r49,62r50,-62r64,0r-80,93r86,98r-66,0r-54,-68r-55,68r-64,0","w":233},"y":{"d":"-4,-191r54,0r62,137r59,-137r53,0r-115,245v-13,22,-54,20,-88,18r0,-38v22,1,45,4,53,-14r11,-23","w":219,"k":{".":27,",":27}},"z":{"d":"8,-36r128,-117r-121,0r0,-38r192,0r0,34r-131,119r136,0r0,38r-204,0r0,-36","w":219},"{":{"d":"64,-95v68,7,-9,135,70,127r0,36v-45,3,-82,-2,-82,-45v0,-41,10,-97,-31,-99r0,-36v65,-4,-5,-145,72,-145r41,0r0,36v-75,-17,-2,118,-70,126","w":153},"|":{"d":"21,-264r38,0r0,271r-38,0r0,-271","w":79},"}":{"d":"19,-221r0,-36v46,-3,83,2,83,46v0,42,-10,97,30,99r0,36v-65,3,7,145,-71,144r-42,0r0,-36v74,17,3,-116,70,-127v-70,-11,8,-140,-70,-126","w":153},"~":{"d":"24,-90v14,-43,75,-29,105,-9v23,15,39,-7,48,-23r15,29v-14,40,-70,31,-101,10v-22,-15,-47,4,-52,23","w":216},"\u00a1":{"d":"35,66v-2,-66,5,-123,10,-182r36,0r10,113r0,69r-56,0xm35,-191r56,0r0,51r-56,0r0,-51","w":126},"\u00a2":{"d":"127,-159v-49,2,-68,66,-41,105v8,12,22,19,41,22r0,-127xm22,-98v0,-64,42,-94,105,-99r0,-30r18,0r0,29v51,4,92,24,99,74r-51,0v-5,-19,-24,-35,-48,-36r0,128v28,-3,41,-21,49,-43r51,0v-8,52,-44,78,-100,81r0,37r-18,0r0,-37v-64,-6,-105,-37,-105,-104"},"\u00a3":{"d":"17,-31v26,-11,48,-47,30,-80r-30,0r0,-27r20,0v-45,-95,91,-150,175,-99v21,13,34,34,34,69r-54,0v-1,-31,-23,-46,-54,-47v-46,-2,-69,40,-47,77r72,0r0,27r-62,0v9,31,-8,59,-26,70v31,-18,70,2,105,2v22,0,40,-8,55,-17r15,41v-52,50,-158,-19,-212,21"},"\u00a5":{"d":"107,-50r-62,0r0,-28r62,0v1,-13,0,-24,-7,-30r-55,0r0,-27r36,0r-80,-114r65,0r67,106r68,-106r64,0r-80,114r37,0r0,27r-56,0v-7,6,-8,17,-7,30r63,0r0,28r-63,0r0,50r-52,0r0,-50"},"\u0192":{"d":"61,-140r46,0v11,-61,17,-130,104,-114v8,1,8,0,16,1r-7,36v-30,-8,-55,6,-55,36r-9,41r47,0r-6,27r-46,0v-16,57,-12,134,-47,171v-17,18,-56,16,-88,12r7,-35v35,8,50,-8,56,-39r22,-109r-46,0"},"\u00a7":{"d":"234,0v1,87,-155,85,-190,32v-7,-9,-11,-21,-14,-36r52,0v4,30,31,36,68,36v31,0,42,-36,13,-49v-56,-24,-144,-21,-149,-96v-2,-26,17,-46,38,-52v-10,-9,-16,-20,-16,-36v-1,-82,154,-79,183,-26v6,9,9,19,10,32r-52,0v3,-42,-88,-47,-92,-7v2,17,21,23,34,26v50,24,134,19,134,87v0,29,-15,42,-37,53v11,9,18,17,18,36xm187,-53v31,-14,14,-61,-16,-60r-91,-32v-23,7,-28,42,-2,52v36,13,73,26,109,40"},"'":{"d":"45,-257r36,0r0,111r-36,0r0,-111","w":126},"\u00ab":{"d":"27,-125r68,-50r0,42r-42,31r42,31r0,43r-68,-50r0,-47xm113,-125r68,-50r0,42r-42,31r42,31r0,43r-68,-50r0,-47","w":213},"\u00b7":{"d":"63,-73v-45,-1,-38,-64,0,-64v18,0,32,13,32,32v-1,19,-12,32,-32,32","w":126},"\u2219":{"d":"63,-73v-45,-1,-38,-64,0,-64v18,0,32,13,32,32v-1,19,-12,32,-32,32","w":126},"\u00b6":{"d":"8,-189v0,-87,104,-65,186,-68r0,325r-36,0r0,-293r-37,0r0,293r-36,0r0,-189v-44,0,-77,-24,-77,-68","w":216},"\u00bb":{"d":"186,-78r-68,50r0,-43r43,-31r-43,-30r0,-42r68,49r0,47xm100,-78r-68,50r0,-43r43,-31r-43,-30r0,-42r68,49r0,47","w":213},"\u00bf":{"d":"24,-8v-2,-64,74,-56,85,-108r50,0v3,67,-81,55,-81,111v0,28,24,38,54,37v32,0,52,-16,53,-49r52,0v-3,59,-43,89,-107,88v-60,-1,-104,-22,-106,-79xm106,-191r56,0r0,51r-56,0r0,-51","w":253},"`":{"d":"73,-217r-42,0r-51,-51r61,0","w":86},"\u00b4":{"d":"45,-268r62,0r-51,51r-43,0","w":86},"\u00af":{"d":"-35,-259r157,0r0,32r-157,0r0,-32","w":86},"\u02c9":{"d":"-35,-259r157,0r0,32r-157,0r0,-32","w":86},"\u00a8":{"d":"-28,-257r49,0r0,40r-49,0r0,-40xm66,-257r49,0r0,40r-49,0r0,-40","w":86},"\u00b8":{"d":"50,45v-1,-20,-32,-1,-36,-15r18,-30r21,0r-12,18v23,-3,47,2,47,25v0,36,-56,34,-89,24r5,-16v12,4,43,12,46,-6","w":86},"\u00c6":{"d":"143,-257r247,0r0,40r-149,0r0,65r145,0r0,40r-145,0r0,72r151,0r0,40r-201,0r0,-67r-101,0r-40,67r-58,0xm191,-217r-17,0r-63,112r80,0r0,-112","w":406},"\u00aa":{"d":"161,-135v-15,4,-46,7,-48,-12v-24,19,-110,27,-109,-21v1,-49,72,-27,105,-45v9,-17,-17,-22,-33,-22v-22,0,-33,7,-34,20r-31,0v3,-32,30,-40,65,-40v38,0,66,5,67,39v1,19,-3,44,2,60r16,0r0,21xm55,-152v32,1,60,-6,56,-42v-19,12,-70,-1,-73,24v-1,11,8,16,17,18","w":164},"\u00d8":{"d":"163,-224v-83,-5,-117,88,-79,152r145,-130v-16,-13,-38,-20,-66,-22xm163,-33v82,4,117,-86,80,-152r-145,130v15,13,37,21,65,22xm163,7v-45,1,-78,-10,-103,-29r-35,32r-14,-17r33,-29v-21,-22,-32,-54,-32,-93v0,-91,57,-134,151,-135v44,0,78,11,103,29r35,-31r14,16r-33,30v20,21,32,51,32,91v-2,92,-56,135,-151,136","w":326},"\u0152":{"d":"143,-33v35,0,59,-20,65,-49r0,-101v-9,-22,-31,-41,-64,-41v-54,0,-76,42,-76,97v0,52,21,94,75,94xm132,-264v36,0,61,12,77,30r0,-23r191,0r0,40r-143,0r0,65r138,0r0,40r-138,0r0,72r145,0r0,40r-193,0v-1,-8,2,-19,-1,-25v-15,20,-43,32,-77,32v-78,0,-119,-53,-119,-136v0,-79,40,-133,120,-135","w":420},"\u00ba":{"d":"85,-230v-24,0,-41,12,-41,36v0,24,16,36,41,36v25,0,39,-12,40,-36v0,-24,-17,-36,-40,-36xm85,-132v-45,0,-77,-18,-77,-62v0,-43,31,-61,77,-61v45,0,76,18,76,61v0,44,-32,62,-76,62","w":168},"\u00e6":{"d":"216,-83v-10,68,100,70,117,27r50,0v-16,39,-51,63,-108,63v-40,0,-66,-14,-83,-37v-31,45,-180,62,-180,-24v0,-70,92,-52,151,-65v8,-2,9,-7,10,-17v-2,-43,-105,-38,-105,4r-47,0v0,-79,139,-83,183,-39v17,-18,43,-27,75,-27v71,0,108,42,107,115r-170,0xm336,-114v2,-55,-91,-67,-113,-23v-4,6,-6,14,-7,23r120,0xm103,-27v43,-3,74,-17,71,-64v-28,11,-78,4,-106,20v-17,24,5,46,35,44","w":399},"\u0131":{"d":"22,-191r49,0r0,191r-49,0r0,-191","w":92},"\u00f8":{"d":"175,-146v-45,-34,-131,-3,-109,70v2,6,4,12,8,18xm12,-95v-7,-101,128,-126,198,-81r27,-25r12,14r-26,23v16,16,25,40,25,69v0,69,-45,102,-118,102v-33,0,-60,-8,-79,-21r-29,25r-11,-14r26,-23v-16,-17,-23,-39,-25,-69xm86,-45v46,34,131,3,108,-70v-2,-6,-5,-11,-8,-17","w":259},"\u0153":{"d":"286,-198v71,0,108,42,107,115r-167,0v-5,61,91,75,113,27r50,0v-14,37,-49,63,-104,63v-38,0,-65,-15,-81,-35v-17,22,-46,35,-84,35v-69,0,-108,-35,-108,-103v0,-66,41,-101,109,-102v40,0,68,11,85,35v17,-22,43,-35,80,-35xm123,-162v-38,0,-60,24,-61,64v-1,44,20,68,60,69v44,1,64,-27,64,-66v0,-40,-21,-67,-63,-67xm343,-114v1,-47,-68,-65,-99,-36v-9,9,-15,21,-18,36r117,0","w":406},"\u00df":{"d":"124,-226v-38,-1,-54,16,-54,54r0,172r-50,0r0,-189v2,-56,46,-75,103,-75v53,0,101,15,101,69v0,27,-16,42,-36,50v30,6,49,28,49,65v0,70,-66,94,-135,80r0,-36v40,6,83,1,83,-44v0,-42,-38,-45,-80,-44r0,-34v35,1,67,-1,67,-34v0,-25,-21,-34,-48,-34","w":253},"\u00f7":{"d":"17,-109r182,0r0,36r-182,0r0,-36xm108,13v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30v15,0,30,15,30,30v0,15,-15,30,-30,30xm108,-135v-15,0,-30,-15,-30,-30v0,-16,14,-30,30,-30v16,0,30,14,30,30v0,15,-15,30,-30,30","w":216},"\u00ae":{"d":"204,-157v-1,25,-14,38,-37,40r40,64r-30,0r-37,-63r-20,0r0,63r-27,0r0,-147v50,1,113,-10,111,43xm177,-159v-1,-24,-32,-19,-57,-20r0,42v24,-2,59,6,57,-22xm144,7v-81,0,-132,-54,-132,-136v0,-81,52,-135,132,-135v80,0,132,54,132,135v0,82,-51,136,-132,136xm144,-235v-62,0,-100,41,-100,106v0,65,38,107,100,107v62,0,100,-42,100,-107v0,-65,-38,-106,-100,-106","w":288},"\u00e7":{"d":"125,-31v36,1,50,-16,59,-42r52,0v-10,53,-46,80,-108,80r-7,11v23,-3,47,2,47,25v0,36,-56,34,-89,24r5,-16v12,4,43,12,46,-6v-1,-20,-32,-1,-36,-15r14,-24v-58,-7,-91,-39,-96,-101v-9,-122,204,-140,223,-29r-52,0v-5,-21,-27,-36,-53,-36v-42,1,-66,24,-66,65v0,39,20,64,61,64","w":246},"\u00b1":{"d":"17,-130r75,0r0,-52r32,0r0,52r75,0r0,32r-75,0r0,53r-32,0r0,-53r-75,0r0,-32xm17,-32r182,0r0,32r-182,0r0,-32","w":216},"\u00c7":{"d":"158,-33v49,1,72,-27,80,-65r58,0v-12,66,-56,103,-134,105r-8,11v23,-3,48,1,47,25v-2,36,-56,34,-89,24r6,-16v12,4,42,12,45,-6v-1,-20,-32,-1,-36,-15r14,-23v-82,-5,-122,-53,-129,-136v-13,-147,211,-178,272,-72v6,12,11,25,12,39r-58,0v-7,-40,-36,-62,-83,-62v-59,0,-87,40,-87,100v0,56,34,89,90,91","w":313},"\u00a9":{"d":"144,7v-81,0,-132,-54,-132,-136v0,-81,52,-135,132,-135v80,0,132,54,132,135v0,82,-51,136,-132,136xm144,-235v-62,0,-100,41,-100,106v0,65,38,107,100,107v62,0,100,-42,100,-107v0,-65,-38,-106,-100,-106xm99,-129v-6,53,74,76,82,24r30,0v-5,32,-30,57,-64,57v-49,0,-70,-32,-75,-81v-9,-88,125,-115,138,-26r-29,0v-2,-19,-16,-29,-37,-29v-30,0,-42,23,-45,55","w":288},"\u00ac":{"d":"163,-113r-146,0r0,-36r182,0r0,110r-36,0r0,-74","w":216},"\u00b0":{"d":"72,-152v-30,0,-51,-19,-51,-51v0,-33,21,-52,51,-52v30,0,51,19,51,52v0,32,-21,51,-51,51xm72,-233v-15,0,-29,14,-29,30v0,16,14,29,29,29v15,0,29,-13,29,-29v0,-16,-14,-30,-29,-30","w":144},"\u00b5":{"d":"177,-27v-19,26,-77,49,-107,21r0,79r-50,0r0,-264r50,0v7,64,-26,164,49,160v33,-2,57,-19,58,-55r0,-105r50,0r0,191r-50,0r0,-27","w":246},"\u03bc":{"d":"177,-27v-19,26,-77,49,-107,21r0,79r-50,0r0,-264r50,0v7,64,-26,164,49,160v33,-2,57,-19,58,-55r0,-105r50,0r0,191r-50,0r0,-27","w":246},"#":{"d":"84,-75r-11,75r-31,0r10,-75r-32,0r0,-29r36,0r6,-42r-32,0r0,-29r36,0r10,-75r32,0r-10,75r34,0r11,-75r31,0r-10,75r32,0r0,29r-36,0r-6,42r32,0r0,29r-36,0r-10,75r-32,0r10,-75r-34,0xm88,-104r34,0r6,-42r-34,0","w":216},"\u00c1":{"d":"186,-104r-43,-108r-45,108r88,0xm111,-257r64,0r115,257r-60,0r-27,-64r-121,0r-27,64r-58,0xm145,-324r62,0r-51,51r-43,0","w":286},"\u00c2":{"d":"223,-273r-49,0r-31,-30r-30,30r-49,0r49,-51r61,0xm186,-104r-43,-108r-45,108r88,0xm111,-257r64,0r115,257r-60,0r-27,-64r-121,0r-27,64r-58,0","w":286},"\u00c4":{"d":"186,-104r-43,-108r-45,108r88,0xm111,-257r64,0r115,257r-60,0r-27,-64r-121,0r-27,64r-58,0xm72,-313r49,0r0,40r-49,0r0,-40xm166,-313r49,0r0,40r-49,0r0,-40","w":286},"\u00c0":{"d":"186,-104r-43,-108r-45,108r88,0xm111,-257r64,0r115,257r-60,0r-27,-64r-121,0r-27,64r-58,0xm173,-273r-42,0r-51,-51r61,0","w":286},"\u00c5":{"d":"187,-309v4,48,-68,58,-83,17v-10,-30,8,-60,40,-60v26,1,41,18,43,43xm144,-331v-13,0,-23,10,-23,22v0,12,10,23,23,23v13,0,22,-10,22,-23v0,-12,-9,-23,-22,-22xm186,-104r-43,-108r-45,108r88,0xm111,-257r64,0r115,257r-60,0r-27,-64r-121,0r-27,64r-58,0","w":286},"\u00c3":{"d":"180,-273v-32,0,-75,-35,-90,-1r-27,0v6,-27,18,-46,50,-46v29,0,72,34,85,0r26,0v-5,25,-13,47,-44,47xm186,-104r-43,-108r-45,108r88,0xm111,-257r64,0r115,257r-60,0r-27,-64r-121,0r-27,64r-58,0","w":286},"\u00c9":{"d":"26,-257r223,0r0,40r-169,0r0,65r163,0r0,40r-163,0r0,72r172,0r0,40r-226,0r0,-257xm135,-324r62,0r-51,51r-43,0"},"\u00ca":{"d":"213,-273r-50,0r-30,-30r-30,30r-49,0r49,-51r60,0xm26,-257r223,0r0,40r-169,0r0,65r163,0r0,40r-163,0r0,72r172,0r0,40r-226,0r0,-257"},"\u00cb":{"d":"26,-257r223,0r0,40r-169,0r0,65r163,0r0,40r-163,0r0,72r172,0r0,40r-226,0r0,-257xm62,-313r49,0r0,40r-49,0r0,-40xm156,-313r49,0r0,40r-49,0r0,-40"},"\u00c8":{"d":"26,-257r223,0r0,40r-169,0r0,65r163,0r0,40r-163,0r0,72r172,0r0,40r-226,0r0,-257xm163,-273r-42,0r-51,-51r61,0"},"\u00cd":{"d":"26,-257r54,0r0,257r-54,0r0,-257xm55,-324r62,0r-51,51r-43,0","w":106},"\u00ce":{"d":"133,-273r-49,0r-31,-30r-30,30r-49,0r49,-51r61,0xm26,-257r54,0r0,257r-54,0r0,-257","w":106},"\u00cf":{"d":"26,-257r54,0r0,257r-54,0r0,-257xm-18,-313r49,0r0,40r-49,0r0,-40xm76,-313r49,0r0,40r-49,0r0,-40","w":106},"\u00cc":{"d":"26,-257r54,0r0,257r-54,0r0,-257xm83,-273r-42,0r-51,-51r61,0","w":106},"\u00d1":{"d":"197,-273v-33,0,-76,-35,-91,-1r-26,0v3,-51,62,-50,102,-33v16,7,30,2,32,-13r26,0v-5,25,-12,47,-43,47xm26,-257r62,0r154,193r0,-193r52,0r0,257r-61,0r-155,-193r0,193r-52,0r0,-257","w":320},"\u00d3":{"d":"314,-129v0,92,-56,136,-151,136v-94,0,-151,-44,-151,-136v0,-91,57,-135,151,-135v94,0,151,44,151,135xm68,-129v0,61,35,96,95,96v60,0,95,-35,95,-96v0,-60,-35,-95,-95,-95v-60,0,-95,35,-95,95xm165,-324r62,0r-51,51r-43,0","w":326},"\u00d4":{"d":"243,-273r-50,0r-30,-30r-30,30r-49,0r49,-51r60,0xm314,-129v0,92,-56,136,-151,136v-94,0,-151,-44,-151,-136v0,-91,57,-135,151,-135v94,0,151,44,151,135xm68,-129v0,61,35,96,95,96v60,0,95,-35,95,-96v0,-60,-35,-95,-95,-95v-60,0,-95,35,-95,95","w":326},"\u00d6":{"d":"314,-129v0,92,-56,136,-151,136v-94,0,-151,-44,-151,-136v0,-91,57,-135,151,-135v94,0,151,44,151,135xm68,-129v0,61,35,96,95,96v60,0,95,-35,95,-96v0,-60,-35,-95,-95,-95v-60,0,-95,35,-95,95xm92,-313r49,0r0,40r-49,0r0,-40xm186,-313r49,0r0,40r-49,0r0,-40","w":326},"\u00d2":{"d":"314,-129v0,92,-56,136,-151,136v-94,0,-151,-44,-151,-136v0,-91,57,-135,151,-135v94,0,151,44,151,135xm68,-129v0,61,35,96,95,96v60,0,95,-35,95,-96v0,-60,-35,-95,-95,-95v-60,0,-95,35,-95,95xm193,-273r-42,0r-51,-51r61,0","w":326},"\u00d5":{"d":"200,-273v-32,0,-75,-35,-91,-1r-26,0v3,-51,62,-50,102,-33v16,7,30,2,32,-13r26,0v-5,25,-12,47,-43,47xm314,-129v0,92,-56,136,-151,136v-94,0,-151,-44,-151,-136v0,-91,57,-135,151,-135v94,0,151,44,151,135xm68,-129v0,61,35,96,95,96v60,0,95,-35,95,-96v0,-60,-35,-95,-95,-95v-60,0,-95,35,-95,95","w":326},"\u00da":{"d":"150,7v-84,0,-126,-33,-126,-118r0,-146r54,0v9,93,-36,224,72,224v108,0,63,-132,72,-224r54,0r-1,170v-5,68,-51,94,-125,94xm152,-324r62,0r-51,51r-43,0","w":299},"\u00db":{"d":"230,-273r-50,0r-30,-30r-30,30r-50,0r50,-51r60,0xm150,7v-84,0,-126,-33,-126,-118r0,-146r54,0v9,93,-36,224,72,224v108,0,63,-132,72,-224r54,0r-1,170v-5,68,-51,94,-125,94","w":299},"\u00dc":{"d":"150,7v-84,0,-126,-33,-126,-118r0,-146r54,0v9,93,-36,224,72,224v108,0,63,-132,72,-224r54,0r-1,170v-5,68,-51,94,-125,94xm79,-313r49,0r0,40r-49,0r0,-40xm173,-313r49,0r0,40r-49,0r0,-40","w":299},"\u00d9":{"d":"150,7v-84,0,-126,-33,-126,-118r0,-146r54,0v9,93,-36,224,72,224v108,0,63,-132,72,-224r54,0r-1,170v-5,68,-51,94,-125,94xm180,-273r-42,0r-51,-51r61,0","w":299},"\u0178":{"d":"110,-98r-113,-159r66,0r74,114r73,-114r66,0r-112,159r0,98r-54,0r0,-98xm66,-313r49,0r0,40r-49,0r0,-40xm160,-313r49,0r0,40r-49,0r0,-40","w":273},"\u00e1":{"d":"122,-198v60,0,102,9,103,64r1,97v3,6,18,4,26,3r0,35v-25,7,-72,9,-73,-20v-37,37,-167,43,-167,-34v0,-78,111,-46,162,-75v9,-30,-23,-36,-52,-36v-33,0,-50,11,-52,32r-48,0v7,-49,44,-67,100,-66xm104,-24v43,0,78,-18,71,-71v-31,18,-107,-3,-111,41v-2,23,19,30,40,30xm129,-268r62,0r-51,51r-43,0","w":253},"\u00e2":{"d":"207,-217r-50,0r-30,-30r-30,30r-50,0r50,-51r60,0xm122,-198v60,0,102,9,103,64r1,97v3,6,18,4,26,3r0,35v-25,7,-72,9,-73,-20v-37,37,-167,43,-167,-34v0,-78,111,-46,162,-75v9,-30,-23,-36,-52,-36v-33,0,-50,11,-52,32r-48,0v7,-49,44,-67,100,-66xm104,-24v43,0,78,-18,71,-71v-31,18,-107,-3,-111,41v-2,23,19,30,40,30","w":253},"\u00e4":{"d":"122,-198v60,0,102,9,103,64r1,97v3,6,18,4,26,3r0,35v-25,7,-72,9,-73,-20v-37,37,-167,43,-167,-34v0,-78,111,-46,162,-75v9,-30,-23,-36,-52,-36v-33,0,-50,11,-52,32r-48,0v7,-49,44,-67,100,-66xm104,-24v43,0,78,-18,71,-71v-31,18,-107,-3,-111,41v-2,23,19,30,40,30xm56,-257r49,0r0,40r-49,0r0,-40xm150,-257r49,0r0,40r-49,0r0,-40","w":253},"\u00e0":{"d":"122,-198v60,0,102,9,103,64r1,97v3,6,18,4,26,3r0,35v-25,7,-72,9,-73,-20v-37,37,-167,43,-167,-34v0,-78,111,-46,162,-75v9,-30,-23,-36,-52,-36v-33,0,-50,11,-52,32r-48,0v7,-49,44,-67,100,-66xm104,-24v43,0,78,-18,71,-71v-31,18,-107,-3,-111,41v-2,23,19,30,40,30xm157,-217r-42,0r-51,-51r61,0","w":253},"\u00e5":{"d":"127,-209v-26,0,-43,-17,-43,-43v0,-27,17,-44,43,-44v26,0,44,18,44,44v0,25,-17,43,-44,43xm127,-275v-12,0,-23,11,-23,23v0,12,10,22,23,22v13,0,23,-10,23,-22v0,-12,-11,-23,-23,-23xm122,-198v60,0,102,9,103,64r1,97v3,6,18,4,26,3r0,35v-25,7,-72,9,-73,-20v-37,37,-167,43,-167,-34v0,-78,111,-46,162,-75v9,-30,-23,-36,-52,-36v-33,0,-50,11,-52,32r-48,0v7,-49,44,-67,100,-66xm104,-24v43,0,78,-18,71,-71v-31,18,-107,-3,-111,41v-2,23,19,30,40,30","w":253},"\u00e3":{"d":"163,-217v-32,0,-76,-35,-90,0r-26,0v1,-53,62,-52,102,-34v16,7,30,2,32,-13r26,0v-5,25,-12,47,-44,47xm122,-198v60,0,102,9,103,64r1,97v3,6,18,4,26,3r0,35v-25,7,-72,9,-73,-20v-37,37,-167,43,-167,-34v0,-78,111,-46,162,-75v9,-30,-23,-36,-52,-36v-33,0,-50,11,-52,32r-48,0v7,-49,44,-67,100,-66xm104,-24v43,0,78,-18,71,-71v-31,18,-107,-3,-111,41v-2,23,19,30,40,30","w":253},"\u00e9":{"d":"66,-83v-5,61,100,70,122,27r54,0v-18,36,-53,64,-110,63v-73,0,-118,-32,-118,-101v0,-69,46,-104,115,-104v76,0,118,39,117,115r-180,0xm194,-114v-2,-55,-91,-66,-118,-25v-5,6,-8,15,-10,25r128,0xm132,-268r62,0r-51,51r-43,0","w":259},"\u00ea":{"d":"210,-217r-50,0r-30,-30r-30,30r-50,0r50,-51r60,0xm66,-83v-5,61,100,70,122,27r54,0v-18,36,-53,64,-110,63v-73,0,-118,-32,-118,-101v0,-69,46,-104,115,-104v76,0,118,39,117,115r-180,0xm194,-114v-2,-55,-91,-66,-118,-25v-5,6,-8,15,-10,25r128,0","w":259},"\u00eb":{"d":"66,-83v-5,61,100,70,122,27r54,0v-18,36,-53,64,-110,63v-73,0,-118,-32,-118,-101v0,-69,46,-104,115,-104v76,0,118,39,117,115r-180,0xm194,-114v-2,-55,-91,-66,-118,-25v-5,6,-8,15,-10,25r128,0xm59,-257r49,0r0,40r-49,0r0,-40xm153,-257r49,0r0,40r-49,0r0,-40","w":259},"\u00e8":{"d":"66,-83v-5,61,100,70,122,27r54,0v-18,36,-53,64,-110,63v-73,0,-118,-32,-118,-101v0,-69,46,-104,115,-104v76,0,118,39,117,115r-180,0xm194,-114v-2,-55,-91,-66,-118,-25v-5,6,-8,15,-10,25r128,0xm160,-217r-42,0r-51,-51r61,0","w":259},"\u00ed":{"d":"22,-191r49,0r0,191r-49,0r0,-191xm48,-268r62,0r-51,51r-43,0","w":92},"\u00ee":{"d":"126,-217r-49,0r-31,-30r-29,30r-50,0r50,-51r60,0xm22,-191r49,0r0,191r-49,0r0,-191","w":92},"\u00ef":{"d":"22,-191r49,0r0,191r-49,0r0,-191xm-25,-257r49,0r0,40r-49,0r0,-40xm69,-257r49,0r0,40r-49,0r0,-40","w":92},"\u00ec":{"d":"22,-191r49,0r0,191r-49,0r0,-191xm76,-217r-42,0r-51,-51r61,0","w":92},"\u00f1":{"d":"160,-217v-32,0,-76,-35,-90,0r-26,0v1,-53,62,-52,102,-34v16,7,29,1,32,-13r26,0v-5,25,-12,47,-44,47xm129,-158v-33,2,-59,18,-59,55r0,103r-50,0r0,-191r50,0v1,9,-2,22,1,29v30,-49,156,-50,156,32r0,130r-50,0v-7,-63,26,-163,-48,-158","w":246},"\u00f3":{"d":"130,-160v-42,0,-66,23,-66,65v1,41,23,64,66,64v43,0,66,-23,66,-64v0,-42,-24,-65,-66,-65xm130,7v-73,0,-118,-33,-118,-102v0,-70,46,-103,118,-103v71,0,118,33,118,103v0,69,-45,102,-118,102xm132,-268r62,0r-51,51r-43,0","w":259},"\u00f4":{"d":"210,-217r-50,0r-30,-30r-30,30r-50,0r50,-51r60,0xm130,-160v-42,0,-66,23,-66,65v1,41,23,64,66,64v43,0,66,-23,66,-64v0,-42,-24,-65,-66,-65xm130,7v-73,0,-118,-33,-118,-102v0,-70,46,-103,118,-103v71,0,118,33,118,103v0,69,-45,102,-118,102","w":259},"\u00f6":{"d":"130,-160v-42,0,-66,23,-66,65v1,41,23,64,66,64v43,0,66,-23,66,-64v0,-42,-24,-65,-66,-65xm130,7v-73,0,-118,-33,-118,-102v0,-70,46,-103,118,-103v71,0,118,33,118,103v0,69,-45,102,-118,102xm59,-257r49,0r0,40r-49,0r0,-40xm153,-257r49,0r0,40r-49,0r0,-40","w":259},"\u00f2":{"d":"130,-160v-42,0,-66,23,-66,65v1,41,23,64,66,64v43,0,66,-23,66,-64v0,-42,-24,-65,-66,-65xm130,7v-73,0,-118,-33,-118,-102v0,-70,46,-103,118,-103v71,0,118,33,118,103v0,69,-45,102,-118,102xm160,-217r-42,0r-51,-51r61,0","w":259},"\u00f5":{"d":"167,-217v-33,0,-77,-35,-91,0r-26,0v2,-52,62,-53,102,-34v16,7,30,2,32,-13r26,0v-5,25,-12,47,-43,47xm130,-160v-42,0,-66,23,-66,65v1,41,23,64,66,64v43,0,66,-23,66,-64v0,-42,-24,-65,-66,-65xm130,7v-73,0,-118,-33,-118,-102v0,-70,46,-103,118,-103v71,0,118,33,118,103v0,69,-45,102,-118,102","w":259},"\u00fa":{"d":"177,-27v-33,48,-157,51,-157,-36r0,-128r50,0v7,64,-26,164,49,160v33,-2,57,-19,58,-55r0,-105r50,0r0,191r-50,0r0,-27xm125,-268r62,0r-51,51r-43,0","w":246},"\u00fb":{"d":"203,-217r-49,0r-31,-30r-29,30r-50,0r50,-51r60,0xm177,-27v-33,48,-157,51,-157,-36r0,-128r50,0v7,64,-26,164,49,160v33,-2,57,-19,58,-55r0,-105r50,0r0,191r-50,0r0,-27","w":246},"\u00fc":{"d":"177,-27v-33,48,-157,51,-157,-36r0,-128r50,0v7,64,-26,164,49,160v33,-2,57,-19,58,-55r0,-105r50,0r0,191r-50,0r0,-27xm52,-257r49,0r0,40r-49,0r0,-40xm146,-257r49,0r0,40r-49,0r0,-40","w":246},"\u00f9":{"d":"177,-27v-33,48,-157,51,-157,-36r0,-128r50,0v7,64,-26,164,49,160v33,-2,57,-19,58,-55r0,-105r50,0r0,191r-50,0r0,-27xm153,-217r-42,0r-51,-51r61,0","w":246},"\u00ff":{"d":"-4,-191r54,0r62,137r59,-137r53,0r-115,245v-13,22,-54,20,-88,18r0,-38v22,1,45,4,53,-14r11,-23xm39,-257r49,0r0,40r-49,0r0,-40xm133,-257r49,0r0,40r-49,0r0,-40","w":219},"!":{"d":"35,-257r56,0v2,66,-5,123,-10,182r-36,0r-10,-113r0,-69xm35,-51r56,0r0,51r-56,0r0,-51","w":126},"\"":{"d":"79,-257r36,0r0,111r-36,0r0,-111xm12,-257r36,0r0,111r-36,0r0,-111","w":126},"\u00a4":{"d":"33,-76v-19,-22,-19,-75,0,-98r-20,-20r26,-26r20,21v24,-19,74,-19,98,0r20,-21r26,26r-20,20v19,23,19,75,0,98r20,21r-26,25r-20,-20v-24,19,-74,19,-98,0r-20,20r-26,-25xm108,-178v-32,0,-53,22,-53,53v0,32,21,54,53,54v32,0,53,-22,53,-54v0,-31,-21,-53,-53,-53","w":216},"\u0141":{"d":"26,-72r-26,21r0,-40r26,-21r0,-145r54,0r0,102r72,-57r0,40r-72,57r0,73r157,0r0,42r-211,0r0,-72","w":240},"\u0142":{"d":"22,0v-1,-25,2,-55,-1,-78r-21,28r0,-38r22,-28r0,-145r49,0r1,85r21,-28r0,38r-22,28r0,138r-49,0","w":92},"\u00be":{"d":"323,-120r-59,58r59,0r0,-58xm229,-60r89,-92r43,0r0,90r26,0r0,30r-26,0r0,32r-38,0r0,-32r-94,0r0,-28xm121,-148v0,-23,-29,-21,-54,-21r0,-25v20,0,48,3,49,-15v-5,-28,-65,-24,-66,5r-36,0v-1,-65,137,-72,140,-7v0,16,-12,21,-25,28v17,4,33,16,33,35v1,61,-120,64,-145,22v-5,-7,-7,-15,-7,-26r36,0v0,35,75,34,75,4xm261,-256r33,0r-150,262r-33,0","w":399},"\u00bc":{"d":"323,-120r-59,58r59,0r0,-58xm229,-60r89,-92r43,0r0,90r26,0r0,30r-26,0r0,32r-38,0r0,-32r-94,0r0,-28xm239,-255r34,0r-150,261r-34,0xm2,-228v29,2,52,-4,57,-27r28,0r0,152r-38,0r0,-97r-47,0r0,-28","w":399},"\u00b9":{"d":"2,-228v29,2,52,-4,57,-27r28,0r0,152r-38,0r0,-97r-47,0r0,-28","w":117},"\u00d7":{"d":"48,-8r-25,-25r59,-60r-59,-59r25,-26r60,60r60,-60r25,26r-59,59r59,60r-25,25r-60,-59","w":216},"\u00de":{"d":"214,-131v0,-59,-81,-34,-134,-39r0,78v53,-5,134,21,134,-39xm268,-131v0,50,-31,79,-83,80r-105,0r0,51r-54,0r0,-257r54,0r0,46r105,0v54,1,83,28,83,80","w":280},"\u00a6":{"d":"21,-92r38,0r0,99r-38,0r0,-99xm21,-264r38,0r0,99r-38,0r0,-99","w":79},"\u00d0":{"d":"291,-126v0,74,-34,126,-113,126r-152,0r0,-114r-26,0r0,-38r26,0r0,-105r145,0v85,-1,120,49,120,131xm237,-128v0,-57,-24,-90,-81,-89r-76,0r0,65r71,0r0,38r-71,0r0,74r88,0v48,-2,69,-36,69,-88","w":306},"\u00bd":{"d":"225,-255r33,0r-150,261r-33,0xm2,-228v29,2,52,-4,57,-27r28,0r0,152r-38,0r0,-97r-47,0r0,-28xm301,-152v76,-9,104,74,35,96v-19,6,-44,12,-57,26r96,0r0,30r-147,0v1,-61,65,-63,102,-88v21,-14,-2,-37,-24,-37v-23,0,-35,13,-38,31r-40,0v0,-43,32,-53,73,-58","w":399},"\u00f0":{"d":"64,-94v0,40,23,63,66,63v43,0,66,-23,66,-63v0,-40,-23,-63,-66,-63v-43,0,-66,23,-66,63xm172,-177v-12,-21,-35,-33,-56,-46r-47,22r-17,-16r40,-18v-11,-7,-23,-11,-36,-15r27,-25v19,4,37,11,53,19r43,-19r17,15r-37,17v48,28,89,69,89,144v0,70,-45,105,-118,106v-72,0,-114,-32,-118,-99v-5,-82,93,-122,160,-85","w":259},"\u00fe":{"d":"196,-95v0,-41,-23,-63,-64,-63v-41,0,-64,22,-64,63v0,41,22,64,64,64v43,0,64,-23,64,-64xm144,7v-35,0,-60,-14,-74,-33r0,99r-50,0r0,-334r50,0r1,98v13,-21,41,-33,73,-33v65,0,104,39,104,101v0,63,-38,101,-104,102","w":259},"\u00b2":{"d":"85,-255v76,-9,104,74,35,96v-20,6,-45,12,-57,27r96,0r0,29r-147,0v1,-61,65,-63,102,-88v21,-14,-2,-37,-24,-37v-23,0,-35,13,-38,31r-40,0v0,-43,32,-53,73,-58","w":173},"\u00b3":{"d":"121,-148v0,-23,-29,-21,-54,-21r0,-25v20,0,48,3,49,-15v-5,-28,-65,-24,-66,5r-36,0v-1,-65,137,-72,140,-7v0,16,-12,21,-25,28v17,4,33,16,33,35v1,61,-120,64,-145,22v-5,-7,-7,-15,-7,-26r36,0v0,35,75,34,75,4","w":173},"\u0160":{"d":"163,-273r-60,0r-49,-51r49,0r30,30r30,-30r50,0xm139,-33v39,0,80,-23,55,-57v-52,-37,-178,1,-181,-95v-3,-106,196,-97,230,-30v5,9,8,20,9,32r-59,0v-4,-30,-31,-37,-64,-41v-51,-7,-86,50,-30,63v64,16,160,2,161,85v1,111,-214,104,-246,30v-5,-11,-8,-24,-8,-37r59,0v2,37,33,50,74,50"},"\u00dd":{"d":"110,-98r-113,-159r66,0r74,114r73,-114r66,0r-112,159r0,98r-54,0r0,-98xm139,-324r62,0r-51,51r-43,0","w":273},"\u017d":{"d":"160,-273r-60,0r-50,-51r50,0r30,30r30,-30r50,0xm5,-39r178,-178r-165,0r0,-40r235,0r0,39r-175,176r177,0r0,42r-250,0r0,-39","w":259},"\u0161":{"d":"147,-217r-60,0r-50,-51r50,0r30,30r30,-30r50,0xm215,-85v43,83,-86,113,-166,81v-21,-9,-38,-26,-39,-56r54,0v0,44,95,45,105,9v-16,-54,-152,4,-152,-85v0,-93,203,-79,199,4r-52,0v-1,-41,-89,-43,-97,-10v13,45,123,9,148,57","w":233},"\u00fd":{"d":"-4,-191r54,0r62,137r59,-137r53,0r-115,245v-13,22,-54,20,-88,18r0,-38v22,1,45,4,53,-14r11,-23xm112,-268r62,0r-51,51r-43,0","w":219},"\u017e":{"d":"140,-217r-60,0r-50,-51r50,0r30,30r30,-30r50,0xm8,-36r128,-117r-121,0r0,-38r192,0r0,34r-131,119r136,0r0,38r-204,0r0,-36","w":219}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990 Adobe Systems Incorporated.  All Rights Reserved.Helvetica
 * is a trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1990 Adobe Systems.  All Rights Reserved.
 * This software is the property of Adobe Systems  Incorporated and its licensors,
 * and may not be reproduced, used,   displayed, modified, disclosed or transferred
 * without the express   written approval of Adobe.    The digitally encoded
 * machine readable outline data for producing  the Typefaces licensed to you is
 * copyrighted (c) 1981 Linotype AG  and/or its subsidiaries. All Rights Reserved. 
 * This data is the property of Linotype AG and/or its subsidiaries  and may not be
 * reproduced, used, displayed, modified, disclosed or   transferred without the
 * express written approval of Linotype AG   and/or its subsidiaries.  12
 * Helvetica* 73 Bold Extended 30472
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 */
Cufon.registerFont({"w":280,"face":{"font-family":"font-02-bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 5 5 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"7","bbox":"-40 -354 414 78.3967","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":133},"\u00a0":{"w":133},"$":{"d":"163,-37v37,4,54,-50,16,-58v-5,-1,-10,-3,-16,-4r0,62xm136,-212v-39,-9,-66,42,-21,51v6,1,13,3,21,4r0,-55xm275,-79v-1,65,-46,83,-112,86r0,39r-27,0r0,-39v-67,-3,-115,-20,-118,-86r75,0v0,28,19,37,43,42r0,-66v-54,-8,-113,-12,-113,-75v0,-59,53,-77,113,-79r0,-30r27,0r0,30v54,5,100,24,104,80r-72,0v-3,-20,-15,-29,-32,-33r0,57v53,8,112,15,112,74","w":293},"%":{"d":"87,-117v-49,0,-73,-25,-73,-70v0,-45,25,-70,73,-70v49,0,74,26,74,70v0,44,-25,70,-74,70xm87,-226v-23,0,-31,16,-31,39v0,22,8,39,31,39v23,0,31,-16,31,-39v0,-23,-8,-39,-31,-39xm286,7v-49,0,-73,-25,-73,-70v0,-44,24,-69,73,-69v49,0,74,25,74,69v0,44,-25,70,-74,70xm286,-102v-23,0,-31,17,-31,39v1,22,7,39,31,39v24,0,31,-16,31,-39v0,-23,-8,-39,-31,-39xm251,-257r35,0r-164,264r-35,0","w":373},"&":{"d":"88,-81v-1,52,77,52,107,26r-72,-66v-17,7,-35,18,-35,40xm309,-116v-8,23,-21,39,-36,55r66,61r-85,0r-26,-24v-55,48,-210,48,-207,-50v1,-46,33,-64,70,-75v-14,-11,-26,-22,-26,-47v1,-46,39,-61,84,-61v47,0,89,13,89,57v0,35,-27,49,-55,58r55,51v12,-12,24,-28,32,-44xm181,-198v1,-27,-55,-30,-55,-2v0,17,13,26,23,34v14,-6,31,-14,32,-32","w":333},"(":{"d":"141,-257v-64,80,-65,245,0,325r-44,0v-39,-38,-70,-89,-70,-162v0,-74,32,-124,70,-163r44,0","w":159},")":{"d":"132,-94v0,74,-31,124,-69,162r-45,0v66,-79,66,-246,0,-325r45,0v38,39,69,88,69,163","w":159},"*":{"d":"56,-175r-47,-15r12,-36r45,18r-2,-49r39,0r-2,49r45,-18r12,36r-47,15r33,38r-29,23r-31,-40r-32,40r-29,-23","w":167},"+":{"d":"86,-69r-69,0r0,-44r69,0r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0r0,-69","w":216},",":{"d":"32,-61r70,0v5,69,-8,121,-70,127r0,-25v23,-6,29,-15,32,-41r-32,0r0,-61","w":133},"-":{"d":"22,-127r129,0r0,49r-129,0r0,-49","w":173},"\u00ad":{"d":"22,-127r129,0r0,49r-129,0r0,-49","w":173},".":{"d":"32,-61r70,0r0,61r-70,0r0,-61","w":133},"\/":{"d":"106,-264r48,0r-106,271r-49,0","w":153},"0":{"d":"147,-210v-48,0,-64,37,-64,85v0,48,16,85,64,85v48,0,64,-37,64,-85v0,-48,-16,-85,-64,-85xm147,6v-83,1,-132,-47,-132,-131v0,-84,48,-131,132,-131v84,0,134,47,132,131v-2,84,-45,131,-132,131","w":293},"1":{"d":"13,-204v50,1,80,-8,91,-46r50,0r0,250r-65,0r0,-159r-76,0r0,-45","w":200},"2":{"d":"151,-256v94,-8,163,79,95,137v-39,33,-120,31,-155,70r181,0r0,49r-257,0v3,-98,84,-115,158,-142v16,-6,29,-13,29,-32v0,-24,-21,-36,-48,-36v-33,0,-57,15,-60,48r-72,0v3,-71,56,-88,129,-94","w":293},"3":{"d":"203,-76v0,-39,-53,-31,-93,-32r0,-44v36,-1,85,9,85,-28v0,-25,-25,-31,-51,-32v-27,0,-46,13,-51,35r-70,0v7,-61,61,-79,129,-79v63,1,112,14,115,72v1,29,-19,41,-41,49v29,5,51,27,51,59v2,96,-156,98,-226,63v-23,-12,-34,-36,-36,-69r70,0v-1,55,118,57,118,6","w":293},"4":{"d":"172,-199r-93,106r93,0r0,-106xm172,-48r-158,0r0,-47r140,-155r80,0r0,157r45,0r0,45r-45,0r0,48r-62,0r0,-48","w":293},"5":{"d":"206,-83v0,-52,-86,-54,-114,-26r-66,0r24,-141r208,0r0,47r-163,0r-8,49v65,-30,188,-19,188,69v0,107,-173,111,-237,61v-14,-11,-22,-28,-23,-51r72,0v6,26,27,35,58,35v37,0,61,-11,61,-43","w":293},"6":{"d":"19,-124v-7,-116,112,-160,212,-118v22,9,40,29,42,59r-69,0v-10,-36,-82,-33,-102,-8v-10,12,-14,30,-15,51v53,-45,197,-33,192,57v-4,65,-54,89,-124,89v-91,1,-131,-44,-136,-130xm209,-80v0,-31,-27,-41,-61,-41v-32,0,-55,12,-55,41v0,54,116,55,116,0","w":293},"7":{"d":"262,-195v-53,53,-107,108,-127,195r-85,0v17,-94,81,-147,140,-201r-182,0r0,-49r254,0r0,55","w":273},"8":{"d":"207,-77v-1,-49,-119,-51,-120,0v0,53,120,50,120,0xm279,-74v0,65,-63,80,-132,80v-69,0,-129,-15,-132,-80v-1,-35,25,-52,51,-62v-24,-9,-41,-22,-41,-52v0,-58,62,-68,122,-68v59,1,118,10,120,68v2,32,-18,42,-39,53v28,8,51,27,51,61xm95,-182v0,24,22,30,52,30v27,0,51,-5,51,-30v0,-39,-103,-39,-103,0","w":293},"9":{"d":"275,-126v5,115,-108,161,-212,118v-22,-9,-40,-29,-42,-59r69,0v10,36,82,33,102,8v10,-12,14,-29,15,-50v-55,44,-197,32,-192,-58v3,-67,55,-88,124,-89v91,-1,132,43,136,130xm85,-170v1,32,28,40,61,41v32,0,55,-12,55,-41v0,-53,-116,-55,-116,0","w":293},":":{"d":"32,-193r70,0r0,61r-70,0r0,-61xm32,-61r70,0r0,61r-70,0r0,-61","w":133},";":{"d":"32,-61r70,0v5,69,-8,121,-70,127r0,-25v23,-6,29,-15,32,-41r-32,0r0,-61xm32,-193r70,0r0,61r-70,0r0,-61","w":133},"\u037e":{"d":"32,-61r70,0v5,69,-8,121,-70,127r0,-25v23,-6,29,-15,32,-41r-32,0r0,-61xm32,-193r70,0r0,61r-70,0r0,-61","w":133},"<":{"d":"17,-110r182,-75r0,45r-122,49r122,49r0,45r-182,-75r0,-38","w":216},"=":{"d":"17,-153r182,0r0,45r-182,0r0,-45xm17,-74r182,0r0,44r-182,0r0,-44","w":216},">":{"d":"199,-72r-182,75r0,-45r122,-49r-122,-49r0,-45r182,75r0,38","w":216},"?":{"d":"133,-261v74,-3,145,33,117,105v-14,36,-71,36,-85,73r-63,0v-3,-64,74,-51,84,-102v-2,-23,-22,-32,-47,-32v-32,0,-51,16,-54,46r-68,0v3,-64,52,-88,116,-90xm99,-61r69,0r0,61r-69,0r0,-61","w":273},"@":{"d":"149,-163v-26,1,-40,21,-42,46v-1,16,11,32,27,31v26,-3,42,-22,43,-49v0,-14,-13,-29,-28,-28xm67,-111v-6,-68,83,-122,123,-65r5,-19r32,0r-24,106v0,5,2,7,7,7v27,-4,39,-32,39,-63v0,-56,-41,-86,-99,-86v-63,0,-102,40,-102,103v0,63,40,100,105,102v34,1,59,-11,79,-24r33,0v-24,32,-60,57,-113,57v-86,0,-144,-52,-144,-136v0,-84,58,-135,142,-135v73,0,130,39,130,111v0,61,-38,96,-91,104v-16,2,-22,-8,-24,-19v-29,37,-104,14,-98,-43","w":288},"A":{"d":"150,-202r-40,102r80,0xm209,-53r-118,0r-21,53r-75,0r113,-257r84,0r113,257r-75,0","w":300,"k":{"y":6,"w":6,"v":6,"Y":20,"W":6,"V":13,"T":20}},"B":{"d":"197,-49v20,1,30,-13,30,-30v0,-51,-86,-25,-133,-31r0,61r103,0xm301,-78v2,118,-170,68,-277,78r0,-257r193,0v44,0,72,20,73,65v0,27,-15,43,-34,52v28,6,44,29,45,62xm218,-183v-2,-46,-81,-21,-124,-27r0,55r98,0v17,0,27,-9,26,-28","w":320},"C":{"d":"14,-129v0,-145,185,-170,273,-97v18,15,26,37,30,66r-75,0v-9,-34,-32,-55,-74,-55v-56,-1,-80,34,-80,86v0,52,24,88,80,87v42,0,67,-21,74,-57r76,0v-10,75,-68,106,-152,106v-94,0,-152,-40,-152,-136","w":326},"D":{"d":"239,-131v0,-49,-22,-78,-73,-77r-72,0r0,159r78,0v49,1,67,-31,67,-82xm311,-129v0,81,-39,128,-120,129r-167,0r0,-257r161,0v84,0,126,45,126,128","w":326},"E":{"d":"24,-257r241,0r0,49r-171,0r0,53r162,0r0,47r-162,0r0,59r172,0r0,49r-242,0r0,-257"},"F":{"d":"24,-257r230,0r0,49r-160,0r0,56r150,0r0,49r-150,0r0,103r-70,0r0,-257","w":259,"k":{"A":13,".":46,",":46}},"G":{"d":"88,-129v-4,73,74,108,135,75v15,-8,22,-24,26,-45r-62,0r0,-44r131,0r0,143r-35,0r-9,-30v-23,25,-61,38,-108,37v-94,-1,-152,-40,-152,-136v0,-125,143,-163,249,-116v29,13,47,37,54,72r-78,0v-8,-28,-31,-42,-65,-42v-56,0,-83,32,-86,86","w":339},"H":{"d":"24,-257r70,0r0,96r145,0r0,-96r70,0r0,257r-70,0r0,-112r-145,0r0,112r-70,0r0,-257","w":333},"I":{"d":"24,-257r70,0r0,257r-70,0r0,-257","w":118},"J":{"d":"111,-40v34,0,42,-20,41,-51r0,-166r70,0r0,180v-4,58,-40,84,-104,84v-74,0,-121,-26,-115,-105r70,0v-3,34,6,58,38,58","w":246},"K":{"d":"214,-257r94,0r-118,103r127,154r-95,0r-87,-111r-41,35r0,76r-70,0r0,-257r70,0r0,110","w":313},"L":{"d":"24,-257r70,0r0,206r157,0r0,51r-227,0r0,-257","w":259,"k":{"y":13,"Y":33,"W":27,"V":27,"T":33}},"M":{"d":"280,-257r102,0r0,257r-67,0r-1,-206r-81,206r-59,0r-82,-206r0,206r-68,0r0,-257r103,0r76,185","w":406},"N":{"d":"241,-257r68,0r0,257r-76,0r-141,-179r0,179r-68,0r0,-257r81,0r136,179r0,-179","w":333},"O":{"d":"170,7v-100,0,-160,-40,-160,-136v0,-95,61,-135,160,-135v99,0,160,40,160,135v0,96,-60,136,-160,136xm170,-215v-56,0,-86,33,-86,86v0,53,30,87,86,87v56,0,86,-34,86,-87v0,-53,-30,-86,-86,-86","w":339},"P":{"d":"216,-174v0,-55,-73,-31,-122,-36r0,71v47,-5,122,20,122,-35xm288,-179v0,56,-29,87,-85,87r-109,0r0,92r-70,0r0,-257v106,8,265,-35,264,78","w":299,"k":{"A":20,".":46,",":46}},"Q":{"d":"84,-129v0,61,46,97,111,84r-20,-18r32,-35r30,26v40,-53,12,-148,-67,-143v-56,3,-86,33,-86,86xm330,-129v0,46,-15,80,-42,102r36,32r-32,35r-49,-43v-20,7,-44,10,-73,10v-100,0,-160,-40,-160,-136v0,-95,61,-135,160,-135v99,0,160,40,160,135","w":339},"R":{"d":"220,-176v0,-52,-79,-26,-126,-32r0,65v48,-5,126,19,126,-33xm225,0v-16,-33,7,-94,-44,-94r-87,0r0,94r-70,0r0,-257r187,0v52,0,83,21,83,70v1,35,-14,52,-41,62v50,8,23,92,48,125r-76,0","w":306},"S":{"d":"20,-151v-48,-106,107,-138,206,-100v27,10,48,32,50,68r-78,0v-1,-48,-112,-52,-112,-6v0,16,15,20,30,24v66,18,168,2,170,86v2,99,-148,99,-229,72v-29,-10,-49,-33,-49,-74r78,0v2,33,31,41,66,41v40,0,73,-28,44,-52v-54,-23,-152,-6,-176,-59","w":293},"T":{"d":"95,-208r-95,0r0,-49r260,0r0,49r-95,0r0,208r-70,0r0,-208","w":259,"k":{"y":27,"w":27,"u":27,"s":27,"r":27,"o":33,"i":13,"e":33,"c":33,"a":33,"A":13,";":27,":":27,".":33,"-":40,",":33}},"U":{"d":"157,7v-80,0,-135,-23,-135,-99r0,-165r69,0v9,87,-35,215,66,215v100,0,55,-129,65,-215r70,0r0,165v-2,75,-55,99,-135,99","w":313},"V":{"d":"-8,-257r77,0r74,196r75,-196r76,0r-114,257r-74,0","w":286,"k":{"y":6,"u":13,"r":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":33,"-":20,",":33}},"W":{"d":"-1,-257r70,0r50,187r53,-187r70,0r53,187r50,-187r69,0r-81,257r-72,0r-55,-183r-54,183r-72,0","w":413,"k":{"u":6,"r":6,"o":13,"e":13,"a":13,"A":6,";":13,":":13,".":20,"-":13,",":20}},"X":{"d":"103,-132r-100,-125r84,0r56,80r57,-80r84,0r-100,125r109,132r-87,0r-63,-87r-62,87r-87,0","w":286},"Y":{"d":"105,-90r-114,-167r82,0r67,112r67,-112r82,0r-114,167r0,90r-70,0r0,-90","k":{"v":6,"u":13,"q":20,"p":13,"o":27,"i":6,"e":20,"a":20,"A":20,";":20,":":20,".":46,"-":33,",":46}},"Z":{"d":"6,-45r170,-163r-159,0r0,-49r250,0r0,45r-169,163r169,0r0,49r-261,0r0,-45","w":273},"[":{"d":"29,-257r119,0r0,45r-58,0r0,236r58,0r0,44r-119,0r0,-325","w":159},"\\":{"d":"-1,-264r49,0r106,271r-49,0","w":153},"]":{"d":"131,68r-119,0r0,-44r57,0r0,-236r-57,0r0,-45r119,0r0,325","w":159},"^":{"d":"20,-111r67,-139r42,0r67,139r-45,0r-43,-90r-43,90r-45,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"118,-30v40,-4,72,-17,67,-64v-26,14,-72,6,-99,18v-21,19,1,49,32,46xm134,-163v-28,0,-45,6,-50,29r-62,0v7,-54,54,-66,114,-66v62,1,108,9,111,65v2,45,-6,101,7,135r-64,0r-4,-21v-46,50,-219,36,-169,-63v22,-44,106,-26,161,-40v15,-24,-9,-39,-44,-39","w":266},"b":{"d":"142,-151v-37,1,-59,20,-59,56v0,35,23,55,59,55v37,0,60,-19,60,-55v0,-36,-23,-56,-60,-56xm83,-24r0,24r-61,0r0,-261r63,0r1,92v13,-19,41,-29,74,-29v65,0,102,38,107,104v8,100,-133,130,-184,70"},"c":{"d":"13,-96v0,-117,169,-132,229,-65v8,10,13,23,16,39r-65,0v-15,-55,-125,-40,-115,26v-9,68,107,79,115,19r65,0v-9,61,-52,86,-123,84v-73,-1,-122,-28,-122,-103","w":266},"d":{"d":"138,-151v-37,0,-60,20,-60,56v0,36,23,55,60,55v37,0,59,-20,59,-55v0,-36,-22,-56,-59,-56xm120,-198v34,-1,60,11,75,29r0,-92r63,0r0,261r-61,0r0,-24v-17,22,-42,31,-77,31v-66,0,-107,-34,-107,-101v0,-66,42,-102,107,-104"},"e":{"d":"76,-80v-1,53,95,64,115,22r67,0v-17,45,-60,65,-120,65v-75,-1,-127,-28,-127,-103v0,-76,51,-103,127,-104v82,-1,124,41,124,120r-186,0xm137,-161v-33,0,-55,18,-61,44r121,-1v-5,-27,-27,-43,-60,-43","w":272},"f":{"d":"157,-224v-29,0,-58,-8,-52,31r51,0r0,43r-51,0r0,150r-63,0r0,-150r-40,0r0,-43r40,0v-9,-73,43,-75,115,-71r0,40","w":153},"g":{"d":"139,-153v-38,-1,-61,15,-61,53v0,37,24,52,61,52v36,0,60,-14,60,-52v0,-38,-23,-53,-60,-53xm13,-102v-7,-96,133,-122,189,-68r0,-23r61,0r0,178v6,98,-116,106,-199,82v-23,-7,-40,-24,-43,-54r67,0v6,20,23,24,53,24v44,1,62,-22,58,-70v-17,19,-43,28,-77,28v-67,0,-104,-33,-109,-97"},"h":{"d":"139,-149v-71,0,-52,84,-54,149r-63,0r0,-261r63,0r1,96v32,-50,159,-46,159,36r0,129r-63,0v-7,-58,25,-149,-43,-149","w":266},"i":{"d":"22,-193r63,0r0,193r-63,0r0,-193xm22,-261r63,0r0,44r-63,0r0,-44","w":106},"j":{"d":"-18,23v24,5,40,0,40,-29r0,-187r63,0r0,192v6,66,-38,80,-103,71r0,-47xm22,-261r63,0r0,44r-63,0r0,-44","w":106},"k":{"d":"22,-261r63,0r0,140r84,-72r88,0r-92,73r98,120r-84,0r-63,-80r-31,25r0,55r-63,0r0,-261","w":259},"l":{"d":"22,-261r63,0r0,261r-63,0r0,-261","w":106},"m":{"d":"83,-165v25,-39,129,-49,146,3v31,-50,156,-54,156,31r0,131r-63,0v-7,-56,25,-149,-39,-149v-68,0,-44,88,-48,149r-63,0v-7,-55,25,-149,-38,-149v-69,0,-45,87,-49,149r-63,0r0,-193r61,0r0,28","w":406},"n":{"d":"83,-165v35,-48,162,-48,162,36r0,129r-63,0v-7,-58,25,-149,-43,-149v-71,0,-52,84,-54,149r-63,0r0,-193r61,0r0,28","w":266},"o":{"d":"140,7v-75,0,-127,-28,-127,-103v0,-76,51,-104,127,-104v76,0,127,28,127,104v0,75,-52,103,-127,103xm140,-156v-39,0,-62,21,-62,60v0,39,24,59,62,59v38,0,62,-20,62,-59v0,-39,-23,-60,-62,-60"},"p":{"d":"142,-151v-37,1,-59,20,-59,56v0,35,23,55,59,55v37,0,60,-19,60,-55v0,-36,-23,-56,-60,-56xm160,7v-34,1,-60,-11,-75,-29r0,94r-63,0r0,-265r61,0v1,8,-2,20,1,26v17,-19,37,-32,72,-31v68,1,111,33,111,102v0,65,-42,101,-107,103"},"q":{"d":"138,-151v-37,0,-60,20,-60,56v0,36,23,55,60,55v37,0,59,-20,59,-55v0,-36,-22,-56,-59,-56xm125,-198v35,0,54,13,72,31r0,-26r61,0r0,265r-63,0r-1,-94v-13,19,-41,29,-74,29v-65,0,-107,-38,-107,-103v0,-69,44,-101,112,-102"},"r":{"d":"184,-137v-47,-15,-99,-1,-99,54r0,83r-63,0r0,-193r61,0v1,12,-2,28,1,38v19,-29,50,-50,100,-41r0,59","w":186,"k":{".":27,"-":13,",":27}},"s":{"d":"239,-80v35,97,-130,103,-198,71v-20,-9,-29,-28,-31,-51r70,0v0,35,85,38,93,7v0,-19,-20,-16,-36,-20v-49,-13,-121,1,-121,-62v0,-96,219,-86,220,0r-70,0v-5,-22,-30,-28,-56,-25v-24,-5,-41,29,-13,35v50,11,126,2,142,45","w":253},"t":{"d":"158,1v-56,6,-116,11,-116,-54r0,-97r-40,0r0,-43r40,0r0,-60r63,0r0,60r52,0r0,43r-52,0r0,90v-2,28,30,19,53,18r0,43","w":159},"u":{"d":"128,-42v72,0,52,-86,54,-151r63,0r0,193r-61,0v-1,-8,2,-20,-1,-26v-33,48,-161,48,-161,-36r0,-131r63,0v7,58,-26,151,43,151","w":266},"v":{"d":"-4,-193r72,0r52,135r53,-135r72,0r-89,193r-72,0","w":240,"k":{".":27,",":27}},"w":{"d":"0,-193r70,0r45,132r44,-132r62,0r45,132r44,-132r70,0r-72,193r-76,0r-42,-125r-42,125r-76,0","w":380,"k":{".":20,",":20}},"x":{"d":"175,-193r79,0r-82,93r89,100r-82,0r-50,-64r-49,64r-81,0r88,-100r-81,-93r79,0r45,59","w":259},"y":{"d":"239,-193r-105,225v-12,41,-60,43,-113,38r0,-44v36,6,57,-5,64,-33r-91,-186r69,0r55,127r53,-127r68,0","w":233,"k":{".":27,",":33}},"z":{"d":"9,-40r122,-106r-115,0r0,-47r204,0r0,40r-122,106r126,0r0,47r-215,0r0,-40","w":233},"{":{"d":"142,-217v-71,-14,2,116,-69,123v43,2,35,53,35,97v0,21,11,29,34,26r0,39v-50,2,-95,3,-95,-48v0,-42,10,-98,-33,-99r0,-31v45,1,33,-56,33,-98v0,-50,45,-51,95,-49r0,40","w":159},"|":{"d":"18,-264r44,0r0,271r-44,0r0,-271","w":79},"}":{"d":"18,29v70,14,-3,-118,69,-124v-43,-2,-38,-52,-36,-96v1,-22,-10,-29,-33,-26r0,-40v50,-2,95,-1,95,49v0,42,-11,100,33,98r0,31v-45,-1,-33,57,-33,99v0,50,-45,50,-95,48r0,-39","w":159},"~":{"d":"146,-101v15,-2,27,-13,32,-25r13,39v-10,15,-20,30,-44,30v-35,0,-47,-22,-77,-24v-15,2,-26,13,-32,24r-13,-38v10,-16,20,-31,44,-31v34,-1,47,23,77,25","w":216},"\u00a1":{"d":"42,-110r49,0r11,174r-70,0xm32,-193r70,0r0,61r-70,0r0,-61","w":133},"\u00a2":{"d":"138,-156v-45,1,-61,66,-36,100v8,10,21,17,36,19r0,-119xm270,-77v-10,56,-46,84,-110,84r0,38r-22,0r0,-38v-68,-4,-114,-32,-114,-103v0,-71,46,-100,114,-104r0,-31r22,0r0,31v60,1,99,27,110,78r-66,0v-5,-21,-22,-31,-44,-34r0,119v23,-3,42,-17,44,-40r66,0","w":293},"\u00a3":{"d":"199,7v-52,0,-111,-30,-154,0r-26,-46v23,-11,44,-36,33,-70r-30,0r0,-34r20,0v-5,-10,-9,-21,-9,-34v1,-65,57,-80,122,-80v68,0,115,23,114,90r-72,0v0,-27,-17,-41,-44,-41v-40,-1,-59,27,-41,65r64,0r0,34r-59,0v5,30,-11,46,-27,61v47,-23,129,21,166,-19r19,50v-21,14,-43,24,-76,24","w":293},"\u00a5":{"d":"111,-45r-72,0r0,-33r72,0v2,-15,-4,-22,-10,-29r-62,0r0,-33r39,0r-74,-110r81,0r62,105r64,-105r79,0r-77,110r40,0r0,33r-63,0v-5,7,-11,14,-9,29r72,0r0,33r-72,0r0,45r-70,0r0,-45","w":293},"\u0192":{"d":"75,-143r43,0v9,-65,23,-129,111,-113v9,1,9,1,20,2r-8,41v-50,-14,-53,32,-59,70r44,0r-7,34r-44,0v-16,56,-12,134,-49,168v-19,17,-65,15,-96,9r8,-40v27,2,46,1,51,-25r23,-112r-44,0","w":293},"\u00a7":{"d":"263,3v-5,90,-183,86,-222,29v-7,-10,-10,-22,-11,-36r67,0v3,27,26,33,56,33v32,0,59,-24,30,-39v-56,-29,-170,-18,-170,-99v0,-27,15,-48,38,-55v-11,-7,-15,-18,-15,-34v1,-87,166,-81,205,-32v8,10,13,22,15,38r-68,0v-2,-24,-20,-30,-48,-30v-27,0,-50,20,-31,37v57,27,166,19,171,94v2,28,-12,49,-34,56v11,9,17,19,17,38xm208,-56v18,-11,15,-48,-10,-49r-111,-34v-32,21,0,57,29,56","w":293},"'":{"d":"44,-257r45,0r0,127r-45,0r0,-127","w":133},"\u00ab":{"d":"117,-131r69,-52r0,48r-43,32r43,32r0,48r-69,-52r0,-56xm30,-131r70,-52r0,48r-43,32r43,32r0,48r-70,-52r0,-56","w":219},"\u00b7":{"d":"67,-62v-23,0,-37,-15,-37,-37v0,-22,14,-37,37,-37v22,0,37,15,37,37v0,22,-15,37,-37,37","w":133},"\u2219":{"d":"67,-62v-23,0,-37,-15,-37,-37v0,-22,14,-37,37,-37v22,0,37,15,37,37v0,22,-15,37,-37,37","w":133},"\u00b6":{"d":"0,-184v-3,-98,119,-69,210,-73r0,321r-47,0r0,-286r-33,0r0,286r-47,0r0,-178v-51,0,-82,-21,-83,-70","w":223},"\u00bb":{"d":"33,-71r44,-32r-44,-32r0,-48r70,52r0,56r-70,52r0,-48xm120,-71r43,-32r-43,-32r0,-48r70,52r0,56r-70,52r0,-48","w":219},"\u00bf":{"d":"17,-10v0,-62,74,-54,91,-100r63,0v3,64,-74,51,-84,102v3,22,23,32,47,32v31,0,52,-15,54,-46r68,0v-3,64,-50,90,-116,90v-66,0,-123,-17,-123,-78xm105,-193r70,0r0,61r-70,0r0,-61","w":273},"`":{"d":"-24,-268r77,0r32,51r-57,0","w":93},"\u00b4":{"d":"40,-268r78,0r-52,51r-58,0","w":93},"\u00af":{"d":"-40,-262r174,0r0,37r-174,0r0,-37","w":93},"\u02c9":{"d":"-40,-262r174,0r0,37r-174,0r0,-37","w":93},"\u00a8":{"d":"-36,-260r63,0r0,43r-63,0r0,-43xm67,-260r63,0r0,43r-63,0r0,-43","w":93},"\u00b8":{"d":"51,44v0,-21,-31,-1,-37,-14r19,-30r23,0r-11,17v24,-5,51,0,50,27v0,42,-64,34,-97,28r6,-19v15,4,47,10,47,-9","w":93},"\u00c6":{"d":"118,-104r72,0r0,-106r-17,0xm130,-257r268,0r0,49r-145,0r0,53r140,0r0,47r-140,0r0,59r146,0r0,49r-209,0r0,-60r-94,0r-32,60r-76,0","w":413},"\u00aa":{"d":"52,-173v9,26,72,15,65,-20v-18,11,-57,0,-65,20xm119,-218v-4,-18,-59,-17,-62,2r-42,0v4,-34,36,-42,75,-41v38,1,69,3,71,38v2,27,-6,63,5,82r-43,0v-2,-4,-2,-10,-4,-14v-23,26,-112,32,-111,-19v1,-43,58,-32,95,-38v11,-2,15,-1,16,-10","w":173},"\u00d8":{"d":"170,7v-47,1,-82,-9,-108,-27r-36,31r-16,-19r33,-28v-23,-21,-33,-54,-33,-93v0,-95,61,-135,160,-135v47,-1,82,10,108,27r36,-31r16,18r-33,28v21,22,33,53,33,93v0,96,-60,136,-160,136xm170,-215v-73,0,-104,74,-74,134r133,-114v-13,-12,-33,-20,-59,-20xm170,-42v73,0,104,-74,74,-134r-133,114v13,12,33,20,59,20","w":339},"\u0152":{"d":"132,-264v33,0,58,7,75,27r0,-20r197,0r0,49r-136,0r0,53r132,0r0,47r-132,0r0,59r138,0r0,49r-199,0r0,-22v-21,20,-38,29,-75,29v-79,0,-119,-55,-119,-134v0,-80,39,-135,119,-137xm149,-42v30,0,51,-18,58,-41r0,-94v-6,-23,-29,-38,-59,-38v-47,0,-66,38,-66,87v0,51,19,86,67,86","w":420},"\u00ba":{"d":"91,-132v-47,0,-83,-16,-83,-63v0,-47,36,-62,83,-62v47,0,83,15,83,62v0,47,-36,63,-83,63xm91,-228v-22,0,-38,12,-38,33v0,22,15,34,38,34v23,0,38,-12,38,-34v0,-21,-16,-33,-38,-33","w":182},"\u00e6":{"d":"116,-32v38,0,65,-17,61,-59v-28,15,-101,-5,-101,34v0,20,20,24,40,25xm22,-132v2,-80,140,-84,190,-43v15,-15,44,-26,76,-25v74,3,118,40,114,120r-171,0v-4,53,87,64,106,24r63,0v-19,43,-51,62,-108,63v-43,0,-71,-12,-90,-34v-42,50,-221,55,-187,-50v14,-42,81,-35,134,-40v15,-1,29,-2,28,-18v-3,-40,-94,-35,-94,3r-61,0xm341,-115v-1,-44,-61,-58,-92,-34v-9,8,-15,19,-18,34r110,0","w":413},"\u0131":{"d":"22,-193r63,0r0,193r-63,0r0,-193","w":106},"\u00f8":{"d":"182,-143v-37,-28,-104,-10,-104,47v0,12,3,22,8,31xm99,-49v37,26,103,8,103,-47v0,-12,-2,-23,-7,-31xm267,-96v7,107,-136,123,-212,83r-32,26r-13,-17r28,-22v-16,-16,-25,-38,-25,-70v0,-109,137,-124,213,-84r30,-24r14,16r-27,22v16,15,22,40,24,70"},"\u0153":{"d":"341,-115v-2,-41,-57,-60,-88,-33v-9,8,-15,19,-18,33r106,0xm288,-200v74,0,118,40,114,120r-167,0v-3,53,82,64,102,24r63,0v-20,70,-144,83,-192,31v-19,22,-48,32,-84,32v-71,-1,-113,-34,-113,-102v0,-69,44,-104,116,-105v36,0,63,12,83,32v16,-20,43,-32,78,-32xm130,-35v37,0,54,-24,54,-61v0,-37,-18,-60,-54,-60v-38,0,-56,23,-56,60v0,38,18,61,56,61","w":413},"\u00df":{"d":"137,-220v-36,0,-52,15,-52,52r0,168r-63,0r0,-176v-2,-71,47,-88,116,-88v60,0,108,12,110,71v0,26,-18,40,-36,47v30,9,50,25,50,66v0,77,-75,93,-150,80r0,-45v38,7,85,4,85,-39v0,-38,-39,-38,-80,-37r0,-40v31,1,64,1,63,-28v0,-22,-21,-31,-43,-31","w":273},"\u00f7":{"d":"17,-113r182,0r0,44r-182,0r0,-44xm108,-132v-18,0,-35,-16,-35,-35v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-17,35,-35,35xm108,20v-19,0,-35,-16,-35,-35v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35","w":216},"\u00ae":{"d":"148,-203v65,-12,76,85,19,89r37,60r-35,0r-33,-59r-13,0r0,59r-33,0r0,-149r58,0xm172,-158v-1,-22,-27,-18,-49,-18r0,36v22,-1,50,6,49,-18xm144,-229v-61,0,-96,39,-96,100v0,62,34,101,96,101v62,0,96,-39,96,-101v0,-61,-35,-100,-96,-100xm144,7v-83,0,-136,-55,-136,-136v0,-81,53,-135,136,-135v83,0,136,55,136,135v0,81,-53,136,-136,136","w":288},"\u00e7":{"d":"78,-96v-9,68,107,79,115,19r65,0v-9,61,-52,84,-120,84r-6,10v24,-5,50,1,50,27v-1,42,-64,34,-97,28r6,-19v15,4,47,10,47,-9v0,-21,-31,-1,-37,-14r15,-24v-62,-6,-99,-34,-103,-102v-7,-116,169,-132,229,-65v8,10,13,23,16,39r-65,0v-15,-55,-125,-40,-115,26","w":266},"\u00b1":{"d":"86,-182r44,0r0,39r69,0r0,44r-69,0r0,39r-44,0r0,-39r-69,0r0,-44r69,0r0,-39xm17,-45r182,0r0,45r-182,0r0,-45","w":216},"\u00c7":{"d":"168,-42v42,0,67,-21,74,-57r76,0v-10,74,-66,106,-150,106r-6,10v24,-5,50,2,50,27v-1,42,-64,34,-97,28r6,-19v15,3,46,11,46,-9v0,-21,-30,-1,-36,-14r15,-24v-85,-4,-126,-47,-132,-135v-11,-144,185,-170,273,-97v18,15,26,37,30,66r-75,0v-9,-34,-32,-55,-74,-55v-56,-1,-80,34,-80,86v0,52,24,88,80,87","w":326},"\u00a9":{"d":"108,-130v-7,45,60,66,70,23r38,0v-8,32,-28,57,-67,57v-49,0,-72,-31,-76,-80v-7,-89,128,-110,141,-23r-35,0v-16,-44,-76,-20,-71,23xm144,7v-83,0,-136,-55,-136,-136v0,-81,53,-135,136,-135v83,0,136,55,136,135v0,81,-53,136,-136,136xm144,-229v-61,0,-96,39,-96,100v0,62,34,101,96,101v62,0,96,-39,96,-101v0,-61,-35,-100,-96,-100","w":288},"\u00ac":{"d":"154,-108r-137,0r0,-45r182,0r0,118r-45,0r0,-73","w":216},"\u00b0":{"d":"72,-150v-31,0,-53,-21,-53,-54v0,-32,21,-53,53,-53v32,0,53,21,53,53v0,33,-22,54,-53,54xm72,-230v-15,0,-27,12,-27,26v0,14,13,27,27,27v14,0,27,-13,27,-27v0,-14,-12,-26,-27,-26","w":144},"\u00b5":{"d":"184,-26v-16,26,-66,45,-99,23r0,75r-63,0r0,-265r63,0v7,58,-26,151,43,151v72,0,52,-86,54,-151r63,0r0,193r-61,0r0,-26","w":266},"\u03bc":{"d":"184,-26v-16,26,-66,45,-99,23r0,75r-63,0r0,-265r63,0v7,58,-26,151,43,151v72,0,52,-86,54,-151r63,0r0,193r-61,0r0,-26","w":266},"#":{"d":"78,-63r-30,0r0,-40r36,0r6,-44r-30,0r0,-39r36,0r9,-64r39,0r-9,64r41,0r9,-64r39,0r-9,64r31,0r0,39r-36,0r-7,44r31,0r0,40r-36,0r-9,63r-40,0r9,-63r-40,0r-9,63r-40,0xm170,-147r-40,0r-7,44r41,0","w":293},"\u00c1":{"d":"150,-202r-40,102r80,0xm209,-53r-118,0r-21,53r-75,0r113,-257r84,0r113,257r-75,0xm143,-325r78,0r-52,51r-58,0","w":300},"\u00c2":{"d":"108,-325r84,0r52,51r-68,0r-28,-29r-28,29r-63,0xm150,-202r-40,102r80,0xm209,-53r-118,0r-21,53r-75,0r113,-257r84,0r113,257r-75,0","w":300},"\u00c4":{"d":"150,-202r-40,102r80,0xm209,-53r-118,0r-21,53r-75,0r113,-257r84,0r113,257r-75,0xm67,-317r63,0r0,43r-63,0r0,-43xm170,-317r63,0r0,43r-63,0r0,-43","w":300},"\u00c0":{"d":"150,-202r-40,102r80,0xm209,-53r-118,0r-21,53r-75,0r113,-257r84,0r113,257r-75,0xm79,-325r77,0r32,51r-57,0","w":300},"\u00c5":{"d":"199,-309v4,49,-72,62,-88,18v-11,-32,9,-63,42,-63v28,0,44,19,46,45xm153,-332v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,25,-12,23,-24v2,-12,-12,-23,-23,-23xm150,-202r-40,102r80,0xm209,-53r-118,0r-21,53r-75,0r113,-257r84,0r113,257r-75,0","w":300},"\u00c3":{"d":"192,-274v-34,0,-85,-39,-99,-1r-31,0v6,-41,46,-62,89,-42v19,3,53,19,58,-6r30,0v-4,27,-15,49,-47,49xm150,-202r-40,102r80,0xm209,-53r-118,0r-21,53r-75,0r113,-257r84,0r113,257r-75,0","w":300},"\u00c9":{"d":"24,-257r241,0r0,49r-171,0r0,53r162,0r0,47r-162,0r0,59r172,0r0,49r-242,0r0,-257xm133,-325r78,0r-52,51r-58,0"},"\u00ca":{"d":"98,-325r84,0r52,51r-68,0r-28,-29r-28,29r-64,0xm24,-257r241,0r0,49r-171,0r0,53r162,0r0,47r-162,0r0,59r172,0r0,49r-242,0r0,-257"},"\u00cb":{"d":"24,-257r241,0r0,49r-171,0r0,53r162,0r0,47r-162,0r0,59r172,0r0,49r-242,0r0,-257xm57,-317r63,0r0,43r-63,0r0,-43xm160,-317r63,0r0,43r-63,0r0,-43"},"\u00c8":{"d":"24,-257r241,0r0,49r-171,0r0,53r162,0r0,47r-162,0r0,59r172,0r0,49r-242,0r0,-257xm69,-325r77,0r32,51r-57,0"},"\u00cd":{"d":"24,-257r70,0r0,257r-70,0r0,-257xm53,-325r78,0r-52,51r-58,0","w":118},"\u00ce":{"d":"18,-325r83,0r52,51r-68,0r-28,-29r-28,29r-63,0xm24,-257r70,0r0,257r-70,0r0,-257","w":118},"\u00cf":{"d":"24,-257r70,0r0,257r-70,0r0,-257xm-23,-317r63,0r0,43r-63,0r0,-43xm80,-317r63,0r0,43r-63,0r0,-43","w":118},"\u00cc":{"d":"24,-257r70,0r0,257r-70,0r0,-257xm-11,-325r77,0r32,51r-57,0","w":118},"\u00d1":{"d":"208,-274v-33,1,-86,-39,-99,-1r-31,0v6,-41,47,-62,90,-42v18,3,53,19,58,-6r29,0v-3,28,-16,48,-47,49xm241,-257r68,0r0,257r-76,0r-141,-179r0,179r-68,0r0,-257r81,0r136,179r0,-179","w":333},"\u00d3":{"d":"170,7v-100,0,-160,-40,-160,-136v0,-95,61,-135,160,-135v99,0,160,40,160,135v0,96,-60,136,-160,136xm170,-215v-56,0,-86,33,-86,86v0,53,30,87,86,87v56,0,86,-34,86,-87v0,-53,-30,-86,-86,-86xm163,-325r78,0r-52,51r-58,0","w":339},"\u00d4":{"d":"128,-325r84,0r52,51r-68,0r-29,-29r-27,29r-64,0xm170,7v-100,0,-160,-40,-160,-136v0,-95,61,-135,160,-135v99,0,160,40,160,135v0,96,-60,136,-160,136xm170,-215v-56,0,-86,33,-86,86v0,53,30,87,86,87v56,0,86,-34,86,-87v0,-53,-30,-86,-86,-86","w":339},"\u00d6":{"d":"170,7v-100,0,-160,-40,-160,-136v0,-95,61,-135,160,-135v99,0,160,40,160,135v0,96,-60,136,-160,136xm170,-215v-56,0,-86,33,-86,86v0,53,30,87,86,87v56,0,86,-34,86,-87v0,-53,-30,-86,-86,-86xm87,-317r63,0r0,43r-63,0r0,-43xm190,-317r63,0r0,43r-63,0r0,-43","w":339},"\u00d2":{"d":"170,7v-100,0,-160,-40,-160,-136v0,-95,61,-135,160,-135v99,0,160,40,160,135v0,96,-60,136,-160,136xm170,-215v-56,0,-86,33,-86,86v0,53,30,87,86,87v56,0,86,-34,86,-87v0,-53,-30,-86,-86,-86xm99,-325r77,0r32,51r-57,0","w":339},"\u00d5":{"d":"212,-274v-34,2,-85,-38,-100,-1r-31,0v7,-40,46,-62,90,-42v19,3,53,19,58,-6r29,0v-3,28,-16,48,-46,49xm170,7v-100,0,-160,-40,-160,-136v0,-95,61,-135,160,-135v99,0,160,40,160,135v0,96,-60,136,-160,136xm170,-215v-56,0,-86,33,-86,86v0,53,30,87,86,87v56,0,86,-34,86,-87v0,-53,-30,-86,-86,-86","w":339},"\u00da":{"d":"157,7v-80,0,-135,-23,-135,-99r0,-165r69,0v9,87,-35,215,66,215v100,0,55,-129,65,-215r70,0r0,165v-2,75,-55,99,-135,99xm150,-325r78,0r-52,51r-58,0","w":313},"\u00db":{"d":"115,-325r83,0r52,51r-67,0r-29,-29r-28,29r-63,0xm157,7v-80,0,-135,-23,-135,-99r0,-165r69,0v9,87,-35,215,66,215v100,0,55,-129,65,-215r70,0r0,165v-2,75,-55,99,-135,99","w":313},"\u00dc":{"d":"157,7v-80,0,-135,-23,-135,-99r0,-165r69,0v9,87,-35,215,66,215v100,0,55,-129,65,-215r70,0r0,165v-2,75,-55,99,-135,99xm74,-317r63,0r0,43r-63,0r0,-43xm177,-317r63,0r0,43r-63,0r0,-43","w":313},"\u00d9":{"d":"157,7v-80,0,-135,-23,-135,-99r0,-165r69,0v9,87,-35,215,66,215v100,0,55,-129,65,-215r70,0r0,165v-2,75,-55,99,-135,99xm86,-325r77,0r32,51r-57,0","w":313},"\u0178":{"d":"105,-90r-114,-167r82,0r67,112r67,-112r82,0r-114,167r0,90r-70,0r0,-90xm57,-317r63,0r0,43r-63,0r0,-43xm160,-317r63,0r0,43r-63,0r0,-43"},"\u00e1":{"d":"118,-30v40,-4,72,-17,67,-64v-26,14,-72,6,-99,18v-21,19,1,49,32,46xm134,-163v-28,0,-45,6,-50,29r-62,0v7,-54,54,-66,114,-66v62,1,108,9,111,65v2,45,-6,101,7,135r-64,0r-4,-21v-46,50,-219,36,-169,-63v22,-44,106,-26,161,-40v15,-24,-9,-39,-44,-39xm127,-268r78,0r-52,51r-58,0","w":266},"\u00e2":{"d":"92,-268r83,0r52,51r-68,0r-28,-29r-28,29r-63,0xm118,-30v40,-4,72,-17,67,-64v-26,14,-72,6,-99,18v-21,19,1,49,32,46xm134,-163v-28,0,-45,6,-50,29r-62,0v7,-54,54,-66,114,-66v62,1,108,9,111,65v2,45,-6,101,7,135r-64,0r-4,-21v-46,50,-219,36,-169,-63v22,-44,106,-26,161,-40v15,-24,-9,-39,-44,-39","w":266},"\u00e4":{"d":"118,-30v40,-4,72,-17,67,-64v-26,14,-72,6,-99,18v-21,19,1,49,32,46xm134,-163v-28,0,-45,6,-50,29r-62,0v7,-54,54,-66,114,-66v62,1,108,9,111,65v2,45,-6,101,7,135r-64,0r-4,-21v-46,50,-219,36,-169,-63v22,-44,106,-26,161,-40v15,-24,-9,-39,-44,-39xm51,-260r63,0r0,43r-63,0r0,-43xm154,-260r63,0r0,43r-63,0r0,-43","w":266},"\u00e0":{"d":"118,-30v40,-4,72,-17,67,-64v-26,14,-72,6,-99,18v-21,19,1,49,32,46xm134,-163v-28,0,-45,6,-50,29r-62,0v7,-54,54,-66,114,-66v62,1,108,9,111,65v2,45,-6,101,7,135r-64,0r-4,-21v-46,50,-219,36,-169,-63v22,-44,106,-26,161,-40v15,-24,-9,-39,-44,-39xm63,-268r77,0r32,51r-57,0","w":266},"\u00e5":{"d":"136,-210v-27,0,-45,-18,-45,-45v0,-28,19,-46,45,-46v27,0,46,17,46,46v0,28,-18,45,-46,45xm136,-279v-12,0,-23,12,-23,24v0,11,12,23,23,23v12,0,24,-11,24,-23v0,-12,-12,-24,-24,-24xm118,-30v40,-4,72,-17,67,-64v-26,14,-72,6,-99,18v-21,19,1,49,32,46xm134,-163v-28,0,-45,6,-50,29r-62,0v7,-54,54,-66,114,-66v62,1,108,9,111,65v2,45,-6,101,7,135r-64,0r-4,-21v-46,50,-219,36,-169,-63v22,-44,106,-26,161,-40v15,-24,-9,-39,-44,-39","w":266},"\u00e3":{"d":"175,-217v-33,1,-85,-38,-99,-2r-31,0v6,-40,47,-61,90,-41v19,4,52,18,58,-6r29,0v-3,28,-16,48,-47,49xm118,-30v40,-4,72,-17,67,-64v-26,14,-72,6,-99,18v-21,19,1,49,32,46xm134,-163v-28,0,-45,6,-50,29r-62,0v7,-54,54,-66,114,-66v62,1,108,9,111,65v2,45,-6,101,7,135r-64,0r-4,-21v-46,50,-219,36,-169,-63v22,-44,106,-26,161,-40v15,-24,-9,-39,-44,-39","w":266},"\u00e9":{"d":"76,-80v-1,53,95,64,115,22r67,0v-17,45,-60,65,-120,65v-75,-1,-127,-28,-127,-103v0,-76,51,-103,127,-104v82,-1,124,41,124,120r-186,0xm137,-161v-33,0,-55,18,-61,44r121,-1v-5,-27,-27,-43,-60,-43xm130,-268r78,0r-52,51r-58,0","w":272},"\u00ea":{"d":"95,-268r83,0r52,51r-68,0r-28,-29r-28,29r-63,0xm76,-80v-1,53,95,64,115,22r67,0v-17,45,-60,65,-120,65v-75,-1,-127,-28,-127,-103v0,-76,51,-103,127,-104v82,-1,124,41,124,120r-186,0xm137,-161v-33,0,-55,18,-61,44r121,-1v-5,-27,-27,-43,-60,-43","w":272},"\u00eb":{"d":"76,-80v-1,53,95,64,115,22r67,0v-17,45,-60,65,-120,65v-75,-1,-127,-28,-127,-103v0,-76,51,-103,127,-104v82,-1,124,41,124,120r-186,0xm137,-161v-33,0,-55,18,-61,44r121,-1v-5,-27,-27,-43,-60,-43xm54,-260r63,0r0,43r-63,0r0,-43xm157,-260r63,0r0,43r-63,0r0,-43","w":272},"\u00e8":{"d":"76,-80v-1,53,95,64,115,22r67,0v-17,45,-60,65,-120,65v-75,-1,-127,-28,-127,-103v0,-76,51,-103,127,-104v82,-1,124,41,124,120r-186,0xm137,-161v-33,0,-55,18,-61,44r121,-1v-5,-27,-27,-43,-60,-43xm66,-268r77,0r32,51r-57,0","w":272},"\u00ed":{"d":"22,-193r63,0r0,193r-63,0r0,-193xm46,-268r78,0r-52,51r-58,0","w":106},"\u00ee":{"d":"12,-268r83,0r52,51r-68,0r-28,-29r-28,29r-63,0xm22,-193r63,0r0,193r-63,0r0,-193","w":106},"\u00ef":{"d":"22,-193r63,0r0,193r-63,0r0,-193xm-30,-260r63,0r0,43r-63,0r0,-43xm73,-260r63,0r0,43r-63,0r0,-43","w":106},"\u00ec":{"d":"22,-193r63,0r0,193r-63,0r0,-193xm-18,-268r77,0r32,51r-57,0","w":106},"\u00f1":{"d":"175,-217v-33,1,-85,-38,-99,-2r-31,0v6,-40,47,-61,90,-41v19,4,52,18,58,-6r29,0v-3,28,-16,48,-47,49xm83,-165v35,-48,162,-48,162,36r0,129r-63,0v-7,-58,25,-149,-43,-149v-71,0,-52,84,-54,149r-63,0r0,-193r61,0r0,28","w":266},"\u00f3":{"d":"140,7v-75,0,-127,-28,-127,-103v0,-76,51,-104,127,-104v76,0,127,28,127,104v0,75,-52,103,-127,103xm140,-156v-39,0,-62,21,-62,60v0,39,24,59,62,59v38,0,62,-20,62,-59v0,-39,-23,-60,-62,-60xm133,-268r78,0r-52,51r-58,0"},"\u00f4":{"d":"98,-268r84,0r52,51r-68,0r-28,-29r-28,29r-64,0xm140,7v-75,0,-127,-28,-127,-103v0,-76,51,-104,127,-104v76,0,127,28,127,104v0,75,-52,103,-127,103xm140,-156v-39,0,-62,21,-62,60v0,39,24,59,62,59v38,0,62,-20,62,-59v0,-39,-23,-60,-62,-60"},"\u00f6":{"d":"140,7v-75,0,-127,-28,-127,-103v0,-76,51,-104,127,-104v76,0,127,28,127,104v0,75,-52,103,-127,103xm140,-156v-39,0,-62,21,-62,60v0,39,24,59,62,59v38,0,62,-20,62,-59v0,-39,-23,-60,-62,-60xm57,-260r63,0r0,43r-63,0r0,-43xm160,-260r63,0r0,43r-63,0r0,-43"},"\u00f2":{"d":"140,7v-75,0,-127,-28,-127,-103v0,-76,51,-104,127,-104v76,0,127,28,127,104v0,75,-52,103,-127,103xm140,-156v-39,0,-62,21,-62,60v0,39,24,59,62,59v38,0,62,-20,62,-59v0,-39,-23,-60,-62,-60xm69,-268r77,0r32,51r-57,0"},"\u00f5":{"d":"182,-217v-34,1,-84,-38,-100,-2r-31,0v7,-39,47,-61,90,-41v19,3,52,18,58,-6r30,0v-5,27,-16,48,-47,49xm140,7v-75,0,-127,-28,-127,-103v0,-76,51,-104,127,-104v76,0,127,28,127,104v0,75,-52,103,-127,103xm140,-156v-39,0,-62,21,-62,60v0,39,24,59,62,59v38,0,62,-20,62,-59v0,-39,-23,-60,-62,-60"},"\u00fa":{"d":"128,-42v72,0,52,-86,54,-151r63,0r0,193r-61,0v-1,-8,2,-20,-1,-26v-33,48,-161,48,-161,-36r0,-131r63,0v7,58,-26,151,43,151xm127,-268r78,0r-52,51r-58,0","w":266},"\u00fb":{"d":"92,-268r83,0r52,51r-68,0r-28,-29r-28,29r-63,0xm128,-42v72,0,52,-86,54,-151r63,0r0,193r-61,0v-1,-8,2,-20,-1,-26v-33,48,-161,48,-161,-36r0,-131r63,0v7,58,-26,151,43,151","w":266},"\u00fc":{"d":"128,-42v72,0,52,-86,54,-151r63,0r0,193r-61,0v-1,-8,2,-20,-1,-26v-33,48,-161,48,-161,-36r0,-131r63,0v7,58,-26,151,43,151xm51,-260r63,0r0,43r-63,0r0,-43xm154,-260r63,0r0,43r-63,0r0,-43","w":266},"\u00f9":{"d":"128,-42v72,0,52,-86,54,-151r63,0r0,193r-61,0v-1,-8,2,-20,-1,-26v-33,48,-161,48,-161,-36r0,-131r63,0v7,58,-26,151,43,151xm63,-268r77,0r32,51r-57,0","w":266},"\u00ff":{"d":"239,-193r-105,225v-12,41,-60,43,-113,38r0,-44v36,6,57,-5,64,-33r-91,-186r69,0r55,127r53,-127r68,0xm34,-260r63,0r0,43r-63,0r0,-43xm137,-260r63,0r0,43r-63,0r0,-43","w":233},"!":{"d":"32,-257r70,0r-11,174r-49,0xm32,-61r70,0r0,61r-70,0r0,-61","w":133},"\"":{"d":"122,-257r44,0r0,127r-44,0r0,-127xm47,-257r44,0r0,127r-44,0r0,-127","w":213},"\u00a4":{"d":"198,-125v0,-32,-19,-53,-51,-53v-31,0,-51,21,-51,53v0,32,20,53,51,53v32,0,51,-21,51,-53xm226,-179v20,26,22,81,0,107r21,22r-26,25r-21,-21v-26,21,-80,21,-106,0r-22,21r-25,-25r21,-21v-21,-26,-21,-81,0,-108r-21,-20r25,-26r21,21v26,-21,82,-21,108,0r20,-21r26,26","w":293},"\u0141":{"d":"24,-74r-24,16r0,-49r24,-16r0,-134r70,0r0,89r56,-36r0,48r-56,36r0,69r157,0r0,51r-227,0r0,-74","w":259},"\u0142":{"d":"22,-86r-22,17r0,-45r22,-17r0,-130r63,0r0,88r22,-15r0,45r-22,15r0,128r-63,0r0,-86","w":106},"\u00be":{"d":"275,-257r35,0r-131,264r-34,0xm140,-149v0,-22,-35,-16,-59,-17r0,-31v21,-1,51,6,52,-14v-4,-23,-53,-18,-58,1r-50,0v6,-38,42,-46,85,-47v45,-1,74,9,76,44v1,17,-12,26,-26,29v18,3,33,15,33,35v-1,73,-177,69,-173,-3r51,0v0,30,69,30,69,3xm336,-29r-100,0r0,-30r91,-91r53,0r0,90r30,0r0,31r-30,0r0,29r-44,0r0,-29xm336,-60r0,-59r-53,59r53,0","w":439},"\u00bc":{"d":"336,-119r-53,59r53,0r0,-59xm336,-29r-100,0r0,-30r91,-91r53,0r0,90r30,0r0,31r-30,0r0,29r-44,0r0,-29xm234,-257r34,0r-130,264r-34,0xm20,-227v30,0,51,-3,58,-26r39,0r0,150r-49,0r0,-91r-48,0r0,-33","w":439},"\u00b9":{"d":"6,-227v30,0,51,-3,58,-26r40,0r0,150r-49,0r0,-91r-49,0r0,-33","w":129},"\u00d7":{"d":"77,-91r-56,-56r31,-31r56,56r56,-56r31,31r-56,56r56,56r-31,31r-56,-56r-56,56r-31,-31","w":216},"\u00de":{"d":"216,-128v0,-55,-73,-31,-122,-36r0,71v47,-6,122,19,122,-35xm288,-133v1,56,-29,87,-85,87r-109,0r0,46r-70,0r0,-257r70,0r0,46r109,0v53,1,84,28,85,78","w":299},"\u00a6":{"d":"18,-92r44,0r0,99r-44,0r0,-99xm18,-264r44,0r0,99r-44,0r0,-99","w":79},"\u00d0":{"d":"311,-129v0,81,-39,128,-120,129r-167,0r0,-110r-24,0r0,-45r24,0r0,-102r161,0v84,0,126,45,126,128xm239,-131v0,-49,-22,-78,-73,-77r-72,0r0,53r60,0r0,45r-60,0r0,61r78,0v49,1,67,-31,67,-82","w":326},"\u00bd":{"d":"234,-257r34,0r-130,264r-34,0xm410,-107v0,55,-82,44,-115,72r115,0r0,35r-173,0v1,-66,67,-68,111,-89v20,-10,2,-34,-19,-34v-20,0,-30,11,-34,28r-53,0v0,-48,40,-59,87,-59v43,0,81,10,81,47xm20,-227v30,0,51,-3,58,-26r39,0r0,150r-49,0r0,-91r-48,0r0,-33","w":439},"\u00f0":{"d":"140,-144v-37,0,-62,17,-62,53v0,34,25,54,62,54v37,0,62,-20,62,-54v0,-36,-25,-53,-62,-53xm13,-93v-3,-86,108,-119,170,-77v-18,-24,-34,-36,-61,-49r-46,22r-23,-16r41,-19r-39,-12r36,-34v20,5,44,12,61,20r41,-19r24,15r-41,19v49,28,89,66,89,137v0,77,-45,113,-125,113v-74,0,-125,-27,-127,-100"},"\u00fe":{"d":"142,-151v-37,1,-59,20,-59,56v0,35,23,55,59,55v37,0,60,-19,60,-55v0,-36,-23,-56,-60,-56xm160,7v-34,1,-60,-11,-75,-29r0,94r-63,0r0,-333r63,0r1,94v53,-63,189,-26,181,71v-5,65,-42,101,-107,103"},"\u00b2":{"d":"182,-210v0,54,-82,44,-115,72r115,0r0,35r-173,0v1,-66,67,-68,111,-89v21,-10,2,-34,-19,-34v-20,0,-30,11,-34,28r-53,0v2,-47,39,-58,87,-59v43,0,81,10,81,47","w":190},"\u00b3":{"d":"129,-149v0,-22,-35,-16,-59,-17r0,-31v21,-1,52,6,52,-14v0,-22,-54,-19,-58,1r-50,0v6,-38,42,-47,85,-47v45,-1,74,9,76,44v1,17,-12,26,-26,29v18,3,33,15,33,35v-1,73,-177,69,-173,-3r51,0v0,30,69,30,69,3","w":190},"\u0160":{"d":"189,-274r-84,0r-52,-51r68,0r28,29r28,-29r63,0xm20,-151v-48,-106,107,-138,206,-100v27,10,48,32,50,68r-78,0v-1,-48,-112,-52,-112,-6v0,16,15,20,30,24v66,18,168,2,170,86v2,99,-148,99,-229,72v-29,-10,-49,-33,-49,-74r78,0v2,33,31,41,66,41v40,0,73,-28,44,-52v-54,-23,-152,-6,-176,-59","w":293},"\u00dd":{"d":"105,-90r-114,-167r82,0r67,112r67,-112r82,0r-114,167r0,90r-70,0r0,-90xm133,-325r78,0r-52,51r-58,0"},"\u017d":{"d":"179,-274r-84,0r-52,-51r68,0r28,29r28,-29r63,0xm6,-45r170,-163r-159,0r0,-49r250,0r0,45r-169,163r169,0r0,49r-261,0r0,-45","w":273},"\u0161":{"d":"168,-217r-83,0r-52,-51r68,0r28,29r28,-29r63,0xm239,-80v35,97,-130,103,-198,71v-20,-9,-29,-28,-31,-51r70,0v0,35,85,38,93,7v0,-19,-20,-16,-36,-20v-49,-13,-121,1,-121,-62v0,-96,219,-86,220,0r-70,0v-5,-22,-30,-28,-56,-25v-24,-5,-41,29,-13,35v50,11,126,2,142,45","w":253},"\u00fd":{"d":"239,-193r-105,225v-12,41,-60,43,-113,38r0,-44v36,6,57,-5,64,-33r-91,-186r69,0r55,127r53,-127r68,0xm110,-268r78,0r-52,51r-58,0","w":233},"\u017e":{"d":"158,-217r-83,0r-52,-51r68,0r28,29r28,-29r63,0xm9,-40r122,-106r-115,0r0,-47r204,0r0,40r-122,106r126,0r0,47r-215,0r0,-40","w":233}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990 Adobe Systems Incorporated.  All Rights Reserved.Helvetica
 * is a trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1990 Adobe Systems.  All Rights Reserved.
 * This software is the property of Adobe Systems  Incorporated and its licensors,
 * and may not be reproduced, used,   displayed, modified, disclosed or transferred
 * without the express   written approval of Adobe.    The digitally encoded
 * machine readable outline data for producing  the Typefaces licensed to you is
 * copyrighted (c) 1981 Linotype AG  and/or its subsidiaries. All Rights Reserved. 
 * This data is the property of Linotype AG and/or its subsidiaries  and may not be
 * reproduced, used, displayed, modified, disclosed or   transferred without the
 * express written approval of Linotype AG   and/or its subsidiaries.  12
 * Helvetica* 43 Light Extended 60472
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 */
Cufon.registerFont({"w":240,"face":{"font-family":"font-03","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"6","bbox":"-36 -343 409 79.3805","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"$":{"d":"111,-230v-64,-11,-93,69,-26,82v8,2,17,4,26,5r0,-87xm131,-19v65,14,103,-71,34,-88v-9,-3,-21,-5,-34,-7r0,95xm232,-72v0,57,-45,76,-101,78r0,35r-20,0r0,-35v-61,-3,-102,-25,-103,-88r27,0v1,46,32,61,76,63r0,-98v-46,-8,-95,-15,-95,-67v0,-52,43,-70,95,-71r0,-22r20,0r0,22v51,5,92,23,94,77r-27,0v-3,-36,-30,-49,-67,-52r0,91v48,10,101,13,101,67"},"%":{"d":"221,-64v0,30,12,52,40,52v28,0,41,-22,41,-52v0,-30,-13,-51,-41,-52v-28,0,-40,22,-40,52xm248,-255r21,0r-171,261r-21,0xm45,-185v0,30,12,52,40,52v28,0,41,-22,41,-52v0,-30,-13,-51,-41,-52v-28,0,-40,22,-40,52xm324,-64v0,44,-22,70,-63,70v-41,0,-63,-27,-63,-70v0,-43,22,-70,63,-70v41,0,63,26,63,70xm148,-185v0,43,-22,70,-63,70v-41,0,-63,-27,-63,-70v0,-43,22,-70,63,-70v41,0,63,27,63,70","w":346},"&":{"d":"52,-69v0,68,119,64,149,21r-89,-84v-33,13,-60,26,-60,63xm253,-111v-1,20,-9,44,-20,59r55,52r-37,0r-33,-32v-40,55,-196,56,-192,-39v2,-48,36,-60,71,-76v-15,-15,-33,-29,-33,-57v0,-35,27,-52,63,-53v38,0,63,18,63,52v0,35,-26,51,-54,62r79,75v7,-11,11,-28,14,-43r24,0xm120,-157v25,-11,45,-20,45,-46v0,-20,-16,-32,-40,-32v-36,0,-45,39,-22,60v5,4,10,11,17,18","w":280},"(":{"d":"94,68v-59,-52,-87,-195,-33,-278v12,-18,22,-32,33,-47r20,0v-28,41,-58,90,-58,163v0,72,30,122,58,162r-20,0","w":126},")":{"d":"97,-94v0,73,-31,123,-65,162r-20,0v31,-41,59,-89,59,-162v0,-73,-29,-122,-59,-163r20,0v33,39,65,89,65,163","w":126},"*":{"d":"67,-257r20,0r0,48r45,-17r8,18r-48,18r33,37r-13,13r-35,-40r-35,40r-14,-13r33,-37r-47,-18r7,-18r46,17r0,-48","w":153},"+":{"d":"99,-82r-82,0r0,-18r82,0r0,-82r18,0r0,82r82,0r0,18r-82,0r0,82r-18,0r0,-82","w":216},",":{"d":"35,-40r31,0v1,43,2,84,-35,90r0,-13v14,-6,17,-18,17,-37r-13,0r0,-40","w":100},"-":{"d":"25,-112r110,0r0,27r-110,0r0,-27","w":159},"\u00ad":{"d":"25,-112r110,0r0,27r-110,0r0,-27","w":159},".":{"d":"35,-40r31,0r0,40r-31,0r0,-40","w":100},"\/":{"d":"125,-264r20,0r-123,270r-21,0","w":146},"0":{"d":"199,-124v0,-62,-17,-109,-79,-109v-61,1,-78,47,-78,109v0,61,16,107,78,107v63,0,79,-46,79,-107xm15,-124v0,-79,30,-131,105,-131v75,0,105,51,105,131v0,79,-30,130,-105,130v-74,0,-105,-52,-105,-130"},"1":{"d":"7,-207v48,2,80,-4,82,-48r23,0r0,255r-27,0r0,-187r-78,0r0,-20","w":159},"2":{"d":"211,-178v0,97,-129,84,-159,154r162,0r0,24r-195,0v7,-93,122,-92,161,-156v15,-43,-13,-77,-59,-77v-47,0,-69,24,-70,68r-27,0v1,-62,35,-90,97,-90v55,0,90,26,90,77"},"3":{"d":"192,-70v1,-48,-41,-53,-90,-51r0,-22v42,1,81,-1,80,-43v-1,-34,-26,-47,-60,-47v-44,0,-70,19,-71,62r-27,0v4,-55,38,-84,98,-84v49,0,87,20,87,69v0,31,-21,45,-47,52v34,5,55,26,57,63v7,85,-126,95,-175,55v-18,-14,-26,-37,-26,-65r27,0v2,47,28,64,77,64v42,0,69,-15,70,-53"},"4":{"d":"150,-217r-108,132r108,0r0,-132xm150,-63r-135,0r0,-24r137,-168r23,0r0,170r47,0r0,22r-47,0r0,63r-25,0r0,-63"},"5":{"d":"190,-81v6,-74,-111,-83,-139,-35r-25,-1r25,-132r150,0r0,22r-130,0r-17,83v14,-12,38,-24,66,-24v60,1,93,28,97,87v6,86,-116,109,-171,66v-17,-13,-25,-33,-28,-57r26,0v6,37,29,55,73,55v45,0,70,-20,73,-64"},"6":{"d":"20,-116v0,-109,81,-176,171,-119v14,8,22,26,23,45r-26,0v-1,-51,-98,-56,-122,-18v-13,20,-24,52,-21,87v15,-24,38,-46,78,-46v59,0,98,28,98,87v0,57,-41,86,-98,86v-72,0,-103,-44,-103,-122xm123,-145v-45,0,-72,22,-72,64v0,41,27,64,72,64v43,0,71,-23,71,-64v0,-41,-28,-64,-71,-64"},"7":{"d":"199,-225v-52,53,-101,129,-114,225r-29,0v15,-94,64,-170,117,-225r-163,0r0,-24r189,0r0,24","w":213},"8":{"d":"120,-125v-41,0,-76,14,-76,56v0,40,34,52,76,52v42,0,77,-12,77,-52v0,-42,-36,-56,-77,-56xm120,6v-60,0,-100,-21,-103,-75v-2,-43,31,-57,60,-68v-25,-6,-48,-20,-47,-53v1,-49,38,-64,90,-65v53,0,89,17,91,65v1,33,-25,45,-48,54v32,8,61,24,60,67v-2,55,-44,75,-103,75xm56,-188v0,29,27,41,64,41v37,0,63,-11,64,-41v1,-36,-29,-45,-64,-45v-35,0,-64,10,-64,45"},"9":{"d":"221,-133v7,108,-82,176,-171,119v-14,-9,-22,-26,-24,-45r27,0v1,51,98,55,122,17v13,-20,23,-53,20,-87v-13,26,-38,47,-78,47v-59,0,-97,-29,-97,-87v0,-57,40,-86,97,-86v74,0,99,46,104,122xm117,-104v45,0,73,-22,73,-64v0,-42,-29,-65,-73,-65v-42,0,-71,23,-71,65v0,41,28,64,71,64"},":":{"d":"35,-40r31,0r0,40r-31,0r0,-40xm35,-182r31,0r0,39r-31,0r0,-39","w":100},";":{"d":"35,-40r31,0v1,43,2,84,-35,90r0,-13v14,-6,17,-18,17,-37r-13,0r0,-40xm35,-182r31,0r0,39r-31,0r0,-39","w":100},"\u037e":{"d":"35,-40r31,0v1,43,2,84,-35,90r0,-13v14,-6,17,-18,17,-37r-13,0r0,-40xm35,-182r31,0r0,39r-31,0r0,-39","w":100},"<":{"d":"17,-101r182,-84r0,20r-160,74r160,74r0,20r-182,-84r0,-20","w":216},"=":{"d":"17,-135r182,0r0,18r-182,0r0,-18xm17,-65r182,0r0,18r-182,0r0,-18","w":216},">":{"d":"17,-165r0,-20r182,84r0,20r-182,84r0,-20r160,-74","w":216},"?":{"d":"113,-239v-42,0,-66,21,-67,62r-27,0v3,-55,36,-87,94,-87v51,0,92,22,93,75v2,69,-83,56,-84,122r-24,0v-6,-74,81,-56,81,-122v0,-36,-29,-50,-66,-50xm94,-40r31,0r0,40r-31,0r0,-40","w":233},"@":{"d":"154,-190v-43,3,-63,44,-65,87v-1,21,8,39,30,37v42,-3,64,-47,64,-89v0,-22,-7,-37,-29,-35xm155,-208v21,-1,34,12,40,30r8,-24r21,0v-13,44,-31,82,-40,129v0,6,3,9,9,9v39,-6,61,-46,61,-88v0,-61,-43,-96,-103,-96v-71,0,-117,48,-117,119v0,72,47,120,117,120v45,0,77,-22,96,-51r20,0v-23,37,-58,66,-116,66v-83,0,-135,-53,-135,-135v0,-82,54,-135,135,-135v71,0,121,41,121,113v0,56,-32,97,-83,103v-14,2,-22,-11,-24,-25v-22,39,-103,30,-98,-29v5,-58,31,-103,88,-106","w":288},"A":{"d":"130,-230r-58,127r114,0xm197,-78r-135,0r-35,78r-29,0r116,-257r31,0r117,257r-31,0","w":259,"k":{"y":6,"w":6,"v":6,"Y":13,"W":13,"V":13,"T":20}},"B":{"d":"252,-73v-2,99,-133,68,-228,73r0,-257v88,6,219,-29,218,65v0,30,-20,48,-45,56v32,5,55,27,55,63xm215,-191v0,-69,-104,-34,-165,-42r0,88v65,-6,165,23,165,-46xm223,-73v2,-75,-107,-40,-173,-48r0,97v69,-5,171,23,173,-49","w":266},"C":{"d":"152,-18v59,0,91,-30,100,-80r27,0v-9,65,-54,104,-127,104v-87,0,-131,-48,-137,-135v-9,-132,177,-179,247,-84v8,12,12,26,14,43r-26,0v-8,-47,-45,-69,-98,-69v-70,0,-109,37,-108,110v1,69,37,111,108,111","w":293},"D":{"d":"262,-129v-1,75,-34,129,-109,129r-129,0r0,-257r125,0v76,-1,114,51,113,128xm234,-129v0,-64,-24,-104,-86,-104r-98,0r0,209r98,0v60,-3,86,-40,86,-105","w":280},"E":{"d":"28,-257r205,0r0,24r-178,0r0,88r171,0r0,24r-171,0r0,97r180,0r0,24r-207,0r0,-257","w":246},"F":{"d":"24,-257r192,0r0,24r-166,0r0,88r158,0r0,24r-158,0r0,121r-26,0r0,-257","w":219,"k":{"A":13,".":40,",":40}},"G":{"d":"45,-129v-13,120,163,149,204,54v4,-11,7,-21,9,-33r-94,0r0,-24r119,0r0,132r-21,0v-2,-16,0,-35,-4,-49v-22,32,-51,56,-107,55v-87,-1,-129,-48,-134,-135v-9,-136,183,-178,249,-81v7,10,10,22,12,34r-29,0v-10,-43,-44,-63,-95,-63v-71,0,-102,41,-109,110","w":306},"H":{"d":"24,-257r26,0r0,109r186,0r0,-109r27,0r0,257r-27,0r0,-124r-186,0r0,124r-26,0r0,-257","w":286},"I":{"d":"27,-257r26,0r0,257r-26,0r0,-257","w":79},"J":{"d":"91,6v-60,0,-83,-32,-82,-90r27,0v-2,44,14,69,57,68v40,0,58,-21,57,-63r0,-178r26,0r0,185v-1,53,-30,78,-85,78","w":200},"K":{"d":"28,-257r27,0r0,139r166,-139r38,0r-127,106r136,151r-38,0r-119,-133r-56,46r0,87r-27,0r0,-257","w":266},"L":{"d":"24,-257r26,0r0,233r163,0r0,24r-189,0r0,-257","w":213,"k":{"y":13,"Y":40,"W":27,"V":33,"T":40}},"M":{"d":"292,-257r37,0r0,257r-26,0r-1,-222r-113,222r-25,0r-114,-222r0,222r-26,0r0,-257r39,0r114,224","w":353},"N":{"d":"24,-257r32,0r180,220r0,-220r27,0r0,257r-31,0r-182,-220r0,220r-26,0r0,-257","w":286},"O":{"d":"153,6v-85,0,-139,-47,-139,-135v0,-88,56,-135,139,-135v84,0,140,47,140,135v0,88,-55,135,-140,135xm153,-239v-69,0,-111,40,-111,110v0,70,41,111,111,111v70,0,111,-39,111,-111v0,-71,-42,-110,-111,-110","w":306},"P":{"d":"215,-183v0,-75,-95,-44,-160,-50r0,101v66,-5,160,23,160,-51xm244,-183v-1,51,-34,75,-89,75r-100,0r0,108r-27,0r0,-257v92,5,219,-27,216,74","w":253,"k":{"A":13,".":46,",":46}},"Q":{"d":"42,-129v-3,89,81,132,163,100r-34,-26r14,-17r41,31v23,-19,39,-45,38,-88v-1,-71,-42,-110,-111,-110v-69,0,-109,40,-111,110xm293,-129v0,49,-18,82,-46,104r39,30r-14,18r-44,-35v-92,46,-220,-1,-214,-117v4,-88,56,-135,139,-135v84,0,139,47,140,135","w":306},"R":{"d":"220,-53v0,-84,-93,-55,-165,-60r0,113r-27,0r0,-257v91,6,226,-29,224,69v-1,34,-21,56,-51,63v58,2,37,83,55,125r-29,0v-6,-11,-7,-32,-7,-53xm223,-188v-2,-70,-104,-38,-168,-45r0,95v67,-6,170,25,168,-50","w":266},"S":{"d":"40,-143v-60,-46,2,-129,77,-121v59,6,105,21,108,80r-27,0v-3,-42,-36,-55,-81,-55v-55,0,-101,53,-49,80v53,28,159,6,164,85v5,103,-181,102,-213,32v-6,-12,-10,-26,-11,-43r27,0v3,49,37,68,90,67v63,13,111,-63,49,-89v-41,-17,-103,-12,-134,-36"},"T":{"d":"100,-233r-101,0r0,-24r229,0r0,24r-101,0r0,233r-27,0r0,-233","w":226,"k":{"y":27,"w":33,"u":27,"s":27,"r":27,"o":27,"i":27,"e":27,"c":27,"a":27,"A":13,";":33,":":33,".":33,"-":33,",":33}},"U":{"d":"140,-18v56,0,88,-23,88,-81r0,-158r27,0r0,158v0,71,-38,105,-115,105v-78,0,-115,-33,-115,-105r0,-158r27,0r0,158v-1,58,32,81,88,81","w":280},"V":{"d":"223,-257r29,0r-114,257r-29,0r-114,-257r31,0r99,227","w":246,"k":{"y":6,"u":6,"r":6,"o":13,"e":13,"a":13,"A":13,";":13,":":13,".":40,"-":13,",":40}},"W":{"d":"355,-257r29,0r-86,257r-31,0r-78,-220r-77,220r-31,0r-85,-257r30,0r72,222r76,-222r33,0r76,222","w":380,"k":{"o":6,"e":6,"a":6,"A":6,";":6,":":6,".":20,"-":13,",":20}},"X":{"d":"102,-130r-101,-127r36,0r84,106r86,-106r33,0r-101,125r104,132r-35,0r-88,-111r-89,111r-34,0"},"Y":{"d":"110,-108r-115,-149r34,0r94,122r95,-122r34,0r-115,149r0,108r-27,0r0,-108","w":246,"k":{"v":6,"u":13,"q":20,"p":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":20,":":20,".":46,"-":33,",":46}},"Z":{"d":"2,-24r191,-209r-179,0r0,-24r215,0r0,24r-192,209r194,0r0,24r-229,0r0,-24","w":233},"[":{"d":"39,-257r70,0r0,20r-46,0r0,285r46,0r0,20r-70,0r0,-325","w":126},"\\":{"d":"1,-264r20,0r124,270r-20,0","w":146},"]":{"d":"88,68r-71,0r0,-20r46,0r0,-285r-46,0r0,-20r71,0r0,325","w":126},"^":{"d":"108,-227r-72,141r-20,0r83,-163r18,0r83,163r-20,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"91,-14v51,0,87,-25,79,-87v-35,23,-133,-5,-133,49v0,29,24,38,54,38xm108,-171v-38,0,-61,7,-64,41r-25,0v5,-46,36,-64,89,-63v47,1,86,8,86,55r0,98v-2,21,9,22,29,21r0,18v-29,6,-54,-1,-52,-31v-22,48,-159,59,-160,-18v0,-71,92,-51,148,-66v10,-3,11,-7,11,-18v0,-33,-24,-37,-62,-37","w":219},"b":{"d":"124,6v-39,0,-61,-21,-77,-43r0,37r-26,0r0,-259r26,0r1,109v14,-24,38,-43,76,-43v65,1,102,37,102,99v0,63,-36,99,-102,100xm124,-171v-49,0,-78,28,-78,77v0,49,29,76,78,77v51,1,75,-30,75,-77v0,-49,-29,-77,-75,-77"},"c":{"d":"37,-94v-9,86,136,105,147,27r27,0v-10,43,-41,73,-95,73v-66,-1,-99,-35,-105,-100v-10,-114,179,-134,199,-32r-27,0v-7,-30,-32,-45,-67,-45v-50,0,-74,29,-79,77","w":219},"d":{"d":"116,-17v49,-1,78,-28,78,-77v0,-49,-29,-77,-78,-77v-46,0,-75,28,-75,77v0,47,24,78,75,77xm116,-193v39,0,60,21,77,43r0,-109r27,0r0,259r-27,0v-1,-12,2,-27,-1,-37v-13,25,-39,43,-76,43v-66,0,-102,-37,-102,-100v0,-62,37,-98,102,-99"},"e":{"d":"195,-107v-3,-70,-112,-84,-145,-30v-5,8,-8,18,-9,30r154,0xm116,-17v43,0,63,-13,74,-43r27,0v-15,40,-46,66,-101,66v-66,0,-97,-37,-102,-100v-9,-109,159,-132,198,-46v6,14,9,32,9,53r-180,0v2,45,28,70,75,70","w":233},"f":{"d":"121,-235v-26,-4,-60,-6,-56,26r0,22r53,0r0,20r-53,0r0,167r-26,0r0,-167r-41,0r0,-20r41,0v-8,-60,21,-81,82,-71r0,23","w":113},"g":{"d":"117,-22v48,-1,77,-28,77,-76v0,-47,-31,-72,-80,-73v-47,-1,-78,27,-77,73v1,50,29,77,80,76xm113,-193v39,-1,68,16,81,42r0,-36r26,0r0,180v9,92,-129,106,-184,63v-10,-9,-16,-23,-17,-38r25,0v5,34,32,40,72,41v61,2,87,-38,77,-101v-14,26,-42,42,-83,42v-62,0,-99,-34,-99,-98v0,-61,38,-94,102,-95"},"h":{"d":"123,-171v-49,-1,-76,24,-76,69r0,102r-26,0r0,-259r26,0r1,109v11,-27,40,-42,77,-43v54,-1,81,25,81,77r0,116r-26,0r0,-121v0,-36,-23,-49,-57,-50","w":226},"i":{"d":"20,-187r26,0r0,187r-26,0r0,-187xm20,-259r26,0r0,39r-26,0r0,-39","w":66},"j":{"d":"46,28v3,43,-29,56,-73,50r0,-22v27,3,47,1,47,-28r0,-215r26,0r0,215xm20,-259r26,0r0,39r-26,0r0,-39","w":66},"k":{"d":"21,-259r26,0r0,163r114,-91r40,0r-92,71r99,116r-36,0r-83,-99r-42,32r0,67r-26,0r0,-259","w":206},"l":{"d":"20,-259r26,0r0,259r-26,0r0,-259","w":66},"m":{"d":"189,-152v22,-55,150,-60,150,24r0,128r-26,0v-6,-70,27,-171,-56,-171v-39,0,-63,23,-64,60r0,111r-26,0v-6,-69,26,-176,-54,-171v-41,3,-66,23,-66,66r0,105r-26,0r0,-187r26,0v1,11,-2,25,1,34v17,-49,127,-55,141,1","w":360},"n":{"d":"125,-193v54,-1,81,25,81,77r0,116r-26,0r0,-121v0,-36,-23,-49,-57,-50v-49,-1,-76,24,-76,69r0,102r-26,0r0,-187r26,0v1,12,-2,27,1,37v11,-27,40,-42,77,-43","w":226},"o":{"d":"120,-171v-48,0,-79,28,-79,77v0,49,29,77,79,77v52,1,80,-29,80,-77v0,-48,-30,-77,-80,-77xm120,6v-67,0,-106,-37,-106,-100v0,-63,39,-99,106,-99v66,0,106,35,106,99v0,64,-40,100,-106,100"},"p":{"d":"124,6v-38,0,-61,-20,-77,-43r0,110r-26,0r0,-260r26,0v1,12,-2,27,1,37v12,-26,36,-43,76,-43v65,1,102,36,102,99v0,63,-36,100,-102,100xm124,-171v-47,0,-78,28,-78,77v0,49,28,77,78,77v48,0,75,-29,75,-77v0,-47,-26,-77,-75,-77"},"q":{"d":"114,-193v41,-1,65,18,79,43r0,-37r27,0r0,260r-27,0r-1,-110v-14,25,-39,43,-76,43v-65,0,-102,-37,-102,-100v0,-60,37,-97,100,-99xm116,-17v50,0,78,-28,78,-77v0,-49,-31,-77,-78,-77v-49,0,-75,30,-75,77v0,48,27,77,75,77"},"r":{"d":"135,-164v-54,-10,-88,16,-88,69r0,95r-26,0r0,-187r26,0v1,14,-2,31,1,43v12,-31,41,-54,87,-48r0,28","w":133,"k":{".":27,"-":20,",":27}},"s":{"d":"32,-101v-43,-37,1,-97,63,-92v50,4,86,14,89,61r-24,0v-7,-32,-27,-36,-65,-39v-36,-3,-77,33,-40,52v43,23,134,-1,137,65v4,69,-113,71,-159,44v-17,-10,-25,-26,-25,-49r25,0v4,35,30,42,70,42v55,14,90,-52,26,-63v-29,-5,-78,-5,-97,-21","w":200},"t":{"d":"118,1v-44,5,-79,2,-79,-45r0,-123r-41,0r0,-20r41,0r0,-59r26,0r0,59r53,0r0,20r-53,0r0,124v-4,29,31,26,53,21r0,23","w":126},"u":{"d":"104,-17v50,0,76,-24,76,-69r0,-101r26,0r0,187r-26,0v-1,-12,2,-27,-1,-37v-12,25,-39,42,-77,43v-53,-1,-81,-23,-81,-77r0,-116r26,0v6,70,-26,170,57,170","w":226},"v":{"d":"174,-187r28,0r-88,187r-28,0r-88,-187r29,0r73,156","w":200,"k":{".":20,",":20}},"w":{"d":"291,-187r29,0r-76,187r-29,0r-56,-150r-56,150r-29,0r-74,-187r29,0r59,153r57,-153r29,0r57,152","w":320,"k":{".":20,",":20}},"x":{"d":"85,-97r-80,-90r35,0r63,71r63,-71r35,0r-81,90r88,97r-36,0r-69,-78r-69,78r-35,0","w":206},"y":{"d":"174,-187r28,0r-111,240v-11,19,-40,22,-70,19r0,-22v29,1,46,-1,56,-23r12,-26r-91,-188r29,0r76,156","w":200,"k":{".":27,",":27}},"z":{"d":"7,-22r142,-143r-134,0r0,-22r173,0r0,22r-146,143r151,0r0,22r-186,0r0,-22","w":200},"{":{"d":"98,68v-115,17,-18,-145,-81,-155r0,-14v63,-10,-34,-172,81,-156r0,14v-75,-14,0,127,-63,149v37,10,28,72,28,119v0,27,10,32,35,30r0,13","w":126},"|":{"d":"31,-264r18,0r0,270r-18,0r0,-270","w":79},"}":{"d":"88,-38v-1,56,14,120,-60,106r0,-13v75,14,1,-126,63,-150v-36,-11,-28,-71,-28,-118v0,-29,-10,-32,-35,-30r0,-14v38,-4,60,9,60,44v0,41,-15,106,21,112r0,14v-23,1,-20,24,-21,49","w":126},"~":{"d":"70,-112v40,2,86,49,108,-2r13,13v-10,16,-21,31,-45,31v-38,0,-86,-51,-108,2r-13,-13v8,-16,20,-32,45,-31","w":216},"\u00a1":{"d":"38,-193r31,0r0,40r-31,0r0,-40xm39,-4r6,-122r16,0r7,122r0,68r-29,0r0,-68","w":106},"\u00a2":{"d":"116,-170v-65,-2,-88,84,-52,130v12,14,30,21,52,23r0,-153xm220,-67v-10,41,-38,71,-89,73r0,39r-15,0r0,-40v-59,-5,-96,-37,-96,-99v0,-58,36,-95,96,-99r0,-30r15,0r0,30v49,2,79,27,88,67r-27,0v-7,-29,-29,-43,-61,-45r0,154v35,-1,56,-21,63,-50r26,0"},"\u00a3":{"d":"78,-115v19,34,-4,78,-30,92v34,-16,77,-3,114,4v22,0,37,-11,53,-23r9,22v-25,30,-85,27,-126,12v-26,-9,-52,3,-69,13r-12,-20v27,-18,59,-60,34,-100r-32,0r0,-16r26,0v-42,-57,3,-124,80,-124v59,0,95,29,96,83r-27,0v0,-43,-31,-61,-72,-61v-36,0,-68,17,-68,54v0,19,11,34,18,48r79,0r0,16r-73,0"},"\u00a5":{"d":"107,-70v-1,-12,3,-31,-3,-38r-71,0r0,-18r57,0r-93,-123r31,0r92,122r92,-122r31,0r-93,123r58,0r0,18r-72,0v-4,9,-1,26,-2,38r74,0r0,18r-74,0r0,52r-27,0r0,-52r-74,0r0,-18r74,0"},"\u0192":{"d":"61,-144r49,0v10,-60,20,-130,104,-108r-4,22v-36,-9,-57,5,-64,39r-10,47r50,0r-3,16r-50,0v-16,59,-18,131,-45,179v-11,20,-46,24,-78,17r4,-22v24,4,57,5,59,-21v14,-47,23,-103,34,-153r-49,0"},"\u00a7":{"d":"201,4v0,78,-144,74,-161,16v-3,-8,-4,-17,-5,-26r27,0v-4,56,106,64,113,13v-20,-64,-124,-48,-153,-104v-17,-33,11,-68,38,-73v-10,-7,-20,-19,-21,-36v-3,-74,130,-73,153,-22v4,8,6,18,6,30r-27,0v-2,-30,-21,-43,-56,-43v-42,0,-67,38,-33,57v40,23,91,33,126,61v30,24,10,85,-28,87v11,9,21,19,21,40xm77,-159v-23,3,-49,35,-28,56v28,28,73,33,114,57v25,-2,48,-36,27,-57v-28,-27,-73,-35,-113,-56"},"'":{"d":"40,-257r20,0r0,90r-20,0r0,-90","w":100},"\u00ab":{"d":"93,-112r56,-48r0,28r-40,33r40,34r0,28r-56,-49r0,-26xm26,-112r57,-48r0,28r-41,33r41,34r0,28r-57,-49r0,-26","w":180},"\u00b7":{"d":"50,-89v-12,0,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,12,24,24v0,12,-12,23,-24,23","w":100},"\u2219":{"d":"50,-89v-12,0,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,12,24,24v0,12,-12,23,-24,23","w":100},"\u00b6":{"d":"15,-186v-5,-78,81,-73,159,-71r0,313r-21,0r0,-297r-43,0r0,297r-20,0r0,-174v-45,-1,-73,-27,-75,-68","w":216},"\u00bb":{"d":"31,-132r0,-28r56,48r0,26r-56,49r0,-28r40,-34xm97,-132r0,-28r57,48r0,26r-57,49r0,-28r41,-34","w":180},"\u00bf":{"d":"121,46v42,0,65,-21,66,-62r27,0v-3,55,-35,87,-93,87v-52,0,-93,-22,-94,-75v-2,-69,84,-55,84,-122r25,0v7,73,-82,58,-82,122v0,36,30,50,67,50xm139,-153r-31,0r0,-40r31,0r0,40","w":233},"`":{"d":"56,-215r-22,0r-52,-51r33,0","w":66},"\u00b4":{"d":"51,-266r33,0r-52,51r-22,0","w":66},"\u00af":{"d":"-36,-251r139,0r0,20r-139,0r0,-20","w":66},"\u02c9":{"d":"-36,-251r139,0r0,20r-139,0r0,-20","w":66},"\u00a8":{"d":"-21,-257r27,0r0,40r-27,0r0,-40xm60,-257r27,0r0,40r-27,0r0,-40","w":66},"\u00b8":{"d":"53,43v-1,-16,-28,-15,-38,-9v-13,-10,10,-23,14,-35r15,0v-4,7,-14,15,-14,22v19,-6,47,1,45,22v-2,29,-53,33,-81,21r4,-12v14,5,56,10,55,-9","w":66},"\u00c6":{"d":"190,-233r-19,0r-80,125r99,0r0,-125xm157,-257r224,0r0,24r-164,0r0,88r156,0r0,24r-156,0r0,97r165,0r0,24r-192,0r0,-84r-114,0r-53,84r-31,0","w":393},"\u00aa":{"d":"59,-150v31,-1,54,-13,49,-49v-22,14,-81,-4,-81,28v0,16,15,21,32,21xm145,-156v2,13,-2,16,-17,16v-13,0,-19,-6,-19,-19v-14,31,-102,34,-102,-11v0,-37,45,-35,83,-38v10,-1,18,-2,18,-11v-1,-18,-16,-20,-38,-20v-23,0,-38,3,-40,22r-18,0v-2,-50,114,-54,114,-4v0,26,-11,78,19,65","w":142},"\u00d8":{"d":"153,-239v-99,-7,-140,112,-87,184r164,-158v-18,-17,-45,-24,-77,-26xm153,-18v99,8,141,-113,87,-184r-163,158v18,17,44,23,76,26xm153,6v-40,0,-71,-12,-95,-32r-34,32r-10,-10r33,-32v-20,-23,-33,-50,-33,-93v0,-127,153,-170,235,-102r34,-33r10,11r-33,32v19,22,33,51,33,92v-1,88,-55,135,-140,135","w":306},"\u0152":{"d":"141,-18v40,0,71,-18,81,-46r0,-134v-11,-26,-42,-41,-81,-41v-64,0,-99,44,-99,110v0,68,33,111,99,111xm141,-264v36,0,63,12,81,31r0,-24r185,0r0,24r-159,0r0,88r151,0r0,24r-151,0r0,97r161,0r0,24r-187,0r0,-28v-18,21,-43,34,-81,34v-83,0,-127,-50,-127,-135v0,-80,46,-135,127,-135","w":420},"\u00ba":{"d":"78,-239v-28,0,-49,16,-49,43v-1,28,21,44,49,44v28,0,50,-16,49,-44v0,-27,-21,-44,-49,-43xm78,-136v-41,0,-69,-20,-69,-60v0,-40,28,-59,69,-59v41,0,69,20,69,59v0,40,-28,60,-69,60","w":156},"\u00e6":{"d":"192,-153v30,-60,154,-46,172,13v4,15,10,32,10,53r-178,0v-10,82,130,93,146,27r27,0v-14,39,-45,66,-99,66v-44,0,-76,-18,-87,-51v-15,59,-168,79,-170,-5v-2,-71,92,-51,148,-66v10,-3,11,-7,11,-18v0,-33,-24,-37,-62,-37v-38,0,-60,8,-64,41r-25,0v-5,-78,151,-85,171,-23xm347,-107v-1,-60,-88,-83,-129,-46v-12,12,-20,27,-22,46r151,0xm94,-14v51,0,86,-26,78,-87v-34,23,-132,-6,-132,49v0,30,25,38,54,38","w":386},"\u0131":{"d":"20,-187r26,0r0,187r-26,0r0,-187","w":66},"\u00f8":{"d":"175,-153v-47,-37,-134,-13,-134,59v0,20,5,36,16,50xm120,6v-32,0,-54,-10,-72,-24r-25,24r-9,-10r25,-22v-15,-16,-26,-39,-25,-68v2,-62,39,-98,106,-99v32,0,56,9,73,23r25,-23r8,9r-24,23v14,16,24,39,24,67v0,64,-40,100,-106,100xm120,-17v72,0,101,-78,63,-127r-117,109v13,12,31,18,54,18"},"\u0153":{"d":"212,-87v-13,83,126,93,140,27r26,0v-13,38,-42,66,-92,66v-44,0,-76,-17,-88,-50v-15,30,-44,50,-90,50v-61,0,-98,-39,-98,-100v0,-60,37,-97,99,-99v49,-1,74,20,91,50v17,-61,138,-64,166,-9v9,17,18,37,17,65r-171,0xm114,-171v-48,0,-77,28,-77,77v0,48,27,76,76,77v49,1,75,-28,75,-77v0,-47,-25,-77,-74,-77xm356,-107v-2,-57,-77,-81,-120,-49v-12,10,-20,27,-24,49r144,0","w":393},"\u00df":{"d":"184,-75v-1,-47,-38,-56,-88,-54r0,-24v38,4,75,-3,75,-41v0,-32,-27,-42,-60,-43v-41,-1,-64,16,-64,56r0,181r-26,0r0,-182v1,-54,31,-78,90,-77v52,0,84,18,86,65v2,31,-21,43,-43,51v33,6,57,29,56,72v0,61,-56,85,-117,74r0,-22v49,9,91,-10,91,-56","w":226},"\u00f7":{"d":"17,-100r182,0r0,18r-182,0r0,-18xm108,-145v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm108,3v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20","w":216},"\u00ae":{"d":"144,6v-83,0,-135,-54,-135,-135v0,-81,54,-135,135,-135v81,0,135,54,135,135v0,81,-52,135,-135,135xm144,-248v-71,0,-117,47,-117,119v0,72,46,120,117,120v71,0,117,-48,117,-120v0,-71,-46,-119,-117,-119xm207,-164v-1,27,-16,41,-40,44r48,72r-22,0r-47,-72r-34,0r0,72r-18,0r0,-161v52,0,116,-9,113,45xm189,-165v0,-36,-43,-27,-77,-28r0,58v35,-1,77,7,77,-30","w":288},"\u00e7":{"d":"130,43v-1,-16,-28,-15,-38,-9v-13,-8,6,-19,10,-29v-57,-6,-86,-38,-91,-99v-10,-114,179,-134,199,-32r-27,0v-7,-30,-32,-45,-67,-45v-50,0,-74,29,-79,77v-9,86,136,105,147,27r27,0v-10,43,-41,73,-95,73v-2,5,-10,10,-9,15v19,-6,46,1,45,22v-2,30,-54,33,-81,21r4,-12v14,5,56,10,55,-9","w":219},"\u00b1":{"d":"99,-182r18,0r0,65r82,0r0,18r-82,0r0,66r-18,0r0,-66r-82,0r0,-18r82,0r0,-65xm17,-18r182,0r0,18r-182,0r0,-18","w":216},"\u00c7":{"d":"152,-18v59,0,91,-30,100,-80r27,0v-9,65,-54,103,-127,104r-9,15v20,-5,48,0,46,22v-3,29,-54,33,-81,21r4,-12v14,5,56,10,54,-9v-2,-24,-38,-2,-44,-15r16,-22v-76,-8,-118,-52,-123,-135v-8,-132,177,-179,247,-84v8,12,12,26,14,43r-26,0v-8,-47,-45,-69,-98,-69v-70,0,-109,37,-108,110v1,69,37,111,108,111","w":293},"\u00a9":{"d":"144,-248v-71,0,-117,47,-117,119v0,72,46,120,117,120v71,0,117,-48,117,-120v0,-71,-46,-119,-117,-119xm148,-61v26,1,46,-17,49,-40r20,0v-7,31,-32,59,-69,58v-51,-2,-76,-33,-81,-86v-8,-93,133,-117,150,-29r-20,0v-4,-22,-23,-38,-50,-38v-40,1,-60,27,-60,67v0,40,20,67,61,68xm144,6v-83,0,-135,-54,-135,-135v0,-81,54,-135,135,-135v81,0,135,54,135,135v0,81,-52,135,-135,135","w":288},"\u00ac":{"d":"181,-117r-164,0r0,-18r182,0r0,96r-18,0r0,-78","w":216},"\u00b0":{"d":"72,-152v-30,0,-51,-19,-51,-51v0,-33,21,-52,51,-52v30,0,51,19,51,52v0,32,-21,51,-51,51xm72,-239v-20,0,-36,17,-36,36v0,19,17,35,36,35v19,0,36,-16,36,-35v0,-19,-16,-36,-36,-36","w":144},"\u00b5":{"d":"104,-17v50,0,76,-24,76,-69r0,-101r26,0r0,187r-26,0v-1,-12,2,-27,-1,-37v-13,41,-98,58,-132,25r0,85r-26,0r0,-260r26,0v5,71,-25,170,57,170","w":226},"\u03bc":{"d":"104,-17v50,0,76,-24,76,-69r0,-101r26,0r0,187r-26,0v-1,-12,2,-27,-1,-37v-13,41,-98,58,-132,25r0,85r-26,0r0,-260r26,0v5,71,-25,170,57,170","w":226},"#":{"d":"71,-81r-41,0r0,-16r43,0r8,-56r-41,0r0,-15r43,0r11,-82r18,0r-11,82r51,0r11,-82r18,0r-11,82r41,0r0,15r-43,0r-8,56r41,0r0,16r-43,0r-12,81r-18,0r12,-81r-51,0r-12,81r-18,0xm150,-153r-51,0r-8,56r51,0"},"\u00c1":{"d":"130,-230r-58,127r114,0xm197,-78r-135,0r-35,78r-29,0r116,-257r31,0r117,257r-31,0xm148,-321r33,0r-52,51r-22,0","w":259},"\u00c2":{"d":"116,-322r28,0r52,51r-27,0r-39,-36r-39,36r-27,0xm130,-230r-58,127r114,0xm197,-78r-135,0r-35,78r-29,0r116,-257r31,0r117,257r-31,0","w":259},"\u00c4":{"d":"130,-230r-58,127r114,0xm197,-78r-135,0r-35,78r-29,0r116,-257r31,0r117,257r-31,0xm76,-312r27,0r0,40r-27,0r0,-40xm157,-312r27,0r0,40r-27,0r0,-40","w":259},"\u00c0":{"d":"130,-230r-58,127r114,0xm197,-78r-135,0r-35,78r-29,0r116,-257r31,0r117,257r-31,0xm153,-270r-22,0r-52,-51r33,0","w":259},"\u00c5":{"d":"130,-264v-24,0,-40,-16,-40,-39v0,-24,15,-40,40,-40v24,0,40,17,40,40v0,23,-16,39,-40,39xm130,-329v-14,0,-26,12,-26,26v0,13,12,25,26,25v14,0,26,-12,26,-25v0,-14,-12,-26,-26,-26xm130,-230r-58,127r114,0xm197,-78r-135,0r-35,78r-29,0r116,-257r31,0r117,257r-31,0","w":259},"\u00c3":{"d":"100,-316v29,0,71,41,81,0r16,0v-2,43,-55,47,-84,23v-16,-7,-34,-1,-34,16r-16,0v6,-19,12,-39,37,-39xm130,-230r-58,127r114,0xm197,-78r-135,0r-35,78r-29,0r116,-257r31,0r117,257r-31,0","w":259},"\u00c9":{"d":"28,-257r205,0r0,24r-178,0r0,88r171,0r0,24r-171,0r0,97r180,0r0,24r-207,0r0,-257xm141,-321r33,0r-52,51r-22,0","w":246},"\u00ca":{"d":"109,-322r29,0r51,51r-27,0r-39,-36r-38,36r-27,0xm28,-257r205,0r0,24r-178,0r0,88r171,0r0,24r-171,0r0,97r180,0r0,24r-207,0r0,-257","w":246},"\u00cb":{"d":"28,-257r205,0r0,24r-178,0r0,88r171,0r0,24r-171,0r0,97r180,0r0,24r-207,0r0,-257xm69,-312r27,0r0,40r-27,0r0,-40xm150,-312r27,0r0,40r-27,0r0,-40","w":246},"\u00c8":{"d":"28,-257r205,0r0,24r-178,0r0,88r171,0r0,24r-171,0r0,97r180,0r0,24r-207,0r0,-257xm146,-270r-22,0r-52,-51r33,0","w":246},"\u00cd":{"d":"27,-257r26,0r0,257r-26,0r0,-257xm58,-321r33,0r-52,51r-22,0","w":79},"\u00ce":{"d":"26,-322r28,0r52,51r-27,0r-39,-36r-39,36r-27,0xm27,-257r26,0r0,257r-26,0r0,-257","w":79},"\u00cf":{"d":"27,-257r26,0r0,257r-26,0r0,-257xm-14,-312r27,0r0,40r-27,0r0,-40xm67,-312r27,0r0,40r-27,0r0,-40","w":79},"\u00cc":{"d":"27,-257r26,0r0,257r-26,0r0,-257xm63,-270r-22,0r-52,-51r33,0","w":79},"\u00d1":{"d":"175,-297v13,0,18,-7,19,-19r16,0v-4,20,-12,38,-37,39v-29,1,-60,-38,-79,-6v1,9,-10,5,-17,6v4,-20,12,-39,37,-39v25,0,37,18,61,19xm24,-257r32,0r180,220r0,-220r27,0r0,257r-31,0r-182,-220r0,220r-26,0r0,-257","w":286},"\u00d3":{"d":"153,6v-85,0,-139,-47,-139,-135v0,-88,56,-135,139,-135v84,0,140,47,140,135v0,88,-55,135,-140,135xm153,-239v-69,0,-111,40,-111,110v0,70,41,111,111,111v70,0,111,-39,111,-111v0,-71,-42,-110,-111,-110xm171,-321r33,0r-52,51r-22,0","w":306},"\u00d4":{"d":"139,-322r29,0r51,51r-27,0r-39,-36r-39,36r-27,0xm153,6v-85,0,-139,-47,-139,-135v0,-88,56,-135,139,-135v84,0,140,47,140,135v0,88,-55,135,-140,135xm153,-239v-69,0,-111,40,-111,110v0,70,41,111,111,111v70,0,111,-39,111,-111v0,-71,-42,-110,-111,-110","w":306},"\u00d6":{"d":"153,6v-85,0,-139,-47,-139,-135v0,-88,56,-135,139,-135v84,0,140,47,140,135v0,88,-55,135,-140,135xm153,-239v-69,0,-111,40,-111,110v0,70,41,111,111,111v70,0,111,-39,111,-111v0,-71,-42,-110,-111,-110xm99,-312r27,0r0,40r-27,0r0,-40xm180,-312r27,0r0,40r-27,0r0,-40","w":306},"\u00d2":{"d":"153,6v-85,0,-139,-47,-139,-135v0,-88,56,-135,139,-135v84,0,140,47,140,135v0,88,-55,135,-140,135xm153,-239v-69,0,-111,40,-111,110v0,70,41,111,111,111v70,0,111,-39,111,-111v0,-71,-42,-110,-111,-110xm176,-270r-22,0r-52,-51r33,0","w":306},"\u00d5":{"d":"185,-297v13,0,18,-7,19,-19r16,0v-4,20,-12,38,-37,39v-29,1,-60,-38,-79,-6v1,9,-10,5,-17,6v4,-20,12,-39,37,-39v25,0,37,18,61,19xm153,6v-85,0,-139,-47,-139,-135v0,-88,56,-135,139,-135v84,0,140,47,140,135v0,88,-55,135,-140,135xm153,-239v-69,0,-111,40,-111,110v0,70,41,111,111,111v70,0,111,-39,111,-111v0,-71,-42,-110,-111,-110","w":306},"\u00da":{"d":"140,-18v56,0,88,-23,88,-81r0,-158r27,0r0,158v0,71,-38,105,-115,105v-78,0,-115,-33,-115,-105r0,-158r27,0r0,158v-1,58,32,81,88,81xm158,-321r33,0r-52,51r-22,0","w":280},"\u00db":{"d":"126,-322r28,0r52,51r-27,0r-39,-36r-39,36r-27,0xm140,-18v56,0,88,-23,88,-81r0,-158r27,0r0,158v0,71,-38,105,-115,105v-78,0,-115,-33,-115,-105r0,-158r27,0r0,158v-1,58,32,81,88,81","w":280},"\u00dc":{"d":"140,-18v56,0,88,-23,88,-81r0,-158r27,0r0,158v0,71,-38,105,-115,105v-78,0,-115,-33,-115,-105r0,-158r27,0r0,158v-1,58,32,81,88,81xm86,-312r27,0r0,40r-27,0r0,-40xm167,-312r27,0r0,40r-27,0r0,-40","w":280},"\u00d9":{"d":"140,-18v56,0,88,-23,88,-81r0,-158r27,0r0,158v0,71,-38,105,-115,105v-78,0,-115,-33,-115,-105r0,-158r27,0r0,158v-1,58,32,81,88,81xm163,-270r-22,0r-52,-51r33,0","w":280},"\u0178":{"d":"110,-108r-115,-149r34,0r94,122r95,-122r34,0r-115,149r0,108r-27,0r0,-108xm69,-312r27,0r0,40r-27,0r0,-40xm150,-312r27,0r0,40r-27,0r0,-40","w":246},"\u00e1":{"d":"91,-14v51,0,87,-25,79,-87v-35,23,-133,-5,-133,49v0,29,24,38,54,38xm108,-171v-38,0,-61,7,-64,41r-25,0v5,-46,36,-64,89,-63v47,1,86,8,86,55r0,98v-2,21,9,22,29,21r0,18v-29,6,-54,-1,-52,-31v-22,48,-159,59,-160,-18v0,-71,92,-51,148,-66v10,-3,11,-7,11,-18v0,-33,-24,-37,-62,-37xm128,-266r33,0r-52,51r-22,0","w":219},"\u00e2":{"d":"96,-266r29,0r51,51r-27,0r-39,-37r-39,37r-27,0xm91,-14v51,0,87,-25,79,-87v-35,23,-133,-5,-133,49v0,29,24,38,54,38xm108,-171v-38,0,-61,7,-64,41r-25,0v5,-46,36,-64,89,-63v47,1,86,8,86,55r0,98v-2,21,9,22,29,21r0,18v-29,6,-54,-1,-52,-31v-22,48,-159,59,-160,-18v0,-71,92,-51,148,-66v10,-3,11,-7,11,-18v0,-33,-24,-37,-62,-37","w":219},"\u00e4":{"d":"91,-14v51,0,87,-25,79,-87v-35,23,-133,-5,-133,49v0,29,24,38,54,38xm108,-171v-38,0,-61,7,-64,41r-25,0v5,-46,36,-64,89,-63v47,1,86,8,86,55r0,98v-2,21,9,22,29,21r0,18v-29,6,-54,-1,-52,-31v-22,48,-159,59,-160,-18v0,-71,92,-51,148,-66v10,-3,11,-7,11,-18v0,-33,-24,-37,-62,-37xm56,-257r27,0r0,40r-27,0r0,-40xm137,-257r27,0r0,40r-27,0r0,-40","w":219},"\u00e0":{"d":"91,-14v51,0,87,-25,79,-87v-35,23,-133,-5,-133,49v0,29,24,38,54,38xm108,-171v-38,0,-61,7,-64,41r-25,0v5,-46,36,-64,89,-63v47,1,86,8,86,55r0,98v-2,21,9,22,29,21r0,18v-29,6,-54,-1,-52,-31v-22,48,-159,59,-160,-18v0,-71,92,-51,148,-66v10,-3,11,-7,11,-18v0,-33,-24,-37,-62,-37xm133,-215r-22,0r-52,-51r33,0","w":219},"\u00e5":{"d":"110,-208v-23,-2,-39,-16,-39,-40v0,-24,15,-40,39,-40v23,0,40,16,40,40v0,25,-18,37,-40,40xm110,-274v-13,0,-26,13,-26,26v0,13,13,26,26,26v14,0,26,-12,26,-26v0,-14,-12,-26,-26,-26xm91,-14v51,0,87,-25,79,-87v-35,23,-133,-5,-133,49v0,29,24,38,54,38xm108,-171v-38,0,-61,7,-64,41r-25,0v5,-46,36,-64,89,-63v47,1,86,8,86,55r0,98v-2,21,9,22,29,21r0,18v-29,6,-54,-1,-52,-31v-22,48,-159,59,-160,-18v0,-71,92,-51,148,-66v10,-3,11,-7,11,-18v0,-33,-24,-37,-62,-37","w":219},"\u00e3":{"d":"44,-221v0,-44,55,-46,83,-23v16,6,35,1,34,-16r16,0v-5,20,-12,38,-37,39v-29,1,-50,-31,-76,-13v-2,4,-5,8,-5,13r-15,0xm91,-14v51,0,87,-25,79,-87v-35,23,-133,-5,-133,49v0,29,24,38,54,38xm108,-171v-38,0,-61,7,-64,41r-25,0v5,-46,36,-64,89,-63v47,1,86,8,86,55r0,98v-2,21,9,22,29,21r0,18v-29,6,-54,-1,-52,-31v-22,48,-159,59,-160,-18v0,-71,92,-51,148,-66v10,-3,11,-7,11,-18v0,-33,-24,-37,-62,-37","w":219},"\u00e9":{"d":"195,-107v-3,-70,-112,-84,-145,-30v-5,8,-8,18,-9,30r154,0xm116,-17v43,0,63,-13,74,-43r27,0v-15,40,-46,66,-101,66v-66,0,-97,-37,-102,-100v-9,-109,159,-132,198,-46v6,14,9,32,9,53r-180,0v2,45,28,70,75,70xm135,-266r33,0r-52,51r-22,0","w":233},"\u00ea":{"d":"102,-266r29,0r52,51r-27,0r-39,-37r-39,37r-27,0xm195,-107v-3,-70,-112,-84,-145,-30v-5,8,-8,18,-9,30r154,0xm116,-17v43,0,63,-13,74,-43r27,0v-15,40,-46,66,-101,66v-66,0,-97,-37,-102,-100v-9,-109,159,-132,198,-46v6,14,9,32,9,53r-180,0v2,45,28,70,75,70","w":233},"\u00eb":{"d":"195,-107v-3,-70,-112,-84,-145,-30v-5,8,-8,18,-9,30r154,0xm116,-17v43,0,63,-13,74,-43r27,0v-15,40,-46,66,-101,66v-66,0,-97,-37,-102,-100v-9,-109,159,-132,198,-46v6,14,9,32,9,53r-180,0v2,45,28,70,75,70xm63,-257r27,0r0,40r-27,0r0,-40xm144,-257r27,0r0,40r-27,0r0,-40","w":233},"\u00e8":{"d":"195,-107v-3,-70,-112,-84,-145,-30v-5,8,-8,18,-9,30r154,0xm116,-17v43,0,63,-13,74,-43r27,0v-15,40,-46,66,-101,66v-66,0,-97,-37,-102,-100v-9,-109,159,-132,198,-46v6,14,9,32,9,53r-180,0v2,45,28,70,75,70xm140,-215r-22,0r-52,-51r33,0","w":233},"\u00ed":{"d":"20,-187r26,0r0,187r-26,0r0,-187xm51,-266r33,0r-52,51r-22,0","w":66},"\u00ee":{"d":"19,-266r29,0r51,51r-27,0r-39,-37r-39,37r-27,0xm20,-187r26,0r0,187r-26,0r0,-187","w":66},"\u00ef":{"d":"20,-187r26,0r0,187r-26,0r0,-187xm-21,-257r27,0r0,40r-27,0r0,-40xm60,-257r27,0r0,40r-27,0r0,-40","w":66},"\u00ec":{"d":"20,-187r26,0r0,187r-26,0r0,-187xm56,-215r-22,0r-52,-51r33,0","w":66},"\u00f1":{"d":"47,-221v0,-44,55,-46,83,-23v16,5,35,1,34,-16r16,0v-1,34,-39,49,-69,29v-14,-9,-48,-17,-48,10r-16,0xm125,-193v54,-1,81,25,81,77r0,116r-26,0r0,-121v0,-36,-23,-49,-57,-50v-49,-1,-76,24,-76,69r0,102r-26,0r0,-187r26,0v1,12,-2,27,1,37v11,-27,40,-42,77,-43","w":226},"\u00f3":{"d":"120,-171v-48,0,-79,28,-79,77v0,49,29,77,79,77v52,1,80,-29,80,-77v0,-48,-30,-77,-80,-77xm120,6v-67,0,-106,-37,-106,-100v0,-63,39,-99,106,-99v66,0,106,35,106,99v0,64,-40,100,-106,100xm138,-266r33,0r-52,51r-22,0"},"\u00f4":{"d":"106,-266r29,0r51,51r-27,0r-39,-37r-39,37r-27,0xm120,-171v-48,0,-79,28,-79,77v0,49,29,77,79,77v52,1,80,-29,80,-77v0,-48,-30,-77,-80,-77xm120,6v-67,0,-106,-37,-106,-100v0,-63,39,-99,106,-99v66,0,106,35,106,99v0,64,-40,100,-106,100"},"\u00f6":{"d":"120,-171v-48,0,-79,28,-79,77v0,49,29,77,79,77v52,1,80,-29,80,-77v0,-48,-30,-77,-80,-77xm120,6v-67,0,-106,-37,-106,-100v0,-63,39,-99,106,-99v66,0,106,35,106,99v0,64,-40,100,-106,100xm66,-257r27,0r0,40r-27,0r0,-40xm147,-257r27,0r0,40r-27,0r0,-40"},"\u00f2":{"d":"120,-171v-48,0,-79,28,-79,77v0,49,29,77,79,77v52,1,80,-29,80,-77v0,-48,-30,-77,-80,-77xm120,6v-67,0,-106,-37,-106,-100v0,-63,39,-99,106,-99v66,0,106,35,106,99v0,64,-40,100,-106,100xm143,-215r-22,0r-52,-51r33,0"},"\u00f5":{"d":"54,-221v0,-44,55,-46,83,-23v16,5,35,1,34,-16r16,0v-5,20,-12,38,-37,39v-29,1,-50,-31,-76,-13v-2,4,-5,8,-5,13r-15,0xm120,-171v-48,0,-79,28,-79,77v0,49,29,77,79,77v52,1,80,-29,80,-77v0,-48,-30,-77,-80,-77xm120,6v-67,0,-106,-37,-106,-100v0,-63,39,-99,106,-99v66,0,106,35,106,99v0,64,-40,100,-106,100"},"\u00fa":{"d":"104,-17v50,0,76,-24,76,-69r0,-101r26,0r0,187r-26,0v-1,-12,2,-27,-1,-37v-12,25,-39,42,-77,43v-53,-1,-81,-23,-81,-77r0,-116r26,0v6,70,-26,170,57,170xm131,-266r33,0r-52,51r-22,0","w":226},"\u00fb":{"d":"99,-266r29,0r51,51r-27,0r-39,-37r-38,37r-27,0xm104,-17v50,0,76,-24,76,-69r0,-101r26,0r0,187r-26,0v-1,-12,2,-27,-1,-37v-12,25,-39,42,-77,43v-53,-1,-81,-23,-81,-77r0,-116r26,0v6,70,-26,170,57,170","w":226},"\u00fc":{"d":"104,-17v50,0,76,-24,76,-69r0,-101r26,0r0,187r-26,0v-1,-12,2,-27,-1,-37v-12,25,-39,42,-77,43v-53,-1,-81,-23,-81,-77r0,-116r26,0v6,70,-26,170,57,170xm59,-257r27,0r0,40r-27,0r0,-40xm140,-257r27,0r0,40r-27,0r0,-40","w":226},"\u00f9":{"d":"104,-17v50,0,76,-24,76,-69r0,-101r26,0r0,187r-26,0v-1,-12,2,-27,-1,-37v-12,25,-39,42,-77,43v-53,-1,-81,-23,-81,-77r0,-116r26,0v6,70,-26,170,57,170xm136,-215r-22,0r-52,-51r33,0","w":226},"\u00ff":{"d":"174,-187r28,0r-111,240v-11,19,-40,22,-70,19r0,-22v29,1,46,-1,56,-23r12,-26r-91,-188r29,0r76,156xm46,-257r27,0r0,40r-27,0r0,-40xm127,-257r27,0r0,40r-27,0r0,-40","w":200},"!":{"d":"38,-40r31,0r0,40r-31,0r0,-40xm39,-189r0,-68r29,0v1,67,-4,128,-7,190r-16,0","w":106},"\"":{"d":"36,-257r21,0r0,90r-21,0r0,-90xm90,-257r20,0r0,90r-20,0r0,-90","w":146},"\u00a4":{"d":"176,-55v-26,26,-86,26,-112,0r-19,20r-14,-14r19,-20v-25,-26,-25,-85,0,-111r-19,-20r14,-14r19,20v26,-26,86,-26,112,0r20,-20r14,14r-20,20v26,25,26,86,0,111r20,20r-14,14xm120,-196v-42,0,-71,29,-71,71v0,43,29,72,71,72v43,0,72,-29,72,-72v0,-42,-29,-71,-72,-71"},"\u0141":{"d":"126,-182r0,22r-76,53r0,83r163,0r0,24r-189,0r0,-89r-28,20r0,-23r28,-19r0,-146r26,0r0,127","w":213},"\u0142":{"d":"66,-161r0,21r-20,14r0,126r-26,0r0,-108r-20,15r0,-20r20,-15r0,-131r26,0r0,113","w":66},"\u00be":{"d":"294,-51v-1,-24,2,-52,-1,-74r-65,74r66,0xm294,-36r-86,0r0,-15r88,-101r18,0r0,101r29,0r0,15r-29,0r0,36r-20,0r0,-36xm253,-255r22,0r-153,261r-22,0xm123,-144v0,-28,-28,-29,-56,-30r0,-16v24,2,52,0,50,-23v-4,-40,-84,-33,-80,9r-20,0v2,-35,26,-51,63,-51v32,1,56,10,57,42v0,17,-15,27,-30,31v20,1,36,15,36,37v0,54,-79,54,-112,34v-12,-8,-18,-21,-18,-40r20,0v-3,47,90,50,90,7","w":360},"\u00bc":{"d":"294,-51v-1,-24,2,-52,-1,-74r-65,74r66,0xm294,-36r-86,0r0,-15r88,-101r18,0r0,101r29,0r0,15r-29,0r0,36r-20,0r0,-36xm216,-255r23,0r-153,261r-23,0xm5,-227v29,2,50,-2,52,-28r16,0r0,152r-20,0r0,-110r-48,0r0,-14","w":360},"\u00b9":{"d":"5,-227v29,2,50,-2,52,-28r16,0r0,152r-20,0r0,-110r-48,0r0,-14","w":104},"\u00d7":{"d":"176,-172r13,13r-68,68r68,68r-13,13r-68,-68r-68,68r-13,-13r68,-68r-68,-68r13,-13r68,68","w":216},"\u00de":{"d":"215,-136v0,-75,-95,-44,-160,-50r0,100v65,-5,160,23,160,-50xm244,-136v-2,51,-34,75,-89,75r-100,0r0,61r-27,0r0,-257r27,0r0,47v86,2,193,-19,189,74","w":253},"\u00a6":{"d":"31,-93r18,0r0,99r-18,0r0,-99xm31,-264r18,0r0,99r-18,0r0,-99","w":79},"\u00d0":{"d":"262,-129v-1,75,-34,129,-109,129r-129,0r0,-125r-24,0r0,-20r24,0r0,-112r125,0v76,-1,114,51,113,128xm234,-129v0,-64,-24,-104,-86,-104r-98,0r0,88r93,0r0,20r-93,0r0,101r98,0v60,-3,86,-40,86,-105","w":280},"\u00bd":{"d":"216,-255r23,0r-153,261r-23,0xm5,-227v29,2,50,-2,52,-28r16,0r0,152r-20,0r0,-110r-48,0r0,-14xm282,-152v56,-6,78,59,36,86v-27,17,-61,24,-78,48r103,0r0,18r-127,0v3,-63,94,-49,105,-106v-1,-22,-15,-30,-39,-30v-28,-1,-41,12,-42,37r-20,0v0,-38,25,-49,62,-53","w":360},"\u00f0":{"d":"120,-17v52,1,80,-29,80,-77v0,-48,-30,-77,-80,-77v-48,0,-79,28,-79,77v0,49,29,77,79,77xm120,6v-67,0,-106,-37,-106,-100v0,-63,39,-98,106,-99v31,-1,51,14,68,31v-17,-28,-38,-55,-70,-70r-45,20r-11,-9r41,-19v-11,-6,-26,-12,-43,-17r19,-14v20,6,32,10,48,20r44,-20r10,10r-40,19v48,28,85,76,85,145v0,66,-39,103,-106,103"},"\u00fe":{"d":"124,6v-38,0,-61,-20,-77,-43r0,110r-26,0r0,-332r26,0r1,109v13,-26,36,-43,76,-43v65,0,102,36,102,99v0,63,-36,100,-102,100xm124,-171v-47,0,-78,28,-78,77v0,49,28,77,78,77v48,0,75,-29,75,-77v0,-47,-26,-77,-75,-77"},"\u00b2":{"d":"137,-209v0,59,-79,50,-100,88r102,0r0,18r-127,0v4,-63,94,-49,105,-106v-1,-22,-15,-30,-39,-30v-28,-1,-40,13,-42,38r-20,0v0,-39,24,-53,62,-54v35,0,59,14,59,46","w":156},"\u00b3":{"d":"123,-144v0,-28,-28,-29,-56,-30r0,-16v24,2,52,0,50,-23v-4,-40,-84,-33,-80,9r-20,0v2,-35,26,-51,63,-51v32,1,56,10,57,42v0,17,-15,27,-30,31v20,1,36,15,36,37v0,54,-79,54,-112,34v-12,-8,-18,-21,-18,-40r20,0v-3,47,90,50,90,7","w":156},"\u0160":{"d":"135,-271r-29,0r-52,-51r27,0r39,37r39,-37r27,0xm40,-143v-60,-46,2,-129,77,-121v59,6,105,21,108,80r-27,0v-3,-42,-36,-55,-81,-55v-55,0,-101,53,-49,80v53,28,159,6,164,85v5,103,-181,102,-213,32v-6,-12,-10,-26,-11,-43r27,0v3,49,37,68,90,67v63,13,111,-63,49,-89v-41,-17,-103,-12,-134,-36"},"\u00dd":{"d":"110,-108r-115,-149r34,0r94,122r95,-122r34,0r-115,149r0,108r-27,0r0,-108xm141,-321r33,0r-52,51r-22,0","w":246},"\u017d":{"d":"131,-271r-29,0r-51,-51r27,0r39,37r39,-37r27,0xm2,-24r191,-209r-179,0r0,-24r215,0r0,24r-192,209r194,0r0,24r-229,0r0,-24","w":233},"\u0161":{"d":"114,-215r-28,0r-52,-51r27,0r39,36r39,-36r27,0xm32,-101v-43,-37,1,-97,63,-92v50,4,86,14,89,61r-24,0v-7,-32,-27,-36,-65,-39v-36,-3,-77,33,-40,52v43,23,134,-1,137,65v4,69,-113,71,-159,44v-17,-10,-25,-26,-25,-49r25,0v4,35,30,42,70,42v55,14,90,-52,26,-63v-29,-5,-78,-5,-97,-21","w":200},"\u00fd":{"d":"174,-187r28,0r-111,240v-11,19,-40,22,-70,19r0,-22v29,1,46,-1,56,-23r12,-26r-91,-188r29,0r76,156xm118,-266r33,0r-52,51r-22,0","w":200},"\u017e":{"d":"114,-215r-28,0r-52,-51r27,0r39,36r39,-36r27,0xm7,-22r142,-143r-134,0r0,-22r173,0r0,22r-146,143r151,0r0,22r-186,0r0,-22","w":200}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990 Adobe Systems Incorporated.  All Rights Reserved.Helvetica
 * is a trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1990 Adobe Systems.  All Rights Reserved.
 * This software is the property of Adobe Systems  Incorporated and its licensors,
 * and may not be reproduced, used,   displayed, modified, disclosed or transferred
 * without the express   written approval of Adobe.    The digitally encoded
 * machine readable outline data for producing  the Typefaces licensed to you is
 * copyrighted (c) 1981 Linotype AG  and/or its subsidiaries. All Rights Reserved. 
 * This data is the property of Linotype AG and/or its subsidiaries  and may not be
 * reproduced, used, displayed, modified, disclosed or   transferred without the
 * express written approval of Linotype AG   and/or its subsidiaries.  18
 * Helvetica* 23 Ultra Light Ext 84472
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 */
Cufon.registerFont({"w":233,"face":{"font-family":"font-03-ultraLight","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 2 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"6","bbox":"-44 -337 417 80.1368","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":116},"\u00a0":{"w":116},"$":{"d":"125,-1v52,-2,91,-14,92,-64v1,-49,-52,-50,-92,-61r0,125xm117,-252v-63,-7,-117,36,-81,90v18,16,52,21,81,28r0,-118xm210,-104v43,51,-11,121,-85,110r0,34r-8,0r0,-35v-67,0,-107,-24,-108,-89r7,0v1,61,40,82,101,82r0,-125v-45,-10,-100,-14,-100,-67v0,-50,43,-66,100,-65r0,-29r8,0r0,29v57,3,89,23,93,76r-7,0v-4,-48,-34,-67,-86,-69r0,119v30,7,69,10,85,29"},"%":{"d":"239,6v-40,0,-62,-25,-62,-68v0,-42,21,-68,62,-68v41,0,61,26,61,68v0,42,-22,68,-61,68xm239,-123v-35,0,-54,23,-54,61v0,38,20,61,54,61v34,0,54,-24,54,-61v0,-38,-19,-61,-54,-61xm81,-123v-39,0,-61,-26,-61,-68v0,-42,21,-68,61,-68v41,0,62,26,62,68v0,43,-22,68,-62,68xm81,-252v-35,0,-54,24,-54,61v0,38,20,61,54,61v34,0,54,-23,54,-61v0,-38,-19,-61,-54,-61xm242,-261r7,0r-171,269r-7,0","w":320},"&":{"d":"175,-210v0,42,-33,50,-63,67r99,95v9,-12,16,-32,18,-51r7,0v-1,21,-8,40,-20,56r45,43r-10,0r-39,-37v-40,59,-191,64,-192,-30v-1,-51,41,-63,79,-79v-21,-21,-39,-33,-39,-63v0,-34,22,-48,57,-48v34,0,58,15,58,47xm107,-148v28,-15,60,-24,60,-62v0,-27,-21,-40,-51,-40v-51,0,-61,53,-30,80v6,5,13,13,21,22xm39,-103v-47,69,53,129,127,91v15,-7,29,-17,41,-30r-102,-98v-23,9,-54,21,-66,37","w":253},"(":{"d":"84,-257v-68,79,-69,246,0,325r-9,0v-29,-41,-51,-94,-51,-162v0,-68,23,-121,51,-163r9,0","w":93},")":{"d":"19,-257v64,74,65,251,0,325r-9,0v67,-80,67,-245,0,-325r9,0","w":93},"*":{"d":"63,-257r7,0r0,53r51,-16r2,7r-51,16r32,43r-6,5r-31,-44r-32,44r-5,-5r31,-43r-51,-16r2,-7r51,16r0,-53","w":133},"+":{"d":"104,-87r-87,0r0,-8r87,0r0,-87r8,0r0,87r87,0r0,8r-87,0r0,87r-8,0r0,-87","w":216},",":{"d":"17,43v7,-21,13,-45,10,-78r7,0v-1,31,6,66,-17,78","w":60},"-":{"d":"28,-92r0,-7r77,0r0,7r-77,0","w":133},"\u00ad":{"d":"28,-92r0,-7r77,0r0,7r-77,0","w":133},".":{"d":"27,-35r7,0r0,35r-7,0r0,-35","w":60},"\/":{"d":"145,-263r7,0r-150,269r-7,0","w":146},"0":{"d":"117,6v-78,0,-108,-56,-108,-133v0,-76,29,-132,108,-132v78,1,107,55,107,132v0,78,-30,133,-107,133xm117,-252v-73,0,-101,52,-101,125v0,74,28,126,101,126v72,0,100,-52,100,-126v0,-74,-28,-125,-100,-125"},"1":{"d":"94,-244v-21,21,-48,39,-82,46r0,-8v35,-8,60,-25,80,-47r10,0r0,253r-8,0r0,-244","w":153},"2":{"d":"118,-259v84,0,110,92,54,135v-43,34,-107,52,-138,98v-2,6,-3,12,-4,19r181,0r0,7r-189,0v10,-107,166,-79,174,-186v4,-47,-34,-66,-81,-66v-56,0,-80,27,-80,83r-7,0v-2,-62,28,-90,90,-90"},"3":{"d":"207,-67v0,-54,-44,-67,-101,-65r0,-7v51,1,96,-8,96,-54v0,-44,-34,-59,-80,-59v-58,0,-87,23,-89,78r-7,0v2,-59,33,-86,96,-85v51,1,87,17,87,66v0,37,-27,52,-60,58v41,4,66,26,66,68v0,50,-42,72,-99,73v-63,0,-99,-31,-97,-92v6,-1,7,1,7,8v0,55,37,77,91,77v51,0,90,-18,90,-66"},"4":{"d":"158,-67r-142,0r0,-10r140,-176r10,0r0,179r51,0r0,7r-51,0r0,67r-8,0r0,-67xm23,-74r135,0r0,-170"},"5":{"d":"117,-164v-39,0,-65,17,-80,40r-10,0r30,-129r145,0r0,7r-138,0r-25,108v16,-20,42,-33,78,-33v59,1,96,29,96,91v0,97,-147,113,-184,41v-6,-11,-9,-25,-9,-42r7,0v0,57,39,80,90,80v54,0,89,-26,89,-79v0,-56,-31,-84,-89,-84"},"6":{"d":"18,-125v0,-109,73,-164,161,-118v17,9,27,28,30,51r-7,0v-6,-39,-35,-59,-80,-60v-83,-2,-101,66,-95,149v10,-43,42,-66,93,-66v59,0,95,31,95,87v0,57,-38,86,-95,88v-80,2,-102,-53,-102,-131xm120,-1v53,-1,88,-29,88,-81v0,-52,-36,-80,-88,-80v-54,0,-89,28,-89,80v0,53,34,82,89,81"},"7":{"d":"63,0v7,-115,58,-185,125,-246r-172,0r0,-7r179,0r0,9v-70,61,-117,135,-125,244r-7,0","w":213},"8":{"d":"117,6v-58,0,-102,-18,-102,-73v0,-45,25,-69,72,-73v-36,-3,-59,-22,-59,-56v0,-46,37,-63,89,-63v52,0,88,17,88,63v0,34,-23,53,-59,56v47,4,72,28,72,73v0,55,-43,73,-101,73xm117,-252v-47,0,-81,15,-81,55v0,40,35,53,81,53v47,0,81,-13,81,-53v0,-40,-34,-56,-81,-55xm117,-136v-55,0,-95,15,-95,69v0,52,43,66,95,66v52,0,94,-15,94,-66v0,-54,-39,-69,-94,-69"},"9":{"d":"215,-129v0,109,-71,165,-161,119v-17,-9,-27,-29,-30,-52r7,0v6,41,37,60,81,61v81,1,101,-65,95,-149v-11,43,-43,66,-93,66v-58,0,-96,-31,-96,-88v0,-56,37,-86,96,-87v79,-1,101,53,101,130xm114,-252v-52,1,-88,27,-88,80v0,54,35,81,88,81v53,0,88,-28,88,-81v0,-53,-34,-81,-88,-80"},":":{"d":"27,-176r7,0r0,34r-7,0r0,-34xm27,-35r7,0r0,35r-7,0r0,-35","w":60},";":{"d":"17,43v7,-21,13,-45,10,-78r7,0v-1,31,6,66,-17,78xm27,-176r7,0r0,34r-7,0r0,-34","w":60},"\u037e":{"d":"17,43v7,-21,13,-45,10,-78r7,0v-1,31,6,66,-17,78xm27,-176r7,0r0,34r-7,0r0,-34","w":60},"<":{"d":"17,-96r182,-90r0,10r-175,85r175,85r0,10r-182,-90r0,-10","w":216},"=":{"d":"17,-122r0,-8r182,0r0,8r-182,0xm17,-53r0,-7r182,0r0,7r-182,0","w":216},">":{"d":"17,-6r175,-85r-175,-85r0,-10r182,90r0,10r-182,90r0,-10","w":216},"?":{"d":"108,-263v83,0,120,79,57,122v-25,17,-61,24,-53,75r-8,0v-12,-81,87,-59,87,-133v0,-45,-36,-56,-83,-57v-58,-1,-84,25,-85,79r-7,0v-1,-60,30,-86,92,-86xm104,-35r8,0r0,35r-8,0r0,-35","w":219},"@":{"d":"154,-202v-52,0,-74,50,-77,103v-1,26,18,47,44,44v48,-6,70,-59,70,-108v0,-25,-13,-39,-37,-39xm154,-209v23,-1,38,15,43,32v5,-8,0,-26,14,-25r-36,135v-1,8,7,12,15,12v46,-6,74,-46,74,-95v0,-68,-47,-106,-113,-106v-77,0,-127,51,-127,127v0,77,50,128,127,128v52,0,84,-27,106,-59r9,0v-23,37,-59,66,-115,66v-79,0,-134,-53,-134,-135v0,-81,55,-134,134,-134v71,0,120,42,120,112v0,54,-29,99,-82,103v-21,3,-23,-23,-18,-37v-11,23,-27,37,-53,37v-31,0,-48,-21,-48,-51v0,-57,28,-106,84,-110","w":288},"A":{"d":"112,-257r9,0r118,257r-9,0r-38,-85r-150,0r-39,85r-9,0xm45,-92r143,0r-71,-158","k":{"y":6,"w":6,"v":6,"Y":20,"W":13,"V":13,"T":20}},"B":{"d":"237,-70v0,92,-126,67,-217,70r0,-257v85,6,211,-28,209,64v-1,35,-25,54,-57,59v39,2,65,23,65,64xm221,-193v2,-85,-117,-50,-194,-57r0,112v77,-5,192,24,194,-55xm229,-70v0,-87,-121,-53,-202,-60r0,123v83,-4,201,22,202,-63","w":246},"C":{"d":"143,-1v68,0,113,-36,122,-97r7,0v-9,67,-58,104,-129,104v-83,0,-127,-52,-133,-135v-9,-128,166,-176,240,-89v8,10,13,22,16,36r-7,0v-13,-49,-53,-74,-116,-74v-77,0,-126,48,-126,127v0,80,48,128,126,128","w":286},"D":{"d":"245,-129v0,-71,-29,-121,-100,-121r-118,0r0,243r118,0v71,-1,100,-51,100,-122xm252,-129v0,77,-32,129,-107,129r-125,0r0,-257r125,0v75,2,107,52,107,128","w":266},"E":{"d":"20,-257r200,0r0,7r-193,0r0,112r185,0r0,8r-185,0r0,123r195,0r0,7r-202,0r0,-257","w":226},"F":{"d":"20,-257r180,0r0,7r-173,0r0,112r163,0r0,8r-163,0r0,130r-7,0r0,-257","w":200,"k":{"A":13,".":40,",":40}},"G":{"d":"17,-129v-11,133,188,172,239,66v7,-14,10,-31,10,-50r-113,0r0,-8r121,0r0,121r-8,0r0,-69v-18,47,-59,75,-123,75v-83,0,-128,-52,-133,-135v-7,-117,132,-169,222,-109v19,13,30,36,35,62r-7,0v-12,-54,-51,-80,-117,-80v-77,0,-120,48,-126,127","w":293},"H":{"d":"20,-257r7,0r0,119r206,0r0,-119r7,0r0,257r-7,0r0,-130r-206,0r0,130r-7,0r0,-257","w":259},"I":{"d":"20,-257r7,0r0,257r-7,0r0,-257","w":46},"J":{"d":"86,-1v45,0,74,-20,74,-63r0,-193r7,0r0,193v7,71,-100,89,-140,48v-13,-14,-19,-36,-19,-64r7,0v0,49,21,79,71,79","w":186},"K":{"d":"20,-257r7,0r0,157r204,-157r13,0r-141,107r152,150r-11,0r-147,-145r-70,54r0,91r-7,0r0,-257","w":246},"L":{"d":"20,-257r7,0r0,250r173,0r0,7r-180,0r0,-257","w":193,"k":{"y":13,"Y":40,"W":27,"V":33,"T":40}},"M":{"d":"20,-257r12,0r135,250r135,-250r12,0r0,257r-8,0r0,-248r-135,248r-9,0r-135,-248r0,248r-7,0r0,-257","w":333},"N":{"d":"20,-257r9,0r204,248r0,-248r7,0r0,257r-9,0r-204,-248r0,248r-7,0r0,-257","w":259},"O":{"d":"143,6v-83,0,-133,-52,-133,-135v0,-83,50,-134,133,-134v82,0,133,50,133,134v0,84,-51,135,-133,135xm143,-256v-77,0,-126,48,-126,127v0,80,48,128,126,128v77,0,126,-47,126,-128v0,-80,-49,-127,-126,-127","w":286},"P":{"d":"229,-187v0,92,-115,67,-202,70r0,117r-7,0r0,-257v88,5,209,-27,209,70xm221,-187v0,-92,-114,-56,-194,-63r0,126v81,-4,194,23,194,-63","k":{"A":13,".":46,",":46}},"Q":{"d":"276,-129v0,49,-19,84,-46,106r48,32r-5,6r-50,-33v-21,15,-47,24,-80,24v-83,0,-133,-52,-133,-135v0,-83,50,-134,133,-134v82,0,131,50,133,134xm17,-129v-5,107,112,158,199,107r-48,-32r4,-6r51,33v26,-21,47,-55,46,-102v-2,-80,-49,-127,-126,-127v-77,0,-123,48,-126,127","w":286},"R":{"d":"226,0v-8,-65,3,-121,-80,-121r-119,0r0,121r-7,0r0,-257v87,7,218,-31,212,70v-2,38,-27,56,-61,62v70,-7,52,70,62,125r-7,0xm225,-187v5,-93,-118,-55,-198,-63r0,122v81,-4,194,22,198,-59","w":246,"k":{"y":-4}},"S":{"d":"37,-157v-43,-46,3,-113,79,-106v63,6,102,20,106,78r-7,0v-4,-52,-39,-71,-97,-71v-64,0,-112,37,-79,91v46,48,183,7,189,98v6,102,-200,93,-212,12v-2,-11,-4,-21,-4,-30r7,0v0,63,46,77,108,84v90,10,134,-100,39,-118v-43,-8,-105,-12,-129,-38","w":240},"T":{"d":"100,-250r-108,0r0,-7r222,0r0,7r-107,0r0,250r-7,0r0,-250","w":206,"k":{"y":27,"w":33,"u":27,"s":27,"r":27,"o":27,"e":27,"c":27,"a":27,"A":20,";":33,":":33,".":33,"-":33,",":33}},"U":{"d":"130,-1v67,0,104,-28,105,-92r0,-164r7,0r0,163v0,66,-37,100,-112,100v-75,0,-112,-34,-112,-100r0,-163r7,0r0,164v1,64,38,92,105,92","w":259},"V":{"d":"-6,-257r10,0r109,248r110,-248r10,0r-115,257r-9,0","w":226,"k":{"y":6,"u":6,"r":6,"o":13,"e":13,"a":13,"A":13,";":13,":":13,".":40,"-":13,",":40}},"W":{"d":"-7,-257r7,0r84,248r87,-248r11,0r88,248r83,-248r7,0r-85,257r-10,0r-89,-250r-88,250r-9,0","w":353,"k":{"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":20,"-":13,",":20}},"X":{"d":"105,-131r-108,-126r10,0r103,121r103,-121r10,0r-107,126r111,131r-10,0r-107,-127r-107,127r-9,0","w":220},"Y":{"d":"110,-108r-122,-149r11,0r114,141r115,-141r10,0r-121,149r0,108r-7,0r0,-108","w":226,"k":{"v":6,"u":13,"q":20,"p":13,"o":20,"e":20,"a":20,"A":20,";":20,":":20,".":46,"-":33,",":46}},"Z":{"d":"-7,-10r207,-240r-195,0r0,-7r205,0r0,9r-210,241r213,0r0,7r-220,0r0,-10","w":206},"[":{"d":"25,-257r49,0r0,7r-42,0r0,311r42,0r0,7r-49,0r0,-325","w":93},"\\":{"d":"-5,-263r7,0r150,269r-7,0","w":146},"]":{"d":"61,-250r-42,0r0,-7r49,0r0,325r-49,0r0,-7r42,0r0,-311","w":93},"^":{"d":"104,-253r8,0r82,163r-7,0r-79,-156r-79,156r-7,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"182,-23v-3,20,16,17,29,13v2,11,-9,8,-17,10v-23,3,-17,-22,-20,-40v-18,55,-164,72,-165,-10v-1,-57,65,-53,121,-54v30,0,48,-3,45,-38v-3,-36,-35,-40,-77,-41v-45,-1,-71,13,-74,54r-7,0v2,-46,33,-61,81,-61v49,0,84,8,84,48r0,119xm82,-1v65,1,103,-36,92,-107v-35,31,-158,-19,-158,58v0,36,30,48,66,49","w":203},"b":{"d":"116,-183v-58,0,-89,34,-89,91v0,57,31,91,89,91v58,0,88,-34,88,-91v0,-57,-30,-91,-88,-91xm116,6v-46,1,-74,-23,-89,-56r0,50r-7,0r0,-257r7,0r1,123v13,-35,41,-56,88,-56v63,0,96,37,96,98v0,60,-33,97,-96,98","w":220},"c":{"d":"119,-1v49,0,80,-22,90,-62r7,0v-12,43,-42,69,-97,69v-62,0,-97,-36,-102,-98v-9,-111,175,-134,198,-35r-8,0v-8,-39,-39,-56,-88,-56v-60,1,-95,35,-95,91v0,56,37,91,95,91"},"d":{"d":"105,-183v-58,0,-89,34,-89,91v0,57,31,91,89,91v58,0,88,-35,88,-91v0,-56,-30,-91,-88,-91xm105,-190v46,0,75,21,88,56r0,-123r8,0r0,257r-8,0r0,-50v-13,34,-43,56,-88,56v-62,0,-96,-36,-96,-98v0,-62,34,-98,96,-98","w":220},"e":{"d":"9,-92v-8,-108,157,-130,192,-42v5,12,7,26,7,42r-192,0v2,57,37,91,94,91v50,0,78,-24,88,-63r8,0v-10,42,-40,72,-96,70v-62,-2,-97,-36,-101,-98xm201,-99v5,-95,-148,-111,-177,-33v-4,10,-7,22,-8,33r185,0","w":213},"f":{"d":"114,-251v-34,-4,-66,-1,-63,34r0,33r54,0r0,7r-54,0r0,177r-7,0r0,-177r-44,0r0,-7r44,0v-7,-55,11,-86,70,-74r0,7","w":100},"g":{"d":"109,-183v-57,0,-91,28,-91,86v1,57,33,86,91,86v57,0,91,-31,91,-86v0,-57,-35,-86,-91,-86xm109,-190v48,-1,77,20,91,52r0,-46r7,0r0,178v6,81,-85,102,-154,75v-20,-8,-32,-25,-35,-52r8,0v6,40,35,55,85,55v76,0,98,-50,88,-127v-16,31,-42,52,-90,51v-62,-2,-99,-31,-99,-93v0,-61,37,-92,99,-93","w":226},"h":{"d":"111,-183v-55,0,-83,29,-84,80r0,103r-7,0r0,-257r7,0r1,114v13,-33,40,-47,83,-47v54,0,83,22,83,74r0,116r-8,0r0,-116v1,-48,-25,-67,-75,-67","w":213},"i":{"d":"20,-184r7,0r0,184r-7,0r0,-184xm20,-257r7,0r0,39r-7,0r0,-39","w":46},"j":{"d":"-39,64v35,5,59,1,59,-37r0,-211r7,0r0,217v2,38,-28,42,-66,39r0,-8xm20,-257r7,0r0,39r-7,0r0,-39","w":46},"k":{"d":"20,-257r7,0r0,180r147,-107r12,0r-96,70r104,114r-10,0r-100,-110r-57,42r0,68r-7,0r0,-257","w":193},"l":{"d":"20,-257r7,0r0,257r-7,0r0,-257","w":46},"m":{"d":"103,-183v-47,2,-76,23,-76,69r0,114r-7,0r0,-184r7,0v1,11,-2,26,1,35v13,-26,36,-41,75,-41v36,0,58,16,67,43v10,-26,34,-43,67,-43v54,0,83,22,83,74r0,116r-7,0v-3,-85,22,-191,-76,-183v-39,3,-62,23,-63,64r0,119r-8,0v-4,-78,23,-186,-63,-183","w":339},"n":{"d":"111,-183v-55,0,-83,29,-84,80r0,103r-7,0r0,-184r7,0v1,13,-2,30,1,41v13,-33,40,-47,83,-47v54,0,83,22,83,74r0,116r-8,0r0,-116v1,-48,-25,-67,-75,-67","w":213},"o":{"d":"110,6v-62,0,-101,-36,-101,-98v0,-61,38,-98,101,-98v63,0,102,36,102,98v0,62,-40,98,-102,98xm110,-183v-59,0,-94,34,-94,91v0,57,37,91,94,91v58,0,94,-32,94,-91v0,-59,-35,-91,-94,-91","w":220},"p":{"d":"116,-183v-58,0,-89,34,-89,91v0,57,31,91,89,91v58,0,88,-34,88,-91v0,-57,-30,-91,-88,-91xm116,6v-47,0,-74,-23,-89,-56r0,123r-7,0r0,-257r7,0v1,16,-2,35,1,49v13,-35,43,-55,88,-55v63,0,96,37,96,98v0,60,-33,97,-96,98","w":220},"q":{"d":"105,-183v-58,0,-89,34,-89,91v0,57,31,91,89,91v58,0,88,-35,88,-91v0,-56,-30,-91,-88,-91xm105,-190v45,0,75,21,88,55r0,-49r8,0r0,257r-8,0r0,-123v-13,35,-42,56,-88,56v-62,0,-96,-36,-96,-98v0,-62,34,-98,96,-98","w":220},"r":{"d":"119,-182v-97,-12,-96,86,-92,182r-7,0r0,-184r7,0v1,16,-2,35,1,49v10,-37,42,-60,91,-54r0,7","w":113,"k":{".":27,"-":20,",":27}},"s":{"d":"163,-80v39,40,-8,86,-70,86v-55,0,-86,-15,-89,-64r7,0v3,45,32,57,82,57v55,0,97,-33,64,-75v-39,-29,-145,6,-147,-65v-2,-65,131,-63,152,-18v3,8,6,17,6,29r-7,0v0,-42,-28,-54,-72,-53v-38,1,-71,6,-71,42v0,64,107,23,145,61","w":180},"t":{"d":"110,0v-34,6,-66,3,-66,-35r0,-142r-44,0r0,-7r44,0r0,-64r7,0r0,64r54,0r0,7r-54,0r0,143v-4,34,30,30,59,27r0,7","w":106},"u":{"d":"103,-1v52,0,83,-28,83,-78r0,-105r8,0r0,184r-8,0r0,-41v-13,31,-40,47,-83,47v-54,0,-83,-22,-83,-74r0,-116r7,0r0,116v0,47,27,67,76,67","w":213},"v":{"d":"0,-184r8,0r89,177r88,-177r9,0r-94,184r-7,0","w":193,"k":{".":20,",":20}},"w":{"d":"-5,-184r10,0r71,177r72,-177r11,0r72,177r71,-177r9,0r-74,184r-11,0r-73,-177r-72,177r-11,0","w":306,"k":{".":20,",":20}},"x":{"d":"88,-96r-84,-88r11,0r79,82r78,-82r11,0r-84,88r91,96r-10,0r-86,-90r-87,90r-10,0","w":187},"y":{"d":"-5,-184r10,0r89,175r81,-175r10,0r-109,228v-9,16,-28,20,-55,18r0,-7v46,6,57,-25,69,-55","w":180,"k":{".":27,",":27}},"z":{"d":"157,-177r-146,0r0,-7r155,0r0,8r-158,169r164,0r0,7r-171,0r0,-10","w":173},"{":{"d":"18,-94v64,22,-25,167,67,155r0,7v-62,12,-48,-47,-49,-101v-1,-26,-2,-55,-25,-58r0,-7v38,-9,25,-75,25,-118v0,-33,14,-45,49,-41r0,7v-84,-20,-7,129,-67,156","w":93},"|":{"d":"36,-263r8,0r0,269r-8,0r0,-269","w":79},"}":{"d":"9,-250r0,-7v61,-12,48,48,49,101v1,26,1,56,25,58r0,7v-38,8,-25,75,-25,118v0,33,-14,45,-49,41r0,-7v83,20,6,-128,67,-155v-64,-32,21,-171,-67,-156","w":93},"~":{"d":"72,-100v-21,1,-27,11,-39,26r-5,-5v12,-18,21,-27,44,-28v30,-1,49,24,77,24v14,0,26,-12,33,-25r6,5v-9,13,-22,27,-39,27v-29,1,-46,-25,-77,-24","w":216},"\u00a1":{"d":"36,-125r8,0r0,192r-8,0r0,-192xm36,-190r8,0r0,34r-8,0r0,-34","w":79},"\u00a2":{"d":"114,-183v-97,-7,-120,141,-39,173v11,5,24,8,39,8r0,-181xm216,-63v-11,41,-42,68,-95,69r0,36r-7,0r0,-37v-60,-2,-97,-37,-97,-97v0,-60,37,-94,97,-98r0,-37r7,0r0,37v51,0,85,23,94,63v-15,2,-9,-14,-16,-21v-14,-23,-41,-34,-78,-35r0,182v46,-2,78,-23,88,-62r7,0"},"\u00a3":{"d":"17,0v30,-29,63,-70,40,-118r-33,0r0,-7r29,0v-10,-23,-27,-39,-27,-71v2,-46,38,-62,86,-63v64,-1,100,24,98,89r-8,0v2,-61,-30,-82,-90,-82v-68,0,-101,58,-61,109r9,18r87,0r0,7r-83,0v22,48,-10,91,-38,115v35,-31,90,-4,130,2v26,-2,39,-14,55,-33r5,6v-25,40,-77,35,-123,19v-28,-10,-53,2,-71,15"},"\u00a5":{"d":"113,-67r-81,0r0,-7r81,0v-1,-12,2,-29,-2,-38r-79,0r0,-7r73,0r-106,-134r10,0r106,134r4,0r105,-134r10,0r-105,134r72,0r0,7r-78,0v-6,7,-2,26,-3,38r81,0r0,7r-81,0r0,67r-7,0r0,-67"},"\u0192":{"d":"110,-149r-51,0r2,-7r50,0v9,-55,19,-118,93,-101v-6,17,-46,-5,-59,17v-17,18,-20,55,-27,84r53,0r-1,7r-53,0r-42,189v-8,28,-38,38,-75,31v4,-16,43,3,58,-16v8,-10,14,-22,17,-39"},"\u00a7":{"d":"163,-36v50,29,23,90,-43,90v-52,0,-80,-17,-80,-67r7,0v-2,47,25,60,72,60v36,0,63,-8,64,-42v0,-16,-11,-27,-31,-38v-41,-22,-94,-38,-126,-69v-22,-37,10,-72,43,-77v-15,-7,-26,-17,-26,-37v-3,-63,134,-63,142,-7v1,8,3,16,3,25r-8,0v2,-45,-25,-58,-69,-58v-54,0,-84,48,-38,72r124,64v35,24,12,87,-34,84xm152,-41v49,6,76,-59,32,-80r-107,-52v-46,-2,-70,60,-24,83"},"'":{"d":"27,-257r7,0r0,78r-7,0r0,-78","w":60},"\u00ab":{"d":"68,-149r0,9r-37,44r37,44r0,9r-42,-50r0,-6xm108,-149r0,9r-37,44r37,44r0,9r-42,-50r0,-6","w":140},"\u00b7":{"d":"30,-105v-8,0,-14,-7,-14,-15v0,-7,7,-15,14,-14v8,0,15,7,15,14v0,7,-7,15,-15,15","w":60},"\u2219":{"d":"30,-105v-8,0,-14,-7,-14,-15v0,-7,7,-15,14,-14v8,0,15,7,15,14v0,7,-7,15,-15,15","w":60},"\u00b6":{"d":"27,-186v-4,-75,73,-74,149,-71r0,305r-8,0r0,-298r-63,0r0,298r-7,0r0,-165v-42,-2,-69,-27,-71,-69xm98,-250v-73,-8,-84,102,-24,121v8,3,15,5,24,5r0,-126","w":216},"\u00bb":{"d":"114,-99r0,6r-42,50r0,-9r37,-44r-37,-44r0,-9xm74,-99r0,6r-42,50r0,-9r37,-44r-37,-44r0,-9","w":140},"\u00bf":{"d":"112,73v-81,0,-122,-79,-57,-122v25,-17,62,-23,53,-75r8,0v12,81,-87,59,-87,133v0,45,36,56,83,57v58,1,84,-25,85,-79r7,0v0,59,-30,86,-92,86xm108,-190r8,0r0,34r-8,0r0,-34","w":219},"`":{"d":"-24,-262r12,0r59,50r-10,0","w":46},"\u00b4":{"d":"59,-262r12,0r-61,50r-10,0","w":46},"\u00af":{"d":"-44,-230r0,-7r135,0r0,7r-135,0","w":46},"\u02c9":{"d":"-44,-230r0,-7r135,0r0,7r-135,0","w":46},"\u00a8":{"d":"57,-214r0,-39r7,0r0,39r-7,0xm-17,-214r0,-39r7,0r0,39r-7,0","w":46},"\u00b8":{"d":"78,42v0,-19,-36,-19,-49,-10r-6,-5v12,-8,14,-27,34,-27r-20,22v19,-7,48,-2,48,19v1,35,-53,29,-79,20r3,-7v19,6,69,18,69,-12","w":100},"\u00c6":{"d":"159,-257r211,0r0,7r-177,0r0,112r163,0r0,8r-163,0r0,123r177,0r0,7r-184,0r0,-100r-120,0r-66,100r-9,0xm70,-107r116,0r0,-143r-23,0","w":373},"\u00aa":{"d":"58,-260v31,0,56,2,57,31r0,69v-3,14,9,10,19,9v2,8,-6,6,-12,6v-15,3,-10,-13,-13,-23v-12,34,-107,44,-107,-9v-1,-34,40,-29,73,-31v19,-1,37,1,35,-21v-2,-22,-22,-26,-50,-26v-31,1,-45,6,-48,33r-5,0v1,-29,22,-38,51,-38xm50,-145v39,0,69,-21,59,-65v-24,18,-102,-10,-102,35v0,20,21,30,43,30","w":133},"\u00d8":{"d":"143,-256v-113,-7,-163,139,-93,217r182,-183v-22,-20,-51,-32,-89,-34xm143,-1v113,7,162,-138,94,-217r-182,183v21,20,50,32,88,34xm143,6v-40,0,-72,-14,-94,-35r-34,34r-4,-4r34,-35v-21,-22,-36,-53,-35,-95v2,-83,50,-134,133,-134v40,0,72,13,94,35r34,-34r4,4r-33,35v21,22,34,53,34,94v0,84,-51,135,-133,135","w":286},"\u0152":{"d":"143,-263v39,-1,67,12,90,32r0,-26r184,0r0,7r-177,0r0,112r163,0r0,8r-163,0r0,123r177,0r0,7r-184,0r0,-26v-22,20,-52,32,-90,32v-83,0,-133,-52,-133,-135v0,-83,50,-132,133,-134xm17,-129v-6,114,130,163,212,98v3,-2,4,-5,4,-8r0,-179v-15,-25,-52,-38,-90,-38v-77,0,-122,48,-126,127","w":420},"\u00ba":{"d":"72,-140v-39,0,-65,-20,-66,-60v0,-41,27,-60,66,-60v39,0,66,21,66,60v0,39,-27,60,-66,60xm72,-255v-38,0,-61,20,-61,55v0,36,25,55,61,55v35,0,60,-19,60,-55v0,-36,-23,-55,-60,-55","w":143},"\u00e6":{"d":"367,-99v5,-95,-148,-111,-177,-33v-4,10,-7,22,-8,33r185,0xm182,-132v16,-56,115,-78,163,-32v17,16,30,39,29,72r-192,0v2,58,34,91,94,91v50,0,78,-24,88,-63r8,0v-10,42,-40,70,-96,70v-52,0,-80,-24,-96,-60v-13,39,-48,56,-98,60v-59,5,-95,-54,-58,-93v19,-19,68,-16,106,-17v30,-1,48,-3,45,-38v-3,-36,-35,-40,-77,-41v-45,-1,-71,13,-74,54r-7,0v2,-46,33,-61,81,-61v53,1,86,9,84,58xm82,-1v65,1,103,-36,92,-107v-39,29,-159,-16,-158,59v1,35,30,47,66,48","w":379},"\u0131":{"d":"20,-184r7,0r0,184r-7,0r0,-184","w":46},"\u00f8":{"d":"110,-183v-86,0,-121,98,-70,155r136,-132v-15,-14,-37,-23,-66,-23xm44,-24v54,45,167,19,160,-68v-2,-27,-9,-50,-24,-64xm212,-92v0,92,-114,124,-173,73r-25,24r-5,-4r26,-25v-15,-16,-27,-38,-26,-68v2,-61,38,-98,101,-98v31,0,54,10,71,25r26,-25r4,5r-26,24v15,16,27,39,27,69","w":220},"\u0153":{"d":"367,-99v10,-89,-130,-114,-162,-39v-5,11,-9,24,-10,39r172,0xm191,-121v7,-69,123,-93,165,-37v12,16,18,40,18,66r-179,0v1,58,31,91,86,91v47,0,76,-23,84,-61r8,0v-9,43,-40,68,-91,68v-51,0,-79,-26,-91,-67v-12,40,-40,67,-89,67v-58,0,-93,-37,-93,-98v0,-61,35,-98,93,-98v49,0,79,28,89,69xm102,-183v-55,0,-86,35,-86,91v0,56,33,91,86,91v53,0,86,-36,86,-91v0,-55,-32,-91,-86,-91","w":379},"\u00df":{"d":"106,-255v-52,-1,-79,17,-79,68r0,187r-7,0r0,-189v-1,-55,32,-73,86,-73v46,-1,79,17,80,61v1,39,-27,52,-59,57v47,0,72,25,73,71v1,59,-53,86,-113,71r0,-7v55,14,106,-10,106,-64v0,-55,-42,-71,-100,-67r0,-8v50,2,86,-12,86,-53v0,-41,-32,-54,-73,-54","w":206},"\u00f7":{"d":"17,-87r0,-8r182,0r0,8r-182,0xm108,-153v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14v8,0,15,6,15,14v0,8,-8,15,-15,15xm108,0v-7,0,-14,-7,-14,-14v0,-8,6,-15,14,-15v8,0,15,7,15,15v0,8,-7,14,-15,14","w":216},"\u00ae":{"d":"207,-164v0,27,-19,38,-41,42r48,73r-10,0r-47,-73r-55,0r0,73r-7,0r0,-159v52,0,112,-9,112,44xm199,-165v0,-46,-53,-34,-97,-36r0,71v43,-1,97,10,97,-35xm144,6v-79,0,-134,-53,-134,-135v0,-81,55,-134,134,-134v79,0,134,53,134,134v0,82,-55,135,-134,135xm144,-256v-77,0,-127,51,-127,127v0,77,50,128,127,128v77,0,127,-51,127,-128v0,-76,-50,-127,-127,-127","w":288},"\u00e7":{"d":"119,-1v49,0,80,-22,90,-62r7,0v-12,43,-43,69,-98,69v-4,5,-13,12,-14,16v19,-7,48,-2,48,19v1,36,-54,29,-80,20r3,-7v19,6,69,18,69,-12v0,-19,-35,-19,-48,-10v-13,-8,9,-18,14,-27v-57,-4,-88,-39,-93,-97v-11,-111,175,-134,198,-35r-8,0v-8,-39,-39,-56,-88,-56v-60,1,-95,35,-95,91v0,56,37,91,95,91"},"\u00b1":{"d":"104,-182r8,0r0,72r87,0r0,7r-87,0r0,72r-8,0r0,-72r-87,0r0,-7r87,0r0,-72xm17,-7r182,0r0,7r-182,0r0,-7","w":216},"\u00c7":{"d":"143,-1v68,0,113,-36,122,-97r7,0v-10,65,-57,101,-127,104v-4,5,-13,12,-14,16v19,-7,47,-2,47,19v0,35,-53,29,-79,20r3,-7v19,6,69,18,69,-12v0,-19,-36,-18,-49,-10v-13,-8,9,-18,14,-27v-79,-6,-120,-52,-126,-134v-9,-128,166,-176,240,-89v8,10,13,22,16,36r-7,0v-13,-49,-53,-74,-116,-74v-77,0,-126,48,-126,127v0,80,48,128,126,128","w":286},"\u00a9":{"d":"148,-51v35,0,54,-20,60,-50r7,0v-4,33,-29,59,-67,57v-52,-2,-76,-33,-81,-85v-9,-90,134,-119,148,-29r-7,0v-4,-31,-27,-48,-61,-48v-47,-1,-74,31,-73,77v1,48,25,77,74,78xm144,6v-79,0,-134,-53,-134,-135v0,-81,55,-134,134,-134v79,0,134,53,134,134v0,82,-55,135,-134,135xm144,-256v-77,0,-127,51,-127,127v0,77,50,128,127,128v77,0,127,-51,127,-128v0,-76,-50,-127,-127,-127","w":288},"\u00ac":{"d":"192,-122r-175,0r0,-8r182,0r0,91r-7,0r0,-83","w":216},"\u00b0":{"d":"72,-156v-31,0,-51,-20,-51,-52v0,-32,21,-51,51,-51v30,0,51,19,51,51v0,32,-20,52,-51,52xm72,-252v-27,0,-44,17,-44,44v0,27,18,45,44,45v26,0,44,-18,44,-45v0,-27,-17,-44,-44,-44","w":144},"\u00b5":{"d":"103,-1v52,0,83,-28,83,-78r0,-105r8,0r0,184r-8,0r0,-41v-14,57,-138,65,-158,10v-4,31,0,70,-1,104r-7,0r0,-257r7,0r0,116v0,47,27,67,76,67","w":213},"\u03bc":{"d":"103,-1v52,0,83,-28,83,-78r0,-105r8,0r0,184r-8,0r0,-41v-14,57,-138,65,-158,10v-4,31,0,70,-1,104r-7,0r0,-257r7,0r0,116v0,47,27,67,76,67","w":213},"#":{"d":"72,-85r-45,0r0,-8r46,0r9,-68r-44,0r0,-7r46,0r11,-85r8,0r-12,85r63,0r12,-85r7,0r-12,85r45,0r0,7r-46,0r-9,68r44,0r0,8r-45,0r-12,85r-7,0r12,-85r-64,0r-12,85r-7,0xm80,-93r64,0r9,-68r-63,0"},"\u00c1":{"d":"112,-257r9,0r118,257r-9,0r-38,-85r-150,0r-39,85r-9,0xm45,-92r143,0r-71,-158xm152,-326r12,0r-61,50r-10,0"},"\u00c2":{"d":"111,-326r11,0r60,50r-12,0r-53,-45r-54,45r-12,0xm112,-257r9,0r118,257r-9,0r-38,-85r-150,0r-39,85r-9,0xm45,-92r143,0r-71,-158"},"\u00c4":{"d":"112,-257r9,0r118,257r-9,0r-38,-85r-150,0r-39,85r-9,0xm45,-92r143,0r-71,-158xm150,-278r0,-39r7,0r0,39r-7,0xm76,-278r0,-39r7,0r0,39r-7,0"},"\u00c0":{"d":"112,-257r9,0r118,257r-9,0r-38,-85r-150,0r-39,85r-9,0xm45,-92r143,0r-71,-158xm69,-326r12,0r59,50r-10,0"},"\u00c5":{"d":"117,-268v-19,0,-35,-16,-35,-35v0,-19,16,-34,35,-34v18,0,34,16,34,34v0,19,-15,35,-34,35xm117,-330v-16,0,-28,11,-28,27v0,16,12,28,28,28v16,0,27,-12,27,-28v0,-15,-12,-27,-27,-27xm112,-257r9,0r118,257r-9,0r-38,-85r-150,0r-39,85r-9,0xm45,-92r143,0r-71,-158"},"\u00c3":{"d":"146,-288v-29,0,-69,-45,-81,0r-7,0v3,-40,51,-27,74,-11v16,11,34,1,36,-18r8,0v-2,18,-12,29,-30,29xm112,-257r9,0r118,257r-9,0r-38,-85r-150,0r-39,85r-9,0xm45,-92r143,0r-71,-158"},"\u00c9":{"d":"20,-257r200,0r0,7r-193,0r0,112r185,0r0,8r-185,0r0,123r195,0r0,7r-202,0r0,-257xm149,-326r12,0r-61,50r-10,0","w":226},"\u00ca":{"d":"108,-326r11,0r60,50r-12,0r-54,-45r-53,45r-12,0xm20,-257r200,0r0,7r-193,0r0,112r185,0r0,8r-185,0r0,123r195,0r0,7r-202,0r0,-257","w":226},"\u00cb":{"d":"20,-257r200,0r0,7r-193,0r0,112r185,0r0,8r-185,0r0,123r195,0r0,7r-202,0r0,-257xm147,-278r0,-39r7,0r0,39r-7,0xm73,-278r0,-39r7,0r0,39r-7,0","w":226},"\u00c8":{"d":"20,-257r200,0r0,7r-193,0r0,112r185,0r0,8r-185,0r0,123r195,0r0,7r-202,0r0,-257xm66,-326r12,0r59,50r-10,0","w":226},"\u00cd":{"d":"20,-257r7,0r0,257r-7,0r0,-257xm59,-326r12,0r-61,50r-10,0","w":46},"\u00ce":{"d":"18,-326r11,0r60,50r-12,0r-54,-45r-53,45r-12,0xm20,-257r7,0r0,257r-7,0r0,-257","w":46},"\u00cf":{"d":"20,-257r7,0r0,257r-7,0r0,-257xm57,-278r0,-39r7,0r0,39r-7,0xm-17,-278r0,-39r7,0r0,39r-7,0","w":46},"\u00cc":{"d":"20,-257r7,0r0,257r-7,0r0,-257xm-24,-326r12,0r59,50r-10,0","w":46},"\u00d1":{"d":"159,-288v-28,0,-69,-45,-81,0r-7,0v3,-40,52,-27,75,-11v16,11,34,0,36,-18r7,0v-2,18,-12,29,-30,29xm20,-257r9,0r204,248r0,-248r7,0r0,257r-9,0r-204,-248r0,248r-7,0r0,-257","w":259},"\u00d3":{"d":"143,6v-83,0,-133,-52,-133,-135v0,-83,50,-134,133,-134v82,0,133,50,133,134v0,84,-51,135,-133,135xm143,-256v-77,0,-126,48,-126,127v0,80,48,128,126,128v77,0,126,-47,126,-128v0,-80,-49,-127,-126,-127xm179,-326r12,0r-61,50r-10,0","w":286},"\u00d4":{"d":"138,-326r11,0r59,50r-11,0r-54,-45r-53,45r-12,0xm143,6v-83,0,-133,-52,-133,-135v0,-83,50,-134,133,-134v82,0,133,50,133,134v0,84,-51,135,-133,135xm143,-256v-77,0,-126,48,-126,127v0,80,48,128,126,128v77,0,126,-47,126,-128v0,-80,-49,-127,-126,-127","w":286},"\u00d6":{"d":"143,6v-83,0,-133,-52,-133,-135v0,-83,50,-134,133,-134v82,0,133,50,133,134v0,84,-51,135,-133,135xm143,-256v-77,0,-126,48,-126,127v0,80,48,128,126,128v77,0,126,-47,126,-128v0,-80,-49,-127,-126,-127xm177,-278r0,-39r7,0r0,39r-7,0xm103,-278r0,-39r7,0r0,39r-7,0","w":286},"\u00d2":{"d":"143,6v-83,0,-133,-52,-133,-135v0,-83,50,-134,133,-134v82,0,133,50,133,134v0,84,-51,135,-133,135xm143,-256v-77,0,-126,48,-126,127v0,80,48,128,126,128v77,0,126,-47,126,-128v0,-80,-49,-127,-126,-127xm96,-326r12,0r59,50r-10,0","w":286},"\u00d5":{"d":"173,-288v-29,0,-69,-44,-82,0r-7,0v4,-39,52,-28,75,-11v16,11,34,0,36,-18r7,0v-2,17,-11,29,-29,29xm143,6v-83,0,-133,-52,-133,-135v0,-83,50,-134,133,-134v82,0,133,50,133,134v0,84,-51,135,-133,135xm143,-256v-77,0,-126,48,-126,127v0,80,48,128,126,128v77,0,126,-47,126,-128v0,-80,-49,-127,-126,-127","w":286},"\u00da":{"d":"130,-1v67,0,104,-28,105,-92r0,-164r7,0r0,163v0,66,-37,100,-112,100v-75,0,-112,-34,-112,-100r0,-163r7,0r0,164v1,64,38,92,105,92xm166,-326r12,0r-61,50r-10,0","w":259},"\u00db":{"d":"124,-326r12,0r59,50r-11,0r-54,-45r-54,45r-11,0xm130,-1v67,0,104,-28,105,-92r0,-164r7,0r0,163v0,66,-37,100,-112,100v-75,0,-112,-34,-112,-100r0,-163r7,0r0,164v1,64,38,92,105,92","w":259},"\u00dc":{"d":"130,-1v67,0,104,-28,105,-92r0,-164r7,0r0,163v0,66,-37,100,-112,100v-75,0,-112,-34,-112,-100r0,-163r7,0r0,164v1,64,38,92,105,92xm164,-278r0,-39r7,0r0,39r-7,0xm90,-278r0,-39r7,0r0,39r-7,0","w":259},"\u00d9":{"d":"130,-1v67,0,104,-28,105,-92r0,-164r7,0r0,163v0,66,-37,100,-112,100v-75,0,-112,-34,-112,-100r0,-163r7,0r0,164v1,64,38,92,105,92xm83,-326r12,0r59,50r-10,0","w":259},"\u0178":{"d":"110,-108r-122,-149r11,0r114,141r115,-141r10,0r-121,149r0,108r-7,0r0,-108xm147,-278r0,-39r7,0r0,39r-7,0xm73,-278r0,-39r7,0r0,39r-7,0","w":226},"\u00e1":{"d":"182,-23v-3,20,16,17,29,13v2,11,-9,8,-17,10v-23,3,-17,-22,-20,-40v-18,55,-164,72,-165,-10v-1,-57,65,-53,121,-54v30,0,48,-3,45,-38v-3,-36,-35,-40,-77,-41v-45,-1,-71,13,-74,54r-7,0v2,-46,33,-61,81,-61v49,0,84,8,84,48r0,119xm82,-1v65,1,103,-36,92,-107v-35,31,-158,-19,-158,58v0,36,30,48,66,49xm137,-262r12,0r-61,50r-10,0","w":203},"\u00e2":{"d":"96,-262r11,0r60,50r-12,0r-53,-45r-54,45r-12,0xm182,-23v-3,20,16,17,29,13v2,11,-9,8,-17,10v-23,3,-17,-22,-20,-40v-18,55,-164,72,-165,-10v-1,-57,65,-53,121,-54v30,0,48,-3,45,-38v-3,-36,-35,-40,-77,-41v-45,-1,-71,13,-74,54r-7,0v2,-46,33,-61,81,-61v49,0,84,8,84,48r0,119xm82,-1v65,1,103,-36,92,-107v-35,31,-158,-19,-158,58v0,36,30,48,66,49","w":203},"\u00e4":{"d":"182,-23v-3,20,16,17,29,13v2,11,-9,8,-17,10v-23,3,-17,-22,-20,-40v-18,55,-164,72,-165,-10v-1,-57,65,-53,121,-54v30,0,48,-3,45,-38v-3,-36,-35,-40,-77,-41v-45,-1,-71,13,-74,54r-7,0v2,-46,33,-61,81,-61v49,0,84,8,84,48r0,119xm82,-1v65,1,103,-36,92,-107v-35,31,-158,-19,-158,58v0,36,30,48,66,49xm135,-214r0,-39r7,0r0,39r-7,0xm61,-214r0,-39r7,0r0,39r-7,0","w":203},"\u00e0":{"d":"182,-23v-3,20,16,17,29,13v2,11,-9,8,-17,10v-23,3,-17,-22,-20,-40v-18,55,-164,72,-165,-10v-1,-57,65,-53,121,-54v30,0,48,-3,45,-38v-3,-36,-35,-40,-77,-41v-45,-1,-71,13,-74,54r-7,0v2,-46,33,-61,81,-61v49,0,84,8,84,48r0,119xm82,-1v65,1,103,-36,92,-107v-35,31,-158,-19,-158,58v0,36,30,48,66,49xm54,-262r12,0r59,50r-10,0","w":203},"\u00e5":{"d":"102,-206v-19,0,-35,-16,-35,-35v0,-19,16,-34,35,-34v18,0,34,16,34,34v0,19,-15,35,-34,35xm102,-268v-16,0,-28,11,-28,27v0,16,12,28,28,28v16,0,27,-12,27,-28v0,-15,-12,-27,-27,-27xm182,-23v-3,20,16,17,29,13v2,11,-9,8,-17,10v-23,3,-17,-22,-20,-40v-18,55,-164,72,-165,-10v-1,-57,65,-53,121,-54v30,0,48,-3,45,-38v-3,-36,-35,-40,-77,-41v-45,-1,-71,13,-74,54r-7,0v2,-46,33,-61,81,-61v49,0,84,8,84,48r0,119xm82,-1v65,1,103,-36,92,-107v-35,31,-158,-19,-158,58v0,36,30,48,66,49","w":203},"\u00e3":{"d":"131,-224v-27,-5,-70,-44,-81,0r-8,0v3,-40,52,-28,75,-11v15,11,35,1,36,-18r8,0v-2,18,-13,28,-30,29xm182,-23v-3,20,16,17,29,13v2,11,-9,8,-17,10v-23,3,-17,-22,-20,-40v-18,55,-164,72,-165,-10v-1,-57,65,-53,121,-54v30,0,48,-3,45,-38v-3,-36,-35,-40,-77,-41v-45,-1,-71,13,-74,54r-7,0v2,-46,33,-61,81,-61v49,0,84,8,84,48r0,119xm82,-1v65,1,103,-36,92,-107v-35,31,-158,-19,-158,58v0,36,30,48,66,49","w":203},"\u00e9":{"d":"9,-92v-8,-108,157,-130,192,-42v5,12,7,26,7,42r-192,0v2,57,37,91,94,91v50,0,78,-24,88,-63r8,0v-10,42,-40,72,-96,70v-62,-2,-97,-36,-101,-98xm201,-99v5,-95,-148,-111,-177,-33v-4,10,-7,22,-8,33r185,0xm143,-262r12,0r-61,50r-10,0","w":213},"\u00ea":{"d":"101,-262r12,0r59,50r-11,0r-54,-45r-54,45r-11,0xm9,-92v-8,-108,157,-130,192,-42v5,12,7,26,7,42r-192,0v2,57,37,91,94,91v50,0,78,-24,88,-63r8,0v-10,42,-40,72,-96,70v-62,-2,-97,-36,-101,-98xm201,-99v5,-95,-148,-111,-177,-33v-4,10,-7,22,-8,33r185,0","w":213},"\u00eb":{"d":"9,-92v-8,-108,157,-130,192,-42v5,12,7,26,7,42r-192,0v2,57,37,91,94,91v50,0,78,-24,88,-63r8,0v-10,42,-40,72,-96,70v-62,-2,-97,-36,-101,-98xm201,-99v5,-95,-148,-111,-177,-33v-4,10,-7,22,-8,33r185,0xm141,-214r0,-39r7,0r0,39r-7,0xm67,-214r0,-39r7,0r0,39r-7,0","w":213},"\u00e8":{"d":"9,-92v-8,-108,157,-130,192,-42v5,12,7,26,7,42r-192,0v2,57,37,91,94,91v50,0,78,-24,88,-63r8,0v-10,42,-40,72,-96,70v-62,-2,-97,-36,-101,-98xm201,-99v5,-95,-148,-111,-177,-33v-4,10,-7,22,-8,33r185,0xm60,-262r12,0r59,50r-10,0","w":213},"\u00ed":{"d":"20,-184r7,0r0,184r-7,0r0,-184xm59,-262r12,0r-61,50r-10,0","w":46},"\u00ee":{"d":"18,-262r11,0r60,50r-12,0r-54,-45r-53,45r-12,0xm20,-184r7,0r0,184r-7,0r0,-184","w":46},"\u00ef":{"d":"20,-184r7,0r0,184r-7,0r0,-184xm57,-214r0,-39r7,0r0,39r-7,0xm-17,-214r0,-39r7,0r0,39r-7,0","w":46},"\u00ec":{"d":"20,-184r7,0r0,184r-7,0r0,-184xm-24,-262r12,0r59,50r-10,0","w":46},"\u00f1":{"d":"136,-224v-27,-5,-70,-44,-81,0r-7,0v2,-41,52,-27,75,-11v16,11,34,0,36,-18r7,0v-2,18,-13,28,-30,29xm111,-183v-55,0,-83,29,-84,80r0,103r-7,0r0,-184r7,0v1,13,-2,30,1,41v13,-33,40,-47,83,-47v54,0,83,22,83,74r0,116r-8,0r0,-116v1,-48,-25,-67,-75,-67","w":213},"\u00f3":{"d":"110,6v-62,0,-101,-36,-101,-98v0,-61,38,-98,101,-98v63,0,102,36,102,98v0,62,-40,98,-102,98xm110,-183v-59,0,-94,34,-94,91v0,57,37,91,94,91v58,0,94,-32,94,-91v0,-59,-35,-91,-94,-91xm146,-262r12,0r-61,50r-10,0","w":220},"\u00f4":{"d":"104,-262r12,0r59,50r-11,0r-54,-45r-53,45r-12,0xm110,6v-62,0,-101,-36,-101,-98v0,-61,38,-98,101,-98v63,0,102,36,102,98v0,62,-40,98,-102,98xm110,-183v-59,0,-94,34,-94,91v0,57,37,91,94,91v58,0,94,-32,94,-91v0,-59,-35,-91,-94,-91","w":220},"\u00f6":{"d":"110,6v-62,0,-101,-36,-101,-98v0,-61,38,-98,101,-98v63,0,102,36,102,98v0,62,-40,98,-102,98xm110,-183v-59,0,-94,34,-94,91v0,57,37,91,94,91v58,0,94,-32,94,-91v0,-59,-35,-91,-94,-91xm144,-214r0,-39r7,0r0,39r-7,0xm70,-214r0,-39r7,0r0,39r-7,0","w":220},"\u00f2":{"d":"110,6v-62,0,-101,-36,-101,-98v0,-61,38,-98,101,-98v63,0,102,36,102,98v0,62,-40,98,-102,98xm110,-183v-59,0,-94,34,-94,91v0,57,37,91,94,91v58,0,94,-32,94,-91v0,-59,-35,-91,-94,-91xm63,-262r12,0r59,50r-10,0","w":220},"\u00f5":{"d":"140,-224v-28,-5,-70,-44,-82,0r-7,0v3,-40,52,-28,75,-11v16,11,34,0,36,-18r7,0v-2,17,-12,28,-29,29xm110,6v-62,0,-101,-36,-101,-98v0,-61,38,-98,101,-98v63,0,102,36,102,98v0,62,-40,98,-102,98xm110,-183v-59,0,-94,34,-94,91v0,57,37,91,94,91v58,0,94,-32,94,-91v0,-59,-35,-91,-94,-91","w":220},"\u00fa":{"d":"103,-1v52,0,83,-28,83,-78r0,-105r8,0r0,184r-8,0r0,-41v-13,31,-40,47,-83,47v-54,0,-83,-22,-83,-74r0,-116r7,0r0,116v0,47,27,67,76,67xm143,-262r12,0r-61,50r-10,0","w":213},"\u00fb":{"d":"101,-262r12,0r59,50r-11,0r-54,-45r-54,45r-11,0xm103,-1v52,0,83,-28,83,-78r0,-105r8,0r0,184r-8,0r0,-41v-13,31,-40,47,-83,47v-54,0,-83,-22,-83,-74r0,-116r7,0r0,116v0,47,27,67,76,67","w":213},"\u00fc":{"d":"103,-1v52,0,83,-28,83,-78r0,-105r8,0r0,184r-8,0r0,-41v-13,31,-40,47,-83,47v-54,0,-83,-22,-83,-74r0,-116r7,0r0,116v0,47,27,67,76,67xm141,-214r0,-39r7,0r0,39r-7,0xm67,-214r0,-39r7,0r0,39r-7,0","w":213},"\u00f9":{"d":"103,-1v52,0,83,-28,83,-78r0,-105r8,0r0,184r-8,0r0,-41v-13,31,-40,47,-83,47v-54,0,-83,-22,-83,-74r0,-116r7,0r0,116v0,47,27,67,76,67xm60,-262r12,0r59,50r-10,0","w":213},"\u00ff":{"d":"-5,-184r10,0r89,175r81,-175r10,0r-109,228v-9,16,-28,20,-55,18r0,-7v46,6,57,-25,69,-55xm124,-214r0,-39r7,0r0,39r-7,0xm50,-214r0,-39r7,0r0,39r-7,0","w":180},"!":{"d":"36,-257r8,0r0,191r-8,0r0,-191xm36,-35r8,0r0,35r-8,0r0,-35","w":79},"\"":{"d":"28,-257r7,0r0,78r-7,0r0,-78xm72,-257r7,0r0,78r-7,0r0,-78","w":106},"\u00a4":{"d":"183,-187v30,26,29,95,0,121v5,8,25,16,14,25r-20,-20v-25,31,-96,31,-121,0v-8,6,-16,27,-25,14r20,-19v-30,-25,-32,-96,0,-121v-5,-8,-27,-17,-14,-25r19,19v26,-29,95,-30,121,0v8,-5,17,-25,25,-14xm117,-209v-50,0,-83,33,-83,82v0,50,33,83,83,83v49,0,82,-33,82,-83v0,-50,-32,-82,-82,-82"},"\u0141":{"d":"20,-101r-43,28r0,-7r43,-28r0,-149r7,0r0,144r100,-66r0,7r-100,66r0,99r173,0r0,7r-180,0r0,-101","w":193},"\u0142":{"d":"20,-116r-29,23v2,-18,20,-19,29,-30r0,-134r7,0r0,128r29,-23v-1,19,-20,20,-29,31r0,121r-7,0r0,-116","w":46},"\u00be":{"d":"291,-40r-93,0r0,-6r91,-107r7,0r0,108r34,0r0,5r-34,0r0,40r-5,0r0,-40xm203,-45r88,0r0,-103xm143,-144v0,-32,-29,-40,-66,-38v-2,-7,5,-5,10,-5v30,0,53,-9,53,-32v0,-26,-23,-36,-52,-36v-36,0,-57,13,-58,47r-5,0v1,-37,24,-52,63,-52v35,0,56,11,57,40v1,24,-19,31,-39,36v28,2,42,15,42,41v0,32,-27,44,-64,44v-42,1,-64,-16,-64,-55v3,0,6,-1,5,3v0,34,25,47,59,47v33,0,59,-10,59,-40xm267,-262r8,0r-172,271r-8,0","w":349},"\u00bc":{"d":"291,-40r-93,0r0,-6r91,-107r7,0r0,108r34,0r0,5r-34,0r0,40r-5,0r0,-40xm203,-45r88,0r0,-103xm20,-227v23,-5,39,-16,51,-29r7,0r0,153r-5,0r0,-148v-12,13,-33,25,-53,29r0,-5xm237,-262r7,0r-172,271r-8,0","w":349},"\u00b9":{"d":"20,-227v23,-5,39,-16,51,-29r7,0r0,153r-5,0r0,-148v-12,13,-33,25,-53,29r0,-5","w":139},"\u00d7":{"d":"103,-91r-75,-75r5,-5r75,75r75,-75r5,5r-75,75r75,74r-5,5r-75,-74r-75,74r-5,-5","w":216},"\u00de":{"d":"229,-136v0,92,-115,67,-202,70r0,66r-7,0r0,-257r7,0r0,51v86,4,202,-25,202,70xm221,-136v0,-92,-114,-56,-194,-63r0,126v81,-4,194,23,194,-63"},"\u00a6":{"d":"36,-91r8,0r0,97r-8,0r0,-97xm36,-263r8,0r0,97r-8,0r0,-97","w":79},"\u00d0":{"d":"252,-129v0,77,-32,129,-107,129r-125,0r0,-130r-28,0r0,-8r28,0r0,-119r125,0v75,2,107,52,107,128xm245,-129v0,-71,-29,-121,-100,-121r-118,0r0,112r119,0r0,8r-119,0r0,123r118,0v71,-1,100,-51,100,-122","w":266},"\u00bd":{"d":"20,-227v23,-5,39,-16,51,-29r7,0r0,153r-5,0r0,-148v-12,13,-33,25,-53,29r0,-5xm270,-157v45,0,69,39,45,71v-25,33,-91,36,-103,81r118,0r0,5r-123,0v7,-67,113,-46,113,-112v0,-30,-22,-39,-53,-40v-36,0,-51,16,-52,49r-5,0v0,-37,20,-54,60,-54xm237,-262r7,0r-172,271r-8,0","w":349},"\u00f0":{"d":"110,-183v-59,0,-94,34,-94,91v0,57,37,91,94,91v58,0,94,-32,94,-91v0,-59,-35,-91,-94,-91xm110,-190v47,0,75,19,90,53v-7,-49,-38,-84,-75,-104r-43,23r-6,-6r41,-21v-17,-9,-35,-14,-55,-18r6,-7v20,5,40,10,57,20r42,-22r6,6r-40,21v47,27,79,74,79,149v0,64,-37,102,-102,102v-62,0,-101,-36,-101,-98v0,-61,38,-97,101,-98","w":220},"\u00fe":{"d":"116,-183v-58,0,-89,34,-89,91v0,57,31,91,89,91v58,0,88,-34,88,-91v0,-57,-30,-91,-88,-91xm116,6v-47,0,-74,-23,-89,-56r0,123r-7,0r0,-330r7,0r1,122v13,-35,43,-55,88,-55v63,0,96,37,96,98v0,60,-33,97,-96,98","w":220},"\u00b2":{"d":"69,-255v-36,0,-51,16,-52,49r-5,0v0,-37,20,-54,60,-54v45,0,69,39,45,71v-25,33,-91,36,-103,81r118,0r0,5r-123,0v7,-67,113,-46,113,-112v0,-30,-22,-39,-53,-40","w":151},"\u00b3":{"d":"129,-144v0,-32,-29,-40,-66,-38v-2,-7,5,-5,10,-5v30,0,52,-8,52,-32v0,-26,-23,-36,-52,-36v-36,-1,-56,14,-57,47r-5,0v1,-37,23,-48,62,-52v63,-7,78,74,18,75v25,5,45,14,43,42v-2,32,-28,44,-65,44v-42,1,-64,-16,-63,-55v3,0,6,-1,5,3v-1,35,25,46,59,47v33,0,59,-11,59,-40","w":151},"\u0160":{"d":"55,-326r11,0r54,45r54,-45r11,0r-59,50r-12,0xm37,-157v-43,-46,3,-113,79,-106v63,6,102,20,106,78r-7,0v-4,-52,-39,-71,-97,-71v-64,0,-112,37,-79,91v46,48,183,7,189,98v6,102,-200,93,-212,12v-2,-11,-4,-21,-4,-30r7,0v0,63,46,77,108,84v90,10,134,-100,39,-118v-43,-8,-105,-12,-129,-38","w":240},"\u00dd":{"d":"110,-108r-122,-149r11,0r114,141r115,-141r10,0r-121,149r0,108r-7,0r0,-108xm149,-326r12,0r-61,50r-10,0","w":226},"\u017d":{"d":"39,-326r10,0r54,45r54,-45r11,0r-59,50r-12,0xm-7,-10r207,-240r-195,0r0,-7r205,0r0,9r-210,241r213,0r0,7r-220,0r0,-10","w":206},"\u0161":{"d":"25,-262r11,0r54,45r54,-45r11,0r-59,50r-12,0xm163,-80v39,40,-8,86,-70,86v-55,0,-86,-15,-89,-64r7,0v3,45,32,57,82,57v55,0,97,-33,64,-75v-39,-29,-145,6,-147,-65v-2,-65,131,-63,152,-18v3,8,6,17,6,29r-7,0v0,-42,-28,-54,-72,-53v-38,1,-71,6,-71,42v0,64,107,23,145,61","w":180},"\u00fd":{"d":"-5,-184r10,0r89,175r81,-175r10,0r-109,228v-9,16,-28,20,-55,18r0,-7v46,6,57,-25,69,-55xm126,-262r12,0r-61,50r-10,0","w":180},"\u017e":{"d":"22,-262r11,0r54,45r54,-45r11,0r-59,50r-12,0xm157,-177r-146,0r0,-7r155,0r0,8r-158,169r164,0r0,7r-171,0r0,-10","w":173}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1988 Adobe Systems Incorporated.  All Rights Reserved.Helvetica
 * is a registered trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing   the Typefaces
 * licensed to you is copyrighted (c) 1988 Adobe  Systems Incorporated. All Rights
 * Reserved. This software is the  property of Adobe Systems Incorporated and its
 * licensors, and   may not be reproduced, used, displayed, modified, disclosed or 
 * transferred without the express written approval of Adobe.
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 */
Cufon.registerFont({"w":200,"face":{"font-family":"font-03-light","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-26 -348 377 74.8813","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":180},"\u00a0":{"w":180},"\u00c2":{"d":"167,-278r-23,0r-31,-36r-32,36r-21,0r41,-50r25,0xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm62,-101r101,0r-49,-132","w":226},"\u00c4":{"d":"101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm62,-101r101,0r-49,-132xm133,-284r0,-36r24,0r0,36r-24,0xm69,-284r0,-36r25,0r0,36r-25,0","w":226},"\u00c0":{"d":"101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm62,-101r101,0r-49,-132xm69,-328r28,0r38,50r-19,0","w":226},"\u00c5":{"d":"114,-271v-23,0,-39,-16,-39,-39v0,-23,16,-38,39,-38v23,0,38,15,38,38v0,23,-15,39,-38,39xm114,-334v-13,0,-25,11,-25,24v0,14,11,25,25,25v13,0,24,-12,24,-25v0,-13,-11,-24,-24,-24xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm62,-101r101,0r-49,-132","w":226},"\u00c3":{"d":"89,-319v27,0,57,34,67,-2r14,0v-2,35,-43,40,-70,21v-12,-9,-30,0,-29,15r-14,0v3,-18,12,-34,32,-34xm101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm62,-101r101,0r-49,-132","w":226},"B":{"d":"202,-74v0,-66,-89,-46,-152,-49r0,102v66,-3,152,17,152,-53xm227,-73v1,91,-112,71,-201,73r0,-257v81,4,191,-21,191,63v0,32,-18,51,-45,58v32,4,55,28,55,63xm50,-144v60,-2,139,14,143,-44v4,-62,-84,-46,-143,-48r0,92","w":240},"C":{"d":"14,-129v-10,-122,147,-179,212,-86v6,10,10,23,12,36r-24,0v-9,-38,-36,-63,-79,-63v-66,0,-97,48,-97,113v0,65,31,114,97,114v50,0,76,-35,82,-83r25,0v-8,61,-40,103,-107,103v-80,0,-114,-54,-121,-134","w":253},"\u00c7":{"d":"14,-129v-10,-122,147,-179,212,-86v6,10,10,23,12,36r-24,0v-9,-38,-36,-63,-79,-63v-66,0,-97,48,-97,113v0,65,31,114,97,114v50,0,76,-35,82,-83r25,0v-8,61,-40,103,-107,103v-80,0,-114,-54,-121,-134xm144,45v0,-24,-33,-5,-39,-17v12,-9,12,-30,34,-28r-15,21v20,-4,41,1,41,22v0,35,-46,36,-73,24r5,-12v14,4,47,13,47,-10","w":253},"D":{"d":"208,-129v0,-95,-61,-114,-158,-107r0,215v97,7,158,-12,158,-108xm233,-129v0,83,-38,129,-118,129r-89,0r0,-257r89,0v79,2,118,45,118,128","w":246},"E":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257","w":213},"\u00c9":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm103,-278r-18,0r38,-50r28,0","w":213},"\u00ca":{"d":"160,-278r-23,0r-31,-36r-32,36r-21,0r41,-50r25,0xm26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257","w":213},"\u00cb":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm126,-284r0,-36r24,0r0,36r-24,0xm62,-284r0,-36r25,0r0,36r-25,0","w":213},"\u00c8":{"d":"26,-257r177,0r0,21r-153,0r0,93r144,0r0,21r-144,0r0,101r155,0r0,21r-179,0r0,-257xm62,-328r28,0r38,50r-19,0","w":213},"F":{"d":"26,-257r163,0r0,21r-139,0r0,93r124,0r0,21r-124,0r0,122r-24,0r0,-257","w":193,"k":{"A":20,".":46,",":46}},"G":{"d":"38,-129v-12,111,143,157,181,57v4,-12,5,-24,5,-38r-88,0r0,-21r110,0r0,131r-18,0v-2,-15,0,-34,-4,-47v-15,32,-44,52,-89,52v-80,0,-113,-54,-121,-134v-14,-141,201,-186,228,-48r-24,0v-8,-38,-37,-65,-83,-65v-66,0,-90,49,-97,113","w":266},"H":{"d":"26,-257r24,0r0,112r153,0r0,-112r25,0r0,257r-25,0r0,-125r-153,0r0,125r-24,0r0,-257","w":253},"I":{"d":"28,-257r24,0r0,257r-24,0r0,-257","w":79},"\u00cd":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm37,-278r-18,0r38,-50r28,0","w":79},"\u00ce":{"d":"94,-278r-24,0r-31,-36r-31,36r-21,0r41,-50r25,0xm28,-257r24,0r0,257r-24,0r0,-257","w":79},"\u00cf":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm60,-284r0,-36r24,0r0,36r-24,0xm-4,-284r0,-36r25,0r0,36r-25,0","w":79},"\u00cc":{"d":"28,-257r24,0r0,257r-24,0r0,-257xm-4,-328r28,0r38,50r-19,0","w":79},"J":{"d":"32,-82v-1,35,9,67,49,67v41,0,48,-27,49,-67r0,-175r24,0r0,185v14,79,-94,101,-133,50v-10,-14,-14,-36,-13,-60r24,0","w":180},"K":{"d":"26,-257r24,0r0,138r150,-138r33,0r-115,106r120,151r-31,0r-107,-134r-50,46r0,88r-24,0r0,-257","w":233},"L":{"d":"26,-257r24,0r0,236r144,0r0,21r-168,0r0,-257","w":193,"k":{"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"25,-257r36,0r89,225r89,-225r36,0r0,257r-25,0r-1,-222r-87,222r-23,0r-89,-222r0,222r-25,0r0,-257","w":299},"N":{"d":"26,-257r27,0r150,217r0,-217r25,0r0,257r-27,0r-151,-217r0,217r-24,0r0,-257","w":253},"\u00d1":{"d":"102,-319v0,0,56,34,68,-2r13,0v0,37,-44,40,-70,21v-12,-9,-29,1,-29,15r-14,0v3,-18,12,-33,32,-34xm26,-257r27,0r150,217r0,-217r25,0r0,257r-27,0r-151,-217r0,217r-24,0r0,-257","w":253},"O":{"d":"134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113","w":266},"\u0152":{"d":"135,-15v36,0,70,-14,70,-49r-1,-133v-2,-34,-37,-45,-69,-45v-64,0,-97,47,-97,113v0,66,32,114,97,114xm135,-262v30,0,55,9,70,26r0,-21r170,0r0,21r-146,0r0,93r133,0r0,21r-133,0r0,101r148,0r0,21r-172,0r0,-25v-16,17,-38,30,-70,30v-80,0,-122,-56,-122,-134v0,-77,42,-133,122,-133","w":386},"\u00d3":{"d":"134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm130,-278r-18,0r38,-50r28,0","w":266},"\u00d4":{"d":"187,-278r-24,0r-31,-36r-31,36r-21,0r41,-50r25,0xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113","w":266},"\u00d6":{"d":"134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm153,-284r0,-36r24,0r0,36r-24,0xm89,-284r0,-36r25,0r0,36r-25,0","w":266},"\u00d2":{"d":"134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113xm89,-328r28,0r38,50r-19,0","w":266},"\u00d8":{"d":"134,-15v93,4,118,-120,75,-188r-143,159v15,18,36,29,68,29xm134,-242v-94,0,-120,119,-76,188r143,-159v-15,-16,-36,-29,-67,-29xm134,-262v37,-1,63,13,82,31r26,-28r9,8r-26,30v18,22,30,54,30,92v0,79,-41,131,-121,134v-38,1,-65,-13,-84,-32r-27,31r-10,-9r29,-31v-19,-22,-31,-55,-30,-93v2,-79,41,-131,122,-133","w":266},"\u00d5":{"d":"109,-319v27,0,57,34,67,-2r14,0v-5,17,-11,34,-32,34v-21,1,-31,-13,-48,-16v-11,0,-20,6,-19,18r-14,0v2,-18,12,-34,32,-34xm134,5v-81,0,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133v0,79,-41,134,-121,134xm134,-242v-66,0,-97,47,-97,113v0,66,31,114,97,114v66,0,96,-49,96,-114v0,-64,-31,-113,-96,-113","w":266},"P":{"d":"216,-184v0,84,-85,75,-166,74r0,110r-24,0r0,-257v86,2,190,-19,190,73xm192,-184v0,-66,-79,-51,-142,-52r0,105v64,-1,142,14,142,-53","w":226,"k":{"A":27,".":55,",":55}},"Q":{"d":"37,-129v-4,84,70,139,144,101r-34,-26r13,-15r37,28v59,-55,38,-206,-63,-201v-65,3,-94,47,-97,113xm255,-129v0,43,-14,81,-39,102r36,28r-12,16r-40,-31v-17,12,-37,20,-66,19v-81,-2,-122,-54,-122,-134v0,-79,41,-133,122,-133v80,0,121,54,121,133","w":266},"R":{"d":"202,0v-16,-43,4,-114,-59,-114r-93,0r0,114r-24,0r0,-257v85,3,196,-21,196,67v0,35,-21,59,-50,66v59,1,34,85,57,124r-27,0xm197,-185v0,-67,-84,-49,-147,-51r0,101v63,-2,147,16,147,-50","w":240,"k":{"y":-9,"Y":5,"W":-2,"V":-2,"T":-2}},"S":{"d":"173,-127v78,34,32,142,-57,132v-62,-7,-106,-25,-103,-90r24,0v0,51,34,66,84,70v60,5,95,-72,34,-94v-52,-19,-130,-11,-134,-81v-4,-87,148,-93,176,-27v5,10,8,21,8,34r-25,0v-2,-40,-31,-54,-70,-59v-62,-8,-91,77,-25,91v30,6,62,13,88,24","w":226},"T":{"d":"-2,-257r204,0r0,21r-90,0r0,236r-24,0r0,-236r-90,0r0,-21","k":{"A":24,"y":40,"w":40,"u":33,";":40,"s":40,"r":33,".":40,"o":40,"i":-9,"-":46,"e":40,",":40,":":40,"c":40,"a":40}},"U":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98","w":246},"\u00da":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm120,-278r-18,0r38,-50r28,0","w":246},"\u00db":{"d":"177,-278r-24,0r-31,-36r-31,36r-21,0r41,-50r25,0xm123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98","w":246},"\u00dc":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm143,-284r0,-36r24,0r0,36r-24,0xm79,-284r0,-36r25,0r0,36r-25,0","w":246},"\u00d9":{"d":"123,5v-64,0,-100,-36,-100,-98r0,-164r25,0v8,98,-34,242,75,242v110,0,68,-144,76,-242r24,0r0,164v0,64,-36,98,-100,98xm79,-328r28,0r38,50r-19,0","w":246},"V":{"d":"-3,-257r27,0r84,230r83,-230r26,0r-96,257r-28,0","w":213,"k":{"A":20,"y":6,"u":13,";":27,"r":13,".":46,"o":20,"i":-2,"-":20,"e":20,",":46,":":27,"a":20}},"W":{"d":"0,-257r26,0r59,225r63,-225r31,0r63,225r59,-225r24,0r-70,257r-26,0r-66,-230r-65,230r-27,0","w":326,"k":{"A":6,"u":6,";":6,"r":6,".":27,"o":6,"i":-9,"e":6,",":27,":":6,"a":13}},"X":{"d":"1,-257r29,0r73,108r75,-108r27,0r-88,125r93,132r-29,0r-78,-113r-80,113r-27,0r92,-132","w":206},"Y":{"d":"98,-106r-102,-151r30,0r84,130r84,-130r30,0r-102,151r0,106r-24,0r0,-106","w":219,"k":{"A":27,"v":20,"u":27,";":33,"q":33,".":36,"p":27,"o":33,"i":3,"-":40,"e":33,",":44,":":33,"a":33}},"\u0178":{"d":"98,-106r-102,-151r30,0r84,130r84,-130r30,0r-102,151r0,106r-24,0r0,-106xm130,-284r0,-36r24,0r0,36r-24,0xm66,-284r0,-36r25,0r0,36r-25,0","w":219},"Z":{"d":"13,-257r185,0r0,22r-169,214r173,0r0,21r-200,0r0,-22r169,-214r-158,0r0,-21","w":206},"a":{"d":"140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38","w":186},"\u00e1":{"d":"140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm90,-212r-18,0r38,-50r28,0","w":186},"\u00e2":{"d":"147,-212r-24,0r-30,-36r-32,36r-21,0r41,-50r25,0xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38","w":186},"\u00b4":{"d":"30,-212r-18,0r38,-50r28,0","w":66},"\u00e4":{"d":"140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm113,-218r0,-36r24,0r0,36r-24,0xm49,-218r0,-36r25,0r0,36r-25,0","w":186},"\u00e6":{"d":"280,-106v7,-70,-96,-89,-114,-25v-3,8,-3,16,-3,25r117,0xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm19,-129v-6,-70,124,-86,138,-24v13,-46,106,-50,128,-6v9,19,18,44,18,72r-140,0v-2,44,18,72,61,73v32,0,49,-19,55,-46r22,0v-4,72,-131,90,-149,19v-8,31,-39,46,-78,46v-37,0,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38v-29,0,-50,14,-50,43r-23,0","w":313},"\u00e0":{"d":"140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38xm49,-262r28,0r38,50r-19,0","w":186},"&":{"d":"37,-64v-1,44,55,63,90,40v10,-7,19,-16,26,-26r-64,-78v-24,14,-50,28,-52,64xm195,-114v-1,21,-5,45,-15,62r43,52r-28,0r-28,-33v-31,55,-160,52,-153,-34v3,-41,34,-60,63,-76v-13,-18,-32,-33,-32,-62v0,-33,23,-52,57,-52v33,0,57,18,57,52v0,37,-28,50,-50,67r56,67v7,-13,7,-23,7,-43r23,0xm136,-205v1,-20,-15,-33,-34,-33v-42,0,-39,55,-15,74v5,6,6,6,10,11v18,-12,38,-23,39,-52","w":219},"\u00e5":{"d":"94,-205v-23,0,-39,-16,-39,-39v0,-23,16,-38,39,-38v23,0,38,15,38,38v0,23,-15,39,-38,39xm94,-268v-13,0,-25,11,-25,24v0,14,11,25,25,25v13,0,24,-12,24,-25v0,-13,-11,-24,-24,-24xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38","w":186},"^":{"d":"16,-86r83,-163r18,0r83,163r-20,0r-72,-140r-71,140r-21,0","w":216},"~":{"d":"70,-112v39,0,88,46,108,-1r13,13v-11,15,-21,31,-45,31v-38,0,-90,-48,-108,1r-13,-13v8,-16,21,-31,45,-31","w":216},"*":{"d":"10,-214r5,-14r41,15r0,-44r14,0r0,44r42,-15r5,14r-42,14r25,35r-11,8r-26,-36r-27,36r-11,-8r26,-35","w":126},"@":{"d":"122,-66v46,0,80,-84,42,-115v-44,-11,-70,38,-72,81v0,20,12,34,30,34xm155,-203v20,0,32,13,38,31r9,-24r19,0v-12,42,-31,79,-38,125v1,5,2,9,8,9v40,0,61,-46,61,-90v0,-61,-41,-94,-102,-94v-71,0,-114,47,-114,119v0,70,44,116,114,116v44,0,73,-22,93,-48r19,0v-21,36,-57,64,-112,64v-82,0,-133,-53,-133,-135v0,-81,53,-132,132,-132v72,0,122,39,122,112v0,56,-31,104,-83,104v-14,0,-25,-9,-25,-24v-11,10,-27,24,-46,24v-30,0,-48,-22,-48,-53v0,-55,30,-104,86,-104","w":288},"\u00e3":{"d":"69,-253v0,0,56,33,67,-2r14,0v-5,17,-11,34,-32,34v-20,1,-31,-14,-48,-16v-12,-1,-20,6,-19,18r-14,0v2,-18,12,-33,32,-34xm140,-102v-29,23,-106,2,-106,52v0,23,18,36,42,36v49,-1,70,-33,64,-88xm92,-172v-29,0,-50,14,-50,43r-23,0v1,-43,34,-61,76,-62v42,0,68,17,68,60r0,98v-1,12,11,17,21,12v0,12,3,25,-15,21v-23,2,-25,-15,-28,-32v-14,22,-30,38,-67,37v-37,-1,-62,-16,-62,-54v-1,-53,53,-55,99,-60v18,-2,29,-6,29,-25v0,-31,-20,-37,-48,-38","w":186},"b":{"d":"109,-14v43,0,61,-34,61,-79v0,-45,-18,-79,-61,-79v-46,0,-65,34,-65,79v0,45,19,79,65,79xm109,5v-33,1,-56,-18,-67,-40r0,35r-20,0r0,-257r22,0r1,107v9,-25,31,-41,64,-41v57,0,84,41,84,98v0,57,-27,96,-84,98","w":206},"\\":{"d":"105,5r-110,-267r19,0r111,267r-20,0","w":119},"|":{"d":"31,-262r19,0r0,267r-19,0r0,-267","w":79},"{":{"d":"53,-97v51,21,-7,139,52,147r0,19v-57,10,-50,-47,-49,-99v-1,-26,-2,-55,-26,-57r0,-19v65,-10,-25,-165,75,-156r0,19v-39,-2,-27,51,-27,87v0,28,-9,49,-25,59","w":119},"}":{"d":"41,-156v-3,-34,15,-89,-27,-87r0,-19v57,-10,50,45,50,98v0,26,1,56,26,57r0,20v-66,9,26,166,-76,156r0,-19v58,-1,0,-124,53,-147v-16,-10,-24,-32,-26,-59","w":119},"[":{"d":"27,69r0,-331r58,0r0,19r-35,0r0,293r35,0r0,19r-58,0","w":86},"]":{"d":"59,-262r0,331r-58,0r0,-19r36,0r0,-293r-36,0r0,-19r58,0","w":86},"c":{"d":"12,-93v-4,-77,77,-125,139,-82v15,10,21,27,24,48r-22,0v-6,-26,-22,-45,-53,-45v-44,0,-65,34,-65,79v0,45,21,79,65,79v32,0,50,-23,54,-53r23,0v-5,42,-33,72,-77,72v-58,0,-85,-41,-88,-98","w":186},"\u00e7":{"d":"12,-93v-4,-77,77,-125,139,-82v15,10,21,27,24,48r-22,0v-6,-26,-22,-45,-53,-45v-44,0,-65,34,-65,79v0,45,21,79,65,79v32,0,50,-23,54,-53r23,0v-5,42,-33,72,-77,72v-58,0,-85,-41,-88,-98xm110,45v0,-24,-33,-5,-39,-17v12,-9,12,-30,34,-28r-15,21v20,-4,41,1,41,22v0,35,-46,36,-73,24r5,-12v14,4,47,13,47,-10","w":186},"\u00b8":{"d":"50,45v0,-24,-33,-5,-39,-17v12,-9,12,-30,34,-28r-15,21v20,-4,41,1,41,22v0,35,-46,36,-73,24r5,-12v14,4,47,13,47,-10","w":66},"\u00a2":{"d":"97,-171v-75,7,-69,151,0,157r0,-157xm19,-93v0,-55,28,-91,78,-97r0,-32r14,0r0,31v42,2,67,24,72,64r-23,0v-6,-25,-20,-45,-49,-45r0,158v29,-3,47,-23,50,-53r23,0v-5,41,-31,70,-73,72r0,37r-14,0r0,-37v-50,-6,-78,-43,-78,-98"},":":{"d":"35,-142r0,-38r30,0r0,38r-30,0xm35,0r0,-38r30,0r0,38r-30,0","w":100},",":{"d":"65,-38v1,39,2,79,-32,87v-3,-24,21,-23,17,-49r-15,0r0,-38r30,0","w":100},"\u00a9":{"d":"144,-262v82,0,134,52,134,133v0,82,-52,134,-134,134v-82,0,-134,-52,-134,-134v0,-81,53,-133,134,-133xm144,-14v69,0,113,-45,113,-115v0,-70,-45,-114,-113,-114v-69,0,-113,45,-113,114v0,69,43,115,113,115xm69,-129v-8,-87,129,-115,145,-28r-19,0v-20,-65,-112,-39,-107,28v3,40,19,66,60,67v26,0,43,-16,47,-38r19,0v-5,34,-30,54,-67,54v-51,0,-73,-34,-78,-83","w":288},"d":{"d":"97,-172v-44,0,-61,36,-61,79v0,43,17,79,61,79v46,0,65,-33,65,-79v0,-46,-19,-79,-65,-79xm97,-191v34,0,55,17,65,41r0,-107r23,0r0,257r-21,0v-1,-11,2,-26,-1,-35v-11,23,-32,40,-66,40v-57,-1,-83,-41,-83,-98v0,-57,26,-97,83,-98","w":206},"\u00b0":{"d":"72,-150v-29,-3,-52,-21,-52,-52v0,-32,21,-52,52,-52v31,0,52,20,52,52v0,31,-23,49,-52,52xm72,-240v-23,0,-38,15,-38,38v0,22,15,37,38,37v22,0,38,-15,38,-37v0,-23,-15,-38,-38,-38","w":144},"\u00a8":{"d":"53,-218r0,-36r24,0r0,36r-24,0xm-11,-218r0,-36r25,0r0,36r-25,0","w":66},"\u00f7":{"d":"18,-81r0,-19r181,0r0,19r-181,0xm108,-143v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v1,10,-10,21,-20,20xm108,2v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v1,10,-10,21,-20,20","w":216},"$":{"d":"107,-14v64,9,82,-84,21,-97r-21,-6r0,103xm93,-243v-57,-9,-74,83,-20,95v6,2,13,3,20,5r0,-100xm190,-67v0,48,-35,70,-83,72r0,31r-14,0r0,-31v-54,-4,-81,-31,-83,-87r23,0v1,42,22,63,60,68r0,-106v-40,-9,-77,-22,-76,-72v1,-45,29,-70,76,-70r0,-29r14,0r0,29v48,1,74,31,76,78r-23,0v1,-33,-21,-59,-53,-59r0,103v42,10,83,22,83,73"},"\u0131":{"d":"22,0r0,-186r23,0r0,186r-23,0","w":66},"e":{"d":"12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0","w":186},"\u00e9":{"d":"12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm90,-212r-18,0r38,-50r28,0","w":186},"\u00ea":{"d":"147,-212r-24,0r-30,-36r-32,36r-21,0r41,-50r25,0xm12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0","w":186},"\u00eb":{"d":"12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm113,-218r0,-36r24,0r0,36r-24,0xm49,-218r0,-36r25,0r0,36r-25,0","w":186},"\u00e8":{"d":"12,-93v-11,-105,144,-135,162,-32v3,13,4,25,4,38r-143,0v2,40,19,72,61,73v35,1,50,-20,58,-47r23,0v-9,40,-31,67,-81,66v-58,-1,-78,-41,-84,-98xm155,-106v7,-71,-97,-89,-114,-24v-3,8,-5,16,-6,24r120,0xm49,-262r28,0r38,50r-19,0","w":186},"8":{"d":"36,-71v0,38,25,57,64,57v39,-1,64,-18,64,-57v0,-37,-27,-54,-64,-54v-38,0,-64,17,-64,54xm100,-254v74,-8,107,97,35,119v30,6,52,29,52,64v0,52,-35,76,-87,76v-52,0,-87,-24,-87,-76v0,-34,23,-57,51,-65v-24,-8,-41,-25,-41,-55v0,-43,34,-58,77,-63xm46,-191v0,31,22,47,54,47v32,0,54,-16,54,-47v0,-31,-23,-44,-54,-44v-30,0,-54,15,-54,44"},"=":{"d":"199,-117r-181,0r0,-19r181,0r0,19xm199,-46r-181,0r0,-19r181,0r0,19","w":216},"!":{"d":"31,-180r0,-77r25,0r0,77r-6,116r-13,0xm28,0r0,-38r31,0r0,38r-31,0","w":86},"\u00a1":{"d":"56,-5r0,74r-25,0r0,-74r6,-117r13,0xm59,-186r0,38r-31,0r0,-38r31,0","w":86},"f":{"d":"98,-236v-34,-9,-47,11,-41,50r36,0r0,19r-36,0r0,167r-23,0r0,-167r-32,0r0,-19r32,0v-5,-49,12,-80,64,-70r0,20","w":93,"k":{"f":6}},"5":{"d":"183,-80v7,89,-132,116,-163,40v-4,-10,-7,-20,-7,-32r23,0v2,37,24,58,62,58v41,0,60,-29,63,-68v5,-68,-93,-87,-121,-36r-19,0r24,-131r126,0r0,21r-110,0r-16,84v10,-13,32,-23,54,-23v55,1,80,34,84,87"},"\u0192":{"d":"6,41v31,9,48,-12,52,-38r27,-142r-36,0r3,-19r36,0v9,-52,17,-113,88,-97v1,32,-56,6,-56,54r-9,43r41,0r-4,19r-40,0v-13,58,-18,123,-38,175v-8,20,-36,31,-67,24"},"4":{"d":"11,-85r116,-167r21,0r0,170r38,0r0,19r-38,0r0,63r-21,0r0,-63r-116,0r0,-22xm127,-82r-1,-137r-95,137r96,0"},"g":{"d":"35,-95v0,41,20,74,61,74v41,0,60,-33,60,-74v0,-42,-17,-77,-60,-77v-43,0,-61,33,-61,77xm96,-191v29,-1,49,20,60,37r0,-32r23,0v-7,116,39,289,-110,257v-27,-6,-47,-23,-50,-53r23,0v5,25,25,36,54,37v52,2,65,-42,59,-95v-9,22,-31,38,-59,38v-58,0,-84,-39,-84,-96v0,-54,28,-92,84,-93"},"\u00df":{"d":"94,-243v-36,-1,-48,18,-49,52r0,191r-23,0r0,-193v0,-46,25,-70,72,-69v41,1,70,21,70,63v0,30,-17,48,-41,55v35,4,53,28,54,66v0,57,-38,86,-98,80r0,-20v43,8,75,-13,75,-56v0,-47,-29,-59,-75,-58r0,-20v35,0,62,-10,62,-46v0,-29,-19,-44,-47,-45","w":193},"`":{"d":"-11,-262r28,0r38,50r-19,0","w":66},">":{"d":"177,-91r-160,-74r0,-20r182,84r0,20r-182,84r0,-20","w":216},"\u00ab":{"d":"80,-88r0,-22r47,-45r0,24r-33,32r33,32r0,24xm22,-88r0,-22r47,-45r0,24r-33,32r33,32r0,24","w":153},"\u00bb":{"d":"84,-67r34,-32r-34,-32r0,-24r48,45r0,22r-48,45r0,-24xm26,-67r34,-32r-34,-32r0,-24r48,45r0,22r-48,45r0,-24","w":153},"h":{"d":"102,-172v-76,0,-55,98,-58,172r-23,0r0,-257r23,0r1,103v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172","w":193},"-":{"d":"22,-89r0,-20r90,0r0,20r-90,0","w":133},"\u00ad":{"d":"22,-89r0,-20r90,0r0,20r-90,0","w":133},"i":{"d":"22,-186r23,0r0,186r-23,0r0,-186xm22,-257r23,0r0,36r-23,0r0,-36","w":66},"\u00ed":{"d":"22,0r0,-186r23,0r0,186r-23,0xm30,-212r-18,0r38,-50r28,0","w":66},"\u00ee":{"d":"87,-212r-24,0r-31,-36r-31,36r-21,0r41,-50r25,0xm22,0r0,-186r23,0r0,186r-23,0","w":66},"\u00ef":{"d":"22,0r0,-186r23,0r0,186r-23,0xm53,-218r0,-36r24,0r0,36r-24,0xm-11,-218r0,-36r25,0r0,36r-25,0","w":66},"\u00ec":{"d":"22,0r0,-186r23,0r0,186r-23,0xm-11,-262r28,0r38,50r-19,0","w":66},"j":{"d":"-11,49v22,5,33,-5,33,-26r0,-209r23,0r0,203v1,36,-16,58,-56,51r0,-19xm22,-257r23,0r0,36r-23,0r0,-36","w":66},"k":{"d":"22,-257r22,0r0,161r103,-90r30,0r-79,69r85,117r-29,0r-73,-101r-37,30r0,71r-22,0r0,-257","w":180},"l":{"d":"22,-257r23,0r0,257r-23,0r0,-257","w":66},"<":{"d":"199,3r-182,-84r0,-20r182,-84r0,20r-160,74r160,74r0,20","w":216},"\u00ac":{"d":"180,-117r-162,0r0,-19r181,0r0,96r-19,0r0,-77","w":216},"m":{"d":"44,-154v12,-44,103,-52,114,-1v9,-22,31,-35,59,-36v87,-4,55,113,61,191r-22,0r0,-125v-1,-31,-11,-47,-44,-47v-73,1,-46,103,-51,172r-22,0r0,-126v0,-28,-12,-45,-39,-46v-76,0,-52,100,-56,172r-22,0r0,-186r20,0v2,10,-3,26,2,32","w":299},"\u00af":{"d":"-26,-228r0,-16r119,0r0,16r-119,0","w":66},"\u02c9":{"d":"-26,-228r0,-16r119,0r0,16r-119,0","w":66},"\u00b5":{"d":"151,-33v-15,33,-72,51,-107,26r0,76r-23,0r0,-255r23,0v7,67,-27,175,50,172v73,-3,52,-100,55,-172r23,0r0,186r-21,0r0,-33","w":193},"\u03bc":{"d":"151,-33v-15,33,-72,51,-107,26r0,76r-23,0r0,-255r23,0v7,67,-27,175,50,172v73,-3,52,-100,55,-172r23,0r0,186r-21,0r0,-33","w":193},"n":{"d":"102,-172v-76,0,-55,98,-58,172r-23,0r0,-186r23,0v1,10,-2,24,1,32v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172","w":193},"9":{"d":"35,-170v0,40,21,66,61,66v40,0,62,-26,62,-66v0,-41,-21,-65,-63,-65v-38,0,-60,26,-60,65xm186,-120v0,67,-22,124,-90,125v-46,1,-73,-23,-78,-65r23,0v1,40,56,60,88,35v23,-19,37,-60,33,-101v-10,22,-36,42,-67,41v-52,-1,-83,-32,-83,-84v0,-52,32,-84,86,-85v74,0,88,57,88,134"},"\u00f1":{"d":"72,-253v26,0,57,33,67,-2r14,0v-3,18,-12,33,-31,34v-20,1,-32,-14,-49,-16v-12,-1,-20,6,-19,18r-14,0v3,-18,12,-33,32,-34xm102,-172v-76,0,-55,98,-58,172r-23,0r0,-186r23,0v1,10,-2,24,1,32v9,-22,30,-35,59,-37v94,-7,63,108,68,191r-23,0v-7,-66,26,-172,-47,-172","w":193},"#":{"d":"179,-80r-40,0r-11,80r-18,0r11,-80r-51,0r-11,80r-18,0r11,-80r-39,0r0,-16r41,0r8,-57r-39,0r0,-16r41,0r12,-80r18,0r-12,80r51,0r11,-80r18,0r-11,80r38,0r0,16r-40,0r-8,57r38,0r0,16xm80,-153r-8,57r51,0r8,-57r-51,0"},"o":{"d":"12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79"},"\u00f3":{"d":"12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm97,-212r-18,0r38,-50r28,0"},"\u00f4":{"d":"154,-212r-24,0r-31,-36r-31,36r-21,0r41,-50r25,0xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79"},"\u00f6":{"d":"12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm120,-218r0,-36r24,0r0,36r-24,0xm56,-218r0,-36r25,0r0,36r-25,0"},"\u0153":{"d":"150,-94v0,-43,-12,-78,-55,-78v-45,0,-59,37,-59,83v1,42,16,74,59,75v45,0,55,-37,55,-80xm230,-14v34,0,50,-19,58,-46r22,0v-4,72,-132,90,-148,18v-10,27,-30,49,-67,47v-58,-1,-82,-40,-82,-98v0,-57,26,-96,83,-98v36,0,56,18,67,46v9,-50,101,-62,129,-20v13,18,19,44,19,78r-139,0v2,39,17,72,58,73xm288,-106v9,-70,-95,-90,-112,-25v-3,8,-4,16,-4,25r116,0","w":320},"\u00f2":{"d":"12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79xm56,-262r28,0r38,50r-19,0"},"1":{"d":"35,-203v42,0,67,-10,71,-49r18,0r0,252r-22,0r0,-187r-67,0r0,-16"},"\u00aa":{"d":"40,-147v30,1,48,-19,41,-51v-16,14,-66,-1,-66,30v0,14,11,21,25,21xm50,-240v-16,2,-31,8,-31,25r-16,0v1,-29,21,-36,50,-39v54,-5,47,49,46,98v-1,8,8,9,14,7v0,8,2,15,-10,13v-16,1,-15,-9,-18,-20v-15,34,-87,34,-87,-11v-1,-40,48,-32,79,-41v15,-15,-6,-35,-27,-32","w":111},"\u00ba":{"d":"119,-193v0,38,-22,61,-61,61v-37,0,-57,-25,-57,-61v0,-37,20,-61,57,-61v39,0,61,23,61,61xm18,-193v0,27,14,46,42,46v27,0,42,-18,42,-46v0,-28,-15,-47,-42,-47v-28,0,-42,20,-42,47","w":120},"\u00f8":{"d":"100,-172v-61,-1,-80,79,-52,128r98,-106v-9,-12,-25,-22,-46,-22xm100,-14v61,1,79,-78,53,-127r-99,106v9,11,26,21,46,21xm100,-191v28,1,48,9,61,24v9,-7,17,-28,27,-13r-20,22v41,57,15,167,-68,163v-27,-1,-47,-9,-60,-24r-22,23r-8,-7r22,-24v-42,-57,-15,-168,68,-164"},"\u00f5":{"d":"76,-253v0,0,56,33,67,-2r14,0v-5,17,-11,34,-32,34v-20,1,-31,-14,-48,-16v-12,-1,-20,6,-19,18r-14,0v2,-18,12,-33,32,-34xm12,-93v0,-57,30,-98,88,-98v58,0,88,41,88,98v0,57,-30,98,-88,98v-58,0,-88,-41,-88,-98xm165,-93v0,-44,-20,-79,-65,-79v-44,0,-65,34,-65,79v0,45,21,79,65,79v45,0,65,-35,65,-79"},"p":{"d":"109,-14v43,0,61,-34,61,-79v0,-45,-18,-79,-61,-79v-47,0,-65,32,-65,79v0,45,19,79,65,79xm109,5v-34,0,-53,-18,-65,-40r0,104r-22,0r0,-255r20,0v1,11,-2,27,1,36v9,-24,35,-41,66,-41v57,0,84,41,84,98v0,57,-27,96,-84,98","w":206},"\u00b6":{"d":"24,-186v-4,-79,84,-73,163,-71r0,321r-23,0r0,-302r-43,0r0,302r-23,0r0,-182v-44,-1,-72,-27,-74,-68","w":216},"(":{"d":"87,-262v-60,82,-59,251,0,331r-18,0v-27,-46,-51,-94,-51,-165v0,-67,22,-122,51,-166r18,0","w":86},")":{"d":"0,69v59,-82,59,-251,0,-331r18,0v27,46,50,92,50,164v0,68,-22,123,-50,167r-18,0","w":86},"%":{"d":"120,-186v0,-30,-10,-52,-38,-52v-49,0,-53,104,0,104v28,0,38,-22,38,-52xm231,-261r17,0r-162,273r-18,0xm183,-63v0,-41,18,-68,57,-68v39,0,57,27,57,68v0,41,-16,68,-57,68v-41,0,-57,-27,-57,-68xm278,-62v0,-29,-8,-52,-38,-52v-29,0,-38,24,-38,52v0,28,10,51,38,51v28,0,38,-22,38,-51xm25,-186v0,-41,16,-68,57,-68v41,0,57,27,57,68v0,41,-17,68,-57,68v-40,0,-57,-27,-57,-68","w":320},".":{"d":"35,0r0,-38r30,0r0,38r-30,0","w":100},"\u00b7":{"d":"29,-114v0,-12,9,-21,21,-21v12,0,21,10,21,22v0,11,-10,20,-21,20v-12,0,-21,-9,-21,-21","w":100},"\u2219":{"d":"29,-114v0,-12,9,-21,21,-21v12,0,21,10,21,22v0,11,-10,20,-21,20v-12,0,-21,-9,-21,-21","w":100},"+":{"d":"99,-181r19,0r0,81r81,0r0,19r-81,0r0,81r-19,0r0,-81r-81,0r0,-19r81,0r0,-81","w":216},"\u00b1":{"d":"99,-181r19,0r0,65r81,0r0,19r-81,0r0,65r-19,0r0,-65r-81,0r0,-19r81,0r0,-65xm18,-19r181,0r0,19r-181,0r0,-19","w":216},"q":{"d":"97,-172v-44,0,-61,36,-61,79v0,43,17,79,61,79v46,0,65,-33,65,-79v0,-46,-19,-79,-65,-79xm97,-191v34,0,55,18,67,41r0,-36r21,0r0,255r-23,0r0,-104v-11,24,-31,40,-65,40v-57,-1,-83,-41,-83,-98v0,-57,26,-98,83,-98","w":206},"?":{"d":"100,-243v-39,0,-58,25,-58,65r-23,0v2,-53,29,-81,82,-84v56,-3,89,52,64,100v-17,33,-61,42,-56,98r-22,0v-7,-72,65,-72,65,-131v0,-29,-21,-48,-52,-48xm83,-38r30,0r0,38r-30,0r0,-38","w":193},"\u00bf":{"d":"94,55v40,0,56,-27,58,-65r22,0v-1,54,-29,84,-81,84v-44,0,-73,-23,-74,-66v-1,-66,72,-60,65,-132r23,0v7,71,-65,72,-65,130v0,32,22,49,52,49xm111,-148r-31,0r0,-38r31,0r0,38","w":193},"\"":{"d":"31,-257r23,0r0,87r-23,0r0,-87xm79,-257r23,0r0,87r-23,0r0,-87","w":133},"'":{"d":"39,-257r23,0r0,87r-23,0r0,-87","w":100},"r":{"d":"113,-166v-42,2,-69,25,-69,67r0,99r-22,0r0,-186r20,0v1,14,-2,32,1,44v11,-28,33,-48,70,-46r0,22","w":113,"k":{"q":6,".":33,"o":6,"n":-6,"-":20,"e":6,"d":6,",":33,"c":6}},"\u00ae":{"d":"10,-129v0,-81,53,-133,134,-133v82,0,134,52,134,133v0,82,-52,134,-134,134v-82,0,-134,-52,-134,-134xm257,-129v0,-70,-45,-114,-113,-114v-69,0,-113,45,-113,114v0,69,43,115,113,115v69,0,113,-45,113,-115xm205,-163v0,27,-16,39,-39,43r46,69r-22,0r-43,-69r-33,0r0,69r-19,0r0,-155v50,1,110,-10,110,43xm186,-163v0,-33,-39,-26,-72,-27r0,54v31,-2,73,7,72,-27","w":288},"s":{"d":"49,-96v-59,-27,-22,-101,38,-95v41,4,67,20,69,60r-23,0v5,-50,-90,-56,-93,-9v12,57,119,11,122,90v2,59,-88,68,-128,40v-14,-10,-21,-27,-23,-50r23,0v-4,54,105,65,105,11v0,-42,-59,-33,-90,-47","w":173},"\u00a7":{"d":"131,-44v26,-5,42,-42,20,-64v-20,-22,-57,-36,-83,-53v-24,7,-40,41,-19,64v20,22,57,35,82,53xm60,-211v14,67,124,50,124,128v0,28,-19,41,-39,50v38,32,10,91,-43,91v-41,0,-68,-22,-67,-64r23,0v-1,29,16,45,42,45v22,0,40,-9,40,-32v-13,-68,-124,-50,-124,-128v0,-28,19,-42,39,-51v-38,-32,-9,-90,43,-90v40,0,68,22,67,63r-23,0v0,-28,-15,-43,-42,-44v-24,-1,-38,10,-40,32"},";":{"d":"65,-38v1,39,2,79,-32,87v-3,-24,21,-23,17,-49r-15,0r0,-38r30,0xm35,-142r0,-38r30,0r0,38r-30,0","w":100},"\u037e":{"d":"65,-38v1,39,2,79,-32,87v-3,-24,21,-23,17,-49r-15,0r0,-38r30,0xm35,-142r0,-38r30,0r0,38r-30,0","w":100},"7":{"d":"54,0v8,-104,49,-166,104,-228r-140,0r0,-21r162,0r0,21v-50,54,-97,127,-102,228r-24,0"},"6":{"d":"165,-78v0,-40,-20,-67,-61,-67v-41,0,-61,26,-62,67v0,41,22,64,63,64v38,0,60,-26,60,-64xm14,-129v0,-66,22,-123,90,-125v47,0,73,23,78,66r-23,0v-1,-40,-55,-61,-88,-36v-24,18,-36,62,-33,102v10,-22,35,-43,67,-42v53,2,83,32,83,84v0,52,-33,84,-85,85v-75,2,-89,-59,-89,-134"},"\/":{"d":"-5,5r111,-267r19,0r-110,267r-20,0","w":119},"\u00a3":{"d":"39,-18v31,-20,69,4,103,4v18,0,33,-10,42,-20r11,17v-38,52,-118,-16,-167,22r-13,-19v30,-17,55,-65,31,-105r-29,0r0,-11r22,0v-10,-17,-18,-33,-20,-58v-5,-76,101,-94,145,-52v15,15,21,36,21,63r-23,0v1,-42,-20,-66,-60,-66v-37,0,-59,19,-60,56v0,26,14,38,21,57r58,0r0,11r-51,0v21,39,-5,84,-31,101"},"t":{"d":"95,1v-37,4,-60,-1,-60,-41r0,-127r-32,0r0,-19r32,0r0,-56r23,0r0,56r37,0r0,19r-37,0r0,126v-3,23,15,27,37,23r0,19","w":106},"3":{"d":"185,-71v5,90,-146,100,-169,27v-4,-11,-5,-23,-4,-36r23,0v-1,43,22,66,63,66v37,0,64,-19,64,-55v0,-43,-33,-57,-80,-54r0,-19v41,3,71,-9,71,-46v0,-32,-23,-46,-55,-47v-37,-1,-58,27,-58,64r-22,0v1,-51,28,-83,79,-83v44,0,78,18,78,64v-1,29,-16,51,-42,56v32,5,50,28,52,63"},"2":{"d":"178,-183v0,94,-115,87,-139,162r140,0r0,21r-166,0v5,-92,106,-93,137,-158v18,-38,-8,-79,-51,-77v-40,1,-59,27,-57,70r-23,0v1,-54,25,-89,81,-89v47,1,78,24,78,71"},"u":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-90,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172","w":193},"\u00fa":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-90,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm93,-212r-18,0r38,-50r28,0","w":193},"\u00fb":{"d":"150,-212r-23,0r-31,-36r-32,36r-21,0r41,-50r25,0xm94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-90,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172","w":193},"\u00fc":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-90,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm116,-218r0,-36r24,0r0,36r-24,0xm52,-218r0,-36r25,0r0,36r-25,0","w":193},"\u00f9":{"d":"94,-14v73,-3,52,-100,55,-172r23,0r0,186r-21,0v-1,-10,2,-25,-1,-33v-11,22,-33,38,-64,38v-90,0,-60,-110,-65,-191r23,0v7,67,-27,175,50,172xm52,-262r28,0r38,50r-19,0","w":193},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"v":{"d":"1,-186r25,0r59,163r58,-163r23,0r-70,186r-24,0","w":166,"k":{".":27,",":27}},"w":{"d":"3,-186r24,0r48,159r46,-159r25,0r46,159r48,-159r24,0r-60,186r-25,0r-46,-156r-46,156r-24,0","w":266,"k":{".":20,",":20}},"x":{"d":"72,-96r-66,-90r28,0r53,71r52,-71r28,0r-67,89r73,97r-29,0r-58,-78r-58,78r-28,0","w":173},"y":{"d":"1,-186r24,0r61,159r57,-159r23,0r-90,234v-7,19,-32,24,-57,19r0,-19v39,10,47,-22,56,-49","w":166,"k":{".":33,",":33}},"\u00ff":{"d":"1,-186r24,0r61,159r57,-159r23,0r-90,234v-7,19,-32,24,-57,19r0,-19v39,10,47,-22,56,-49xm103,-218r0,-36r24,0r0,36r-24,0xm39,-218r0,-36r25,0r0,36r-25,0","w":166},"\u00a5":{"d":"40,-126r38,0r-76,-131r26,0r72,131r72,-131r25,0r-76,131r39,0r0,17v-16,2,-39,-4,-49,3r0,26r49,0r0,17r-49,0r0,63r-23,0r0,-63r-48,0r0,-17r48,0v-1,-9,2,-23,-2,-29r-46,0r0,-17"},"z":{"d":"33,-19r128,0r0,19r-156,0r0,-18r122,-149r-113,0r0,-19r142,0r0,16","w":166},"0":{"d":"165,-125v0,-55,-10,-110,-65,-110v-55,0,-65,55,-65,110v0,55,10,111,65,111v56,0,65,-56,65,-111xm12,-124v0,-69,18,-130,88,-130v71,0,88,60,88,129v0,69,-17,130,-88,130v-70,0,-88,-61,-88,-129"},"A":{"d":"101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm62,-101r101,0r-49,-132","w":226,"k":{"y":6,"w":6,"v":6,"Y":27,"W":2,"V":18,"T":24}},"\u00c6":{"d":"185,-21r133,0r0,21r-158,0r0,-81r-93,0r-42,81r-28,0r135,-257r185,0r0,21r-132,0r0,93r124,0r0,21r-124,0r0,101xm160,-102r0,-134r-14,0r-68,134r82,0","w":326},"\u00c1":{"d":"101,-257r28,0r100,257r-26,0r-31,-80r-117,0r-31,80r-27,0xm62,-101r101,0r-49,-132xm110,-278r-18,0r38,-50r28,0","w":226},"\u00d0":{"d":"208,-129v0,-95,-61,-114,-158,-107r0,95r85,0r0,16r-85,0r0,104v97,7,158,-12,158,-108xm233,-129v0,83,-38,129,-118,129r-89,0r0,-125r-26,0r0,-16r26,0r0,-116r89,0v79,2,118,45,118,128","w":246},"\u0141":{"d":"26,-257r24,0r0,130r88,-61r0,21r-88,60r0,86r144,0r0,21r-168,0r0,-90r-30,20r0,-20r30,-20r0,-147","w":193},"\u0160":{"d":"60,-328r24,0r30,36r32,-36r21,0r-41,50r-25,0xm173,-127v78,34,32,142,-57,132v-62,-7,-106,-25,-103,-90r24,0v0,51,34,66,84,70v60,5,95,-72,34,-94v-52,-19,-130,-11,-134,-81v-4,-87,148,-93,176,-27v5,10,8,21,8,34r-25,0v-2,-40,-31,-54,-70,-59v-62,-8,-91,77,-25,91v30,6,62,13,88,24","w":226},"\u00de":{"d":"216,-141v0,83,-85,74,-166,73r0,68r-24,0r0,-257r24,0r0,42v81,-1,166,-10,166,74xm192,-141v0,-67,-78,-52,-142,-53r0,105v63,-2,142,15,142,-52","w":226},"\u00dd":{"d":"98,-106r-102,-151r30,0r84,130r84,-130r30,0r-102,151r0,106r-24,0r0,-106xm107,-278r-18,0r38,-50r28,0","w":219},"\u017d":{"d":"50,-328r23,0r31,36r32,-36r21,0r-41,50r-25,0xm13,-257r185,0r0,22r-169,214r173,0r0,21r-200,0r0,-22r169,-214r-158,0r0,-21","w":206},"\u00a6":{"d":"31,-94r19,0r0,99r-19,0r0,-99xm31,-262r19,0r0,99r-19,0r0,-99","w":79},"\u00a4":{"d":"156,-55v-25,26,-86,24,-112,0r-20,20r-14,-14r21,-20v-26,-25,-26,-86,0,-111r-21,-20r14,-14r20,20v26,-24,87,-27,112,0r19,-20r14,14r-19,19v25,27,25,86,0,113r19,19r-14,14xm100,-193v-40,0,-66,27,-66,68v0,42,25,69,66,69v41,0,67,-27,67,-69v0,-42,-26,-68,-67,-68"},"\u00f0":{"d":"163,-90v0,-42,-19,-73,-64,-73v-45,1,-64,30,-64,74v0,43,19,74,64,75v46,0,64,-31,64,-76xm145,-168v-7,-21,-29,-41,-47,-56r-38,21r-11,-12r36,-20r-34,-20r13,-12r38,23r41,-23r11,11r-39,22v38,32,71,74,71,141v0,57,-27,98,-88,98v-58,0,-83,-37,-86,-95v-3,-72,74,-116,133,-78"},"\u0142":{"d":"22,-257r23,0r0,96r24,-20r0,20r-24,20r0,141r-23,0r0,-122r-24,19r0,-19r24,-20r0,-115","w":66},"\u00d7":{"d":"27,-158r13,-14r68,68r68,-68r13,14r-68,68r68,68r-13,13r-68,-68r-68,68r-13,-13r67,-68","w":216},"\u00bd":{"d":"211,-261r17,0r-163,273r-17,0xm17,-224v25,0,44,-4,46,-27r15,0r0,152r-17,0r0,-111r-44,0r0,-14xm229,-141v-26,0,-36,17,-36,41r-17,0v0,-35,19,-53,54,-56v55,-4,68,63,27,89v-24,15,-55,24,-65,53r90,0r0,14r-109,0v2,-65,84,-54,93,-112v-2,-20,-15,-29,-37,-29","w":300},"\u00bc":{"d":"211,-261r17,0r-163,273r-17,0xm17,-224v25,0,44,-4,46,-27r15,0r0,152r-17,0r0,-111r-44,0r0,-14xm231,-36r-75,0r0,-14r76,-102r16,0r0,102r25,0r0,14r-25,0r0,36r-17,0r0,-36xm172,-50r59,0v-1,-25,2,-55,-1,-78","w":300},"\u00b9":{"d":"13,-224v25,0,43,-5,46,-27r14,0r0,152r-17,0r0,-111r-43,0r0,-14","w":119},"\u0161":{"d":"33,-262r24,0r30,36r32,-36r21,0r-41,50r-25,0xm49,-96v-59,-27,-22,-101,38,-95v41,4,67,20,69,60r-23,0v5,-50,-90,-56,-93,-9v12,57,119,11,122,90v2,59,-88,68,-128,40v-14,-10,-21,-27,-23,-50r23,0v-4,54,105,65,105,11v0,-42,-59,-33,-90,-47","w":173},"\u00fe":{"d":"109,-14v43,0,61,-34,61,-79v0,-45,-18,-79,-61,-79v-46,0,-65,34,-65,79v0,45,19,79,65,79xm109,5v-34,0,-53,-18,-65,-40r0,104r-22,0r0,-326r22,0r1,107v9,-25,31,-41,64,-41v57,0,84,41,84,98v0,57,-27,96,-84,98","w":206},"\u00be":{"d":"100,-142v1,-25,-24,-32,-52,-30r0,-14v25,1,45,-4,46,-27v1,-19,-18,-26,-35,-27v-24,-1,-36,15,-36,37r-17,0v0,-31,20,-51,53,-51v52,0,72,62,25,73v18,4,33,15,33,38v0,50,-69,60,-100,34v-11,-9,-15,-22,-14,-39r16,0v0,25,15,39,40,39v21,0,41,-10,41,-33xm225,-261r17,0r-163,273r-17,0xm231,-36r-76,0r0,-14r77,-102r16,0r0,102r24,0r0,14r-24,0r0,36r-17,0r0,-36xm172,-50r59,0v-1,-25,2,-55,-1,-78","w":300},"\u00b3":{"d":"100,-142v1,-25,-24,-32,-52,-30r0,-14v25,1,45,-4,46,-27v1,-19,-18,-26,-35,-27v-24,-1,-36,15,-36,37r-17,0v0,-31,20,-51,53,-51v52,0,72,62,25,73v18,4,33,15,33,38v0,50,-69,60,-100,34v-11,-9,-15,-22,-14,-39r16,0v0,25,15,39,40,39v21,0,41,-10,41,-33","w":119},"\u00b2":{"d":"61,-240v-25,0,-34,17,-35,41r-17,0v-1,-36,18,-56,54,-55v29,0,53,15,52,45v-3,58,-74,51,-90,96r89,0r0,14r-109,0v2,-65,85,-53,93,-112v-1,-20,-16,-28,-37,-29","w":119},"\u00fd":{"d":"1,-186r24,0r61,159r57,-159r23,0r-90,234v-7,19,-32,24,-57,19r0,-19v39,10,47,-22,56,-49xm80,-212r-18,0r38,-50r28,0","w":166},"\u017e":{"d":"30,-262r23,0r31,36r32,-36r21,0r-41,50r-25,0xm33,-19r128,0r0,19r-156,0r0,-18r122,-149r-113,0r0,-19r142,0r0,16","w":166}}});

/**
 * Cufon font replaces
 *****************************/

Cufon.replace('.mainmenu ul.level_1 > li', {
	fontFamily: 'font-02',
	hover: true,
	hoverables: { 
		li: true 	
	},
	ignore: { 
		ul: true
//		li: true
	}
});

Cufon.replace('body.startpage #main .read-link', {
	fontFamily: 'font-03'
});

Cufon.replace('#image-text-container, #image-text-container p, body.startpage h1, #container .pagetitle, #container .subtitle, body.startpage h1, h1.project-details', {
	fontFamily: 'font-03-light',
	hover: true
});

Cufon.replace('#image-text-container p > strong, #container .pagetitle > span, #container .subtitle > strong, h2, body.startpage h1 > strong, h1.project-details > strong', {
	fontFamily: 'font-02-bold'
});

Cufon.replace('#MenuAbsolute .go-back a,#outer .contact-now a ', {
	fontFamily: 'font-02'
});
/*!
 * All code inside the viamedia namespace (global object Via): (c) 2010 by viamedia . online concepts (office@viamedia.at)
 */

// Viamedia Namespace
var Via = {};
Via.Ready = function() {

	var funcs = [];

	return {
		Register: function(func) {
			funcs.push(func);
		},
		Run: function() {
			for (var i = 0; i < funcs.length; i++) {
				funcs[i]();
			}
			// Make sure they run only once
			funcs = [];
		}
	};
}();

// JavaScript Document
var toggle = 'in';

function openLayer(id) {
	var element = $(id),
		fadeFx = new Fx.Tween(element, {
			duration: 'short'
		});


	if(toggle == 'in') {

		fadeFx.start('display', 'none', 'block');

		toggle = 'out';
	}
	else if(toggle == 'out') {

		fadeFx.start('display', 'block', 'none');

		toggle = 'in';
	}
}


var projectGallery = new Class({

	images: [],
	startIndex: 0,
	bigNextTag: null,
	bigPrevTag: null,
	imgTextContainer: null,

	options: {
		backgroundContainer: 'hg_container',
		imageContainer: 'gallery_container',
		navContainer: 'outer',
		countPages: null,
		activeImg: -1,
		noThumbs: false,
		imageTxt: null,
		imgTags: [],
		imgTagsActive: -1,
        autoNextInterval: 6000
	},

	initialize: function(images, startIndex, options) {
		this.startIndex = startIndex;
		this.activeImg = startIndex;
		this.images = images;

		Asset.images(images);

		this.options = $merge(
			this.options,
			options || {}
		);

		spanTag = $(this.options.backgroundContainer).getChildren('span')[0];
		spanTag.set('html', this.images[ this.startIndex ]);
		Background();

		if(this.options.imageTxt != null) {
			window.addEvents({
				resize: this.loadImageTxt.bind(this),
				scroll: this.loadImageTxt.bind(this)
			});
			this.loadImageTxt();
		}

		this.initBigImageNavigation();
		//this.checkNavigation();

		Via.Ready.Register(this.setup.bind(this));
	},


	setup: function() {
		var options=[],
			counter = 0;
		if(!this.options.noThumbs) {
			pages = $(this.options.imageContainer).getChildren();
			this.options.countPages = pages.length;


	//		pages.each(function(page, num) {
			for(pageCount = 0; pageCount < pages.length; pageCount++) {
				page = pages[ pageCount ];

				imageTags = page.getChildren();
	//			imageTags.each(function(imageTag, index) {
				for(imageCount = 0; imageCount < imageTags.length; imageCount++) {
					imageTag = imageTags[ imageCount ];

					if(!imageTag.hasClass('empty')) {

						imgTag = imageTag.getChildren('div')[0].getChildren('img')[0];
						this.options.imgTags.push(imgTag);
						imgSrc = this.images[ counter ];
						imgTag.addEvents({
							'click': this.onClick.bind(this, [imgSrc, counter]),
							'mouseenter': this.onMouseOver.bind(this, [counter]),
							'mouseleave': this.onMouseOut.bind(this, [counter])
						});

						counter++;
					}
				}
			}
		}
		this.bigPrevTag.setStyles({'opacity': 1, 'cursor': 'pointer'});
		this.bigNextTag.setStyles({'opacity': 1, 'cursor': 'pointer'});
		this.TO = setTimeout(this.bigNext.bind(this), this.options.autoNextInterval);
	},

	onClick: function(imgSrc, active) {
//		bigImage = $(this.options.backgroundContainer).getChildren('img')[0];
//		oldSRC = bigImage.get("src");

		if(this.activeImg != active) {
//			bigImage.set('src', imgSrc);
//			$(this.options.backgroundContainer).empty();
//			$(this.options.backgroundContainer).set('html', '<span id="filename">' + imgSrc + ',' + oldSRC +'</span>');
			backgroundTransition(imgSrc);
			this.activeImg = active;
		}

		this.checkNavigation();
	},

	initBigImageNavigation: function() {
		this.bigNextTag = new Element("a", {id: "bigNext", href: "javascript:void(0)"}).addEvent("click", this.bigNext.bind(this)),
		this.bigPrevTag = new Element("a", {id: "bigPrev", href: "javascript:void(0)"}).addEvent("click", this.bigPrev.bind(this)),

		$(this.options.navContainer).adopt(this.bigNextTag, this.bigPrevTag);
	},

	TO: null,

	bigPrev: function() {
		if(this.images.length < 2) {
			return;
		}

		if (this.TO) clearTimeout(this.TO);

		var nowPic = this.activeImg;
		var countImages = this.images.length;
//		bigImage = $(this.options.backgroundContainer).getChildren('img')[0];


		var index = nowPic-1;
		if (index < 0) {
			index = countImages - 1;
		}

//			$(this.options.backgroundContainer).empty();
//			$(this.options.backgroundContainer).set('html', '<span id="filename">' + this.images[ index ] + '</span>');
//			bigImage.set('src', this.images[ index ]);
			backgroundTransition(this.images[ index ]);

			if(this.options.imageTxt != null) {
                setTimeout(function() {
                    this.imgTextContainer.set('html', this.options.imageTxt[ index ]);
                    Cufon.refresh();
                }.bind(this), 500);
			}

			this.activeImg = index;
		this.TO = setTimeout(this.bigNext.bind(this), this.options.autoNextInterval);

//		backgroundTransition();
		//this.checkNavigation();
	},

	bigNext: function() {
		if(this.images.length < 2) {
			return;
		}

		if (this.TO) clearTimeout(this.TO);

		var nowPic = this.activeImg;
		var countImages = this.images.length;
//		bigImage = $(this.options.backgroundContainer).getChildren('img')[0];

		var index = nowPic+1;

		if (index >= countImages) {
			index = 0;
		}

//			$(this.options.backgroundContainer).empty();
//			$(this.options.backgroundContainer).set('html', '<span id="filename">' + this.images[ index ] + '</span>');
//			bigImage.set('src', this.images[ index ]);
			backgroundTransition(this.images[ index ]);

			if(this.options.imageTxt != null) {
				setTimeout(function() {
					this.imgTextContainer.set('html', this.options.imageTxt[ index ]);
					Cufon.refresh();
				}.bind(this), 430);
			}

			this.activeImg = index;

		this.TO = setTimeout(this.bigNext.bind(this), this.options.autoNextInterval);

//		backgroundTransition();
		//this.checkNavigation();
	},

	//checkNavigation: function() {
		/*
		nowPic = this.activeImg;
		countImages = this.images.length;

		if(nowPic == 0) {
			this.bigPrevTag.setStyles({'opacity': 0.5, 'cursor': 'default'});

			if(this.bigPrevTag.hasClass("hover")) {
				this.bigPrevTag.removeClass("hover");
			}
			this.bigPrevTag.removeEvents('mouseenter', 'mouseleave');
		}
		else {
			if(this.bigPrevTag.getStyle('opacity') < 1) {
				this.bigPrevTag.setStyles({'opacity': 1, 'cursor': 'pointer'});
			}

			this.bigPrevTag.addEvents({
				'mouseenter': function () { this.addClass("hover"); },
				'mouseleave': function () { this.removeClass("hover"); }
			});
		}

		if(nowPic == countImages-1) {
			this.bigNextTag.setStyles({'opacity': 0.5, 'cursor': 'default'});

			if(this.bigNextTag.hasClass("hover")) {
				this.bigNextTag.removeClass("hover");
			}
			this.bigNextTag.removeEvents('mouseenter', 'mouseleave');
		}
		else {
			if(this.bigNextTag.getStyle('opacity') < 1) {
				this.bigNextTag.setStyles({'opacity': 1, 'cursor': 'pointer'});
			}

			this.bigNextTag.addEvents({
				'mouseenter': function () { this.addClass("hover"); },
				'mouseleave': function () { this.removeClass("hover"); }
			});
		}
		*/
	//},

	loadImageTxt: function() {
		if(this.options.imageTxt == null) {
			return;
		}
//		console.log("hi");

		var wrapper = $('wrapper'),
			leftPos = wrapper.getPosition().x;
//			dimensions = window.getSize(),
//			heightDivs = $("header").getSize().y + wrapper.getStyle("padding-top").toInt() + $("footer").getSize().y, //125 + 56 + 80, // Header, Wrapper padding-top, Footer
//			container = $('container'),
//			containerDimensions = container.getSize();

//			topPos = ( dimensions.y - ( heightDivs + containerDimensions.y )) / 2;
//			topPos = topPos + 80;

		if(!$("image-text-container")) {
/*			if(topPos < 180) {
				topPos = 180;
			}
*/

			var topPos = 180;
			this.imgTextContainer = new Element("div", {
				id: "image-text-container",
				html: this.options.imageTxt[ this.startIndex ],
				styles: {
					"left": leftPos,
					"top": topPos
				}
			});

//			$(this.options.navContainer).adopt(this.imgTextContainer);
			this.imgTextContainer.inject($(this.options.navContainer), 'top');

			paddingLeft = $("image-text-container").getStyle('padding-left').toInt();
			paddingInnerLeft = $("image-text-container").getElement('p').getStyle('padding-left').toInt();

			var padding = paddingLeft + paddingInnerLeft;
			leftPos = leftPos - padding;

			this.imgTextContainer.setStyle('left', leftPos);

		}
		else {

			var paddingLeft = $("image-text-container").getStyle('padding-left').toInt();
			var paddingInnerLeft = 0;
			var p = $("image-text-container").getElement("p");

			if (p) paddingInnerLeft = p.getStyle('padding-left').toInt();

			padding = paddingLeft + paddingInnerLeft;
			leftPos = leftPos - padding;

			topPos = 180;
			this.imgTextContainer.setStyles({
				"left": leftPos,
				"top": topPos
			});
		}

	},

	onMouseOver: function(counter) {
		var imgTagsActive = counter,
			maxThumbs = this.options.imgTags.length;

		this.options.imgTagsActive = counter;

		this.options.imgTags.each(function(element, index) {
			if(index != counter) {
				element.setStyles({
					'filter': 'alpha(opacity=50)',
					'opacity': 0.50,
					'-moz-opacity': 0.50,
					'-ms-filter': '"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"',
					'filter': 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)'
				});
			}
			else if(imgTagsActive != counter && counter == index) {
				element.setStyles({
					'filter': 'alpha(opacity=100)',
					'opacity': 1,
					'-moz-opacity': 1,
					'-ms-filter': '"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"',
					'filter': 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'
				});
			}
		});
	},

	onMouseOut: function(counter) {
		var imgTagsActive = counter,
			maxThumbs = this.options.imgTags.length;

		this.options.imgTags.each(function(element, index) {
			if(index != counter) {
				element.setStyles({
					'filter': 'alpha(opacity=100)',
					'opacity': 1,
					'-moz-opacity': 1,
					'-ms-filter': '"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"',
					'filter': 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)'
				});
			}
			else if(imgTagsActive != counter && counter == index) {
				element.setStyles({
					'filter': 'alpha(opacity=50)',
					'opacity': 0.50,
					'-moz-opacity': 0.50,
					'-ms-filter': '"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"',
					'filter': 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)'
				});
			}
		});

		this.options.imgTagsActive = -1;
	}

});

// JavaScript Document

function initContainer() {
	var headerHeight = $("header").getSize().y,
		paddingTop = $("wrapper").getStyle("padding-top").toInt(),
		footerHeight = $("footer").getSize().y;
			
	window.addEvents({
		resize: adjustMargin,
		scroll: adjustMargin
	});
	adjustMargin();
	
	function adjustMargin() {
		var dimensions = window.getSize(),
			container = $('container'),			
			containerDimensions = container.getSize();
		
		marginTop = dimensions.y - ( headerHeight + paddingTop + footerHeight + containerDimensions.y );
		
		if($$('body')[0].hasClass('startpage')) {
			if(marginTop <= 100) {
				marginTop = 100;	
			}
		}
		
		if(marginTop >= 0) {
			
			if($$('body')[0].hasClass('project-details')) {
				marginTop = marginTop/2;
			}
			else {
				marginTop = marginTop - 15;	
			}
			
			container.setStyle('margin-top', marginTop);
		}
	}
}
// JavaScript Document
window.addEvent("domready", function() {
	
	if(!$$('body')[0].hasClass('project-details') && !$$('body')[0].hasClass('startpage')) {
		Background();
	}
	
	if($$('body')[0].hasClass('startpage') || $$('body')[0].hasClass('project-details')) {
//		initContainer();
	}
	
	initMainmenu();
	
	Cufon.now();
	Via.Ready.Run();
});
