/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();;

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
(function ($) {

/**
 * Open Mollom privacy policy link in a new window.
 *
 * Required for valid XHTML Strict markup.
 */
Drupal.behaviors.mollomPrivacy = function (context) {
  $('.mollom-privacy a', context).click(function () {
    this.target = '_blank';
  });
};

/**
 * Attach click event handlers for CAPTCHA links.
 */
Drupal.behaviors.mollomCaptcha = function (context) {
  $('a.mollom-switch-captcha', context).click(getMollomCaptcha);
};

/**
 * Fetch a Mollom CAPTCHA and output the image or audio into the form.
 */
function getMollomCaptcha() {
  // Get the current requested CAPTCHA type from the clicked link.
  var newCaptchaType = $(this).hasClass('mollom-audio-captcha') ? 'audio' : 'image';

  var context = $(this).parents('form');

  // Extract the Mollom session id from the form.
  var mollomSessionId = $('input.mollom-session-id', context).val();

  // Retrieve a CAPTCHA:
  $.getJSON(Drupal.settings.basePath + 'mollom/captcha/' + newCaptchaType + '/' + mollomSessionId,
    function (data) {
      if (!(data && data.content)) {
        return;
      }
      // Inject new CAPTCHA.
      $('.mollom-captcha-content', context).parent().html(data.content);
      // Update session id.
      $('input.mollom-session-id', context).val(data.session_id);
      // Add an onclick-event handler for the new link.
      Drupal.attachBehaviors(context);
      // Focus on the CATPCHA input.
      $('input[name="mollom[captcha]"]', context).focus();
    }
  );
  return false;
}

})(jQuery);
;

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);
;
/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;
/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;
// $Id: nice_menus.js,v 1.21 2010/06/18 06:14:12 vordude Exp $

// This uses Superfish 1.4.8
// (http://users.tpg.com.au/j_birch/plugins/superfish)

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

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowSingleFramePause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(slide).find('img').attr('src') + '" /></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.2.2.35 2010/07/01 03:29:08 redndahead Exp $

/**
 * @file
 * A simple jQuery ThumbnailHover Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
        
        var currId = (currId=$(current).attr('id')).substring(currId.lastIndexOf('_')+1)
        var nextId = (nextId=$(next).attr('id')).substring(nextId.lastIndexOf('_')+1)
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + currId).removeClass('activeSlide');
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + nextId).addClass('activeSlide');
      },
      pagerEvent: (settings.pager_event == 'hoverIntent') ? null : settings.pager_event,
      prev:(settings.controls > 0)?'#views_slideshow_thumbnailhover_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_thumbnailhover_next_' + settings.vss_id:null,
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    };

    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.view_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowThumbnailHoverPause(settings);
      });
    }
    
    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }

    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowThumbnailHoverIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowThumbnailHoverPause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id).show();
    
    if (settings.pager_event == 'hoverIntent') {
      $('#views_slideshow_thumbnailhover_breakout_teasers_' + settings.vss_id + ' .views_slideshow_thumbnailhover_div_breakout_teaser').each(function(i,obj) {
        $(obj).hoverIntent(
          function() {
            $('.views_slideshow_thumbnailhover_div_breakout_teaser').removeClass('activeSlide');
            var id = $(this).attr('id');
            id = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(id);
            $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + id).addClass('activeSlide');
            $(settings.targetId).cycle('stop');
          },
          function() {
            var id = $(this).attr('id');
            settings.opts.startingSlide = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(settings.opts);
          }
        );
      });
    }

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_thumbnailhover_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id).click(function(e) {
        if (settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else {
          viewsSlideshowThumbnailHoverPause(settings);
        }
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowThumbnailHoverResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_thumbnailhover_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowThumbnailHoverIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}
;
// $Id: extlink.js,v 1.4.2.12 2010/05/26 01:25:56 quicksketch Exp $
(function ($) {

function extlinkAttach(context) {
  // Strip the host name down, removing ports, subdomains, or www.
  var pattern = /^(([^\/:]+?\.)*)([^\.:]{4,})((\.[a-z]{1,4})*)(:[0-9]{1,5})?$/;
  var host = window.location.host.replace(pattern, '$3$4');
  var subdomain = window.location.host.replace(pattern, '$1');

  // Determine what subdomains are considered internal.
  if (Drupal.settings.extlink.extSubdomains) {
    var subdomains = "([^/]*\\.)?";
  }
  else if (subdomain == 'www.' || subdomain == '') {
    var subdomains = "(www\\.)?";
  }
  else {
    var subdomains = subdomain.replace(".", "\\.");
  }

  // Build regular expressions that define an internal link.
  var internal_link = new RegExp("^https?://" + subdomains + host, "i");

  // Extra internal link matching.
  var extInclude = false;
  if (Drupal.settings.extlink.extInclude) {
    extInclude = new RegExp(Drupal.settings.extlink.extInclude.replace(/\\/, '\\'));
  }

  // Extra external link matching.
  var extExclude = false;
  if (Drupal.settings.extlink.extExclude) {
    extExclude = new RegExp(Drupal.settings.extlink.extExclude.replace(/\\/, '\\'));
  }

  // Find all links which are NOT internal and begin with http (as opposed
  // to ftp://, javascript:, etc. other kinds of links.
  // When operating on the 'this' variable, the host has been appended to
  // all links by the browser, even local ones.
  // In jQuery 1.1 and higher, we'd use a filter method here, but it is not
  // available in jQuery 1.0 (Drupal 5 default).
  var external_links = new Array();
  var mailto_links = new Array();
  $("a:not(." + Drupal.settings.extlink.extClass + ", ." + Drupal.settings.extlink.mailtoClass + ")", context).each(function(el) {
    try {
      var url = this.href.toLowerCase();
      if (url.indexOf('http') == 0 && (!url.match(internal_link) || (extInclude && url.match(extInclude))) && !(extExclude && url.match(extExclude))) {
        external_links.push(this);
      }
      else if (url.indexOf('mailto:') == 0) {
        mailto_links.push(this);
      }
    }
    // IE7 throws errors often when dealing with irregular links, such as:
    // <a href="node/10"></a> Empty tags.
    // <a href="http://user:pass@example.com">example</a> User:pass syntax.
    catch(error) {
      return false;
    }
  });

  if (Drupal.settings.extlink.extClass) {
    // Apply the "ext" class to all links not containing images.
    if (parseFloat($().jquery) < 1.2) {
      $(external_links).not('[img]').addClass(Drupal.settings.extlink.extClass).each(function() { if ($(this).css('display') == 'inline') $(this).after('<span class=' + Drupal.settings.extlink.extClass + '></span>'); });
    }
    else {
      $(external_links).not($(external_links).find('img').parents('a')).addClass(Drupal.settings.extlink.extClass).each(function() { if ($(this).css('display') == 'inline') $(this).after('<span class=' + Drupal.settings.extlink.extClass + '></span>'); });
    }
  }

  if (Drupal.settings.extlink.mailtoClass) {
    // Apply the "mailto" class to all mailto links not containing images.
    if (parseFloat($().jquery) < 1.2) {
      $(mailto_links).not('[img]').addClass(Drupal.settings.extlink.mailtoClass).each(function() { if ($(this).css('display') == 'inline') $(this).after('<span class=' + Drupal.settings.extlink.mailtoClass + '></span>'); });
    }
    else {
      $(mailto_links).not($(mailto_links).find('img').parents('a')).addClass(Drupal.settings.extlink.mailtoClass).each(function() { if ($(this).css('display') == 'inline') $(this).after('<span class=' + Drupal.settings.extlink.mailtoClass + '></span>'); });
    }
  }

  if (Drupal.settings.extlink.extTarget) {
    // Apply the target attribute to all links.
    $(external_links).attr('target', Drupal.settings.extlink.extTarget);
  }

  if (Drupal.settings.extlink.extAlert) {
    // Add pop-up click-through dialog.
    $(external_links).click(function(e) {
     return confirm(Drupal.settings.extlink.extAlertText);
    });
  }

  // Work around for Internet Explorer box model problems.
  if (($.support && !($.support.boxModel === undefined) && !$.support.boxModel) || ($.browser.msie && parseInt($.browser.version) <= 7)) {
    $('span.ext, span.mailto').css('display', 'inline-block');
  }
}

Drupal.behaviors.extlink = function(context) {
  extlinkAttach(context);
}

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * Copyright (c) 1991 Adobe Systems Incorporated.  All Rights Reserved.
 * Vectora is a trademark of Linotype-Hell AG and/or its subsidiaries.
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora LT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-13 -291 343 90","underline-thickness":"18","underline-position":"-36","stemh":"41","stemv":"52","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":106},"!":{"d":"40,-81r-6,-175r52,0r-7,175r-39,0xm37,0r0,-48r46,0r0,48r-46,0","w":119},"\"":{"d":"73,-189r0,-91r37,0r0,91r-37,0xm10,-189r0,-91r36,0r0,91r-36,0","w":119},"#":{"d":"108,0r11,-76r-39,0r-10,76r-30,0r10,-76r-33,0r0,-27r37,0r6,-50r-33,0r0,-27r37,0r11,-76r30,0r-11,76r39,0r10,-76r31,0r-11,76r34,0r0,27r-38,0r-6,50r33,0r0,27r-37,0r-11,76r-30,0xm122,-103r7,-50r-38,0r-7,50r38,0"},"$":{"d":"97,31r0,-25v-61,-1,-80,-42,-84,-59r45,-13v4,23,22,31,39,34r0,-78v-32,-6,-78,-26,-78,-78v0,-35,28,-74,78,-74r0,-26r20,0r0,26v58,0,75,36,78,55r-45,9v-4,-15,-17,-26,-33,-26r0,73v57,14,84,35,84,76v0,55,-38,78,-84,81r0,25r-20,0xm97,-157r0,-67v-19,1,-33,13,-33,32v0,18,12,27,33,35xm117,-105r0,73v22,-4,37,-16,37,-35v0,-24,-18,-31,-37,-38"},"%":{"d":"75,-150v38,-1,38,-86,0,-87v-37,1,-38,86,0,87xm75,-124v-44,0,-62,-30,-62,-69v0,-35,21,-69,62,-69v45,0,61,30,61,69v0,35,-20,69,-61,69xm225,6v-44,0,-61,-30,-61,-69v0,-35,20,-69,61,-69v45,0,62,30,62,69v0,35,-21,69,-62,69xm225,-19v37,-1,38,-87,0,-88v-37,1,-38,87,0,88xm66,9r139,-274r28,0r-139,274r-28,0","w":299},"&":{"d":"113,-227v-48,0,-33,52,-5,70v24,-14,37,-22,37,-41v0,-15,-11,-29,-32,-29xm202,0r-19,-22v-23,17,-39,26,-75,26v-67,0,-95,-36,-95,-76v0,-45,36,-60,53,-68v-13,-10,-34,-32,-34,-59v0,-49,45,-63,82,-63v60,0,79,33,79,60v0,39,-34,58,-55,68r50,53v9,-12,17,-24,18,-56r46,0v0,33,-11,65,-34,89r44,48r-60,0xm157,-50r-62,-64v-12,6,-31,17,-31,40v0,47,56,58,93,24","w":266},"(":{"d":"105,30r-29,18v-81,-105,-82,-226,0,-331r29,18v-22,37,-46,79,-46,147v0,68,24,111,46,148","w":113},")":{"d":"9,-265r28,-18v82,105,82,226,0,331r-28,-18v22,-37,45,-80,45,-148v0,-68,-23,-110,-45,-147","w":113},"*":{"d":"35,-135r35,-42r-54,-15r10,-30r52,21r-5,-55r34,0r-5,55r52,-21r10,30r-54,15r35,42r-25,18r-30,-46r-30,46","w":180},"+":{"d":"91,-108r0,-74r34,0r0,74r74,0r0,34r-74,0r0,74r-34,0r0,-74r-74,0r0,-34r74,0","w":216},",":{"d":"34,-48r47,0r-32,92r-39,0","w":106},"-":{"d":"13,-126r88,0r0,37r-88,0r0,-37","w":113},".":{"d":"30,0r0,-48r46,0r0,48r-46,0","w":106},"\/":{"d":"1,0r106,-269r32,12r-106,269","w":140},"0":{"d":"64,-129v0,54,8,97,43,97v35,0,42,-43,42,-97v0,-47,-4,-97,-42,-97v-38,0,-43,50,-43,97xm12,-129v0,-68,18,-133,95,-133v77,0,94,65,94,133v0,68,-20,133,-94,133v-74,0,-95,-65,-95,-133"},"1":{"d":"108,0r0,-204r-56,45r-25,-30r87,-67r46,0r0,256r-52,0"},"2":{"d":"17,0r0,-37r73,-72v19,-19,50,-49,50,-81v0,-21,-12,-36,-36,-36v-31,0,-40,26,-40,44r-48,-8v7,-44,38,-72,91,-72v53,0,83,33,83,72v0,71,-76,108,-113,153r114,0r0,37r-174,0"},"3":{"d":"64,-193r-45,-13v15,-38,46,-56,88,-56v38,0,81,13,81,65v0,27,-17,49,-51,62v44,8,56,35,56,64v0,32,-22,75,-93,75v-64,0,-82,-44,-85,-68r46,-10v3,24,15,42,41,42v26,0,39,-20,39,-41v0,-35,-26,-43,-62,-41r0,-38v32,2,59,-7,60,-38v0,-19,-12,-36,-36,-36v-27,0,-34,20,-39,33"},"4":{"d":"120,0r0,-44r-108,0r0,-43r104,-169r52,0r0,175r34,0r0,37r-34,0r0,44r-48,0xm120,-81r0,-71v0,-25,4,-43,5,-54v-9,2,-12,20,-20,35r-52,90r67,0"},"5":{"d":"184,-256r0,36r-103,0r-1,56v61,-17,113,19,113,82v0,48,-34,86,-90,86v-49,0,-72,-21,-82,-68r43,-9v0,17,10,41,37,41v24,0,40,-15,40,-47v0,-60,-66,-64,-106,-37r3,-140r146,0"},"6":{"d":"109,-256r61,0r-33,39v-18,23,-44,48,-46,62v50,-24,105,18,105,73v0,46,-30,86,-89,86v-78,0,-90,-63,-90,-90v3,-73,59,-121,92,-170xm144,-80v5,-40,-45,-56,-69,-38v-15,27,-9,86,28,86v31,0,38,-23,41,-48"},"7":{"d":"24,0r111,-217r-117,0r0,-39r171,0r0,36r-108,220r-57,0"},"8":{"d":"109,-155v34,-13,45,-73,-2,-73v-24,0,-36,13,-36,31v0,21,21,34,38,42xm143,-68v0,-19,-29,-59,-50,-39v-36,19,-34,76,13,77v24,0,37,-16,37,-38xm108,-262v50,0,80,25,80,60v0,36,-29,54,-45,63v22,13,51,32,51,71v0,37,-29,72,-87,72v-63,0,-88,-35,-88,-69v0,-35,22,-49,52,-68v-14,-7,-48,-23,-48,-63v0,-44,39,-66,85,-66"},"9":{"d":"44,0r32,-39v20,-26,43,-52,46,-64v-50,24,-105,-18,-105,-73v0,-46,30,-86,89,-86v78,0,90,63,90,90v0,73,-60,122,-92,172r-60,0xm69,-179v-5,39,45,58,69,39v15,-26,10,-86,-27,-86v-31,0,-39,22,-42,47"},":":{"d":"30,-168r0,-47r46,0r0,47r-46,0xm30,0r0,-48r46,0r0,48r-46,0","w":106},";":{"d":"34,-48r47,0r-32,92r-39,0xm30,-168r0,-47r46,0r0,47r-46,0","w":106},"<":{"d":"199,-32r0,35r-182,-80r0,-28r182,-80r0,35r-137,59","w":216},"=":{"d":"199,-147r0,35r-182,0r0,-35r182,0xm199,-70r0,35r-182,0r0,-35r182,0","w":216},">":{"d":"17,3r0,-35r137,-59r-137,-59r0,-35r182,80r0,28","w":216},"?":{"d":"77,-81v-14,-56,52,-72,53,-115v0,-17,-11,-30,-32,-30v-27,0,-34,25,-35,33r-45,-9v13,-53,56,-60,84,-60v74,0,96,78,50,117v-17,14,-40,27,-35,64r-40,0xm74,0r0,-48r46,0r0,48r-46,0","w":193},"@":{"d":"149,-167v-43,-3,-66,81,-16,85v42,2,67,-81,16,-85xm224,-196r-26,109v0,5,3,8,8,8v19,0,41,-28,41,-66v0,-58,-44,-90,-98,-90v-62,0,-102,47,-102,108v0,97,123,139,184,75r28,0v-24,37,-64,58,-109,58v-78,0,-136,-57,-136,-134v0,-76,61,-134,129,-134v79,0,131,49,131,109v0,74,-63,104,-89,104v-12,0,-19,-8,-22,-20v-27,39,-100,14,-95,-40v-6,-63,80,-129,121,-67r5,-20r30,0","w":288},"A":{"d":"90,-99r79,0v-14,-38,-22,-82,-40,-116v-8,42,-26,78,-39,116xm1,0r96,-256r69,0r93,256r-56,0r-21,-60r-106,0r-21,60r-54,0","w":259},"B":{"d":"78,-40v41,-1,85,10,87,-35v0,-19,-8,-37,-38,-37r-49,0r0,72xm26,0r0,-256r105,0v58,0,80,29,80,64v0,27,-15,51,-46,59v25,3,53,23,53,62v0,45,-29,71,-89,71r-103,0xm78,-151v39,0,80,7,81,-34v1,-40,-44,-31,-81,-32r0,66","w":233},"C":{"d":"231,-190r-50,11v-3,-24,-20,-42,-45,-42v-38,0,-64,28,-64,93v0,65,23,93,58,93v36,0,51,-27,54,-45r50,11v-2,13,-19,75,-107,75v-67,0,-112,-46,-112,-134v0,-88,50,-134,121,-134v53,0,83,27,95,72","w":246},"D":{"d":"26,0r0,-256v122,-1,210,-17,218,129v6,119,-96,135,-218,127xm80,-215r0,174v71,9,107,-26,107,-88v0,-57,-35,-96,-107,-86","w":259},"E":{"d":"26,0r0,-256r167,0r0,41r-113,0r0,62r106,0r0,41r-106,0r0,71r116,0r0,41r-170,0"},"F":{"d":"26,0r0,-256r167,0r0,41r-113,0r0,69r109,0r0,41r-109,0r0,105r-54,0","w":206},"G":{"d":"234,-197r-50,13v-1,-14,-22,-37,-48,-37v-38,0,-64,28,-64,93v0,88,51,107,108,83r0,-58r-44,0r0,-40r96,0r0,121v-15,10,-52,28,-96,28v-71,0,-121,-46,-121,-134v0,-88,50,-134,121,-134v61,0,85,27,98,65","w":253},"H":{"d":"26,0r0,-256r54,0r0,100r100,0r0,-100r54,0r0,256r-54,0r0,-114r-100,0r0,114r-54,0","w":259},"I":{"d":"26,0r0,-256r54,0r0,256r-54,0","w":106},"J":{"d":"-5,-9r22,-39v21,23,51,12,51,-28r0,-180r54,0r0,185v10,62,-77,100,-127,62","w":146},"K":{"d":"26,0r0,-256r54,0r1,109r88,-109r64,0r-102,121r109,135r-69,0r-91,-117r0,117r-54,0","w":240},"L":{"d":"26,0r0,-256r54,0r0,214r102,0r0,42r-156,0","w":186},"M":{"d":"149,0r-58,-167v-6,-17,-12,-42,-13,-50r-3,0r1,217r-50,0r0,-256r84,0v19,61,46,122,59,187r2,0v13,-63,41,-127,59,-187r84,0r0,256r-50,0r1,-217r-4,0v-16,72,-48,148,-70,217r-42,0","w":339},"N":{"d":"26,0r0,-256r70,0v32,62,80,133,101,200r3,0v-4,-53,-3,-139,-3,-200r50,0r0,256r-71,0v-32,-66,-75,-128,-100,-200r-3,0v5,60,2,134,3,200r-50,0","w":273},"O":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm133,6v-71,0,-120,-46,-120,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,88,-49,134,-120,134","w":266},"P":{"d":"22,0r0,-256r101,0v62,0,87,35,87,78v0,79,-61,86,-134,82r0,96r-54,0xm76,-136v44,2,86,0,82,-44v5,-39,-42,-39,-82,-37r0,81","w":219},"Q":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm218,67r-87,-61v-65,0,-118,-43,-118,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,63,-25,105,-65,123r60,38","w":266},"R":{"d":"80,-146v39,-1,80,8,80,-36v0,-46,-41,-33,-80,-35r0,71xm168,0r-47,-106r-41,0r0,106r-54,0r0,-256r108,0v94,-9,103,118,36,139r58,117r-60,0","w":233},"S":{"d":"199,-210r-49,16v-4,-11,-9,-29,-37,-29v-46,1,-56,42,-19,57v44,18,110,35,110,92v0,43,-34,80,-99,80v-59,0,-86,-34,-92,-60r49,-18v3,17,13,37,46,37v47,1,59,-50,12,-66v-44,-15,-101,-30,-102,-85v0,-36,25,-76,94,-76v42,0,73,10,87,52","w":219},"T":{"d":"73,0r0,-214r-70,0r0,-42r194,0r0,42r-70,0r0,214r-54,0","w":200},"U":{"d":"178,-256r52,0r0,155v0,70,-36,107,-107,107v-64,0,-99,-37,-99,-107r0,-155r52,0r0,155v0,39,12,66,51,66v39,0,51,-27,51,-66r0,-155","w":253},"V":{"d":"2,-256r57,0r59,208r2,0r64,-208r54,0r-85,256r-70,0","w":240},"W":{"d":"64,0r-61,-256r55,0r29,142v4,17,10,54,11,69r3,0v6,-62,29,-149,41,-211r66,0r32,154v4,18,7,38,9,57r3,0v8,-77,28,-139,41,-211r50,0r-59,256r-68,0v-13,-68,-34,-139,-40,-211r-4,0v-9,73,-28,141,-41,211r-67,0","w":346},"X":{"d":"72,-256r53,94v13,-32,36,-64,52,-94r60,0r-77,122r83,134r-63,0v-19,-33,-43,-68,-57,-104r-3,0v-14,34,-39,71,-57,104r-60,0r84,-134r-77,-122r62,0","w":246},"Y":{"d":"93,0r0,-99r-93,-157r63,0r59,112v14,-41,38,-75,57,-112r61,0r-93,157r0,99r-54,0","w":240},"Z":{"d":"10,0r0,-42r122,-173r-118,0r0,-41r180,0r0,43r-121,172r123,0r0,41r-186,0","w":206},"[":{"d":"25,47r0,-320r72,0r0,25r-29,0r0,270r29,0r0,25r-72,0","w":106},"\\":{"d":"33,-269r106,269r-32,12r-106,-269","w":140},"]":{"d":"81,-273r0,320r-72,0r0,-25r30,0r0,-270r-30,0r0,-25r72,0","w":106},"^":{"d":"23,-114r69,-142r32,0r69,142r-34,0r-51,-108r-51,108r-34,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"138,0r-2,-32v-30,50,-126,50,-126,-29v0,-63,58,-77,126,-74v2,-29,-3,-49,-35,-50v-24,0,-30,14,-38,33r-45,-13v13,-30,32,-55,85,-55v47,0,82,21,82,78r2,142r-49,0xm136,-60r0,-44v-44,-2,-80,8,-76,39v5,44,49,36,76,5","w":206},"b":{"d":"25,0r0,-280r52,0r0,90v19,-17,32,-30,59,-30v61,0,76,64,76,111v0,108,-76,146,-135,83r0,26r-52,0xm77,-156r0,97v32,46,82,22,82,-49v0,-73,-52,-92,-82,-48","w":226},"c":{"d":"144,-71r47,12v-9,26,-24,63,-84,63v-69,0,-92,-56,-92,-111v0,-62,27,-113,94,-113v55,0,77,43,80,64r-48,13v0,-21,-10,-40,-33,-40v-27,0,-39,24,-39,72v0,45,7,79,39,79v24,0,34,-24,36,-39","w":193},"d":{"d":"202,-280r0,280r-52,0r0,-26v-58,63,-135,25,-135,-83v0,-47,14,-111,75,-111v27,0,41,13,60,30r0,-90r52,0xm150,-59r0,-97v-29,-43,-82,-25,-82,48v0,72,49,95,82,49","w":226},"e":{"d":"150,-64r44,14v-12,28,-35,54,-84,54v-60,0,-98,-42,-98,-112v0,-66,36,-112,99,-112v67,0,95,56,91,125r-139,0v0,26,9,63,46,63v23,0,37,-19,41,-32xm63,-129r87,0v0,-35,-15,-54,-41,-54v-32,0,-44,26,-46,54"},"f":{"d":"36,0r0,-161r-31,0r0,-37r31,0v-10,-66,34,-103,104,-86r0,37v-32,-13,-62,4,-53,49r43,0r0,37r-43,0r0,161r-51,0","w":133},"g":{"d":"211,-215r0,29r-42,0v39,39,4,117,-83,102v-7,7,-8,18,7,22v45,13,112,13,112,70v0,49,-50,65,-99,65v-60,0,-96,-23,-96,-56v0,-33,25,-45,40,-53v-22,-15,-11,-45,9,-54v-77,-29,-46,-135,35,-130v36,2,75,6,117,5xm101,-117v23,0,38,-13,38,-34v0,-24,-20,-34,-37,-34v-27,0,-40,14,-40,34v0,21,17,34,39,34xm156,13v0,-29,-53,-25,-78,-36v-12,8,-23,18,-23,34v0,21,25,29,53,29v35,0,48,-11,48,-27"},"h":{"d":"25,0r0,-280r52,0r0,97v17,-17,41,-37,72,-37v42,0,53,32,53,64r0,156r-52,0r0,-145v-5,-47,-49,-34,-73,-4r0,149r-52,0","w":226},"i":{"d":"24,0r0,-215r52,0r0,215r-52,0xm24,-241r0,-39r52,0r0,39r-52,0","w":100},"j":{"d":"24,4r0,-219r52,0r0,229v2,50,-43,68,-89,55r3,-38v20,5,35,0,34,-27xm24,-241r0,-39r52,0r0,39r-52,0","w":100},"k":{"d":"26,-280r51,0r1,160r69,-96r60,0r-77,102r83,114r-63,0r-73,-108r0,108r-51,0r0,-280"},"l":{"d":"24,0r0,-280r52,0r0,280r-52,0","w":100},"m":{"d":"25,0r0,-215r52,0r0,31v20,-19,36,-36,65,-36v28,0,42,15,50,36v18,-19,41,-36,69,-36v39,0,54,27,54,64r0,156r-52,0r0,-144v-6,-45,-39,-41,-67,-5r0,149r-52,0r0,-144v-6,-45,-39,-41,-67,-5r0,149r-52,0","w":339},"n":{"d":"150,0r0,-145v-5,-47,-49,-34,-73,-4r0,149r-52,0r0,-215r52,0r0,32v17,-17,41,-37,72,-37v42,0,53,32,53,64r0,156r-52,0","w":226},"o":{"d":"66,-108v0,54,17,76,44,76v27,0,45,-22,45,-76v0,-53,-18,-75,-45,-75v-27,0,-44,22,-44,75xm12,-108v0,-66,38,-112,98,-112v63,0,99,46,99,112v0,70,-41,112,-99,112v-60,0,-98,-42,-98,-112","w":220},"p":{"d":"25,70r0,-285r52,0r0,25v19,-17,32,-30,59,-30v61,0,76,64,76,111v0,108,-76,146,-135,83r0,96r-52,0xm77,-156r0,97v32,46,82,22,82,-49v0,-73,-52,-92,-82,-48","w":226},"q":{"d":"202,-215r0,285r-52,0r0,-96v-58,63,-135,25,-135,-83v0,-47,14,-111,75,-111v27,0,41,13,60,30r0,-25r52,0xm150,-59r0,-97v-29,-43,-82,-25,-82,48v0,72,49,95,82,49","w":226},"r":{"d":"25,0r0,-215r52,0v1,11,-2,25,1,34v15,-20,38,-44,70,-38r0,48v-34,-9,-57,11,-71,28r0,143r-52,0","w":146},"s":{"d":"174,-170r-44,14v-3,-10,-8,-29,-37,-29v-14,0,-28,7,-28,24v0,32,42,24,64,37v29,9,48,27,48,59v0,56,-44,69,-91,69v-55,0,-73,-35,-77,-54r45,-14v6,20,15,32,39,32v44,-1,40,-45,9,-52v-40,-9,-87,-23,-87,-70v0,-47,38,-66,78,-66v49,0,73,24,81,50","w":186},"t":{"d":"138,-198r0,37r-51,0r0,89v-7,35,24,44,52,32r0,38v-6,3,-24,6,-41,6v-86,-1,-57,-90,-62,-165r-31,0r0,-37r31,0r0,-49r51,-21r0,70r51,0","w":146},"u":{"d":"197,-215r0,215r-52,0r0,-33v-17,17,-41,37,-72,37v-40,0,-50,-31,-50,-63r0,-156r52,0r0,145v5,48,46,32,70,3r0,-148r52,0","w":219},"v":{"d":"70,0r-69,-215r56,0v14,53,35,106,43,163r2,0v7,-57,31,-111,46,-163r51,0r-68,215r-61,0","w":200},"w":{"d":"203,0r-38,-163r-2,0v-7,57,-24,109,-35,163r-65,0r-61,-215r54,0r27,104v5,19,8,42,12,61r3,0v8,-59,23,-110,35,-165r65,0r37,165r2,0v7,-50,26,-114,36,-165r52,0r-57,215r-65,0","w":326},"x":{"d":"0,0r68,-115r-60,-100r59,0v14,24,23,53,40,74v12,-28,27,-48,40,-74r54,0r-61,99r66,116r-60,0r-44,-83r-46,83r-56,0","w":206},"y":{"d":"18,68r3,-40v29,6,36,12,55,-32r-75,-211r56,0v15,52,35,95,44,155r2,0v8,-62,30,-102,45,-155r51,0r-78,230v-11,53,-53,67,-103,53","w":200},"z":{"d":"8,0r0,-35r105,-144r-100,0r0,-36r162,0r0,35r-105,143r109,0r0,37r-171,0","w":186},"{":{"d":"11,-100r0,-26v13,0,30,-10,30,-34r0,-67v4,-44,34,-49,76,-46r0,25v-52,-10,-37,49,-37,93v0,34,-24,41,-34,42v10,1,34,8,34,42v0,39,-22,101,37,93r0,25v-42,3,-76,-2,-76,-46v0,-39,7,-104,-30,-101","w":126},"|":{"d":"23,90r0,-360r34,0r0,360r-34,0","w":79},"}":{"d":"116,-126r0,26v-13,0,-31,10,-31,34r0,67v-4,44,-34,49,-76,46r0,-25v53,11,37,-48,37,-93v0,-34,25,-41,35,-42v-10,-1,-35,-8,-35,-42v0,-39,22,-101,-37,-93r0,-25v42,-3,76,1,76,46r0,67v0,24,18,34,31,34","w":126},"~":{"d":"70,-120v23,0,56,24,77,25v14,0,23,-13,31,-26r13,27v-11,15,-23,31,-45,31v-36,0,-90,-50,-108,2r-13,-28v8,-15,21,-31,45,-31","w":216},"'":{"d":"23,-189r0,-91r36,0r0,91r-36,0","w":79},"`":{"d":"49,-291r36,53r-37,0r-58,-53r59,0","w":100},"\u00a0":{"w":106}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1991, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Vectora is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Full name:
 * VectoraLTStd-BoldItalic
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora LT Std","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 6 3 5 3 9 2 4","ascent":"280","descent":"-80","x-height":"4","bbox":"-60 -342 379 90","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"40","stemv":"49","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":106,"k":{"\u201c":13,"\u2018":13,"T":20,"V":20,"W":13,"Y":27,"\u00dd":27,"\u0178":27,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"32,-81r27,-175r52,0r-42,175r-37,0xm12,0r9,-48r46,0r-9,48r-46,0","w":119},"\"":{"d":"50,-188r0,-92r38,0r0,92r-38,0xm124,-188r0,-92r37,0r0,92r-37,0","w":180},"#":{"d":"123,-105r6,-47r-39,0r-6,47r39,0xm133,-179r11,-77r30,0r-10,77r34,0r-4,27r-34,0r-7,47r35,0r-4,28r-35,0r-10,77r-31,0r11,-77r-39,0r-11,77r-30,0r10,-77r-34,0r4,-28r34,0r7,-47r-35,0r4,-27r35,0r10,-77r31,0r-11,77r39,0"},"$":{"d":"108,-102r-13,69v39,-6,59,-51,13,-69xm104,-159r12,-65v-43,5,-47,51,-12,65xm80,-34r14,-75v-44,-19,-68,-38,-68,-74v0,-33,26,-79,98,-79r5,-26r15,0r-5,26v46,4,67,30,69,54r-49,14v0,-16,-12,-26,-28,-29r-13,70v46,19,70,36,70,74v0,43,-32,85,-101,85r-5,23r-15,0r5,-24v-35,-2,-68,-17,-77,-60r49,-16v4,21,15,34,36,37"},"%":{"d":"114,-215v0,-15,-6,-22,-20,-22v-28,0,-37,46,-37,64v0,15,7,23,21,23v28,0,36,-47,36,-65xm39,4r190,-266r31,0r-190,266r-31,0xm243,-85v0,-15,-7,-23,-21,-23v-28,0,-37,46,-37,64v0,15,7,23,21,23v28,0,37,-46,37,-64xm23,-175v0,-44,26,-87,73,-87v31,0,53,17,53,50v0,44,-26,87,-74,87v-31,0,-52,-17,-52,-50xm151,-46v0,-44,26,-87,73,-87v31,0,53,17,53,50v0,44,-26,87,-74,87v-31,0,-52,-17,-52,-50","w":299},"&":{"d":"184,0r-17,-21v-47,43,-163,30,-163,-43v0,-37,27,-64,67,-79v-51,-46,-16,-119,61,-119v41,0,72,21,72,56v0,36,-28,56,-69,75r42,53v15,-14,27,-37,31,-58r46,0v-3,25,-16,61,-52,88r38,48r-56,0xm157,-200v0,-18,-12,-26,-28,-26v-37,0,-44,49,-16,67v30,-12,44,-23,44,-41xm145,-49r-51,-65v-50,13,-55,82,2,82v14,0,30,-4,49,-17","w":266},"\u2019":{"d":"26,-188r42,-92r46,0r-50,92r-38,0","w":106,"k":{"\u2019":29,"r":6,"d":20,"\u0131":20,"s":20,"\u0161":20}},"(":{"d":"107,-282r24,22v-78,89,-102,184,-56,294r-31,16v-69,-123,-26,-251,63,-332","w":113},")":{"d":"35,-266r30,-16v69,123,27,250,-62,332r-25,-22v78,-89,101,-183,57,-294","w":113},"*":{"d":"91,-201r7,-55r33,0r-14,55r55,-21r4,30r-56,15r28,42r-29,19r-22,-47r-38,46r-23,-19r43,-42r-50,-15r15,-29","w":180},"+":{"d":"85,-108r0,-74r35,0r0,74r74,0r0,34r-74,0r0,74r-35,0r0,-74r-73,0r0,-34r73,0","w":216},",":{"d":"-22,44r42,-92r46,0r-50,92r-38,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"5,-90r7,-36r89,0r-7,36r-89,0","w":113},".":{"d":"5,0r10,-48r46,0r-10,48r-46,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"-27,6r162,-280r32,12r-161,279","w":140},"0":{"d":"7,-78v0,-12,2,-184,123,-184v50,0,76,33,76,82v0,31,-12,184,-119,184v-58,0,-80,-32,-80,-82xm156,-182v0,-27,-9,-44,-31,-44v-55,0,-68,117,-68,153v0,22,8,41,32,41v53,0,67,-121,67,-150"},"1":{"d":"32,-190r98,-66r48,0r-49,256r-53,0r39,-201r-63,44"},"2":{"d":"-6,0r7,-38v140,-116,153,-129,153,-155v0,-15,-9,-32,-35,-32v-31,0,-42,30,-42,44r-46,-9v10,-46,43,-72,94,-72v45,0,79,25,79,66v0,41,-26,63,-141,160r111,0r-7,36r-173,0"},"3":{"d":"-2,-63r47,-10v0,23,9,41,37,41v27,0,45,-25,45,-49v0,-32,-25,-34,-56,-33r8,-38v31,0,67,-4,67,-43v0,-19,-15,-31,-33,-31v-22,0,-35,14,-40,33r-43,-13v17,-42,54,-56,88,-56v39,0,79,17,79,61v0,43,-37,58,-64,67v29,8,44,21,44,52v0,44,-34,86,-92,86v-54,0,-83,-24,-87,-67"},"4":{"d":"3,-89r133,-167r56,0r-35,177r33,0r-7,36r-33,0r-8,43r-47,0r8,-43r-109,0xm40,-79r72,0r19,-98v2,-11,8,-22,8,-32"},"5":{"d":"8,-63r42,-8v-1,22,6,41,33,41v26,0,49,-24,49,-58v0,-57,-62,-51,-100,-28r30,-140r144,0r-7,37r-101,0r-12,55v51,-14,96,11,96,70v0,48,-33,98,-101,98v-45,0,-70,-22,-73,-67"},"6":{"d":"129,-256r63,0r-99,103v45,-18,95,5,95,58v0,115,-182,140,-179,20v2,-78,81,-128,120,-181xm105,-125v-37,1,-47,21,-47,57v0,25,14,36,34,36v46,0,67,-94,13,-93"},"7":{"d":"150,-217r-113,0r7,-39r171,0r-8,36r-150,220r-59,0"},"8":{"d":"6,-57v0,-35,27,-63,66,-78v-66,-39,-37,-126,54,-127v43,0,75,19,75,56v0,30,-22,59,-61,70v21,9,42,28,42,61v0,44,-39,79,-93,79v-55,0,-83,-24,-83,-61xm90,-30v49,0,60,-62,13,-84v-35,14,-47,33,-47,52v0,18,12,32,34,32xm154,-199v0,-19,-15,-29,-33,-29v-44,0,-52,54,-8,74v27,-13,41,-27,41,-45"},"9":{"d":"17,0r101,-105v-45,16,-96,-3,-96,-58v0,-60,43,-99,100,-99v48,0,79,29,79,76v-1,74,-83,135,-121,186r-63,0xm105,-133v37,-1,47,-21,47,-57v0,-25,-14,-36,-34,-36v-46,0,-67,94,-13,93"},":":{"d":"38,-168r9,-47r46,0r-9,47r-46,0xm5,0r10,-48r46,0r-10,48r-46,0","w":106,"k":{" ":13}},";":{"d":"-22,44r42,-92r46,0r-50,92r-38,0xm38,-168r9,-47r46,0r-9,47r-46,0","w":106,"k":{" ":13}},"<":{"d":"12,-77r0,-28r182,-80r0,35r-138,59r138,59r0,35","w":216},"=":{"d":"12,-112r0,-35r182,0r0,35r-182,0xm12,-35r0,-35r182,0r0,35r-182,0","w":216},">":{"d":"149,-91r-137,-59r0,-35r182,80r0,28r-182,80r0,-35","w":216},"?":{"d":"67,-192r-43,-9v6,-30,36,-61,85,-61v40,0,73,20,73,60v0,22,-12,46,-35,61v-43,28,-44,35,-48,61r-40,0v6,-42,13,-50,34,-65v36,-26,43,-38,43,-53v0,-46,-68,-26,-69,6xm40,0r10,-48r46,0r-10,48r-46,0","w":193},"@":{"d":"133,-82v41,2,67,-80,17,-85v-44,-3,-65,81,-17,85xm189,-176r5,-19r30,0v-25,97,-25,103,-25,108v0,6,1,8,5,8v17,0,43,-22,43,-66v0,-58,-43,-90,-97,-90v-62,0,-104,47,-104,108v0,97,126,136,185,75r30,0v-62,105,-247,55,-247,-76v0,-76,61,-134,136,-134v65,0,124,43,124,109v0,74,-62,103,-89,103v-15,0,-18,-7,-21,-19v-31,40,-95,10,-95,-42v0,-63,80,-124,120,-65","w":288},"A":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116","w":259},"B":{"d":"1,0r50,-256v73,2,174,-17,174,57v0,37,-29,60,-59,67v28,6,43,29,43,53v0,46,-38,79,-95,79r-113,0xm83,-152v42,2,89,3,89,-37v0,-31,-43,-30,-76,-28xm62,-40v46,3,98,0,94,-42v4,-33,-45,-31,-80,-30","w":233,"k":{",":9,".":9}},"C":{"d":"174,-80r48,11v-17,51,-57,75,-111,75v-74,0,-100,-51,-100,-100v0,-48,29,-168,139,-168v57,0,87,28,93,72r-50,10v-4,-27,-21,-41,-44,-41v-67,0,-82,100,-82,129v0,34,16,57,48,57v28,0,45,-14,59,-45","w":246,"k":{",":9,".":9}},"D":{"d":"1,0r50,-256r87,0v71,0,109,39,109,104v0,89,-60,152,-147,152r-99,0xm64,-41v80,9,121,-25,126,-112v3,-50,-37,-66,-93,-61","w":259,"k":{"V":4,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13}},"E":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0"},"F":{"d":"1,0r50,-256r167,0r-8,41r-113,0r-13,69r108,0r-8,41r-108,0r-21,105r-54,0","w":206,"k":{",":40,".":40,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"G":{"d":"133,-102r7,-40r95,0r-23,121v-21,14,-59,27,-97,27v-69,0,-102,-47,-102,-95v0,-75,42,-173,141,-173v42,0,82,15,94,65r-51,13v-5,-23,-20,-37,-46,-37v-67,0,-82,99,-82,127v0,63,58,72,97,50r11,-58r-44,0","w":253},"H":{"d":"185,-156r19,-100r54,0r-49,256r-54,0r22,-114r-99,0r-23,114r-54,0r50,-256r54,0r-19,100r99,0","w":259},"I":{"d":"1,0r50,-256r54,0r-50,256r-54,0","w":106},"J":{"d":"-31,-9r29,-38v24,23,50,15,59,-35r34,-174r54,0r-36,185v-11,74,-85,95,-140,62","w":146,"k":{",":13,".":13}},"K":{"d":"87,-150v33,-30,71,-72,105,-106r69,0r-129,121r85,135r-63,0r-73,-120r-23,120r-54,0r49,-256r54,0","w":240,"k":{"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"y":9,"\u00fd":9,"\u00ff":9,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6}},"L":{"d":"4,0r49,-256r54,0r-41,214r102,0r-9,42r-155,0","w":186,"k":{"T":33,"V":34,"W":27,"y":9,"\u00fd":9,"\u00ff":9,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":54,"\u2019":46}},"M":{"d":"124,0r-30,-215r-2,0r-40,215r-51,0r50,-256r82,0r21,147v3,12,0,31,4,42v28,-68,66,-125,98,-189r82,0r-49,256r-52,0r42,-215r-114,215r-41,0","w":339},"N":{"d":"153,0v-22,-67,-48,-125,-64,-199r-2,0v-7,71,-23,133,-35,199r-51,0r50,-256r68,0r54,165v6,11,3,28,11,36r37,-201r51,0r-50,256r-69,0","w":273,"k":{",":9,".":9}},"O":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"P":{"d":"0,0r50,-256r93,0v51,0,81,26,81,68v0,81,-67,100,-151,93r-19,95r-54,0xm79,-135v49,3,88,0,93,-48v3,-29,-39,-38,-77,-34","w":226,"k":{",":46,".":46,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"Q":{"d":"199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm146,1r47,34r-34,31r-83,-64v-37,-11,-65,-43,-65,-94v0,-96,64,-170,139,-170v168,0,114,240,-4,263","w":266,"k":{",":9,".":9}},"R":{"d":"143,0r-29,-107r-38,0r-21,107r-54,0r50,-256v77,1,174,-14,174,64v0,47,-30,73,-63,76r37,116r-56,0xm82,-146v44,2,90,3,90,-41v0,-36,-41,-30,-76,-30","w":233,"k":{"T":4,"V":4,"Y":9,"\u00dd":9,"\u0178":9}},"S":{"d":"-1,-55r48,-16v0,52,91,47,91,0v0,-18,-9,-24,-52,-44v-41,-19,-56,-38,-56,-68v0,-33,25,-79,98,-79v56,0,81,27,83,54r-49,14v0,-19,-15,-30,-36,-30v-27,0,-42,18,-42,34v0,48,108,35,108,111v0,40,-30,85,-105,85v-40,0,-78,-13,-88,-61","w":219,"k":{",":13,".":13}},"T":{"d":"19,-214r9,-42r194,0r-8,42r-70,0r-42,214r-54,0r42,-214r-71,0","w":200,"k":{"\u00fc":6,"\u00f2":9,"\u00f6":9,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e3":4,"\u00e5":4,"\u00e0":4,"\u00e4":4,"\u00e2":4,",":33,".":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"e":9,"\u00e9":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"-":33,"a":4,"\u00e6":4,"\u00e1":4,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":9,";":9}},"U":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"V":{"d":"207,-256r56,0r-137,256r-69,0r-31,-256r56,0v6,40,14,184,20,208","w":240,"k":{"\u00f6":6,"\u00f4":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e3":9,"\u00e5":9,"\u00e0":9,"\u00e4":9,"\u00e2":9,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,",":33,".":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"e":6,"\u00e9":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f2":6,"\u00f5":6,"-":13,"a":9,"\u00e6":9,"\u00e1":9,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,":":6,";":6}},"W":{"d":"190,0r2,-215r-2,0v-25,81,-55,140,-83,215r-67,0r-10,-256r52,0r0,214r2,0v22,-73,55,-144,81,-214r68,0v1,53,4,133,4,160v0,13,-3,38,-1,54v19,-74,55,-145,81,-214r52,0r-109,256r-70,0","w":346,"k":{",":22,".":22,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"-":9}},"X":{"d":"89,-134r-54,-122r58,0v13,31,20,67,36,95r68,-95r61,0r-100,125r58,131r-58,0v-14,-30,-27,-74,-40,-102v-19,32,-53,71,-77,102r-62,0","w":246},"Y":{"d":"83,-98r-60,-158r57,0r39,113v24,-40,53,-75,79,-113r63,0r-123,158r-19,98r-54,0","w":240,"k":{"\u00f6":20,"O":22,"\u00d8":22,"\u0152":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u00d5":22,",":40,".":40,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,":":20,";":20,"S":9,"\u0160":9}},"Z":{"d":"-6,-47r154,-167r-117,0r8,-42r181,0r-9,46r-157,168r126,0r-9,42r-186,0","w":206},"[":{"d":"-7,44r62,-319r71,0r-5,25r-30,0r-52,268r30,0r-5,26r-71,0","w":113},"\\":{"d":"-1,-262r33,-12r109,280r-34,11","w":140},"]":{"d":"18,18r51,-268r-29,0r5,-25r71,0r-62,319r-72,0r5,-26r31,0","w":113},"^":{"d":"163,-114r-51,-108r-50,108r-35,0r69,-142r33,0r69,142r-35,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"28,-188r50,-92r38,0r-42,92r-46,0","w":106,"k":{"\u2018":29,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"a":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2","w":206},"b":{"d":"83,-156r-19,96v8,16,20,25,38,25v35,0,56,-60,56,-105v0,-55,-55,-46,-75,-16xm0,0r55,-280r52,0v-4,29,-14,61,-16,89v40,-45,120,-45,120,47v0,66,-32,148,-100,148v-21,0,-40,-8,-53,-30r-5,26r-53,0","w":226,"k":{",":13,".":13}},"c":{"d":"129,-71r45,12v-18,40,-45,63,-89,63v-61,0,-80,-45,-80,-83v0,-60,36,-141,111,-141v51,0,71,29,75,60r-46,12v0,-23,-10,-37,-30,-37v-45,0,-58,79,-58,111v0,32,18,41,32,41v24,0,39,-28,40,-38","w":193,"k":{",":13,".":13}},"d":{"d":"137,-59r20,-99v-11,-16,-22,-24,-37,-24v-37,0,-58,61,-58,106v0,51,43,51,75,17xm163,-190r17,-90r53,0r-55,280r-52,0r4,-24v-45,46,-117,41,-120,-51v-3,-101,85,-195,153,-115","w":226},"e":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56","k":{",":13,".":13}},"f":{"d":"10,-161r7,-37r31,0r5,-24v17,-66,62,-73,116,-61r-7,36v-37,-16,-60,12,-61,49r42,0r-8,37r-41,0r-32,161r-52,0r31,-161r-31,0","w":133,"k":{",":22,".":22}},"g":{"d":"229,-215r-6,29r-46,0v39,51,-16,114,-99,103v-4,3,-7,8,-7,12v0,20,105,16,105,71v0,36,-32,73,-109,73v-109,0,-105,-84,-34,-110v-18,-19,-4,-41,21,-53v-66,-33,-26,-137,57,-130v37,3,76,5,118,5xm102,-116v47,2,60,-69,9,-69v-23,0,-44,16,-44,40v0,19,14,29,35,29xm129,11v0,-21,-25,-20,-70,-34v-38,16,-49,64,11,63v46,0,59,-16,59,-29","k":{".":9}},"h":{"d":"0,0r55,-280r52,0r-17,95v27,-23,54,-35,72,-35v23,0,46,14,46,44v0,17,-3,28,-32,176r-52,0v28,-139,30,-144,30,-153v-4,-42,-56,-15,-72,4r-29,149r-53,0","w":226},"i":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm46,-241r7,-39r53,0r-8,39r-52,0","w":100},"j":{"d":"-52,69r10,-40v23,9,37,-4,41,-29r42,-215r52,0r-42,219v-14,68,-49,75,-103,65xm46,-241r7,-39r53,0r-8,39r-52,0","w":100},"k":{"d":"77,-122v29,-25,57,-64,85,-93r64,0r-101,101r64,114r-59,0r-57,-107r-20,107r-53,0r55,-280r52,0"},"l":{"d":"-1,0r54,-280r53,0r-55,280r-52,0","w":100},"m":{"d":"0,0r42,-215r53,0v-1,9,-6,22,-5,30v27,-23,48,-35,66,-35v24,0,41,14,45,38v20,-19,46,-38,74,-38v23,0,46,14,46,44v0,17,-3,28,-32,176r-52,0v28,-139,30,-144,30,-153v0,-10,-3,-23,-21,-23v-14,0,-26,9,-45,25r-30,151r-52,0v28,-139,30,-144,30,-153v-3,-42,-50,-16,-67,4r-29,149r-53,0","w":339},"n":{"d":"0,0r42,-215r53,0v-1,9,-6,22,-5,30v27,-23,54,-35,72,-35v23,0,46,14,46,44v0,17,-3,28,-32,176r-52,0v28,-139,30,-144,30,-153v-4,-42,-56,-15,-72,4r-29,149r-53,0","w":226},"o":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109","w":219,"k":{",":13,".":13}},"p":{"d":"83,-156r-19,99v11,16,22,24,37,24v37,0,57,-61,57,-106v0,-52,-43,-53,-75,-17xm-13,70r55,-285r53,0v-1,8,-6,19,-4,25v39,-48,120,-43,120,50v0,100,-86,193,-153,115r-18,95r-53,0","w":226,"k":{",":13,".":13}},"q":{"d":"137,-59r19,-96v-8,-16,-20,-25,-38,-25v-35,0,-56,59,-56,104v0,55,55,47,75,17xm162,-190r5,-25r53,0r-55,285r-53,0r18,-94v-41,43,-120,45,-120,-47v0,-66,31,-149,99,-149v21,0,40,8,53,30","w":226},"r":{"d":"0,0r42,-215r53,0v-1,10,-6,22,-5,31v19,-22,43,-40,76,-35r-9,47v-31,-4,-54,5,-76,28r-28,144r-53,0","w":146,"k":{",":27,".":27,"-":27}},"s":{"d":"-7,-50r46,-14v0,18,15,32,34,32v27,0,38,-19,38,-31v0,-37,-93,-15,-93,-86v0,-37,32,-71,87,-71v44,0,68,24,75,50r-45,13v-3,-14,-11,-27,-32,-27v-24,0,-34,16,-34,29v0,35,96,15,96,83v0,40,-31,76,-93,76v-47,0,-69,-20,-79,-54","w":186,"k":{",":6,".":6}},"t":{"d":"54,-198r9,-48r55,-21r-14,69r51,0r-7,37r-51,0v-19,98,-19,102,-19,107v-1,23,31,21,47,14r-7,38v-33,11,-98,10,-93,-42v0,-10,1,-15,22,-117r-34,0r8,-37r33,0","w":146},"u":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4","w":219},"v":{"d":"43,0r-27,-215r54,0r14,167v19,-61,51,-111,76,-167r55,0r-110,215r-62,0","w":200,"k":{",":27,".":27}},"w":{"d":"148,-215r64,0r7,167v19,-59,45,-111,67,-167r53,0r-98,215r-66,0v-6,-119,-6,-128,-6,-168r-2,0v-17,63,-44,111,-67,168r-64,0r-20,-215r52,0v7,59,5,116,11,167v19,-61,46,-111,69,-167","w":326,"k":{",":27,".":27}},"x":{"d":"68,-115r-42,-100r55,0v10,23,16,51,26,73v15,-26,34,-49,51,-73r59,0r-81,101r43,114r-56,0r-27,-84v-18,30,-41,56,-61,84r-59,0","w":206},"y":{"d":"51,-4r-35,-211r55,0v5,53,14,106,13,163v12,-20,18,-45,29,-65r49,-98r55,0r-128,238v-24,46,-60,59,-110,44r11,-39v28,11,48,2,61,-32","w":200,"k":{",":33,".":33}},"z":{"d":"-10,-38r131,-143v-31,4,-66,1,-100,2r7,-36r163,0r-7,38r-132,142v34,-2,71,0,107,-1r-6,36r-170,0","w":186},"{":{"d":"-2,-101r5,-28v13,0,34,-11,39,-36r12,-62v14,-45,39,-51,86,-48r-5,26v-78,-15,-26,129,-98,133r0,2v9,0,27,11,27,31v0,15,-14,69,-14,84v-1,21,17,15,34,16r-6,27v-37,3,-68,-2,-68,-38v0,-32,36,-107,-12,-107","w":113},"|":{"d":"23,90r0,-360r34,0r0,360r-34,0","w":79},"}":{"d":"26,-249r5,-26v37,-2,68,1,68,37v0,32,-36,107,12,107r-5,28v-13,0,-34,11,-39,36r-12,62v-14,45,-39,53,-86,49r5,-27v78,14,27,-127,98,-134v-9,0,-27,-12,-27,-32v0,-15,14,-69,14,-84v1,-20,-16,-15,-33,-16","w":113},"~":{"d":"141,-63v-23,1,-57,-23,-77,-24v-12,0,-21,9,-32,26r-13,-28v9,-17,23,-31,45,-31v23,0,57,24,77,25v12,0,21,-9,32,-26r13,27v-9,17,-23,31,-45,31","w":216},"\u00a1":{"d":"1,41r41,-175r38,0r-27,175r-52,0xm45,-168r9,-47r46,0r-9,47r-46,0","w":119},"\u00a2":{"d":"71,-52r67,-131v-62,-12,-76,84,-67,131xm155,-216r14,-27r14,5r-14,28v21,11,30,30,33,50r-46,12v0,-10,-3,-18,-7,-24r-68,133v25,21,60,-17,59,-32r44,12v-20,50,-64,74,-122,58r-14,27r-14,-4r15,-30v-25,-16,-34,-45,-34,-71v-1,-68,49,-162,140,-137"},"\u00a3":{"d":"32,-36r15,-80r-27,0r6,-32r28,0v7,-65,30,-114,99,-114v39,0,65,20,69,52r-46,11v-2,-17,-11,-27,-28,-27v-29,0,-38,27,-47,78r55,0r-6,32r-55,0r-15,80r97,0r-7,36r-171,0r7,-36r26,0"},"\u2044":{"d":"-60,9r152,-276r28,0r-152,276r-28,0","w":60},"\u00a5":{"d":"66,-73r5,-24r-53,0r4,-23r41,0r-45,-136r58,0r29,117r71,-117r63,0r-99,136r44,0r-4,23r-57,0r-4,24r56,0r-4,23r-57,0r-9,50r-52,0r9,-50r-53,0r4,-23r53,0"},"\u0192":{"d":"-10,40r19,-31v22,11,35,6,43,-27r26,-110r-41,0r6,-29r42,0v8,-51,23,-105,80,-105v17,0,31,4,39,10r-20,30v-39,-25,-45,35,-53,65r42,0r-6,29r-43,0v-19,77,-26,214,-134,168"},"\u00a7":{"d":"-1,1r37,-17v3,40,77,42,77,2v0,-36,-91,-31,-91,-86v0,-31,23,-49,50,-57v-50,-37,-24,-105,59,-105v37,0,59,18,67,40r-37,18v-8,-32,-69,-37,-69,1v0,35,92,34,92,91v0,31,-25,48,-47,53v46,33,15,106,-65,106v-35,0,-61,-11,-73,-46xm143,-102v0,-15,-8,-22,-50,-43v-19,7,-31,18,-31,32v0,13,5,18,55,43v17,-8,26,-18,26,-32"},"\u00a4":{"d":"160,-200r21,-21r20,19r-21,22v21,27,21,75,0,102r21,21r-20,20r-21,-21v-29,24,-78,24,-107,0r-21,21r-20,-20r21,-21v-21,-27,-21,-75,0,-102r-21,-22r20,-19r21,21v29,-25,78,-25,107,0xm161,-129v0,-32,-22,-57,-54,-57v-32,0,-55,25,-55,57v0,32,23,57,55,57v32,0,54,-25,54,-57"},"'":{"d":"50,-188r0,-92r38,0r0,92r-38,0","w":106},"\u201c":{"d":"26,-188r50,-92r38,0r-42,92r-46,0xm104,-188r50,-92r38,0r-42,92r-46,0","w":180,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"\u00ab":{"d":"5,-115r73,-79r27,22r-55,63r32,70r-32,17xm91,-115r73,-79r26,22r-54,63r32,70r-32,17","w":193},"\u2039":{"d":"5,-115r73,-79r27,22r-55,63r32,70r-32,17","w":113},"\u203a":{"d":"55,-107r-32,-70r32,-17r45,93r-73,79r-27,-22","w":113},"\u2013":{"d":"-8,-91r8,-34r180,0r-8,34r-180,0","w":180},"\u2020":{"d":"93,-187r14,-69r50,0r-14,69r66,0r-8,41r-66,0r-36,191r-51,0r37,-191r-66,0r8,-41r66,0"},"\u2021":{"d":"70,-58r19,-96r-63,0r7,-39r63,0r13,-63r46,0r-12,63r63,0r-8,39r-63,0r-19,96r64,0r-8,40r-63,0r-13,63r-46,0r13,-63r-64,0r8,-40r63,0"},"\u00b7":{"d":"24,-110v0,-14,12,-25,26,-25v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25","w":106},"\u00b6":{"d":"120,41r52,-271r-39,0r-52,271r-35,0r28,-146v-41,0,-62,-24,-62,-61v0,-45,33,-90,97,-90r103,0r-58,297r-34,0"},"\u2022":{"d":"26,-128v0,-35,29,-64,64,-64v35,0,64,29,64,64v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":180},"\u201a":{"d":"-15,44r42,-92r46,0r-50,92r-38,0","w":106},"\u201e":{"d":"-24,44r42,-92r46,0r-50,92r-38,0xm54,44r42,-92r46,0r-50,92r-38,0","w":180},"\u201d":{"d":"29,-188r42,-92r46,0r-50,92r-38,0xm107,-188r42,-92r46,0r-50,92r-38,0","w":180,"k":{" ":13}},"\u00bb":{"d":"50,-107r-32,-70r32,-17r45,93r-73,79r-27,-22xm136,-107r-32,-70r31,-17r45,93r-73,79r-26,-22","w":193},"\u2026":{"d":"32,0r10,-48r46,0r-10,48r-46,0xm152,0r10,-48r46,0r-10,48r-46,0xm272,0r10,-48r46,0r-10,48r-46,0","w":360},"\u2030":{"d":"104,-219v0,-12,-6,-20,-19,-20v-27,0,-35,50,-35,68v0,12,6,21,19,21v27,0,35,-51,35,-69xm22,4r190,-266r30,0r-189,266r-31,0xm216,-87v0,-12,-6,-21,-19,-21v-27,0,-35,51,-35,69v0,12,6,20,19,20v27,0,35,-50,35,-68xm18,-175v0,-37,20,-87,71,-87v27,0,47,16,47,47v0,37,-19,88,-70,88v-28,0,-48,-17,-48,-48xm130,-44v0,-37,20,-87,71,-87v27,0,47,17,47,48v0,37,-20,87,-71,87v-28,0,-47,-17,-47,-48xm261,-44v0,-37,20,-87,71,-87v27,0,47,17,47,48v0,37,-19,87,-70,87v-28,0,-48,-17,-48,-48xm347,-87v0,-12,-6,-21,-19,-21v-27,0,-35,51,-35,69v0,12,6,20,19,20v27,0,35,-50,35,-68","w":393},"\u00bf":{"d":"86,-135r39,0v-6,42,-13,49,-34,64v-36,26,-42,39,-42,54v0,15,12,27,31,27v22,0,34,-17,37,-33r44,9v-6,30,-36,61,-85,61v-40,0,-73,-20,-73,-60v0,-22,12,-46,35,-61v43,-28,44,-35,48,-61xm89,-168r9,-47r46,0r-9,47r-46,0","w":193},"`":{"d":"69,-236r-56,-52r58,0r35,52r-37,0","w":100},"\u00b4":{"d":"35,-236r40,-52r59,0r-62,52r-37,0","w":100},"\u02c6":{"d":"99,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":100},"\u02dc":{"d":"35,-239r-24,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-62,45,-92,30v-7,0,-12,5,-16,16","w":100},"\u00af":{"d":"17,-249r5,-27r113,0r-5,27r-113,0","w":100},"\u02d8":{"d":"18,-288r23,0v2,41,71,32,76,0r24,0v-5,57,-122,81,-123,0","w":100},"\u02d9":{"d":"46,-241r7,-39r53,0r-8,39r-52,0","w":100},"\u00a8":{"d":"10,-241r7,-39r53,0r-8,39r-52,0xm85,-241r8,-39r52,0r-7,39r-53,0","w":100},"\u02da":{"d":"40,-273v0,-21,17,-37,38,-37v21,0,38,16,38,37v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38xm98,-273v0,-11,-9,-19,-20,-19v-11,0,-19,8,-19,19v0,11,8,20,19,20v11,0,20,-9,20,-20","w":100},"\u00b8":{"d":"21,48v1,-20,-30,-3,-34,-17r25,-31r19,0r-18,22v20,-5,39,7,38,24v4,31,-60,42,-86,23r9,-15v13,6,45,14,47,-6","w":100},"\u02dd":{"d":"-3,-236r40,-52r59,0r-62,52r-37,0xm72,-236r41,-52r59,0r-62,52r-38,0","w":100},"\u02db":{"d":"39,-11r27,0v-31,21,-42,34,-42,45v-1,17,28,16,41,7r-5,24v-31,16,-77,16,-77,-17v0,-21,18,-38,56,-59","w":100},"\u02c7":{"d":"73,-257r33,-31r40,0r-51,52r-47,0r-31,-52r34,0","w":100},"\u2014":{"d":"-8,-91r8,-34r360,0r-8,34r-360,0","w":360},"\u00c6":{"d":"158,0r12,-63r-84,0r-45,63r-62,0r192,-256r181,0r-8,41r-94,0r-12,63r89,0r-8,41r-89,0r-14,70r99,0r-8,41r-149,0xm177,-102r23,-122r-86,122r63,0","w":346},"\u00aa":{"d":"10,-161v0,-41,48,-53,91,-51v5,-14,0,-31,-15,-27v-13,0,-24,7,-28,18r-28,-8v9,-41,108,-48,108,2v0,30,-18,81,-18,96r-35,0r3,-18v-19,15,-30,21,-44,21v-21,0,-34,-15,-34,-33xm91,-168r6,-25v-26,0,-52,7,-52,26v0,22,32,12,46,-1","w":134},"\u0141":{"d":"85,-153r73,-42r-6,29r-72,42r-16,82r102,0r-9,42r-156,0r17,-89r-26,16r5,-29r27,-15r27,-139r54,0","w":186,"k":{"T":33,"V":34,"W":27,"y":9,"\u00fd":9,"\u00ff":9,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":54,"\u2019":46}},"\u00d8":{"d":"67,-75r126,-118v-7,-18,-22,-27,-44,-27v-53,-2,-91,71,-82,145xm198,-177r-126,117v8,16,22,27,41,27v63,-2,91,-79,85,-144xm233,-230r29,-26r9,10r-29,28v41,99,-18,224,-135,224v-28,0,-55,-9,-73,-30r-26,24r-10,-11r27,-25v-47,-98,35,-226,125,-226v39,0,66,12,83,32","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u0152":{"d":"169,-260r75,4r101,0r-8,41r-94,0r-12,63r88,0r-8,41r-88,0r-14,70r99,0r-8,41r-172,0v-68,0,-114,-33,-114,-105v0,-77,55,-155,155,-155xm158,-42r33,-173v-78,-16,-120,49,-120,104v0,61,34,69,87,69","w":339,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00ba":{"d":"17,-177v0,-41,26,-85,76,-85v30,0,55,17,55,47v0,42,-25,87,-77,87v-37,0,-54,-24,-54,-49xm114,-218v0,-13,-10,-21,-23,-21v-21,0,-40,24,-40,64v0,16,10,24,21,24v28,0,42,-35,42,-67","w":138},"\u00e6":{"d":"-1,-51v0,-65,71,-87,141,-84v11,-24,-3,-50,-26,-50v-21,0,-37,16,-43,34r-43,-14v17,-36,44,-55,91,-55v33,0,50,12,60,32v39,-55,141,-40,141,51v0,13,-3,33,-6,41r-133,0v-7,31,2,64,30,64v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-39,0,-63,-14,-72,-39v-38,47,-138,59,-138,-16xm187,-131r83,0v6,-26,-7,-53,-32,-53v-32,0,-47,37,-51,53xm126,-62r9,-40v-42,0,-85,8,-85,42v9,36,48,24,76,-2","w":333},"\u0131":{"d":"-1,0r42,-215r52,0r-42,215r-52,0","w":100},"\u0142":{"d":"88,-189r29,-18r-6,29r-29,18r-31,160r-52,0r24,-123r-29,18r6,-29r28,-18r25,-128r53,0","w":100},"\u00f8":{"d":"155,-145r-95,88v5,15,18,24,31,24v42,0,64,-57,64,-112xm187,-194r27,-26r10,11r-28,26v33,79,-16,188,-108,187v-30,0,-52,-10,-65,-26r-27,25r-10,-11r29,-26v-32,-80,17,-185,107,-186v25,0,47,8,65,26xm57,-74r94,-87v-5,-15,-18,-21,-33,-21v-44,0,-61,64,-61,108","w":219,"k":{",":13,".":13}},"\u0153":{"d":"155,-145v0,-22,-16,-37,-37,-37v-44,0,-61,65,-61,109v0,27,17,40,34,40v42,0,64,-59,64,-112xm5,-77v0,-68,40,-143,117,-143v37,0,58,13,68,35v42,-64,150,-35,150,48v0,13,-3,33,-6,43r-137,0v-8,31,6,62,34,62v18,0,40,-16,46,-32r42,14v-23,55,-124,80,-158,20v-17,21,-45,34,-73,34v-58,0,-83,-39,-83,-81xm204,-128r85,0v8,-29,-6,-56,-32,-56v-32,0,-49,38,-53,56","w":353,"k":{",":13,".":13}},"\u00df":{"d":"74,-4r15,-36v39,16,67,-19,67,-57v0,-23,-20,-37,-49,-34r7,-37v35,3,52,-20,52,-51v0,-18,-12,-27,-30,-27v-26,0,-36,18,-42,47r-39,199r-52,0r38,-198v10,-51,40,-86,98,-86v50,0,76,26,76,61v0,45,-36,63,-62,72v37,9,52,27,52,57v0,40,-28,97,-93,97v-12,0,-30,-4,-38,-7","w":226,"k":{",":6,".":6}},"\u00b9":{"d":"22,-220r64,-38r31,0r-30,153r-34,0r24,-120r-42,26","w":139},"\u00ac":{"d":"12,-112r0,-35r182,0r0,108r-35,0r0,-73r-147,0","w":216},"\u00b5":{"d":"120,0v1,-8,6,-19,5,-26v-20,36,-53,38,-72,13r-16,83r-52,0r55,-285r53,0v-28,139,-30,144,-30,153v3,36,62,29,69,-4r30,-149r52,0r-42,215r-52,0","w":219},"\u2122":{"d":"248,-159r37,-97r49,0r0,151r-32,0r-1,-110r-41,110r-24,0r-41,-110r0,110r-33,0r0,-151r49,0xm66,-105r0,-125r-44,0r0,-26r121,0r0,26r-43,0r0,125r-34,0","w":360},"\u00d0":{"d":"31,-148r20,-108r87,0v71,0,109,39,109,104v0,89,-60,152,-147,152r-99,0r25,-125r-27,0r4,-23r28,0xm80,-125r-16,84v80,9,121,-25,126,-112v3,-50,-37,-66,-93,-61r-12,66r54,0r-4,23r-55,0","w":259,"k":{"V":4,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13}},"\u00bd":{"d":"63,9r152,-276r28,0r-152,276r-28,0xm17,-220r64,-38r31,0r-30,153r-34,0r24,-120r-42,26xm172,0r5,-23v90,-69,98,-78,98,-93v0,-9,-6,-16,-21,-16v-18,0,-27,13,-27,23r-30,-6v2,-52,110,-60,112,-3v1,25,-16,38,-85,93r67,0r-6,25r-113,0","w":320},"\u00b1":{"d":"85,-132r0,-50r35,0r0,50r74,0r0,35r-74,0r0,50r-35,0r0,-50r-73,0r0,-35r73,0xm12,0r0,-35r182,0r0,35r-182,0","w":216},"\u00de":{"d":"0,0r50,-256r54,0r-7,36v66,-6,123,12,120,68v-3,81,-67,100,-151,93r-12,59r-54,0xm72,-98v49,3,88,0,93,-48v3,-29,-39,-38,-77,-34","w":226},"\u00bc":{"d":"179,-54r86,-100r37,0r-20,106r20,0r-5,24r-20,0r-5,24r-32,0r4,-24r-71,0xm249,-48v3,-22,15,-51,13,-70v-17,26,-38,46,-57,70r44,0xm63,9r152,-276r28,0r-152,276r-28,0xm17,-220r64,-38r31,0r-30,153r-34,0r24,-120r-42,26","w":320},"\u00f7":{"d":"12,-74r0,-34r182,0r0,34r-182,0xm73,-166v0,-16,14,-29,30,-29v16,0,29,13,29,29v0,16,-13,30,-29,30v-16,0,-30,-14,-30,-30xm73,-17v0,-16,14,-29,30,-29v16,0,29,13,29,29v0,16,-13,30,-29,30v-16,0,-30,-14,-30,-30","w":216},"\u00a6":{"d":"23,63r0,-126r34,0r0,126r-34,0xm23,-117r0,-126r34,0r0,126r-34,0","w":79},"\u00b0":{"d":"30,-211v0,-28,23,-51,51,-51v28,0,52,23,52,51v0,28,-24,52,-52,52v-28,0,-51,-24,-51,-52xm110,-211v0,-16,-13,-28,-29,-28v-16,0,-28,12,-28,28v0,16,12,28,28,28v16,0,29,-12,29,-28","w":144},"\u00fe":{"d":"83,-156r-19,99v11,16,22,24,37,24v37,0,57,-61,57,-106v0,-52,-43,-53,-75,-17xm-13,70r68,-350r52,0r-16,90v39,-48,120,-43,120,50v0,100,-86,193,-153,115r-18,95r-53,0","w":226,"k":{",":13,".":13}},"\u00be":{"d":"183,-54r87,-100r36,0r-20,106r20,0r-5,24r-20,0r-5,24r-32,0r5,-24r-72,0xm253,-48v3,-22,15,-51,13,-70v-16,27,-38,46,-56,70r43,0xm81,9r151,-276r28,0r-151,276r-28,0xm11,-143r33,-6v0,13,5,24,23,24v18,0,28,-14,28,-28v1,-19,-17,-23,-35,-20r4,-24v20,0,44,-2,44,-25v0,-26,-45,-19,-47,1r-29,-8v11,-25,36,-33,58,-33v26,0,52,10,52,37v0,24,-22,36,-42,39v19,5,30,13,30,32v0,27,-25,52,-62,52v-35,0,-54,-15,-57,-41","w":320},"\u00b2":{"d":"4,-105r4,-23v90,-69,98,-78,98,-93v0,-9,-6,-16,-21,-16v-18,0,-27,13,-27,23r-30,-6v2,-51,110,-59,112,-3v1,25,-16,38,-85,93r67,0r-5,25r-113,0","w":139},"\u00ae":{"d":"176,-53r-37,-64r-19,0r0,64r-29,0r0,-150v52,1,115,-10,115,44v0,27,-17,39,-36,41r37,65r-31,0xm120,-140v0,0,60,3,56,-20v3,-22,-32,-20,-56,-20r0,40xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm246,-128v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102v0,56,46,102,102,102v56,0,102,-46,102,-102","w":288},"\u2212":{"d":"12,-74r0,-34r182,0r0,34r-182,0","w":216},"\u00f0":{"d":"152,-125v0,-26,-10,-44,-38,-44v-40,0,-59,62,-59,97v0,26,11,42,37,42v44,0,60,-68,60,-95xm136,-266r43,-20r13,18r-40,19v83,76,61,253,-65,253v-59,0,-82,-37,-82,-82v0,-71,61,-151,135,-114v-7,-14,-16,-27,-28,-39r-43,20r-14,-17r40,-19v-6,-6,-14,-12,-22,-18r36,-23v9,7,19,14,27,22","w":219},"\u00d7":{"d":"102,-115r60,-60r24,24r-60,60r60,60r-24,24r-59,-60r-60,60r-24,-24r60,-60r-60,-60r24,-24","w":216},"\u00b3":{"d":"5,-143r33,-6v0,13,5,24,23,24v18,0,28,-14,28,-28v1,-19,-17,-23,-35,-20r5,-24v20,0,43,-2,43,-25v0,-26,-45,-19,-47,1r-28,-8v11,-25,35,-33,57,-33v26,0,52,10,52,37v0,24,-22,36,-42,39v19,5,30,13,30,32v0,27,-24,52,-61,52v-35,0,-55,-15,-58,-41","w":139},"\u00a9":{"d":"185,-107r30,0v-6,36,-34,57,-67,57v-48,0,-75,-34,-75,-79v0,-85,129,-111,140,-24r-28,0v-17,-50,-84,-28,-80,24v-6,53,72,70,80,22xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm246,-128v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102v0,56,46,102,102,102v56,0,102,-46,102,-102","w":288},"\u00c1":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm122,-277r40,-52r59,0r-62,52r-37,0","w":259},"\u00c2":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm181,-277r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":259},"\u00c4":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm92,-282r7,-39r53,0r-8,39r-52,0xm167,-282r8,-39r53,0r-8,39r-53,0","w":259},"\u00c0":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm149,-277r-56,-52r57,0r36,52r-37,0","w":259},"\u00c5":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm122,-305v0,-21,17,-37,38,-37v21,0,38,16,38,37v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38xm180,-305v0,-11,-9,-19,-20,-19v-11,0,-19,8,-19,19v0,11,8,20,19,20v11,0,20,-9,20,-20","w":259},"\u00c3":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm114,-280r-23,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r23,0v-4,60,-61,44,-91,30v-7,0,-13,5,-17,16","w":259},"\u00c7":{"d":"107,48v2,-20,-30,-3,-34,-17r21,-26v-61,-7,-83,-54,-83,-99v0,-48,29,-168,139,-168v57,0,87,28,93,72r-50,10v-4,-27,-21,-41,-44,-41v-67,0,-82,100,-82,129v0,34,16,57,48,57v28,0,45,-14,59,-45r48,11v-17,50,-56,75,-109,75v-3,5,-12,12,-13,16v20,-5,38,7,38,24v0,31,-60,42,-87,23r9,-15v13,6,45,14,47,-6","w":246,"k":{",":9,".":9}},"\u00c9":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0xm108,-277r40,-52r59,0r-62,52r-37,0"},"\u00ca":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0xm163,-277r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0"},"\u00cb":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0xm71,-282r7,-39r53,0r-8,39r-52,0xm147,-282r7,-39r53,0r-8,39r-52,0"},"\u00c8":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0xm126,-277r-56,-52r57,0r36,52r-37,0"},"\u00cd":{"d":"1,0r50,-256r54,0r-50,256r-54,0xm49,-277r40,-52r59,0r-62,52r-37,0","w":106},"\u00ce":{"d":"1,0r50,-256r54,0r-50,256r-54,0xm104,-277r-20,-31r-32,31r-42,0r52,-52r47,0r32,52r-37,0","w":106},"\u00cf":{"d":"1,0r50,-256r54,0r-50,256r-54,0xm15,-282r8,-39r52,0r-7,39r-53,0xm91,-282r7,-39r53,0r-8,39r-52,0","w":106},"\u00cc":{"d":"1,0r50,-256r54,0r-50,256r-54,0xm72,-277r-55,-52r57,0r35,52r-37,0","w":106},"\u00d1":{"d":"153,0v-22,-67,-48,-125,-64,-199r-2,0v-7,71,-23,133,-35,199r-51,0r50,-256r68,0r54,165v6,11,3,28,11,36r37,-201r51,0r-50,256r-69,0xm121,-280r-23,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r23,0v-4,60,-61,44,-91,30v-7,0,-13,5,-17,16","w":273,"k":{",":9,".":9}},"\u00d3":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm129,-277r40,-52r59,0r-62,52r-37,0","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00d4":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm184,-277r-20,-31r-32,31r-42,0r51,-52r48,0r32,52r-37,0","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00d6":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm93,-282r7,-39r53,0r-8,39r-52,0xm168,-282r8,-39r53,0r-8,39r-53,0","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00d2":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm152,-277r-56,-52r58,0r35,52r-37,0","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00d5":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm118,-280r-24,0v5,-60,61,-45,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-61,45,-91,30v-7,0,-13,5,-17,16","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u0160":{"d":"-1,-55r48,-16v0,52,91,47,91,0v0,-18,-9,-24,-52,-44v-41,-19,-56,-38,-56,-68v0,-33,25,-79,98,-79v56,0,81,27,83,54r-49,14v0,-19,-15,-30,-36,-30v-27,0,-42,18,-42,34v0,48,108,35,108,111v0,40,-30,85,-105,85v-40,0,-78,-13,-88,-61xm133,-298r33,-31r40,0r-50,52r-48,0r-31,-52r35,0","w":219,"k":{",":13,".":13}},"\u00da":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67xm122,-277r40,-52r60,0r-63,52r-37,0","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"\u00db":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67xm178,-277r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"\u00dc":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67xm89,-282r7,-39r53,0r-8,39r-52,0xm164,-282r8,-39r52,0r-7,39r-53,0","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"\u00d9":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67xm145,-277r-55,-52r57,0r36,52r-38,0","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"\u00dd":{"d":"83,-98r-60,-158r57,0r39,113v24,-40,53,-75,79,-113r63,0r-123,158r-19,98r-54,0xm116,-277r40,-52r59,0r-62,52r-37,0","w":240,"k":{"O":22,"\u00d8":22,"\u0152":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u00d5":22,",":40,".":40,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,":":20,";":20,"S":9,"\u0160":9}},"\u0178":{"d":"83,-98r-60,-158r57,0r39,113v24,-40,53,-75,79,-113r63,0r-123,158r-19,98r-54,0xm80,-282r7,-39r53,0r-8,39r-52,0xm156,-282r7,-39r53,0r-8,39r-52,0","w":240,"k":{"O":22,"\u00d8":22,"\u0152":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u00d5":22,",":40,".":40,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,":":20,";":20,"S":9,"\u0160":9}},"\u017d":{"d":"-6,-47r154,-167r-117,0r8,-42r181,0r-9,46r-157,168r126,0r-9,42r-186,0xm126,-298r33,-31r40,0r-50,52r-48,0r-31,-52r35,0","w":206},"\u00e1":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm88,-236r40,-52r60,0r-63,52r-37,0","w":206},"\u00e2":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm152,-236r-20,-31r-32,31r-42,0r51,-52r48,0r32,52r-37,0","w":206},"\u00e4":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm63,-241r8,-39r52,0r-7,39r-53,0xm139,-241r7,-39r53,0r-8,39r-52,0","w":206},"\u00e0":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm122,-236r-55,-52r57,0r35,52r-37,0","w":206},"\u00e5":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm94,-273v0,-21,16,-37,37,-37v21,0,38,16,38,37v0,21,-17,38,-38,38v-21,0,-37,-17,-37,-38xm151,-273v0,-11,-9,-19,-20,-19v-11,0,-19,8,-19,19v0,11,8,20,19,20v11,0,20,-9,20,-20","w":206},"\u00e3":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm88,-239r-24,0v5,-60,61,-45,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-61,45,-91,30v-7,0,-13,5,-17,16","w":206},"\u00e7":{"d":"49,31r22,-27v-50,-7,-66,-48,-66,-83v0,-60,36,-141,111,-141v51,0,71,29,75,60r-46,12v0,-23,-10,-37,-30,-37v-45,0,-58,79,-58,111v0,32,18,41,32,41v24,0,39,-28,40,-38r45,12v-17,39,-45,63,-84,63r-15,18v20,-5,39,7,38,24v4,31,-60,42,-86,23r9,-15v13,7,45,13,47,-6v2,-12,-19,-15,-27,-9","w":193,"k":{",":13,".":13}},"\u00e9":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56xm91,-236r41,-52r59,0r-62,52r-38,0","k":{",":13,".":13}},"\u00ea":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56xm156,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","k":{",":13,".":13}},"\u00eb":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56xm67,-241r7,-39r53,0r-8,39r-52,0xm142,-241r8,-39r52,0r-7,39r-53,0","k":{",":13,".":13}},"\u00e8":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56xm126,-236r-56,-52r57,0r36,52r-37,0","k":{",":13,".":13}},"\u00ed":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm40,-236r40,-52r60,0r-63,52r-37,0","w":100},"\u00ee":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm99,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":100},"\u00ef":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm10,-241r7,-39r53,0r-8,39r-52,0xm85,-241r8,-39r52,0r-7,39r-53,0","w":100},"\u00ec":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm60,-236r-56,-52r58,0r35,52r-37,0","w":100},"\u00f1":{"d":"0,0r42,-215r53,0v-1,9,-6,22,-5,30v27,-23,54,-35,72,-35v23,0,46,14,46,44v0,17,-3,28,-32,176r-52,0v28,-139,30,-144,30,-153v-4,-42,-56,-15,-72,4r-29,149r-53,0xm94,-239r-24,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-61,45,-91,30v-7,0,-13,5,-17,16","w":226},"\u00f3":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm95,-236r40,-52r59,0r-62,52r-37,0","w":219,"k":{",":13,".":13}},"\u00f4":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm159,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":219,"k":{",":13,".":13}},"\u00f6":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm70,-241r7,-39r53,0r-8,39r-52,0xm145,-241r8,-39r53,0r-8,39r-53,0","w":219,"k":{",":13,".":13}},"\u00f2":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm129,-236r-56,-52r58,0r35,52r-37,0","w":219,"k":{",":13,".":13}},"\u00f5":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm95,-239r-24,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-61,45,-91,30v-7,0,-13,5,-17,16","w":219,"k":{",":13,".":13}},"\u0161":{"d":"-7,-50r46,-14v0,18,15,32,34,32v27,0,38,-19,38,-31v0,-37,-93,-15,-93,-86v0,-37,32,-71,87,-71v44,0,68,24,75,50r-45,13v-3,-14,-11,-27,-32,-27v-24,0,-34,16,-34,29v0,35,96,15,96,83v0,40,-31,76,-93,76v-47,0,-69,-20,-79,-54xm117,-257r33,-31r40,0r-51,52r-48,0r-31,-52r35,0","w":186,"k":{",":6,".":6}},"\u00fa":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4xm95,-236r40,-52r59,0r-62,52r-37,0","w":219},"\u00fb":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4xm159,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":219},"\u00fc":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4xm68,-241r7,-39r53,0r-8,39r-52,0xm143,-241r8,-39r52,0r-7,39r-53,0","w":219},"\u00f9":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4xm129,-236r-56,-52r58,0r35,52r-37,0","w":219},"\u00fd":{"d":"51,-4r-35,-211r55,0v5,53,14,106,13,163v12,-20,18,-45,29,-65r49,-98r55,0r-128,238v-24,46,-60,59,-110,44r11,-39v28,11,48,2,61,-32xm85,-236r40,-52r59,0r-62,52r-37,0","w":200,"k":{",":33,".":33}},"\u00ff":{"d":"51,-4r-35,-211r55,0v5,53,14,106,13,163v12,-20,18,-45,29,-65r49,-98r55,0r-128,238v-24,46,-60,59,-110,44r11,-39v28,11,48,2,61,-32xm60,-241r7,-39r53,0r-8,39r-52,0xm135,-241r8,-39r52,0r-7,39r-53,0","w":200,"k":{",":33,".":33}},"\u017e":{"d":"-10,-38r131,-143v-31,4,-66,1,-100,2r7,-36r163,0r-7,38r-132,142v34,-2,71,0,107,-1r-6,36r-170,0xm117,-257r33,-31r40,0r-51,52r-48,0r-31,-52r35,0","w":186},"\u2206":{"d":"-17,0r5,-26r140,-237r51,0r37,237r-5,26r-228,0xm35,-35r136,0r-20,-117v-4,-18,-3,-54,-10,-66v-6,13,-22,42,-33,61","w":249},"\u2126":{"d":"-5,-35v17,-1,39,2,54,-1v-20,-21,-36,-56,-26,-105v14,-66,74,-120,142,-120v73,0,100,61,88,118v-10,50,-43,86,-72,108r54,0r-7,35r-99,0r6,-26v29,-16,61,-51,73,-109v10,-46,-5,-91,-51,-91v-44,0,-81,40,-92,93v-12,53,4,92,27,107r-5,26r-99,0","w":272},"\u03bc":{"d":"120,0v1,-8,6,-19,5,-26v-20,36,-53,38,-72,13r-16,83r-52,0r55,-285r53,0v-28,139,-30,144,-30,153v3,36,62,29,69,-4r30,-149r52,0r-42,215r-52,0","w":219},"\u03c0":{"d":"222,-157r-28,0v-8,45,-27,112,-28,157r-42,0v-4,-40,20,-114,27,-157r-57,0v-11,42,-37,121,-58,157r-42,0v22,-41,47,-114,57,-157v-19,0,-30,1,-39,4r1,-28v46,-22,152,-9,220,-12","w":225},"\u20ac":{"d":"159,-262v-63,0,-111,47,-128,93r-18,0r-15,23r26,0v-2,7,-4,14,-5,22v-21,-3,-21,14,-30,23r27,0v-2,23,0,50,11,68v38,60,106,40,158,18r10,-51v-19,23,-94,46,-115,14v-10,-15,-8,-37,-7,-49r67,0r15,-23r-79,0v1,-8,3,-15,4,-22r90,0r15,-23r-97,0v6,-22,35,-54,64,-52v24,2,36,6,54,21r28,-43v-19,-11,-49,-19,-75,-19"},"\u2113":{"d":"153,-66r15,18v-27,37,-58,51,-88,51v-46,-1,-58,-30,-54,-66v-7,5,-15,10,-23,15r-6,-23v13,-9,24,-16,36,-25r20,-94v14,-67,50,-93,85,-93v36,0,47,29,39,64v-10,45,-48,86,-104,130v-9,27,-3,58,23,58v22,0,43,-18,57,-35xm134,-253v-26,-7,-47,88,-53,125v34,-30,62,-64,68,-92v4,-20,1,-33,-15,-33","w":192},"\u212e":{"d":"95,-51v36,64,148,61,189,3r22,0v-26,31,-70,52,-118,52v-81,0,-148,-60,-148,-133v0,-74,67,-133,148,-133v83,1,151,59,149,137r-242,1r0,73xm279,-216v-45,-52,-149,-52,-184,10v1,24,-3,54,2,74r184,0v2,-25,3,-62,-2,-84","w":349},"\u2202":{"d":"62,-237r-7,-32v14,-9,38,-21,73,-21v55,0,93,48,73,141v-19,89,-70,152,-137,152v-53,0,-67,-47,-59,-87v12,-58,57,-96,102,-96v32,0,47,22,51,32v17,-48,2,-107,-42,-107v-24,0,-42,10,-54,18xm47,-83v-5,28,5,52,29,51v31,0,59,-42,71,-80v-20,-65,-90,-24,-100,29","w":215},"\u220f":{"d":"289,-219r-40,0r0,254r-42,0r0,-254r-89,0r0,254r-42,0r0,-254r-40,0r0,-38r253,0r0,38","w":298},"\u2211":{"d":"231,36r-196,0r0,-28r95,-119r-91,-117r0,-29r186,0r0,36v-41,2,-90,-4,-127,2r80,102r-88,113r141,0r0,40","w":238},"\u2219":{"d":"24,-110v0,-14,12,-25,26,-25v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25","w":106},"\u221a":{"d":"253,-307r-85,360r-35,0r-57,-164r-28,11r-8,-24r61,-24r42,123v4,11,3,24,8,30r72,-312r30,0","w":250},"\u221e":{"d":"224,-167v33,0,60,24,57,61v-6,77,-88,84,-127,20v-19,23,-40,43,-70,43v-31,0,-58,-25,-58,-61v0,-37,26,-63,61,-63v28,0,49,18,69,42v17,-19,35,-42,68,-42xm51,-104v0,21,14,37,37,37v22,0,39,-19,53,-36v-16,-21,-30,-41,-55,-41v-22,0,-35,17,-35,40xm221,-144v-23,0,-41,25,-54,38v23,28,36,39,55,39v22,0,34,-20,34,-37v0,-23,-14,-40,-35,-40","w":298},"\u222b":{"d":"79,-219v0,-71,28,-110,86,-93r-4,29v-36,-13,-44,19,-44,68v0,59,5,115,5,179v0,73,-30,113,-88,93r6,-31v34,13,45,-11,45,-62v0,-65,-6,-121,-6,-183","w":172},"\u2248":{"d":"77,-166v32,0,48,27,74,28v15,0,25,-10,35,-27r15,14v-12,22,-28,38,-50,38v-25,0,-50,-28,-76,-28v-17,0,-28,13,-37,27r-16,-14v11,-22,32,-38,55,-38xm77,-98v33,1,46,26,74,28v15,0,24,-10,35,-27r15,15v-12,22,-29,37,-51,37v-24,0,-51,-28,-75,-28v-17,0,-28,13,-37,27r-16,-14v11,-22,32,-38,55,-38","w":217},"\u2260":{"d":"167,-189r-15,34r53,0r0,25r-63,0r-23,52r86,0r0,24r-96,0r-20,44r-20,-9r16,-35r-52,0r0,-24r62,0r23,-52r-85,0r0,-25r95,0r19,-43","w":223},"\u2264":{"d":"211,-36r-170,-84r0,-27r170,-83r0,29r-144,68r144,67r0,30xm212,4r-172,0r0,-26r172,0r0,26","w":230},"\u2265":{"d":"42,-230r170,83r0,27r-170,84r0,-30r144,-68r-144,-67r0,-29xm212,4r-172,0r0,-26r172,0r0,26","w":230},"\u25ca":{"d":"231,-128r-75,146r-35,0r-74,-146r76,-147r34,0xm193,-127r-54,-113v-15,39,-36,74,-54,111v17,38,41,71,53,113","w":250},"\u00a0":{"w":106},"\u00ad":{"d":"5,-90r7,-36r89,0r-7,36r-89,0","w":113},"\u02c9":{"d":"17,-249r5,-27r113,0r-5,27r-113,0","w":100},"\u03a9":{"d":"-5,-35v17,-1,39,2,54,-1v-20,-21,-36,-56,-26,-105v14,-66,74,-120,142,-120v73,0,100,61,88,118v-10,50,-43,86,-72,108r54,0r-7,35r-99,0r6,-26v29,-16,61,-51,73,-109v10,-46,-5,-91,-51,-91v-44,0,-81,40,-92,93v-12,53,4,92,27,107r-5,26r-99,0","w":272},"\u2215":{"d":"-60,9r152,-276r28,0r-152,276r-28,0","w":60}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1991, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Vectora is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Full name:
 * VectoraLTStd-BoldItalic
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora LT Std","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 6 3 5 3 9 2 4","ascent":"280","descent":"-80","x-height":"4","bbox":"-60 -342 379 90","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"40","stemv":"49","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":106,"k":{"\u201c":13,"\u2018":13,"T":20,"V":20,"W":13,"Y":27,"\u00dd":27,"\u0178":27,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"32,-81r27,-175r52,0r-42,175r-37,0xm12,0r9,-48r46,0r-9,48r-46,0","w":119},"\"":{"d":"50,-188r0,-92r38,0r0,92r-38,0xm124,-188r0,-92r37,0r0,92r-37,0","w":180},"#":{"d":"123,-105r6,-47r-39,0r-6,47r39,0xm133,-179r11,-77r30,0r-10,77r34,0r-4,27r-34,0r-7,47r35,0r-4,28r-35,0r-10,77r-31,0r11,-77r-39,0r-11,77r-30,0r10,-77r-34,0r4,-28r34,0r7,-47r-35,0r4,-27r35,0r10,-77r31,0r-11,77r39,0"},"$":{"d":"108,-102r-13,69v39,-6,59,-51,13,-69xm104,-159r12,-65v-43,5,-47,51,-12,65xm80,-34r14,-75v-44,-19,-68,-38,-68,-74v0,-33,26,-79,98,-79r5,-26r15,0r-5,26v46,4,67,30,69,54r-49,14v0,-16,-12,-26,-28,-29r-13,70v46,19,70,36,70,74v0,43,-32,85,-101,85r-5,23r-15,0r5,-24v-35,-2,-68,-17,-77,-60r49,-16v4,21,15,34,36,37"},"%":{"d":"114,-215v0,-15,-6,-22,-20,-22v-28,0,-37,46,-37,64v0,15,7,23,21,23v28,0,36,-47,36,-65xm39,4r190,-266r31,0r-190,266r-31,0xm243,-85v0,-15,-7,-23,-21,-23v-28,0,-37,46,-37,64v0,15,7,23,21,23v28,0,37,-46,37,-64xm23,-175v0,-44,26,-87,73,-87v31,0,53,17,53,50v0,44,-26,87,-74,87v-31,0,-52,-17,-52,-50xm151,-46v0,-44,26,-87,73,-87v31,0,53,17,53,50v0,44,-26,87,-74,87v-31,0,-52,-17,-52,-50","w":299},"&":{"d":"184,0r-17,-21v-47,43,-163,30,-163,-43v0,-37,27,-64,67,-79v-51,-46,-16,-119,61,-119v41,0,72,21,72,56v0,36,-28,56,-69,75r42,53v15,-14,27,-37,31,-58r46,0v-3,25,-16,61,-52,88r38,48r-56,0xm157,-200v0,-18,-12,-26,-28,-26v-37,0,-44,49,-16,67v30,-12,44,-23,44,-41xm145,-49r-51,-65v-50,13,-55,82,2,82v14,0,30,-4,49,-17","w":266},"\u2019":{"d":"26,-188r42,-92r46,0r-50,92r-38,0","w":106,"k":{"\u2019":29,"r":6,"d":20,"\u0131":20,"s":20,"\u0161":20}},"(":{"d":"107,-282r24,22v-78,89,-102,184,-56,294r-31,16v-69,-123,-26,-251,63,-332","w":113},")":{"d":"35,-266r30,-16v69,123,27,250,-62,332r-25,-22v78,-89,101,-183,57,-294","w":113},"*":{"d":"91,-201r7,-55r33,0r-14,55r55,-21r4,30r-56,15r28,42r-29,19r-22,-47r-38,46r-23,-19r43,-42r-50,-15r15,-29","w":180},"+":{"d":"85,-108r0,-74r35,0r0,74r74,0r0,34r-74,0r0,74r-35,0r0,-74r-73,0r0,-34r73,0","w":216},",":{"d":"-22,44r42,-92r46,0r-50,92r-38,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"5,-90r7,-36r89,0r-7,36r-89,0","w":113},".":{"d":"5,0r10,-48r46,0r-10,48r-46,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"-27,6r162,-280r32,12r-161,279","w":140},"0":{"d":"7,-78v0,-12,2,-184,123,-184v50,0,76,33,76,82v0,31,-12,184,-119,184v-58,0,-80,-32,-80,-82xm156,-182v0,-27,-9,-44,-31,-44v-55,0,-68,117,-68,153v0,22,8,41,32,41v53,0,67,-121,67,-150"},"1":{"d":"32,-190r98,-66r48,0r-49,256r-53,0r39,-201r-63,44"},"2":{"d":"-6,0r7,-38v140,-116,153,-129,153,-155v0,-15,-9,-32,-35,-32v-31,0,-42,30,-42,44r-46,-9v10,-46,43,-72,94,-72v45,0,79,25,79,66v0,41,-26,63,-141,160r111,0r-7,36r-173,0"},"3":{"d":"-2,-63r47,-10v0,23,9,41,37,41v27,0,45,-25,45,-49v0,-32,-25,-34,-56,-33r8,-38v31,0,67,-4,67,-43v0,-19,-15,-31,-33,-31v-22,0,-35,14,-40,33r-43,-13v17,-42,54,-56,88,-56v39,0,79,17,79,61v0,43,-37,58,-64,67v29,8,44,21,44,52v0,44,-34,86,-92,86v-54,0,-83,-24,-87,-67"},"4":{"d":"3,-89r133,-167r56,0r-35,177r33,0r-7,36r-33,0r-8,43r-47,0r8,-43r-109,0xm40,-79r72,0r19,-98v2,-11,8,-22,8,-32"},"5":{"d":"8,-63r42,-8v-1,22,6,41,33,41v26,0,49,-24,49,-58v0,-57,-62,-51,-100,-28r30,-140r144,0r-7,37r-101,0r-12,55v51,-14,96,11,96,70v0,48,-33,98,-101,98v-45,0,-70,-22,-73,-67"},"6":{"d":"129,-256r63,0r-99,103v45,-18,95,5,95,58v0,115,-182,140,-179,20v2,-78,81,-128,120,-181xm105,-125v-37,1,-47,21,-47,57v0,25,14,36,34,36v46,0,67,-94,13,-93"},"7":{"d":"150,-217r-113,0r7,-39r171,0r-8,36r-150,220r-59,0"},"8":{"d":"6,-57v0,-35,27,-63,66,-78v-66,-39,-37,-126,54,-127v43,0,75,19,75,56v0,30,-22,59,-61,70v21,9,42,28,42,61v0,44,-39,79,-93,79v-55,0,-83,-24,-83,-61xm90,-30v49,0,60,-62,13,-84v-35,14,-47,33,-47,52v0,18,12,32,34,32xm154,-199v0,-19,-15,-29,-33,-29v-44,0,-52,54,-8,74v27,-13,41,-27,41,-45"},"9":{"d":"17,0r101,-105v-45,16,-96,-3,-96,-58v0,-60,43,-99,100,-99v48,0,79,29,79,76v-1,74,-83,135,-121,186r-63,0xm105,-133v37,-1,47,-21,47,-57v0,-25,-14,-36,-34,-36v-46,0,-67,94,-13,93"},":":{"d":"38,-168r9,-47r46,0r-9,47r-46,0xm5,0r10,-48r46,0r-10,48r-46,0","w":106,"k":{" ":13}},";":{"d":"-22,44r42,-92r46,0r-50,92r-38,0xm38,-168r9,-47r46,0r-9,47r-46,0","w":106,"k":{" ":13}},"<":{"d":"12,-77r0,-28r182,-80r0,35r-138,59r138,59r0,35","w":216},"=":{"d":"12,-112r0,-35r182,0r0,35r-182,0xm12,-35r0,-35r182,0r0,35r-182,0","w":216},">":{"d":"149,-91r-137,-59r0,-35r182,80r0,28r-182,80r0,-35","w":216},"?":{"d":"67,-192r-43,-9v6,-30,36,-61,85,-61v40,0,73,20,73,60v0,22,-12,46,-35,61v-43,28,-44,35,-48,61r-40,0v6,-42,13,-50,34,-65v36,-26,43,-38,43,-53v0,-46,-68,-26,-69,6xm40,0r10,-48r46,0r-10,48r-46,0","w":193},"@":{"d":"133,-82v41,2,67,-80,17,-85v-44,-3,-65,81,-17,85xm189,-176r5,-19r30,0v-25,97,-25,103,-25,108v0,6,1,8,5,8v17,0,43,-22,43,-66v0,-58,-43,-90,-97,-90v-62,0,-104,47,-104,108v0,97,126,136,185,75r30,0v-62,105,-247,55,-247,-76v0,-76,61,-134,136,-134v65,0,124,43,124,109v0,74,-62,103,-89,103v-15,0,-18,-7,-21,-19v-31,40,-95,10,-95,-42v0,-63,80,-124,120,-65","w":288},"A":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116","w":259},"B":{"d":"1,0r50,-256v73,2,174,-17,174,57v0,37,-29,60,-59,67v28,6,43,29,43,53v0,46,-38,79,-95,79r-113,0xm83,-152v42,2,89,3,89,-37v0,-31,-43,-30,-76,-28xm62,-40v46,3,98,0,94,-42v4,-33,-45,-31,-80,-30","w":233,"k":{",":9,".":9}},"C":{"d":"174,-80r48,11v-17,51,-57,75,-111,75v-74,0,-100,-51,-100,-100v0,-48,29,-168,139,-168v57,0,87,28,93,72r-50,10v-4,-27,-21,-41,-44,-41v-67,0,-82,100,-82,129v0,34,16,57,48,57v28,0,45,-14,59,-45","w":246,"k":{",":9,".":9}},"D":{"d":"1,0r50,-256r87,0v71,0,109,39,109,104v0,89,-60,152,-147,152r-99,0xm64,-41v80,9,121,-25,126,-112v3,-50,-37,-66,-93,-61","w":259,"k":{"V":4,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13}},"E":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0"},"F":{"d":"1,0r50,-256r167,0r-8,41r-113,0r-13,69r108,0r-8,41r-108,0r-21,105r-54,0","w":206,"k":{",":40,".":40,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"G":{"d":"133,-102r7,-40r95,0r-23,121v-21,14,-59,27,-97,27v-69,0,-102,-47,-102,-95v0,-75,42,-173,141,-173v42,0,82,15,94,65r-51,13v-5,-23,-20,-37,-46,-37v-67,0,-82,99,-82,127v0,63,58,72,97,50r11,-58r-44,0","w":253},"H":{"d":"185,-156r19,-100r54,0r-49,256r-54,0r22,-114r-99,0r-23,114r-54,0r50,-256r54,0r-19,100r99,0","w":259},"I":{"d":"1,0r50,-256r54,0r-50,256r-54,0","w":106},"J":{"d":"-31,-9r29,-38v24,23,50,15,59,-35r34,-174r54,0r-36,185v-11,74,-85,95,-140,62","w":146,"k":{",":13,".":13}},"K":{"d":"87,-150v33,-30,71,-72,105,-106r69,0r-129,121r85,135r-63,0r-73,-120r-23,120r-54,0r49,-256r54,0","w":240,"k":{"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"y":9,"\u00fd":9,"\u00ff":9,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6}},"L":{"d":"4,0r49,-256r54,0r-41,214r102,0r-9,42r-155,0","w":186,"k":{"T":33,"V":34,"W":27,"y":9,"\u00fd":9,"\u00ff":9,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":54,"\u2019":46}},"M":{"d":"124,0r-30,-215r-2,0r-40,215r-51,0r50,-256r82,0r21,147v3,12,0,31,4,42v28,-68,66,-125,98,-189r82,0r-49,256r-52,0r42,-215r-114,215r-41,0","w":339},"N":{"d":"153,0v-22,-67,-48,-125,-64,-199r-2,0v-7,71,-23,133,-35,199r-51,0r50,-256r68,0r54,165v6,11,3,28,11,36r37,-201r51,0r-50,256r-69,0","w":273,"k":{",":9,".":9}},"O":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"P":{"d":"0,0r50,-256r93,0v51,0,81,26,81,68v0,81,-67,100,-151,93r-19,95r-54,0xm79,-135v49,3,88,0,93,-48v3,-29,-39,-38,-77,-34","w":226,"k":{",":46,".":46,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"Q":{"d":"199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm146,1r47,34r-34,31r-83,-64v-37,-11,-65,-43,-65,-94v0,-96,64,-170,139,-170v168,0,114,240,-4,263","w":266,"k":{",":9,".":9}},"R":{"d":"143,0r-29,-107r-38,0r-21,107r-54,0r50,-256v77,1,174,-14,174,64v0,47,-30,73,-63,76r37,116r-56,0xm82,-146v44,2,90,3,90,-41v0,-36,-41,-30,-76,-30","w":233,"k":{"T":4,"V":4,"Y":9,"\u00dd":9,"\u0178":9}},"S":{"d":"-1,-55r48,-16v0,52,91,47,91,0v0,-18,-9,-24,-52,-44v-41,-19,-56,-38,-56,-68v0,-33,25,-79,98,-79v56,0,81,27,83,54r-49,14v0,-19,-15,-30,-36,-30v-27,0,-42,18,-42,34v0,48,108,35,108,111v0,40,-30,85,-105,85v-40,0,-78,-13,-88,-61","w":219,"k":{",":13,".":13}},"T":{"d":"19,-214r9,-42r194,0r-8,42r-70,0r-42,214r-54,0r42,-214r-71,0","w":200,"k":{"\u00fc":6,"\u00f2":9,"\u00f6":9,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e3":4,"\u00e5":4,"\u00e0":4,"\u00e4":4,"\u00e2":4,",":33,".":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"e":9,"\u00e9":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"-":33,"a":4,"\u00e6":4,"\u00e1":4,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":9,";":9}},"U":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"V":{"d":"207,-256r56,0r-137,256r-69,0r-31,-256r56,0v6,40,14,184,20,208","w":240,"k":{"\u00f6":6,"\u00f4":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e3":9,"\u00e5":9,"\u00e0":9,"\u00e4":9,"\u00e2":9,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,",":33,".":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"e":6,"\u00e9":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f2":6,"\u00f5":6,"-":13,"a":9,"\u00e6":9,"\u00e1":9,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,":":6,";":6}},"W":{"d":"190,0r2,-215r-2,0v-25,81,-55,140,-83,215r-67,0r-10,-256r52,0r0,214r2,0v22,-73,55,-144,81,-214r68,0v1,53,4,133,4,160v0,13,-3,38,-1,54v19,-74,55,-145,81,-214r52,0r-109,256r-70,0","w":346,"k":{",":22,".":22,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"-":9}},"X":{"d":"89,-134r-54,-122r58,0v13,31,20,67,36,95r68,-95r61,0r-100,125r58,131r-58,0v-14,-30,-27,-74,-40,-102v-19,32,-53,71,-77,102r-62,0","w":246},"Y":{"d":"83,-98r-60,-158r57,0r39,113v24,-40,53,-75,79,-113r63,0r-123,158r-19,98r-54,0","w":240,"k":{"\u00f6":20,"O":22,"\u00d8":22,"\u0152":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u00d5":22,",":40,".":40,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,":":20,";":20,"S":9,"\u0160":9}},"Z":{"d":"-6,-47r154,-167r-117,0r8,-42r181,0r-9,46r-157,168r126,0r-9,42r-186,0","w":206},"[":{"d":"-7,44r62,-319r71,0r-5,25r-30,0r-52,268r30,0r-5,26r-71,0","w":113},"\\":{"d":"-1,-262r33,-12r109,280r-34,11","w":140},"]":{"d":"18,18r51,-268r-29,0r5,-25r71,0r-62,319r-72,0r5,-26r31,0","w":113},"^":{"d":"163,-114r-51,-108r-50,108r-35,0r69,-142r33,0r69,142r-35,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"28,-188r50,-92r38,0r-42,92r-46,0","w":106,"k":{"\u2018":29,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"a":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2","w":206},"b":{"d":"83,-156r-19,96v8,16,20,25,38,25v35,0,56,-60,56,-105v0,-55,-55,-46,-75,-16xm0,0r55,-280r52,0v-4,29,-14,61,-16,89v40,-45,120,-45,120,47v0,66,-32,148,-100,148v-21,0,-40,-8,-53,-30r-5,26r-53,0","w":226,"k":{",":13,".":13}},"c":{"d":"129,-71r45,12v-18,40,-45,63,-89,63v-61,0,-80,-45,-80,-83v0,-60,36,-141,111,-141v51,0,71,29,75,60r-46,12v0,-23,-10,-37,-30,-37v-45,0,-58,79,-58,111v0,32,18,41,32,41v24,0,39,-28,40,-38","w":193,"k":{",":13,".":13}},"d":{"d":"137,-59r20,-99v-11,-16,-22,-24,-37,-24v-37,0,-58,61,-58,106v0,51,43,51,75,17xm163,-190r17,-90r53,0r-55,280r-52,0r4,-24v-45,46,-117,41,-120,-51v-3,-101,85,-195,153,-115","w":226},"e":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56","k":{",":13,".":13}},"f":{"d":"10,-161r7,-37r31,0r5,-24v17,-66,62,-73,116,-61r-7,36v-37,-16,-60,12,-61,49r42,0r-8,37r-41,0r-32,161r-52,0r31,-161r-31,0","w":133,"k":{",":22,".":22}},"g":{"d":"229,-215r-6,29r-46,0v39,51,-16,114,-99,103v-4,3,-7,8,-7,12v0,20,105,16,105,71v0,36,-32,73,-109,73v-109,0,-105,-84,-34,-110v-18,-19,-4,-41,21,-53v-66,-33,-26,-137,57,-130v37,3,76,5,118,5xm102,-116v47,2,60,-69,9,-69v-23,0,-44,16,-44,40v0,19,14,29,35,29xm129,11v0,-21,-25,-20,-70,-34v-38,16,-49,64,11,63v46,0,59,-16,59,-29","k":{".":9}},"h":{"d":"0,0r55,-280r52,0r-17,95v27,-23,54,-35,72,-35v23,0,46,14,46,44v0,17,-3,28,-32,176r-52,0v28,-139,30,-144,30,-153v-4,-42,-56,-15,-72,4r-29,149r-53,0","w":226},"i":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm46,-241r7,-39r53,0r-8,39r-52,0","w":100},"j":{"d":"-52,69r10,-40v23,9,37,-4,41,-29r42,-215r52,0r-42,219v-14,68,-49,75,-103,65xm46,-241r7,-39r53,0r-8,39r-52,0","w":100},"k":{"d":"77,-122v29,-25,57,-64,85,-93r64,0r-101,101r64,114r-59,0r-57,-107r-20,107r-53,0r55,-280r52,0"},"l":{"d":"-1,0r54,-280r53,0r-55,280r-52,0","w":100},"m":{"d":"0,0r42,-215r53,0v-1,9,-6,22,-5,30v27,-23,48,-35,66,-35v24,0,41,14,45,38v20,-19,46,-38,74,-38v23,0,46,14,46,44v0,17,-3,28,-32,176r-52,0v28,-139,30,-144,30,-153v0,-10,-3,-23,-21,-23v-14,0,-26,9,-45,25r-30,151r-52,0v28,-139,30,-144,30,-153v-3,-42,-50,-16,-67,4r-29,149r-53,0","w":339},"n":{"d":"0,0r42,-215r53,0v-1,9,-6,22,-5,30v27,-23,54,-35,72,-35v23,0,46,14,46,44v0,17,-3,28,-32,176r-52,0v28,-139,30,-144,30,-153v-4,-42,-56,-15,-72,4r-29,149r-53,0","w":226},"o":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109","w":219,"k":{",":13,".":13}},"p":{"d":"83,-156r-19,99v11,16,22,24,37,24v37,0,57,-61,57,-106v0,-52,-43,-53,-75,-17xm-13,70r55,-285r53,0v-1,8,-6,19,-4,25v39,-48,120,-43,120,50v0,100,-86,193,-153,115r-18,95r-53,0","w":226,"k":{",":13,".":13}},"q":{"d":"137,-59r19,-96v-8,-16,-20,-25,-38,-25v-35,0,-56,59,-56,104v0,55,55,47,75,17xm162,-190r5,-25r53,0r-55,285r-53,0r18,-94v-41,43,-120,45,-120,-47v0,-66,31,-149,99,-149v21,0,40,8,53,30","w":226},"r":{"d":"0,0r42,-215r53,0v-1,10,-6,22,-5,31v19,-22,43,-40,76,-35r-9,47v-31,-4,-54,5,-76,28r-28,144r-53,0","w":146,"k":{",":27,".":27,"-":27}},"s":{"d":"-7,-50r46,-14v0,18,15,32,34,32v27,0,38,-19,38,-31v0,-37,-93,-15,-93,-86v0,-37,32,-71,87,-71v44,0,68,24,75,50r-45,13v-3,-14,-11,-27,-32,-27v-24,0,-34,16,-34,29v0,35,96,15,96,83v0,40,-31,76,-93,76v-47,0,-69,-20,-79,-54","w":186,"k":{",":6,".":6}},"t":{"d":"54,-198r9,-48r55,-21r-14,69r51,0r-7,37r-51,0v-19,98,-19,102,-19,107v-1,23,31,21,47,14r-7,38v-33,11,-98,10,-93,-42v0,-10,1,-15,22,-117r-34,0r8,-37r33,0","w":146},"u":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4","w":219},"v":{"d":"43,0r-27,-215r54,0r14,167v19,-61,51,-111,76,-167r55,0r-110,215r-62,0","w":200,"k":{",":27,".":27}},"w":{"d":"148,-215r64,0r7,167v19,-59,45,-111,67,-167r53,0r-98,215r-66,0v-6,-119,-6,-128,-6,-168r-2,0v-17,63,-44,111,-67,168r-64,0r-20,-215r52,0v7,59,5,116,11,167v19,-61,46,-111,69,-167","w":326,"k":{",":27,".":27}},"x":{"d":"68,-115r-42,-100r55,0v10,23,16,51,26,73v15,-26,34,-49,51,-73r59,0r-81,101r43,114r-56,0r-27,-84v-18,30,-41,56,-61,84r-59,0","w":206},"y":{"d":"51,-4r-35,-211r55,0v5,53,14,106,13,163v12,-20,18,-45,29,-65r49,-98r55,0r-128,238v-24,46,-60,59,-110,44r11,-39v28,11,48,2,61,-32","w":200,"k":{",":33,".":33}},"z":{"d":"-10,-38r131,-143v-31,4,-66,1,-100,2r7,-36r163,0r-7,38r-132,142v34,-2,71,0,107,-1r-6,36r-170,0","w":186},"{":{"d":"-2,-101r5,-28v13,0,34,-11,39,-36r12,-62v14,-45,39,-51,86,-48r-5,26v-78,-15,-26,129,-98,133r0,2v9,0,27,11,27,31v0,15,-14,69,-14,84v-1,21,17,15,34,16r-6,27v-37,3,-68,-2,-68,-38v0,-32,36,-107,-12,-107","w":113},"|":{"d":"23,90r0,-360r34,0r0,360r-34,0","w":79},"}":{"d":"26,-249r5,-26v37,-2,68,1,68,37v0,32,-36,107,12,107r-5,28v-13,0,-34,11,-39,36r-12,62v-14,45,-39,53,-86,49r5,-27v78,14,27,-127,98,-134v-9,0,-27,-12,-27,-32v0,-15,14,-69,14,-84v1,-20,-16,-15,-33,-16","w":113},"~":{"d":"141,-63v-23,1,-57,-23,-77,-24v-12,0,-21,9,-32,26r-13,-28v9,-17,23,-31,45,-31v23,0,57,24,77,25v12,0,21,-9,32,-26r13,27v-9,17,-23,31,-45,31","w":216},"\u00a1":{"d":"1,41r41,-175r38,0r-27,175r-52,0xm45,-168r9,-47r46,0r-9,47r-46,0","w":119},"\u00a2":{"d":"71,-52r67,-131v-62,-12,-76,84,-67,131xm155,-216r14,-27r14,5r-14,28v21,11,30,30,33,50r-46,12v0,-10,-3,-18,-7,-24r-68,133v25,21,60,-17,59,-32r44,12v-20,50,-64,74,-122,58r-14,27r-14,-4r15,-30v-25,-16,-34,-45,-34,-71v-1,-68,49,-162,140,-137"},"\u00a3":{"d":"32,-36r15,-80r-27,0r6,-32r28,0v7,-65,30,-114,99,-114v39,0,65,20,69,52r-46,11v-2,-17,-11,-27,-28,-27v-29,0,-38,27,-47,78r55,0r-6,32r-55,0r-15,80r97,0r-7,36r-171,0r7,-36r26,0"},"\u2044":{"d":"-60,9r152,-276r28,0r-152,276r-28,0","w":60},"\u00a5":{"d":"66,-73r5,-24r-53,0r4,-23r41,0r-45,-136r58,0r29,117r71,-117r63,0r-99,136r44,0r-4,23r-57,0r-4,24r56,0r-4,23r-57,0r-9,50r-52,0r9,-50r-53,0r4,-23r53,0"},"\u0192":{"d":"-10,40r19,-31v22,11,35,6,43,-27r26,-110r-41,0r6,-29r42,0v8,-51,23,-105,80,-105v17,0,31,4,39,10r-20,30v-39,-25,-45,35,-53,65r42,0r-6,29r-43,0v-19,77,-26,214,-134,168"},"\u00a7":{"d":"-1,1r37,-17v3,40,77,42,77,2v0,-36,-91,-31,-91,-86v0,-31,23,-49,50,-57v-50,-37,-24,-105,59,-105v37,0,59,18,67,40r-37,18v-8,-32,-69,-37,-69,1v0,35,92,34,92,91v0,31,-25,48,-47,53v46,33,15,106,-65,106v-35,0,-61,-11,-73,-46xm143,-102v0,-15,-8,-22,-50,-43v-19,7,-31,18,-31,32v0,13,5,18,55,43v17,-8,26,-18,26,-32"},"\u00a4":{"d":"160,-200r21,-21r20,19r-21,22v21,27,21,75,0,102r21,21r-20,20r-21,-21v-29,24,-78,24,-107,0r-21,21r-20,-20r21,-21v-21,-27,-21,-75,0,-102r-21,-22r20,-19r21,21v29,-25,78,-25,107,0xm161,-129v0,-32,-22,-57,-54,-57v-32,0,-55,25,-55,57v0,32,23,57,55,57v32,0,54,-25,54,-57"},"'":{"d":"50,-188r0,-92r38,0r0,92r-38,0","w":106},"\u201c":{"d":"26,-188r50,-92r38,0r-42,92r-46,0xm104,-188r50,-92r38,0r-42,92r-46,0","w":180,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"\u00ab":{"d":"5,-115r73,-79r27,22r-55,63r32,70r-32,17xm91,-115r73,-79r26,22r-54,63r32,70r-32,17","w":193},"\u2039":{"d":"5,-115r73,-79r27,22r-55,63r32,70r-32,17","w":113},"\u203a":{"d":"55,-107r-32,-70r32,-17r45,93r-73,79r-27,-22","w":113},"\u2013":{"d":"-8,-91r8,-34r180,0r-8,34r-180,0","w":180},"\u2020":{"d":"93,-187r14,-69r50,0r-14,69r66,0r-8,41r-66,0r-36,191r-51,0r37,-191r-66,0r8,-41r66,0"},"\u2021":{"d":"70,-58r19,-96r-63,0r7,-39r63,0r13,-63r46,0r-12,63r63,0r-8,39r-63,0r-19,96r64,0r-8,40r-63,0r-13,63r-46,0r13,-63r-64,0r8,-40r63,0"},"\u00b7":{"d":"24,-110v0,-14,12,-25,26,-25v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25","w":106},"\u00b6":{"d":"120,41r52,-271r-39,0r-52,271r-35,0r28,-146v-41,0,-62,-24,-62,-61v0,-45,33,-90,97,-90r103,0r-58,297r-34,0"},"\u2022":{"d":"26,-128v0,-35,29,-64,64,-64v35,0,64,29,64,64v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":180},"\u201a":{"d":"-15,44r42,-92r46,0r-50,92r-38,0","w":106},"\u201e":{"d":"-24,44r42,-92r46,0r-50,92r-38,0xm54,44r42,-92r46,0r-50,92r-38,0","w":180},"\u201d":{"d":"29,-188r42,-92r46,0r-50,92r-38,0xm107,-188r42,-92r46,0r-50,92r-38,0","w":180,"k":{" ":13}},"\u00bb":{"d":"50,-107r-32,-70r32,-17r45,93r-73,79r-27,-22xm136,-107r-32,-70r31,-17r45,93r-73,79r-26,-22","w":193},"\u2026":{"d":"32,0r10,-48r46,0r-10,48r-46,0xm152,0r10,-48r46,0r-10,48r-46,0xm272,0r10,-48r46,0r-10,48r-46,0","w":360},"\u2030":{"d":"104,-219v0,-12,-6,-20,-19,-20v-27,0,-35,50,-35,68v0,12,6,21,19,21v27,0,35,-51,35,-69xm22,4r190,-266r30,0r-189,266r-31,0xm216,-87v0,-12,-6,-21,-19,-21v-27,0,-35,51,-35,69v0,12,6,20,19,20v27,0,35,-50,35,-68xm18,-175v0,-37,20,-87,71,-87v27,0,47,16,47,47v0,37,-19,88,-70,88v-28,0,-48,-17,-48,-48xm130,-44v0,-37,20,-87,71,-87v27,0,47,17,47,48v0,37,-20,87,-71,87v-28,0,-47,-17,-47,-48xm261,-44v0,-37,20,-87,71,-87v27,0,47,17,47,48v0,37,-19,87,-70,87v-28,0,-48,-17,-48,-48xm347,-87v0,-12,-6,-21,-19,-21v-27,0,-35,51,-35,69v0,12,6,20,19,20v27,0,35,-50,35,-68","w":393},"\u00bf":{"d":"86,-135r39,0v-6,42,-13,49,-34,64v-36,26,-42,39,-42,54v0,15,12,27,31,27v22,0,34,-17,37,-33r44,9v-6,30,-36,61,-85,61v-40,0,-73,-20,-73,-60v0,-22,12,-46,35,-61v43,-28,44,-35,48,-61xm89,-168r9,-47r46,0r-9,47r-46,0","w":193},"`":{"d":"69,-236r-56,-52r58,0r35,52r-37,0","w":100},"\u00b4":{"d":"35,-236r40,-52r59,0r-62,52r-37,0","w":100},"\u02c6":{"d":"99,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":100},"\u02dc":{"d":"35,-239r-24,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-62,45,-92,30v-7,0,-12,5,-16,16","w":100},"\u00af":{"d":"17,-249r5,-27r113,0r-5,27r-113,0","w":100},"\u02d8":{"d":"18,-288r23,0v2,41,71,32,76,0r24,0v-5,57,-122,81,-123,0","w":100},"\u02d9":{"d":"46,-241r7,-39r53,0r-8,39r-52,0","w":100},"\u00a8":{"d":"10,-241r7,-39r53,0r-8,39r-52,0xm85,-241r8,-39r52,0r-7,39r-53,0","w":100},"\u02da":{"d":"40,-273v0,-21,17,-37,38,-37v21,0,38,16,38,37v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38xm98,-273v0,-11,-9,-19,-20,-19v-11,0,-19,8,-19,19v0,11,8,20,19,20v11,0,20,-9,20,-20","w":100},"\u00b8":{"d":"21,48v1,-20,-30,-3,-34,-17r25,-31r19,0r-18,22v20,-5,39,7,38,24v4,31,-60,42,-86,23r9,-15v13,6,45,14,47,-6","w":100},"\u02dd":{"d":"-3,-236r40,-52r59,0r-62,52r-37,0xm72,-236r41,-52r59,0r-62,52r-38,0","w":100},"\u02db":{"d":"39,-11r27,0v-31,21,-42,34,-42,45v-1,17,28,16,41,7r-5,24v-31,16,-77,16,-77,-17v0,-21,18,-38,56,-59","w":100},"\u02c7":{"d":"73,-257r33,-31r40,0r-51,52r-47,0r-31,-52r34,0","w":100},"\u2014":{"d":"-8,-91r8,-34r360,0r-8,34r-360,0","w":360},"\u00c6":{"d":"158,0r12,-63r-84,0r-45,63r-62,0r192,-256r181,0r-8,41r-94,0r-12,63r89,0r-8,41r-89,0r-14,70r99,0r-8,41r-149,0xm177,-102r23,-122r-86,122r63,0","w":346},"\u00aa":{"d":"10,-161v0,-41,48,-53,91,-51v5,-14,0,-31,-15,-27v-13,0,-24,7,-28,18r-28,-8v9,-41,108,-48,108,2v0,30,-18,81,-18,96r-35,0r3,-18v-19,15,-30,21,-44,21v-21,0,-34,-15,-34,-33xm91,-168r6,-25v-26,0,-52,7,-52,26v0,22,32,12,46,-1","w":134},"\u0141":{"d":"85,-153r73,-42r-6,29r-72,42r-16,82r102,0r-9,42r-156,0r17,-89r-26,16r5,-29r27,-15r27,-139r54,0","w":186,"k":{"T":33,"V":34,"W":27,"y":9,"\u00fd":9,"\u00ff":9,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":54,"\u2019":46}},"\u00d8":{"d":"67,-75r126,-118v-7,-18,-22,-27,-44,-27v-53,-2,-91,71,-82,145xm198,-177r-126,117v8,16,22,27,41,27v63,-2,91,-79,85,-144xm233,-230r29,-26r9,10r-29,28v41,99,-18,224,-135,224v-28,0,-55,-9,-73,-30r-26,24r-10,-11r27,-25v-47,-98,35,-226,125,-226v39,0,66,12,83,32","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u0152":{"d":"169,-260r75,4r101,0r-8,41r-94,0r-12,63r88,0r-8,41r-88,0r-14,70r99,0r-8,41r-172,0v-68,0,-114,-33,-114,-105v0,-77,55,-155,155,-155xm158,-42r33,-173v-78,-16,-120,49,-120,104v0,61,34,69,87,69","w":339,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00ba":{"d":"17,-177v0,-41,26,-85,76,-85v30,0,55,17,55,47v0,42,-25,87,-77,87v-37,0,-54,-24,-54,-49xm114,-218v0,-13,-10,-21,-23,-21v-21,0,-40,24,-40,64v0,16,10,24,21,24v28,0,42,-35,42,-67","w":138},"\u00e6":{"d":"-1,-51v0,-65,71,-87,141,-84v11,-24,-3,-50,-26,-50v-21,0,-37,16,-43,34r-43,-14v17,-36,44,-55,91,-55v33,0,50,12,60,32v39,-55,141,-40,141,51v0,13,-3,33,-6,41r-133,0v-7,31,2,64,30,64v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-39,0,-63,-14,-72,-39v-38,47,-138,59,-138,-16xm187,-131r83,0v6,-26,-7,-53,-32,-53v-32,0,-47,37,-51,53xm126,-62r9,-40v-42,0,-85,8,-85,42v9,36,48,24,76,-2","w":333},"\u0131":{"d":"-1,0r42,-215r52,0r-42,215r-52,0","w":100},"\u0142":{"d":"88,-189r29,-18r-6,29r-29,18r-31,160r-52,0r24,-123r-29,18r6,-29r28,-18r25,-128r53,0","w":100},"\u00f8":{"d":"155,-145r-95,88v5,15,18,24,31,24v42,0,64,-57,64,-112xm187,-194r27,-26r10,11r-28,26v33,79,-16,188,-108,187v-30,0,-52,-10,-65,-26r-27,25r-10,-11r29,-26v-32,-80,17,-185,107,-186v25,0,47,8,65,26xm57,-74r94,-87v-5,-15,-18,-21,-33,-21v-44,0,-61,64,-61,108","w":219,"k":{",":13,".":13}},"\u0153":{"d":"155,-145v0,-22,-16,-37,-37,-37v-44,0,-61,65,-61,109v0,27,17,40,34,40v42,0,64,-59,64,-112xm5,-77v0,-68,40,-143,117,-143v37,0,58,13,68,35v42,-64,150,-35,150,48v0,13,-3,33,-6,43r-137,0v-8,31,6,62,34,62v18,0,40,-16,46,-32r42,14v-23,55,-124,80,-158,20v-17,21,-45,34,-73,34v-58,0,-83,-39,-83,-81xm204,-128r85,0v8,-29,-6,-56,-32,-56v-32,0,-49,38,-53,56","w":353,"k":{",":13,".":13}},"\u00df":{"d":"74,-4r15,-36v39,16,67,-19,67,-57v0,-23,-20,-37,-49,-34r7,-37v35,3,52,-20,52,-51v0,-18,-12,-27,-30,-27v-26,0,-36,18,-42,47r-39,199r-52,0r38,-198v10,-51,40,-86,98,-86v50,0,76,26,76,61v0,45,-36,63,-62,72v37,9,52,27,52,57v0,40,-28,97,-93,97v-12,0,-30,-4,-38,-7","w":226,"k":{",":6,".":6}},"\u00b9":{"d":"22,-220r64,-38r31,0r-30,153r-34,0r24,-120r-42,26","w":139},"\u00ac":{"d":"12,-112r0,-35r182,0r0,108r-35,0r0,-73r-147,0","w":216},"\u00b5":{"d":"120,0v1,-8,6,-19,5,-26v-20,36,-53,38,-72,13r-16,83r-52,0r55,-285r53,0v-28,139,-30,144,-30,153v3,36,62,29,69,-4r30,-149r52,0r-42,215r-52,0","w":219},"\u2122":{"d":"248,-159r37,-97r49,0r0,151r-32,0r-1,-110r-41,110r-24,0r-41,-110r0,110r-33,0r0,-151r49,0xm66,-105r0,-125r-44,0r0,-26r121,0r0,26r-43,0r0,125r-34,0","w":360},"\u00d0":{"d":"31,-148r20,-108r87,0v71,0,109,39,109,104v0,89,-60,152,-147,152r-99,0r25,-125r-27,0r4,-23r28,0xm80,-125r-16,84v80,9,121,-25,126,-112v3,-50,-37,-66,-93,-61r-12,66r54,0r-4,23r-55,0","w":259,"k":{"V":4,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13}},"\u00bd":{"d":"63,9r152,-276r28,0r-152,276r-28,0xm17,-220r64,-38r31,0r-30,153r-34,0r24,-120r-42,26xm172,0r5,-23v90,-69,98,-78,98,-93v0,-9,-6,-16,-21,-16v-18,0,-27,13,-27,23r-30,-6v2,-52,110,-60,112,-3v1,25,-16,38,-85,93r67,0r-6,25r-113,0","w":320},"\u00b1":{"d":"85,-132r0,-50r35,0r0,50r74,0r0,35r-74,0r0,50r-35,0r0,-50r-73,0r0,-35r73,0xm12,0r0,-35r182,0r0,35r-182,0","w":216},"\u00de":{"d":"0,0r50,-256r54,0r-7,36v66,-6,123,12,120,68v-3,81,-67,100,-151,93r-12,59r-54,0xm72,-98v49,3,88,0,93,-48v3,-29,-39,-38,-77,-34","w":226},"\u00bc":{"d":"179,-54r86,-100r37,0r-20,106r20,0r-5,24r-20,0r-5,24r-32,0r4,-24r-71,0xm249,-48v3,-22,15,-51,13,-70v-17,26,-38,46,-57,70r44,0xm63,9r152,-276r28,0r-152,276r-28,0xm17,-220r64,-38r31,0r-30,153r-34,0r24,-120r-42,26","w":320},"\u00f7":{"d":"12,-74r0,-34r182,0r0,34r-182,0xm73,-166v0,-16,14,-29,30,-29v16,0,29,13,29,29v0,16,-13,30,-29,30v-16,0,-30,-14,-30,-30xm73,-17v0,-16,14,-29,30,-29v16,0,29,13,29,29v0,16,-13,30,-29,30v-16,0,-30,-14,-30,-30","w":216},"\u00a6":{"d":"23,63r0,-126r34,0r0,126r-34,0xm23,-117r0,-126r34,0r0,126r-34,0","w":79},"\u00b0":{"d":"30,-211v0,-28,23,-51,51,-51v28,0,52,23,52,51v0,28,-24,52,-52,52v-28,0,-51,-24,-51,-52xm110,-211v0,-16,-13,-28,-29,-28v-16,0,-28,12,-28,28v0,16,12,28,28,28v16,0,29,-12,29,-28","w":144},"\u00fe":{"d":"83,-156r-19,99v11,16,22,24,37,24v37,0,57,-61,57,-106v0,-52,-43,-53,-75,-17xm-13,70r68,-350r52,0r-16,90v39,-48,120,-43,120,50v0,100,-86,193,-153,115r-18,95r-53,0","w":226,"k":{",":13,".":13}},"\u00be":{"d":"183,-54r87,-100r36,0r-20,106r20,0r-5,24r-20,0r-5,24r-32,0r5,-24r-72,0xm253,-48v3,-22,15,-51,13,-70v-16,27,-38,46,-56,70r43,0xm81,9r151,-276r28,0r-151,276r-28,0xm11,-143r33,-6v0,13,5,24,23,24v18,0,28,-14,28,-28v1,-19,-17,-23,-35,-20r4,-24v20,0,44,-2,44,-25v0,-26,-45,-19,-47,1r-29,-8v11,-25,36,-33,58,-33v26,0,52,10,52,37v0,24,-22,36,-42,39v19,5,30,13,30,32v0,27,-25,52,-62,52v-35,0,-54,-15,-57,-41","w":320},"\u00b2":{"d":"4,-105r4,-23v90,-69,98,-78,98,-93v0,-9,-6,-16,-21,-16v-18,0,-27,13,-27,23r-30,-6v2,-51,110,-59,112,-3v1,25,-16,38,-85,93r67,0r-5,25r-113,0","w":139},"\u00ae":{"d":"176,-53r-37,-64r-19,0r0,64r-29,0r0,-150v52,1,115,-10,115,44v0,27,-17,39,-36,41r37,65r-31,0xm120,-140v0,0,60,3,56,-20v3,-22,-32,-20,-56,-20r0,40xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm246,-128v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102v0,56,46,102,102,102v56,0,102,-46,102,-102","w":288},"\u2212":{"d":"12,-74r0,-34r182,0r0,34r-182,0","w":216},"\u00f0":{"d":"152,-125v0,-26,-10,-44,-38,-44v-40,0,-59,62,-59,97v0,26,11,42,37,42v44,0,60,-68,60,-95xm136,-266r43,-20r13,18r-40,19v83,76,61,253,-65,253v-59,0,-82,-37,-82,-82v0,-71,61,-151,135,-114v-7,-14,-16,-27,-28,-39r-43,20r-14,-17r40,-19v-6,-6,-14,-12,-22,-18r36,-23v9,7,19,14,27,22","w":219},"\u00d7":{"d":"102,-115r60,-60r24,24r-60,60r60,60r-24,24r-59,-60r-60,60r-24,-24r60,-60r-60,-60r24,-24","w":216},"\u00b3":{"d":"5,-143r33,-6v0,13,5,24,23,24v18,0,28,-14,28,-28v1,-19,-17,-23,-35,-20r5,-24v20,0,43,-2,43,-25v0,-26,-45,-19,-47,1r-28,-8v11,-25,35,-33,57,-33v26,0,52,10,52,37v0,24,-22,36,-42,39v19,5,30,13,30,32v0,27,-24,52,-61,52v-35,0,-55,-15,-58,-41","w":139},"\u00a9":{"d":"185,-107r30,0v-6,36,-34,57,-67,57v-48,0,-75,-34,-75,-79v0,-85,129,-111,140,-24r-28,0v-17,-50,-84,-28,-80,24v-6,53,72,70,80,22xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm246,-128v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102v0,56,46,102,102,102v56,0,102,-46,102,-102","w":288},"\u00c1":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm122,-277r40,-52r59,0r-62,52r-37,0","w":259},"\u00c2":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm181,-277r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":259},"\u00c4":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm92,-282r7,-39r53,0r-8,39r-52,0xm167,-282r8,-39r53,0r-8,39r-53,0","w":259},"\u00c0":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm149,-277r-56,-52r57,0r36,52r-37,0","w":259},"\u00c5":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm122,-305v0,-21,17,-37,38,-37v21,0,38,16,38,37v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38xm180,-305v0,-11,-9,-19,-20,-19v-11,0,-19,8,-19,19v0,11,8,20,19,20v11,0,20,-9,20,-20","w":259},"\u00c3":{"d":"180,0r-9,-59r-105,0r-33,59r-58,0r147,-256r68,0r44,256r-54,0xm87,-99r78,0v-7,-37,-7,-82,-18,-116v-16,43,-40,78,-60,116xm114,-280r-23,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r23,0v-4,60,-61,44,-91,30v-7,0,-13,5,-17,16","w":259},"\u00c7":{"d":"107,48v2,-20,-30,-3,-34,-17r21,-26v-61,-7,-83,-54,-83,-99v0,-48,29,-168,139,-168v57,0,87,28,93,72r-50,10v-4,-27,-21,-41,-44,-41v-67,0,-82,100,-82,129v0,34,16,57,48,57v28,0,45,-14,59,-45r48,11v-17,50,-56,75,-109,75v-3,5,-12,12,-13,16v20,-5,38,7,38,24v0,31,-60,42,-87,23r9,-15v13,6,45,14,47,-6","w":246,"k":{",":9,".":9}},"\u00c9":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0xm108,-277r40,-52r59,0r-62,52r-37,0"},"\u00ca":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0xm163,-277r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0"},"\u00cb":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0xm71,-282r7,-39r53,0r-8,39r-52,0xm147,-282r7,-39r53,0r-8,39r-52,0"},"\u00c8":{"d":"1,0r50,-256r168,0r-8,41r-115,0r-12,63r108,0r-8,41r-108,0r-14,70r118,0r-8,41r-171,0xm126,-277r-56,-52r57,0r36,52r-37,0"},"\u00cd":{"d":"1,0r50,-256r54,0r-50,256r-54,0xm49,-277r40,-52r59,0r-62,52r-37,0","w":106},"\u00ce":{"d":"1,0r50,-256r54,0r-50,256r-54,0xm104,-277r-20,-31r-32,31r-42,0r52,-52r47,0r32,52r-37,0","w":106},"\u00cf":{"d":"1,0r50,-256r54,0r-50,256r-54,0xm15,-282r8,-39r52,0r-7,39r-53,0xm91,-282r7,-39r53,0r-8,39r-52,0","w":106},"\u00cc":{"d":"1,0r50,-256r54,0r-50,256r-54,0xm72,-277r-55,-52r57,0r35,52r-37,0","w":106},"\u00d1":{"d":"153,0v-22,-67,-48,-125,-64,-199r-2,0v-7,71,-23,133,-35,199r-51,0r50,-256r68,0r54,165v6,11,3,28,11,36r37,-201r51,0r-50,256r-69,0xm121,-280r-23,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r23,0v-4,60,-61,44,-91,30v-7,0,-13,5,-17,16","w":273,"k":{",":9,".":9}},"\u00d3":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm129,-277r40,-52r59,0r-62,52r-37,0","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00d4":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm184,-277r-20,-31r-32,31r-42,0r51,-52r48,0r32,52r-37,0","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00d6":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm93,-282r7,-39r53,0r-8,39r-52,0xm168,-282r8,-39r53,0r-8,39r-53,0","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00d2":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm152,-277r-56,-52r58,0r35,52r-37,0","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u00d5":{"d":"11,-92v0,-96,64,-170,139,-170v73,0,105,44,105,100v0,83,-49,168,-148,168v-50,0,-96,-32,-96,-98xm199,-162v0,-37,-18,-58,-50,-58v-50,0,-84,58,-84,130v0,33,18,57,48,57v59,0,86,-72,86,-129xm118,-280r-24,0v5,-60,61,-45,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-61,45,-91,30v-7,0,-13,5,-17,16","w":266,"k":{"V":4,"W":4,"Y":20,"\u00dd":20,"\u0178":20,",":13,".":13,"X":6}},"\u0160":{"d":"-1,-55r48,-16v0,52,91,47,91,0v0,-18,-9,-24,-52,-44v-41,-19,-56,-38,-56,-68v0,-33,25,-79,98,-79v56,0,81,27,83,54r-49,14v0,-19,-15,-30,-36,-30v-27,0,-42,18,-42,34v0,48,108,35,108,111v0,40,-30,85,-105,85v-40,0,-78,-13,-88,-61xm133,-298r33,-31r40,0r-50,52r-48,0r-31,-52r35,0","w":219,"k":{",":13,".":13}},"\u00da":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67xm122,-277r40,-52r60,0r-63,52r-37,0","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"\u00db":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67xm178,-277r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"\u00dc":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67xm89,-282r7,-39r53,0r-8,39r-52,0xm164,-282r8,-39r52,0r-7,39r-53,0","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"\u00d9":{"d":"202,-256r53,0v-30,107,-10,262,-150,262v-53,0,-89,-25,-89,-80v0,-11,1,-26,33,-182r54,0v-32,161,-33,173,-33,188v0,22,17,35,42,35v32,0,51,-21,60,-67xm145,-277r-55,-52r57,0r36,52r-38,0","w":253,"k":{",":13,".":13,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4}},"\u00dd":{"d":"83,-98r-60,-158r57,0r39,113v24,-40,53,-75,79,-113r63,0r-123,158r-19,98r-54,0xm116,-277r40,-52r59,0r-62,52r-37,0","w":240,"k":{"O":22,"\u00d8":22,"\u0152":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u00d5":22,",":40,".":40,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,":":20,";":20,"S":9,"\u0160":9}},"\u0178":{"d":"83,-98r-60,-158r57,0r39,113v24,-40,53,-75,79,-113r63,0r-123,158r-19,98r-54,0xm80,-282r7,-39r53,0r-8,39r-52,0xm156,-282r7,-39r53,0r-8,39r-52,0","w":240,"k":{"O":22,"\u00d8":22,"\u0152":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u00d5":22,",":40,".":40,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"-":33,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,":":20,";":20,"S":9,"\u0160":9}},"\u017d":{"d":"-6,-47r154,-167r-117,0r8,-42r181,0r-9,46r-157,168r126,0r-9,42r-186,0xm126,-298r33,-31r40,0r-50,52r-48,0r-31,-52r35,0","w":206},"\u00e1":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm88,-236r40,-52r60,0r-63,52r-37,0","w":206},"\u00e2":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm152,-236r-20,-31r-32,31r-42,0r51,-52r48,0r32,52r-37,0","w":206},"\u00e4":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm63,-241r8,-39r52,0r-7,39r-53,0xm139,-241r7,-39r53,0r-8,39r-52,0","w":206},"\u00e0":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm122,-236r-55,-52r57,0r35,52r-37,0","w":206},"\u00e5":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm94,-273v0,-21,16,-37,37,-37v21,0,38,16,38,37v0,21,-17,38,-38,38v-21,0,-37,-17,-37,-38xm151,-273v0,-11,-9,-19,-20,-19v-11,0,-19,8,-19,19v0,11,8,20,19,20v11,0,20,-9,20,-20","w":206},"\u00e3":{"d":"-3,-51v0,-66,70,-86,139,-84v10,-23,-1,-50,-24,-50v-21,0,-38,16,-44,34r-43,-14v17,-36,45,-55,92,-55v121,0,52,132,45,220r-51,0r5,-30v-30,24,-46,34,-68,34v-33,0,-51,-24,-51,-55xm122,-62r9,-43v-41,0,-84,11,-84,45v8,36,48,24,75,-2xm88,-239r-24,0v5,-60,61,-45,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-61,45,-91,30v-7,0,-13,5,-17,16","w":206},"\u00e7":{"d":"49,31r22,-27v-50,-7,-66,-48,-66,-83v0,-60,36,-141,111,-141v51,0,71,29,75,60r-46,12v0,-23,-10,-37,-30,-37v-45,0,-58,79,-58,111v0,32,18,41,32,41v24,0,39,-28,40,-38r45,12v-17,39,-45,63,-84,63r-15,18v20,-5,39,7,38,24v4,31,-60,42,-86,23r9,-15v13,7,45,13,47,-6v2,-12,-19,-15,-27,-9","w":193,"k":{",":13,".":13}},"\u00e9":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56xm91,-236r41,-52r59,0r-62,52r-38,0","k":{",":13,".":13}},"\u00ea":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56xm156,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","k":{",":13,".":13}},"\u00eb":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56xm67,-241r7,-39r53,0r-8,39r-52,0xm142,-241r8,-39r52,0r-7,39r-53,0","k":{",":13,".":13}},"\u00e8":{"d":"192,-94r-137,0v-6,32,6,62,34,62v18,0,40,-16,46,-32r42,14v-19,33,-48,54,-90,54v-51,0,-82,-30,-82,-84v0,-76,49,-140,112,-140v68,0,94,63,75,126xm62,-128r86,0v6,-29,-6,-56,-32,-56v-32,0,-50,38,-54,56xm126,-236r-56,-52r57,0r36,52r-37,0","k":{",":13,".":13}},"\u00ed":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm40,-236r40,-52r60,0r-63,52r-37,0","w":100},"\u00ee":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm99,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":100},"\u00ef":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm10,-241r7,-39r53,0r-8,39r-52,0xm85,-241r8,-39r52,0r-7,39r-53,0","w":100},"\u00ec":{"d":"-1,0r42,-215r52,0r-42,215r-52,0xm60,-236r-56,-52r58,0r35,52r-37,0","w":100},"\u00f1":{"d":"0,0r42,-215r53,0v-1,9,-6,22,-5,30v27,-23,54,-35,72,-35v23,0,46,14,46,44v0,17,-3,28,-32,176r-52,0v28,-139,30,-144,30,-153v-4,-42,-56,-15,-72,4r-29,149r-53,0xm94,-239r-24,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-61,45,-91,30v-7,0,-13,5,-17,16","w":226},"\u00f3":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm95,-236r40,-52r59,0r-62,52r-37,0","w":219,"k":{",":13,".":13}},"\u00f4":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm159,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":219,"k":{",":13,".":13}},"\u00f6":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm70,-241r7,-39r53,0r-8,39r-52,0xm145,-241r8,-39r53,0r-8,39r-53,0","w":219,"k":{",":13,".":13}},"\u00f2":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm129,-236r-56,-52r58,0r35,52r-37,0","w":219,"k":{",":13,".":13}},"\u00f5":{"d":"5,-77v0,-68,40,-143,117,-143v45,0,85,29,85,79v0,71,-39,145,-119,145v-58,0,-83,-39,-83,-81xm57,-73v0,27,17,40,34,40v46,0,64,-68,64,-105v0,-37,-20,-44,-37,-44v-44,0,-61,65,-61,109xm95,-239r-24,0v5,-60,61,-44,91,-30v8,0,14,-4,17,-16r24,0v-4,60,-61,45,-91,30v-7,0,-13,5,-17,16","w":219,"k":{",":13,".":13}},"\u0161":{"d":"-7,-50r46,-14v0,18,15,32,34,32v27,0,38,-19,38,-31v0,-37,-93,-15,-93,-86v0,-37,32,-71,87,-71v44,0,68,24,75,50r-45,13v-3,-14,-11,-27,-32,-27v-24,0,-34,16,-34,29v0,35,96,15,96,83v0,40,-31,76,-93,76v-47,0,-69,-20,-79,-54xm117,-257r33,-31r40,0r-51,52r-48,0r-31,-52r35,0","w":186,"k":{",":6,".":6}},"\u00fa":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4xm95,-236r40,-52r59,0r-62,52r-37,0","w":219},"\u00fb":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4xm159,-236r-20,-31r-32,31r-42,0r51,-52r48,0r31,52r-36,0","w":219},"\u00fc":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4xm68,-241r7,-39r53,0r-8,39r-52,0xm143,-241r8,-39r52,0r-7,39r-53,0","w":219},"\u00f9":{"d":"132,-66r30,-149r52,0r-42,215r-52,0v1,-9,6,-22,5,-30v-25,23,-53,34,-71,34v-23,0,-45,-14,-45,-48v0,-12,2,-23,31,-171r53,0v-28,139,-30,144,-30,153v3,40,57,15,69,-4xm129,-236r-56,-52r58,0r35,52r-37,0","w":219},"\u00fd":{"d":"51,-4r-35,-211r55,0v5,53,14,106,13,163v12,-20,18,-45,29,-65r49,-98r55,0r-128,238v-24,46,-60,59,-110,44r11,-39v28,11,48,2,61,-32xm85,-236r40,-52r59,0r-62,52r-37,0","w":200,"k":{",":33,".":33}},"\u00ff":{"d":"51,-4r-35,-211r55,0v5,53,14,106,13,163v12,-20,18,-45,29,-65r49,-98r55,0r-128,238v-24,46,-60,59,-110,44r11,-39v28,11,48,2,61,-32xm60,-241r7,-39r53,0r-8,39r-52,0xm135,-241r8,-39r52,0r-7,39r-53,0","w":200,"k":{",":33,".":33}},"\u017e":{"d":"-10,-38r131,-143v-31,4,-66,1,-100,2r7,-36r163,0r-7,38r-132,142v34,-2,71,0,107,-1r-6,36r-170,0xm117,-257r33,-31r40,0r-51,52r-48,0r-31,-52r35,0","w":186},"\u2206":{"d":"-17,0r5,-26r140,-237r51,0r37,237r-5,26r-228,0xm35,-35r136,0r-20,-117v-4,-18,-3,-54,-10,-66v-6,13,-22,42,-33,61","w":249},"\u2126":{"d":"-5,-35v17,-1,39,2,54,-1v-20,-21,-36,-56,-26,-105v14,-66,74,-120,142,-120v73,0,100,61,88,118v-10,50,-43,86,-72,108r54,0r-7,35r-99,0r6,-26v29,-16,61,-51,73,-109v10,-46,-5,-91,-51,-91v-44,0,-81,40,-92,93v-12,53,4,92,27,107r-5,26r-99,0","w":272},"\u03bc":{"d":"120,0v1,-8,6,-19,5,-26v-20,36,-53,38,-72,13r-16,83r-52,0r55,-285r53,0v-28,139,-30,144,-30,153v3,36,62,29,69,-4r30,-149r52,0r-42,215r-52,0","w":219},"\u03c0":{"d":"222,-157r-28,0v-8,45,-27,112,-28,157r-42,0v-4,-40,20,-114,27,-157r-57,0v-11,42,-37,121,-58,157r-42,0v22,-41,47,-114,57,-157v-19,0,-30,1,-39,4r1,-28v46,-22,152,-9,220,-12","w":225},"\u20ac":{"d":"159,-262v-63,0,-111,47,-128,93r-18,0r-15,23r26,0v-2,7,-4,14,-5,22v-21,-3,-21,14,-30,23r27,0v-2,23,0,50,11,68v38,60,106,40,158,18r10,-51v-19,23,-94,46,-115,14v-10,-15,-8,-37,-7,-49r67,0r15,-23r-79,0v1,-8,3,-15,4,-22r90,0r15,-23r-97,0v6,-22,35,-54,64,-52v24,2,36,6,54,21r28,-43v-19,-11,-49,-19,-75,-19"},"\u2113":{"d":"153,-66r15,18v-27,37,-58,51,-88,51v-46,-1,-58,-30,-54,-66v-7,5,-15,10,-23,15r-6,-23v13,-9,24,-16,36,-25r20,-94v14,-67,50,-93,85,-93v36,0,47,29,39,64v-10,45,-48,86,-104,130v-9,27,-3,58,23,58v22,0,43,-18,57,-35xm134,-253v-26,-7,-47,88,-53,125v34,-30,62,-64,68,-92v4,-20,1,-33,-15,-33","w":192},"\u212e":{"d":"95,-51v36,64,148,61,189,3r22,0v-26,31,-70,52,-118,52v-81,0,-148,-60,-148,-133v0,-74,67,-133,148,-133v83,1,151,59,149,137r-242,1r0,73xm279,-216v-45,-52,-149,-52,-184,10v1,24,-3,54,2,74r184,0v2,-25,3,-62,-2,-84","w":349},"\u2202":{"d":"62,-237r-7,-32v14,-9,38,-21,73,-21v55,0,93,48,73,141v-19,89,-70,152,-137,152v-53,0,-67,-47,-59,-87v12,-58,57,-96,102,-96v32,0,47,22,51,32v17,-48,2,-107,-42,-107v-24,0,-42,10,-54,18xm47,-83v-5,28,5,52,29,51v31,0,59,-42,71,-80v-20,-65,-90,-24,-100,29","w":215},"\u220f":{"d":"289,-219r-40,0r0,254r-42,0r0,-254r-89,0r0,254r-42,0r0,-254r-40,0r0,-38r253,0r0,38","w":298},"\u2211":{"d":"231,36r-196,0r0,-28r95,-119r-91,-117r0,-29r186,0r0,36v-41,2,-90,-4,-127,2r80,102r-88,113r141,0r0,40","w":238},"\u2219":{"d":"24,-110v0,-14,12,-25,26,-25v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25","w":106},"\u221a":{"d":"253,-307r-85,360r-35,0r-57,-164r-28,11r-8,-24r61,-24r42,123v4,11,3,24,8,30r72,-312r30,0","w":250},"\u221e":{"d":"224,-167v33,0,60,24,57,61v-6,77,-88,84,-127,20v-19,23,-40,43,-70,43v-31,0,-58,-25,-58,-61v0,-37,26,-63,61,-63v28,0,49,18,69,42v17,-19,35,-42,68,-42xm51,-104v0,21,14,37,37,37v22,0,39,-19,53,-36v-16,-21,-30,-41,-55,-41v-22,0,-35,17,-35,40xm221,-144v-23,0,-41,25,-54,38v23,28,36,39,55,39v22,0,34,-20,34,-37v0,-23,-14,-40,-35,-40","w":298},"\u222b":{"d":"79,-219v0,-71,28,-110,86,-93r-4,29v-36,-13,-44,19,-44,68v0,59,5,115,5,179v0,73,-30,113,-88,93r6,-31v34,13,45,-11,45,-62v0,-65,-6,-121,-6,-183","w":172},"\u2248":{"d":"77,-166v32,0,48,27,74,28v15,0,25,-10,35,-27r15,14v-12,22,-28,38,-50,38v-25,0,-50,-28,-76,-28v-17,0,-28,13,-37,27r-16,-14v11,-22,32,-38,55,-38xm77,-98v33,1,46,26,74,28v15,0,24,-10,35,-27r15,15v-12,22,-29,37,-51,37v-24,0,-51,-28,-75,-28v-17,0,-28,13,-37,27r-16,-14v11,-22,32,-38,55,-38","w":217},"\u2260":{"d":"167,-189r-15,34r53,0r0,25r-63,0r-23,52r86,0r0,24r-96,0r-20,44r-20,-9r16,-35r-52,0r0,-24r62,0r23,-52r-85,0r0,-25r95,0r19,-43","w":223},"\u2264":{"d":"211,-36r-170,-84r0,-27r170,-83r0,29r-144,68r144,67r0,30xm212,4r-172,0r0,-26r172,0r0,26","w":230},"\u2265":{"d":"42,-230r170,83r0,27r-170,84r0,-30r144,-68r-144,-67r0,-29xm212,4r-172,0r0,-26r172,0r0,26","w":230},"\u25ca":{"d":"231,-128r-75,146r-35,0r-74,-146r76,-147r34,0xm193,-127r-54,-113v-15,39,-36,74,-54,111v17,38,41,71,53,113","w":250},"\u00a0":{"w":106},"\u00ad":{"d":"5,-90r7,-36r89,0r-7,36r-89,0","w":113},"\u02c9":{"d":"17,-249r5,-27r113,0r-5,27r-113,0","w":100},"\u03a9":{"d":"-5,-35v17,-1,39,2,54,-1v-20,-21,-36,-56,-26,-105v14,-66,74,-120,142,-120v73,0,100,61,88,118v-10,50,-43,86,-72,108r54,0r-7,35r-99,0r6,-26v29,-16,61,-51,73,-109v10,-46,-5,-91,-51,-91v-44,0,-81,40,-92,93v-12,53,4,92,27,107r-5,26r-99,0","w":272},"\u2215":{"d":"-60,9r152,-276r28,0r-152,276r-28,0","w":60}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1991, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Vectora is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Full name:
 * VectoraLTStd-BlackItalic
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora LT Std","font-weight":850,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 6 3 5 3 9 2 4","ascent":"280","descent":"-80","x-height":"5","bbox":"-60 -344 388 90","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"48","stemv":"66","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":106,"k":{"\u201c":13,"\u2018":13,"T":27,"V":20,"W":20,"Y":33,"\u00dd":33,"\u0178":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"34,-88r25,-168r65,0r-42,168r-48,0xm13,0r11,-56r56,0r-11,56r-56,0","w":133},"\"":{"d":"121,-183r0,-97r43,0r0,97r-43,0xm50,-183r0,-97r44,0r0,97r-44,0","w":193},"#":{"d":"99,0r14,-72r-34,0r-13,72r-36,0r13,-72r-30,0r6,-34r30,0r9,-44r-30,0r6,-34r30,0r14,-72r36,0r-14,72r34,0r14,-72r36,0r-14,72r31,0r-7,34r-30,0r-9,44r30,0r-6,34r-30,0r-14,72r-36,0xm119,-106r9,-44r-34,0r-9,44r34,0"},"$":{"d":"106,-96r-11,52v40,1,43,-43,11,-52xm103,-166r10,-46v-28,0,-35,39,-10,46xm-11,-60r63,-19v1,9,7,29,26,34r12,-58v-33,-15,-73,-31,-73,-76v0,-50,43,-83,105,-83r6,-27r17,0r-6,27v49,5,74,32,76,60r-62,17v-1,-6,-4,-24,-23,-27r-11,53v36,15,80,34,80,78v0,39,-29,87,-114,87r-5,24r-17,0r5,-25v-67,-8,-78,-52,-79,-65"},"%":{"d":"77,-125v-38,0,-55,-22,-55,-52v0,-36,26,-85,75,-85v27,0,56,11,56,51v0,37,-22,86,-76,86xm96,-234v-19,0,-32,27,-32,58v0,13,4,22,16,22v19,0,32,-26,32,-57v0,-13,-4,-23,-16,-23xm208,5v-38,0,-55,-22,-55,-52v0,-36,26,-85,75,-85v27,0,56,11,56,51v0,37,-22,86,-76,86xm227,-104v-19,0,-32,27,-32,58v0,13,4,22,16,22v19,0,32,-26,32,-57v0,-13,-4,-23,-16,-23xm41,9r194,-275r30,0r-194,275r-30,0","w":306},"&":{"d":"190,0r-16,-18v-20,13,-52,23,-84,23v-66,0,-85,-40,-85,-71v0,-53,46,-70,65,-77v-10,-10,-25,-25,-25,-49v0,-48,46,-70,93,-70v51,0,79,24,79,59v0,45,-45,61,-66,71r41,51v19,-11,24,-44,24,-55r55,0v1,26,-22,72,-52,88r42,48r-71,0xm133,-218v-33,0,-29,44,-11,54v13,-5,37,-17,37,-32v0,-14,-8,-22,-26,-22xm100,-108v-41,11,-41,69,7,69v23,0,36,-7,42,-11","w":286},"\u2019":{"d":"23,-183r44,-97r56,0r-52,97r-48,0","w":106,"k":{"d":20,"\u0131":20,"s":13,"\u0161":13}},"(":{"d":"106,-283r30,27v-32,41,-78,97,-78,187v0,35,9,80,22,105r-37,21v-20,-41,-39,-79,-39,-137v0,-96,59,-158,102,-203","w":126},")":{"d":"14,57r-31,-27v32,-41,79,-97,79,-187v0,-35,-9,-80,-22,-105r37,-21v20,41,38,79,38,137v0,96,-58,158,-101,203","w":126},"*":{"d":"19,-187r17,-35r49,21r5,-55r38,0r-15,55r55,-21r6,35r-57,13r29,43r-33,21r-22,-48r-38,47r-26,-22r43,-41","w":173},"+":{"d":"86,0r0,-69r-69,0r0,-44r69,0r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0","w":216},",":{"d":"-22,41r45,-97r56,0r-53,97r-48,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"1,-88r8,-45r90,0r-9,45r-89,0","w":106},".":{"d":"1,0r11,-56r56,0r-11,56r-56,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"-27,0r163,-269r38,13r-163,268","w":146},"0":{"d":"2,-81v0,-86,34,-181,127,-181v50,0,81,28,81,81v0,73,-27,186,-124,186v-67,0,-84,-40,-84,-86xm89,-38v37,10,57,-94,57,-146v0,-23,-7,-33,-24,-33v-49,0,-56,136,-56,146v0,20,9,33,23,33"},"1":{"d":"79,0r36,-186r-62,43r-24,-43r103,-70r62,0r-49,256r-66,0"},"2":{"d":"-12,0r9,-48r110,-90v23,-19,34,-35,34,-52v0,-17,-11,-27,-26,-27v-27,0,-34,29,-34,41r-59,-10v7,-30,27,-76,99,-76v55,0,84,25,84,66v0,40,-21,62,-47,83r-81,68r99,0r-8,45r-180,0"},"3":{"d":"0,-64r59,-12v0,10,0,36,27,36v21,0,35,-20,35,-40v-1,-29,-26,-30,-49,-27r9,-49v22,0,59,0,59,-36v0,-18,-13,-25,-25,-25v-23,0,-30,22,-30,29r-54,-16v3,-7,22,-58,91,-58v59,0,82,31,82,63v1,40,-38,59,-66,65v26,4,48,22,48,55v0,41,-33,84,-100,84v-73,0,-84,-45,-86,-69"},"4":{"d":"90,0r8,-40r-109,0r11,-55r134,-161r65,0r-33,171r32,0r-9,45r-32,0r-7,40r-60,0xm108,-85r25,-108v-24,37,-60,73,-87,108r62,0"},"5":{"d":"210,-256r-9,46r-98,0r-8,42v59,-11,92,31,92,73v0,47,-30,100,-106,100v-58,0,-79,-31,-77,-71r53,-9v-5,20,4,35,25,36v24,0,40,-20,40,-46v0,-50,-65,-48,-93,-26r28,-145r153,0"},"6":{"d":"198,-256r-96,98v43,-15,89,7,89,64v0,57,-38,99,-103,99v-100,0,-96,-113,-48,-170r77,-91r81,0xm90,-40v38,0,53,-78,13,-79v-11,0,-18,2,-20,3v-3,5,-17,24,-17,48v0,19,10,28,24,28"},"7":{"d":"-12,0r147,-206r-103,0r10,-50r176,0r-8,45r-148,211r-74,0"},"8":{"d":"2,-58v0,-44,34,-60,62,-73v-58,-32,-36,-131,63,-131v43,0,80,18,80,58v0,12,-6,53,-60,70v13,5,39,20,39,55v0,46,-30,84,-100,84v-51,0,-84,-22,-84,-63xm66,-63v0,18,11,25,26,25v17,0,32,-14,32,-34v0,-19,-13,-30,-22,-35v-16,6,-36,17,-36,44xm90,-190v0,19,16,27,24,33v12,-5,34,-17,34,-38v0,-16,-12,-24,-28,-24v-16,0,-30,11,-30,29"},"9":{"d":"11,0r96,-99v-42,18,-88,-6,-89,-62v0,-63,43,-101,104,-101v116,2,89,127,37,186r-67,76r-81,0xm118,-217v-39,0,-51,78,-12,78v11,0,18,-2,20,-3v3,-5,16,-23,16,-47v0,-19,-10,-28,-24,-28"},":":{"d":"1,0r11,-56r56,0r-11,56r-56,0xm31,-161r11,-56r56,0r-11,56r-56,0","w":106,"k":{" ":13}},";":{"d":"-22,41r45,-97r56,0r-53,97r-48,0xm31,-161r11,-56r56,0r-11,56r-56,0","w":106,"k":{" ":13}},"<":{"d":"17,-74r0,-34r182,-77r0,41r-126,53r126,52r0,42","w":216},"=":{"d":"17,-110r0,-43r182,0r0,43r-182,0xm17,-29r0,-43r182,0r0,43r-182,0","w":216},">":{"d":"199,-108r0,34r-182,77r0,-42r126,-52r-126,-53r0,-41","w":216},"?":{"d":"66,-88v-5,-54,64,-62,74,-106v0,-14,-10,-23,-25,-23v-30,0,-33,26,-34,32r-54,-10v0,-9,22,-67,90,-67v96,0,100,85,47,120v-21,14,-47,19,-49,54r-49,0xm49,0r10,-56r57,0r-11,56r-56,0","w":200},"@":{"d":"144,-161v-40,-4,-53,70,-9,72v43,4,51,-72,9,-72xm186,-193r34,0r-18,97v0,5,3,9,9,9v15,0,32,-16,32,-55v0,-65,-39,-88,-99,-88v-58,0,-99,42,-99,99v0,66,41,105,99,105v38,0,62,-9,80,-23r35,0v-26,35,-62,55,-115,55v-72,0,-132,-56,-132,-137v0,-74,62,-131,132,-131v75,0,132,39,132,109v0,84,-66,98,-87,98v-16,1,-23,-6,-29,-16v-30,34,-89,10,-89,-43v0,-69,72,-107,112,-61","w":288},"A":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0","w":273},"B":{"d":"0,0r49,-256v76,4,190,-21,189,57v0,22,-11,57,-59,66r0,3v24,4,43,22,43,52v0,44,-38,78,-94,78r-128,0xm98,-156v33,-2,72,10,72,-28v0,-31,-35,-20,-63,-22xm77,-50v37,0,77,6,77,-33v0,-29,-38,-21,-66,-22","w":246,"k":{",":9,".":9}},"C":{"d":"252,-184r-66,13v-1,-14,-8,-38,-35,-38v-51,0,-69,70,-69,116v0,33,14,47,38,47v31,0,48,-34,51,-42r60,14v-1,6,-21,80,-111,80v-65,0,-111,-34,-111,-108v0,-78,48,-160,149,-160v82,0,93,66,94,78","w":253,"k":{",":9,".":9}},"D":{"d":"0,0r49,-256r103,0v68,0,107,40,107,108v0,85,-61,148,-141,148r-118,0xm80,-52v74,10,106,-34,106,-98v0,-40,-30,-59,-77,-53","w":273,"k":{"V":6,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"E":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0","w":226},"F":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-11,54r106,0r-10,52r-105,0r-19,98r-70,0","w":219,"k":{"\u00e3":4,"\u00e0":4,"\u00e4":4,",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e5":4}},"G":{"d":"170,-98r-38,0r10,-50r104,0r-24,124v-17,9,-53,30,-102,30v-65,0,-111,-34,-111,-108v0,-78,49,-160,149,-160v81,0,96,52,98,67r-67,16v-1,-9,-8,-31,-38,-31v-55,0,-69,76,-69,116v0,48,48,57,80,39","w":266,"k":{",":9,".":9}},"H":{"d":"156,0r20,-108r-86,0r-20,108r-70,0r49,-256r70,0r-19,95r86,0r18,-95r70,0r-49,256r-69,0","w":273},"I":{"d":"0,0r49,-256r70,0r-49,256r-70,0","w":119},"J":{"d":"66,-95r31,-161r70,0r-32,170v-13,66,-48,92,-108,92v-31,0,-47,-11,-58,-18r37,-47v4,4,11,13,27,13v20,0,28,-23,33,-49","w":166,"k":{",":9,".":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"K":{"d":"0,0r49,-256r70,0r-19,99r91,-99r87,0r-120,121r78,135r-80,0r-65,-114r-21,114r-70,0","w":259,"k":{"O":11,"\u00d8":11,"\u0152":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"y":9,"\u00fd":9,"\u00ff":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9}},"L":{"d":"0,0r49,-256r70,0r-39,201r96,0r-10,55r-166,0","w":193,"k":{"T":33,"V":33,"W":29,"y":14,"\u00fd":14,"\u00ff":14,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":40,"\u2019":40}},"M":{"d":"243,0r41,-204v-10,4,-10,21,-17,30r-86,174r-52,0r-24,-204r-2,0r-38,204r-65,0r49,-256r106,0v4,57,16,111,15,169r3,0v20,-54,56,-116,81,-169r104,0r-49,256r-66,0","w":360},"N":{"d":"0,0r49,-256r89,0r48,185r3,0v8,-60,23,-126,33,-185r66,0r-49,256r-90,0r-40,-138v-5,-12,-5,-33,-11,-45v-6,63,-23,123,-33,183r-65,0","w":286,"k":{",":9,".":9}},"O":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"P":{"d":"0,0r49,-256v83,1,192,-16,188,69v-3,84,-65,108,-151,100r-16,87r-70,0xm96,-139v38,2,73,1,73,-36v0,-34,-29,-29,-60,-29","w":226,"k":{",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"Q":{"d":"207,31r-42,39r-98,-73v-36,-14,-58,-47,-58,-99v0,-78,49,-160,149,-160v65,0,110,34,110,108v0,66,-35,135,-106,154xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114","w":280,"k":{",":9,".":9}},"R":{"d":"140,0r-24,-100r-27,0r-19,100r-70,0r49,-256v82,2,189,-18,189,67v0,58,-38,76,-61,79r34,110r-71,0xm99,-150v36,0,68,6,71,-33v2,-28,-34,-23,-61,-23","w":246,"k":{"T":6,"V":6,"W":6,"Y":27,"\u00dd":27,"\u0178":27}},"S":{"d":"0,-60r63,-19v2,10,9,35,39,35v24,0,37,-9,37,-27v0,-27,-48,-35,-70,-47v-26,-14,-41,-31,-41,-61v0,-50,44,-83,106,-83v61,0,90,29,92,60r-62,17v-1,-7,-5,-27,-34,-27v-15,0,-32,7,-32,24v0,28,39,31,60,41v84,37,69,153,-59,153v-84,0,-98,-52,-99,-66","w":233,"k":{",":13,".":13}},"T":{"d":"44,0r38,-201r-67,0r11,-55r204,0r-11,55r-67,0r-38,201r-70,0","w":206,"k":{"\u00f2":6,"\u00f6":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,",":33,".":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"a":6,"\u00e6":6,"\u00e1":6,"e":6,"\u00e9":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f5":6,"-":27}},"U":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"V":{"d":"52,0r-28,-256r71,0r13,160v2,12,-2,26,1,35v28,-67,64,-130,95,-195r73,0r-135,256r-90,0","w":253,"k":{"\u00f6":9,"\u00f4":9,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,",":33,".":33,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":13,"\u00e6":13,"\u00e1":13,"e":9,"\u00e9":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f2":9,"\u00f5":9,"-":27}},"W":{"d":"194,0r6,-204r-3,0v-21,71,-49,136,-73,204r-87,0r-8,-256r66,0r-3,204r3,0v18,-71,47,-136,69,-204r88,0r0,162v2,13,-6,34,-1,42v15,-67,48,-140,70,-204r67,0r-105,256r-89,0","w":366,"k":{"\u00e4":6,"u":-4,"\u00fa":-4,"\u00fb":-4,"\u00fc":-4,"\u00f9":-4,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"-":9}},"X":{"d":"159,0v-10,-30,-26,-63,-32,-95r-69,95r-81,0r108,-135r-54,-121r76,0v11,28,16,63,30,88v15,-27,41,-61,59,-88r79,0r-99,125r58,131r-75,0","w":259},"Y":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0","w":259,"k":{"\u00fc":13,"\u00f6":27,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"Z":{"d":"-14,0r11,-62r144,-141r-111,0r10,-53r193,0r-12,61r-146,141r119,0r-10,54r-198,0","w":219},"[":{"d":"-8,47r61,-320r81,0r-6,31r-28,0r-50,258r29,0r-6,31r-81,0","w":106},"\\":{"d":"136,12r-163,-268r38,-13r163,269","w":146},"]":{"d":"-35,47r6,-31r29,0r49,-258r-28,0r5,-31r81,0r-61,320r-81,0","w":106},"^":{"d":"68,-125r-42,0r63,-131r38,0r63,131r-42,0r-40,-88","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"24,-183r52,-97r48,0r-44,97r-56,0","w":106,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"a":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3","w":219},"b":{"d":"-2,0r53,-280r68,0r-16,86v13,-14,35,-28,57,-28v48,0,63,39,63,78v0,65,-30,149,-100,149v-30,1,-45,-16,-53,-29r-4,24r-68,0xm95,-154r-17,88v5,8,12,21,29,21v30,0,47,-52,47,-94v0,-43,-47,-36,-59,-15","w":240,"k":{",":13,".":13}},"c":{"d":"128,-79r59,15v-13,37,-45,69,-95,69v-55,0,-86,-36,-86,-90v0,-58,29,-137,111,-137v59,0,83,30,85,66r-60,16v4,-20,-3,-34,-24,-35v-40,0,-46,80,-46,104v0,14,5,28,25,28v19,0,30,-21,31,-36","w":206,"k":{",":9,".":9}},"d":{"d":"124,0v1,-7,5,-16,3,-22v-12,16,-36,27,-58,27v-43,0,-61,-36,-61,-75v0,-73,31,-152,100,-152v25,0,41,11,53,28r16,-86r68,0r-53,280r-68,0xm136,-63r17,-92v-4,-5,-12,-17,-28,-17v-35,0,-48,57,-48,93v0,39,42,38,59,16","w":240},"e":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42","w":226,"k":{",":13,".":13}},"f":{"d":"10,0r29,-153r-31,0r9,-46r31,0v0,-74,66,-107,137,-88r-8,45v-34,-13,-64,8,-62,43r45,0r-9,46r-44,0r-30,153r-67,0","w":146,"k":{"\u201d":-6,"\u2019":-6,",":25,".":25}},"g":{"d":"19,-144v0,-67,73,-89,139,-73r85,0r-8,36r-47,0v35,49,-20,112,-98,98v-11,3,-13,12,3,17v40,12,101,14,101,62v0,40,-42,77,-121,77v-58,0,-93,-22,-93,-51v0,-27,28,-49,53,-58v-22,-18,6,-51,22,-54v-14,-7,-36,-21,-36,-54xm141,-153v0,-18,-12,-25,-27,-25v-23,0,-35,12,-35,31v0,34,62,26,62,-6xm128,9v0,-18,-48,-20,-66,-27v-10,6,-22,17,-22,28v0,15,17,21,42,21v29,0,46,-7,46,-22","w":226,"k":{".":9}},"h":{"d":"-2,0r53,-280r68,0r-18,93v15,-11,44,-35,74,-35v41,0,52,29,44,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0","w":240},"i":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm43,-235r8,-45r68,0r-8,45r-68,0","w":113},"j":{"d":"1,-18r38,-199r68,0r-43,222v1,41,-56,85,-116,62r12,-50v23,12,35,-6,41,-35xm43,-235r8,-45r68,0r-8,45r-68,0","w":113},"k":{"d":"131,0r-46,-105r-19,105r-68,0r53,-280r68,0r-29,158v20,-35,50,-63,74,-95r81,0r-93,103r56,114r-77,0","w":233},"l":{"d":"-2,0r53,-280r68,0r-53,280r-68,0","w":113},"m":{"d":"-2,0r41,-217r68,0v-1,9,-6,22,-5,29v22,-33,106,-55,113,3v16,-15,41,-37,77,-37v38,0,50,30,42,68r-29,154r-68,0r27,-148v-5,-30,-36,-7,-51,3r-28,145r-68,0r28,-148v-5,-30,-37,-8,-52,3r-27,145r-68,0","w":353},"n":{"d":"-2,0r41,-217r68,0r-6,30v15,-11,45,-35,75,-35v41,0,50,30,43,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0","w":240},"o":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34","w":233,"k":{",":13,".":13}},"p":{"d":"-14,70r55,-287r68,0v0,7,-5,17,-3,22v13,-15,35,-27,57,-27v43,0,62,36,62,75v0,73,-31,152,-100,152v-25,0,-41,-11,-53,-28r-18,93r-68,0xm97,-154r-17,92v4,5,12,17,28,17v37,0,48,-57,48,-94v0,-43,-43,-34,-59,-15","w":240,"k":{",":13,".":13}},"q":{"d":"108,70r17,-93v-13,14,-35,28,-57,28v-48,0,-63,-39,-63,-78v0,-67,32,-149,100,-149v30,-1,45,16,53,29r5,-24r67,0r-54,287r-68,0xm133,-63r17,-89v-5,-8,-13,-20,-29,-20v-35,0,-47,56,-47,94v0,42,47,37,59,15","w":240},"r":{"d":"-2,0r41,-217r68,0v0,10,-9,27,-5,34v17,-24,47,-44,77,-34r-12,60v-26,-12,-64,5,-76,21r-25,136r-68,0","w":159,"k":{",":27,".":27,"-":6}},"s":{"d":"-6,-51r59,-17v1,9,3,26,29,26v15,0,26,-7,26,-18v1,-20,-35,-24,-52,-31v-21,-9,-39,-21,-39,-56v0,-47,41,-75,93,-75v58,0,79,37,84,52r-57,17v-1,-6,-4,-24,-27,-24v-18,0,-27,10,-27,20v-2,19,37,23,54,29v25,9,42,24,42,53v0,33,-24,80,-102,80v-63,0,-76,-32,-83,-56","w":200,"k":{",":9,".":9}},"t":{"d":"5,-153r9,-46r34,0r8,-45r72,-29r-14,74r51,0r-9,46r-51,0r-16,87v-4,24,33,23,47,17r-9,47v-35,12,-109,12,-106,-44v1,-37,13,-73,18,-107r-34,0","w":159},"u":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0","w":233},"v":{"d":"41,0r-25,-217r70,0v5,49,1,107,10,152v14,-56,43,-101,62,-152r72,0r-110,217r-79,0","k":{",":27,".":27,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"w":{"d":"15,-217r70,0r5,151r4,0v14,-54,40,-101,59,-151r83,0r2,151v12,-1,6,-17,13,-27r47,-124r70,0r-99,217r-85,0r-3,-134v0,-8,1,-14,2,-19v-9,0,-6,8,-11,20r-52,133r-84,0","w":353,"k":{",":27,".":27,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"x":{"d":"127,0r-20,-77r-52,77r-78,0r90,-116r-40,-101r71,0v7,22,11,48,20,68v10,-22,30,-47,43,-68r76,0r-79,101r41,116r-72,0","w":226},"y":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"z":{"d":"-15,0r10,-50r116,-122v-23,4,-61,2,-89,2r9,-47r172,0r-9,49r-117,123v25,-4,67,-1,97,-2r-9,47r-180,0","w":200},"{":{"d":"87,47v-44,4,-83,-3,-75,-53r12,-75v0,-12,-21,-14,-29,-14r6,-36v9,0,35,-3,39,-22r13,-70v10,-49,44,-53,95,-50r-7,33v-58,-8,-44,52,-55,92v-8,27,-33,34,-45,35v10,1,32,3,32,24v0,33,-12,61,-16,93v-2,13,22,10,36,10","w":119},"|":{"d":"18,90r0,-360r44,0r0,360r-44,0","w":79},"}":{"d":"26,-273v44,-4,81,3,74,53r-11,75v0,12,21,14,29,14r-6,36v-9,0,-35,3,-39,22r-14,70v-10,49,-43,53,-94,50r6,-33v59,8,45,-52,56,-92v7,-27,33,-34,45,-35v-16,2,-41,-16,-30,-42v4,-25,11,-48,13,-75v1,-13,-22,-9,-36,-10","w":119},"~":{"d":"70,-123v24,0,56,23,77,24v14,0,23,-13,31,-26r13,35v-11,15,-23,31,-45,31v-36,0,-90,-51,-108,1r-13,-34v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"99,-128r-24,168r-66,0r42,-168r48,0xm120,-217r-11,56r-56,0r11,-56r56,0","w":133},"\u00a2":{"d":"130,-173v-52,-14,-61,78,-57,111xm30,23r15,-30v-26,-15,-39,-42,-39,-78v0,-58,29,-137,111,-137v14,0,27,2,36,5r15,-30r16,7r-16,29v22,13,33,33,34,55r-60,16v1,-8,2,-13,0,-20r-58,114v22,12,45,-14,44,-33r59,15v-13,46,-67,83,-127,64r-15,30"},"\u00a3":{"d":"-4,0r8,-45r24,0r13,-67r-27,0r7,-39r27,0v8,-63,33,-111,105,-111v64,0,77,43,77,60r-59,13v0,-10,-3,-28,-24,-28v-31,0,-31,39,-38,66r52,0r-7,39r-52,0r-13,67r96,0r-9,45r-180,0"},"\u2044":{"d":"-60,9r149,-275r31,0r-149,275r-31,0","w":60},"\u00a5":{"d":"56,0r8,-39r-50,0r5,-27r50,0r5,-28r-49,0r5,-27r36,0r-40,-135r60,0r24,112r58,-112r64,0r-84,135r35,0r-5,27r-46,0r-6,28r47,0r-5,27r-47,0r-7,39r-58,0"},"\u0192":{"d":"-17,41r24,-38v15,10,32,4,38,-21r25,-104r-42,0r8,-34r42,0v14,-52,17,-106,89,-106v22,0,38,6,42,10r-25,38v-33,-21,-41,30,-47,58r42,0r-8,34r-42,0r-22,92v-18,75,-56,83,-80,83v-23,0,-39,-7,-44,-12"},"\u00a7":{"d":"103,-13v-13,-37,-91,-32,-90,-83v0,-36,28,-53,51,-60v-50,-33,-9,-106,66,-106v57,0,72,32,73,38r-46,23v-1,-3,-7,-22,-35,-22v-13,0,-26,7,-26,20v0,34,94,38,94,91v0,31,-29,48,-48,52v8,6,20,14,20,36v0,48,-42,73,-95,73v-62,0,-74,-39,-75,-44r46,-21v1,4,4,24,34,24v19,0,31,-9,31,-21xm63,-115v0,32,37,27,56,43v25,-9,30,-42,-3,-54r-30,-14v-12,4,-23,11,-23,25"},"\u00a4":{"d":"13,-59r20,-21v-21,-27,-20,-71,-1,-99r-19,-20r24,-24r20,20v28,-21,71,-21,99,0r20,-20r25,24r-20,20v19,28,21,71,0,99r20,21r-25,24r-20,-20v-28,20,-71,20,-99,0r-20,20xm57,-129v0,27,23,49,50,49v27,0,49,-22,49,-49v0,-27,-22,-50,-49,-50v-27,0,-50,23,-50,50"},"'":{"d":"46,-183r0,-97r43,0r0,97r-43,0","w":106},"\u201c":{"d":"112,-183r53,-97r47,0r-44,97r-56,0xm24,-183r52,-97r48,0r-44,97r-56,0","w":193,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"\u00ab":{"d":"0,-118r77,-84r33,28r-55,63r34,70r-39,21xm96,-118r77,-84r33,28r-55,63r34,70r-40,21"},"\u2039":{"d":"-1,-118r77,-84r33,28r-55,63r34,70r-40,21","w":120},"\u203a":{"d":"110,-103r-77,84r-33,-29r55,-63r-34,-69r39,-21","w":120},"\u2013":{"d":"-9,-91r9,-39r180,0r-9,39r-180,0","w":180},"\u2020":{"d":"41,45r35,-181r-63,0r10,-54r63,0r13,-66r64,0r-13,66r63,0r-10,54r-63,0r-35,181r-64,0"},"\u2021":{"d":"44,45r11,-59r-59,0r9,-50r60,0r16,-83r-59,0r9,-50r59,0r12,-59r61,0r-11,59r57,0r-10,50r-57,0r-16,83r57,0r-9,50r-58,0r-11,59r-61,0"},"\u00b7":{"d":"20,-102v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":106},"\u00b6":{"d":"45,44r31,-161v-32,0,-57,-28,-57,-63v0,-42,27,-76,92,-76r113,0r-57,300r-44,0r52,-268r-36,0r-51,268r-43,0"},"\u2022":{"d":"26,-128v0,-35,29,-64,64,-64v35,0,64,29,64,64v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":180},"\u201a":{"d":"-22,41r45,-97r56,0r-53,97r-48,0","w":106},"\u201e":{"d":"-22,41r45,-97r56,0r-53,97r-48,0xm66,41r44,-97r56,0r-53,97r-47,0","w":193},"\u201d":{"d":"22,-183r44,-97r56,0r-53,97r-47,0xm110,-183r44,-97r56,0r-52,97r-48,0","w":193,"k":{" ":13}},"\u00bb":{"d":"204,-103r-77,84r-33,-29r55,-63r-34,-69r40,-21xm109,-103r-77,84r-33,-29r55,-63r-35,-69r40,-21"},"\u2026":{"d":"27,0r10,-56r57,0r-11,56r-56,0xm147,0r10,-56r56,0r-10,56r-56,0xm266,0r11,-56r56,0r-10,56r-57,0","w":360},"\u2030":{"d":"183,5v-28,0,-51,-14,-51,-50v0,-39,22,-85,69,-85v28,0,51,14,51,50v0,39,-22,85,-69,85xm184,-22v21,0,30,-35,30,-62v0,-10,-3,-19,-15,-19v-21,0,-29,35,-29,62v0,10,2,19,14,19xm316,-22v21,0,30,-35,30,-62v0,-10,-3,-19,-15,-19v-21,0,-29,35,-29,62v0,10,2,19,14,19xm314,5v-28,0,-50,-14,-50,-50v0,-39,22,-85,69,-85v28,0,50,14,50,50v0,39,-22,85,-69,85xm67,-128v-28,0,-50,-13,-50,-49v0,-39,22,-85,69,-85v28,0,50,13,50,49v0,39,-22,85,-69,85xm69,-155v21,0,29,-35,29,-62v0,-10,-2,-18,-14,-18v-21,0,-30,34,-30,61v0,10,3,19,15,19xm22,9r194,-275r31,0r-195,275r-30,0","w":399},"\u00bf":{"d":"134,-129v6,54,-65,61,-74,106v0,14,10,23,25,23v30,0,33,-26,34,-32r54,10v0,9,-21,67,-89,67v-96,0,-102,-85,-48,-120v21,-14,47,-19,49,-54r49,0xm152,-217r-11,56r-56,0r10,-56r57,0","w":200},"`":{"d":"8,-289r73,0r38,52r-47,0","w":100},"\u00b4":{"d":"47,-237r39,-52r75,0r-67,52r-47,0","w":100},"\u02c6":{"d":"0,-237r53,-52r59,0r31,52r-43,0r-19,-27r-31,27r-50,0","w":100},"\u02dc":{"d":"34,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r29,0v5,12,-17,63,-59,49v-13,-8,-51,-20,-52,2","w":100},"\u00af":{"d":"11,-248r6,-32r123,0r-6,32r-123,0","w":100},"\u02d8":{"d":"-9,-289r28,0v0,4,3,27,34,27v29,0,40,-21,42,-27r30,0v-3,9,-18,56,-72,56v-55,0,-62,-43,-62,-56","w":100},"\u02d9":{"d":"46,-239r9,-48r63,0r-9,48r-63,0","w":100},"\u00a8":{"d":"-3,-239r9,-48r63,0r-9,48r-63,0xm82,-239r9,-48r63,0r-9,48r-63,0","w":100},"\u02da":{"d":"36,-270v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm58,-270v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":100},"\u00b8":{"d":"2,31r24,-32r22,0r-16,23v19,-4,39,5,39,25v0,42,-70,38,-92,23r10,-17v10,6,47,15,48,-5v1,-10,-18,-11,-26,-7","w":100},"\u02dd":{"d":"-9,-237r31,-52r65,0r-55,52r-41,0xm67,-237r40,-52r65,0r-64,52r-41,0","w":100},"\u02db":{"d":"93,38r-6,29v-16,14,-90,18,-86,-19v3,-28,38,-47,61,-60r32,0v-12,11,-39,24,-40,43v-2,16,28,14,39,7","w":100},"\u02c7":{"d":"17,-289r43,0r20,27r31,-27r50,0r-53,52r-59,0","w":100},"\u2014":{"d":"-9,-91r9,-39r360,0r-9,39r-360,0","w":360},"\u00c6":{"d":"155,0r11,-55r-75,0r-37,55r-79,0r184,-256r204,0r-10,52r-93,0r-9,47r86,0r-10,53r-86,0r-10,52r96,0r-10,52r-162,0xm175,-105v4,-34,18,-75,18,-106v-19,36,-46,72,-68,106r50,0","w":360},"\u00aa":{"d":"86,-129v0,-5,4,-13,2,-17v-18,26,-79,29,-76,-15v3,-41,55,-46,92,-51v1,-13,5,-24,-11,-23v-18,0,-23,14,-25,17r-36,-10v6,-13,20,-34,61,-34v42,0,63,18,54,58r-16,75r-45,0xm94,-168r5,-22v-16,4,-42,4,-42,20v-1,19,31,10,37,2","w":142},"\u0141":{"d":"0,0r16,-81r-26,15r6,-36r27,-16r26,-138r70,0r-18,93r71,-41r-6,36r-72,41r-14,72r96,0r-10,55r-166,0","w":193,"k":{"T":33,"V":33,"W":29,"y":14,"\u00fd":14,"\u00ff":14,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":40,"\u2019":40}},"\u00d8":{"d":"195,-169r-109,100v7,17,21,23,36,23v61,-3,74,-78,73,-123xm82,-87r108,-100v-7,-16,-20,-22,-35,-22v-61,3,-74,76,-73,122xm-1,-11r27,-24v-49,-94,13,-227,132,-227v34,0,62,9,82,29r26,-24r12,11r-27,25v47,95,-7,228,-131,227v-36,0,-65,-10,-84,-29r-25,23","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0152":{"d":"173,-261v60,0,124,6,189,5r-10,52r-92,0r-9,47r85,0r-10,53r-85,0r-10,52r95,0r-10,52v-134,-5,-306,35,-306,-109v0,-45,28,-152,163,-152xm163,-55r28,-148v-61,-16,-108,29,-108,88v0,48,29,61,80,60","w":360,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00ba":{"d":"9,-180v0,-35,27,-82,80,-82v41,0,63,21,63,53v0,35,-27,83,-81,83v-41,0,-62,-21,-62,-54xm54,-175v0,14,7,20,18,20v18,0,34,-26,34,-58v0,-14,-6,-21,-18,-21v-17,0,-34,27,-34,59","w":142},"\u00e6":{"d":"323,-89r-138,0v-6,24,1,47,28,46v19,0,33,-18,37,-26r56,19v-12,19,-39,55,-101,55v-25,0,-58,-11,-72,-35v-28,34,-138,62,-138,-21v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v44,0,60,18,66,26v51,-54,151,-23,147,64v0,14,-2,35,-6,43xm192,-133r70,0v10,-22,-6,-42,-27,-42v-27,0,-39,27,-43,42xm119,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3","w":339},"\u0131":{"d":"-2,0r41,-217r68,0r-41,217r-68,0","w":113},"\u0142":{"d":"-2,0r19,-100r-27,18r5,-34r28,-18r28,-146r68,0r-19,98r25,-15r-6,33r-25,16r-28,148r-68,0","w":113},"\u00f8":{"d":"152,-138r-79,74v3,15,13,21,28,21v30,0,51,-54,51,-95xm72,-84r78,-72v-4,-13,-13,-18,-27,-18v-36,0,-51,54,-51,90xm-10,-6r28,-26v-40,-77,10,-190,108,-190v31,0,54,9,69,23r28,-26r10,11r-28,27v42,77,-8,192,-107,192v-32,0,-56,-10,-71,-26r-27,26","w":233,"k":{",":13,".":13}},"\u0153":{"d":"270,-69r56,19v-12,19,-39,55,-101,55v-26,0,-46,-8,-61,-26v-12,13,-35,26,-73,26v-54,0,-88,-34,-88,-90v0,-63,43,-137,122,-137v37,0,58,11,70,24v50,-47,153,-26,153,66v0,14,-1,35,-5,43r-139,0v-4,25,2,47,29,46v19,0,33,-18,37,-26xm212,-133r70,0v8,-23,-6,-42,-27,-42v-27,0,-39,27,-43,42xm71,-77v0,24,11,34,28,34v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97","w":360,"k":{",":13,".":13}},"\u00df":{"d":"-2,0r37,-193v13,-61,46,-91,110,-91v44,0,80,18,80,63v0,34,-23,64,-61,68r-2,3v19,3,54,15,54,59v0,65,-65,113,-136,91r17,-49v29,13,58,-10,56,-45v-1,-27,-19,-32,-41,-31r8,-46v26,1,40,-8,41,-42v-7,-38,-51,-24,-57,10r-38,203r-68,0","w":240,"k":{",":9,".":9}},"\u00b9":{"d":"56,-105r22,-110r-39,25r-17,-27r68,-41r43,0r-32,153r-45,0","w":138},"\u00ac":{"d":"156,-39r0,-71r-139,0r0,-43r182,0r0,114r-43,0","w":216},"\u00b5":{"d":"-15,70r54,-287r68,0r-28,150v5,34,50,16,54,-6r28,-144r67,0r-41,217r-68,0v1,-8,6,-18,4,-25v-2,16,-41,41,-56,18r-15,77r-67,0","w":233},"\u2122":{"d":"53,-108r0,-116r-40,0r0,-32r124,0r0,32r-41,0r0,116r-43,0xm307,-108r0,-97r-32,97r-32,0r-33,-97r0,97r-39,0r0,-148r56,0r32,86r32,-86r56,0r0,148r-40,0","w":360},"\u00d0":{"d":"0,0r23,-123r-27,0r5,-27r27,0r21,-106r103,0v68,0,107,40,107,108v0,85,-61,148,-141,148r-118,0xm143,-150r-5,27r-44,0r-14,71v74,10,106,-34,106,-98v0,-40,-30,-59,-77,-53r-10,53r44,0","w":273,"k":{"V":6,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00bd":{"d":"56,9r149,-275r30,0r-149,275r-30,0xm41,-105r23,-110r-40,25r-16,-27r68,-41r42,0r-31,153r-46,0xm165,0r6,-28r71,-55v15,-12,23,-21,23,-31v0,-10,-7,-15,-17,-15v-17,0,-22,17,-22,24r-38,-7v5,-18,17,-45,64,-45v72,0,68,69,25,89v-17,14,-37,25,-53,40r64,0r-6,28r-117,0","w":320},"\u00b1":{"d":"87,-54r0,-42r-70,0r0,-44r70,0r0,-42r43,0r0,42r69,0r0,44r-69,0r0,42r-43,0xm17,0r0,-43r182,0r0,43r-182,0","w":216},"\u00de":{"d":"90,-108v38,2,73,1,73,-36v0,-34,-29,-29,-60,-29xm0,0r49,-256r70,0r-6,31v66,-4,120,9,118,69v-2,83,-64,108,-150,100r-11,56r-70,0","w":226},"\u00bc":{"d":"226,0r5,-23r-70,0r6,-34r87,-97r46,0r-21,102r21,0r-6,29r-21,0r-5,23r-42,0xm239,-52v4,-21,13,-45,15,-64r-56,64r41,0xm70,9r149,-275r31,0r-149,275r-31,0xm56,-105r22,-110r-39,25r-17,-27r68,-41r43,0r-32,153r-45,0","w":320},"\u00f7":{"d":"17,-69r0,-44r182,0r0,44r-182,0xm75,-166v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34xm75,-17v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":216},"\u00a6":{"d":"18,63r0,-126r44,0r0,126r-44,0xm18,-117r0,-126r44,0r0,126r-44,0","w":79},"\u00b0":{"d":"20,-202v0,-33,28,-60,61,-60v33,0,60,27,60,60v0,33,-27,61,-60,61v-33,0,-61,-28,-61,-61xm56,-202v0,14,11,25,25,25v14,0,24,-11,24,-25v0,-14,-10,-24,-24,-24v-14,0,-25,10,-25,24","w":144},"\u00fe":{"d":"-14,70r67,-350r68,0r-15,85v13,-15,35,-27,57,-27v43,0,62,36,62,75v0,73,-31,152,-100,152v-25,0,-41,-11,-53,-28r-18,93r-68,0xm97,-154r-17,92v4,5,12,17,28,17v35,0,48,-50,48,-89v0,-44,-40,-42,-59,-20","w":240,"k":{",":13,".":13}},"\u00be":{"d":"237,0r5,-23r-71,0r6,-34r87,-97r46,0r-21,102r21,0r-6,29r-21,0r-5,23r-41,0xm249,-52v4,-21,13,-45,15,-64r-56,64r41,0xm79,9r149,-275r31,0r-149,275r-31,0xm59,-169r5,-30v10,0,39,1,39,-21v0,-11,-9,-14,-17,-14v-15,0,-19,12,-19,16r-35,-10v1,-4,14,-34,59,-34v77,0,64,74,11,76v15,5,32,12,32,34v0,25,-22,50,-66,50v-49,0,-57,-27,-58,-41r40,-7v0,5,0,19,18,19v13,0,22,-10,22,-22v0,-17,-17,-18,-31,-16","w":320},"\u00b2":{"d":"4,-105r6,-29r72,-54v15,-12,22,-21,22,-31v0,-10,-7,-15,-17,-15v-17,0,-22,16,-22,23r-38,-6v5,-18,17,-45,64,-45v72,0,65,61,26,89r-54,39r64,0r-5,29r-118,0","w":138},"\u00ae":{"d":"167,-55r-32,-59r-13,0r0,59r-34,0r0,-146v51,1,118,-10,118,42v0,26,-17,42,-38,44r35,60r-36,0xm122,-141v21,0,48,4,48,-17v0,-21,-28,-15,-48,-16r0,33xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm42,-128v0,56,46,102,102,102v56,0,102,-46,102,-102v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102","w":288},"\u2212":{"d":"17,-69r0,-44r182,0r0,44r-182,0","w":216},"\u00f0":{"d":"52,-227r38,-19r-20,-20r46,-26v8,6,20,16,26,22r42,-22r18,21r-42,21v24,28,53,63,53,120v0,63,-34,135,-119,135v-51,0,-90,-23,-90,-89v0,-68,61,-136,131,-110v-7,-12,-17,-24,-26,-33r-41,20xm71,-73v0,24,10,33,27,33v34,0,49,-48,49,-83v0,-22,-8,-36,-28,-36v-33,0,-48,50,-48,86","w":233},"\u00d7":{"d":"78,-91r-55,-56r30,-29r55,55r55,-55r30,29r-56,56r56,55r-30,30r-55,-56r-55,56r-30,-30","w":216},"\u00b3":{"d":"59,-169r5,-30v10,0,39,1,39,-21v0,-11,-9,-14,-17,-14v-15,0,-19,12,-19,16r-35,-10v1,-4,14,-34,59,-34v77,0,64,74,11,76v15,5,32,12,32,34v0,25,-22,50,-66,50v-49,0,-57,-27,-58,-41r40,-7v0,5,0,19,18,19v13,0,22,-10,22,-22v0,-17,-17,-18,-31,-16","w":138},"\u00a9":{"d":"177,-109r36,0v-4,37,-34,57,-66,57v-44,0,-74,-34,-74,-77v0,-85,129,-111,140,-23r-36,0v-3,-17,-15,-23,-30,-23v-23,0,-35,18,-35,45v0,46,58,64,65,21xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm42,-128v0,56,46,102,102,102v56,0,102,-46,102,-102v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102","w":288},"\u00c1":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm134,-276r39,-53r75,0r-68,53r-46,0","w":273},"\u00c2":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm87,-276r52,-53r59,0r32,53r-43,0r-19,-27r-31,27r-50,0","w":273},"\u00c4":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm84,-278r9,-48r63,0r-9,48r-63,0xm169,-278r9,-48r63,0r-10,48r-62,0","w":273},"\u00c0":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm95,-329r73,0r38,53r-47,0","w":273},"\u00c5":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm125,-304v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm147,-304v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":273},"\u00c3":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm121,-276r-29,0v0,-10,5,-51,47,-51v21,0,58,28,64,0r29,0v6,12,-21,66,-59,48v-14,-6,-53,-20,-52,3","w":273},"\u00c7":{"d":"171,-88r60,14v-1,6,-21,80,-111,80r-12,16v19,-4,40,4,40,25v0,42,-70,38,-92,23r10,-17v9,7,46,15,47,-5v1,-10,-17,-11,-25,-7r-9,-10r19,-26v-54,-7,-89,-41,-89,-107v0,-78,48,-160,149,-160v82,0,93,66,94,78r-66,13v-1,-14,-8,-38,-35,-38v-51,0,-69,70,-69,116v0,33,14,47,38,47v31,0,48,-34,51,-42","w":253,"k":{",":9,".":9}},"\u00c9":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm110,-276r40,-53r75,0r-68,53r-47,0","w":226},"\u00ca":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm63,-276r53,-53r59,0r32,53r-44,0r-19,-27r-30,27r-51,0","w":226},"\u00cb":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm60,-278r10,-48r62,0r-9,48r-63,0xm145,-278r10,-48r62,0r-9,48r-63,0","w":226},"\u00c8":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm71,-329r74,0r37,53r-46,0","w":226},"\u00cd":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm57,-276r39,-53r75,0r-67,53r-47,0","w":119},"\u00ce":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm10,-276r53,-53r59,0r31,53r-43,0r-19,-27r-31,27r-50,0","w":119},"\u00cf":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm7,-278r10,-48r62,0r-9,48r-63,0xm92,-278r10,-48r62,0r-9,48r-63,0","w":119},"\u00cc":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm18,-329r73,0r38,53r-47,0","w":119},"\u00d1":{"d":"0,0r49,-256r89,0r48,185r3,0v8,-60,23,-126,33,-185r66,0r-49,256r-90,0r-40,-138v-5,-12,-5,-33,-11,-45v-6,63,-23,123,-33,183r-65,0xm127,-276r-29,0v0,-10,5,-51,47,-51v22,0,59,28,65,0r29,0v6,12,-20,65,-59,48v-15,-7,-53,-20,-53,3","w":286,"k":{",":9,".":9}},"\u00d3":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm137,-276r39,-53r75,0r-67,53r-47,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d4":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm90,-276r53,-53r59,0r31,53r-43,0r-19,-27r-31,27r-50,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d6":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm87,-278r9,-48r63,0r-9,48r-63,0xm172,-278r9,-48r63,0r-9,48r-63,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d2":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm98,-329r73,0r38,53r-47,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d5":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm124,-276r-29,0v0,-10,5,-51,47,-51v21,0,58,28,64,0r29,0v0,10,-4,51,-46,51v-20,0,-61,-28,-65,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0160":{"d":"0,-60r63,-19v2,10,9,35,39,35v24,0,37,-9,37,-27v0,-27,-48,-35,-70,-47v-26,-14,-41,-31,-41,-61v0,-50,44,-83,106,-83v61,0,90,29,92,60r-62,17v-1,-7,-5,-27,-34,-27v-15,0,-32,7,-32,24v0,28,39,31,60,41v84,37,69,153,-59,153v-84,0,-98,-52,-99,-66xm84,-329r43,0r20,27r30,-27r50,0r-52,53r-60,0","w":233,"k":{",":13,".":13}},"\u00da":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm130,-276r40,-53r75,0r-68,53r-47,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00db":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm84,-276r52,-53r59,0r32,53r-43,0r-19,-27r-31,27r-50,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dc":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm83,-278r9,-48r63,0r-10,48r-62,0xm168,-278r9,-48r63,0r-10,48r-62,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00d9":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm91,-329r74,0r37,53r-46,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dd":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0xm127,-276r39,-53r75,0r-67,53r-47,0","w":259,"k":{"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"\u0178":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0xm77,-278r9,-48r63,0r-9,48r-63,0xm162,-278r9,-48r63,0r-9,48r-63,0","w":259,"k":{"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"\u017d":{"d":"-14,0r11,-62r144,-141r-111,0r10,-53r193,0r-12,61r-146,141r119,0r-10,54r-198,0xm77,-329r43,0r20,27r31,-27r50,0r-53,53r-59,0","w":219},"\u00e1":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm107,-237r40,-52r74,0r-67,52r-47,0","w":219},"\u00e2":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm60,-237r53,-52r59,0r31,52r-43,0r-19,-27r-30,27r-51,0","w":219},"\u00e4":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm57,-239r10,-48r62,0r-9,48r-63,0xm142,-239r10,-48r62,0r-9,48r-63,0","w":219},"\u00e0":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm68,-289r73,0r38,52r-47,0","w":219},"\u00e5":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm96,-270v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm118,-270v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":219},"\u00e3":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm94,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r30,0v4,12,-17,62,-59,49v-13,-8,-52,-20,-53,2","w":219},"\u00e7":{"d":"128,-79r59,15v-13,35,-42,67,-89,69r-13,17v19,-4,39,4,39,25v0,43,-69,37,-91,23r9,-17v10,6,47,15,48,-5v1,-10,-18,-11,-26,-7r-9,-10r21,-26v-45,-6,-70,-41,-70,-90v0,-58,29,-137,111,-137v59,0,83,30,85,66r-60,16v4,-20,-3,-34,-24,-35v-40,0,-46,80,-46,104v0,14,5,28,25,28v19,0,30,-21,31,-36","w":206,"k":{",":9,".":9}},"\u00e9":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm110,-237r40,-52r75,0r-68,52r-47,0","w":226,"k":{",":13,".":13}},"\u00ea":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm63,-237r53,-52r59,0r32,52r-44,0r-19,-27r-30,27r-51,0","w":226,"k":{",":13,".":13}},"\u00eb":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm60,-239r10,-48r62,0r-9,48r-63,0xm145,-239r10,-48r62,0r-9,48r-63,0","w":226,"k":{",":13,".":13}},"\u00e8":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm71,-289r74,0r37,52r-46,0","w":226,"k":{",":13,".":13}},"\u00ed":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm46,-237r40,-52r75,0r-68,52r-47,0","w":113},"\u00ee":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm7,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":113},"\u00ef":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm4,-239r9,-48r63,0r-9,48r-63,0xm89,-239r9,-48r63,0r-9,48r-63,0","w":113},"\u00ec":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm4,-289r73,0r37,52r-46,0","w":113},"\u00f1":{"d":"-2,0r41,-217r68,0r-6,30v15,-11,45,-35,75,-35v41,0,50,30,43,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0xm104,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r30,0v4,12,-17,62,-59,49v-13,-8,-52,-20,-53,2","w":240},"\u00f3":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm113,-237r40,-52r75,0r-68,52r-47,0","w":233,"k":{",":13,".":13}},"\u00f4":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm67,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":233,"k":{",":13,".":13}},"\u00f6":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm64,-239r9,-48r63,0r-10,48r-62,0xm149,-239r9,-48r63,0r-10,48r-62,0","w":233,"k":{",":13,".":13}},"\u00f2":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm75,-289r73,0r37,52r-46,0","w":233,"k":{",":13,".":13}},"\u00f5":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm101,-237r-29,0v0,-10,5,-50,47,-50v21,0,58,26,64,-1r29,0v4,12,-17,62,-59,49v-13,-7,-51,-20,-52,2","w":233,"k":{",":13,".":13}},"\u0161":{"d":"-6,-51r59,-17v1,9,3,26,29,26v15,0,26,-7,26,-18v1,-20,-35,-24,-52,-31v-21,-9,-39,-21,-39,-56v0,-47,41,-75,93,-75v58,0,79,37,84,52r-57,17v-1,-6,-4,-24,-27,-24v-18,0,-27,10,-27,20v-2,19,37,23,54,29v25,9,42,24,42,53v0,33,-24,80,-102,80v-63,0,-76,-32,-83,-56xm62,-289r43,0r20,27r31,-27r49,0r-52,52r-60,0","w":200,"k":{",":9,".":9}},"\u00fa":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm113,-237r40,-52r75,0r-68,52r-47,0","w":233},"\u00fb":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm67,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":233},"\u00fc":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm64,-239r9,-48r63,0r-10,48r-62,0xm149,-239r9,-48r63,0r-10,48r-62,0","w":233},"\u00f9":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm75,-289r73,0r37,52r-46,0","w":233},"\u00fd":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20xm104,-237r39,-52r75,0r-68,52r-46,0","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u00ff":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20xm54,-239r9,-48r63,0r-9,48r-63,0xm139,-239r9,-48r63,0r-9,48r-63,0","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u017e":{"d":"-15,0r10,-50r116,-122v-23,4,-61,2,-89,2r9,-47r172,0r-9,49r-117,123v25,-4,67,-1,97,-2r-9,47r-180,0xm62,-289r43,0r20,27r31,-27r49,0r-52,52r-60,0","w":200},"\u2206":{"d":"-19,0r7,-30r134,-233r64,0r33,232r-7,31r-231,0xm46,-43r117,0r-24,-164v-25,51,-64,113,-93,164","w":250},"\u2126":{"d":"-6,-43v16,-1,36,2,50,-1v-18,-20,-33,-54,-23,-100v13,-63,70,-118,141,-118v76,0,102,62,91,115v-9,47,-41,81,-68,104r51,0r-9,43r-104,0r7,-32v26,-14,53,-45,65,-103v10,-45,-3,-82,-42,-82v-37,0,-70,34,-80,84v-11,52,1,88,22,101r-6,32r-104,0","w":268},"\u03bc":{"d":"-15,70r54,-287r68,0r-28,150v5,34,50,16,54,-6r28,-144r67,0r-41,217r-68,0v1,-8,6,-18,4,-25v-2,16,-41,41,-56,18r-15,77r-67,0","w":233},"\u03c0":{"d":"226,-149r-25,0v-9,43,-26,106,-27,149r-53,0v-4,-40,19,-108,26,-149r-48,0v-10,38,-33,111,-54,149r-53,0v21,-43,45,-111,54,-149v-17,0,-28,1,-37,4r2,-36v45,-24,159,-9,229,-13","w":231},"\u20ac":{"d":"193,-13v-74,42,-189,13,-181,-81r-26,0v9,-9,8,-29,28,-27v1,-8,2,-17,5,-25r-24,0r17,-27r17,0v23,-78,129,-114,208,-68r-32,51v-26,-29,-88,-35,-102,17r92,0r-17,27r-84,0v-3,9,-5,17,-6,25r74,0r-17,27r-59,0v-7,41,35,63,76,42v15,-7,30,-16,42,-26"},"\u2113":{"d":"158,-72r17,22v-30,40,-64,54,-94,54v-47,-1,-59,-26,-57,-62v-7,5,-13,9,-21,14r-7,-28v13,-9,24,-16,36,-25r19,-89v14,-66,51,-97,91,-97v39,0,49,31,41,68v-9,43,-46,83,-101,126v-7,23,-4,50,21,50v19,0,41,-16,55,-33xm137,-245v-23,-7,-38,73,-44,107v30,-27,52,-56,57,-79v4,-17,1,-28,-13,-28","w":199},"\u212e":{"d":"95,-50v36,63,148,60,189,3r22,0v-27,31,-70,52,-118,52v-82,0,-148,-61,-148,-134v0,-74,66,-133,148,-133v83,1,151,59,149,137r-242,2r0,73xm283,-208v-37,-60,-140,-61,-185,-7v-7,21,-3,58,-2,83r187,-2r0,-74","w":349},"\u2202":{"d":"59,-230r-6,-39v13,-8,39,-22,76,-22v58,0,97,49,78,141v-20,93,-74,154,-142,154v-55,0,-70,-50,-62,-89v13,-59,57,-97,103,-97v31,0,43,20,49,28v11,-43,2,-94,-42,-93v-24,0,-43,9,-54,17xm80,-41v26,0,51,-39,61,-70v-19,-56,-77,-20,-85,28v-4,23,4,42,24,42","w":220},"\u220f":{"d":"293,-210r-38,0r0,246r-53,0r0,-246r-76,0r0,246r-53,0r0,-246r-38,0r0,-48r258,0r0,48","w":301},"\u2211":{"d":"232,36r-197,0r0,-34r88,-113r-85,-110r0,-37r188,0r0,46r-115,1r73,91r-82,107r130,0r0,49","w":238},"\u2219":{"d":"20,-102v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":106},"\u221a":{"d":"259,-310r-86,361r-42,0r-56,-159r-27,12r-9,-30r68,-27r37,112v4,12,5,26,9,34v18,-104,47,-202,69,-303r37,0","w":253},"\u221e":{"d":"222,-170v33,0,62,25,59,64v-5,78,-87,90,-127,24v-19,24,-39,42,-69,42v-31,0,-60,-25,-60,-64v0,-39,28,-66,64,-66v28,0,47,16,66,41v14,-17,33,-41,67,-41xm89,-68v20,0,35,-18,49,-35v-15,-21,-27,-39,-51,-39v-20,0,-33,16,-33,38v0,19,16,36,35,36xm219,-142v-22,0,-37,23,-49,37v22,28,33,37,51,37v43,-1,39,-74,-2,-74","w":298},"\u222b":{"d":"78,-217v0,-75,30,-113,93,-99r-5,37v-35,-14,-41,21,-41,67v0,100,48,311,-90,271r6,-37v36,9,44,-10,43,-59v0,-69,-6,-116,-6,-180","w":178},"\u2248":{"d":"77,-170v32,0,48,26,71,27v14,0,23,-11,33,-27r19,18v-13,23,-31,39,-52,39v-24,0,-48,-27,-73,-27v-17,0,-26,13,-35,26r-19,-17v11,-22,33,-39,56,-39xm77,-99v33,0,45,27,71,27v15,0,23,-10,33,-26r19,17v-13,23,-30,39,-52,39v-25,0,-48,-27,-73,-27v-17,0,-26,14,-35,27r-19,-18v11,-22,33,-39,56,-39"},"\u2260":{"d":"168,-191r-14,32r49,0r0,30r-61,0r-21,49r82,0r0,30r-94,0r-18,42r-24,-9r14,-33r-49,0r0,-30r61,0r21,-49r-82,0r0,-30r94,0r18,-42","w":220},"\u2264":{"d":"210,-37r-169,-83r0,-33r168,-83r0,35r-138,65r139,63r0,36xm211,7r-171,0r0,-31r171,0r0,31","w":227},"\u2265":{"d":"42,-236r168,83r0,33r-168,83r0,-36r138,-64r-138,-64r0,-35xm210,7r-170,0r0,-31r170,0r0,31","w":227},"\u25ca":{"d":"236,-129r-75,148r-43,0r-72,-148r74,-147r43,0xm189,-127v-16,-36,-37,-67,-48,-107v-12,37,-32,70,-48,104r48,107v12,-39,33,-69,48,-104","w":253},"\u00a0":{"w":106},"\u00ad":{"d":"1,-88r8,-45r90,0r-9,45r-89,0","w":106},"\u02c9":{"d":"11,-248r6,-32r123,0r-6,32r-123,0","w":100},"\u03a9":{"d":"-6,-43v16,-1,36,2,50,-1v-18,-20,-33,-54,-23,-100v13,-63,70,-118,141,-118v76,0,102,62,91,115v-9,47,-41,81,-68,104r51,0r-9,43r-104,0r7,-32v26,-14,53,-45,65,-103v10,-45,-3,-82,-42,-82v-37,0,-70,34,-80,84v-11,52,1,88,22,101r-6,32r-104,0","w":268},"\u2215":{"d":"-60,9r149,-275r31,0r-149,275r-31,0","w":60}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1991, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Vectora is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Full name:
 * VectoraLTStd-BlackItalic
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora LT Std","font-weight":850,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 6 3 5 3 9 2 4","ascent":"280","descent":"-80","x-height":"5","bbox":"-60 -344 388 90","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"48","stemv":"66","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":106,"k":{"\u201c":13,"\u2018":13,"T":27,"V":20,"W":20,"Y":33,"\u00dd":33,"\u0178":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"34,-88r25,-168r65,0r-42,168r-48,0xm13,0r11,-56r56,0r-11,56r-56,0","w":133},"\"":{"d":"121,-183r0,-97r43,0r0,97r-43,0xm50,-183r0,-97r44,0r0,97r-44,0","w":193},"#":{"d":"99,0r14,-72r-34,0r-13,72r-36,0r13,-72r-30,0r6,-34r30,0r9,-44r-30,0r6,-34r30,0r14,-72r36,0r-14,72r34,0r14,-72r36,0r-14,72r31,0r-7,34r-30,0r-9,44r30,0r-6,34r-30,0r-14,72r-36,0xm119,-106r9,-44r-34,0r-9,44r34,0"},"$":{"d":"106,-96r-11,52v40,1,43,-43,11,-52xm103,-166r10,-46v-28,0,-35,39,-10,46xm-11,-60r63,-19v1,9,7,29,26,34r12,-58v-33,-15,-73,-31,-73,-76v0,-50,43,-83,105,-83r6,-27r17,0r-6,27v49,5,74,32,76,60r-62,17v-1,-6,-4,-24,-23,-27r-11,53v36,15,80,34,80,78v0,39,-29,87,-114,87r-5,24r-17,0r5,-25v-67,-8,-78,-52,-79,-65"},"%":{"d":"77,-125v-38,0,-55,-22,-55,-52v0,-36,26,-85,75,-85v27,0,56,11,56,51v0,37,-22,86,-76,86xm96,-234v-19,0,-32,27,-32,58v0,13,4,22,16,22v19,0,32,-26,32,-57v0,-13,-4,-23,-16,-23xm208,5v-38,0,-55,-22,-55,-52v0,-36,26,-85,75,-85v27,0,56,11,56,51v0,37,-22,86,-76,86xm227,-104v-19,0,-32,27,-32,58v0,13,4,22,16,22v19,0,32,-26,32,-57v0,-13,-4,-23,-16,-23xm41,9r194,-275r30,0r-194,275r-30,0","w":306},"&":{"d":"190,0r-16,-18v-20,13,-52,23,-84,23v-66,0,-85,-40,-85,-71v0,-53,46,-70,65,-77v-10,-10,-25,-25,-25,-49v0,-48,46,-70,93,-70v51,0,79,24,79,59v0,45,-45,61,-66,71r41,51v19,-11,24,-44,24,-55r55,0v1,26,-22,72,-52,88r42,48r-71,0xm133,-218v-33,0,-29,44,-11,54v13,-5,37,-17,37,-32v0,-14,-8,-22,-26,-22xm100,-108v-41,11,-41,69,7,69v23,0,36,-7,42,-11","w":286},"\u2019":{"d":"23,-183r44,-97r56,0r-52,97r-48,0","w":106,"k":{"d":20,"\u0131":20,"s":13,"\u0161":13}},"(":{"d":"106,-283r30,27v-32,41,-78,97,-78,187v0,35,9,80,22,105r-37,21v-20,-41,-39,-79,-39,-137v0,-96,59,-158,102,-203","w":126},")":{"d":"14,57r-31,-27v32,-41,79,-97,79,-187v0,-35,-9,-80,-22,-105r37,-21v20,41,38,79,38,137v0,96,-58,158,-101,203","w":126},"*":{"d":"19,-187r17,-35r49,21r5,-55r38,0r-15,55r55,-21r6,35r-57,13r29,43r-33,21r-22,-48r-38,47r-26,-22r43,-41","w":173},"+":{"d":"86,0r0,-69r-69,0r0,-44r69,0r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0","w":216},",":{"d":"-22,41r45,-97r56,0r-53,97r-48,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"1,-88r8,-45r90,0r-9,45r-89,0","w":106},".":{"d":"1,0r11,-56r56,0r-11,56r-56,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"-27,0r163,-269r38,13r-163,268","w":146},"0":{"d":"2,-81v0,-86,34,-181,127,-181v50,0,81,28,81,81v0,73,-27,186,-124,186v-67,0,-84,-40,-84,-86xm89,-38v37,10,57,-94,57,-146v0,-23,-7,-33,-24,-33v-49,0,-56,136,-56,146v0,20,9,33,23,33"},"1":{"d":"79,0r36,-186r-62,43r-24,-43r103,-70r62,0r-49,256r-66,0"},"2":{"d":"-12,0r9,-48r110,-90v23,-19,34,-35,34,-52v0,-17,-11,-27,-26,-27v-27,0,-34,29,-34,41r-59,-10v7,-30,27,-76,99,-76v55,0,84,25,84,66v0,40,-21,62,-47,83r-81,68r99,0r-8,45r-180,0"},"3":{"d":"0,-64r59,-12v0,10,0,36,27,36v21,0,35,-20,35,-40v-1,-29,-26,-30,-49,-27r9,-49v22,0,59,0,59,-36v0,-18,-13,-25,-25,-25v-23,0,-30,22,-30,29r-54,-16v3,-7,22,-58,91,-58v59,0,82,31,82,63v1,40,-38,59,-66,65v26,4,48,22,48,55v0,41,-33,84,-100,84v-73,0,-84,-45,-86,-69"},"4":{"d":"90,0r8,-40r-109,0r11,-55r134,-161r65,0r-33,171r32,0r-9,45r-32,0r-7,40r-60,0xm108,-85r25,-108v-24,37,-60,73,-87,108r62,0"},"5":{"d":"210,-256r-9,46r-98,0r-8,42v59,-11,92,31,92,73v0,47,-30,100,-106,100v-58,0,-79,-31,-77,-71r53,-9v-5,20,4,35,25,36v24,0,40,-20,40,-46v0,-50,-65,-48,-93,-26r28,-145r153,0"},"6":{"d":"198,-256r-96,98v43,-15,89,7,89,64v0,57,-38,99,-103,99v-100,0,-96,-113,-48,-170r77,-91r81,0xm90,-40v38,0,53,-78,13,-79v-11,0,-18,2,-20,3v-3,5,-17,24,-17,48v0,19,10,28,24,28"},"7":{"d":"-12,0r147,-206r-103,0r10,-50r176,0r-8,45r-148,211r-74,0"},"8":{"d":"2,-58v0,-44,34,-60,62,-73v-58,-32,-36,-131,63,-131v43,0,80,18,80,58v0,12,-6,53,-60,70v13,5,39,20,39,55v0,46,-30,84,-100,84v-51,0,-84,-22,-84,-63xm66,-63v0,18,11,25,26,25v17,0,32,-14,32,-34v0,-19,-13,-30,-22,-35v-16,6,-36,17,-36,44xm90,-190v0,19,16,27,24,33v12,-5,34,-17,34,-38v0,-16,-12,-24,-28,-24v-16,0,-30,11,-30,29"},"9":{"d":"11,0r96,-99v-42,18,-88,-6,-89,-62v0,-63,43,-101,104,-101v116,2,89,127,37,186r-67,76r-81,0xm118,-217v-39,0,-51,78,-12,78v11,0,18,-2,20,-3v3,-5,16,-23,16,-47v0,-19,-10,-28,-24,-28"},":":{"d":"1,0r11,-56r56,0r-11,56r-56,0xm31,-161r11,-56r56,0r-11,56r-56,0","w":106,"k":{" ":13}},";":{"d":"-22,41r45,-97r56,0r-53,97r-48,0xm31,-161r11,-56r56,0r-11,56r-56,0","w":106,"k":{" ":13}},"<":{"d":"17,-74r0,-34r182,-77r0,41r-126,53r126,52r0,42","w":216},"=":{"d":"17,-110r0,-43r182,0r0,43r-182,0xm17,-29r0,-43r182,0r0,43r-182,0","w":216},">":{"d":"199,-108r0,34r-182,77r0,-42r126,-52r-126,-53r0,-41","w":216},"?":{"d":"66,-88v-5,-54,64,-62,74,-106v0,-14,-10,-23,-25,-23v-30,0,-33,26,-34,32r-54,-10v0,-9,22,-67,90,-67v96,0,100,85,47,120v-21,14,-47,19,-49,54r-49,0xm49,0r10,-56r57,0r-11,56r-56,0","w":200},"@":{"d":"144,-161v-40,-4,-53,70,-9,72v43,4,51,-72,9,-72xm186,-193r34,0r-18,97v0,5,3,9,9,9v15,0,32,-16,32,-55v0,-65,-39,-88,-99,-88v-58,0,-99,42,-99,99v0,66,41,105,99,105v38,0,62,-9,80,-23r35,0v-26,35,-62,55,-115,55v-72,0,-132,-56,-132,-137v0,-74,62,-131,132,-131v75,0,132,39,132,109v0,84,-66,98,-87,98v-16,1,-23,-6,-29,-16v-30,34,-89,10,-89,-43v0,-69,72,-107,112,-61","w":288},"A":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0","w":273},"B":{"d":"0,0r49,-256v76,4,190,-21,189,57v0,22,-11,57,-59,66r0,3v24,4,43,22,43,52v0,44,-38,78,-94,78r-128,0xm98,-156v33,-2,72,10,72,-28v0,-31,-35,-20,-63,-22xm77,-50v37,0,77,6,77,-33v0,-29,-38,-21,-66,-22","w":246,"k":{",":9,".":9}},"C":{"d":"252,-184r-66,13v-1,-14,-8,-38,-35,-38v-51,0,-69,70,-69,116v0,33,14,47,38,47v31,0,48,-34,51,-42r60,14v-1,6,-21,80,-111,80v-65,0,-111,-34,-111,-108v0,-78,48,-160,149,-160v82,0,93,66,94,78","w":253,"k":{",":9,".":9}},"D":{"d":"0,0r49,-256r103,0v68,0,107,40,107,108v0,85,-61,148,-141,148r-118,0xm80,-52v74,10,106,-34,106,-98v0,-40,-30,-59,-77,-53","w":273,"k":{"V":6,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"E":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0","w":226},"F":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-11,54r106,0r-10,52r-105,0r-19,98r-70,0","w":219,"k":{"\u00e3":4,"\u00e0":4,"\u00e4":4,",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e5":4}},"G":{"d":"170,-98r-38,0r10,-50r104,0r-24,124v-17,9,-53,30,-102,30v-65,0,-111,-34,-111,-108v0,-78,49,-160,149,-160v81,0,96,52,98,67r-67,16v-1,-9,-8,-31,-38,-31v-55,0,-69,76,-69,116v0,48,48,57,80,39","w":266,"k":{",":9,".":9}},"H":{"d":"156,0r20,-108r-86,0r-20,108r-70,0r49,-256r70,0r-19,95r86,0r18,-95r70,0r-49,256r-69,0","w":273},"I":{"d":"0,0r49,-256r70,0r-49,256r-70,0","w":119},"J":{"d":"66,-95r31,-161r70,0r-32,170v-13,66,-48,92,-108,92v-31,0,-47,-11,-58,-18r37,-47v4,4,11,13,27,13v20,0,28,-23,33,-49","w":166,"k":{",":9,".":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"K":{"d":"0,0r49,-256r70,0r-19,99r91,-99r87,0r-120,121r78,135r-80,0r-65,-114r-21,114r-70,0","w":259,"k":{"O":11,"\u00d8":11,"\u0152":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"y":9,"\u00fd":9,"\u00ff":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9}},"L":{"d":"0,0r49,-256r70,0r-39,201r96,0r-10,55r-166,0","w":193,"k":{"T":33,"V":33,"W":29,"y":14,"\u00fd":14,"\u00ff":14,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":40,"\u2019":40}},"M":{"d":"243,0r41,-204v-10,4,-10,21,-17,30r-86,174r-52,0r-24,-204r-2,0r-38,204r-65,0r49,-256r106,0v4,57,16,111,15,169r3,0v20,-54,56,-116,81,-169r104,0r-49,256r-66,0","w":360},"N":{"d":"0,0r49,-256r89,0r48,185r3,0v8,-60,23,-126,33,-185r66,0r-49,256r-90,0r-40,-138v-5,-12,-5,-33,-11,-45v-6,63,-23,123,-33,183r-65,0","w":286,"k":{",":9,".":9}},"O":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"P":{"d":"0,0r49,-256v83,1,192,-16,188,69v-3,84,-65,108,-151,100r-16,87r-70,0xm96,-139v38,2,73,1,73,-36v0,-34,-29,-29,-60,-29","w":226,"k":{",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"Q":{"d":"207,31r-42,39r-98,-73v-36,-14,-58,-47,-58,-99v0,-78,49,-160,149,-160v65,0,110,34,110,108v0,66,-35,135,-106,154xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114","w":280,"k":{",":9,".":9}},"R":{"d":"140,0r-24,-100r-27,0r-19,100r-70,0r49,-256v82,2,189,-18,189,67v0,58,-38,76,-61,79r34,110r-71,0xm99,-150v36,0,68,6,71,-33v2,-28,-34,-23,-61,-23","w":246,"k":{"T":6,"V":6,"W":6,"Y":27,"\u00dd":27,"\u0178":27}},"S":{"d":"0,-60r63,-19v2,10,9,35,39,35v24,0,37,-9,37,-27v0,-27,-48,-35,-70,-47v-26,-14,-41,-31,-41,-61v0,-50,44,-83,106,-83v61,0,90,29,92,60r-62,17v-1,-7,-5,-27,-34,-27v-15,0,-32,7,-32,24v0,28,39,31,60,41v84,37,69,153,-59,153v-84,0,-98,-52,-99,-66","w":233,"k":{",":13,".":13}},"T":{"d":"44,0r38,-201r-67,0r11,-55r204,0r-11,55r-67,0r-38,201r-70,0","w":206,"k":{"\u00f2":6,"\u00f6":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,",":33,".":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"a":6,"\u00e6":6,"\u00e1":6,"e":6,"\u00e9":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f5":6,"-":27}},"U":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"V":{"d":"52,0r-28,-256r71,0r13,160v2,12,-2,26,1,35v28,-67,64,-130,95,-195r73,0r-135,256r-90,0","w":253,"k":{"\u00f6":9,"\u00f4":9,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,",":33,".":33,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":13,"\u00e6":13,"\u00e1":13,"e":9,"\u00e9":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f2":9,"\u00f5":9,"-":27}},"W":{"d":"194,0r6,-204r-3,0v-21,71,-49,136,-73,204r-87,0r-8,-256r66,0r-3,204r3,0v18,-71,47,-136,69,-204r88,0r0,162v2,13,-6,34,-1,42v15,-67,48,-140,70,-204r67,0r-105,256r-89,0","w":366,"k":{"\u00e4":6,"u":-4,"\u00fa":-4,"\u00fb":-4,"\u00fc":-4,"\u00f9":-4,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"-":9}},"X":{"d":"159,0v-10,-30,-26,-63,-32,-95r-69,95r-81,0r108,-135r-54,-121r76,0v11,28,16,63,30,88v15,-27,41,-61,59,-88r79,0r-99,125r58,131r-75,0","w":259},"Y":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0","w":259,"k":{"\u00fc":13,"\u00f6":27,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"Z":{"d":"-14,0r11,-62r144,-141r-111,0r10,-53r193,0r-12,61r-146,141r119,0r-10,54r-198,0","w":219},"[":{"d":"-8,47r61,-320r81,0r-6,31r-28,0r-50,258r29,0r-6,31r-81,0","w":106},"\\":{"d":"136,12r-163,-268r38,-13r163,269","w":146},"]":{"d":"-35,47r6,-31r29,0r49,-258r-28,0r5,-31r81,0r-61,320r-81,0","w":106},"^":{"d":"68,-125r-42,0r63,-131r38,0r63,131r-42,0r-40,-88","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"24,-183r52,-97r48,0r-44,97r-56,0","w":106,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"a":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3","w":219},"b":{"d":"-2,0r53,-280r68,0r-16,86v13,-14,35,-28,57,-28v48,0,63,39,63,78v0,65,-30,149,-100,149v-30,1,-45,-16,-53,-29r-4,24r-68,0xm95,-154r-17,88v5,8,12,21,29,21v30,0,47,-52,47,-94v0,-43,-47,-36,-59,-15","w":240,"k":{",":13,".":13}},"c":{"d":"128,-79r59,15v-13,37,-45,69,-95,69v-55,0,-86,-36,-86,-90v0,-58,29,-137,111,-137v59,0,83,30,85,66r-60,16v4,-20,-3,-34,-24,-35v-40,0,-46,80,-46,104v0,14,5,28,25,28v19,0,30,-21,31,-36","w":206,"k":{",":9,".":9}},"d":{"d":"124,0v1,-7,5,-16,3,-22v-12,16,-36,27,-58,27v-43,0,-61,-36,-61,-75v0,-73,31,-152,100,-152v25,0,41,11,53,28r16,-86r68,0r-53,280r-68,0xm136,-63r17,-92v-4,-5,-12,-17,-28,-17v-35,0,-48,57,-48,93v0,39,42,38,59,16","w":240},"e":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42","w":226,"k":{",":13,".":13}},"f":{"d":"10,0r29,-153r-31,0r9,-46r31,0v0,-74,66,-107,137,-88r-8,45v-34,-13,-64,8,-62,43r45,0r-9,46r-44,0r-30,153r-67,0","w":146,"k":{"\u201d":-6,"\u2019":-6,",":25,".":25}},"g":{"d":"19,-144v0,-67,73,-89,139,-73r85,0r-8,36r-47,0v35,49,-20,112,-98,98v-11,3,-13,12,3,17v40,12,101,14,101,62v0,40,-42,77,-121,77v-58,0,-93,-22,-93,-51v0,-27,28,-49,53,-58v-22,-18,6,-51,22,-54v-14,-7,-36,-21,-36,-54xm141,-153v0,-18,-12,-25,-27,-25v-23,0,-35,12,-35,31v0,34,62,26,62,-6xm128,9v0,-18,-48,-20,-66,-27v-10,6,-22,17,-22,28v0,15,17,21,42,21v29,0,46,-7,46,-22","w":226,"k":{".":9}},"h":{"d":"-2,0r53,-280r68,0r-18,93v15,-11,44,-35,74,-35v41,0,52,29,44,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0","w":240},"i":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm43,-235r8,-45r68,0r-8,45r-68,0","w":113},"j":{"d":"1,-18r38,-199r68,0r-43,222v1,41,-56,85,-116,62r12,-50v23,12,35,-6,41,-35xm43,-235r8,-45r68,0r-8,45r-68,0","w":113},"k":{"d":"131,0r-46,-105r-19,105r-68,0r53,-280r68,0r-29,158v20,-35,50,-63,74,-95r81,0r-93,103r56,114r-77,0","w":233},"l":{"d":"-2,0r53,-280r68,0r-53,280r-68,0","w":113},"m":{"d":"-2,0r41,-217r68,0v-1,9,-6,22,-5,29v22,-33,106,-55,113,3v16,-15,41,-37,77,-37v38,0,50,30,42,68r-29,154r-68,0r27,-148v-5,-30,-36,-7,-51,3r-28,145r-68,0r28,-148v-5,-30,-37,-8,-52,3r-27,145r-68,0","w":353},"n":{"d":"-2,0r41,-217r68,0r-6,30v15,-11,45,-35,75,-35v41,0,50,30,43,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0","w":240},"o":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34","w":233,"k":{",":13,".":13}},"p":{"d":"-14,70r55,-287r68,0v0,7,-5,17,-3,22v13,-15,35,-27,57,-27v43,0,62,36,62,75v0,73,-31,152,-100,152v-25,0,-41,-11,-53,-28r-18,93r-68,0xm97,-154r-17,92v4,5,12,17,28,17v37,0,48,-57,48,-94v0,-43,-43,-34,-59,-15","w":240,"k":{",":13,".":13}},"q":{"d":"108,70r17,-93v-13,14,-35,28,-57,28v-48,0,-63,-39,-63,-78v0,-67,32,-149,100,-149v30,-1,45,16,53,29r5,-24r67,0r-54,287r-68,0xm133,-63r17,-89v-5,-8,-13,-20,-29,-20v-35,0,-47,56,-47,94v0,42,47,37,59,15","w":240},"r":{"d":"-2,0r41,-217r68,0v0,10,-9,27,-5,34v17,-24,47,-44,77,-34r-12,60v-26,-12,-64,5,-76,21r-25,136r-68,0","w":159,"k":{",":27,".":27,"-":6}},"s":{"d":"-6,-51r59,-17v1,9,3,26,29,26v15,0,26,-7,26,-18v1,-20,-35,-24,-52,-31v-21,-9,-39,-21,-39,-56v0,-47,41,-75,93,-75v58,0,79,37,84,52r-57,17v-1,-6,-4,-24,-27,-24v-18,0,-27,10,-27,20v-2,19,37,23,54,29v25,9,42,24,42,53v0,33,-24,80,-102,80v-63,0,-76,-32,-83,-56","w":200,"k":{",":9,".":9}},"t":{"d":"5,-153r9,-46r34,0r8,-45r72,-29r-14,74r51,0r-9,46r-51,0r-16,87v-4,24,33,23,47,17r-9,47v-35,12,-109,12,-106,-44v1,-37,13,-73,18,-107r-34,0","w":159},"u":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0","w":233},"v":{"d":"41,0r-25,-217r70,0v5,49,1,107,10,152v14,-56,43,-101,62,-152r72,0r-110,217r-79,0","k":{",":27,".":27,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"w":{"d":"15,-217r70,0r5,151r4,0v14,-54,40,-101,59,-151r83,0r2,151v12,-1,6,-17,13,-27r47,-124r70,0r-99,217r-85,0r-3,-134v0,-8,1,-14,2,-19v-9,0,-6,8,-11,20r-52,133r-84,0","w":353,"k":{",":27,".":27,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"x":{"d":"127,0r-20,-77r-52,77r-78,0r90,-116r-40,-101r71,0v7,22,11,48,20,68v10,-22,30,-47,43,-68r76,0r-79,101r41,116r-72,0","w":226},"y":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"z":{"d":"-15,0r10,-50r116,-122v-23,4,-61,2,-89,2r9,-47r172,0r-9,49r-117,123v25,-4,67,-1,97,-2r-9,47r-180,0","w":200},"{":{"d":"87,47v-44,4,-83,-3,-75,-53r12,-75v0,-12,-21,-14,-29,-14r6,-36v9,0,35,-3,39,-22r13,-70v10,-49,44,-53,95,-50r-7,33v-58,-8,-44,52,-55,92v-8,27,-33,34,-45,35v10,1,32,3,32,24v0,33,-12,61,-16,93v-2,13,22,10,36,10","w":119},"|":{"d":"18,90r0,-360r44,0r0,360r-44,0","w":79},"}":{"d":"26,-273v44,-4,81,3,74,53r-11,75v0,12,21,14,29,14r-6,36v-9,0,-35,3,-39,22r-14,70v-10,49,-43,53,-94,50r6,-33v59,8,45,-52,56,-92v7,-27,33,-34,45,-35v-16,2,-41,-16,-30,-42v4,-25,11,-48,13,-75v1,-13,-22,-9,-36,-10","w":119},"~":{"d":"70,-123v24,0,56,23,77,24v14,0,23,-13,31,-26r13,35v-11,15,-23,31,-45,31v-36,0,-90,-51,-108,1r-13,-34v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"99,-128r-24,168r-66,0r42,-168r48,0xm120,-217r-11,56r-56,0r11,-56r56,0","w":133},"\u00a2":{"d":"130,-173v-52,-14,-61,78,-57,111xm30,23r15,-30v-26,-15,-39,-42,-39,-78v0,-58,29,-137,111,-137v14,0,27,2,36,5r15,-30r16,7r-16,29v22,13,33,33,34,55r-60,16v1,-8,2,-13,0,-20r-58,114v22,12,45,-14,44,-33r59,15v-13,46,-67,83,-127,64r-15,30"},"\u00a3":{"d":"-4,0r8,-45r24,0r13,-67r-27,0r7,-39r27,0v8,-63,33,-111,105,-111v64,0,77,43,77,60r-59,13v0,-10,-3,-28,-24,-28v-31,0,-31,39,-38,66r52,0r-7,39r-52,0r-13,67r96,0r-9,45r-180,0"},"\u2044":{"d":"-60,9r149,-275r31,0r-149,275r-31,0","w":60},"\u00a5":{"d":"56,0r8,-39r-50,0r5,-27r50,0r5,-28r-49,0r5,-27r36,0r-40,-135r60,0r24,112r58,-112r64,0r-84,135r35,0r-5,27r-46,0r-6,28r47,0r-5,27r-47,0r-7,39r-58,0"},"\u0192":{"d":"-17,41r24,-38v15,10,32,4,38,-21r25,-104r-42,0r8,-34r42,0v14,-52,17,-106,89,-106v22,0,38,6,42,10r-25,38v-33,-21,-41,30,-47,58r42,0r-8,34r-42,0r-22,92v-18,75,-56,83,-80,83v-23,0,-39,-7,-44,-12"},"\u00a7":{"d":"103,-13v-13,-37,-91,-32,-90,-83v0,-36,28,-53,51,-60v-50,-33,-9,-106,66,-106v57,0,72,32,73,38r-46,23v-1,-3,-7,-22,-35,-22v-13,0,-26,7,-26,20v0,34,94,38,94,91v0,31,-29,48,-48,52v8,6,20,14,20,36v0,48,-42,73,-95,73v-62,0,-74,-39,-75,-44r46,-21v1,4,4,24,34,24v19,0,31,-9,31,-21xm63,-115v0,32,37,27,56,43v25,-9,30,-42,-3,-54r-30,-14v-12,4,-23,11,-23,25"},"\u00a4":{"d":"13,-59r20,-21v-21,-27,-20,-71,-1,-99r-19,-20r24,-24r20,20v28,-21,71,-21,99,0r20,-20r25,24r-20,20v19,28,21,71,0,99r20,21r-25,24r-20,-20v-28,20,-71,20,-99,0r-20,20xm57,-129v0,27,23,49,50,49v27,0,49,-22,49,-49v0,-27,-22,-50,-49,-50v-27,0,-50,23,-50,50"},"'":{"d":"46,-183r0,-97r43,0r0,97r-43,0","w":106},"\u201c":{"d":"112,-183r53,-97r47,0r-44,97r-56,0xm24,-183r52,-97r48,0r-44,97r-56,0","w":193,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"\u00ab":{"d":"0,-118r77,-84r33,28r-55,63r34,70r-39,21xm96,-118r77,-84r33,28r-55,63r34,70r-40,21"},"\u2039":{"d":"-1,-118r77,-84r33,28r-55,63r34,70r-40,21","w":120},"\u203a":{"d":"110,-103r-77,84r-33,-29r55,-63r-34,-69r39,-21","w":120},"\u2013":{"d":"-9,-91r9,-39r180,0r-9,39r-180,0","w":180},"\u2020":{"d":"41,45r35,-181r-63,0r10,-54r63,0r13,-66r64,0r-13,66r63,0r-10,54r-63,0r-35,181r-64,0"},"\u2021":{"d":"44,45r11,-59r-59,0r9,-50r60,0r16,-83r-59,0r9,-50r59,0r12,-59r61,0r-11,59r57,0r-10,50r-57,0r-16,83r57,0r-9,50r-58,0r-11,59r-61,0"},"\u00b7":{"d":"20,-102v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":106},"\u00b6":{"d":"45,44r31,-161v-32,0,-57,-28,-57,-63v0,-42,27,-76,92,-76r113,0r-57,300r-44,0r52,-268r-36,0r-51,268r-43,0"},"\u2022":{"d":"26,-128v0,-35,29,-64,64,-64v35,0,64,29,64,64v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":180},"\u201a":{"d":"-22,41r45,-97r56,0r-53,97r-48,0","w":106},"\u201e":{"d":"-22,41r45,-97r56,0r-53,97r-48,0xm66,41r44,-97r56,0r-53,97r-47,0","w":193},"\u201d":{"d":"22,-183r44,-97r56,0r-53,97r-47,0xm110,-183r44,-97r56,0r-52,97r-48,0","w":193,"k":{" ":13}},"\u00bb":{"d":"204,-103r-77,84r-33,-29r55,-63r-34,-69r40,-21xm109,-103r-77,84r-33,-29r55,-63r-35,-69r40,-21"},"\u2026":{"d":"27,0r10,-56r57,0r-11,56r-56,0xm147,0r10,-56r56,0r-10,56r-56,0xm266,0r11,-56r56,0r-10,56r-57,0","w":360},"\u2030":{"d":"183,5v-28,0,-51,-14,-51,-50v0,-39,22,-85,69,-85v28,0,51,14,51,50v0,39,-22,85,-69,85xm184,-22v21,0,30,-35,30,-62v0,-10,-3,-19,-15,-19v-21,0,-29,35,-29,62v0,10,2,19,14,19xm316,-22v21,0,30,-35,30,-62v0,-10,-3,-19,-15,-19v-21,0,-29,35,-29,62v0,10,2,19,14,19xm314,5v-28,0,-50,-14,-50,-50v0,-39,22,-85,69,-85v28,0,50,14,50,50v0,39,-22,85,-69,85xm67,-128v-28,0,-50,-13,-50,-49v0,-39,22,-85,69,-85v28,0,50,13,50,49v0,39,-22,85,-69,85xm69,-155v21,0,29,-35,29,-62v0,-10,-2,-18,-14,-18v-21,0,-30,34,-30,61v0,10,3,19,15,19xm22,9r194,-275r31,0r-195,275r-30,0","w":399},"\u00bf":{"d":"134,-129v6,54,-65,61,-74,106v0,14,10,23,25,23v30,0,33,-26,34,-32r54,10v0,9,-21,67,-89,67v-96,0,-102,-85,-48,-120v21,-14,47,-19,49,-54r49,0xm152,-217r-11,56r-56,0r10,-56r57,0","w":200},"`":{"d":"8,-289r73,0r38,52r-47,0","w":100},"\u00b4":{"d":"47,-237r39,-52r75,0r-67,52r-47,0","w":100},"\u02c6":{"d":"0,-237r53,-52r59,0r31,52r-43,0r-19,-27r-31,27r-50,0","w":100},"\u02dc":{"d":"34,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r29,0v5,12,-17,63,-59,49v-13,-8,-51,-20,-52,2","w":100},"\u00af":{"d":"11,-248r6,-32r123,0r-6,32r-123,0","w":100},"\u02d8":{"d":"-9,-289r28,0v0,4,3,27,34,27v29,0,40,-21,42,-27r30,0v-3,9,-18,56,-72,56v-55,0,-62,-43,-62,-56","w":100},"\u02d9":{"d":"46,-239r9,-48r63,0r-9,48r-63,0","w":100},"\u00a8":{"d":"-3,-239r9,-48r63,0r-9,48r-63,0xm82,-239r9,-48r63,0r-9,48r-63,0","w":100},"\u02da":{"d":"36,-270v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm58,-270v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":100},"\u00b8":{"d":"2,31r24,-32r22,0r-16,23v19,-4,39,5,39,25v0,42,-70,38,-92,23r10,-17v10,6,47,15,48,-5v1,-10,-18,-11,-26,-7","w":100},"\u02dd":{"d":"-9,-237r31,-52r65,0r-55,52r-41,0xm67,-237r40,-52r65,0r-64,52r-41,0","w":100},"\u02db":{"d":"93,38r-6,29v-16,14,-90,18,-86,-19v3,-28,38,-47,61,-60r32,0v-12,11,-39,24,-40,43v-2,16,28,14,39,7","w":100},"\u02c7":{"d":"17,-289r43,0r20,27r31,-27r50,0r-53,52r-59,0","w":100},"\u2014":{"d":"-9,-91r9,-39r360,0r-9,39r-360,0","w":360},"\u00c6":{"d":"155,0r11,-55r-75,0r-37,55r-79,0r184,-256r204,0r-10,52r-93,0r-9,47r86,0r-10,53r-86,0r-10,52r96,0r-10,52r-162,0xm175,-105v4,-34,18,-75,18,-106v-19,36,-46,72,-68,106r50,0","w":360},"\u00aa":{"d":"86,-129v0,-5,4,-13,2,-17v-18,26,-79,29,-76,-15v3,-41,55,-46,92,-51v1,-13,5,-24,-11,-23v-18,0,-23,14,-25,17r-36,-10v6,-13,20,-34,61,-34v42,0,63,18,54,58r-16,75r-45,0xm94,-168r5,-22v-16,4,-42,4,-42,20v-1,19,31,10,37,2","w":142},"\u0141":{"d":"0,0r16,-81r-26,15r6,-36r27,-16r26,-138r70,0r-18,93r71,-41r-6,36r-72,41r-14,72r96,0r-10,55r-166,0","w":193,"k":{"T":33,"V":33,"W":29,"y":14,"\u00fd":14,"\u00ff":14,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":40,"\u2019":40}},"\u00d8":{"d":"195,-169r-109,100v7,17,21,23,36,23v61,-3,74,-78,73,-123xm82,-87r108,-100v-7,-16,-20,-22,-35,-22v-61,3,-74,76,-73,122xm-1,-11r27,-24v-49,-94,13,-227,132,-227v34,0,62,9,82,29r26,-24r12,11r-27,25v47,95,-7,228,-131,227v-36,0,-65,-10,-84,-29r-25,23","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0152":{"d":"173,-261v60,0,124,6,189,5r-10,52r-92,0r-9,47r85,0r-10,53r-85,0r-10,52r95,0r-10,52v-134,-5,-306,35,-306,-109v0,-45,28,-152,163,-152xm163,-55r28,-148v-61,-16,-108,29,-108,88v0,48,29,61,80,60","w":360,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00ba":{"d":"9,-180v0,-35,27,-82,80,-82v41,0,63,21,63,53v0,35,-27,83,-81,83v-41,0,-62,-21,-62,-54xm54,-175v0,14,7,20,18,20v18,0,34,-26,34,-58v0,-14,-6,-21,-18,-21v-17,0,-34,27,-34,59","w":142},"\u00e6":{"d":"323,-89r-138,0v-6,24,1,47,28,46v19,0,33,-18,37,-26r56,19v-12,19,-39,55,-101,55v-25,0,-58,-11,-72,-35v-28,34,-138,62,-138,-21v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v44,0,60,18,66,26v51,-54,151,-23,147,64v0,14,-2,35,-6,43xm192,-133r70,0v10,-22,-6,-42,-27,-42v-27,0,-39,27,-43,42xm119,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3","w":339},"\u0131":{"d":"-2,0r41,-217r68,0r-41,217r-68,0","w":113},"\u0142":{"d":"-2,0r19,-100r-27,18r5,-34r28,-18r28,-146r68,0r-19,98r25,-15r-6,33r-25,16r-28,148r-68,0","w":113},"\u00f8":{"d":"152,-138r-79,74v3,15,13,21,28,21v30,0,51,-54,51,-95xm72,-84r78,-72v-4,-13,-13,-18,-27,-18v-36,0,-51,54,-51,90xm-10,-6r28,-26v-40,-77,10,-190,108,-190v31,0,54,9,69,23r28,-26r10,11r-28,27v42,77,-8,192,-107,192v-32,0,-56,-10,-71,-26r-27,26","w":233,"k":{",":13,".":13}},"\u0153":{"d":"270,-69r56,19v-12,19,-39,55,-101,55v-26,0,-46,-8,-61,-26v-12,13,-35,26,-73,26v-54,0,-88,-34,-88,-90v0,-63,43,-137,122,-137v37,0,58,11,70,24v50,-47,153,-26,153,66v0,14,-1,35,-5,43r-139,0v-4,25,2,47,29,46v19,0,33,-18,37,-26xm212,-133r70,0v8,-23,-6,-42,-27,-42v-27,0,-39,27,-43,42xm71,-77v0,24,11,34,28,34v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97","w":360,"k":{",":13,".":13}},"\u00df":{"d":"-2,0r37,-193v13,-61,46,-91,110,-91v44,0,80,18,80,63v0,34,-23,64,-61,68r-2,3v19,3,54,15,54,59v0,65,-65,113,-136,91r17,-49v29,13,58,-10,56,-45v-1,-27,-19,-32,-41,-31r8,-46v26,1,40,-8,41,-42v-7,-38,-51,-24,-57,10r-38,203r-68,0","w":240,"k":{",":9,".":9}},"\u00b9":{"d":"56,-105r22,-110r-39,25r-17,-27r68,-41r43,0r-32,153r-45,0","w":138},"\u00ac":{"d":"156,-39r0,-71r-139,0r0,-43r182,0r0,114r-43,0","w":216},"\u00b5":{"d":"-15,70r54,-287r68,0r-28,150v5,34,50,16,54,-6r28,-144r67,0r-41,217r-68,0v1,-8,6,-18,4,-25v-2,16,-41,41,-56,18r-15,77r-67,0","w":233},"\u2122":{"d":"53,-108r0,-116r-40,0r0,-32r124,0r0,32r-41,0r0,116r-43,0xm307,-108r0,-97r-32,97r-32,0r-33,-97r0,97r-39,0r0,-148r56,0r32,86r32,-86r56,0r0,148r-40,0","w":360},"\u00d0":{"d":"0,0r23,-123r-27,0r5,-27r27,0r21,-106r103,0v68,0,107,40,107,108v0,85,-61,148,-141,148r-118,0xm143,-150r-5,27r-44,0r-14,71v74,10,106,-34,106,-98v0,-40,-30,-59,-77,-53r-10,53r44,0","w":273,"k":{"V":6,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00bd":{"d":"56,9r149,-275r30,0r-149,275r-30,0xm41,-105r23,-110r-40,25r-16,-27r68,-41r42,0r-31,153r-46,0xm165,0r6,-28r71,-55v15,-12,23,-21,23,-31v0,-10,-7,-15,-17,-15v-17,0,-22,17,-22,24r-38,-7v5,-18,17,-45,64,-45v72,0,68,69,25,89v-17,14,-37,25,-53,40r64,0r-6,28r-117,0","w":320},"\u00b1":{"d":"87,-54r0,-42r-70,0r0,-44r70,0r0,-42r43,0r0,42r69,0r0,44r-69,0r0,42r-43,0xm17,0r0,-43r182,0r0,43r-182,0","w":216},"\u00de":{"d":"90,-108v38,2,73,1,73,-36v0,-34,-29,-29,-60,-29xm0,0r49,-256r70,0r-6,31v66,-4,120,9,118,69v-2,83,-64,108,-150,100r-11,56r-70,0","w":226},"\u00bc":{"d":"226,0r5,-23r-70,0r6,-34r87,-97r46,0r-21,102r21,0r-6,29r-21,0r-5,23r-42,0xm239,-52v4,-21,13,-45,15,-64r-56,64r41,0xm70,9r149,-275r31,0r-149,275r-31,0xm56,-105r22,-110r-39,25r-17,-27r68,-41r43,0r-32,153r-45,0","w":320},"\u00f7":{"d":"17,-69r0,-44r182,0r0,44r-182,0xm75,-166v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34xm75,-17v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":216},"\u00a6":{"d":"18,63r0,-126r44,0r0,126r-44,0xm18,-117r0,-126r44,0r0,126r-44,0","w":79},"\u00b0":{"d":"20,-202v0,-33,28,-60,61,-60v33,0,60,27,60,60v0,33,-27,61,-60,61v-33,0,-61,-28,-61,-61xm56,-202v0,14,11,25,25,25v14,0,24,-11,24,-25v0,-14,-10,-24,-24,-24v-14,0,-25,10,-25,24","w":144},"\u00fe":{"d":"-14,70r67,-350r68,0r-15,85v13,-15,35,-27,57,-27v43,0,62,36,62,75v0,73,-31,152,-100,152v-25,0,-41,-11,-53,-28r-18,93r-68,0xm97,-154r-17,92v4,5,12,17,28,17v35,0,48,-50,48,-89v0,-44,-40,-42,-59,-20","w":240,"k":{",":13,".":13}},"\u00be":{"d":"237,0r5,-23r-71,0r6,-34r87,-97r46,0r-21,102r21,0r-6,29r-21,0r-5,23r-41,0xm249,-52v4,-21,13,-45,15,-64r-56,64r41,0xm79,9r149,-275r31,0r-149,275r-31,0xm59,-169r5,-30v10,0,39,1,39,-21v0,-11,-9,-14,-17,-14v-15,0,-19,12,-19,16r-35,-10v1,-4,14,-34,59,-34v77,0,64,74,11,76v15,5,32,12,32,34v0,25,-22,50,-66,50v-49,0,-57,-27,-58,-41r40,-7v0,5,0,19,18,19v13,0,22,-10,22,-22v0,-17,-17,-18,-31,-16","w":320},"\u00b2":{"d":"4,-105r6,-29r72,-54v15,-12,22,-21,22,-31v0,-10,-7,-15,-17,-15v-17,0,-22,16,-22,23r-38,-6v5,-18,17,-45,64,-45v72,0,65,61,26,89r-54,39r64,0r-5,29r-118,0","w":138},"\u00ae":{"d":"167,-55r-32,-59r-13,0r0,59r-34,0r0,-146v51,1,118,-10,118,42v0,26,-17,42,-38,44r35,60r-36,0xm122,-141v21,0,48,4,48,-17v0,-21,-28,-15,-48,-16r0,33xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm42,-128v0,56,46,102,102,102v56,0,102,-46,102,-102v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102","w":288},"\u2212":{"d":"17,-69r0,-44r182,0r0,44r-182,0","w":216},"\u00f0":{"d":"52,-227r38,-19r-20,-20r46,-26v8,6,20,16,26,22r42,-22r18,21r-42,21v24,28,53,63,53,120v0,63,-34,135,-119,135v-51,0,-90,-23,-90,-89v0,-68,61,-136,131,-110v-7,-12,-17,-24,-26,-33r-41,20xm71,-73v0,24,10,33,27,33v34,0,49,-48,49,-83v0,-22,-8,-36,-28,-36v-33,0,-48,50,-48,86","w":233},"\u00d7":{"d":"78,-91r-55,-56r30,-29r55,55r55,-55r30,29r-56,56r56,55r-30,30r-55,-56r-55,56r-30,-30","w":216},"\u00b3":{"d":"59,-169r5,-30v10,0,39,1,39,-21v0,-11,-9,-14,-17,-14v-15,0,-19,12,-19,16r-35,-10v1,-4,14,-34,59,-34v77,0,64,74,11,76v15,5,32,12,32,34v0,25,-22,50,-66,50v-49,0,-57,-27,-58,-41r40,-7v0,5,0,19,18,19v13,0,22,-10,22,-22v0,-17,-17,-18,-31,-16","w":138},"\u00a9":{"d":"177,-109r36,0v-4,37,-34,57,-66,57v-44,0,-74,-34,-74,-77v0,-85,129,-111,140,-23r-36,0v-3,-17,-15,-23,-30,-23v-23,0,-35,18,-35,45v0,46,58,64,65,21xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm42,-128v0,56,46,102,102,102v56,0,102,-46,102,-102v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102","w":288},"\u00c1":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm134,-276r39,-53r75,0r-68,53r-46,0","w":273},"\u00c2":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm87,-276r52,-53r59,0r32,53r-43,0r-19,-27r-31,27r-50,0","w":273},"\u00c4":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm84,-278r9,-48r63,0r-9,48r-63,0xm169,-278r9,-48r63,0r-10,48r-62,0","w":273},"\u00c0":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm95,-329r73,0r38,53r-47,0","w":273},"\u00c5":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm125,-304v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm147,-304v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":273},"\u00c3":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm121,-276r-29,0v0,-10,5,-51,47,-51v21,0,58,28,64,0r29,0v6,12,-21,66,-59,48v-14,-6,-53,-20,-52,3","w":273},"\u00c7":{"d":"171,-88r60,14v-1,6,-21,80,-111,80r-12,16v19,-4,40,4,40,25v0,42,-70,38,-92,23r10,-17v9,7,46,15,47,-5v1,-10,-17,-11,-25,-7r-9,-10r19,-26v-54,-7,-89,-41,-89,-107v0,-78,48,-160,149,-160v82,0,93,66,94,78r-66,13v-1,-14,-8,-38,-35,-38v-51,0,-69,70,-69,116v0,33,14,47,38,47v31,0,48,-34,51,-42","w":253,"k":{",":9,".":9}},"\u00c9":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm110,-276r40,-53r75,0r-68,53r-47,0","w":226},"\u00ca":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm63,-276r53,-53r59,0r32,53r-44,0r-19,-27r-30,27r-51,0","w":226},"\u00cb":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm60,-278r10,-48r62,0r-9,48r-63,0xm145,-278r10,-48r62,0r-9,48r-63,0","w":226},"\u00c8":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm71,-329r74,0r37,53r-46,0","w":226},"\u00cd":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm57,-276r39,-53r75,0r-67,53r-47,0","w":119},"\u00ce":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm10,-276r53,-53r59,0r31,53r-43,0r-19,-27r-31,27r-50,0","w":119},"\u00cf":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm7,-278r10,-48r62,0r-9,48r-63,0xm92,-278r10,-48r62,0r-9,48r-63,0","w":119},"\u00cc":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm18,-329r73,0r38,53r-47,0","w":119},"\u00d1":{"d":"0,0r49,-256r89,0r48,185r3,0v8,-60,23,-126,33,-185r66,0r-49,256r-90,0r-40,-138v-5,-12,-5,-33,-11,-45v-6,63,-23,123,-33,183r-65,0xm127,-276r-29,0v0,-10,5,-51,47,-51v22,0,59,28,65,0r29,0v6,12,-20,65,-59,48v-15,-7,-53,-20,-53,3","w":286,"k":{",":9,".":9}},"\u00d3":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm137,-276r39,-53r75,0r-67,53r-47,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d4":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm90,-276r53,-53r59,0r31,53r-43,0r-19,-27r-31,27r-50,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d6":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm87,-278r9,-48r63,0r-9,48r-63,0xm172,-278r9,-48r63,0r-9,48r-63,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d2":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm98,-329r73,0r38,53r-47,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d5":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm124,-276r-29,0v0,-10,5,-51,47,-51v21,0,58,28,64,0r29,0v0,10,-4,51,-46,51v-20,0,-61,-28,-65,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0160":{"d":"0,-60r63,-19v2,10,9,35,39,35v24,0,37,-9,37,-27v0,-27,-48,-35,-70,-47v-26,-14,-41,-31,-41,-61v0,-50,44,-83,106,-83v61,0,90,29,92,60r-62,17v-1,-7,-5,-27,-34,-27v-15,0,-32,7,-32,24v0,28,39,31,60,41v84,37,69,153,-59,153v-84,0,-98,-52,-99,-66xm84,-329r43,0r20,27r30,-27r50,0r-52,53r-60,0","w":233,"k":{",":13,".":13}},"\u00da":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm130,-276r40,-53r75,0r-68,53r-47,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00db":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm84,-276r52,-53r59,0r32,53r-43,0r-19,-27r-31,27r-50,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dc":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm83,-278r9,-48r63,0r-10,48r-62,0xm168,-278r9,-48r63,0r-10,48r-62,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00d9":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm91,-329r74,0r37,53r-46,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dd":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0xm127,-276r39,-53r75,0r-67,53r-47,0","w":259,"k":{"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"\u0178":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0xm77,-278r9,-48r63,0r-9,48r-63,0xm162,-278r9,-48r63,0r-9,48r-63,0","w":259,"k":{"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"\u017d":{"d":"-14,0r11,-62r144,-141r-111,0r10,-53r193,0r-12,61r-146,141r119,0r-10,54r-198,0xm77,-329r43,0r20,27r31,-27r50,0r-53,53r-59,0","w":219},"\u00e1":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm107,-237r40,-52r74,0r-67,52r-47,0","w":219},"\u00e2":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm60,-237r53,-52r59,0r31,52r-43,0r-19,-27r-30,27r-51,0","w":219},"\u00e4":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm57,-239r10,-48r62,0r-9,48r-63,0xm142,-239r10,-48r62,0r-9,48r-63,0","w":219},"\u00e0":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm68,-289r73,0r38,52r-47,0","w":219},"\u00e5":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm96,-270v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm118,-270v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":219},"\u00e3":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm94,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r30,0v4,12,-17,62,-59,49v-13,-8,-52,-20,-53,2","w":219},"\u00e7":{"d":"128,-79r59,15v-13,35,-42,67,-89,69r-13,17v19,-4,39,4,39,25v0,43,-69,37,-91,23r9,-17v10,6,47,15,48,-5v1,-10,-18,-11,-26,-7r-9,-10r21,-26v-45,-6,-70,-41,-70,-90v0,-58,29,-137,111,-137v59,0,83,30,85,66r-60,16v4,-20,-3,-34,-24,-35v-40,0,-46,80,-46,104v0,14,5,28,25,28v19,0,30,-21,31,-36","w":206,"k":{",":9,".":9}},"\u00e9":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm110,-237r40,-52r75,0r-68,52r-47,0","w":226,"k":{",":13,".":13}},"\u00ea":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm63,-237r53,-52r59,0r32,52r-44,0r-19,-27r-30,27r-51,0","w":226,"k":{",":13,".":13}},"\u00eb":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm60,-239r10,-48r62,0r-9,48r-63,0xm145,-239r10,-48r62,0r-9,48r-63,0","w":226,"k":{",":13,".":13}},"\u00e8":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm71,-289r74,0r37,52r-46,0","w":226,"k":{",":13,".":13}},"\u00ed":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm46,-237r40,-52r75,0r-68,52r-47,0","w":113},"\u00ee":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm7,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":113},"\u00ef":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm4,-239r9,-48r63,0r-9,48r-63,0xm89,-239r9,-48r63,0r-9,48r-63,0","w":113},"\u00ec":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm4,-289r73,0r37,52r-46,0","w":113},"\u00f1":{"d":"-2,0r41,-217r68,0r-6,30v15,-11,45,-35,75,-35v41,0,50,30,43,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0xm104,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r30,0v4,12,-17,62,-59,49v-13,-8,-52,-20,-53,2","w":240},"\u00f3":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm113,-237r40,-52r75,0r-68,52r-47,0","w":233,"k":{",":13,".":13}},"\u00f4":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm67,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":233,"k":{",":13,".":13}},"\u00f6":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm64,-239r9,-48r63,0r-10,48r-62,0xm149,-239r9,-48r63,0r-10,48r-62,0","w":233,"k":{",":13,".":13}},"\u00f2":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm75,-289r73,0r37,52r-46,0","w":233,"k":{",":13,".":13}},"\u00f5":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm101,-237r-29,0v0,-10,5,-50,47,-50v21,0,58,26,64,-1r29,0v4,12,-17,62,-59,49v-13,-7,-51,-20,-52,2","w":233,"k":{",":13,".":13}},"\u0161":{"d":"-6,-51r59,-17v1,9,3,26,29,26v15,0,26,-7,26,-18v1,-20,-35,-24,-52,-31v-21,-9,-39,-21,-39,-56v0,-47,41,-75,93,-75v58,0,79,37,84,52r-57,17v-1,-6,-4,-24,-27,-24v-18,0,-27,10,-27,20v-2,19,37,23,54,29v25,9,42,24,42,53v0,33,-24,80,-102,80v-63,0,-76,-32,-83,-56xm62,-289r43,0r20,27r31,-27r49,0r-52,52r-60,0","w":200,"k":{",":9,".":9}},"\u00fa":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm113,-237r40,-52r75,0r-68,52r-47,0","w":233},"\u00fb":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm67,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":233},"\u00fc":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm64,-239r9,-48r63,0r-10,48r-62,0xm149,-239r9,-48r63,0r-10,48r-62,0","w":233},"\u00f9":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm75,-289r73,0r37,52r-46,0","w":233},"\u00fd":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20xm104,-237r39,-52r75,0r-68,52r-46,0","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u00ff":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20xm54,-239r9,-48r63,0r-9,48r-63,0xm139,-239r9,-48r63,0r-9,48r-63,0","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u017e":{"d":"-15,0r10,-50r116,-122v-23,4,-61,2,-89,2r9,-47r172,0r-9,49r-117,123v25,-4,67,-1,97,-2r-9,47r-180,0xm62,-289r43,0r20,27r31,-27r49,0r-52,52r-60,0","w":200},"\u2206":{"d":"-19,0r7,-30r134,-233r64,0r33,232r-7,31r-231,0xm46,-43r117,0r-24,-164v-25,51,-64,113,-93,164","w":250},"\u2126":{"d":"-6,-43v16,-1,36,2,50,-1v-18,-20,-33,-54,-23,-100v13,-63,70,-118,141,-118v76,0,102,62,91,115v-9,47,-41,81,-68,104r51,0r-9,43r-104,0r7,-32v26,-14,53,-45,65,-103v10,-45,-3,-82,-42,-82v-37,0,-70,34,-80,84v-11,52,1,88,22,101r-6,32r-104,0","w":268},"\u03bc":{"d":"-15,70r54,-287r68,0r-28,150v5,34,50,16,54,-6r28,-144r67,0r-41,217r-68,0v1,-8,6,-18,4,-25v-2,16,-41,41,-56,18r-15,77r-67,0","w":233},"\u03c0":{"d":"226,-149r-25,0v-9,43,-26,106,-27,149r-53,0v-4,-40,19,-108,26,-149r-48,0v-10,38,-33,111,-54,149r-53,0v21,-43,45,-111,54,-149v-17,0,-28,1,-37,4r2,-36v45,-24,159,-9,229,-13","w":231},"\u20ac":{"d":"193,-13v-74,42,-189,13,-181,-81r-26,0v9,-9,8,-29,28,-27v1,-8,2,-17,5,-25r-24,0r17,-27r17,0v23,-78,129,-114,208,-68r-32,51v-26,-29,-88,-35,-102,17r92,0r-17,27r-84,0v-3,9,-5,17,-6,25r74,0r-17,27r-59,0v-7,41,35,63,76,42v15,-7,30,-16,42,-26"},"\u2113":{"d":"158,-72r17,22v-30,40,-64,54,-94,54v-47,-1,-59,-26,-57,-62v-7,5,-13,9,-21,14r-7,-28v13,-9,24,-16,36,-25r19,-89v14,-66,51,-97,91,-97v39,0,49,31,41,68v-9,43,-46,83,-101,126v-7,23,-4,50,21,50v19,0,41,-16,55,-33xm137,-245v-23,-7,-38,73,-44,107v30,-27,52,-56,57,-79v4,-17,1,-28,-13,-28","w":199},"\u212e":{"d":"95,-50v36,63,148,60,189,3r22,0v-27,31,-70,52,-118,52v-82,0,-148,-61,-148,-134v0,-74,66,-133,148,-133v83,1,151,59,149,137r-242,2r0,73xm283,-208v-37,-60,-140,-61,-185,-7v-7,21,-3,58,-2,83r187,-2r0,-74","w":349},"\u2202":{"d":"59,-230r-6,-39v13,-8,39,-22,76,-22v58,0,97,49,78,141v-20,93,-74,154,-142,154v-55,0,-70,-50,-62,-89v13,-59,57,-97,103,-97v31,0,43,20,49,28v11,-43,2,-94,-42,-93v-24,0,-43,9,-54,17xm80,-41v26,0,51,-39,61,-70v-19,-56,-77,-20,-85,28v-4,23,4,42,24,42","w":220},"\u220f":{"d":"293,-210r-38,0r0,246r-53,0r0,-246r-76,0r0,246r-53,0r0,-246r-38,0r0,-48r258,0r0,48","w":301},"\u2211":{"d":"232,36r-197,0r0,-34r88,-113r-85,-110r0,-37r188,0r0,46r-115,1r73,91r-82,107r130,0r0,49","w":238},"\u2219":{"d":"20,-102v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":106},"\u221a":{"d":"259,-310r-86,361r-42,0r-56,-159r-27,12r-9,-30r68,-27r37,112v4,12,5,26,9,34v18,-104,47,-202,69,-303r37,0","w":253},"\u221e":{"d":"222,-170v33,0,62,25,59,64v-5,78,-87,90,-127,24v-19,24,-39,42,-69,42v-31,0,-60,-25,-60,-64v0,-39,28,-66,64,-66v28,0,47,16,66,41v14,-17,33,-41,67,-41xm89,-68v20,0,35,-18,49,-35v-15,-21,-27,-39,-51,-39v-20,0,-33,16,-33,38v0,19,16,36,35,36xm219,-142v-22,0,-37,23,-49,37v22,28,33,37,51,37v43,-1,39,-74,-2,-74","w":298},"\u222b":{"d":"78,-217v0,-75,30,-113,93,-99r-5,37v-35,-14,-41,21,-41,67v0,100,48,311,-90,271r6,-37v36,9,44,-10,43,-59v0,-69,-6,-116,-6,-180","w":178},"\u2248":{"d":"77,-170v32,0,48,26,71,27v14,0,23,-11,33,-27r19,18v-13,23,-31,39,-52,39v-24,0,-48,-27,-73,-27v-17,0,-26,13,-35,26r-19,-17v11,-22,33,-39,56,-39xm77,-99v33,0,45,27,71,27v15,0,23,-10,33,-26r19,17v-13,23,-30,39,-52,39v-25,0,-48,-27,-73,-27v-17,0,-26,14,-35,27r-19,-18v11,-22,33,-39,56,-39"},"\u2260":{"d":"168,-191r-14,32r49,0r0,30r-61,0r-21,49r82,0r0,30r-94,0r-18,42r-24,-9r14,-33r-49,0r0,-30r61,0r21,-49r-82,0r0,-30r94,0r18,-42","w":220},"\u2264":{"d":"210,-37r-169,-83r0,-33r168,-83r0,35r-138,65r139,63r0,36xm211,7r-171,0r0,-31r171,0r0,31","w":227},"\u2265":{"d":"42,-236r168,83r0,33r-168,83r0,-36r138,-64r-138,-64r0,-35xm210,7r-170,0r0,-31r170,0r0,31","w":227},"\u25ca":{"d":"236,-129r-75,148r-43,0r-72,-148r74,-147r43,0xm189,-127v-16,-36,-37,-67,-48,-107v-12,37,-32,70,-48,104r48,107v12,-39,33,-69,48,-104","w":253},"\u00a0":{"w":106},"\u00ad":{"d":"1,-88r8,-45r90,0r-9,45r-89,0","w":106},"\u02c9":{"d":"11,-248r6,-32r123,0r-6,32r-123,0","w":100},"\u03a9":{"d":"-6,-43v16,-1,36,2,50,-1v-18,-20,-33,-54,-23,-100v13,-63,70,-118,141,-118v76,0,102,62,91,115v-9,47,-41,81,-68,104r51,0r-9,43r-104,0r7,-32v26,-14,53,-45,65,-103v10,-45,-3,-82,-42,-82v-37,0,-70,34,-80,84v-11,52,1,88,22,101r-6,32r-104,0","w":268},"\u2215":{"d":"-60,9r149,-275r31,0r-149,275r-31,0","w":60}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991 Adobe Systems Incorporated.  All Rights Reserved.Vectora is
 * a trademark of Linotype-Hell AG and/or its subsidiaries.
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora LT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-54 -346 386 90","underline-thickness":"18","underline-position":"-36","stemh":"41","stemv":"52","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":106},"!":{"d":"40,-81r-6,-175r52,0r-7,175r-39,0xm37,0r0,-48r46,0r0,48r-46,0","w":119},"\"":{"d":"73,-189r0,-91r37,0r0,91r-37,0xm10,-189r0,-91r36,0r0,91r-36,0","w":119},"#":{"d":"108,0r11,-76r-39,0r-10,76r-30,0r10,-76r-33,0r0,-27r37,0r6,-50r-33,0r0,-27r37,0r11,-76r30,0r-11,76r39,0r10,-76r31,0r-11,76r34,0r0,27r-38,0r-6,50r33,0r0,27r-37,0r-11,76r-30,0xm122,-103r7,-50r-38,0r-7,50r38,0"},"$":{"d":"97,31r0,-25v-61,-1,-80,-42,-84,-59r45,-13v4,23,22,31,39,34r0,-78v-32,-6,-78,-26,-78,-78v0,-35,28,-74,78,-74r0,-26r20,0r0,26v58,0,75,36,78,55r-45,9v-4,-15,-17,-26,-33,-26r0,73v57,14,84,35,84,76v0,55,-38,78,-84,81r0,25r-20,0xm97,-157r0,-67v-19,1,-33,13,-33,32v0,18,12,27,33,35xm117,-105r0,73v22,-4,37,-16,37,-35v0,-24,-18,-31,-37,-38"},"%":{"d":"75,-150v38,-1,38,-86,0,-87v-37,1,-38,86,0,87xm75,-124v-44,0,-62,-30,-62,-69v0,-35,21,-69,62,-69v45,0,61,30,61,69v0,35,-20,69,-61,69xm225,6v-44,0,-61,-30,-61,-69v0,-35,20,-69,61,-69v45,0,62,30,62,69v0,35,-21,69,-62,69xm225,-19v37,-1,38,-87,0,-88v-37,1,-38,87,0,88xm66,9r139,-274r28,0r-139,274r-28,0","w":299},"&":{"d":"113,-227v-48,0,-33,52,-5,70v24,-14,37,-22,37,-41v0,-15,-11,-29,-32,-29xm202,0r-19,-22v-23,17,-39,26,-75,26v-67,0,-95,-36,-95,-76v0,-45,36,-60,53,-68v-13,-10,-34,-32,-34,-59v0,-49,45,-63,82,-63v60,0,79,33,79,60v0,39,-34,58,-55,68r50,53v9,-12,17,-24,18,-56r46,0v0,33,-11,65,-34,89r44,48r-60,0xm157,-50r-62,-64v-12,6,-31,17,-31,40v0,47,56,58,93,24","w":266},"\u2019":{"d":"39,-280r47,0r-33,91r-39,0","w":106},"(":{"d":"105,30r-29,18v-81,-105,-82,-226,0,-331r29,18v-22,37,-46,79,-46,147v0,68,24,111,46,148","w":113},")":{"d":"9,-265r28,-18v82,105,82,226,0,331r-28,-18v22,-37,45,-80,45,-148v0,-68,-23,-110,-45,-147","w":113},"*":{"d":"35,-135r35,-42r-54,-15r10,-30r52,21r-5,-55r34,0r-5,55r52,-21r10,30r-54,15r35,42r-25,18r-30,-46r-30,46","w":180},"+":{"d":"91,-108r0,-74r34,0r0,74r74,0r0,34r-74,0r0,74r-34,0r0,-74r-74,0r0,-34r74,0","w":216},",":{"d":"34,-48r47,0r-32,92r-39,0","w":106},"-":{"d":"13,-126r88,0r0,37r-88,0r0,-37","w":113},".":{"d":"30,0r0,-48r46,0r0,48r-46,0","w":106},"\/":{"d":"1,0r106,-269r32,12r-106,269","w":140},"0":{"d":"64,-129v0,54,8,97,43,97v35,0,42,-43,42,-97v0,-47,-4,-97,-42,-97v-38,0,-43,50,-43,97xm12,-129v0,-68,18,-133,95,-133v77,0,94,65,94,133v0,68,-20,133,-94,133v-74,0,-95,-65,-95,-133"},"1":{"d":"108,0r0,-204r-56,45r-25,-30r87,-67r46,0r0,256r-52,0"},"2":{"d":"17,0r0,-37r73,-72v19,-19,50,-49,50,-81v0,-21,-12,-36,-36,-36v-31,0,-40,26,-40,44r-48,-8v7,-44,38,-72,91,-72v53,0,83,33,83,72v0,71,-76,108,-113,153r114,0r0,37r-174,0"},"3":{"d":"64,-193r-45,-13v15,-38,46,-56,88,-56v38,0,81,13,81,65v0,27,-17,49,-51,62v44,8,56,35,56,64v0,32,-22,75,-93,75v-64,0,-82,-44,-85,-68r46,-10v3,24,15,42,41,42v26,0,39,-20,39,-41v0,-35,-26,-43,-62,-41r0,-38v32,2,59,-7,60,-38v0,-19,-12,-36,-36,-36v-27,0,-34,20,-39,33"},"4":{"d":"120,0r0,-44r-108,0r0,-43r104,-169r52,0r0,175r34,0r0,37r-34,0r0,44r-48,0xm120,-81r0,-71v0,-25,4,-43,5,-54v-9,2,-12,20,-20,35r-52,90r67,0"},"5":{"d":"184,-256r0,36r-103,0r-1,56v61,-17,113,19,113,82v0,48,-34,86,-90,86v-49,0,-72,-21,-82,-68r43,-9v0,17,10,41,37,41v24,0,40,-15,40,-47v0,-60,-66,-64,-106,-37r3,-140r146,0"},"6":{"d":"109,-256r61,0r-33,39v-18,23,-44,48,-46,62v50,-24,105,18,105,73v0,46,-30,86,-89,86v-78,0,-90,-63,-90,-90v3,-73,59,-121,92,-170xm144,-80v5,-40,-45,-56,-69,-38v-15,27,-9,86,28,86v31,0,38,-23,41,-48"},"7":{"d":"24,0r111,-217r-117,0r0,-39r171,0r0,36r-108,220r-57,0"},"8":{"d":"109,-155v34,-13,45,-73,-2,-73v-24,0,-36,13,-36,31v0,21,21,34,38,42xm143,-68v0,-19,-29,-59,-50,-39v-36,19,-34,76,13,77v24,0,37,-16,37,-38xm108,-262v50,0,80,25,80,60v0,36,-29,54,-45,63v22,13,51,32,51,71v0,37,-29,72,-87,72v-63,0,-88,-35,-88,-69v0,-35,22,-49,52,-68v-14,-7,-48,-23,-48,-63v0,-44,39,-66,85,-66"},"9":{"d":"44,0r32,-39v20,-26,43,-52,46,-64v-50,24,-105,-18,-105,-73v0,-46,30,-86,89,-86v78,0,90,63,90,90v0,73,-60,122,-92,172r-60,0xm69,-179v-5,39,45,58,69,39v15,-26,10,-86,-27,-86v-31,0,-39,22,-42,47"},":":{"d":"30,-168r0,-47r46,0r0,47r-46,0xm30,0r0,-48r46,0r0,48r-46,0","w":106},";":{"d":"34,-48r47,0r-32,92r-39,0xm30,-168r0,-47r46,0r0,47r-46,0","w":106},"<":{"d":"199,-32r0,35r-182,-80r0,-28r182,-80r0,35r-137,59","w":216},"=":{"d":"199,-147r0,35r-182,0r0,-35r182,0xm199,-70r0,35r-182,0r0,-35r182,0","w":216},">":{"d":"17,3r0,-35r137,-59r-137,-59r0,-35r182,80r0,28","w":216},"?":{"d":"77,-81v-14,-56,52,-72,53,-115v0,-17,-11,-30,-32,-30v-27,0,-34,25,-35,33r-45,-9v13,-53,56,-60,84,-60v74,0,96,78,50,117v-17,14,-40,27,-35,64r-40,0xm74,0r0,-48r46,0r0,48r-46,0","w":193},"@":{"d":"149,-167v-43,-3,-66,81,-16,85v42,2,67,-81,16,-85xm224,-196r-26,109v0,5,3,8,8,8v19,0,41,-28,41,-66v0,-58,-44,-90,-98,-90v-62,0,-102,47,-102,108v0,97,123,139,184,75r28,0v-24,37,-64,58,-109,58v-78,0,-136,-57,-136,-134v0,-76,61,-134,129,-134v79,0,131,49,131,109v0,74,-63,104,-89,104v-12,0,-19,-8,-22,-20v-27,39,-100,14,-95,-40v-6,-63,80,-129,121,-67r5,-20r30,0","w":288},"A":{"d":"90,-99r79,0v-14,-38,-22,-82,-40,-116v-8,42,-26,78,-39,116xm1,0r96,-256r69,0r93,256r-56,0r-21,-60r-106,0r-21,60r-54,0","w":259},"B":{"d":"78,-40v41,-1,85,10,87,-35v0,-19,-8,-37,-38,-37r-49,0r0,72xm26,0r0,-256r105,0v58,0,80,29,80,64v0,27,-15,51,-46,59v25,3,53,23,53,62v0,45,-29,71,-89,71r-103,0xm78,-151v39,0,80,7,81,-34v1,-40,-44,-31,-81,-32r0,66","w":233},"C":{"d":"231,-190r-50,11v-3,-24,-20,-42,-45,-42v-38,0,-64,28,-64,93v0,65,23,93,58,93v36,0,51,-27,54,-45r50,11v-2,13,-19,75,-107,75v-67,0,-112,-46,-112,-134v0,-88,50,-134,121,-134v53,0,83,27,95,72","w":246},"D":{"d":"26,0r0,-256v122,-1,210,-17,218,129v6,119,-96,135,-218,127xm80,-215r0,174v71,9,107,-26,107,-88v0,-57,-35,-96,-107,-86","w":259},"E":{"d":"26,0r0,-256r167,0r0,41r-113,0r0,62r106,0r0,41r-106,0r0,71r116,0r0,41r-170,0"},"F":{"d":"26,0r0,-256r167,0r0,41r-113,0r0,69r109,0r0,41r-109,0r0,105r-54,0","w":206},"G":{"d":"234,-197r-50,13v-1,-14,-22,-37,-48,-37v-38,0,-64,28,-64,93v0,88,51,107,108,83r0,-58r-44,0r0,-40r96,0r0,121v-15,10,-52,28,-96,28v-71,0,-121,-46,-121,-134v0,-88,50,-134,121,-134v61,0,85,27,98,65","w":253},"H":{"d":"26,0r0,-256r54,0r0,100r100,0r0,-100r54,0r0,256r-54,0r0,-114r-100,0r0,114r-54,0","w":259},"I":{"d":"26,0r0,-256r54,0r0,256r-54,0","w":106},"J":{"d":"-5,-9r22,-39v21,23,51,12,51,-28r0,-180r54,0r0,185v10,62,-77,100,-127,62","w":146},"K":{"d":"26,0r0,-256r54,0r1,109r88,-109r64,0r-102,121r109,135r-69,0r-91,-117r0,117r-54,0","w":240},"L":{"d":"26,0r0,-256r54,0r0,214r102,0r0,42r-156,0","w":186},"M":{"d":"149,0r-58,-167v-6,-17,-12,-42,-13,-50r-3,0r1,217r-50,0r0,-256r84,0v19,61,46,122,59,187r2,0v13,-63,41,-127,59,-187r84,0r0,256r-50,0r1,-217r-4,0v-16,72,-48,148,-70,217r-42,0","w":339},"N":{"d":"26,0r0,-256r70,0v32,62,80,133,101,200r3,0v-4,-53,-3,-139,-3,-200r50,0r0,256r-71,0v-32,-66,-75,-128,-100,-200r-3,0v5,60,2,134,3,200r-50,0","w":273},"O":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm133,6v-71,0,-120,-46,-120,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,88,-49,134,-120,134","w":266},"P":{"d":"22,0r0,-256r101,0v62,0,87,35,87,78v0,79,-61,86,-134,82r0,96r-54,0xm76,-136v44,2,86,0,82,-44v5,-39,-42,-39,-82,-37r0,81","w":219},"Q":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm218,67r-87,-61v-65,0,-118,-43,-118,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,63,-25,105,-65,123r60,38","w":266},"R":{"d":"80,-146v39,-1,80,8,80,-36v0,-46,-41,-33,-80,-35r0,71xm168,0r-47,-106r-41,0r0,106r-54,0r0,-256r108,0v94,-9,103,118,36,139r58,117r-60,0","w":233},"S":{"d":"199,-210r-49,16v-4,-11,-9,-29,-37,-29v-46,1,-56,42,-19,57v44,18,110,35,110,92v0,43,-34,80,-99,80v-59,0,-86,-34,-92,-60r49,-18v3,17,13,37,46,37v47,1,59,-50,12,-66v-44,-15,-101,-30,-102,-85v0,-36,25,-76,94,-76v42,0,73,10,87,52","w":219},"T":{"d":"73,0r0,-214r-70,0r0,-42r194,0r0,42r-70,0r0,214r-54,0","w":200},"U":{"d":"178,-256r52,0r0,155v0,70,-36,107,-107,107v-64,0,-99,-37,-99,-107r0,-155r52,0r0,155v0,39,12,66,51,66v39,0,51,-27,51,-66r0,-155","w":253},"V":{"d":"2,-256r57,0r59,208r2,0r64,-208r54,0r-85,256r-70,0","w":240},"W":{"d":"64,0r-61,-256r55,0r29,142v4,17,10,54,11,69r3,0v6,-62,29,-149,41,-211r66,0r32,154v4,18,7,38,9,57r3,0v8,-77,28,-139,41,-211r50,0r-59,256r-68,0v-13,-68,-34,-139,-40,-211r-4,0v-9,73,-28,141,-41,211r-67,0","w":346},"X":{"d":"72,-256r53,94v13,-32,36,-64,52,-94r60,0r-77,122r83,134r-63,0v-19,-33,-43,-68,-57,-104r-3,0v-14,34,-39,71,-57,104r-60,0r84,-134r-77,-122r62,0","w":246},"Y":{"d":"93,0r0,-99r-93,-157r63,0r59,112v14,-41,38,-75,57,-112r61,0r-93,157r0,99r-54,0","w":240},"Z":{"d":"10,0r0,-42r122,-173r-118,0r0,-41r180,0r0,43r-121,172r123,0r0,41r-186,0","w":206},"[":{"d":"25,47r0,-320r72,0r0,25r-29,0r0,270r29,0r0,25r-72,0","w":106},"\\":{"d":"33,-269r106,269r-32,12r-106,-269","w":140},"]":{"d":"81,-273r0,320r-72,0r0,-25r30,0r0,-270r-30,0r0,-25r72,0","w":106},"^":{"d":"23,-114r69,-142r32,0r69,142r-34,0r-51,-108r-51,108r-34,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"68,-189r-47,0r32,-91r39,0","w":106},"a":{"d":"138,0r-2,-32v-30,50,-126,50,-126,-29v0,-63,58,-77,126,-74v2,-29,-3,-49,-35,-50v-24,0,-30,14,-38,33r-45,-13v13,-30,32,-55,85,-55v47,0,82,21,82,78r2,142r-49,0xm136,-60r0,-44v-44,-2,-80,8,-76,39v5,44,49,36,76,5","w":206},"b":{"d":"25,0r0,-280r52,0r0,90v19,-17,32,-30,59,-30v61,0,76,64,76,111v0,108,-76,146,-135,83r0,26r-52,0xm77,-156r0,97v32,46,82,22,82,-49v0,-73,-52,-92,-82,-48","w":226},"c":{"d":"144,-71r47,12v-9,26,-24,63,-84,63v-69,0,-92,-56,-92,-111v0,-62,27,-113,94,-113v55,0,77,43,80,64r-48,13v0,-21,-10,-40,-33,-40v-27,0,-39,24,-39,72v0,45,7,79,39,79v24,0,34,-24,36,-39","w":193},"d":{"d":"202,-280r0,280r-52,0r0,-26v-58,63,-135,25,-135,-83v0,-47,14,-111,75,-111v27,0,41,13,60,30r0,-90r52,0xm150,-59r0,-97v-29,-43,-82,-25,-82,48v0,72,49,95,82,49","w":226},"e":{"d":"150,-64r44,14v-12,28,-35,54,-84,54v-60,0,-98,-42,-98,-112v0,-66,36,-112,99,-112v67,0,95,56,91,125r-139,0v0,26,9,63,46,63v23,0,37,-19,41,-32xm63,-129r87,0v0,-35,-15,-54,-41,-54v-32,0,-44,26,-46,54"},"f":{"d":"36,0r0,-161r-31,0r0,-37r31,0v-10,-66,34,-103,104,-86r0,37v-32,-13,-62,4,-53,49r43,0r0,37r-43,0r0,161r-51,0","w":133},"g":{"d":"211,-215r0,29r-42,0v39,39,4,117,-83,102v-7,7,-8,18,7,22v45,13,112,13,112,70v0,49,-50,65,-99,65v-60,0,-96,-23,-96,-56v0,-33,25,-45,40,-53v-22,-15,-11,-45,9,-54v-77,-29,-46,-135,35,-130v36,2,75,6,117,5xm101,-117v23,0,38,-13,38,-34v0,-24,-20,-34,-37,-34v-27,0,-40,14,-40,34v0,21,17,34,39,34xm156,13v0,-29,-53,-25,-78,-36v-12,8,-23,18,-23,34v0,21,25,29,53,29v35,0,48,-11,48,-27"},"h":{"d":"25,0r0,-280r52,0r0,97v17,-17,41,-37,72,-37v42,0,53,32,53,64r0,156r-52,0r0,-145v-5,-47,-49,-34,-73,-4r0,149r-52,0","w":226},"i":{"d":"24,0r0,-215r52,0r0,215r-52,0xm24,-241r0,-39r52,0r0,39r-52,0","w":100},"j":{"d":"24,4r0,-219r52,0r0,229v2,50,-43,68,-89,55r3,-38v20,5,35,0,34,-27xm24,-241r0,-39r52,0r0,39r-52,0","w":100},"k":{"d":"26,-280r51,0r1,160r69,-96r60,0r-77,102r83,114r-63,0r-73,-108r0,108r-51,0r0,-280"},"l":{"d":"24,0r0,-280r52,0r0,280r-52,0","w":100},"m":{"d":"25,0r0,-215r52,0r0,31v20,-19,36,-36,65,-36v28,0,42,15,50,36v18,-19,41,-36,69,-36v39,0,54,27,54,64r0,156r-52,0r0,-144v-6,-45,-39,-41,-67,-5r0,149r-52,0r0,-144v-6,-45,-39,-41,-67,-5r0,149r-52,0","w":339},"n":{"d":"150,0r0,-145v-5,-47,-49,-34,-73,-4r0,149r-52,0r0,-215r52,0r0,32v17,-17,41,-37,72,-37v42,0,53,32,53,64r0,156r-52,0","w":226},"o":{"d":"66,-108v0,54,17,76,44,76v27,0,45,-22,45,-76v0,-53,-18,-75,-45,-75v-27,0,-44,22,-44,75xm12,-108v0,-66,38,-112,98,-112v63,0,99,46,99,112v0,70,-41,112,-99,112v-60,0,-98,-42,-98,-112","w":220},"p":{"d":"25,70r0,-285r52,0r0,25v19,-17,32,-30,59,-30v61,0,76,64,76,111v0,108,-76,146,-135,83r0,96r-52,0xm77,-156r0,97v32,46,82,22,82,-49v0,-73,-52,-92,-82,-48","w":226},"q":{"d":"202,-215r0,285r-52,0r0,-96v-58,63,-135,25,-135,-83v0,-47,14,-111,75,-111v27,0,41,13,60,30r0,-25r52,0xm150,-59r0,-97v-29,-43,-82,-25,-82,48v0,72,49,95,82,49","w":226},"r":{"d":"25,0r0,-215r52,0v1,11,-2,25,1,34v15,-20,38,-44,70,-38r0,48v-34,-9,-57,11,-71,28r0,143r-52,0","w":146},"s":{"d":"174,-170r-44,14v-3,-10,-8,-29,-37,-29v-14,0,-28,7,-28,24v0,32,42,24,64,37v29,9,48,27,48,59v0,56,-44,69,-91,69v-55,0,-73,-35,-77,-54r45,-14v6,20,15,32,39,32v44,-1,40,-45,9,-52v-40,-9,-87,-23,-87,-70v0,-47,38,-66,78,-66v49,0,73,24,81,50","w":186},"t":{"d":"138,-198r0,37r-51,0r0,89v-7,35,24,44,52,32r0,38v-6,3,-24,6,-41,6v-86,-1,-57,-90,-62,-165r-31,0r0,-37r31,0r0,-49r51,-21r0,70r51,0","w":146},"u":{"d":"197,-215r0,215r-52,0r0,-33v-17,17,-41,37,-72,37v-40,0,-50,-31,-50,-63r0,-156r52,0r0,145v5,48,46,32,70,3r0,-148r52,0","w":219},"v":{"d":"70,0r-69,-215r56,0v14,53,35,106,43,163r2,0v7,-57,31,-111,46,-163r51,0r-68,215r-61,0","w":200},"w":{"d":"203,0r-38,-163r-2,0v-7,57,-24,109,-35,163r-65,0r-61,-215r54,0r27,104v5,19,8,42,12,61r3,0v8,-59,23,-110,35,-165r65,0r37,165r2,0v7,-50,26,-114,36,-165r52,0r-57,215r-65,0","w":326},"x":{"d":"0,0r68,-115r-60,-100r59,0v14,24,23,53,40,74v12,-28,27,-48,40,-74r54,0r-61,99r66,116r-60,0r-44,-83r-46,83r-56,0","w":206},"y":{"d":"18,68r3,-40v29,6,36,12,55,-32r-75,-211r56,0v15,52,35,95,44,155r2,0v8,-62,30,-102,45,-155r51,0r-78,230v-11,53,-53,67,-103,53","w":200},"z":{"d":"8,0r0,-35r105,-144r-100,0r0,-36r162,0r0,35r-105,143r109,0r0,37r-171,0","w":186},"{":{"d":"11,-100r0,-26v13,0,30,-10,30,-34r0,-67v4,-44,34,-49,76,-46r0,25v-52,-10,-37,49,-37,93v0,34,-24,41,-34,42v10,1,34,8,34,42v0,39,-22,101,37,93r0,25v-42,3,-76,-2,-76,-46v0,-39,7,-104,-30,-101","w":126},"|":{"d":"23,90r0,-360r34,0r0,360r-34,0","w":79},"}":{"d":"116,-126r0,26v-13,0,-31,10,-31,34r0,67v-4,44,-34,49,-76,46r0,-25v53,11,37,-48,37,-93v0,-34,25,-41,35,-42v-10,-1,-35,-8,-35,-42v0,-39,22,-101,-37,-93r0,-25v42,-3,76,1,76,46r0,67v0,24,18,34,31,34","w":126},"~":{"d":"70,-120v23,0,56,24,77,25v14,0,23,-13,31,-26r13,27v-11,15,-23,31,-45,31v-36,0,-90,-50,-108,2r-13,-28v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"79,-134r7,175r-52,0r6,-175r39,0xm83,-215r0,47r-46,0r0,-47r46,0","w":119},"\u00a2":{"d":"81,-51r42,-130v-37,-9,-51,17,-51,70v0,24,2,46,9,60xm58,23r9,-28v-87,-48,-58,-245,68,-212r9,-28r18,6r-8,28v25,11,37,31,42,48r-43,15v-2,-8,-7,-16,-13,-22r-43,134v26,11,50,-1,56,-30r44,13v-6,37,-55,67,-112,54r-9,28"},"\u00a3":{"d":"21,0r0,-37r28,0r0,-78r-27,0r0,-33r27,0v-2,-62,2,-114,82,-114v42,0,65,14,76,52r-46,12v-3,-12,-9,-28,-32,-28v-39,2,-31,42,-32,78r54,0r0,33r-54,0r0,78r94,0r0,37r-170,0"},"\u2044":{"d":"-54,9r140,-274r28,0r-139,274r-29,0","w":60},"\u00a5":{"d":"81,0r0,-49r-54,0r0,-23r54,0r0,-22r-54,0r0,-23r42,0r-69,-139r58,0v18,38,31,83,52,118r50,-118r53,0r-69,139r42,0r0,23r-54,0r0,22r54,0r0,23r-54,0r0,49r-51,0"},"\u0192":{"d":"57,-22r25,-105r-36,0r2,-29r40,0v9,-52,27,-106,83,-106v14,0,26,3,38,10r-21,30v-42,-25,-44,36,-53,66r40,0r-2,29r-45,0v-23,65,-13,173,-95,177v-20,0,-33,-6,-39,-10r19,-31v23,14,38,-7,44,-31"},"\u00a7":{"d":"24,2r37,-18v4,10,13,31,42,31v24,0,32,-15,32,-24v-12,-46,-108,-36,-108,-100v0,-26,17,-41,37,-48v-45,-23,-40,-105,45,-105v48,0,67,23,74,39r-37,20v-6,-12,-14,-27,-37,-27v-39,0,-36,42,-6,51v34,11,86,35,86,74v0,22,-11,38,-33,46v23,14,25,31,25,43v0,30,-19,66,-78,66v-49,0,-74,-31,-79,-48xm148,-96v-2,-28,-40,-35,-61,-47v-24,8,-25,40,1,52r44,20v5,-3,16,-12,16,-25"},"'":{"d":"23,-189r0,-91r36,0r0,91r-36,0","w":79},"\u201c":{"d":"68,-189r-47,0r32,-91r39,0xm146,-189r-47,0r32,-91r39,0","w":180},"\u00ab":{"d":"93,-108r63,-87r29,19r-45,68r45,68r-29,18xm9,-108r63,-87r28,19r-45,68r45,68r-28,18","w":193},"\u2039":{"d":"9,-108r63,-87r28,19r-45,68r45,68r-28,19","w":113},"\u203a":{"d":"105,-108r-64,87r-28,-19r45,-68r-45,-67r28,-19","w":113},"\ufb01":{"d":"157,0r0,-215r52,0r0,215r-52,0xm157,-241r0,-39r52,0r0,39r-52,0xm36,0r0,-161r-31,0r0,-37r31,0v-10,-66,34,-103,104,-86r0,37v-32,-13,-62,4,-53,49r43,0r0,37r-43,0r0,161r-51,0","w":233},"\ufb02":{"d":"157,0r0,-280r52,0r0,280r-52,0xm36,0r0,-161r-31,0r0,-37r31,0v-10,-66,34,-103,104,-86r0,37v-32,-13,-62,4,-53,49r43,0r0,37r-43,0r0,161r-51,0","w":233},"\u2013":{"d":"0,-125r180,0r0,34r-180,0r0,-34","w":180},"\u2020":{"d":"82,46r0,-192r-67,0r0,-41r67,0r0,-69r49,0r0,69r67,0r0,41r-67,0r0,192r-49,0"},"\u2021":{"d":"82,46r0,-64r-61,0r0,-39r61,0r0,-96r-61,0r0,-40r61,0r0,-63r49,0r0,63r62,0r0,40r-62,0r0,96r62,0r0,39r-62,0r0,64r-49,0"},"\u00b7":{"d":"24,-105v0,-16,13,-30,29,-30v16,0,30,14,30,30v0,16,-14,29,-30,29v-16,0,-29,-13,-29,-29","w":106},"\u00b6":{"d":"80,44r0,-170v-46,0,-76,-26,-76,-64v-2,-86,106,-63,187,-66r0,300r-37,0r0,-273r-37,0r0,273r-37,0","w":216},"\u2022":{"d":"153,-128v0,35,-28,63,-63,63v-35,0,-63,-28,-63,-63v0,-35,28,-63,63,-63v35,0,63,28,63,63","w":180},"\u201a":{"d":"34,-48r47,0r-32,92r-39,0","w":106},"\u201e":{"d":"112,-48r47,0r-32,92r-39,0xm34,-48r47,0r-32,92r-39,0","w":180},"\u201d":{"d":"112,-280r47,0r-32,91r-39,0xm34,-280r47,0r-32,91r-39,0","w":180},"\u00bb":{"d":"100,-108r-63,87r-28,-19r45,-68r-45,-67r28,-19xm185,-108r-64,87r-28,-19r45,-68r-45,-67r28,-19","w":193},"\u2026":{"d":"37,0r0,-48r46,0r0,48r-46,0xm157,0r0,-48r46,0r0,48r-46,0xm277,0r0,-48r46,0r0,48r-46,0","w":360},"\u2030":{"d":"66,-150v18,0,24,-15,24,-44v0,-29,-6,-45,-24,-45v-18,0,-25,16,-25,45v0,29,7,44,25,44xm66,-126v-45,0,-58,-33,-58,-68v0,-35,13,-68,58,-68v45,0,57,33,57,68v0,35,-12,68,-57,68xm198,6v-45,0,-58,-33,-58,-68v0,-35,13,-68,58,-68v45,0,58,33,58,68v0,35,-13,68,-58,68xm198,-17v18,0,24,-16,24,-45v0,-29,-6,-45,-24,-45v-18,0,-25,16,-25,45v0,29,7,45,25,45xm328,6v-45,0,-58,-33,-58,-68v0,-35,13,-68,58,-68v45,0,58,33,58,68v0,35,-13,68,-58,68xm328,-17v18,0,25,-16,25,-45v0,-29,-7,-45,-25,-45v-18,0,-25,16,-25,45v0,29,7,45,25,45xm49,9r139,-274r27,0r-140,274r-26,0","w":393},"\u00bf":{"d":"116,-134v14,56,-53,73,-53,115v0,17,12,29,33,29v27,0,33,-24,34,-32r45,9v-13,53,-55,60,-83,60v-75,0,-97,-78,-50,-117v17,-14,40,-27,35,-64r39,0xm120,-215r0,47r-47,0r0,-47r47,0","w":193},"`":{"d":"49,-291r36,53r-37,0r-58,-53r59,0","w":100},"\u00b4":{"d":"15,-238r36,-53r59,0r-57,53r-38,0","w":100},"\u02c6":{"d":"26,-291r48,0r41,53r-41,0r-24,-31r-24,31r-41,0","w":100},"\u02dc":{"d":"8,-242r-24,0v8,-62,52,-39,92,-30v10,0,15,-6,17,-15r23,0v-8,62,-52,39,-92,30v-10,0,-14,6,-16,15","w":100},"\u00af":{"d":"-6,-278r112,0r0,27r-112,0r0,-27","w":100},"\u02d8":{"d":"87,-291r24,0v-4,30,-20,53,-61,53v-41,0,-57,-23,-61,-53r24,0v8,36,66,35,74,0","w":100},"\u02d9":{"d":"24,-280r52,0r0,39r-52,0r0,-39","w":100},"\u00a8":{"d":"62,-280r52,0r0,39r-52,0r0,-39xm-14,-280r52,0r0,39r-52,0r0,-39","w":100},"\u02da":{"d":"12,-276v0,-21,17,-38,38,-38v21,0,38,17,38,38v0,21,-17,37,-38,37v-21,0,-38,-16,-38,-37xm30,-276v0,11,9,19,20,19v11,0,20,-8,20,-19v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20","w":100},"\u00b8":{"d":"42,0r18,0r-14,23v22,-9,50,11,45,25v0,10,-7,33,-43,33v-17,0,-29,-4,-43,-9r6,-16v18,8,44,14,49,-7v1,-24,-33,-5,-39,-17","w":100},"\u02dd":{"d":"-25,-238r36,-53r59,0r-57,53r-38,0xm55,-238r36,-53r59,0r-57,53r-38,0","w":100},"\u02db":{"d":"105,46r0,24v-30,18,-81,16,-81,-22v0,-19,14,-33,39,-50r27,0v-21,15,-29,27,-29,38v0,20,33,20,44,10","w":100},"\u02c7":{"d":"74,-238r-48,0r-41,-53r41,0r24,31r24,-31r41,0","w":100},"\u2014":{"d":"0,-125r360,0r0,34r-360,0r0,-34","w":360},"\u00c6":{"d":"179,0r0,-62r-87,0r-33,62r-58,0r142,-256r181,0r0,41r-94,0r0,62r89,0r0,41r-89,0r0,71r99,0r0,41r-150,0xm179,-102r0,-118r-4,0r-63,118r67,0","w":346},"\u00aa":{"d":"41,-222r-29,-8v8,-18,21,-32,56,-32v35,0,55,12,55,46r1,85r-34,0v-1,-6,3,-17,-2,-19v-18,31,-85,30,-83,-17v2,-41,41,-47,83,-45v1,-18,-2,-29,-22,-29v-16,0,-21,8,-25,19xm88,-167r0,-25v-25,-2,-50,3,-48,22v2,28,37,19,48,3","w":133},"\u0141":{"d":"26,0r0,-89r-24,16r0,-27r24,-16r0,-140r54,0r0,104r67,-43r0,27r-67,44r0,82r102,0r0,42r-156,0","w":186},"\u00d8":{"d":"190,-176r-104,117v43,50,111,22,111,-69v0,-19,-3,-35,-7,-48xm31,3r-16,-13r24,-27v-17,-22,-26,-52,-26,-91v0,-125,121,-168,200,-106r22,-25r16,13r-23,27v17,22,25,52,25,91v0,125,-121,168,-200,106xm77,-80r103,-117v-43,-50,-110,-23,-110,69v0,20,2,35,7,48","w":266},"\u0152":{"d":"173,-43r0,-173v-62,-8,-102,28,-101,84v2,77,48,94,101,89xm311,-153r0,41r-86,0r0,71r98,0r0,41r-176,1v-75,0,-132,-41,-132,-130v0,-116,87,-139,197,-127r106,0r0,41r-93,0r0,62r86,0","w":339},"\u00ba":{"d":"42,-195v0,31,11,43,28,43v17,0,28,-12,28,-43v0,-31,-11,-44,-28,-44v-17,0,-28,13,-28,44xm5,-196v0,-39,23,-66,65,-66v42,0,65,27,65,66v0,42,-25,68,-65,68v-41,0,-65,-26,-65,-68","w":139},"\u00e6":{"d":"139,-64r0,-37v-39,-3,-79,6,-77,36v5,50,66,22,77,1xm66,-151r-46,-14v8,-23,30,-55,83,-55v33,0,53,12,64,30v15,-19,28,-30,67,-30v66,0,92,58,88,124r-134,0v-6,83,71,74,83,31r45,15v-18,39,-47,54,-84,54v-48,0,-64,-20,-79,-39v-24,29,-57,39,-78,39v-45,0,-65,-33,-65,-65v0,-42,48,-79,129,-73v14,-62,-69,-58,-73,-17xm188,-131r82,0v0,-38,-19,-52,-40,-52v-32,0,-42,25,-42,52","w":333},"\u0131":{"d":"24,0r0,-215r52,0r0,215r-52,0","w":100},"\u0142":{"d":"24,0r0,-114r-23,18r0,-27r23,-17r0,-140r52,0r0,102r23,-17r0,26r-23,17r0,152r-52,0","w":100},"\u00f8":{"d":"68,-75r76,-87v-30,-43,-83,-20,-78,54v0,13,0,24,2,33xm152,-140r-76,87v31,43,84,20,79,-55v0,-13,-1,-23,-3,-32xm9,-7r23,-26v-44,-67,-15,-187,78,-187v27,0,49,9,65,23r22,-24r15,13r-24,26v13,19,21,44,21,74v0,99,-97,141,-164,90r-22,24","w":220},"\u0153":{"d":"66,-108v0,54,17,76,44,76v27,0,45,-22,45,-76v0,-53,-18,-75,-45,-75v-27,0,-44,22,-44,75xm289,-65r45,15v-18,39,-46,54,-83,54v-46,0,-61,-19,-72,-33v-13,17,-28,33,-69,33v-60,0,-98,-42,-98,-112v0,-66,35,-112,98,-112v39,0,56,15,69,33v16,-19,36,-33,75,-33v66,0,92,58,88,124r-135,0v-6,83,70,74,82,31xm207,-131r83,0v0,-38,-20,-52,-41,-52v-33,0,-42,25,-42,52","w":353},"\u00df":{"d":"27,0r0,-197v0,-40,17,-87,93,-87v93,0,98,117,29,132r0,2v41,5,63,33,63,74v1,68,-58,92,-115,75r8,-38v30,17,61,-11,57,-41v2,-31,-16,-56,-57,-50r0,-36v22,0,43,-7,43,-40v0,-16,-6,-40,-34,-40v-28,0,-35,22,-35,42r0,204r-52,0","w":226},"\u00f7":{"d":"199,-74r-182,0r0,-34r182,0r0,34xm79,-166v0,-16,13,-29,29,-29v36,-1,38,57,1,58v-16,0,-30,-14,-30,-29xm79,-17v0,-16,13,-28,29,-28v15,0,29,13,29,28v0,14,-13,30,-28,30v-16,0,-30,-15,-30,-30","w":216},"\u00be":{"d":"249,0r0,-24r-73,0r0,-29r68,-101r37,0r0,104r21,0r0,26r-21,0r0,24r-32,0xm249,-50v-1,-22,2,-60,2,-73r-45,73r43,0xm80,9r139,-274r29,0r-140,274r-28,0xm11,-143r30,-6v1,12,13,20,27,20v18,0,26,-10,26,-20v0,-19,-19,-24,-41,-23r0,-24v17,-1,38,-3,38,-22v0,-10,-7,-19,-22,-19v-18,0,-23,10,-26,16r-30,-8v10,-23,28,-33,58,-33v25,0,53,8,53,40v0,16,-12,28,-31,37v26,4,34,20,34,37v0,20,-14,46,-58,46v-34,0,-50,-15,-58,-41","w":320},"\u00bc":{"d":"249,0r0,-24r-73,0r0,-29r68,-101r37,0r0,104r21,0r0,26r-21,0r0,24r-32,0xm249,-50v-1,-22,2,-60,2,-73r-45,73r43,0xm73,9r139,-274r28,0r-139,274r-28,0xm64,-105r0,-120r-37,27r-16,-18r56,-40r31,0r0,151r-34,0","w":320},"\u00b9":{"d":"64,-105r0,-120r-37,27r-16,-18r56,-40r31,0r0,151r-34,0","w":138},"\u00d7":{"d":"84,-91r-60,-60r24,-24r60,60r60,-60r24,24r-60,60r60,60r-24,24r-60,-60r-60,60r-24,-24","w":216},"\u00ae":{"d":"174,-54r-37,-62r-19,0r0,62r-30,0r0,-150v52,0,116,-9,116,45v0,27,-17,40,-39,41r39,64r-30,0xm118,-138v25,0,57,3,56,-21v-1,-25,-31,-20,-56,-20r0,41xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm40,-128v0,58,46,104,104,104v58,0,104,-46,104,-104v0,-58,-46,-105,-104,-105v-58,0,-104,47,-104,105","w":288},"\u00de":{"d":"22,0r0,-256r54,0r0,35r47,0v62,0,87,35,87,78v0,79,-61,86,-134,82r0,61r-54,0xm76,-182r0,81v43,2,79,3,82,-42v3,-42,-41,-41,-82,-39","w":219},"\u00a6":{"d":"23,63r0,-126r34,0r0,126r-34,0xm23,-117r0,-126r34,0r0,126r-34,0","w":79},"\u00d0":{"d":"26,0r0,-125r-26,0r0,-23r26,0r0,-108v122,-1,210,-17,218,129v6,119,-96,135,-218,127xm80,-125r0,84v71,9,107,-26,107,-88v0,-57,-35,-96,-107,-86r0,67r56,0r0,23r-56,0","w":259},"\u00bd":{"d":"62,9r139,-274r29,0r-140,274r-28,0xm64,-105r0,-120r-37,27r-16,-18r56,-40r31,0r0,151r-34,0xm180,0r0,-22v25,-27,70,-50,81,-87v0,-13,-8,-21,-24,-21v-18,0,-25,14,-26,23r-34,-5v5,-29,26,-45,64,-45v63,0,65,60,28,93r-41,37r66,0r0,27r-114,0","w":320},"\u2212":{"d":"199,-74r-182,0r0,-34r182,0r0,34","w":216},"\u00e7":{"d":"144,-71r47,12v-9,25,-23,59,-77,63r-12,19v22,-9,50,11,45,25v0,10,-7,33,-43,33v-17,0,-29,-4,-43,-9r7,-16v18,8,44,14,49,-7v1,-24,-33,-5,-39,-17r18,-28v-61,-6,-81,-59,-81,-111v0,-62,27,-113,94,-113v55,0,77,43,80,64r-48,13v0,-21,-10,-40,-33,-40v-27,0,-39,24,-39,72v0,45,7,79,39,79v24,0,34,-24,36,-39","w":193},"\u00f0":{"d":"110,-32v27,0,45,-22,45,-76v0,-39,-20,-62,-43,-62v-32,0,-46,26,-46,62v0,54,17,76,44,76xm57,-209r-14,-18r33,-17v-11,-9,-20,-14,-27,-18r36,-26v12,8,22,16,32,24r37,-19r14,18r-32,17v46,41,73,88,73,140v0,70,-39,112,-99,112v-60,0,-98,-42,-98,-112v0,-56,61,-116,118,-84v-10,-12,-22,-24,-35,-36","w":220},"\u00b1":{"d":"91,-132r0,-50r34,0r0,50r74,0r0,35r-74,0r0,50r-34,0r0,-50r-74,0r0,-35r74,0xm17,0r0,-35r182,0r0,35r-182,0","w":216},"\u00c7":{"d":"231,-190r-50,11v-3,-24,-20,-42,-45,-42v-38,0,-64,28,-64,93v0,65,23,93,58,93v36,0,51,-27,54,-45r50,11v-2,13,-19,71,-99,75r-11,17v22,-9,50,11,45,25v0,10,-7,33,-43,33v-17,0,-29,-4,-43,-9r7,-16v18,8,44,14,49,-7v0,-23,-32,-5,-39,-17r17,-26v-62,-5,-102,-50,-102,-134v0,-88,50,-134,121,-134v53,0,83,27,95,72","w":246},"\u00fe":{"d":"25,70r0,-350r52,0r0,90v19,-17,32,-30,59,-30v61,0,76,64,76,111v0,108,-76,146,-135,83r0,96r-52,0xm77,-156r0,97v32,46,82,22,82,-49v0,-73,-52,-92,-82,-48","w":226},"\u00a9":{"d":"184,-106r29,0v-6,36,-33,56,-64,56v-45,0,-75,-34,-75,-79v0,-87,127,-112,138,-24r-28,0v-3,-18,-18,-30,-36,-30v-27,0,-41,23,-41,53v0,53,68,76,77,24xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm40,-128v0,58,46,104,104,104v58,0,104,-46,104,-104v0,-58,-46,-105,-104,-105v-58,0,-104,47,-104,105","w":288},"\u00ac":{"d":"164,-39r0,-73r-147,0r0,-35r182,0r0,108r-35,0","w":216},"\u00b2":{"d":"13,-105r0,-22v25,-27,70,-50,80,-87v0,-13,-8,-21,-24,-21v-18,0,-25,14,-26,23r-33,-5v5,-29,25,-45,63,-45v64,0,66,60,29,93r-41,37r65,0r0,27r-113,0","w":138},"\u00b3":{"d":"10,-143r30,-6v1,12,13,20,27,20v18,0,26,-10,26,-20v0,-19,-20,-24,-42,-23r0,-24v17,-1,38,-3,38,-22v0,-10,-7,-19,-22,-19v-18,0,-22,10,-25,16r-30,-8v10,-23,27,-33,57,-33v25,0,53,8,53,40v0,16,-12,28,-31,37v26,4,35,20,35,37v0,20,-14,46,-58,46v-34,0,-50,-15,-58,-41","w":138},"\u2122":{"d":"298,-108r-1,-109r-40,109r-25,0r-40,-109r0,109r-34,0r0,-148r50,0r37,97r36,-97r50,0r0,148r-33,0xm62,-108r0,-121r-43,0r0,-27r121,0r0,27r-44,0r0,121r-34,0","w":360},"\u00b0":{"d":"21,-211v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,52,-51,52v-28,0,-51,-24,-51,-52xm46,-211v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-14,-12,-26,-26,-26v-14,0,-26,12,-26,26","w":144},"\u03bc":{"d":"23,70r0,-285r52,0r0,139v5,59,44,37,70,9r0,-148r52,0r0,215r-52,0v-1,-9,2,-21,-1,-28v-7,31,-51,41,-69,15r0,83r-52,0","w":219},"\u00c1":{"d":"90,-99r79,0v-14,-38,-22,-82,-40,-116v-8,42,-26,78,-39,116xm1,0r96,-256r69,0r93,256r-56,0r-21,-60r-106,0r-21,60r-54,0xm95,-274r36,-53r59,0r-58,53r-37,0","w":259},"\u00c2":{"d":"90,-99r79,0v-14,-38,-22,-82,-40,-116v-8,42,-26,78,-39,116xm1,0r96,-256r69,0r93,256r-56,0r-21,-60r-106,0r-21,60r-54,0xm106,-327r48,0r41,53r-41,0r-24,-31r-24,31r-41,0","w":259},"\u00c4":{"d":"90,-99r79,0v-14,-38,-22,-82,-40,-116v-8,42,-26,78,-39,116xm1,0r96,-256r69,0r93,256r-56,0r-21,-60r-106,0r-21,60r-54,0xm142,-315r52,0r0,38r-52,0r0,-38xm66,-315r52,0r0,38r-52,0r0,-38","w":259},"\u00c0":{"d":"90,-99r79,0v-14,-38,-22,-82,-40,-116v-8,42,-26,78,-39,116xm1,0r96,-256r69,0r93,256r-56,0r-21,-60r-106,0r-21,60r-54,0xm129,-327r36,53r-38,0r-57,-53r59,0","w":259},"\u00c5":{"d":"90,-99r79,0v-14,-38,-22,-82,-40,-116v-8,42,-26,78,-39,116xm1,0r96,-256r69,0r93,256r-56,0r-21,-60r-106,0r-21,60r-54,0xm92,-309v0,-21,17,-37,38,-37v21,0,38,16,38,37v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38xm110,-309v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-19,-20,-19v-11,0,-20,8,-20,19","w":259},"\u00c3":{"d":"90,-99r79,0v-14,-38,-22,-82,-40,-116v-8,42,-26,78,-39,116xm1,0r96,-256r69,0r93,256r-56,0r-21,-60r-106,0r-21,60r-54,0xm87,-278r-23,0v8,-62,52,-39,92,-30v10,0,14,-6,16,-15r24,0v-8,63,-53,40,-92,30v-10,0,-15,6,-17,15","w":259},"\u00c9":{"d":"26,0r0,-256r167,0r0,41r-113,0r0,62r106,0r0,41r-106,0r0,71r116,0r0,41r-170,0xm72,-274r36,-53r59,0r-58,53r-37,0"},"\u00ca":{"d":"26,0r0,-256r167,0r0,41r-113,0r0,62r106,0r0,41r-106,0r0,71r116,0r0,41r-170,0xm83,-327r48,0r41,53r-41,0r-24,-31r-24,31r-41,0"},"\u00cb":{"d":"26,0r0,-256r167,0r0,41r-113,0r0,62r106,0r0,41r-106,0r0,71r116,0r0,41r-170,0xm119,-315r52,0r0,38r-52,0r0,-38xm43,-315r52,0r0,38r-52,0r0,-38"},"\u00c8":{"d":"26,0r0,-256r167,0r0,41r-113,0r0,62r106,0r0,41r-106,0r0,71r116,0r0,41r-170,0xm106,-327r36,53r-38,0r-57,-53r59,0"},"\u00cd":{"d":"26,0r0,-256r54,0r0,256r-54,0xm18,-274r36,-53r59,0r-57,53r-38,0","w":106},"\u00ce":{"d":"26,0r0,-256r54,0r0,256r-54,0xm30,-327r47,0r41,53r-41,0r-24,-31r-23,31r-42,0","w":106},"\u00cf":{"d":"26,0r0,-256r54,0r0,256r-54,0xm66,-315r51,0r0,38r-51,0r0,-38xm-11,-315r52,0r0,38r-52,0r0,-38","w":106},"\u00cc":{"d":"26,0r0,-256r54,0r0,256r-54,0xm53,-327r35,53r-37,0r-57,-53r59,0","w":106},"\u00d1":{"d":"26,0r0,-256r70,0v32,62,80,133,101,200r3,0v-4,-53,-3,-139,-3,-200r50,0r0,256r-71,0v-32,-66,-75,-128,-100,-200r-3,0v5,60,2,134,3,200r-50,0xm94,-278r-23,0v8,-62,52,-39,91,-30v10,0,15,-6,17,-15r24,0v-9,62,-53,41,-92,30v-10,0,-15,6,-17,15","w":273},"\u00d3":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm133,6v-71,0,-120,-46,-120,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,88,-49,134,-120,134xm98,-274r36,-53r59,0r-57,53r-38,0","w":266},"\u00d4":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm133,6v-71,0,-120,-46,-120,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,88,-49,134,-120,134xm109,-327r48,0r41,53r-41,0r-24,-31r-24,31r-41,0","w":266},"\u00d6":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm133,6v-71,0,-120,-46,-120,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,88,-49,134,-120,134xm145,-315r52,0r0,38r-52,0r0,-38xm69,-315r52,0r0,38r-52,0r0,-38","w":266},"\u00d2":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm133,6v-71,0,-120,-46,-120,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,88,-49,134,-120,134xm132,-327r36,53r-37,0r-58,-53r59,0","w":266},"\u00d5":{"d":"133,-35v38,0,64,-28,64,-93v0,-65,-26,-93,-64,-93v-38,0,-63,28,-63,93v0,65,25,93,63,93xm133,6v-71,0,-120,-46,-120,-134v0,-88,49,-134,120,-134v71,0,120,46,120,134v0,88,-49,134,-120,134xm91,-278r-24,0v9,-62,53,-39,92,-30v10,0,15,-6,17,-15r23,0v-8,63,-52,40,-91,30v-10,0,-15,6,-17,15","w":266},"\u0160":{"d":"199,-210r-49,16v-4,-11,-9,-29,-37,-29v-46,1,-56,42,-19,57v44,18,110,35,110,92v0,43,-34,80,-99,80v-59,0,-86,-34,-92,-60r49,-18v3,17,13,37,46,37v47,1,59,-50,12,-66v-44,-15,-101,-30,-102,-85v0,-36,25,-76,94,-76v42,0,73,10,87,52xm134,-274r-48,0r-41,-53r41,0r24,31r24,-31r41,0","w":219},"\u00da":{"d":"178,-256r52,0r0,155v0,70,-36,107,-107,107v-64,0,-99,-37,-99,-107r0,-155r52,0r0,155v0,39,12,66,51,66v39,0,51,-27,51,-66r0,-155xm92,-274r35,-53r59,0r-57,53r-37,0","w":253},"\u00db":{"d":"178,-256r52,0r0,155v0,70,-36,107,-107,107v-64,0,-99,-37,-99,-107r0,-155r52,0r0,155v0,39,12,66,51,66v39,0,51,-27,51,-66r0,-155xm103,-327r47,0r42,53r-42,0r-23,-31r-24,31r-41,0","w":253},"\u00dc":{"d":"178,-256r52,0r0,155v0,70,-36,107,-107,107v-64,0,-99,-37,-99,-107r0,-155r52,0r0,155v0,39,12,66,51,66v39,0,51,-27,51,-66r0,-155xm139,-315r52,0r0,38r-52,0r0,-38xm63,-315r51,0r0,38r-51,0r0,-38","w":253},"\u00d9":{"d":"178,-256r52,0r0,155v0,70,-36,107,-107,107v-64,0,-99,-37,-99,-107r0,-155r52,0r0,155v0,39,12,66,51,66v39,0,51,-27,51,-66r0,-155xm126,-327r36,53r-38,0r-57,-53r59,0","w":253},"\u00dd":{"d":"93,0r0,-99r-93,-157r63,0r59,112v14,-41,38,-75,57,-112r61,0r-93,157r0,99r-54,0xm85,-274r36,-53r59,0r-57,53r-38,0","w":240},"\u0178":{"d":"93,0r0,-99r-93,-157r63,0r59,112v14,-41,38,-75,57,-112r61,0r-93,157r0,99r-54,0xm132,-315r52,0r0,38r-52,0r0,-38xm56,-315r52,0r0,38r-52,0r0,-38","w":240},"\u017d":{"d":"10,0r0,-42r122,-173r-118,0r0,-41r180,0r0,43r-121,172r123,0r0,41r-186,0xm127,-274r-47,0r-41,-53r41,0r23,31r24,-31r41,0","w":206},"\u00e1":{"d":"138,0r-2,-32v-30,50,-126,50,-126,-29v0,-63,58,-77,126,-74v2,-29,-3,-49,-35,-50v-24,0,-30,14,-38,33r-45,-13v13,-30,32,-55,85,-55v47,0,82,21,82,78r2,142r-49,0xm136,-60r0,-44v-44,-2,-80,8,-76,39v5,44,49,36,76,5xm68,-238r36,-53r59,0r-57,53r-38,0","w":206},"\u00e2":{"d":"138,0r-2,-32v-30,50,-126,50,-126,-29v0,-63,58,-77,126,-74v2,-29,-3,-49,-35,-50v-24,0,-30,14,-38,33r-45,-13v13,-30,32,-55,85,-55v47,0,82,21,82,78r2,142r-49,0xm136,-60r0,-44v-44,-2,-80,8,-76,39v5,44,49,36,76,5xm80,-291r47,0r41,53r-41,0r-24,-31r-23,31r-41,0","w":206},"\u00e4":{"d":"138,0r-2,-32v-30,50,-126,50,-126,-29v0,-63,58,-77,126,-74v2,-29,-3,-49,-35,-50v-24,0,-30,14,-38,33r-45,-13v13,-30,32,-55,85,-55v47,0,82,21,82,78r2,142r-49,0xm136,-60r0,-44v-44,-2,-80,8,-76,39v5,44,49,36,76,5xm116,-280r51,0r0,39r-51,0r0,-39xm39,-280r52,0r0,39r-52,0r0,-39","w":206},"\u00e0":{"d":"138,0r-2,-32v-30,50,-126,50,-126,-29v0,-63,58,-77,126,-74v2,-29,-3,-49,-35,-50v-24,0,-30,14,-38,33r-45,-13v13,-30,32,-55,85,-55v47,0,82,21,82,78r2,142r-49,0xm136,-60r0,-44v-44,-2,-80,8,-76,39v5,44,49,36,76,5xm103,-291r35,53r-37,0r-57,-53r59,0","w":206},"\u00e5":{"d":"138,0r-2,-32v-30,50,-126,50,-126,-29v0,-63,58,-77,126,-74v2,-29,-3,-49,-35,-50v-24,0,-30,14,-38,33r-45,-13v13,-30,32,-55,85,-55v47,0,82,21,82,78r2,142r-49,0xm136,-60r0,-44v-44,-2,-80,8,-76,39v5,44,49,36,76,5xm66,-267v0,-21,16,-38,37,-38v21,0,38,17,38,38v0,21,-17,37,-38,37v-21,0,-37,-16,-37,-37xm84,-267v0,11,8,19,19,19v11,0,20,-8,20,-19v0,-11,-9,-20,-20,-20v-11,0,-19,9,-19,20","w":206},"\u00e3":{"d":"138,0r-2,-32v-30,50,-126,50,-126,-29v0,-63,58,-77,126,-74v2,-29,-3,-49,-35,-50v-24,0,-30,14,-38,33r-45,-13v13,-30,32,-55,85,-55v47,0,82,21,82,78r2,142r-49,0xm136,-60r0,-44v-44,-2,-80,8,-76,39v5,44,49,36,76,5xm61,-242r-24,0v9,-62,53,-39,92,-30v10,0,15,-6,17,-15r23,0v-8,62,-52,39,-91,30v-10,0,-15,6,-17,15","w":206},"\u00e9":{"d":"150,-64r44,14v-12,28,-35,54,-84,54v-60,0,-98,-42,-98,-112v0,-66,36,-112,99,-112v67,0,95,56,91,125r-139,0v0,26,9,63,46,63v23,0,37,-19,41,-32xm63,-129r87,0v0,-35,-15,-54,-41,-54v-32,0,-44,26,-46,54xm72,-238r35,-53r59,0r-57,53r-37,0"},"\u00ea":{"d":"150,-64r44,14v-12,28,-35,54,-84,54v-60,0,-98,-42,-98,-112v0,-66,36,-112,99,-112v67,0,95,56,91,125r-139,0v0,26,9,63,46,63v23,0,37,-19,41,-32xm63,-129r87,0v0,-35,-15,-54,-41,-54v-32,0,-44,26,-46,54xm83,-291r47,0r41,53r-41,0r-23,-31r-24,31r-41,0"},"\u00eb":{"d":"150,-64r44,14v-12,28,-35,54,-84,54v-60,0,-98,-42,-98,-112v0,-66,36,-112,99,-112v67,0,95,56,91,125r-139,0v0,26,9,63,46,63v23,0,37,-19,41,-32xm63,-129r87,0v0,-35,-15,-54,-41,-54v-32,0,-44,26,-46,54xm119,-280r52,0r0,39r-52,0r0,-39xm42,-280r52,0r0,39r-52,0r0,-39"},"\u00e8":{"d":"150,-64r44,14v-12,28,-35,54,-84,54v-60,0,-98,-42,-98,-112v0,-66,36,-112,99,-112v67,0,95,56,91,125r-139,0v0,26,9,63,46,63v23,0,37,-19,41,-32xm63,-129r87,0v0,-35,-15,-54,-41,-54v-32,0,-44,26,-46,54xm106,-291r35,53r-37,0r-57,-53r59,0"},"\u00ed":{"d":"24,0r0,-215r52,0r0,215r-52,0xm15,-238r36,-53r59,0r-57,53r-38,0","w":100},"\u00ee":{"d":"24,0r0,-215r52,0r0,215r-52,0xm26,-291r48,0r41,53r-41,0r-24,-31r-24,31r-41,0","w":100},"\u00ef":{"d":"24,0r0,-215r52,0r0,215r-52,0xm62,-280r52,0r0,39r-52,0r0,-39xm-14,-280r52,0r0,39r-52,0r0,-39","w":100},"\u00ec":{"d":"24,0r0,-215r52,0r0,215r-52,0xm49,-291r36,53r-37,0r-58,-53r59,0","w":100},"\u00f1":{"d":"150,0r0,-145v-5,-47,-49,-34,-73,-4r0,149r-52,0r0,-215r52,0r0,32v17,-17,41,-37,72,-37v42,0,53,32,53,64r0,156r-52,0xm71,-242r-23,0v8,-62,52,-39,91,-30v10,0,15,-6,17,-15r23,0v-8,62,-52,39,-91,30v-10,0,-15,6,-17,15","w":226},"\u00f3":{"d":"66,-108v0,54,17,76,44,76v27,0,45,-22,45,-76v0,-53,-18,-75,-45,-75v-27,0,-44,22,-44,75xm12,-108v0,-66,38,-112,98,-112v63,0,99,46,99,112v0,70,-41,112,-99,112v-60,0,-98,-42,-98,-112xm75,-238r36,-53r59,0r-57,53r-38,0","w":220},"\u00f4":{"d":"66,-108v0,54,17,76,44,76v27,0,45,-22,45,-76v0,-53,-18,-75,-45,-75v-27,0,-44,22,-44,75xm12,-108v0,-66,38,-112,98,-112v63,0,99,46,99,112v0,70,-41,112,-99,112v-60,0,-98,-42,-98,-112xm86,-291r48,0r41,53r-41,0r-24,-31r-24,31r-41,0","w":220},"\u00f6":{"d":"66,-108v0,54,17,76,44,76v27,0,45,-22,45,-76v0,-53,-18,-75,-45,-75v-27,0,-44,22,-44,75xm12,-108v0,-66,38,-112,98,-112v63,0,99,46,99,112v0,70,-41,112,-99,112v-60,0,-98,-42,-98,-112xm122,-280r52,0r0,39r-52,0r0,-39xm46,-280r52,0r0,39r-52,0r0,-39","w":220},"\u00f2":{"d":"66,-108v0,54,17,76,44,76v27,0,45,-22,45,-76v0,-53,-18,-75,-45,-75v-27,0,-44,22,-44,75xm12,-108v0,-66,38,-112,98,-112v63,0,99,46,99,112v0,70,-41,112,-99,112v-60,0,-98,-42,-98,-112xm109,-291r36,53r-37,0r-58,-53r59,0","w":220},"\u00f5":{"d":"66,-108v0,54,17,76,44,76v27,0,45,-22,45,-76v0,-53,-18,-75,-45,-75v-27,0,-44,22,-44,75xm12,-108v0,-66,38,-112,98,-112v63,0,99,46,99,112v0,70,-41,112,-99,112v-60,0,-98,-42,-98,-112xm68,-242r-24,0v9,-62,53,-39,92,-30v10,0,15,-6,17,-15r23,0v-8,62,-52,39,-91,30v-10,0,-15,6,-17,15","w":220},"\u0161":{"d":"174,-170r-44,14v-3,-10,-8,-29,-37,-29v-14,0,-28,7,-28,24v0,32,42,24,64,37v29,9,48,27,48,59v0,56,-44,69,-91,69v-55,0,-73,-35,-77,-54r45,-14v6,20,15,32,39,32v44,-1,40,-45,9,-52v-40,-9,-87,-23,-87,-70v0,-47,38,-66,78,-66v49,0,73,24,81,50xm117,-238r-47,0r-41,-53r41,0r24,31r23,-31r41,0","w":186},"\u00fa":{"d":"197,-215r0,215r-52,0r0,-33v-17,17,-41,37,-72,37v-40,0,-50,-31,-50,-63r0,-156r52,0r0,145v5,48,46,32,70,3r0,-148r52,0xm75,-238r36,-53r59,0r-57,53r-38,0","w":219},"\u00fb":{"d":"197,-215r0,215r-52,0r0,-33v-17,17,-41,37,-72,37v-40,0,-50,-31,-50,-63r0,-156r52,0r0,145v5,48,46,32,70,3r0,-148r52,0xm86,-291r48,0r41,53r-41,0r-24,-31r-24,31r-41,0","w":219},"\u00fc":{"d":"197,-215r0,215r-52,0r0,-33v-17,17,-41,37,-72,37v-40,0,-50,-31,-50,-63r0,-156r52,0r0,145v5,48,46,32,70,3r0,-148r52,0xm122,-280r52,0r0,39r-52,0r0,-39xm46,-280r52,0r0,39r-52,0r0,-39","w":219},"\u00f9":{"d":"197,-215r0,215r-52,0r0,-33v-17,17,-41,37,-72,37v-40,0,-50,-31,-50,-63r0,-156r52,0r0,145v5,48,46,32,70,3r0,-148r52,0xm109,-291r36,53r-37,0r-58,-53r59,0","w":219},"\u00fd":{"d":"18,68r3,-40v29,6,36,12,55,-32r-75,-211r56,0v15,52,35,95,44,155r2,0v8,-62,30,-102,45,-155r51,0r-78,230v-11,53,-53,67,-103,53xm65,-238r36,-53r59,0r-57,53r-38,0","w":200},"\u00ff":{"d":"18,68r3,-40v29,6,36,12,55,-32r-75,-211r56,0v15,52,35,95,44,155r2,0v8,-62,30,-102,45,-155r51,0r-78,230v-11,53,-53,67,-103,53xm112,-280r52,0r0,39r-52,0r0,-39xm36,-280r52,0r0,39r-52,0r0,-39","w":200},"\u017e":{"d":"8,0r0,-35r105,-144r-100,0r0,-36r162,0r0,35r-105,143r109,0r0,37r-171,0xm117,-238r-47,0r-41,-53r41,0r24,31r23,-31r41,0","w":186},"\u00a4":{"d":"128,6v-73,0,-100,-48,-109,-107r-26,0r11,-23r14,0v0,-8,1,-15,1,-22r-26,0r11,-23r18,0v10,-90,112,-114,188,-74r-20,43v-16,-15,-71,-37,-95,-5v-8,11,-14,23,-17,36r98,0r-11,23r-90,0r0,22r80,0r-11,23r-68,0v-2,30,29,69,57,66v32,-4,53,-14,72,-31r0,51v-27,16,-45,21,-77,21"},"\u20ac":{"d":"128,6v-73,0,-100,-48,-109,-107r-26,0r11,-23r14,0v0,-8,1,-15,1,-22r-26,0r11,-23r18,0v10,-90,112,-114,188,-74r-20,43v-16,-15,-71,-37,-95,-5v-8,11,-14,23,-17,36r98,0r-11,23r-90,0r0,22r80,0r-11,23r-68,0v-2,30,29,69,57,66v32,-4,53,-14,72,-31r0,51v-27,16,-45,21,-77,21"},"\u2260":{"d":"203,-29r-102,0r-29,58r-44,-23r17,-35r-35,0r0,-51r61,0r17,-34r-78,0r0,-51r103,0r28,-57r45,22r-18,35r35,0r0,51r-60,0r-17,34r77,0r0,51"},"\u221e":{"d":"295,-98v0,42,-25,75,-69,75v-31,0,-52,-19,-70,-42v-19,23,-39,42,-70,42v-44,0,-70,-33,-70,-75v0,-42,26,-73,69,-73v33,0,52,21,71,45v19,-24,37,-45,70,-45v43,0,69,31,69,73xm252,-97v-2,-46,-59,-26,-71,1v13,27,70,44,71,-1xm130,-96v-13,-26,-69,-48,-71,-1v1,45,59,28,71,1","w":311},"\u2264":{"d":"203,-43r-193,-60r0,-50r193,-57r0,52r-123,30r123,33r0,52xm203,17r-193,0r0,-50r193,0r0,50"},"\u2265":{"d":"203,-103r-193,60r0,-52r123,-33r-123,-30r0,-52r193,57r0,50xm203,17r-193,0r0,-50r193,0r0,50"},"\u2202":{"d":"193,-129v0,62,-16,134,-93,134v-50,0,-85,-34,-85,-84v0,-65,76,-107,127,-66v0,-32,-9,-75,-47,-76v-18,0,-30,9,-43,20r-28,-31v21,-18,41,-28,69,-28v75,0,100,67,100,131xm141,-105v-24,-32,-76,-17,-76,28v0,22,10,45,35,45v36,0,41,-46,41,-73","w":208},"\u2211":{"d":"237,77r-227,0r0,-43r105,-139r-101,-135r0,-43r218,0r0,50r-150,0r94,128r-99,132r160,0r0,50","w":246},"\u220f":{"d":"252,77r-51,0r0,-310r-131,0r0,310r-51,0r0,-360r233,0r0,360","w":271},"\u03c0":{"d":"213,-6v-36,21,-79,5,-79,-42r0,-83r-59,0r0,131r-50,0r0,-131r-25,0r0,-46r213,0r0,46r-29,0r0,74v-3,18,17,22,29,13r0,38","w":222},"\u222b":{"d":"194,-250v0,14,-10,24,-24,24v-27,0,-18,-34,-30,-34v-7,0,-6,9,-6,14r2,189v0,50,8,134,-65,134v-21,0,-46,-11,-46,-35v0,-14,11,-21,24,-21v27,0,16,34,28,34v18,-11,5,-47,5,-70r0,-156v0,-49,0,-111,66,-111v19,0,46,9,46,32","w":231},"\u03a9":{"d":"258,0r-105,0r0,-76v72,-12,62,-136,-14,-136v-76,0,-88,123,-16,136r0,76r-105,0r0,-46r63,0r0,-10v-42,-12,-63,-51,-63,-92v0,-69,55,-112,121,-112v66,0,119,42,119,111v0,41,-21,83,-63,93r0,10r63,0r0,46","w":277},"\u221a":{"d":"214,-283r-79,360r-47,0r-52,-107r-20,10r-19,-40r66,-30r40,88r57,-281r54,0","w":210},"\u2248":{"d":"207,-175v-1,33,-19,72,-57,72v-28,0,-63,-22,-90,-22v-12,0,-19,10,-20,21r-33,0v2,-36,20,-71,60,-71v28,0,58,21,86,21v13,0,20,-9,21,-21r33,0xm207,-90v-3,32,-18,73,-57,73v-37,0,-97,-51,-111,-2r-33,0v2,-31,20,-72,56,-72v30,0,61,22,91,22v13,0,19,-9,21,-21r33,0"},"\u0394":{"d":"252,0r-248,0r92,-256r56,0xm179,-48r-54,-150r-51,150r105,0","w":255},"\u25ca":{"d":"198,-128r-69,141r-46,0r-68,-141r69,-141r45,0xm146,-128r-39,-90r-40,90r40,90"},"\u00a0":{"w":106}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991 Adobe Systems Incorporated.  All Rights Reserved.Vectora is
 * a trademark of Linotype-Hell AG and/or its subsidiaries.
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora LT","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 10 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-56 -354 391 90","underline-thickness":"18","underline-position":"-36","stemh":"50","stemv":"68","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":106},"!":{"d":"34,-256r65,0r-9,168r-47,0xm40,0r0,-55r54,0r0,55r-54,0","w":133},"\"":{"d":"117,-183r0,-97r46,0r0,97r-46,0xm30,-183r0,-97r47,0r0,97r-47,0","w":193},"#":{"d":"95,-150r-6,44r33,0r6,-44r-33,0xm52,-106r6,-44r-31,0r0,-35r36,0r10,-71r37,0r-10,71r33,0r10,-71r37,0r-10,71r27,0r0,35r-32,0r-6,44r27,0r0,34r-32,0r-10,72r-37,0r10,-72r-33,0r-10,72r-37,0r11,-72r-32,0r0,-34r36,0"},"$":{"d":"5,-57r57,-16v8,19,14,29,35,30r0,-61v-25,-5,-86,-17,-86,-76v0,-58,47,-80,86,-82r0,-23r17,0r0,23v48,1,75,19,87,59r-56,13v-3,-8,-8,-24,-31,-26r0,58v44,9,94,20,94,79v0,60,-41,80,-94,84r0,22r-17,0r0,-22v-44,-1,-76,-20,-92,-62xm97,-161r0,-55v-15,1,-31,10,-31,27v0,21,20,25,31,28xm114,-101r0,58v26,-1,35,-14,35,-27v0,-22,-16,-28,-35,-31"},"%":{"d":"76,-153v20,0,22,-25,22,-40v0,-15,-2,-40,-22,-40v-20,0,-22,25,-22,40v0,15,2,40,22,40xm76,-124v-46,0,-64,-33,-64,-69v0,-36,18,-69,64,-69v46,0,64,33,64,69v0,36,-18,69,-64,69xm231,5v-46,0,-64,-33,-64,-69v0,-36,18,-69,64,-69v46,0,64,33,64,69v0,36,-18,69,-64,69xm231,-24v20,0,22,-25,22,-40v0,-15,-2,-40,-22,-40v-20,0,-22,25,-22,40v0,15,2,40,22,40xm67,9r140,-275r32,0r-140,275r-32,0","w":306},"&":{"d":"282,0r-71,0r-20,-18v-18,14,-41,23,-73,23v-74,0,-105,-36,-105,-80v0,-39,27,-56,52,-66v-12,-9,-34,-29,-34,-59v0,-52,48,-62,91,-62v50,0,88,18,88,58v0,41,-27,55,-60,72r49,48v15,-15,17,-42,17,-53r55,0v-1,22,-14,66,-40,87xm161,-50r-60,-58v-36,12,-27,69,19,69v20,0,33,-5,41,-11xm94,-195v0,15,15,26,23,33v29,-4,47,-58,4,-57v-17,0,-27,8,-27,24","w":286},"\u2019":{"d":"38,-280r55,0r-34,97r-48,0","w":106},"(":{"d":"81,-283r34,23v-61,83,-60,211,0,293r-34,24v-23,-26,-66,-89,-66,-170v0,-81,43,-144,66,-170","w":126},")":{"d":"12,-260r33,-23v23,26,67,89,67,170v0,81,-44,144,-67,170r-33,-24v60,-82,61,-211,0,-293","w":126},"*":{"d":"10,-188r11,-35r52,21r-6,-54r38,0r-5,54r52,-21r11,35r-54,13r37,42r-30,21r-30,-47r-29,47r-30,-21r36,-42","w":172},"+":{"d":"86,-113r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0r0,-69r-69,0r0,-44r69,0","w":216},",":{"d":"30,-55r55,0r-34,97r-48,0","w":106},"-":{"d":"9,-89r0,-43r89,0r0,43r-89,0","w":106},".":{"d":"26,0r0,-55r54,0r0,55r-54,0","w":106},"\/":{"d":"148,-256r-109,268r-40,-12r109,-268","w":146},"0":{"d":"73,-129v0,68,10,89,34,89v24,0,33,-21,33,-89v0,-71,-10,-88,-33,-88v-23,0,-34,17,-34,88xm8,-129v0,-69,18,-133,99,-133v81,0,99,64,99,133v0,68,-19,134,-99,134v-80,0,-99,-66,-99,-134"},"1":{"d":"18,-185r90,-71r61,0r0,256r-66,0r0,-191r-54,45"},"2":{"d":"13,0r0,-45v29,-31,130,-118,117,-140v0,-4,-2,-32,-30,-32v-23,0,-30,25,-31,42r-59,-11v2,-21,17,-76,97,-76v80,0,88,53,88,74v0,48,-66,105,-105,143r103,0r0,45r-180,0"},"3":{"d":"76,-109r0,-47v24,0,52,-1,52,-32v0,-18,-10,-29,-27,-29v-23,0,-27,20,-28,28r-56,-15v18,-44,48,-58,91,-58v65,0,84,36,84,65v0,48,-43,57,-54,63v35,5,58,24,58,65v0,38,-28,74,-92,74v-66,0,-85,-33,-93,-69r58,-13v2,18,10,37,31,37v24,0,31,-23,31,-35v0,-30,-24,-36,-55,-34"},"4":{"d":"6,-93r104,-163r65,0r0,170r32,0r0,46r-32,0r0,40r-59,0r0,-40r-110,0r0,-53xm118,-84r1,-108v-19,44,-42,74,-64,108r63,0"},"5":{"d":"33,-256r153,0r0,46r-99,0r0,41v58,-9,108,16,109,83v0,46,-22,91,-94,91v-81,0,-85,-67,-85,-71r51,-11v1,10,4,38,31,38v27,0,33,-26,33,-42v0,-67,-73,-45,-101,-32"},"6":{"d":"135,-81v0,-32,-26,-44,-49,-33v-1,2,-8,15,-8,37v0,26,12,37,28,37v23,0,29,-20,29,-41xm102,-256r77,0r-77,97v47,-16,97,6,97,75v0,62,-45,89,-94,89v-62,0,-91,-46,-91,-94v1,-67,55,-120,88,-167"},"7":{"d":"13,0r109,-207r-105,0r0,-49r176,0r0,44r-106,212r-74,0"},"8":{"d":"79,-194v0,18,16,27,30,36v13,-8,25,-21,25,-36v0,-9,-7,-25,-29,-25v-15,0,-26,10,-26,25xm78,-67v0,12,8,29,29,29v26,0,28,-25,28,-30v0,-17,-11,-26,-27,-40v-17,8,-30,21,-30,41xm19,-194v0,-49,40,-68,87,-68v51,0,88,22,88,63v0,29,-20,47,-45,61v24,14,49,31,49,70v0,38,-27,73,-92,73v-54,0,-91,-26,-91,-71v0,-35,21,-48,49,-64v-33,-18,-45,-38,-45,-64"},"9":{"d":"78,-177v0,36,28,44,49,33v1,-3,8,-17,8,-37v0,-27,-13,-36,-28,-36v-22,0,-29,18,-29,40xm33,0r79,-98v-47,12,-98,0,-98,-76v0,-61,41,-88,94,-88v52,0,91,33,91,94v0,67,-57,120,-89,168r-77,0"},":":{"d":"26,-217r54,0r0,55r-54,0r0,-55xm26,-55r54,0r0,55r-54,0r0,-55","w":106},";":{"d":"30,-55r55,0r-34,97r-48,0xm26,-217r54,0r0,55r-54,0r0,-55","w":106},"<":{"d":"199,-38r0,41r-182,-77r0,-34r182,-77r0,41r-127,53","w":216},"=":{"d":"199,-153r0,43r-182,0r0,-43r182,0xm199,-72r0,43r-182,0r0,-43r182,0","w":216},">":{"d":"17,3r0,-41r127,-53r-127,-53r0,-41r182,77r0,34","w":216},"?":{"d":"190,-195v3,60,-64,51,-61,107r-49,0v-11,-62,51,-59,53,-104v0,-17,-15,-25,-27,-25v-25,0,-29,22,-31,32r-56,-10v9,-41,37,-67,88,-67v77,0,83,52,83,67xm77,0r0,-55r54,0r0,55r-54,0","w":200},"@":{"d":"144,-161v-40,-4,-53,70,-9,72v43,4,51,-72,9,-72xm224,-49r35,0v-26,35,-62,55,-115,55v-72,0,-132,-54,-132,-137v0,-74,54,-131,132,-131v78,0,132,39,132,109v0,84,-66,98,-87,98v-16,1,-23,-6,-29,-16v-30,34,-89,10,-89,-43v0,-69,72,-107,112,-61r3,-18r34,0r-18,97v0,5,3,9,9,9v15,0,32,-16,32,-55v0,-65,-39,-88,-99,-88v-58,0,-99,42,-99,99v0,66,41,105,99,105v38,0,62,-9,80,-23","w":288},"A":{"d":"105,-103r62,0v-11,-30,-21,-73,-31,-101v-8,38,-20,67,-31,101xm183,-256r90,256r-74,0r-16,-53r-95,0r-17,53r-71,0r94,-256r89,0","w":273},"B":{"d":"24,0r0,-256r108,0v22,0,91,0,91,64v1,51,-37,52,-47,61v21,3,54,14,54,62v0,69,-73,69,-100,69r-106,0xm91,-156v29,0,65,6,65,-25v0,-34,-36,-23,-65,-25r0,50xm91,-50v33,0,71,5,71,-28v0,-37,-39,-26,-71,-28r0,56","w":246},"C":{"d":"179,-88r64,14v-14,53,-45,80,-103,80v-65,0,-127,-35,-127,-134v0,-99,66,-134,127,-134v66,0,95,42,101,78r-65,12v-2,-13,-8,-38,-40,-38v-19,0,-49,13,-49,80v0,42,9,84,49,84v29,0,38,-25,43,-42","w":253},"D":{"d":"24,0r0,-256r105,0v78,0,128,43,128,126v0,88,-55,130,-133,130r-100,0xm94,-204r0,151v61,5,89,-19,89,-75v0,-52,-29,-83,-89,-76","w":273},"E":{"d":"24,0r0,-256r178,0r0,52r-109,0r0,48r102,0r0,52r-102,0r0,51r113,0r0,53r-182,0","w":226},"F":{"d":"24,0r0,-256r179,0r0,52r-109,0r0,54r105,0r0,53r-105,0r0,97r-70,0","w":219},"G":{"d":"138,-98r0,-50r104,0r0,124v-14,12,-59,30,-99,30v-67,0,-130,-33,-130,-134v0,-99,66,-134,127,-134v50,0,93,21,104,67r-65,17v-5,-15,-13,-32,-39,-32v-43,0,-53,44,-53,82v0,41,10,82,53,82v10,0,28,-2,36,-9r0,-43r-38,0","w":266},"H":{"d":"24,0r0,-256r70,0r0,95r85,0r0,-95r70,0r0,256r-70,0r0,-108r-85,0r0,108r-70,0","w":273},"I":{"d":"25,0r0,-256r70,0r0,256r-70,0","w":120},"J":{"d":"144,-256r0,159v0,37,-4,103,-91,103v-37,0,-52,-14,-58,-19r28,-46v16,18,51,24,51,-17r0,-180r70,0","w":166},"K":{"d":"172,0r-78,-112r0,112r-70,0r0,-256r70,0r1,105r76,-105r82,0r-94,121r100,135r-87,0","w":259},"L":{"d":"24,0r0,-256r70,0r0,202r96,0r0,54r-166,0","w":193},"M":{"d":"26,0r0,-256r106,0r38,129v4,6,4,31,11,40v12,-62,33,-112,50,-169r103,0r0,256r-68,0r0,-148v0,-19,2,-47,3,-57r-4,0v-15,65,-41,141,-60,205r-52,0r-61,-205r-3,0v4,58,1,141,2,205r-65,0","w":360},"N":{"d":"24,0r0,-256r88,0v28,61,63,112,85,180r4,0v-7,-47,-3,-124,-4,-180r66,0r0,256r-89,0v-26,-57,-67,-118,-84,-180r-3,0v4,56,1,121,2,180r-65,0","w":286},"O":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm13,-128v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,99,-61,134,-127,134v-61,0,-127,-35,-127,-134","w":280},"P":{"d":"24,0r0,-256v94,2,203,-21,203,81v0,45,-25,87,-88,87r-45,0r0,88r-70,0xm93,-206r0,67v35,2,66,0,66,-34v0,-30,-32,-37,-66,-33","w":233},"Q":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm261,29r-38,41r-97,-64v-35,-3,-113,-28,-113,-134v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,74,-33,108,-67,122","w":280},"R":{"d":"93,-206r0,56v33,-4,61,15,67,-29v4,-28,-36,-29,-67,-27xm24,0r0,-256r117,0v19,0,85,-1,85,72v0,32,-11,58,-42,71r57,113r-78,0r-42,-98r-27,0r0,98r-70,0","w":246},"S":{"d":"13,-58r62,-24v1,10,9,37,41,37v21,0,35,-9,35,-25v0,-25,-54,-33,-77,-43v-32,-12,-59,-33,-59,-69v0,-54,49,-80,109,-80v74,0,86,43,91,57r-62,20v-1,-8,-11,-27,-35,-27v-23,0,-33,9,-33,22v0,27,58,36,81,46v33,15,54,31,54,66v0,38,-25,84,-108,84v-78,0,-94,-48,-99,-64","w":233},"T":{"d":"2,-202r0,-54r203,0r0,54r-66,0r0,202r-71,0r0,-202r-66,0","w":206},"U":{"d":"24,-95r0,-161r70,0r0,161v0,27,10,49,40,49v32,0,41,-23,41,-49r0,-161r68,0r0,161v0,64,-39,101,-109,101v-59,0,-110,-25,-110,-101","w":266},"V":{"d":"78,0r-78,-256r74,0r50,194r2,0r57,-194r70,0r-85,256r-90,0","w":253},"W":{"d":"62,0r-58,-256r69,0r22,115v4,22,9,61,11,88r4,0v4,-83,20,-130,30,-203r89,0r22,116v5,30,10,66,11,87r4,0v4,-72,19,-138,31,-203r66,0r-55,256r-89,0r-27,-145v-3,-18,-6,-38,-7,-59r-4,0v-6,68,-21,139,-31,204r-88,0","w":366},"X":{"d":"1,0r81,-134r-76,-122r81,0r45,87v14,-36,28,-55,43,-87r75,0r-73,122r82,134r-82,0v-18,-29,-34,-67,-51,-96v-12,31,-33,66,-48,96r-77,0","w":259},"Y":{"d":"95,0r0,-95r-94,-161r81,0v18,32,35,69,51,103v12,-39,31,-69,48,-103r77,0r-93,161r0,95r-70,0","w":259},"Z":{"d":"11,0r0,-60r115,-144r-111,0r0,-52r193,0r0,55r-118,148r119,0r0,53r-198,0","w":219},"[":{"d":"15,47r0,-320r81,0r0,33r-28,0r0,254r28,0r0,33r-81,0","w":119},"\\":{"d":"108,12r-109,-268r40,-12r109,268","w":146},"]":{"d":"104,-273r0,320r-80,0r0,-33r28,0r0,-254r-28,0r0,-33r80,0","w":119},"^":{"d":"26,-125r63,-131r38,0r63,131r-43,0r-39,-88r-39,88r-43,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"69,-183r-55,0r34,-97r47,0","w":106},"a":{"d":"109,-222v123,0,82,114,91,222r-65,0v-1,-9,0,-22,-3,-28v-15,14,-35,33,-61,33v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57xm75,-68v1,33,46,20,57,4r0,-32v-29,-4,-58,2,-57,28","w":219},"b":{"d":"24,0r0,-280r67,0r0,85v17,-15,31,-27,58,-27v64,0,76,61,76,110v0,55,-12,117,-74,117v-17,0,-36,-4,-60,-28r0,23r-67,0xm91,-154r0,92v9,8,17,17,32,17v30,0,33,-41,33,-61v0,-27,-1,-66,-33,-66v-14,0,-23,8,-32,18","w":240},"c":{"d":"197,-156r-57,15v-2,-17,-9,-36,-28,-36v-31,0,-31,32,-31,67v0,37,1,67,31,67v20,0,27,-18,29,-36r60,14v-7,24,-20,70,-91,70v-70,0,-98,-55,-98,-113v0,-61,28,-114,98,-114v62,0,84,42,87,66","w":206},"d":{"d":"216,-280r0,280r-67,0r0,-23v-24,24,-43,28,-60,28v-62,0,-74,-62,-74,-117v0,-49,12,-110,76,-110v27,0,41,12,58,27r0,-85r67,0xm149,-62r0,-92v-9,-10,-18,-18,-32,-18v-32,0,-33,39,-33,66v0,20,3,61,33,61v15,0,23,-9,32,-17","w":240},"e":{"d":"113,-222v62,0,108,44,102,132r-134,0v0,14,-1,47,33,47v22,0,30,-16,35,-26r57,18v-19,41,-49,56,-93,56v-86,0,-101,-74,-101,-113v0,-63,34,-114,101,-114xm81,-134r68,0v-1,-14,-4,-43,-33,-43v-32,0,-35,30,-35,43","w":226},"f":{"d":"35,0r0,-153r-31,0r0,-47r31,0v-1,-50,10,-89,84,-92v14,0,21,1,35,4r0,44v-29,-10,-60,3,-51,44r43,0r0,47r-43,0r0,153r-68,0","w":146},"g":{"d":"15,-153v0,-106,117,-54,210,-64r0,37r-42,0v39,47,-18,113,-88,97v-7,5,-5,13,7,16v47,14,118,12,118,71v0,52,-52,69,-113,69v-58,0,-98,-20,-98,-55v0,-36,31,-48,42,-54v-19,-9,-9,-53,11,-55v-16,-7,-47,-19,-47,-62xm75,-151v0,14,12,26,30,26v17,0,31,-10,31,-27v0,-15,-8,-26,-29,-26v-18,0,-32,7,-32,27xm156,14v0,-23,-53,-23,-73,-32v-23,17,-23,50,35,50v27,0,38,-9,38,-18","w":226},"h":{"d":"24,0r0,-280r67,0r0,92v24,-20,42,-34,72,-34v54,0,53,43,53,69r0,153r-67,0r0,-127v0,-16,0,-40,-21,-40v-12,0,-22,8,-37,22r0,145r-67,0","w":240},"i":{"d":"23,0r0,-217r68,0r0,217r-68,0xm23,-235r0,-45r68,0r0,45r-68,0","w":113},"j":{"d":"91,-217r0,204v0,32,-1,86,-73,86v-13,0,-20,-2,-31,-5r3,-49v20,7,33,-4,33,-27r0,-209r68,0xm91,-280r0,45r-68,0r0,-45r68,0","w":113},"k":{"d":"24,0r0,-280r67,0r1,158r58,-95r76,0r-68,103r75,114r-81,0r-61,-106r0,106r-67,0","w":233},"l":{"d":"23,0r0,-280r68,0r0,280r-68,0","w":113},"m":{"d":"23,0r0,-217r68,0r0,29v34,-46,98,-44,115,0v18,-15,38,-34,71,-34v54,0,53,43,53,69r0,153r-67,0r0,-133v1,-35,-25,-50,-52,-14r0,147r-68,0r0,-133v1,-35,-25,-50,-52,-14r0,147r-68,0","w":353},"n":{"d":"149,0r0,-134v4,-46,-42,-34,-58,-11r0,145r-67,0r0,-217r67,0r0,29v24,-20,42,-34,72,-34v54,0,53,43,53,69r0,153r-67,0","w":240},"o":{"d":"12,-108v0,-63,33,-114,105,-114v72,0,105,51,105,114v0,63,-33,113,-105,113v-72,0,-105,-50,-105,-113xm81,-108v0,33,6,65,36,65v32,0,36,-32,36,-65v0,-33,-4,-66,-36,-66v-30,0,-36,33,-36,66","w":233},"p":{"d":"24,70r0,-287r67,0r0,22v17,-15,31,-27,58,-27v64,0,76,61,76,110v0,55,-12,117,-74,117v-17,0,-36,-4,-60,-28r0,93r-67,0xm91,-154r0,92v9,8,17,17,32,17v30,0,33,-41,33,-61v0,-27,-1,-66,-33,-66v-14,0,-23,8,-32,18","w":240},"q":{"d":"216,-217r0,287r-67,0r0,-93v-24,24,-43,28,-60,28v-62,0,-74,-62,-74,-117v0,-49,12,-110,76,-110v27,0,41,12,58,27r0,-22r67,0xm149,-62r0,-92v-9,-10,-18,-18,-32,-18v-32,0,-33,39,-33,66v0,20,3,61,33,61v15,0,23,-9,32,-17","w":240},"r":{"d":"24,0r0,-217r67,0v1,11,-2,26,1,35v21,-31,42,-41,71,-37r0,61v-25,-8,-60,1,-72,21r0,137r-67,0","w":159},"s":{"d":"188,-170r-55,17v1,-26,-53,-33,-53,-6v-1,17,40,21,58,27v33,11,53,30,53,64v0,63,-56,73,-92,73v-71,0,-84,-43,-90,-56r58,-16v1,28,55,34,56,6v1,-24,-42,-24,-61,-31v-24,-10,-48,-23,-48,-60v0,-70,74,-70,88,-70v66,0,79,34,86,52","w":200},"t":{"d":"38,-246r67,-28r0,74r51,0r0,47r-51,0v2,49,-18,126,51,105r0,48v-58,14,-118,0,-118,-63r0,-90r-34,0r0,-47r34,0r0,-46","w":159},"u":{"d":"211,-217r0,217r-67,0r0,-25v-30,24,-44,30,-68,30v-42,0,-54,-28,-54,-66r0,-156r68,0r0,143v0,33,36,29,54,6r0,-149r67,0","w":233},"v":{"d":"68,0r-68,-217r72,0v13,52,29,89,35,151r3,0v3,-47,24,-107,36,-151r67,0r-67,217r-78,0"},"w":{"d":"63,0r-62,-217r71,0r33,151r4,0v5,-46,20,-105,29,-151r84,0r31,151r3,0v7,-53,21,-101,31,-151r65,0r-56,217r-85,0r-18,-78v-9,-37,-12,-63,-13,-75r-4,0v-3,40,-20,110,-28,153r-85,0","w":353},"x":{"d":"0,0r66,-117r-59,-100r78,0r30,67r3,0v7,-21,23,-46,32,-67r70,0r-58,100r64,117r-78,0r-35,-76v-7,1,-6,13,-11,19r-29,57r-73,0","w":226},"y":{"d":"75,-6r-74,-211r72,0v12,51,27,92,34,150r3,0v4,-63,23,-99,36,-150r67,0r-75,224v-9,27,-22,66,-84,66v-15,0,-27,-3,-41,-6r4,-51v23,13,59,-2,58,-22"},"z":{"d":"14,-172r0,-45r172,0r0,45r-97,127r101,0r0,45r-180,0r0,-46r97,-126r-93,0","w":200},"{":{"d":"28,-3r0,-68v0,-23,-15,-25,-24,-25r0,-34v9,0,24,-3,24,-26r0,-67v2,-44,39,-53,83,-50r0,33v-47,-6,-29,50,-29,89v0,34,-25,37,-37,38v12,1,37,4,37,38v0,36,-21,92,29,89r0,33v-45,3,-83,-6,-83,-50","w":119},"|":{"d":"18,90r0,-360r44,0r0,360r-44,0","w":79},"}":{"d":"91,-223r0,67v0,23,16,26,25,26r0,34v-9,0,-25,2,-25,25r0,68v-2,44,-38,53,-82,50r0,-33v47,6,28,-51,28,-89v0,-34,26,-37,38,-38v-12,-1,-38,-4,-38,-38v-7,-34,22,-92,-28,-89r0,-33v44,-3,82,6,82,50","w":119},"~":{"d":"146,-59v-36,0,-90,-51,-108,1r-13,-34v8,-15,21,-31,45,-31v23,0,56,24,77,25v14,0,23,-13,31,-26r13,34v-11,15,-23,31,-45,31","w":216},"\u00a1":{"d":"99,39r-65,0r9,-168r47,0xm94,-217r0,55r-54,0r0,-55r54,0","w":133},"\u00a2":{"d":"84,-62v15,-35,24,-76,37,-113v-52,-16,-43,69,-37,113xm136,-164r-37,118v23,14,48,-17,46,-27r58,16v-16,50,-62,70,-120,59r-8,28r-18,-6r9,-28v-97,-44,-67,-248,69,-216r9,-26r17,6r-8,25v17,7,35,15,47,51r-56,19v-2,-7,-5,-16,-8,-19"},"\u00a3":{"d":"17,0r0,-45r27,0r0,-66r-27,0r0,-39r27,0v-5,-71,23,-112,91,-112v55,0,73,24,82,59r-58,15v-4,-24,-15,-29,-28,-29v-39,8,-21,35,-25,67r51,0r0,39r-51,0r0,66r92,0r0,45r-181,0"},"\u2044":{"d":"-56,9r140,-275r32,0r-140,275r-32,0","w":60},"\u00a5":{"d":"77,0r0,-39r-48,0r0,-27r48,0r0,-29r-48,0r0,-27r36,0r-64,-134r66,0r41,111r40,-111r64,0r-64,134r34,0r0,27r-47,0r0,29r47,0r0,27r-47,0r0,39r-58,0"},"\u0192":{"d":"31,-117r4,-39r47,0v14,-59,22,-106,87,-106v24,0,34,5,43,10r-24,38v-16,-12,-38,0,-38,22r-10,36r43,0r-4,39r-48,0v-24,70,-7,169,-99,169v-18,0,-35,-7,-45,-11r23,-39v25,11,33,1,42,-32r21,-87r-42,0"},"\u00a7":{"d":"18,6r46,-22v9,14,15,24,36,24v40,0,28,-29,11,-36r-36,-16v-51,-22,-54,-46,-54,-65v0,-17,9,-36,37,-47v-13,-8,-28,-23,-28,-47v0,-9,4,-59,79,-59v36,0,59,7,79,38r-45,24v-12,-18,-17,-22,-33,-22v-17,0,-25,8,-25,18v0,13,10,16,37,28v46,20,73,32,73,72v0,30,-23,41,-33,45v43,39,24,108,-62,109v-27,0,-59,-4,-82,-44xm69,-118v0,23,46,34,66,45v21,-20,17,-36,-21,-53r-32,-13v-6,4,-13,8,-13,21"},"'":{"d":"30,-183r0,-97r47,0r0,97r-47,0","w":106},"\u201c":{"d":"134,-280r48,0r-26,97r-56,0xm48,-280r47,0r-26,97r-55,0","w":193},"\u00ab":{"d":"104,-111r68,-90r35,23r-46,67r46,68r-35,23xm6,-111r69,-90r34,23r-45,67r45,68r-34,23"},"\u2039":{"d":"8,-111r69,-90r35,23r-46,67r46,68r-35,23","w":119},"\u203a":{"d":"43,-201r69,90r-69,91r-35,-23r46,-68r-46,-67","w":119},"\ufb01":{"d":"169,0r0,-217r68,0r0,217r-68,0xm169,-235r0,-45r68,0r0,45r-68,0xm35,0r0,-153r-31,0r0,-47r31,0v-1,-50,10,-89,84,-92v14,0,21,1,35,4r0,44v-29,-10,-60,3,-51,44r43,0r0,47r-43,0r0,153r-68,0","w":259},"\ufb02":{"d":"169,0r0,-280r68,0r0,280r-68,0xm35,0r0,-153r-31,0r0,-47r31,0v-1,-50,10,-89,84,-92v14,0,21,1,35,4r0,44v-29,-10,-60,3,-51,44r43,0r0,47r-43,0r0,153r-68,0","w":259},"\u2013":{"d":"0,-90r0,-41r180,0r0,41r-180,0","w":180},"\u2020":{"d":"75,-190r0,-66r63,0r0,66r64,0r0,52r-64,0r0,183r-63,0r0,-183r-63,0r0,-52r63,0"},"\u2021":{"d":"75,-197r0,-59r63,0r0,59r57,0r0,50r-57,0r0,83r57,0r0,50r-57,0r0,59r-63,0r0,-59r-57,0r0,-50r57,0r0,-83r-57,0r0,-50r57,0"},"\u00b7":{"d":"19,-100v0,-19,15,-34,34,-34v19,0,34,15,34,34v0,19,-15,33,-34,33v-19,0,-34,-14,-34,-33","w":106},"\u00b6":{"d":"74,45r0,-168v-33,0,-60,-24,-60,-67v1,-96,100,-59,181,-66r0,301r-43,0r0,-269r-35,0r0,269r-43,0"},"\u2022":{"d":"26,-128v0,-35,29,-64,64,-64v35,0,64,29,64,64v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":180},"\u201a":{"d":"38,-55r55,0r-34,97r-48,0","w":106},"\u201e":{"d":"59,42r-48,0r27,-97r55,0xm146,42r-48,0r27,-97r55,0","w":193},"\u201d":{"d":"59,-183r-48,0r27,-97r55,0xm146,-183r-48,0r27,-97r55,0","w":193},"\u00bb":{"d":"109,-111r-68,91r-35,-23r46,-68r-46,-67r35,-23xm207,-111r-69,91r-34,-23r45,-68r-45,-67r34,-23"},"\u2026":{"d":"33,0r0,-55r54,0r0,55r-54,0xm153,0r0,-55r54,0r0,55r-54,0xm273,0r0,-55r54,0r0,55r-54,0","w":360},"\u2030":{"d":"68,-127v-45,0,-59,-34,-59,-68v0,-34,14,-67,59,-67v45,0,58,33,58,67v0,34,-13,68,-58,68xm68,-154v16,0,19,-20,19,-41v0,-21,-3,-40,-19,-40v-16,0,-20,19,-20,40v0,21,4,41,20,41xm332,5v-45,0,-58,-34,-58,-68v0,-34,13,-67,58,-67v45,0,59,33,59,67v0,34,-14,68,-59,68xm332,-22v16,0,20,-20,20,-41v0,-21,-4,-40,-20,-40v-16,0,-19,19,-19,40v0,21,3,41,19,41xm201,5v-45,0,-58,-34,-58,-68v0,-34,13,-67,58,-67v45,0,59,33,59,67v0,34,-14,68,-59,68xm201,-22v16,0,20,-20,20,-41v0,-21,-4,-40,-20,-40v-16,0,-19,19,-19,40v0,21,3,41,19,41xm48,9r140,-275r33,0r-140,275r-33,0","w":399},"\u00bf":{"d":"10,-22v-3,-60,64,-51,61,-107r50,0v11,62,-52,59,-54,104v0,17,15,25,27,25v25,0,29,-22,31,-32r56,10v-9,41,-37,67,-88,67v-77,0,-83,-52,-83,-67xm123,-217r0,55r-54,0r0,-55r54,0","w":200},"`":{"d":"53,-292r35,54r-47,0r-64,-54r76,0","w":100},"\u00b4":{"d":"12,-238r35,-54r76,0r-64,54r-47,0","w":100},"\u02c6":{"d":"-23,-238r44,-54r59,0r43,54r-52,0r-21,-27r-20,27r-53,0","w":100},"\u02dc":{"d":"93,-289r28,0v-4,21,-11,49,-47,49v-32,0,-56,-31,-66,2r-29,0v1,-5,9,-51,48,-51v29,0,52,31,66,0","w":100},"\u00af":{"d":"-11,-249r0,-33r122,0r0,33r-122,0","w":100},"\u02d8":{"d":"-16,-292r29,0v3,15,10,24,37,24v27,0,34,-9,37,-24r29,0v-4,39,-23,56,-66,56v-43,0,-62,-17,-66,-56","w":100},"\u02d9":{"d":"18,-235r0,-45r64,0r0,45r-64,0","w":100},"\u00a8":{"d":"124,-280r0,45r-63,0r0,-45r63,0xm-24,-235r0,-45r63,0r0,45r-63,0","w":100},"\u02da":{"d":"30,-276v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20xm6,-276v0,-24,20,-44,44,-44v24,0,44,20,44,44v0,24,-20,43,-44,43v-24,0,-44,-19,-44,-43","w":100},"\u00b8":{"d":"38,0r22,0r-14,23v23,-9,51,13,46,26v1,44,-69,37,-92,24r8,-17v13,8,52,11,49,-5v-5,-24,-32,-1,-39,-18","w":100},"\u02dd":{"d":"-41,-238r35,-54r76,0r-65,54r-46,0xm52,-238r35,-54r76,0r-64,54r-47,0","w":100},"\u02db":{"d":"29,49v1,-24,33,-36,49,-49r33,0v-9,9,-34,27,-34,40v0,15,29,21,42,10r0,22v-27,15,-92,19,-90,-23","w":100},"\u02c7":{"d":"123,-292r-43,54r-59,0r-44,-54r53,0r20,27r21,-27r52,0","w":100},"\u2014":{"d":"0,-90r0,-41r360,0r0,41r-360,0","w":360},"\u00c6":{"d":"0,0r134,-256r203,0r0,52r-91,0r0,48r84,0r0,52r-84,0r0,51r95,0r0,53r-161,0r0,-55r-80,0r-26,55r-74,0xm176,-211r-52,107r56,0r0,-107r-4,0","w":360},"\u00aa":{"d":"71,-262v92,0,45,62,60,133r-44,0r-1,-17v-19,17,-23,20,-40,20v-31,0,-41,-25,-41,-40v0,-38,40,-46,81,-46v0,-12,0,-23,-18,-23v-13,0,-17,9,-19,17r-39,-10v8,-18,18,-34,61,-34xm86,-168r0,-19v-15,0,-37,-1,-37,17v0,21,30,11,37,2","w":142},"\u0141":{"d":"0,-66r0,-33r24,-15r0,-142r70,0r0,96r63,-41r0,33r-63,40r0,74r96,0r0,54r-166,0r0,-82","w":193},"\u00d8":{"d":"91,-86r90,-102v-8,-14,-21,-22,-41,-22v-57,-2,-58,72,-49,124xm24,-10r20,-23v-19,-21,-31,-52,-31,-95v0,-99,66,-134,127,-134v34,0,63,6,85,24r17,-18r14,10r-18,20v18,21,29,53,29,98v1,137,-125,163,-210,106r-19,22xm188,-170r-89,102v8,14,20,22,41,22v56,2,59,-74,48,-124","w":280},"\u0152":{"d":"180,-206v-58,-3,-93,18,-93,76v1,52,37,81,93,77r0,-153xm333,-156r0,52r-86,0r0,51r96,0r0,53r-184,2v-84,0,-146,-42,-146,-132v1,-161,173,-123,326,-126r0,52r-92,0r0,48r86,0","w":360},"\u00ba":{"d":"1,-194v0,-38,21,-68,68,-68v46,0,69,30,69,68v0,38,-23,68,-69,68v-47,0,-68,-30,-68,-68xm69,-232v-22,0,-23,21,-23,38v0,18,1,37,23,37v21,0,23,-19,23,-37v0,-17,-2,-38,-23,-38","w":138},"\u00e6":{"d":"196,-134r68,0v-1,-14,-4,-43,-33,-43v-32,0,-35,30,-35,43xm331,-90r-135,0v0,14,0,47,34,47v22,0,29,-16,34,-26r57,18v-25,69,-127,72,-170,22v-27,24,-54,34,-80,34v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57v34,0,48,12,62,25v66,-60,173,-11,160,107xm132,-64r0,-32v-29,-4,-58,2,-57,28v1,33,46,20,57,4","w":339},"\u0131":{"d":"23,0r0,-217r68,0r0,217r-68,0","w":113},"\u0142":{"d":"23,-135r0,-145r68,0r0,96r23,-16r0,32r-23,17r0,151r-68,0r0,-102r-23,17r0,-33","w":113},"\u00f8":{"d":"82,-83r64,-73v-5,-10,-14,-18,-29,-18v-42,1,-36,52,-35,91xm151,-136r-65,73v5,12,15,20,31,20v43,-1,37,-55,34,-93xm14,-5r22,-26v-50,-68,-23,-191,81,-191v29,0,51,8,67,22r19,-22r14,11r-20,23v51,68,26,193,-80,193v-29,0,-52,-9,-69,-23r-21,23","w":233},"\u0153":{"d":"215,-134r68,0v-1,-14,-3,-43,-32,-43v-32,0,-36,30,-36,43xm283,-69r58,18v-24,62,-111,75,-158,31v-15,15,-35,25,-68,25v-72,0,-105,-50,-105,-113v0,-63,33,-114,105,-114v28,0,51,7,68,23v69,-53,182,-13,167,109r-135,0v0,14,0,47,34,47v22,0,29,-16,34,-26xm79,-108v0,33,6,65,36,65v32,0,36,-32,36,-65v0,-33,-4,-66,-36,-66v-30,0,-36,33,-36,66","w":360},"\u00df":{"d":"24,0r0,-185v0,-65,33,-100,98,-100v55,0,86,30,86,72v0,43,-35,58,-48,61r0,3v21,1,65,9,65,75v0,64,-57,92,-119,74r7,-49v25,13,46,-1,46,-36v0,-28,-14,-42,-46,-39r0,-46v21,1,32,-5,33,-33v0,-19,-7,-32,-27,-32v-20,0,-28,12,-28,36r0,199r-67,0","w":240},"\u00f7":{"d":"199,-69r-182,0r0,-44r182,0r0,44xm75,-166v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,17,-15,34,-32,34v-18,0,-34,-16,-34,-34xm75,-17v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,17,-15,34,-32,34v-18,0,-34,-16,-34,-34","w":216},"\u00be":{"d":"178,-55r68,-100r44,0r0,104r19,0r0,28r-19,0r0,23r-41,0r0,-23r-71,0r0,-32xm251,-50v-1,-22,3,-47,0,-67v-12,30,-26,46,-41,67r41,0xm6,-144r38,-7v1,11,7,22,20,22v15,0,20,-14,20,-21v0,-19,-15,-22,-35,-21r0,-28v16,0,33,0,33,-19v0,-11,-6,-17,-17,-17v-15,0,-17,11,-18,16r-37,-9v12,-26,32,-34,61,-34v43,0,55,22,55,39v0,29,-29,33,-36,38v22,3,37,14,37,36v0,47,-51,47,-61,47v-24,0,-50,-6,-60,-42xm77,9r140,-275r33,0r-140,275r-33,0","w":320},"\u00bc":{"d":"178,-55r68,-100r44,0r0,104r19,0r0,28r-19,0r0,23r-41,0r0,-23r-71,0r0,-32xm251,-50v-1,-22,3,-47,0,-67v-12,30,-26,46,-41,67r41,0xm71,9r140,-275r32,0r-140,275r-32,0xm6,-214r59,-46r39,0r0,155r-41,0r0,-116r-36,31","w":320},"\u00b9":{"d":"6,-214r59,-46r39,0r0,155r-41,0r0,-116r-36,31","w":138},"\u00d7":{"d":"78,-91r-55,-56r30,-29r55,55r55,-55r30,29r-56,56r56,55r-30,30r-55,-56r-55,56r-30,-30","w":216},"\u00ae":{"d":"167,-55r-32,-59r-13,0r0,59r-34,0r0,-146v51,1,118,-10,118,42v0,26,-17,42,-38,44r35,60r-36,0xm122,-141v21,0,48,4,48,-17v0,-21,-28,-15,-48,-16r0,33xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm42,-128v0,56,46,102,102,102v56,0,102,-46,102,-102v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102","w":288},"\u00de":{"d":"24,0r0,-256r70,0r0,31v74,-4,133,6,133,81v0,45,-25,87,-88,87r-45,0r0,57r-70,0xm93,-175r0,67v35,2,66,0,66,-34v0,-30,-32,-37,-66,-33","w":233},"\u00a6":{"d":"18,63r0,-126r44,0r0,126r-44,0xm18,-117r0,-126r44,0r0,126r-44,0","w":79},"\u00d0":{"d":"-2,-123r0,-27r26,0r0,-106r105,0v78,0,128,43,128,126v0,88,-55,130,-133,130r-100,0r0,-123r-26,0xm140,-150r0,27r-46,0r0,70v61,5,89,-19,89,-75v0,-52,-29,-83,-89,-76r0,54r46,0","w":273},"\u00bd":{"d":"65,9r140,-275r33,0r-140,275r-33,0xm6,-214r59,-46r39,0r0,155r-41,0r0,-116r-36,31xm190,0r0,-28v20,-17,85,-70,76,-84v0,-3,0,-18,-19,-18v-15,0,-20,14,-21,25r-38,-7v1,-13,11,-46,63,-46v52,0,58,33,58,45v0,30,-44,62,-69,85r68,0r0,28r-118,0","w":320},"\u2212":{"d":"199,-69r-182,0r0,-44r182,0r0,44","w":216},"\u00e7":{"d":"197,-156r-57,15v-2,-17,-9,-36,-28,-36v-31,0,-31,32,-31,67v0,37,1,67,31,67v20,0,27,-18,29,-36r60,14v-7,23,-20,67,-86,70r-11,18v23,-9,51,13,46,26v2,44,-69,37,-92,24r8,-17v13,8,53,11,50,-5v-4,-24,-32,-2,-39,-18r17,-28v-116,-16,-112,-227,16,-227v62,0,84,42,87,66","w":206},"\u00f0":{"d":"55,-206r-19,-20r34,-16r-26,-20r46,-30r33,23r36,-17r16,20r-31,15v30,30,78,74,78,143v0,63,-33,113,-105,113v-128,0,-142,-199,-22,-203v10,0,20,6,28,6v-5,-7,-7,-10,-31,-33xm117,-159v-34,0,-36,34,-36,58v0,24,2,58,36,58v34,0,36,-34,36,-58v0,-24,-2,-58,-36,-58","w":233},"\u00b1":{"d":"86,-140r0,-42r44,0r0,42r69,0r0,44r-69,0r0,42r-44,0r0,-42r-69,0r0,-44r69,0xm17,0r0,-43r182,0r0,43r-182,0","w":216},"\u00c7":{"d":"241,-184r-65,12v-2,-13,-8,-38,-40,-38v-19,0,-49,13,-49,80v0,42,9,84,49,84v29,0,38,-25,43,-42r64,14v-15,55,-47,82,-109,80r-11,17v24,-9,52,13,47,26v1,44,-69,37,-92,24r7,-17v13,8,53,11,50,-5v-4,-24,-32,-2,-39,-18r18,-29v-55,-9,-101,-47,-101,-132v0,-99,66,-134,127,-134v66,0,95,42,101,78","w":253},"\u00fe":{"d":"24,70r0,-350r67,0r0,85v17,-15,31,-27,58,-27v64,0,76,61,76,110v0,55,-12,117,-74,117v-17,0,-36,-4,-60,-28r0,93r-67,0xm91,-154r0,92v9,8,17,17,32,17v30,0,33,-41,33,-61v0,-27,-1,-66,-33,-66v-14,0,-23,8,-32,18","w":240},"\u00a9":{"d":"10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm42,-128v0,56,46,102,102,102v56,0,102,-46,102,-102v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102xm213,-152r-36,0v-3,-17,-15,-23,-30,-23v-23,0,-35,18,-35,45v0,46,58,64,65,21r36,0v-4,37,-34,57,-66,57v-44,0,-74,-34,-74,-77v0,-85,129,-111,140,-23","w":288},"\u00ac":{"d":"156,-39r0,-71r-139,0r0,-43r182,0r0,114r-43,0","w":216},"\u00b2":{"d":"8,-105r0,-27v20,-17,85,-70,76,-84v0,-3,0,-18,-19,-18v-15,0,-19,13,-20,24r-39,-7v1,-13,12,-45,64,-45v52,0,57,32,57,44v0,30,-43,63,-68,85r67,0r0,28r-118,0","w":138},"\u00b3":{"d":"6,-144r38,-7v1,11,7,22,20,22v15,0,20,-14,20,-21v0,-19,-15,-22,-35,-21r0,-28v16,0,33,0,33,-19v0,-11,-6,-17,-17,-17v-15,0,-17,11,-18,16r-37,-9v12,-26,32,-34,61,-34v43,0,55,22,55,39v0,29,-29,33,-36,38v22,3,37,14,37,36v0,47,-51,47,-61,47v-24,0,-50,-6,-60,-42","w":138},"\u2122":{"d":"137,-256r0,32r-41,0r0,116r-43,0r0,-116r-40,0r0,-32r124,0xm227,-256r32,86r32,-86r56,0r0,148r-40,0r0,-98r-32,98r-32,0r-33,-98r1,98r-40,0r0,-148r56,0","w":360},"\u00b0":{"d":"49,-211v0,13,10,23,23,23v13,0,23,-10,23,-23v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23xm20,-211v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52","w":144},"\u03bc":{"d":"22,70r0,-287r68,0r0,131v0,26,2,37,23,37v21,0,31,-18,31,-22r0,-146r67,0r0,217r-67,0v-1,-8,2,-20,-1,-26v-5,24,-35,38,-53,18r0,78r-68,0","w":233},"\u00c1":{"d":"105,-103r62,0v-11,-30,-21,-73,-31,-101v-8,38,-20,67,-31,101xm183,-256r90,256r-74,0r-16,-53r-95,0r-17,53r-71,0r94,-256r89,0xm99,-278r35,-54v25,1,53,-2,76,1r-65,53r-46,0","w":273},"\u00c2":{"d":"105,-103r62,0v-11,-30,-21,-73,-31,-101v-8,38,-20,67,-31,101xm183,-256r90,256r-74,0r-16,-53r-95,0r-17,53r-71,0r94,-256r89,0xm64,-278r43,-54r59,0r44,54r-53,0r-20,-27r-21,27r-52,0","w":273},"\u00c4":{"d":"105,-103r62,0v-11,-30,-21,-73,-31,-101v-8,38,-20,67,-31,101xm183,-256r90,256r-74,0r-16,-53r-95,0r-17,53r-71,0r94,-256r89,0xm211,-319r0,44r-63,0r0,-44r63,0xm63,-275r0,-44r63,0r0,44r-63,0","w":273},"\u00c0":{"d":"105,-103r62,0v-11,-30,-21,-73,-31,-101v-8,38,-20,67,-31,101xm183,-256r90,256r-74,0r-16,-53r-95,0r-17,53r-71,0r94,-256r89,0xm140,-332r35,54r-47,0r-64,-54r76,0","w":273},"\u00c5":{"d":"105,-103r62,0v-11,-30,-21,-73,-31,-101v-8,38,-20,67,-31,101xm183,-256r90,256r-74,0r-16,-53r-95,0r-17,53r-71,0r94,-256r89,0xm117,-310v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20xm93,-310v0,-24,20,-44,44,-44v24,0,43,20,43,44v0,24,-19,44,-43,44v-24,0,-44,-20,-44,-44","w":273},"\u00c3":{"d":"105,-103r62,0v-11,-30,-21,-73,-31,-101v-8,38,-20,67,-31,101xm183,-256r90,256r-74,0r-16,-53r-95,0r-17,53r-71,0r94,-256r89,0xm179,-328r28,0v-4,21,-10,49,-46,49v-32,-1,-55,-30,-67,1r-28,0v1,-5,8,-50,47,-50v29,0,52,32,66,0","w":273},"\u00c9":{"d":"24,0r0,-256r178,0r0,52r-109,0r0,48r102,0r0,52r-102,0r0,51r113,0r0,53r-182,0xm75,-278r35,-54v25,1,53,-2,76,1r-64,53r-47,0","w":226},"\u00ca":{"d":"24,0r0,-256r178,0r0,52r-109,0r0,48r102,0r0,52r-102,0r0,51r113,0r0,53r-182,0xm40,-278r44,-54r59,0r43,54r-52,0r-21,-27r-20,27r-53,0","w":226},"\u00cb":{"d":"24,0r0,-256r178,0r0,52r-109,0r0,48r102,0r0,52r-102,0r0,51r113,0r0,53r-182,0xm188,-319r0,44r-64,0r0,-44r64,0xm39,-275r0,-44r64,0r0,44r-64,0","w":226},"\u00c8":{"d":"24,0r0,-256r178,0r0,52r-109,0r0,48r102,0r0,52r-102,0r0,51r113,0r0,53r-182,0xm117,-332r35,54r-47,0r-65,-54r77,0","w":226},"\u00cd":{"d":"25,0r0,-256r70,0r0,256r-70,0xm22,-278r35,-54v25,1,53,-2,76,1r-64,53r-47,0","w":120},"\u00ce":{"d":"25,0r0,-256r70,0r0,256r-70,0xm-13,-278r44,-54r59,0r43,54r-52,0r-21,-27r-20,27r-53,0","w":120},"\u00cf":{"d":"25,0r0,-256r70,0r0,256r-70,0xm134,-319r0,44r-63,0r0,-44r63,0xm-14,-275r0,-44r63,0r0,44r-63,0","w":120},"\u00cc":{"d":"25,0r0,-256r70,0r0,256r-70,0xm63,-332r35,54r-47,0r-64,-54r76,0","w":120},"\u00d1":{"d":"24,0r0,-256r88,0v28,61,63,112,85,180r4,0v-7,-47,-3,-124,-4,-180r66,0r0,256r-89,0v-26,-57,-67,-118,-84,-180r-3,0v4,56,1,121,2,180r-65,0xm186,-328r28,0v-4,21,-11,49,-47,49v-32,-1,-55,-30,-66,1r-28,0v1,-5,8,-50,47,-50v29,0,52,32,66,0","w":286},"\u00d3":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm13,-128v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,99,-61,134,-127,134v-61,0,-127,-35,-127,-134xm102,-278r35,-54v25,1,53,-2,76,1r-64,53r-47,0","w":280},"\u00d4":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm13,-128v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,99,-61,134,-127,134v-61,0,-127,-35,-127,-134xm67,-278r44,-54r59,0r43,54r-52,0r-21,-27r-20,27r-53,0","w":280},"\u00d6":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm13,-128v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,99,-61,134,-127,134v-61,0,-127,-35,-127,-134xm214,-319r0,44r-63,0r0,-44r63,0xm66,-275r0,-44r63,0r0,44r-63,0","w":280},"\u00d2":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm13,-128v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,99,-61,134,-127,134v-61,0,-127,-35,-127,-134xm143,-332r35,54r-47,0r-64,-54r76,0","w":280},"\u00d5":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm13,-128v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,99,-61,134,-127,134v-61,0,-127,-35,-127,-134xm183,-328r28,0v-4,21,-11,49,-47,49v-32,0,-55,-31,-66,1r-29,0v1,-5,9,-50,48,-50v29,0,52,31,66,0","w":280},"\u0160":{"d":"13,-58r62,-24v1,10,9,37,41,37v21,0,35,-9,35,-25v0,-25,-54,-33,-77,-43v-32,-12,-59,-33,-59,-69v0,-54,49,-80,109,-80v74,0,86,43,91,57r-62,20v-1,-8,-11,-27,-35,-27v-23,0,-33,9,-33,22v0,27,58,36,81,46v33,15,54,31,54,66v0,38,-25,84,-108,84v-78,0,-94,-48,-99,-64xm190,-332r-44,54r-59,0r-43,-54r52,0r21,27r20,-27r53,0","w":233},"\u00da":{"d":"24,-95r0,-161r70,0r0,161v0,27,10,49,40,49v32,0,41,-23,41,-49r0,-161r68,0r0,161v0,64,-39,101,-109,101v-59,0,-110,-25,-110,-101xm95,-278r35,-54v25,1,54,-2,77,1r-65,53r-47,0","w":266},"\u00db":{"d":"24,-95r0,-161r70,0r0,161v0,27,10,49,40,49v32,0,41,-23,41,-49r0,-161r68,0r0,161v0,64,-39,101,-109,101v-59,0,-110,-25,-110,-101xm60,-278r44,-54r59,0r44,54r-53,0r-20,-27r-21,27r-53,0","w":266},"\u00dc":{"d":"24,-95r0,-161r70,0r0,161v0,27,10,49,40,49v32,0,41,-23,41,-49r0,-161r68,0r0,161v0,64,-39,101,-109,101v-59,0,-110,-25,-110,-101xm208,-319r0,44r-64,0r0,-44r64,0xm59,-275r0,-44r64,0r0,44r-64,0","w":266},"\u00d9":{"d":"24,-95r0,-161r70,0r0,161v0,27,10,49,40,49v32,0,41,-23,41,-49r0,-161r68,0r0,161v0,64,-39,101,-109,101v-59,0,-110,-25,-110,-101xm137,-332r35,54r-47,0r-65,-54r77,0","w":266},"\u00dd":{"d":"95,0r0,-95r-94,-161r81,0v18,32,35,69,51,103v12,-39,31,-69,48,-103r77,0r-93,161r0,95r-70,0xm92,-278r35,-54v25,1,53,-2,76,1r-64,53r-47,0","w":259},"\u0178":{"d":"95,0r0,-95r-94,-161r81,0v18,32,35,69,51,103v12,-39,31,-69,48,-103r77,0r-93,161r0,95r-70,0xm204,-319r0,44r-63,0r0,-44r63,0xm56,-275r0,-44r63,0r0,44r-63,0","w":259},"\u017d":{"d":"11,0r0,-60r115,-144r-111,0r0,-52r193,0r0,55r-118,148r119,0r0,53r-198,0xm183,-332r-43,54r-59,0r-44,-54r53,0r20,27r21,-27r52,0","w":219},"\u00e1":{"d":"109,-222v123,0,82,114,91,222r-65,0v-1,-9,0,-22,-3,-28v-15,14,-35,33,-61,33v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57xm75,-68v1,33,46,20,57,4r0,-32v-29,-4,-58,2,-57,28xm72,-238r35,-54r76,0r-64,54r-47,0","w":219},"\u00e2":{"d":"109,-222v123,0,82,114,91,222r-65,0v-1,-9,0,-22,-3,-28v-15,14,-35,33,-61,33v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57xm75,-68v1,33,46,20,57,4r0,-32v-29,-4,-58,2,-57,28xm37,-238r44,-54r59,0r43,54r-52,0r-21,-27r-20,27r-53,0","w":219},"\u00e4":{"d":"109,-222v123,0,82,114,91,222r-65,0v-1,-9,0,-22,-3,-28v-15,14,-35,33,-61,33v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57xm75,-68v1,33,46,20,57,4r0,-32v-29,-4,-58,2,-57,28xm184,-280r0,45r-63,0r0,-45r63,0xm36,-235r0,-45r63,0r0,45r-63,0","w":219},"\u00e0":{"d":"109,-222v123,0,82,114,91,222r-65,0v-1,-9,0,-22,-3,-28v-15,14,-35,33,-61,33v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57xm75,-68v1,33,46,20,57,4r0,-32v-29,-4,-58,2,-57,28xm113,-292r35,54r-46,0r-65,-54r76,0","w":219},"\u00e5":{"d":"109,-222v123,0,82,114,91,222r-65,0v-1,-9,0,-22,-3,-28v-15,14,-35,33,-61,33v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57xm75,-68v1,33,46,20,57,4r0,-32v-29,-4,-58,2,-57,28xm90,-276v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20xm67,-276v0,-24,19,-44,43,-44v24,0,44,20,44,44v0,24,-20,43,-44,43v-24,0,-43,-19,-43,-43","w":219},"\u00e3":{"d":"109,-222v123,0,82,114,91,222r-65,0v-1,-9,0,-22,-3,-28v-15,14,-35,33,-61,33v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57xm75,-68v1,33,46,20,57,4r0,-32v-29,-4,-58,2,-57,28xm153,-289r28,0v-4,21,-11,49,-47,49v-32,0,-55,-30,-66,2r-28,0v1,-5,8,-51,47,-51v29,0,52,31,66,0","w":219},"\u00e9":{"d":"113,-222v62,0,108,44,102,132r-134,0v0,14,-1,47,33,47v22,0,30,-16,35,-26r57,18v-19,41,-49,56,-93,56v-86,0,-101,-74,-101,-113v0,-63,34,-114,101,-114xm81,-134r68,0v-1,-14,-4,-43,-33,-43v-32,0,-35,30,-35,43xm75,-238r35,-54r76,0r-64,54r-47,0","w":226},"\u00ea":{"d":"113,-222v62,0,108,44,102,132r-134,0v0,14,-1,47,33,47v22,0,30,-16,35,-26r57,18v-19,41,-49,56,-93,56v-86,0,-101,-74,-101,-113v0,-63,34,-114,101,-114xm81,-134r68,0v-1,-14,-4,-43,-33,-43v-32,0,-35,30,-35,43xm40,-238r44,-54r59,0r43,54r-52,0r-21,-27r-20,27r-53,0","w":226},"\u00eb":{"d":"113,-222v62,0,108,44,102,132r-134,0v0,14,-1,47,33,47v22,0,30,-16,35,-26r57,18v-19,41,-49,56,-93,56v-86,0,-101,-74,-101,-113v0,-63,34,-114,101,-114xm81,-134r68,0v-1,-14,-4,-43,-33,-43v-32,0,-35,30,-35,43xm188,-280r0,45r-64,0r0,-45r64,0xm39,-235r0,-45r64,0r0,45r-64,0","w":226},"\u00e8":{"d":"113,-222v62,0,108,44,102,132r-134,0v0,14,-1,47,33,47v22,0,30,-16,35,-26r57,18v-19,41,-49,56,-93,56v-86,0,-101,-74,-101,-113v0,-63,34,-114,101,-114xm81,-134r68,0v-1,-14,-4,-43,-33,-43v-32,0,-35,30,-35,43xm117,-292r35,54r-47,0r-65,-54r77,0","w":226},"\u00ed":{"d":"23,0r0,-217r68,0r0,217r-68,0xm19,-238r35,-54r76,0r-64,54r-47,0","w":113},"\u00ee":{"d":"23,0r0,-217r68,0r0,217r-68,0xm-16,-238r43,-54r59,0r44,54r-53,0r-20,-27r-21,27r-52,0","w":113},"\u00ef":{"d":"23,0r0,-217r68,0r0,217r-68,0xm131,-280r0,45r-63,0r0,-45r63,0xm-17,-235r0,-45r63,0r0,45r-63,0","w":113},"\u00ec":{"d":"23,0r0,-217r68,0r0,217r-68,0xm60,-292r35,54r-47,0r-64,-54r76,0","w":113},"\u00f1":{"d":"149,0r0,-134v4,-46,-42,-34,-58,-11r0,145r-67,0r0,-217r67,0r0,29v24,-20,42,-34,72,-34v54,0,53,43,53,69r0,153r-67,0xm163,-289r28,0v-4,21,-11,49,-47,49v-32,0,-55,-30,-66,2r-28,0v1,-5,8,-51,47,-51v29,0,52,32,66,0","w":240},"\u00f3":{"d":"12,-108v0,-63,33,-114,105,-114v72,0,105,51,105,114v0,63,-33,113,-105,113v-72,0,-105,-50,-105,-113xm81,-108v0,33,6,65,36,65v32,0,36,-32,36,-65v0,-33,-4,-66,-36,-66v-30,0,-36,33,-36,66xm78,-238r35,-54r77,0r-65,54r-47,0","w":233},"\u00f4":{"d":"12,-108v0,-63,33,-114,105,-114v72,0,105,51,105,114v0,63,-33,113,-105,113v-72,0,-105,-50,-105,-113xm81,-108v0,33,6,65,36,65v32,0,36,-32,36,-65v0,-33,-4,-66,-36,-66v-30,0,-36,33,-36,66xm44,-238r43,-54r59,0r44,54r-53,0r-20,-27r-21,27r-52,0","w":233},"\u00f6":{"d":"12,-108v0,-63,33,-114,105,-114v72,0,105,51,105,114v0,63,-33,113,-105,113v-72,0,-105,-50,-105,-113xm81,-108v0,33,6,65,36,65v32,0,36,-32,36,-65v0,-33,-4,-66,-36,-66v-30,0,-36,33,-36,66xm191,-280r0,45r-64,0r0,-45r64,0xm42,-235r0,-45r64,0r0,45r-64,0","w":233},"\u00f2":{"d":"12,-108v0,-63,33,-114,105,-114v72,0,105,51,105,114v0,63,-33,113,-105,113v-72,0,-105,-50,-105,-113xm81,-108v0,33,6,65,36,65v32,0,36,-32,36,-65v0,-33,-4,-66,-36,-66v-30,0,-36,33,-36,66xm120,-292r35,54r-47,0r-64,-54r76,0","w":233},"\u00f5":{"d":"12,-108v0,-63,33,-114,105,-114v72,0,105,51,105,114v0,63,-33,113,-105,113v-72,0,-105,-50,-105,-113xm81,-108v0,33,6,65,36,65v32,0,36,-32,36,-65v0,-33,-4,-66,-36,-66v-30,0,-36,33,-36,66xm159,-289r28,0v-4,21,-11,49,-47,49v-32,0,-55,-30,-66,2r-28,0v1,-5,8,-51,47,-51v29,0,52,32,66,0","w":233},"\u0161":{"d":"188,-170r-55,17v1,-26,-53,-33,-53,-6v-1,17,40,21,58,27v33,11,53,30,53,64v0,63,-56,73,-92,73v-71,0,-84,-43,-90,-56r58,-16v1,28,55,34,56,6v1,-24,-42,-24,-61,-31v-24,-10,-48,-23,-48,-60v0,-70,74,-70,88,-70v66,0,79,34,86,52xm173,-292r-43,54r-59,0r-44,-54r53,0r20,27r21,-27r52,0","w":200},"\u00fa":{"d":"211,-217r0,217r-67,0r0,-25v-30,24,-44,30,-68,30v-42,0,-54,-28,-54,-66r0,-156r68,0r0,143v0,33,36,29,54,6r0,-149r67,0xm78,-238r35,-54r77,0r-65,54r-47,0","w":233},"\u00fb":{"d":"211,-217r0,217r-67,0r0,-25v-30,24,-44,30,-68,30v-42,0,-54,-28,-54,-66r0,-156r68,0r0,143v0,33,36,29,54,6r0,-149r67,0xm44,-238r43,-54r59,0r44,54r-53,0r-20,-27r-21,27r-52,0","w":233},"\u00fc":{"d":"211,-217r0,217r-67,0r0,-25v-30,24,-44,30,-68,30v-42,0,-54,-28,-54,-66r0,-156r68,0r0,143v0,33,36,29,54,6r0,-149r67,0xm191,-280r0,45r-64,0r0,-45r64,0xm42,-235r0,-45r64,0r0,45r-64,0","w":233},"\u00f9":{"d":"211,-217r0,217r-67,0r0,-25v-30,24,-44,30,-68,30v-42,0,-54,-28,-54,-66r0,-156r68,0r0,143v0,33,36,29,54,6r0,-149r67,0xm120,-292r35,54r-47,0r-64,-54r76,0","w":233},"\u00fd":{"d":"75,-6r-74,-211r72,0v12,51,27,92,34,150r3,0v4,-63,23,-99,36,-150r67,0r-75,224v-9,27,-22,66,-84,66v-15,0,-27,-3,-41,-6r4,-51v23,13,59,-2,58,-22xm69,-238r35,-54r76,0r-64,54r-47,0"},"\u00ff":{"d":"75,-6r-74,-211r72,0v12,51,27,92,34,150r3,0v4,-63,23,-99,36,-150r67,0r-75,224v-9,27,-22,66,-84,66v-15,0,-27,-3,-41,-6r4,-51v23,13,59,-2,58,-22xm181,-280r0,45r-63,0r0,-45r63,0xm33,-235r0,-45r63,0r0,45r-63,0"},"\u017e":{"d":"14,-172r0,-45r172,0r0,45r-97,127r101,0r0,45r-180,0r0,-46r97,-126r-93,0xm173,-292r-43,54r-59,0r-44,-54r53,0r20,27r21,-27r52,0","w":200},"\u00a4":{"d":"209,-13v-74,43,-190,9,-196,-81r-25,0v7,-9,4,-30,23,-27v0,-8,0,-17,1,-25r-24,0r12,-27r17,0v10,-40,35,-59,49,-70v29,-22,116,-25,149,3r-24,51v-25,-30,-94,-34,-101,16r93,0r-12,27r-85,0v-1,9,-1,17,-1,25r74,0r-12,27r-59,0v3,22,19,52,50,50v28,-2,55,-19,71,-34r0,65"},"\u20ac":{"d":"209,-13v-74,43,-190,9,-196,-81r-25,0v7,-9,4,-30,23,-27v0,-8,0,-17,1,-25r-24,0r12,-27r17,0v10,-40,35,-59,49,-70v29,-22,116,-25,149,3r-24,51v-25,-30,-94,-34,-101,16r93,0r-12,27r-85,0v-1,9,-1,17,-1,25r74,0r-12,27r-59,0v3,22,19,52,50,50v28,-2,55,-19,71,-34r0,65"},"\u00a0":{"w":106},"\u2260":{"d":"205,-26r-103,0r-29,59r-49,-25r16,-34r-32,0r0,-56r60,0r16,-32r-76,0r0,-57r104,0r28,-58r50,25r-17,33r32,0r0,57r-60,0r-15,32r75,0r0,56"},"\u221e":{"d":"304,-99v0,45,-26,79,-73,79v-31,0,-53,-18,-71,-42v-18,24,-38,42,-69,42v-47,0,-75,-34,-75,-79v0,-45,27,-77,73,-77v34,0,52,19,71,45v18,-26,36,-45,71,-45v46,0,73,32,73,77xm256,-98v0,-16,-10,-29,-27,-29v-17,0,-32,16,-41,29v12,28,67,45,68,0xm131,-98v-11,-28,-65,-44,-67,0v0,16,9,28,26,28v18,0,31,-14,41,-28","w":320},"\u2264":{"d":"205,-46r-197,-59r0,-56r197,-54r0,58r-118,24r118,29r0,58xm205,19r-197,0r0,-56r197,0r0,56"},"\u2265":{"d":"205,-105r-197,59r0,-58r118,-29r-118,-24r0,-58r197,54r0,56xm205,19r-197,0r0,-56r197,0r0,56"},"\u2202":{"d":"197,-129v0,62,-17,134,-94,134v-51,0,-87,-33,-87,-85v0,-63,73,-107,125,-68v0,-27,-8,-69,-43,-69v-18,0,-31,9,-43,21r-30,-34v22,-20,42,-30,72,-30v76,0,100,66,100,131xm103,-36v33,0,39,-41,38,-70v-23,-27,-71,-13,-71,28v0,20,10,42,33,42"},"\u2211":{"d":"243,77r-232,0r0,-49r103,-133r-99,-129r0,-49r223,0r0,56r-148,0r90,122r-96,126r159,0r0,56","w":253},"\u220f":{"d":"256,77r-56,0r0,-304r-126,0r0,304r-57,0r0,-360r239,0r0,360","w":273},"\u03c0":{"d":"217,-8v-37,23,-85,9,-85,-42r0,-78r-51,0r0,128r-56,0r0,-128r-25,0r0,-51r217,0r0,51r-29,0r0,56v0,11,-2,28,14,28v5,0,10,-2,15,-4r0,40","w":226},"\u222b":{"d":"84,-164v-2,-49,6,-121,71,-119v22,0,51,11,51,37v0,15,-11,26,-26,26v-35,0,-18,-39,-32,-39v-7,0,-7,9,-7,14r3,182v0,55,7,140,-71,140v-21,0,-51,-10,-51,-36v0,-15,10,-27,25,-27v34,0,19,39,33,39v7,0,7,-10,7,-15v-4,-64,-1,-134,-3,-202","w":240},"\u03a9":{"d":"261,-150v0,39,-21,82,-62,91r0,7r62,0r0,52r-109,0r0,-80v66,-10,60,-127,-11,-127v-70,0,-82,117,-14,127r0,80r-109,0r0,-52r63,0r0,-7v-42,-11,-63,-49,-63,-90v0,-72,56,-111,123,-111v66,0,120,41,120,110","w":280},"\u221a":{"d":"222,-283r-81,360r-51,0r-50,-103r-21,10r-21,-44r71,-33r38,84r55,-274r60,0","w":219},"\u2248":{"d":"208,-181v-2,32,-18,78,-57,78v-33,0,-98,-49,-110,-2r-36,0v0,-32,20,-78,57,-78v28,0,64,21,91,21v12,0,18,-8,19,-19r36,0xm208,-91v-2,31,-17,78,-55,78v-30,0,-65,-22,-93,-22v-12,0,-18,8,-19,19r-36,0v0,-30,20,-77,55,-77v31,0,62,21,93,21v13,0,17,-8,19,-19r36,0"},"\u0394":{"d":"256,0r-252,0r90,-256r64,0xm175,-54r-48,-139r-45,139r93,0","w":259},"\u25ca":{"d":"202,-128r-70,141r-51,0r-70,-141r70,-141r51,0xm144,-128r-37,-83r-38,83r38,83"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1991, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Vectora is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Full name:
 * VectoraLTStd-Italic
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Vectora LT Std","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 6 3 5 3 9 2 4","ascent":"280","descent":"-80","x-height":"4","bbox":"-60 -333 374 90","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"27","stemv":"33","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100,"k":{"\u201c":27,"\u2018":13,"T":27,"V":33,"Y":54,"\u00dd":54,"\u0178":54,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"W":13}},"!":{"d":"32,-71r31,-185r36,0r-41,185r-26,0xm14,0r7,-37r35,0r-7,37r-35,0","w":113},"\"":{"d":"54,-195r0,-85r26,0r0,85r-26,0xm110,-195r0,-85r26,0r0,85r-26,0","w":159},"#":{"d":"118,-102r11,-52r-46,0r-10,52r45,0xm99,0r15,-78r-46,0r-15,78r-23,0r15,-78r-40,0r4,-24r40,0r10,-52r-40,0r5,-24r40,0r15,-78r24,0r-16,78r46,0r15,-78r24,0r-15,78r39,0r-4,24r-40,0r-10,52r39,0r-4,24r-39,0r-16,78r-23,0"},"$":{"d":"104,-113r-17,91v29,-3,51,-25,51,-50v0,-19,-11,-28,-34,-41xm98,-152r15,-83v-56,8,-59,66,-15,83xm-1,-50r32,-10v2,17,11,36,42,38r18,-98v-28,-12,-58,-32,-58,-66v0,-46,32,-73,85,-75r5,-23r14,0r-4,23v32,2,57,18,62,46r-32,10v-1,-13,-11,-27,-35,-30r-17,89v31,16,62,29,62,73v0,44,-39,77,-91,78r-4,22r-15,0r5,-23v-55,-4,-67,-41,-69,-54"},"%":{"d":"18,-175v0,-49,32,-87,73,-87v24,0,49,15,49,50v0,52,-34,88,-72,88v-28,0,-50,-18,-50,-51xm45,-172v0,15,7,27,24,27v33,0,45,-40,45,-67v0,-14,-6,-29,-25,-29v-32,0,-44,46,-44,69xm146,-46v0,-49,32,-87,73,-87v24,0,49,14,49,49v0,52,-34,88,-72,88v-28,0,-50,-17,-50,-50xm173,-44v0,15,7,27,24,27v33,0,45,-40,45,-67v0,-14,-6,-28,-25,-28v-32,0,-44,45,-44,68xm33,9r194,-275r26,0r-194,275r-26,0","w":286},"&":{"d":"178,0r-20,-26v-40,37,-154,57,-154,-35v0,-46,37,-67,68,-78v-41,-44,-26,-124,55,-123v35,0,62,22,62,53v1,43,-36,62,-73,78r48,64v19,-19,32,-45,35,-68r31,0v-4,23,-20,63,-49,90r34,45r-37,0xm101,-150v26,-12,58,-27,57,-57v0,-19,-16,-30,-34,-30v-39,-2,-54,51,-30,76xm143,-46r-54,-73v-24,11,-53,23,-52,57v2,57,79,46,106,16","w":246},"\u2019":{"d":"30,-195r38,-85r36,0r-47,85r-27,0","w":100,"k":{"\u2019":35,"r":6,"d":27,"\u0131":27,"s":6,"\u0161":6}},"(":{"d":"37,47v-15,-33,-31,-71,-31,-125v0,-87,51,-151,93,-195r18,17v-36,35,-81,89,-81,172v0,65,9,88,23,120","w":100},")":{"d":"57,-273v14,33,32,71,32,125v0,87,-51,151,-93,195r-18,-17v33,-37,81,-88,81,-172v0,-65,-9,-88,-23,-120","w":100},"*":{"d":"43,-197r12,-23r47,21r9,-57r27,0r-15,57r56,-21r3,25r-56,14r27,43r-23,15r-22,-46r-39,46r-19,-15r44,-44"},"+":{"d":"96,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0","w":216},",":{"d":"-12,48r38,-85r36,0r-48,85r-26,0","w":100,"k":{"\u201d":33,"\u2019":33," ":16}},"-":{"d":"9,-93r6,-27r87,0r-5,27r-88,0","w":120},".":{"d":"8,0r7,-37r36,0r-7,37r-36,0","w":100,"k":{"\u201d":33,"\u2019":33," ":16}},"\/":{"d":"-22,1r155,-267r23,9r-156,267","w":133},"0":{"d":"6,-81v0,-68,30,-181,117,-181v39,0,71,25,71,86v0,68,-30,180,-117,180v-39,0,-71,-24,-71,-85xm40,-79v0,35,9,58,40,58v56,0,81,-99,81,-157v0,-35,-10,-59,-41,-59v-56,0,-80,100,-80,158"},"1":{"d":"78,0r43,-220r-67,46r-14,-22r89,-60r30,0r-49,256r-32,0"},"2":{"d":"-10,0r5,-27r122,-105v27,-23,42,-41,42,-65v0,-29,-17,-40,-44,-40v-43,0,-50,35,-53,49r-32,-5v9,-41,38,-69,89,-69v42,0,72,26,72,59v0,33,-10,52,-48,85r-108,93r126,0r-6,25r-165,0"},"3":{"d":"-2,-60r32,-8v0,34,22,47,46,47v45,0,60,-37,60,-61v0,-46,-39,-39,-64,-38r5,-27v50,0,79,-17,79,-52v0,-17,-13,-38,-44,-38v-37,0,-48,27,-53,39r-29,-10v8,-17,25,-54,84,-54v93,0,105,106,13,127v28,6,42,25,42,52v0,37,-27,87,-93,87v-39,0,-73,-17,-78,-64"},"4":{"d":"95,0r10,-49r-109,0r7,-33r131,-174r42,0r-35,182r35,0r-5,25r-35,0r-9,49r-32,0xm109,-74r33,-154r-115,154r82,0"},"5":{"d":"194,-256r-6,25r-103,0r-16,73v46,-18,101,5,101,65v0,53,-35,97,-95,97v-57,0,-68,-45,-69,-62r29,-8v0,14,7,45,42,45v35,0,61,-32,61,-69v0,-60,-77,-56,-106,-30r29,-136r133,0"},"6":{"d":"172,-256r-100,108v52,-25,102,2,102,59v0,46,-35,93,-95,93v-89,0,-87,-100,-36,-158r89,-102r40,0xm101,-132v-44,0,-64,17,-64,65v0,25,15,46,43,46v69,0,82,-111,21,-111"},"7":{"d":"4,0r157,-228r-126,0r5,-28r164,0r-6,26r-155,230r-39,0"},"8":{"d":"189,-207v0,43,-36,61,-63,71v21,12,43,34,43,61v0,45,-35,79,-89,79v-53,0,-76,-28,-76,-60v1,-46,40,-66,73,-81v-23,-14,-40,-30,-40,-60v0,-36,35,-65,82,-65v42,0,70,22,70,55xm81,-21v65,0,72,-69,30,-92r-13,-9v-27,12,-60,28,-62,64v0,21,15,37,45,37xm68,-195v0,19,27,52,50,39v42,-11,59,-80,-1,-81v-29,0,-49,17,-49,42"},"9":{"d":"26,0r100,-110v-50,27,-102,-1,-102,-58v0,-46,35,-94,95,-94v88,0,87,100,36,159r-89,103r-40,0xm97,-125v45,0,64,-18,64,-66v0,-25,-15,-46,-43,-46v-69,0,-82,112,-21,112"},":":{"d":"45,-175r8,-38r35,0r-7,38r-36,0xm12,0r7,-37r35,0r-7,37r-35,0","w":100},";":{"d":"-12,48r38,-85r36,0r-48,85r-26,0xm45,-175r8,-38r35,0r-7,38r-36,0","w":100},"<":{"d":"17,-81r0,-21r182,-83r0,24r-153,70r153,70r0,24","w":216},"=":{"d":"17,-114r0,-24r182,0r0,24r-182,0xm17,-44r0,-24r182,0r0,24r-182,0","w":216},">":{"d":"17,3r0,-24r153,-70r-153,-70r0,-24r182,83r0,21","w":216},"?":{"d":"62,-72v-2,-42,28,-70,56,-89v33,-22,32,-78,-13,-76v-28,0,-42,24,-43,35r-31,-11v4,-6,19,-49,78,-49v70,0,83,80,35,114v-25,18,-53,32,-54,76r-28,0xm48,0r7,-37r35,0r-7,37r-35,0","w":186},"@":{"d":"95,-107v0,21,10,35,31,35v31,0,55,-46,55,-76v0,-21,-10,-33,-29,-33v-34,0,-57,43,-57,74xm192,-176r9,-23r22,0r-35,121v0,6,2,11,8,11v26,0,54,-45,54,-82v0,-56,-47,-91,-100,-91v-64,0,-112,51,-112,113v0,62,50,111,111,111v36,0,74,-15,92,-42r24,0v-23,40,-69,63,-116,63v-76,0,-135,-56,-135,-133v0,-75,60,-134,135,-134v68,0,125,46,125,111v0,62,-51,103,-83,103v-17,1,-24,-10,-28,-23v-23,41,-95,21,-95,-33v0,-49,34,-101,84,-101v18,0,32,9,40,29","w":288},"A":{"d":"-19,0r149,-256r42,0r47,256r-33,0r-12,-68r-119,0r-38,68r-36,0xm169,-95v-10,-43,-12,-93,-25,-132r-73,132r98,0","w":240,"k":{"y":6,"\u00fd":6,"\u00ff":6,"C":6,"\u00c7":6,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"Q":6,"T":6,"U":6,"\u00da":6,"\u00db":6,"\u00dc":6,"\u00d9":6,"v":6,"V":6,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":13,"\u2019":13}},"B":{"d":"2,0r49,-256r84,0v98,-6,84,114,15,121r0,3v12,1,41,15,41,52v0,41,-30,80,-93,80r-96,0xm63,-146v54,3,110,-1,110,-49v0,-39,-52,-36,-93,-35xm40,-27r56,0v70,4,94,-94,9,-92r-47,0","w":219,"k":{"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"C":{"d":"177,-72r32,8v-9,27,-35,69,-102,69v-63,0,-95,-40,-95,-96v0,-73,43,-171,135,-171v67,0,83,46,84,65r-33,8v0,-11,-12,-46,-52,-46v-68,0,-99,84,-99,138v0,52,20,76,60,76v40,0,61,-26,70,-51","w":233,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"D":{"d":"1,0r49,-256r72,0v80,0,106,49,106,103v0,68,-46,153,-143,153r-84,0xm39,-27r41,0v88,0,113,-79,113,-129v0,-60,-46,-82,-115,-74","w":240,"k":{"V":6,"Y":27,"\u00dd":27,"\u0178":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":13,".":13}},"E":{"d":"1,0r49,-256r156,0r-6,26r-122,0r-16,84r116,0r-6,26r-115,0r-17,93r124,0r-5,27r-158,0"},"F":{"d":"1,0r49,-256r153,0r-5,26r-120,0r-17,88r114,0r-5,27r-114,0r-22,115r-33,0","w":193,"k":{"\u00eb":4,"\u00e3":16,"\u00e0":16,"\u00e4":16,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":46,".":46,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e5":16,"e":4,"\u00e9":4,"\u00ea":4,"\u00e8":4,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6}},"G":{"d":"132,-136r85,0r-23,118v-18,8,-41,23,-87,23v-63,0,-95,-40,-95,-96v0,-73,43,-171,135,-171v67,0,83,46,84,63r-33,8v0,-9,-12,-44,-52,-44v-68,0,-99,84,-99,138v0,49,18,77,64,77v24,0,43,-7,53,-13r15,-77r-52,0","w":240},"H":{"d":"157,0r23,-122r-122,0r-24,122r-33,0r49,-256r34,0r-21,106r122,0r21,-106r33,0r-49,256r-33,0","w":240},"I":{"d":"2,0r49,-256r34,0r-50,256r-33,0","w":86},"J":{"d":"-23,-9r19,-26v22,23,52,6,60,-37r35,-184r34,0r-37,189v-5,63,-64,91,-111,58","w":126,"k":{",":9,".":9}},"K":{"d":"2,0r49,-256r34,0r-21,111r124,-111r45,0r-139,122r94,134r-41,0r-88,-125r-24,125r-33,0","w":213,"k":{"y":11,"\u00fd":11,"\u00ff":11,"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"e":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6}},"L":{"d":"2,0r49,-256r34,0r-44,228r109,0r-5,28r-143,0","w":173,"k":{"y":33,"\u00fd":33,"\u00ff":33,"T":27,"V":27,"Y":54,"\u00dd":54,"\u0178":54,"\u201d":54,"\u2019":54,"W":16}},"M":{"d":"118,0r-37,-228v-8,1,-5,18,-8,33r-38,195r-33,0r49,-256r56,0r32,212r2,0v32,-74,79,-141,116,-212r54,0r-49,256r-33,0r45,-228r-3,0r-127,228r-26,0","w":313},"N":{"d":"3,0r50,-256r42,0r70,187v5,11,6,26,11,34v10,-77,28,-147,41,-221r33,0r-49,256r-44,0r-70,-186v-7,-13,-5,-29,-12,-35v-7,78,-27,147,-39,221r-33,0","w":253,"k":{"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"O":{"d":"12,-91v0,-73,43,-171,135,-171v63,0,94,41,94,97v0,73,-41,170,-134,170v-63,0,-95,-40,-95,-96xm47,-97v0,54,20,77,60,77v69,0,100,-84,100,-138v0,-53,-20,-77,-60,-77v-69,0,-100,84,-100,138","w":253,"k":{"T":6,"V":6,"Y":33,"\u00dd":33,"\u0178":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":16,".":16,"X":11}},"P":{"d":"2,0r49,-256v74,-1,159,-8,159,65v0,46,-29,87,-95,87r-60,0r-20,104r-33,0xm80,-230r-20,99v60,4,117,-2,117,-58v0,-43,-51,-43,-97,-41","w":213,"k":{"\u00e4":6,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,",":63,".":63,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"Q":{"d":"149,63r-68,-60v-25,-5,-69,-25,-69,-94v0,-73,43,-171,135,-171v63,0,94,41,94,97v0,83,-47,159,-116,169r47,36xm47,-97v0,54,20,77,60,77v69,0,100,-84,100,-138v0,-53,-20,-77,-60,-77v-69,0,-100,84,-100,138","w":253,"k":{",":13,".":13}},"R":{"d":"144,0r-35,-115r-52,0r-23,115r-33,0r49,-256v70,-1,155,-9,155,60v0,46,-30,72,-64,76r40,120r-37,0xm62,-142r48,0v46,0,62,-24,62,-50v1,-46,-50,-38,-94,-38","w":213,"k":{"V":4,"Y":16,"\u00dd":16,"\u0178":16}},"S":{"d":"-5,-50r32,-10v2,18,12,39,48,39v33,0,59,-24,59,-51v-1,-52,-104,-48,-104,-114v0,-48,34,-76,91,-76v36,0,64,17,70,47r-32,10v-1,-15,-13,-30,-43,-30v-64,0,-67,62,-21,83v34,16,74,29,74,79v0,45,-40,78,-94,78v-65,0,-78,-42,-80,-55","k":{",":6,".":6}},"T":{"d":"14,-228r5,-28r182,0r-6,28r-74,0r-44,228r-33,0r44,-228r-74,0","w":186,"k":{"\u00fc":33,"\u00f2":36,"\u00f6":36,"\u00ec":27,"\u00ee":27,"\u00ed":27,"\u00e8":33,"\u00eb":33,"\u00ea":33,"\u00e3":33,"\u00e5":33,"\u00e0":33,"\u00e4":33,"\u00e2":33,"y":46,"\u00fd":46,"\u00ff":46,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"h":9,",":33,".":33,"w":40,"a":33,"\u00e6":33,"\u00e1":33,"e":33,"\u00e9":33,"i":27,"\u00ef":27,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f4":36,"\u00f5":36,"u":33,"\u00fa":33,"\u00fb":33,"\u00f9":33,"-":46,"r":9,":":27,";":27}},"U":{"d":"84,-256r-34,189v0,29,21,46,51,46v40,0,64,-27,73,-73r31,-162r33,0r-32,167v-14,71,-57,94,-112,94v-133,0,-52,-169,-43,-261r33,0","w":240,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"V":{"d":"59,0r-35,-256r34,0r27,225r119,-225r36,0r-138,256r-43,0","w":219,"k":{"\u00f6":4,"\u00f4":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e3":16,"\u00e5":16,"\u00e0":16,"\u00e4":16,"\u00e2":16,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":27,".":27,"a":16,"\u00e6":16,"\u00e1":16,"e":4,"\u00e9":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"-":27,":":16,";":16}},"W":{"d":"183,0r-8,-224r-2,0v-27,79,-63,149,-94,224r-42,0r-13,-256r33,0r7,225r95,-225r44,0r8,186v2,12,-5,31,1,39v24,-83,64,-149,94,-225r33,0r-114,256r-42,0","w":320,"k":{"\u00fc":4,"\u00f6":4,"\u00ea":4,"\u00e4":6,"y":6,"\u00fd":6,"\u00ff":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":4,"\u00e9":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00f9":4,"-":13,":":9,";":9}},"X":{"d":"157,0r-47,-112v-25,38,-60,76,-88,112r-40,0r111,-133r-54,-123r37,0v15,33,25,73,43,103v22,-34,55,-70,80,-103r40,0r-104,124r60,132r-38,0","w":226},"Y":{"d":"73,0r20,-105r-61,-151r37,0v17,40,27,87,47,124v25,-45,61,-83,91,-124r40,0r-121,151r-20,105r-33,0","w":219,"k":{"\u00fc":13,"\u00f6":18,"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":33,".":33,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":16,"\u00e9":16,"\u00ea":16,"\u00eb":16,"\u00e8":16,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f2":18,"\u00f5":18,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,"-":33,":":20,";":20,"S":6,"\u0160":6}},"Z":{"d":"-17,0r5,-30r168,-200r-124,0r5,-26r164,0r-6,31r-169,198r133,0r-6,27r-170,0","w":186},"[":{"d":"-12,47r61,-320r62,0r-4,20r-34,0r-52,280r33,0r-4,20r-62,0","w":100},"\\":{"d":"85,10r-61,-271r23,-5r61,270","w":133},"]":{"d":"-15,47r4,-20r33,0r53,-280r-33,0r4,-20r61,0r-61,320r-61,0","w":100},"^":{"d":"176,-93r-68,-134r-68,134r-24,0r82,-163r20,0r82,163r-24,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"34,-195r47,-85r27,0r-38,85r-36,0","w":100,"k":{"\u2018":35,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"a":{"d":"116,0v1,-10,6,-24,5,-33v-9,9,-37,37,-73,37v-32,0,-49,-24,-49,-51v0,-41,28,-78,90,-81r51,-2v8,-30,6,-63,-31,-63v-34,0,-46,25,-53,39r-27,-10v10,-21,31,-53,83,-53v45,0,70,35,60,88r-24,129r-32,0xm127,-58r10,-48v-52,1,-105,3,-105,55v0,55,76,18,95,-7","w":193},"b":{"d":"3,0r54,-280r31,0r-17,94v37,-49,121,-42,121,44v0,67,-32,146,-98,146v-27,0,-40,-12,-54,-33r-5,29r-32,0xm65,-158r-20,105v10,16,19,31,44,31v51,0,70,-76,70,-118v0,-28,-10,-50,-38,-50v-28,0,-48,22,-56,32","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4}},"c":{"d":"177,-161r-28,8v-2,-17,-10,-39,-36,-39v-49,0,-74,67,-74,115v0,32,10,56,41,56v31,0,45,-27,51,-39r28,10v-13,26,-36,54,-79,54v-48,0,-74,-34,-74,-80v0,-64,37,-141,109,-141v46,0,58,34,62,56","w":186,"k":{"y":11,"\u00fd":11,"\u00ff":11,"h":6,"k":6,"l":4,"\u0142":4}},"d":{"d":"124,0v1,-9,6,-21,5,-28v-13,15,-35,32,-63,32v-39,0,-60,-29,-60,-75v-1,-75,37,-146,95,-146v28,0,44,13,58,32r19,-95r32,0r-54,280r-32,0xm135,-55r20,-105v-10,-17,-23,-30,-48,-30v-45,0,-68,64,-68,117v0,31,11,51,38,51v28,0,46,-19,58,-33","w":206},"e":{"d":"139,-58r25,10v-6,13,-30,52,-84,52v-48,0,-74,-34,-74,-80v0,-64,36,-141,109,-141v66,0,80,64,64,119r-139,0v-10,39,5,79,42,79v27,0,47,-17,57,-39xm44,-122r107,0v8,-37,-7,-71,-40,-71v-40,0,-58,38,-67,71","k":{"y":6,"\u00fd":6,"\u00ff":6,"v":6,"w":6,"x":4}},"f":{"d":"13,0r33,-171r-32,0r5,-25r31,0v11,-43,17,-88,73,-88v11,0,21,1,29,4r-6,26v-40,-19,-62,18,-64,58r43,0r-6,25r-42,0r-32,171r-32,0","w":113,"k":{",":9,".":9}},"g":{"d":"18,-140v0,-46,59,-92,121,-73r69,0r-6,23v-15,1,-35,-2,-43,-2v44,44,-15,131,-94,108v-19,11,-15,28,13,35v34,8,79,17,79,55v0,35,-35,67,-102,67v-115,0,-88,-84,-23,-109v-23,-14,-4,-46,16,-53v-22,-13,-30,-30,-30,-51xm102,-193v-58,-8,-79,88,-14,88v56,8,86,-88,14,-88xm50,-28v-18,9,-42,22,-42,46v0,22,22,31,51,31v68,0,95,-51,36,-65","w":193},"h":{"d":"125,0r31,-166v-12,-51,-81,-2,-95,16r-29,150r-32,0r54,-280r32,0r-18,101v17,-17,46,-38,75,-38v34,0,49,33,42,71r-28,146r-32,0","w":206,"k":{"y":6,"\u00fd":6,"\u00ff":6}},"i":{"d":"3,0r41,-213r32,0r-41,213r-32,0xm48,-249r6,-31r36,0r-6,31r-36,0","w":86},"j":{"d":"44,-213r32,0r-41,213v-13,67,-33,79,-84,70r7,-28v28,8,38,0,45,-42xm48,-249r6,-31r36,0r-6,31r-36,0","w":86},"k":{"d":"124,0r-68,-111r-21,111r-32,0r54,-280r31,0r-30,161r98,-94r43,0r-109,100r73,113r-39,0","w":186,"k":{"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"l":{"d":"3,0r54,-280r31,0r-53,280r-32,0","w":86},"m":{"d":"0,0r41,-213r32,0r-6,34v17,-15,40,-38,69,-38v23,0,45,13,46,37v16,-14,44,-37,73,-37v34,0,49,34,42,71r-28,146r-32,0r27,-136v5,-25,8,-54,-23,-53v-24,0,-45,19,-60,31r-31,158r-31,0r30,-166v-10,-50,-72,-4,-88,16r-29,150r-32,0","w":320},"n":{"d":"125,0r31,-166v-12,-51,-81,-2,-95,16r-29,150r-32,0r41,-213r32,0r-6,34v17,-17,47,-38,76,-38v34,0,49,33,42,71r-28,146r-32,0","w":206},"o":{"d":"6,-76v0,-64,37,-141,109,-141v51,0,77,32,77,81v0,65,-40,140,-112,140v-48,0,-74,-34,-74,-80xm39,-77v0,32,13,56,42,56v53,0,78,-69,78,-119v0,-31,-13,-52,-46,-52v-49,0,-74,67,-74,115","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4,"v":4,",":9,".":9,"x":4}},"p":{"d":"-10,68r54,-281r31,0v-1,8,-6,20,-4,27v37,-49,121,-42,121,44v0,67,-32,146,-98,146v-27,0,-40,-12,-54,-33r-18,97r-32,0xm65,-158r-20,105v10,16,19,31,44,31v51,0,70,-76,70,-118v0,-28,-10,-50,-38,-50v-28,0,-48,22,-56,32","w":206,"k":{"y":6,"\u00fd":6,"\u00ff":6,",":9,".":9}},"q":{"d":"111,68r18,-96v-13,15,-35,32,-63,32v-39,0,-60,-29,-60,-75v-1,-75,37,-146,95,-146v28,0,44,13,58,32r6,-28r32,0r-54,281r-32,0xm135,-55r20,-105v-10,-17,-23,-30,-48,-30v-45,0,-68,64,-68,117v0,31,11,51,38,51v28,0,46,-19,58,-33","w":206},"r":{"d":"3,0r41,-213r32,0r-7,37v20,-20,47,-40,79,-40r-7,34v-35,-6,-57,15,-78,36r-28,146r-32,0","w":133,"k":{",":33,".":33,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"c":4,"\u00e7":4,"q":4,"-":27}},"s":{"d":"-6,-49r29,-10v0,14,12,40,43,40v32,0,50,-17,50,-41v0,-30,-41,-34,-63,-45v-64,-33,-28,-113,45,-112v49,0,62,32,65,47r-29,9v0,-11,-9,-32,-39,-32v-44,0,-63,52,-16,67v30,10,69,24,69,59v0,36,-26,71,-84,71v-57,0,-66,-35,-70,-53","w":173},"t":{"d":"18,-196r32,0r10,-52r34,-14r-13,66r51,0r-6,25r-50,0r-24,132v0,21,35,17,49,9r-6,27v-33,11,-80,4,-75,-32v5,-43,18,-93,25,-136r-33,0","w":126},"u":{"d":"198,-213r-41,213r-32,0v1,-11,7,-24,6,-34v-17,17,-46,38,-75,38v-33,0,-50,-32,-43,-71r28,-146r32,0r-30,166v11,51,81,2,95,-15r28,-151r32,0","w":206},"v":{"d":"46,0r-29,-213r33,0r20,182v10,-2,10,-17,17,-31r74,-151r35,0r-111,213r-39,0","w":180,"k":{",":13,".":13}},"w":{"d":"165,0r-9,-177v-9,2,-8,15,-14,28r-66,149r-40,0r-19,-213r33,0r11,182v8,-5,8,-23,15,-32r67,-150r39,0r8,182r3,0r79,-182r33,0r-98,213r-42,0","w":293,"k":{",":9,".":9}},"x":{"d":"122,0r-35,-91r-71,91r-39,0r95,-114r-43,-99r35,0r32,81v19,-29,42,-54,63,-81r37,0r-85,102r47,111r-36,0","w":186},"y":{"d":"51,-3r-36,-210r33,0r24,178r2,0v24,-63,60,-119,89,-178r35,0r-134,245v-22,36,-43,48,-80,37r6,-27v30,18,49,-21,61,-45","w":180,"k":{",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"z":{"d":"27,-24r118,0r-5,24r-157,0r5,-24r147,-165r-112,0r5,-24r150,0r-5,26","w":173},"{":{"d":"3,-103r4,-20v70,-11,3,-172,116,-150r-4,20v-21,-1,-33,1,-36,21r-14,73v-6,31,-28,44,-37,46v35,16,8,90,5,129v-1,13,16,11,29,11r-4,20v-29,1,-57,-1,-53,-30r14,-99v0,-10,-7,-21,-20,-21","w":100},"|":{"d":"28,90r0,-360r24,0r0,360r-24,0","w":79},"}":{"d":"91,-123r-4,20v-70,10,-3,171,-115,150r3,-20v53,8,41,-59,51,-94v9,-30,27,-44,36,-46v-35,-17,-7,-89,-5,-129v1,-13,-15,-11,-28,-11r3,-20v41,-6,60,11,51,53v-6,25,-11,48,-12,76v0,10,7,21,20,21","w":100},"~":{"d":"70,-115v21,-1,59,23,77,24v14,0,23,-12,31,-25r13,17v-11,15,-21,32,-45,32v-38,0,-88,-49,-108,0r-13,-16v8,-15,21,-32,45,-32","w":216},"\u00a1":{"d":"72,-141r-30,185r-36,0r41,-185r25,0xm91,-213r-7,38r-35,0r7,-38r35,0","w":113},"\u00a2":{"d":"56,-39r78,-151v-68,-13,-99,89,-78,151xm26,19r16,-31v-65,-65,-5,-228,105,-202r12,-24r14,4r-14,26v19,12,26,32,29,47r-30,8v-1,-10,-4,-22,-12,-30r-80,155v30,22,73,-14,75,-32r27,10v-12,36,-66,70,-114,46r-14,27"},"\u00a3":{"d":"-4,0r4,-25r29,0r18,-95r-27,0r5,-24r26,0v10,-60,24,-118,94,-118v48,0,56,31,59,43r-30,9v-3,-11,-7,-27,-33,-27v-59,0,-43,52,-58,93r59,0r-4,24r-59,0r-18,95r98,0r-4,25r-159,0"},"\u2044":{"d":"-60,9r156,-275r24,0r-156,275r-24,0","w":60},"\u00a5":{"d":"58,0r11,-55r-55,0r3,-18r55,0r6,-32r-54,0r3,-18r45,0r-47,-133r33,0r41,124v24,-45,57,-83,85,-124r36,0r-99,133r48,0r-4,18r-57,0r-6,32r57,0r-4,18r-57,0r-11,55r-29,0"},"\u0192":{"d":"-8,40r13,-21v22,12,41,1,48,-30r28,-120r-39,0r5,-22r38,0v13,-46,18,-109,73,-109v16,0,28,4,35,10r-15,22v-21,-13,-41,-8,-49,27r-12,50r39,0r-5,22r-39,0r-29,121v-5,43,-50,75,-91,50"},"\u00a7":{"d":"-3,-4r26,-11v3,13,10,38,43,38v31,0,50,-16,50,-37v-2,-44,-93,-39,-93,-90v0,-32,27,-50,49,-55v-52,-26,-21,-103,47,-103v45,0,61,28,64,43r-26,12v-4,-13,-13,-31,-41,-31v-44,0,-55,48,-18,64v26,11,68,34,68,64v0,28,-25,46,-46,52v51,27,15,105,-54,105v-46,0,-64,-26,-69,-51xm51,-111v1,26,36,31,54,43v33,-9,46,-49,13,-64v-14,-5,-26,-22,-41,-11v-17,6,-26,19,-26,32"},"\u00a4":{"d":"10,-54r20,-21v-25,-29,-26,-79,0,-108r-20,-20r16,-16r20,20v29,-26,80,-25,108,0r20,-20r16,16r-19,20v25,29,24,80,0,109r19,20r-15,15r-19,-20v-30,27,-80,27,-111,0r-20,20xm35,-129v0,37,29,67,65,67v37,0,66,-30,66,-67v0,-37,-29,-66,-66,-66v-36,0,-65,29,-65,66"},"'":{"d":"49,-195r0,-85r26,0r0,85r-26,0","w":100},"\u201c":{"d":"99,-195r48,-85r27,0r-39,85r-36,0xm35,-195r47,-85r27,0r-38,85r-36,0","w":159,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00ab":{"d":"9,-111r67,-74r18,15r-53,63r29,71r-22,10xm81,-111r67,-74r18,15r-54,63r29,71r-21,10","w":173},"\u2039":{"d":"7,-111r67,-74r18,15r-53,63r29,71r-22,10","w":100},"\u203a":{"d":"81,-100r-67,74r-18,-15r54,-63r-29,-71r21,-10","w":100},"\u2013":{"d":"-6,-95r4,-23r180,0r-4,23r-180,0","w":180},"\u2020":{"d":"50,45r39,-202r-70,0r5,-26r70,0r15,-73r31,0r-14,73r71,0r-6,26r-70,0r-39,202r-32,0"},"\u2021":{"d":"-3,-23r5,-27r67,0r22,-111r-67,0r5,-27r67,0r13,-68r32,0r-13,68r67,0r-5,27r-68,0r-21,111r67,0r-5,27r-67,0r-14,68r-31,0r13,-68r-67,0"},"\u00b7":{"d":"28,-114v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-9,-22,-21","w":100},"\u00b6":{"d":"59,45r34,-165v-39,0,-63,-23,-63,-54v2,-87,94,-86,183,-82r-62,301r-24,0r58,-280r-45,0r-58,280r-23,0","w":216},"\u2022":{"d":"26,-128v0,-35,29,-64,64,-64v35,0,64,29,64,64v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":180},"\u201a":{"d":"-18,48r38,-85r36,0r-47,85r-27,0","w":100},"\u201e":{"d":"-20,48r38,-85r36,0r-48,85r-26,0xm45,48r38,-85r36,0r-48,85r-26,0","w":159},"\u201d":{"d":"33,-195r38,-85r36,0r-47,85r-27,0xm98,-195r38,-85r36,0r-47,85r-27,0","w":159,"k":{" ":27}},"\u00bb":{"d":"151,-100r-67,74r-18,-15r54,-63r-30,-71r22,-10xm79,-100r-67,74r-18,-15r54,-63r-29,-71r21,-10","w":173},"\u2026":{"d":"18,0r7,-37r35,0r-7,37r-35,0xm138,0r7,-37r35,0r-7,37r-35,0xm257,0r8,-37r35,0r-7,37r-36,0","w":360},"\u2030":{"d":"178,-15v34,0,41,-43,41,-68v0,-18,-8,-29,-24,-29v-32,0,-41,44,-41,68v0,15,8,29,24,29xm175,4v-15,0,-46,-5,-46,-51v0,-36,20,-84,69,-84v15,0,46,5,46,51v0,36,-20,84,-69,84xm305,4v-15,0,-46,-5,-46,-51v0,-36,20,-84,69,-84v15,0,46,5,46,51v0,36,-20,84,-69,84xm308,-15v34,0,41,-43,41,-68v0,-18,-8,-29,-24,-29v-32,0,-41,44,-41,68v0,15,8,29,24,29xm60,-126v-15,0,-46,-5,-46,-51v0,-36,21,-85,70,-85v15,0,46,6,46,52v0,36,-21,84,-70,84xm63,-145v34,0,42,-43,42,-68v0,-18,-8,-29,-24,-29v-32,0,-41,43,-41,67v0,15,7,30,23,30xm19,9r194,-275r25,0r-193,275r-26,0","w":386},"\u00bf":{"d":"110,-141v0,41,-28,71,-57,90v-33,21,-31,75,14,75v28,0,42,-23,43,-34r30,10v-4,6,-19,49,-78,49v-69,0,-82,-79,-34,-113v26,-18,52,-34,54,-77r28,0xm124,-213r-7,38r-35,0r7,-38r35,0","w":186},"`":{"d":"29,-289r37,0r32,51r-25,0","w":86},"\u00b4":{"d":"39,-238r41,-51r41,0r-57,51r-25,0","w":86},"\u02c6":{"d":"9,-238r49,-51r31,0r31,51r-27,0r-21,-35r-35,35r-28,0","w":86},"\u02dc":{"d":"90,-241v-21,-1,-57,-36,-66,-1r-18,0v1,-10,10,-39,38,-39v21,0,59,38,65,1r18,0v-2,13,-12,39,-37,39","w":86},"\u00af":{"d":"17,-254r4,-19r100,0r-4,19r-100,0","w":86},"\u02d8":{"d":"14,-288r16,0v0,18,12,31,34,31v31,0,39,-23,42,-31r17,0v-6,28,-28,49,-60,49v-31,0,-49,-17,-49,-49","w":86},"\u02d9":{"d":"52,-249r7,-32r34,0r-6,32r-35,0","w":86},"\u00a8":{"d":"20,-249r6,-32r35,0r-7,32r-34,0xm85,-249r6,-32r35,0r-7,32r-34,0","w":86},"\u02da":{"d":"35,-264v0,-19,16,-34,35,-34v19,0,35,15,35,34v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35xm50,-264v0,11,9,20,20,20v11,0,19,-9,19,-20v0,-11,-8,-19,-19,-19v-11,0,-20,8,-20,19","w":86},"\u00b8":{"d":"-10,30v14,-10,16,-32,43,-30v-5,7,-17,15,-19,22v17,-3,34,-1,36,21v3,31,-55,44,-81,25r8,-12v11,7,53,8,50,-11v1,-14,-21,-14,-31,-8","w":86},"\u02dd":{"d":"3,-238r41,-51r41,0r-57,51r-25,0xm68,-238r41,-51r40,0r-56,51r-25,0","w":86},"\u02db":{"d":"31,4v9,-7,17,-15,36,-12v-21,15,-43,31,-43,46v0,22,27,20,43,9r-3,17v-19,13,-67,12,-67,-15v0,-20,20,-35,34,-45","w":86},"\u02c7":{"d":"45,-238r-30,-51r26,0r22,34r35,-34r28,0r-49,51r-32,0","w":86},"\u2014":{"d":"-6,-95r4,-23r360,0r-4,23r-360,0","w":360},"\u00c6":{"d":"146,0r13,-71r-93,0r-55,71r-39,0r200,-256r153,0r-5,26r-98,0r-16,84r92,0r-5,26r-92,0r-18,93r102,0r-5,27r-134,0xm165,-98r25,-133v-12,5,-17,20,-27,33r-78,100r80,0","w":320},"\u00aa":{"d":"89,-131r4,-20v-6,6,-24,22,-48,22v-21,0,-32,-14,-32,-34v0,-32,46,-50,92,-47v6,-18,4,-38,-20,-37v-22,0,-31,14,-35,23r-18,-6v7,-13,20,-32,55,-32v30,-1,47,20,40,54r-16,77r-22,0xm96,-166r7,-28v-30,1,-70,0,-69,28v3,36,48,17,62,0","w":125},"\u0141":{"d":"2,0r19,-98r-28,16r5,-25r28,-16r25,-133r34,0r-22,111r83,-48r-5,25r-83,48r-17,92r109,0r-5,28r-143,0","w":173,"k":{"y":33,"\u00fd":33,"\u00ff":33,"T":27,"V":27,"Y":54,"\u00dd":54,"\u0178":54,"\u201d":54,"\u2019":54,"W":16}},"\u00d8":{"d":"50,-66r149,-138v-9,-21,-26,-31,-52,-31v-78,0,-109,98,-97,169xm204,-188r-149,138v9,21,27,30,52,30v78,0,109,-97,97,-168xm-9,-11r32,-30v-34,-91,17,-221,124,-221v36,0,61,13,76,35r29,-27r11,11r-32,30v32,91,-17,218,-124,218v-35,0,-61,-11,-76,-32r-29,27","w":253,"k":{"T":6,"V":6,"Y":33,"\u00dd":33,"\u0178":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":16,".":16,"X":11}},"\u0152":{"d":"176,-27r102,0r-5,27r-172,2v-51,0,-89,-33,-89,-103v0,-62,50,-157,164,-156r143,1r-6,26r-98,0r-16,84r92,0r-5,26r-92,0xm143,-30r38,-199v-85,-23,-134,58,-134,130v0,55,41,84,96,69","w":313,"k":{"T":6,"V":6,"Y":33,"\u00dd":33,"\u0178":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":16,".":16,"X":11}},"\u00ba":{"d":"64,-129v-32,0,-50,-20,-50,-48v0,-38,25,-85,74,-85v33,0,50,19,50,49v0,40,-26,84,-74,84xm64,-145v36,0,50,-42,50,-71v0,-18,-8,-29,-29,-29v-31,0,-47,40,-47,68v0,19,7,32,26,32","w":129},"\u00e6":{"d":"261,-58r25,10v-6,13,-30,52,-84,52v-42,0,-60,-26,-64,-43v-15,18,-46,43,-82,43v-37,0,-55,-24,-55,-51v0,-41,28,-78,90,-81r52,-2v8,-30,6,-63,-31,-63v-34,0,-46,25,-53,39r-27,-10v10,-21,30,-53,82,-53v34,0,52,18,58,37v10,-17,33,-37,65,-37v65,0,80,60,64,112r-131,0v-9,44,1,86,41,86v19,0,40,-17,50,-39xm173,-129r100,0v7,-32,-4,-66,-36,-64v-44,2,-55,38,-64,64xm130,-58r10,-48v-52,1,-105,3,-105,55v0,55,76,18,95,-7","w":320},"\u0131":{"d":"3,0r41,-213r32,0r-41,213r-32,0","w":86},"\u0142":{"d":"3,0r21,-110r-29,18r5,-22r28,-18r29,-148r31,0r-24,125r34,-21r-5,22r-33,21r-25,133r-32,0","w":86},"\u00f8":{"d":"40,-60r115,-106v-6,-16,-19,-26,-42,-26v-54,0,-79,75,-73,132xm158,-153r-114,106v6,16,18,26,37,26v56,-2,82,-75,77,-132xm-14,-10r28,-26v-26,-77,18,-179,101,-181v30,0,51,11,63,30r28,-26r8,9r-30,28v27,78,-21,178,-104,180v-27,0,-48,-11,-60,-29r-26,24","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4,"v":4,",":9,".":9,"x":4}},"\u0153":{"d":"10,-76v0,-64,37,-141,109,-141v32,0,59,13,67,42v10,-19,39,-42,78,-42v66,0,80,66,63,119r-138,0v-10,38,4,79,41,79v27,0,47,-17,57,-39r25,10v-6,13,-29,52,-83,52v-35,0,-59,-17,-68,-45v-14,27,-44,45,-77,45v-48,0,-74,-34,-74,-80xm193,-122r107,0v8,-37,-7,-73,-40,-71v-44,3,-60,41,-67,71xm43,-77v0,32,13,56,41,56v55,0,78,-69,78,-119v0,-31,-13,-52,-45,-52v-49,0,-74,67,-74,115","w":346,"k":{"y":4,"\u00fd":4,"\u00ff":4,"v":4,",":9,".":9,"x":4}},"\u00df":{"d":"97,-163v42,5,66,-26,66,-60v0,-22,-13,-36,-35,-36v-32,0,-49,24,-54,52r-39,207r-32,0r39,-203v8,-41,27,-81,87,-81v44,0,66,26,66,59v0,44,-33,63,-58,73v23,3,47,21,47,57v0,58,-62,118,-126,90r13,-25v41,24,81,-22,81,-66v0,-34,-25,-44,-61,-42","w":206},"\u00b9":{"d":"51,-105r27,-129r-43,27r-9,-15r58,-37r23,0r-32,154r-24,0","w":129},"\u00ac":{"d":"175,-39r0,-75r-158,0r0,-24r182,0r0,99r-24,0","w":216},"\u00b5":{"d":"198,-213r-41,213r-32,0v1,-11,7,-24,6,-34v-22,21,-69,57,-97,25r-15,77r-32,0r54,-281r32,0r-30,166v11,51,81,2,95,-15r28,-151r32,0","w":206},"\u2122":{"d":"69,-109r0,-129r-46,0r0,-19r117,0r0,19r-47,0r0,129r-24,0xm309,-109r0,-124r-49,124r-16,0r-50,-124r0,124r-23,0r0,-148r37,0r44,113r44,-113r37,0r0,148r-24,0","w":360},"\u00d0":{"d":"1,0r25,-127r-26,0r4,-20r26,0r20,-109r72,0v80,0,106,49,106,103v0,68,-46,153,-143,153r-84,0xm58,-127r-19,100r41,0v88,0,113,-79,113,-129v0,-60,-46,-82,-115,-74r-15,83r71,0r-4,20r-72,0","w":240,"k":{"V":6,"Y":27,"\u00dd":27,"\u0178":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":13,".":13}},"\u00bd":{"d":"39,9r156,-275r24,0r-156,275r-24,0xm40,-105r27,-129r-43,27r-9,-15r58,-37r23,0r-32,154r-24,0xm157,0r4,-17r77,-63v15,-13,27,-24,27,-38v0,-14,-11,-21,-27,-21v-26,0,-30,18,-33,26r-22,-3v6,-25,22,-41,58,-41v65,2,55,57,15,88r-66,51r78,0r-3,18r-108,0","w":300},"\u00b1":{"d":"96,-37r0,-61r-79,0r0,-23r79,0r0,-61r24,0r0,61r79,0r0,23r-79,0r0,61r-24,0xm17,0r0,-24r182,0r0,24r-182,0","w":216},"\u00de":{"d":"2,0r49,-256r34,0r-8,40v65,-4,124,5,124,65v0,46,-29,87,-95,87r-58,0r-13,64r-33,0xm53,-91r55,0v41,0,60,-24,60,-58v0,-43,-51,-41,-96,-40","w":213},"\u00bc":{"d":"226,0r6,-28r-72,0r4,-21r86,-105r32,0r-24,108r22,0r-3,18r-21,0r-7,28r-23,0xm235,-46r21,-88r-72,88r51,0xm50,9r156,-275r23,0r-156,275r-23,0xm40,-105r27,-129r-43,27r-9,-15r58,-37r23,0r-32,154r-24,0","w":300},"\u00f7":{"d":"17,-79r0,-24r182,0r0,24r-182,0xm86,-165v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm86,-18v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":216},"\u00a6":{"d":"28,63r0,-126r24,0r0,126r-24,0xm28,-117r0,-126r24,0r0,126r-24,0","w":79},"\u00b0":{"d":"31,-207v0,-30,25,-55,55,-55v30,0,55,25,55,55v0,30,-25,55,-55,55v-30,0,-55,-25,-55,-55xm50,-207v0,20,16,36,36,36v20,0,36,-16,36,-36v0,-20,-16,-35,-36,-35v-20,0,-36,15,-36,35","w":144},"\u00fe":{"d":"-10,68r67,-348r31,0r-17,94v37,-49,121,-42,121,44v0,67,-32,146,-98,146v-27,0,-40,-12,-54,-33r-18,97r-32,0xm65,-158r-20,105v10,16,19,31,44,31v51,0,70,-76,70,-118v0,-28,-10,-50,-38,-50v-28,0,-48,22,-56,32","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4}},"\u00be":{"d":"235,0r6,-28r-72,0r5,-21r86,-105r31,0r-23,108r21,0r-3,18r-21,0r-6,28r-24,0xm244,-46r21,-88r-71,88r50,0xm71,9r155,-275r24,0r-156,275r-23,0xm51,-224r-20,-6v4,-8,15,-32,58,-32v27,0,46,12,46,34v1,24,-17,36,-41,43v18,4,29,14,29,32v0,26,-22,51,-62,51v-40,0,-49,-25,-50,-39r21,-4v1,14,8,25,29,25v23,0,37,-17,37,-34v0,-24,-23,-23,-40,-21r3,-19v24,0,49,-6,49,-30v0,-13,-9,-20,-26,-20v-23,0,-30,13,-33,20","w":300},"\u00b2":{"d":"5,-105r4,-17r76,-62v15,-13,28,-25,28,-39v0,-14,-11,-21,-27,-21v-26,0,-30,18,-33,26r-22,-3v6,-25,22,-41,58,-41v63,0,55,57,15,88r-66,51r78,0r-4,18r-107,0","w":129},"\u00ae":{"d":"116,-117r0,67r-22,0r0,-152v50,0,111,-8,111,43v0,27,-17,38,-39,41r43,68r-25,0r-41,-67r-27,0xm116,-135v30,-2,67,8,67,-25v0,-32,-38,-23,-67,-24r0,49xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,133,-134,133v-74,0,-134,-59,-134,-133xm34,-128v0,63,47,112,110,112v63,0,110,-49,110,-112v0,-63,-47,-112,-110,-112v-63,0,-110,49,-110,112","w":288},"\u2212":{"d":"17,-79r0,-24r182,0r0,24r-182,0","w":216},"\u00f0":{"d":"113,-181v-52,0,-74,60,-74,104v0,31,12,56,42,56v50,0,78,-63,78,-111v0,-39,-26,-49,-46,-49xm73,-218r-13,-12r42,-20v-8,-7,-17,-12,-25,-17r21,-16v10,6,21,13,30,21r40,-19r13,13r-40,19v85,68,63,253,-61,253v-48,0,-74,-34,-74,-80v0,-67,42,-128,105,-128v13,0,28,7,37,12v-6,-14,-19,-30,-33,-45","w":206},"\u00d7":{"d":"108,-75r-66,67r-17,-16r66,-67r-66,-66r17,-17r66,66r67,-66r16,17r-66,66r66,67r-16,16","w":216},"\u00b3":{"d":"51,-224r-20,-6v4,-8,15,-32,58,-32v27,0,46,12,46,34v1,24,-17,36,-41,43v18,4,29,14,29,32v0,26,-22,51,-62,51v-40,0,-49,-25,-50,-39r21,-4v1,14,8,25,29,25v23,0,37,-17,37,-34v0,-24,-23,-23,-40,-21r3,-19v24,0,49,-6,49,-30v0,-13,-9,-20,-26,-20v-23,0,-30,13,-33,20","w":129},"\u00a9":{"d":"191,-101r22,0v-17,93,-149,58,-142,-25v-11,-85,130,-114,142,-27r-22,0v-18,-57,-103,-31,-96,26v-9,57,86,85,96,26xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,133,-134,133v-74,0,-134,-59,-134,-133xm34,-128v0,63,47,112,110,112v63,0,110,-49,110,-112v0,-63,-47,-112,-110,-112v-63,0,-110,49,-110,112","w":288},"\u00c1":{"d":"-19,0r149,-256r42,0r47,256r-33,0r-12,-68r-119,0r-38,68r-36,0xm169,-95v-10,-43,-12,-93,-25,-132r-73,132r98,0xm126,-273r42,-51r40,0r-56,51r-26,0","w":240,"k":{"y":6,"\u00fd":6,"\u00ff":6,"C":6,"\u00c7":6,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"Q":6,"T":6,"U":6,"\u00da":6,"\u00db":6,"\u00dc":6,"\u00d9":6,"v":6,"V":6,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":13,"\u2019":13}},"\u00c2":{"d":"-19,0r149,-256r42,0r47,256r-33,0r-12,-68r-119,0r-38,68r-36,0xm169,-95v-10,-43,-12,-93,-25,-132r-73,132r98,0xm91,-273r49,-51r31,0r31,51r-27,0r-21,-34r-35,34r-28,0","w":240,"k":{"y":6,"\u00fd":6,"\u00ff":6,"C":6,"\u00c7":6,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"Q":6,"T":6,"U":6,"\u00da":6,"\u00db":6,"\u00dc":6,"\u00d9":6,"v":6,"V":6,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":13,"\u2019":13}},"\u00c4":{"d":"-19,0r149,-256r42,0r47,256r-33,0r-12,-68r-119,0r-38,68r-36,0xm169,-95v-10,-43,-12,-93,-25,-132r-73,132r98,0xm99,-283r7,-33r34,0r-6,33r-35,0xm164,-283r7,-33r34,0r-6,33r-35,0","w":240,"k":{"y":6,"\u00fd":6,"\u00ff":6,"C":6,"\u00c7":6,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"Q":6,"T":6,"U":6,"\u00da":6,"\u00db":6,"\u00dc":6,"\u00d9":6,"v":6,"V":6,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":13,"\u2019":13}},"\u00c0":{"d":"-19,0r149,-256r42,0r47,256r-33,0r-12,-68r-119,0r-38,68r-36,0xm169,-95v-10,-43,-12,-93,-25,-132r-73,132r98,0xm105,-324r38,0r32,51r-25,0","w":240,"k":{"y":6,"\u00fd":6,"\u00ff":6,"C":6,"\u00c7":6,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"Q":6,"T":6,"U":6,"\u00da":6,"\u00db":6,"\u00dc":6,"\u00d9":6,"v":6,"V":6,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":13,"\u2019":13}},"\u00c5":{"d":"-19,0r149,-256r42,0r47,256r-33,0r-12,-68r-119,0r-38,68r-36,0xm169,-95v-10,-43,-12,-93,-25,-132r-73,132r98,0xm118,-298v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35xm134,-298v0,11,8,19,19,19v11,0,19,-8,19,-19v0,-11,-8,-20,-19,-20v-11,0,-19,9,-19,20","w":240,"k":{"y":6,"\u00fd":6,"\u00ff":6,"C":6,"\u00c7":6,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"Q":6,"T":6,"U":6,"\u00da":6,"\u00db":6,"\u00dc":6,"\u00d9":6,"v":6,"V":6,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":13,"\u2019":13}},"\u00c3":{"d":"-19,0r149,-256r42,0r47,256r-33,0r-12,-68r-119,0r-38,68r-36,0xm169,-95v-10,-43,-12,-93,-25,-132r-73,132r98,0xm174,-275v-21,0,-57,-37,-66,-1r-18,0v1,-10,10,-39,38,-39v22,0,58,38,65,0r18,0v-2,13,-12,40,-37,40","w":240,"k":{"y":6,"\u00fd":6,"\u00ff":6,"C":6,"\u00c7":6,"G":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"Q":6,"T":6,"U":6,"\u00da":6,"\u00db":6,"\u00dc":6,"\u00d9":6,"v":6,"V":6,"Y":27,"\u00dd":27,"\u0178":27,"\u201d":13,"\u2019":13}},"\u00c7":{"d":"177,-72r32,8v-9,27,-35,69,-105,69v-5,6,-11,10,-15,17v17,-3,35,-1,37,21v3,31,-55,44,-81,25r7,-12v11,9,53,9,50,-11v1,-14,-21,-15,-30,-8r-6,-7r24,-26v-51,-6,-78,-44,-78,-95v0,-73,43,-171,135,-171v67,0,83,46,84,65r-33,8v0,-11,-12,-46,-52,-46v-68,0,-99,84,-99,138v0,52,20,76,60,76v40,0,61,-26,70,-51","w":233,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00c9":{"d":"1,0r49,-256r156,0r-6,26r-122,0r-16,84r116,0r-6,26r-115,0r-17,93r124,0r-5,27r-158,0xm103,-273r41,-51r41,0r-57,51r-25,0"},"\u00ca":{"d":"1,0r49,-256r156,0r-6,26r-122,0r-16,84r116,0r-6,26r-115,0r-17,93r124,0r-5,27r-158,0xm72,-273r49,-51r32,0r30,51r-27,0r-21,-34r-35,34r-28,0"},"\u00cb":{"d":"1,0r49,-256r156,0r-6,26r-122,0r-16,84r116,0r-6,26r-115,0r-17,93r124,0r-5,27r-158,0xm80,-283r7,-33r34,0r-6,33r-35,0xm145,-283r7,-33r34,0r-6,33r-35,0"},"\u00c8":{"d":"1,0r49,-256r156,0r-6,26r-122,0r-16,84r116,0r-6,26r-115,0r-17,93r124,0r-5,27r-158,0xm91,-324r38,0r32,51r-26,0"},"\u00cd":{"d":"2,0r49,-256r34,0r-50,256r-33,0xm50,-273r41,-51r40,0r-56,51r-25,0","w":86},"\u00ce":{"d":"2,0r49,-256r34,0r-50,256r-33,0xm14,-273r49,-51r32,0r30,51r-27,0r-21,-34r-35,34r-28,0","w":86},"\u00cf":{"d":"2,0r49,-256r34,0r-50,256r-33,0xm22,-283r6,-33r35,0r-6,33r-35,0xm87,-283r6,-33r35,0r-7,33r-34,0","w":86},"\u00cc":{"d":"2,0r49,-256r34,0r-50,256r-33,0xm18,-324r37,0r32,51r-25,0","w":86},"\u00d1":{"d":"3,0r50,-256r42,0r70,187v5,11,6,26,11,34v10,-77,28,-147,41,-221r33,0r-49,256r-44,0r-70,-186v-7,-13,-5,-29,-12,-35v-7,78,-27,147,-39,221r-33,0xm180,-275v-21,0,-57,-37,-66,-1r-18,0v1,-10,11,-39,39,-39v22,0,58,39,64,0r18,0v-2,13,-12,40,-37,40","w":253,"k":{"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00d3":{"d":"12,-91v0,-73,43,-171,135,-171v63,0,94,41,94,97v0,73,-41,170,-134,170v-63,0,-95,-40,-95,-96xm47,-97v0,54,20,77,60,77v69,0,100,-84,100,-138v0,-53,-20,-77,-60,-77v-69,0,-100,84,-100,138xm130,-273r41,-51r40,0r-56,51r-25,0","w":253,"k":{"T":6,"V":6,"Y":33,"\u00dd":33,"\u0178":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":16,".":16,"X":11}},"\u00d4":{"d":"12,-91v0,-73,43,-171,135,-171v63,0,94,41,94,97v0,73,-41,170,-134,170v-63,0,-95,-40,-95,-96xm47,-97v0,54,20,77,60,77v69,0,100,-84,100,-138v0,-53,-20,-77,-60,-77v-69,0,-100,84,-100,138xm95,-273r49,-51r32,0r30,51r-27,0r-21,-34r-35,34r-28,0","w":253,"k":{"T":6,"V":6,"Y":33,"\u00dd":33,"\u0178":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":16,".":16,"X":11}},"\u00d6":{"d":"12,-91v0,-73,43,-171,135,-171v63,0,94,41,94,97v0,73,-41,170,-134,170v-63,0,-95,-40,-95,-96xm47,-97v0,54,20,77,60,77v69,0,100,-84,100,-138v0,-53,-20,-77,-60,-77v-69,0,-100,84,-100,138xm103,-283r7,-33r34,0r-6,33r-35,0xm168,-283r7,-33r34,0r-6,33r-35,0","w":253,"k":{"T":6,"V":6,"Y":33,"\u00dd":33,"\u0178":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":16,".":16,"X":11}},"\u00d2":{"d":"12,-91v0,-73,43,-171,135,-171v63,0,94,41,94,97v0,73,-41,170,-134,170v-63,0,-95,-40,-95,-96xm47,-97v0,54,20,77,60,77v69,0,100,-84,100,-138v0,-53,-20,-77,-60,-77v-69,0,-100,84,-100,138xm112,-324r38,0r32,51r-25,0","w":253,"k":{"T":6,"V":6,"Y":33,"\u00dd":33,"\u0178":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":16,".":16,"X":11}},"\u00d5":{"d":"12,-91v0,-73,43,-171,135,-171v63,0,94,41,94,97v0,73,-41,170,-134,170v-63,0,-95,-40,-95,-96xm47,-97v0,54,20,77,60,77v69,0,100,-84,100,-138v0,-53,-20,-77,-60,-77v-69,0,-100,84,-100,138xm176,-275v-21,0,-57,-37,-66,-1r-18,0v1,-10,10,-39,38,-39v22,1,59,39,65,0r18,0v-2,13,-12,40,-37,40","w":253,"k":{"T":6,"V":6,"Y":33,"\u00dd":33,"\u0178":33,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":16,".":16,"X":11}},"\u0160":{"d":"-5,-50r32,-10v2,18,12,39,48,39v33,0,59,-24,59,-51v-1,-52,-104,-48,-104,-114v0,-48,34,-76,91,-76v36,0,64,17,70,47r-32,10v-1,-15,-13,-30,-43,-30v-64,0,-67,62,-21,83v34,16,74,29,74,79v0,45,-40,78,-94,78v-65,0,-78,-42,-80,-55xm102,-273r-30,-51r26,0r22,35r34,-35r29,0r-49,51r-32,0","k":{",":6,".":6}},"\u00da":{"d":"84,-256r-34,189v0,29,21,46,51,46v40,0,64,-27,73,-73r31,-162r33,0r-32,167v-14,71,-57,94,-112,94v-133,0,-52,-169,-43,-261r33,0xm116,-273r41,-51r40,0r-56,51r-25,0","w":240,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00db":{"d":"84,-256r-34,189v0,29,21,46,51,46v40,0,64,-27,73,-73r31,-162r33,0r-32,167v-14,71,-57,94,-112,94v-133,0,-52,-169,-43,-261r33,0xm88,-273r49,-51r32,0r30,51r-27,0r-21,-34r-35,34r-28,0","w":240,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00dc":{"d":"84,-256r-34,189v0,29,21,46,51,46v40,0,64,-27,73,-73r31,-162r33,0r-32,167v-14,71,-57,94,-112,94v-133,0,-52,-169,-43,-261r33,0xm96,-283r7,-33r35,0r-7,33r-35,0xm161,-283r7,-33r34,0r-6,33r-35,0","w":240,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00d9":{"d":"84,-256r-34,189v0,29,21,46,51,46v40,0,64,-27,73,-73r31,-162r33,0r-32,167v-14,71,-57,94,-112,94v-133,0,-52,-169,-43,-261r33,0xm105,-324r38,0r32,51r-25,0","w":240,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"\u00dd":{"d":"73,0r20,-105r-61,-151r37,0v17,40,27,87,47,124v25,-45,61,-83,91,-124r40,0r-121,151r-20,105r-33,0xm113,-273r41,-51r40,0r-56,51r-25,0","w":219,"k":{"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":33,".":33,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":16,"\u00e9":16,"\u00ea":16,"\u00eb":16,"\u00e8":16,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":33,":":20,";":20,"S":6,"\u0160":6}},"\u0178":{"d":"73,0r20,-105r-61,-151r37,0v17,40,27,87,47,124v25,-45,61,-83,91,-124r40,0r-121,151r-20,105r-33,0xm92,-283r6,-33r35,0r-7,33r-34,0xm157,-283r6,-33r35,0r-7,33r-34,0","w":219,"k":{"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":33,".":33,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":16,"\u00e9":16,"\u00ea":16,"\u00eb":16,"\u00e8":16,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":33,":":20,";":20,"S":6,"\u0160":6}},"\u017d":{"d":"-17,0r5,-30r168,-200r-124,0r5,-26r164,0r-6,31r-169,198r133,0r-6,27r-170,0xm95,-273r-30,-51r26,0r22,35r35,-35r28,0r-49,51r-32,0","w":186},"\u00e1":{"d":"116,0v1,-10,6,-24,5,-33v-9,9,-37,37,-73,37v-32,0,-49,-24,-49,-51v0,-41,28,-78,90,-81r51,-2v8,-30,6,-63,-31,-63v-34,0,-46,25,-53,39r-27,-10v10,-21,31,-53,83,-53v45,0,70,35,60,88r-24,129r-32,0xm127,-58r10,-48v-52,1,-105,3,-105,55v0,55,76,18,95,-7xm92,-238r42,-51r40,0r-57,51r-25,0","w":193},"\u00e2":{"d":"116,0v1,-10,6,-24,5,-33v-9,9,-37,37,-73,37v-32,0,-49,-24,-49,-51v0,-41,28,-78,90,-81r51,-2v8,-30,6,-63,-31,-63v-34,0,-46,25,-53,39r-27,-10v10,-21,31,-53,83,-53v45,0,70,35,60,88r-24,129r-32,0xm127,-58r10,-48v-52,1,-105,3,-105,55v0,55,76,18,95,-7xm62,-238r49,-51r32,0r30,51r-27,0r-21,-35r-35,35r-28,0","w":193},"\u00e4":{"d":"116,0v1,-10,6,-24,5,-33v-9,9,-37,37,-73,37v-32,0,-49,-24,-49,-51v0,-41,28,-78,90,-81r51,-2v8,-30,6,-63,-31,-63v-34,0,-46,25,-53,39r-27,-10v10,-21,31,-53,83,-53v45,0,70,35,60,88r-24,129r-32,0xm127,-58r10,-48v-52,1,-105,3,-105,55v0,55,76,18,95,-7xm138,-249r6,-32r35,0r-7,32r-34,0xm73,-249r7,-32r34,0r-6,32r-35,0","w":193},"\u00e0":{"d":"116,0v1,-10,6,-24,5,-33v-9,9,-37,37,-73,37v-32,0,-49,-24,-49,-51v0,-41,28,-78,90,-81r51,-2v8,-30,6,-63,-31,-63v-34,0,-46,25,-53,39r-27,-10v10,-21,31,-53,83,-53v45,0,70,35,60,88r-24,129r-32,0xm127,-58r10,-48v-52,1,-105,3,-105,55v0,55,76,18,95,-7xm82,-289r38,0r32,51r-26,0","w":193},"\u00e5":{"d":"116,0v1,-10,6,-24,5,-33v-9,9,-37,37,-73,37v-32,0,-49,-24,-49,-51v0,-41,28,-78,90,-81r51,-2v8,-30,6,-63,-31,-63v-34,0,-46,25,-53,39r-27,-10v10,-21,31,-53,83,-53v45,0,70,35,60,88r-24,129r-32,0xm127,-58r10,-48v-52,1,-105,3,-105,55v0,55,76,18,95,-7xm88,-264v0,-19,16,-34,35,-34v19,0,35,15,35,34v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35xm104,-264v0,11,8,20,19,20v11,0,20,-9,20,-20v0,-11,-9,-19,-20,-19v-11,0,-19,8,-19,19","w":193},"\u00e3":{"d":"116,0v1,-10,6,-24,5,-33v-9,9,-37,37,-73,37v-32,0,-49,-24,-49,-51v0,-41,28,-78,90,-81r51,-2v8,-30,6,-63,-31,-63v-34,0,-46,25,-53,39r-27,-10v10,-21,31,-53,83,-53v45,0,70,35,60,88r-24,129r-32,0xm127,-58r10,-48v-52,1,-105,3,-105,55v0,55,76,18,95,-7xm143,-241v-22,0,-56,-36,-66,-1r-18,0v1,-10,10,-39,38,-39v21,0,59,38,65,1r18,0v-2,13,-12,39,-37,39","w":193},"\u00e7":{"d":"177,-161r-28,8v-2,-17,-10,-39,-36,-39v-49,0,-74,67,-74,115v0,32,10,56,41,56v31,0,45,-27,51,-39r28,10v-12,26,-35,53,-77,54v-4,6,-15,12,-15,18v17,-3,34,1,36,21v3,31,-55,44,-81,25r8,-12v11,7,52,8,49,-11v1,-14,-21,-15,-30,-8r-6,-7r25,-26v-40,-5,-62,-38,-62,-80v0,-64,37,-141,109,-141v46,0,58,34,62,56","w":186,"k":{"y":11,"\u00fd":11,"\u00ff":11,"h":6,"k":6,"l":4,"\u0142":4}},"\u00e9":{"d":"139,-58r25,10v-6,13,-30,52,-84,52v-48,0,-74,-34,-74,-80v0,-64,36,-141,109,-141v66,0,80,64,64,119r-139,0v-10,39,5,79,42,79v27,0,47,-17,57,-39xm44,-122r107,0v8,-37,-7,-71,-40,-71v-40,0,-58,38,-67,71xm96,-238r41,-51r40,0r-56,51r-25,0","k":{"y":6,"\u00fd":6,"\u00ff":6,"v":6,"w":6,"x":4}},"\u00ea":{"d":"139,-58r25,10v-6,13,-30,52,-84,52v-48,0,-74,-34,-74,-80v0,-64,36,-141,109,-141v66,0,80,64,64,119r-139,0v-10,39,5,79,42,79v27,0,47,-17,57,-39xm44,-122r107,0v8,-37,-7,-71,-40,-71v-40,0,-58,38,-67,71xm66,-238r48,-51r32,0r30,51r-26,0r-21,-35r-35,35r-28,0","k":{"y":6,"\u00fd":6,"\u00ff":6,"v":6,"w":6,"x":4}},"\u00eb":{"d":"139,-58r25,10v-6,13,-30,52,-84,52v-48,0,-74,-34,-74,-80v0,-64,36,-141,109,-141v66,0,80,64,64,119r-139,0v-10,39,5,79,42,79v27,0,47,-17,57,-39xm44,-122r107,0v8,-37,-7,-71,-40,-71v-40,0,-58,38,-67,71xm77,-249r6,-32r35,0r-7,32r-34,0xm141,-249r7,-32r35,0r-7,32r-35,0","k":{"y":6,"\u00fd":6,"\u00ff":6,"v":6,"w":6,"x":4}},"\u00e8":{"d":"139,-58r25,10v-6,13,-30,52,-84,52v-48,0,-74,-34,-74,-80v0,-64,36,-141,109,-141v66,0,80,64,64,119r-139,0v-10,39,5,79,42,79v27,0,47,-17,57,-39xm44,-122r107,0v8,-37,-7,-71,-40,-71v-40,0,-58,38,-67,71xm80,-289r38,0r32,51r-25,0","k":{"y":6,"\u00fd":6,"\u00ff":6,"v":6,"w":6,"x":4}},"\u00ed":{"d":"3,0r41,-213r32,0r-41,213r-32,0xm39,-238r41,-51r41,0r-57,51r-25,0","w":86},"\u00ee":{"d":"3,0r41,-213r32,0r-41,213r-32,0xm9,-238r49,-51r31,0r31,51r-27,0r-21,-35r-35,35r-28,0","w":86},"\u00ef":{"d":"3,0r41,-213r32,0r-41,213r-32,0xm20,-249r6,-32r35,0r-7,32r-34,0xm85,-249r6,-32r35,0r-7,32r-34,0","w":86},"\u00ec":{"d":"3,0r41,-213r32,0r-41,213r-32,0xm13,-289r37,0r32,51r-25,0","w":86},"\u00f1":{"d":"125,0r31,-166v-12,-51,-81,-2,-95,16r-29,150r-32,0r41,-213r32,0r-6,34v17,-17,47,-38,76,-38v34,0,49,33,42,71r-28,146r-32,0xm144,-241v-21,0,-56,-35,-66,-1r-18,0v1,-10,11,-39,39,-39v20,0,58,38,64,1r18,0v-2,13,-12,39,-37,39","w":206},"\u00f3":{"d":"6,-76v0,-64,37,-141,109,-141v51,0,77,32,77,81v0,65,-40,140,-112,140v-48,0,-74,-34,-74,-80xm39,-77v0,32,13,56,42,56v53,0,78,-69,78,-119v0,-31,-13,-52,-46,-52v-49,0,-74,67,-74,115xm99,-238r41,-51r41,0r-57,51r-25,0","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4,"v":4,",":9,".":9,"x":4}},"\u00f4":{"d":"6,-76v0,-64,37,-141,109,-141v51,0,77,32,77,81v0,65,-40,140,-112,140v-48,0,-74,-34,-74,-80xm39,-77v0,32,13,56,42,56v53,0,78,-69,78,-119v0,-31,-13,-52,-46,-52v-49,0,-74,67,-74,115xm69,-238r49,-51r31,0r31,51r-27,0r-21,-35r-35,35r-28,0","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4,"v":4,",":9,".":9,"x":4}},"\u00f6":{"d":"6,-76v0,-64,37,-141,109,-141v51,0,77,32,77,81v0,65,-40,140,-112,140v-48,0,-74,-34,-74,-80xm39,-77v0,32,13,56,42,56v53,0,78,-69,78,-119v0,-31,-13,-52,-46,-52v-49,0,-74,67,-74,115xm80,-249r6,-32r35,0r-7,32r-34,0xm145,-249r6,-32r35,0r-7,32r-34,0","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4,"v":4,",":9,".":9,"x":4}},"\u00f2":{"d":"6,-76v0,-64,37,-141,109,-141v51,0,77,32,77,81v0,65,-40,140,-112,140v-48,0,-74,-34,-74,-80xm39,-77v0,32,13,56,42,56v53,0,78,-69,78,-119v0,-31,-13,-52,-46,-52v-49,0,-74,67,-74,115xm84,-289r37,0r32,51r-25,0","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4,"v":4,",":9,".":9,"x":4}},"\u00f5":{"d":"6,-76v0,-64,37,-141,109,-141v51,0,77,32,77,81v0,65,-40,140,-112,140v-48,0,-74,-34,-74,-80xm39,-77v0,32,13,56,42,56v53,0,78,-69,78,-119v0,-31,-13,-52,-46,-52v-49,0,-74,67,-74,115xm150,-241v-22,0,-56,-36,-66,-1r-18,0v1,-10,10,-39,38,-39v21,0,59,38,65,1r18,0v-2,13,-12,39,-37,39","w":206,"k":{"y":4,"\u00fd":4,"\u00ff":4,"v":4,",":9,".":9,"x":4}},"\u0161":{"d":"-6,-49r29,-10v0,14,12,40,43,40v32,0,50,-17,50,-41v0,-30,-41,-34,-63,-45v-64,-33,-28,-113,45,-112v49,0,62,32,65,47r-29,9v0,-11,-9,-32,-39,-32v-44,0,-63,52,-16,67v30,10,69,24,69,59v0,36,-26,71,-84,71v-57,0,-66,-35,-70,-53xm88,-238r-30,-51r27,0r21,34r35,-34r28,0r-49,51r-32,0","w":173},"\u00fa":{"d":"198,-213r-41,213r-32,0v1,-11,7,-24,6,-34v-17,17,-46,38,-75,38v-33,0,-50,-32,-43,-71r28,-146r32,0r-30,166v11,51,81,2,95,-15r28,-151r32,0xm94,-238r41,-51r40,0r-56,51r-25,0","w":206},"\u00fb":{"d":"198,-213r-41,213r-32,0v1,-11,7,-24,6,-34v-17,17,-46,38,-75,38v-33,0,-50,-32,-43,-71r28,-146r32,0r-30,166v11,51,81,2,95,-15r28,-151r32,0xm66,-238r49,-51r32,0r30,51r-27,0r-21,-35r-35,35r-28,0","w":206},"\u00fc":{"d":"198,-213r-41,213r-32,0v1,-11,7,-24,6,-34v-17,17,-46,38,-75,38v-33,0,-50,-32,-43,-71r28,-146r32,0r-30,166v11,51,81,2,95,-15r28,-151r32,0xm75,-249r6,-32r35,0r-7,32r-34,0xm139,-249r7,-32r34,0r-6,32r-35,0","w":206},"\u00f9":{"d":"198,-213r-41,213r-32,0v1,-11,7,-24,6,-34v-17,17,-46,38,-75,38v-33,0,-50,-32,-43,-71r28,-146r32,0r-30,166v11,51,81,2,95,-15r28,-151r32,0xm89,-289r37,0r32,51r-25,0","w":206},"\u00fd":{"d":"51,-3r-36,-210r33,0r24,178r2,0v24,-63,60,-119,89,-178r35,0r-134,245v-22,36,-43,48,-80,37r6,-27v30,18,49,-21,61,-45xm86,-238r41,-51r40,0r-56,51r-25,0","w":180,"k":{",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u00ff":{"d":"51,-3r-36,-210r33,0r24,178r2,0v24,-63,60,-119,89,-178r35,0r-134,245v-22,36,-43,48,-80,37r6,-27v30,18,49,-21,61,-45xm61,-249r7,-32r34,0r-6,32r-35,0xm126,-249r6,-32r35,0r-6,32r-35,0","w":180,"k":{",":16,".":16,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u017e":{"d":"27,-24r118,0r-5,24r-157,0r5,-24r147,-165r-112,0r5,-24r150,0r-5,26xm88,-238r-30,-51r27,0r21,34r35,-34r28,0r-49,51r-32,0","w":173},"\u2206":{"d":"-16,0r4,-19r141,-244r34,0r36,243r-4,20r-211,0xm18,-24r151,0r-32,-205","w":233},"\u2126":{"d":"-5,-24v17,-1,39,2,54,-1v-21,-23,-36,-62,-25,-113v15,-72,72,-122,134,-122v65,0,93,57,80,120v-11,54,-45,93,-73,116r54,0r-6,24r-87,0r4,-18v31,-18,65,-58,78,-116v10,-48,-4,-102,-55,-102v-48,0,-88,45,-100,102v-12,55,5,98,28,116r-4,18r-87,0","w":258},"\u03bc":{"d":"198,-213r-41,213r-32,0v1,-11,7,-24,6,-34v-22,21,-69,57,-97,25r-15,77r-32,0r54,-281r32,0r-30,166v11,51,81,2,95,-15r28,-151r32,0","w":206},"\u03c0":{"d":"205,-166r-29,0r-23,112v-6,30,-7,44,-7,54r-28,0v-2,-43,22,-121,30,-166r-64,0v-12,47,-41,130,-62,166r-28,0v22,-40,49,-117,61,-166v-22,0,-32,1,-40,4r-1,-19v43,-19,137,-7,199,-10","w":206},"\u20ac":{"d":"174,-12v-74,39,-177,9,-164,-87r-24,0v7,-8,7,-23,26,-20v1,-11,4,-22,7,-35r-23,0r12,-20r18,0v25,-58,57,-88,123,-88v38,0,61,13,66,17r-17,28v-50,-28,-73,-27,-114,9v-12,11,-19,28,-22,34r108,0r-13,20r-102,0v-3,11,-6,22,-8,35r88,0r-13,20r-77,0v-1,16,0,41,14,57v32,39,89,17,121,-2"},"\u2113":{"d":"139,-56r10,12v-23,31,-49,47,-77,47v-44,0,-53,-36,-45,-72v-8,5,-16,10,-24,16r-5,-16v12,-9,24,-17,34,-26r21,-99v14,-66,47,-89,75,-89v31,0,40,27,33,60v-10,46,-49,90,-103,134v-9,36,-2,68,25,68v22,0,43,-18,56,-35xm124,-261v-32,0,-52,101,-60,143v38,-34,69,-70,77,-105v5,-23,2,-38,-17,-38","w":176},"\u212e":{"d":"95,-51v37,64,147,61,189,3r21,0v-27,31,-69,52,-117,52v-81,0,-147,-60,-147,-133v0,-73,66,-133,147,-133v83,1,150,60,148,137r-241,2r0,72xm282,-207v-35,-60,-139,-61,-183,-8v-8,19,-5,61,-2,83r185,-2r0,-73","w":348},"\u2202":{"d":"62,-246r-5,-21v69,-46,158,-15,127,118v-20,86,-65,152,-127,152v-48,0,-61,-43,-52,-85v12,-58,56,-94,97,-94v33,0,48,23,52,34v18,-57,2,-122,-41,-122v-22,0,-39,10,-51,18xm65,-22v33,0,65,-44,80,-92v-22,-72,-99,-31,-111,32v-7,35,4,60,31,60","w":198},"\u220f":{"d":"270,-230r-39,0r0,265r-28,0r0,-265r-99,0r0,265r-28,0r0,-265r-40,0r0,-26r234,0r0,26","w":279},"\u2211":{"d":"219,35r-184,0r0,-19r96,-126r-91,-126r0,-20r173,0r0,25r-134,1r86,116r-93,122r147,0r0,27","w":226},"\u2219":{"d":"28,-114v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-9,-22,-21","w":100},"\u221a":{"d":"236,-305r-80,359r-26,0r-57,-169r-27,10r-6,-17r51,-20r52,161r72,-324r21,0","w":235},"\u221e":{"d":"217,-163v32,0,53,23,53,57v0,36,-26,58,-55,58v-23,0,-41,-14,-66,-43v-19,22,-39,43,-69,43v-29,0,-54,-25,-54,-57v0,-33,24,-58,57,-58v27,0,48,20,67,43v18,-21,36,-43,67,-43xm44,-104v0,21,15,38,39,38v23,0,41,-22,56,-38v-16,-20,-33,-41,-59,-41v-23,0,-36,19,-36,41xm215,-145v-24,0,-43,26,-56,39v24,27,38,40,57,40v23,0,36,-20,36,-39v0,-26,-16,-40,-37,-40","w":288},"\u222b":{"d":"78,-221v0,-66,22,-104,75,-88r-5,21v-36,-12,-43,20,-43,70v0,58,5,124,5,184v0,69,-24,105,-77,87r6,-21v3,1,9,5,16,5v26,-9,29,-23,29,-71v0,-61,-6,-129,-6,-187","w":158},"\u2248":{"d":"73,-159v45,0,80,57,108,1r12,10v-10,19,-25,35,-47,35v-24,0,-49,-28,-76,-28v-17,0,-26,13,-35,27r-12,-10v11,-21,29,-35,50,-35xm72,-96v46,0,82,56,109,0r12,10v-10,19,-25,35,-47,35v-25,0,-50,-27,-76,-27v-17,0,-26,13,-35,27r-12,-10v11,-22,28,-35,49,-35","w":209},"\u2260":{"d":"158,-184r-17,35r57,0r0,19r-64,0r-24,52r88,0r0,19r-95,0r-19,42r-15,-6r16,-36r-53,0r0,-19r61,0r24,-52r-85,0r0,-19r92,0r19,-42","w":216},"\u2264":{"d":"203,-36r-163,-82r0,-19r163,-82r0,22r-144,70r144,69r0,22xm204,-2r-166,0r0,-19r166,0r0,19","w":221},"\u2265":{"d":"40,-219r163,82r0,19r-163,82r0,-22r143,-70r-143,-69r0,-22xm203,-2r-165,0r0,-19r165,0r0,19","w":221},"\u25ca":{"d":"216,-128r-73,145r-23,0r-72,-145r73,-145r23,0xm190,-127r-59,-121v-15,43,-39,79,-57,119v18,41,43,77,57,121","w":235},"\u00a0":{"w":100},"\u00ad":{"d":"9,-93r6,-27r87,0r-5,27r-88,0","w":120},"\u02c9":{"d":"17,-254r4,-19r100,0r-4,19r-100,0","w":86},"\u03a9":{"d":"-5,-24v17,-1,39,2,54,-1v-21,-23,-36,-62,-25,-113v15,-72,72,-122,134,-122v65,0,93,57,80,120v-11,54,-45,93,-73,116r54,0r-6,24r-87,0r4,-18v31,-18,65,-58,78,-116v10,-48,-4,-102,-55,-102v-48,0,-88,45,-100,102v-12,55,5,98,28,116r-4,18r-87,0","w":258},"\u2215":{"d":"-60,9r156,-275r24,0r-156,275r-24,0","w":60}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1991, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Vectora is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Full name:
 * VectoraLTStd-BlackItalic
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora LT Std","font-weight":850,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 6 3 5 3 9 2 4","ascent":"280","descent":"-80","x-height":"5","bbox":"-60 -344 388 90","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"48","stemv":"66","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":106,"k":{"\u201c":13,"\u2018":13,"T":27,"V":20,"W":20,"Y":33,"\u00dd":33,"\u0178":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"34,-88r25,-168r65,0r-42,168r-48,0xm13,0r11,-56r56,0r-11,56r-56,0","w":133},"\"":{"d":"121,-183r0,-97r43,0r0,97r-43,0xm50,-183r0,-97r44,0r0,97r-44,0","w":193},"#":{"d":"99,0r14,-72r-34,0r-13,72r-36,0r13,-72r-30,0r6,-34r30,0r9,-44r-30,0r6,-34r30,0r14,-72r36,0r-14,72r34,0r14,-72r36,0r-14,72r31,0r-7,34r-30,0r-9,44r30,0r-6,34r-30,0r-14,72r-36,0xm119,-106r9,-44r-34,0r-9,44r34,0"},"$":{"d":"106,-96r-11,52v40,1,43,-43,11,-52xm103,-166r10,-46v-28,0,-35,39,-10,46xm-11,-60r63,-19v1,9,7,29,26,34r12,-58v-33,-15,-73,-31,-73,-76v0,-50,43,-83,105,-83r6,-27r17,0r-6,27v49,5,74,32,76,60r-62,17v-1,-6,-4,-24,-23,-27r-11,53v36,15,80,34,80,78v0,39,-29,87,-114,87r-5,24r-17,0r5,-25v-67,-8,-78,-52,-79,-65"},"%":{"d":"77,-125v-38,0,-55,-22,-55,-52v0,-36,26,-85,75,-85v27,0,56,11,56,51v0,37,-22,86,-76,86xm96,-234v-19,0,-32,27,-32,58v0,13,4,22,16,22v19,0,32,-26,32,-57v0,-13,-4,-23,-16,-23xm208,5v-38,0,-55,-22,-55,-52v0,-36,26,-85,75,-85v27,0,56,11,56,51v0,37,-22,86,-76,86xm227,-104v-19,0,-32,27,-32,58v0,13,4,22,16,22v19,0,32,-26,32,-57v0,-13,-4,-23,-16,-23xm41,9r194,-275r30,0r-194,275r-30,0","w":306},"&":{"d":"190,0r-16,-18v-20,13,-52,23,-84,23v-66,0,-85,-40,-85,-71v0,-53,46,-70,65,-77v-10,-10,-25,-25,-25,-49v0,-48,46,-70,93,-70v51,0,79,24,79,59v0,45,-45,61,-66,71r41,51v19,-11,24,-44,24,-55r55,0v1,26,-22,72,-52,88r42,48r-71,0xm133,-218v-33,0,-29,44,-11,54v13,-5,37,-17,37,-32v0,-14,-8,-22,-26,-22xm100,-108v-41,11,-41,69,7,69v23,0,36,-7,42,-11","w":286},"\u2019":{"d":"23,-183r44,-97r56,0r-52,97r-48,0","w":106,"k":{"d":20,"\u0131":20,"s":13,"\u0161":13}},"(":{"d":"106,-283r30,27v-32,41,-78,97,-78,187v0,35,9,80,22,105r-37,21v-20,-41,-39,-79,-39,-137v0,-96,59,-158,102,-203","w":126},")":{"d":"14,57r-31,-27v32,-41,79,-97,79,-187v0,-35,-9,-80,-22,-105r37,-21v20,41,38,79,38,137v0,96,-58,158,-101,203","w":126},"*":{"d":"19,-187r17,-35r49,21r5,-55r38,0r-15,55r55,-21r6,35r-57,13r29,43r-33,21r-22,-48r-38,47r-26,-22r43,-41","w":173},"+":{"d":"86,0r0,-69r-69,0r0,-44r69,0r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0","w":216},",":{"d":"-22,41r45,-97r56,0r-53,97r-48,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"1,-88r8,-45r90,0r-9,45r-89,0","w":106},".":{"d":"1,0r11,-56r56,0r-11,56r-56,0","w":106,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"-27,0r163,-269r38,13r-163,268","w":146},"0":{"d":"2,-81v0,-86,34,-181,127,-181v50,0,81,28,81,81v0,73,-27,186,-124,186v-67,0,-84,-40,-84,-86xm89,-38v37,10,57,-94,57,-146v0,-23,-7,-33,-24,-33v-49,0,-56,136,-56,146v0,20,9,33,23,33"},"1":{"d":"79,0r36,-186r-62,43r-24,-43r103,-70r62,0r-49,256r-66,0"},"2":{"d":"-12,0r9,-48r110,-90v23,-19,34,-35,34,-52v0,-17,-11,-27,-26,-27v-27,0,-34,29,-34,41r-59,-10v7,-30,27,-76,99,-76v55,0,84,25,84,66v0,40,-21,62,-47,83r-81,68r99,0r-8,45r-180,0"},"3":{"d":"0,-64r59,-12v0,10,0,36,27,36v21,0,35,-20,35,-40v-1,-29,-26,-30,-49,-27r9,-49v22,0,59,0,59,-36v0,-18,-13,-25,-25,-25v-23,0,-30,22,-30,29r-54,-16v3,-7,22,-58,91,-58v59,0,82,31,82,63v1,40,-38,59,-66,65v26,4,48,22,48,55v0,41,-33,84,-100,84v-73,0,-84,-45,-86,-69"},"4":{"d":"90,0r8,-40r-109,0r11,-55r134,-161r65,0r-33,171r32,0r-9,45r-32,0r-7,40r-60,0xm108,-85r25,-108v-24,37,-60,73,-87,108r62,0"},"5":{"d":"210,-256r-9,46r-98,0r-8,42v59,-11,92,31,92,73v0,47,-30,100,-106,100v-58,0,-79,-31,-77,-71r53,-9v-5,20,4,35,25,36v24,0,40,-20,40,-46v0,-50,-65,-48,-93,-26r28,-145r153,0"},"6":{"d":"198,-256r-96,98v43,-15,89,7,89,64v0,57,-38,99,-103,99v-100,0,-96,-113,-48,-170r77,-91r81,0xm90,-40v38,0,53,-78,13,-79v-11,0,-18,2,-20,3v-3,5,-17,24,-17,48v0,19,10,28,24,28"},"7":{"d":"-12,0r147,-206r-103,0r10,-50r176,0r-8,45r-148,211r-74,0"},"8":{"d":"2,-58v0,-44,34,-60,62,-73v-58,-32,-36,-131,63,-131v43,0,80,18,80,58v0,12,-6,53,-60,70v13,5,39,20,39,55v0,46,-30,84,-100,84v-51,0,-84,-22,-84,-63xm66,-63v0,18,11,25,26,25v17,0,32,-14,32,-34v0,-19,-13,-30,-22,-35v-16,6,-36,17,-36,44xm90,-190v0,19,16,27,24,33v12,-5,34,-17,34,-38v0,-16,-12,-24,-28,-24v-16,0,-30,11,-30,29"},"9":{"d":"11,0r96,-99v-42,18,-88,-6,-89,-62v0,-63,43,-101,104,-101v116,2,89,127,37,186r-67,76r-81,0xm118,-217v-39,0,-51,78,-12,78v11,0,18,-2,20,-3v3,-5,16,-23,16,-47v0,-19,-10,-28,-24,-28"},":":{"d":"1,0r11,-56r56,0r-11,56r-56,0xm31,-161r11,-56r56,0r-11,56r-56,0","w":106,"k":{" ":13}},";":{"d":"-22,41r45,-97r56,0r-53,97r-48,0xm31,-161r11,-56r56,0r-11,56r-56,0","w":106,"k":{" ":13}},"<":{"d":"17,-74r0,-34r182,-77r0,41r-126,53r126,52r0,42","w":216},"=":{"d":"17,-110r0,-43r182,0r0,43r-182,0xm17,-29r0,-43r182,0r0,43r-182,0","w":216},">":{"d":"199,-108r0,34r-182,77r0,-42r126,-52r-126,-53r0,-41","w":216},"?":{"d":"66,-88v-5,-54,64,-62,74,-106v0,-14,-10,-23,-25,-23v-30,0,-33,26,-34,32r-54,-10v0,-9,22,-67,90,-67v96,0,100,85,47,120v-21,14,-47,19,-49,54r-49,0xm49,0r10,-56r57,0r-11,56r-56,0","w":200},"@":{"d":"144,-161v-40,-4,-53,70,-9,72v43,4,51,-72,9,-72xm186,-193r34,0r-18,97v0,5,3,9,9,9v15,0,32,-16,32,-55v0,-65,-39,-88,-99,-88v-58,0,-99,42,-99,99v0,66,41,105,99,105v38,0,62,-9,80,-23r35,0v-26,35,-62,55,-115,55v-72,0,-132,-56,-132,-137v0,-74,62,-131,132,-131v75,0,132,39,132,109v0,84,-66,98,-87,98v-16,1,-23,-6,-29,-16v-30,34,-89,10,-89,-43v0,-69,72,-107,112,-61","w":288},"A":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0","w":273},"B":{"d":"0,0r49,-256v76,4,190,-21,189,57v0,22,-11,57,-59,66r0,3v24,4,43,22,43,52v0,44,-38,78,-94,78r-128,0xm98,-156v33,-2,72,10,72,-28v0,-31,-35,-20,-63,-22xm77,-50v37,0,77,6,77,-33v0,-29,-38,-21,-66,-22","w":246,"k":{",":9,".":9}},"C":{"d":"252,-184r-66,13v-1,-14,-8,-38,-35,-38v-51,0,-69,70,-69,116v0,33,14,47,38,47v31,0,48,-34,51,-42r60,14v-1,6,-21,80,-111,80v-65,0,-111,-34,-111,-108v0,-78,48,-160,149,-160v82,0,93,66,94,78","w":253,"k":{",":9,".":9}},"D":{"d":"0,0r49,-256r103,0v68,0,107,40,107,108v0,85,-61,148,-141,148r-118,0xm80,-52v74,10,106,-34,106,-98v0,-40,-30,-59,-77,-53","w":273,"k":{"V":6,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"E":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0","w":226},"F":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-11,54r106,0r-10,52r-105,0r-19,98r-70,0","w":219,"k":{"\u00e3":4,"\u00e0":4,"\u00e4":4,",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e5":4}},"G":{"d":"170,-98r-38,0r10,-50r104,0r-24,124v-17,9,-53,30,-102,30v-65,0,-111,-34,-111,-108v0,-78,49,-160,149,-160v81,0,96,52,98,67r-67,16v-1,-9,-8,-31,-38,-31v-55,0,-69,76,-69,116v0,48,48,57,80,39","w":266,"k":{",":9,".":9}},"H":{"d":"156,0r20,-108r-86,0r-20,108r-70,0r49,-256r70,0r-19,95r86,0r18,-95r70,0r-49,256r-69,0","w":273},"I":{"d":"0,0r49,-256r70,0r-49,256r-70,0","w":119},"J":{"d":"66,-95r31,-161r70,0r-32,170v-13,66,-48,92,-108,92v-31,0,-47,-11,-58,-18r37,-47v4,4,11,13,27,13v20,0,28,-23,33,-49","w":166,"k":{",":9,".":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"K":{"d":"0,0r49,-256r70,0r-19,99r91,-99r87,0r-120,121r78,135r-80,0r-65,-114r-21,114r-70,0","w":259,"k":{"O":11,"\u00d8":11,"\u0152":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"y":9,"\u00fd":9,"\u00ff":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9}},"L":{"d":"0,0r49,-256r70,0r-39,201r96,0r-10,55r-166,0","w":193,"k":{"T":33,"V":33,"W":29,"y":14,"\u00fd":14,"\u00ff":14,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":40,"\u2019":40}},"M":{"d":"243,0r41,-204v-10,4,-10,21,-17,30r-86,174r-52,0r-24,-204r-2,0r-38,204r-65,0r49,-256r106,0v4,57,16,111,15,169r3,0v20,-54,56,-116,81,-169r104,0r-49,256r-66,0","w":360},"N":{"d":"0,0r49,-256r89,0r48,185r3,0v8,-60,23,-126,33,-185r66,0r-49,256r-90,0r-40,-138v-5,-12,-5,-33,-11,-45v-6,63,-23,123,-33,183r-65,0","w":286,"k":{",":9,".":9}},"O":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"P":{"d":"0,0r49,-256v83,1,192,-16,188,69v-3,84,-65,108,-151,100r-16,87r-70,0xm96,-139v38,2,73,1,73,-36v0,-34,-29,-29,-60,-29","w":226,"k":{",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"Q":{"d":"207,31r-42,39r-98,-73v-36,-14,-58,-47,-58,-99v0,-78,49,-160,149,-160v65,0,110,34,110,108v0,66,-35,135,-106,154xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114","w":280,"k":{",":9,".":9}},"R":{"d":"140,0r-24,-100r-27,0r-19,100r-70,0r49,-256v82,2,189,-18,189,67v0,58,-38,76,-61,79r34,110r-71,0xm99,-150v36,0,68,6,71,-33v2,-28,-34,-23,-61,-23","w":246,"k":{"T":6,"V":6,"W":6,"Y":27,"\u00dd":27,"\u0178":27}},"S":{"d":"0,-60r63,-19v2,10,9,35,39,35v24,0,37,-9,37,-27v0,-27,-48,-35,-70,-47v-26,-14,-41,-31,-41,-61v0,-50,44,-83,106,-83v61,0,90,29,92,60r-62,17v-1,-7,-5,-27,-34,-27v-15,0,-32,7,-32,24v0,28,39,31,60,41v84,37,69,153,-59,153v-84,0,-98,-52,-99,-66","w":233,"k":{",":13,".":13}},"T":{"d":"44,0r38,-201r-67,0r11,-55r204,0r-11,55r-67,0r-38,201r-70,0","w":206,"k":{"\u00f2":6,"\u00f6":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,",":33,".":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"a":6,"\u00e6":6,"\u00e1":6,"e":6,"\u00e9":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f5":6,"-":27}},"U":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"V":{"d":"52,0r-28,-256r71,0r13,160v2,12,-2,26,1,35v28,-67,64,-130,95,-195r73,0r-135,256r-90,0","w":253,"k":{"\u00f6":9,"\u00f4":9,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,",":33,".":33,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":13,"\u00e6":13,"\u00e1":13,"e":9,"\u00e9":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f2":9,"\u00f5":9,"-":27}},"W":{"d":"194,0r6,-204r-3,0v-21,71,-49,136,-73,204r-87,0r-8,-256r66,0r-3,204r3,0v18,-71,47,-136,69,-204r88,0r0,162v2,13,-6,34,-1,42v15,-67,48,-140,70,-204r67,0r-105,256r-89,0","w":366,"k":{"\u00e4":6,"u":-4,"\u00fa":-4,"\u00fb":-4,"\u00fc":-4,"\u00f9":-4,",":27,".":27,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"-":9}},"X":{"d":"159,0v-10,-30,-26,-63,-32,-95r-69,95r-81,0r108,-135r-54,-121r76,0v11,28,16,63,30,88v15,-27,41,-61,59,-88r79,0r-99,125r58,131r-75,0","w":259},"Y":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0","w":259,"k":{"\u00fc":13,"\u00f6":27,"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"Z":{"d":"-14,0r11,-62r144,-141r-111,0r10,-53r193,0r-12,61r-146,141r119,0r-10,54r-198,0","w":219},"[":{"d":"-8,47r61,-320r81,0r-6,31r-28,0r-50,258r29,0r-6,31r-81,0","w":106},"\\":{"d":"136,12r-163,-268r38,-13r163,269","w":146},"]":{"d":"-35,47r6,-31r29,0r49,-258r-28,0r5,-31r81,0r-61,320r-81,0","w":106},"^":{"d":"68,-125r-42,0r63,-131r38,0r63,131r-42,0r-40,-88","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"24,-183r52,-97r48,0r-44,97r-56,0","w":106,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"a":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3","w":219},"b":{"d":"-2,0r53,-280r68,0r-16,86v13,-14,35,-28,57,-28v48,0,63,39,63,78v0,65,-30,149,-100,149v-30,1,-45,-16,-53,-29r-4,24r-68,0xm95,-154r-17,88v5,8,12,21,29,21v30,0,47,-52,47,-94v0,-43,-47,-36,-59,-15","w":240,"k":{",":13,".":13}},"c":{"d":"128,-79r59,15v-13,37,-45,69,-95,69v-55,0,-86,-36,-86,-90v0,-58,29,-137,111,-137v59,0,83,30,85,66r-60,16v4,-20,-3,-34,-24,-35v-40,0,-46,80,-46,104v0,14,5,28,25,28v19,0,30,-21,31,-36","w":206,"k":{",":9,".":9}},"d":{"d":"124,0v1,-7,5,-16,3,-22v-12,16,-36,27,-58,27v-43,0,-61,-36,-61,-75v0,-73,31,-152,100,-152v25,0,41,11,53,28r16,-86r68,0r-53,280r-68,0xm136,-63r17,-92v-4,-5,-12,-17,-28,-17v-35,0,-48,57,-48,93v0,39,42,38,59,16","w":240},"e":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42","w":226,"k":{",":13,".":13}},"f":{"d":"10,0r29,-153r-31,0r9,-46r31,0v0,-74,66,-107,137,-88r-8,45v-34,-13,-64,8,-62,43r45,0r-9,46r-44,0r-30,153r-67,0","w":146,"k":{"\u201d":-6,"\u2019":-6,",":25,".":25}},"g":{"d":"19,-144v0,-67,73,-89,139,-73r85,0r-8,36r-47,0v35,49,-20,112,-98,98v-11,3,-13,12,3,17v40,12,101,14,101,62v0,40,-42,77,-121,77v-58,0,-93,-22,-93,-51v0,-27,28,-49,53,-58v-22,-18,6,-51,22,-54v-14,-7,-36,-21,-36,-54xm141,-153v0,-18,-12,-25,-27,-25v-23,0,-35,12,-35,31v0,34,62,26,62,-6xm128,9v0,-18,-48,-20,-66,-27v-10,6,-22,17,-22,28v0,15,17,21,42,21v29,0,46,-7,46,-22","w":226,"k":{".":9}},"h":{"d":"-2,0r53,-280r68,0r-18,93v15,-11,44,-35,74,-35v41,0,52,29,44,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0","w":240},"i":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm43,-235r8,-45r68,0r-8,45r-68,0","w":113},"j":{"d":"1,-18r38,-199r68,0r-43,222v1,41,-56,85,-116,62r12,-50v23,12,35,-6,41,-35xm43,-235r8,-45r68,0r-8,45r-68,0","w":113},"k":{"d":"131,0r-46,-105r-19,105r-68,0r53,-280r68,0r-29,158v20,-35,50,-63,74,-95r81,0r-93,103r56,114r-77,0","w":233},"l":{"d":"-2,0r53,-280r68,0r-53,280r-68,0","w":113},"m":{"d":"-2,0r41,-217r68,0v-1,9,-6,22,-5,29v22,-33,106,-55,113,3v16,-15,41,-37,77,-37v38,0,50,30,42,68r-29,154r-68,0r27,-148v-5,-30,-36,-7,-51,3r-28,145r-68,0r28,-148v-5,-30,-37,-8,-52,3r-27,145r-68,0","w":353},"n":{"d":"-2,0r41,-217r68,0r-6,30v15,-11,45,-35,75,-35v41,0,50,30,43,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0","w":240},"o":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34","w":233,"k":{",":13,".":13}},"p":{"d":"-14,70r55,-287r68,0v0,7,-5,17,-3,22v13,-15,35,-27,57,-27v43,0,62,36,62,75v0,73,-31,152,-100,152v-25,0,-41,-11,-53,-28r-18,93r-68,0xm97,-154r-17,92v4,5,12,17,28,17v37,0,48,-57,48,-94v0,-43,-43,-34,-59,-15","w":240,"k":{",":13,".":13}},"q":{"d":"108,70r17,-93v-13,14,-35,28,-57,28v-48,0,-63,-39,-63,-78v0,-67,32,-149,100,-149v30,-1,45,16,53,29r5,-24r67,0r-54,287r-68,0xm133,-63r17,-89v-5,-8,-13,-20,-29,-20v-35,0,-47,56,-47,94v0,42,47,37,59,15","w":240},"r":{"d":"-2,0r41,-217r68,0v0,10,-9,27,-5,34v17,-24,47,-44,77,-34r-12,60v-26,-12,-64,5,-76,21r-25,136r-68,0","w":159,"k":{",":27,".":27,"-":6}},"s":{"d":"-6,-51r59,-17v1,9,3,26,29,26v15,0,26,-7,26,-18v1,-20,-35,-24,-52,-31v-21,-9,-39,-21,-39,-56v0,-47,41,-75,93,-75v58,0,79,37,84,52r-57,17v-1,-6,-4,-24,-27,-24v-18,0,-27,10,-27,20v-2,19,37,23,54,29v25,9,42,24,42,53v0,33,-24,80,-102,80v-63,0,-76,-32,-83,-56","w":200,"k":{",":9,".":9}},"t":{"d":"5,-153r9,-46r34,0r8,-45r72,-29r-14,74r51,0r-9,46r-51,0r-16,87v-4,24,33,23,47,17r-9,47v-35,12,-109,12,-106,-44v1,-37,13,-73,18,-107r-34,0","w":159},"u":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0","w":233},"v":{"d":"41,0r-25,-217r70,0v5,49,1,107,10,152v14,-56,43,-101,62,-152r72,0r-110,217r-79,0","k":{",":27,".":27,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"w":{"d":"15,-217r70,0r5,151r4,0v14,-54,40,-101,59,-151r83,0r2,151v12,-1,6,-17,13,-27r47,-124r70,0r-99,217r-85,0r-3,-134v0,-8,1,-14,2,-19v-9,0,-6,8,-11,20r-52,133r-84,0","w":353,"k":{",":27,".":27,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"x":{"d":"127,0r-20,-77r-52,77r-78,0r90,-116r-40,-101r71,0v7,22,11,48,20,68v10,-22,30,-47,43,-68r76,0r-79,101r41,116r-72,0","w":226},"y":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"z":{"d":"-15,0r10,-50r116,-122v-23,4,-61,2,-89,2r9,-47r172,0r-9,49r-117,123v25,-4,67,-1,97,-2r-9,47r-180,0","w":200},"{":{"d":"87,47v-44,4,-83,-3,-75,-53r12,-75v0,-12,-21,-14,-29,-14r6,-36v9,0,35,-3,39,-22r13,-70v10,-49,44,-53,95,-50r-7,33v-58,-8,-44,52,-55,92v-8,27,-33,34,-45,35v10,1,32,3,32,24v0,33,-12,61,-16,93v-2,13,22,10,36,10","w":119},"|":{"d":"18,90r0,-360r44,0r0,360r-44,0","w":79},"}":{"d":"26,-273v44,-4,81,3,74,53r-11,75v0,12,21,14,29,14r-6,36v-9,0,-35,3,-39,22r-14,70v-10,49,-43,53,-94,50r6,-33v59,8,45,-52,56,-92v7,-27,33,-34,45,-35v-16,2,-41,-16,-30,-42v4,-25,11,-48,13,-75v1,-13,-22,-9,-36,-10","w":119},"~":{"d":"70,-123v24,0,56,23,77,24v14,0,23,-13,31,-26r13,35v-11,15,-23,31,-45,31v-36,0,-90,-51,-108,1r-13,-34v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"99,-128r-24,168r-66,0r42,-168r48,0xm120,-217r-11,56r-56,0r11,-56r56,0","w":133},"\u00a2":{"d":"130,-173v-52,-14,-61,78,-57,111xm30,23r15,-30v-26,-15,-39,-42,-39,-78v0,-58,29,-137,111,-137v14,0,27,2,36,5r15,-30r16,7r-16,29v22,13,33,33,34,55r-60,16v1,-8,2,-13,0,-20r-58,114v22,12,45,-14,44,-33r59,15v-13,46,-67,83,-127,64r-15,30"},"\u00a3":{"d":"-4,0r8,-45r24,0r13,-67r-27,0r7,-39r27,0v8,-63,33,-111,105,-111v64,0,77,43,77,60r-59,13v0,-10,-3,-28,-24,-28v-31,0,-31,39,-38,66r52,0r-7,39r-52,0r-13,67r96,0r-9,45r-180,0"},"\u2044":{"d":"-60,9r149,-275r31,0r-149,275r-31,0","w":60},"\u00a5":{"d":"56,0r8,-39r-50,0r5,-27r50,0r5,-28r-49,0r5,-27r36,0r-40,-135r60,0r24,112r58,-112r64,0r-84,135r35,0r-5,27r-46,0r-6,28r47,0r-5,27r-47,0r-7,39r-58,0"},"\u0192":{"d":"-17,41r24,-38v15,10,32,4,38,-21r25,-104r-42,0r8,-34r42,0v14,-52,17,-106,89,-106v22,0,38,6,42,10r-25,38v-33,-21,-41,30,-47,58r42,0r-8,34r-42,0r-22,92v-18,75,-56,83,-80,83v-23,0,-39,-7,-44,-12"},"\u00a7":{"d":"103,-13v-13,-37,-91,-32,-90,-83v0,-36,28,-53,51,-60v-50,-33,-9,-106,66,-106v57,0,72,32,73,38r-46,23v-1,-3,-7,-22,-35,-22v-13,0,-26,7,-26,20v0,34,94,38,94,91v0,31,-29,48,-48,52v8,6,20,14,20,36v0,48,-42,73,-95,73v-62,0,-74,-39,-75,-44r46,-21v1,4,4,24,34,24v19,0,31,-9,31,-21xm63,-115v0,32,37,27,56,43v25,-9,30,-42,-3,-54r-30,-14v-12,4,-23,11,-23,25"},"\u00a4":{"d":"13,-59r20,-21v-21,-27,-20,-71,-1,-99r-19,-20r24,-24r20,20v28,-21,71,-21,99,0r20,-20r25,24r-20,20v19,28,21,71,0,99r20,21r-25,24r-20,-20v-28,20,-71,20,-99,0r-20,20xm57,-129v0,27,23,49,50,49v27,0,49,-22,49,-49v0,-27,-22,-50,-49,-50v-27,0,-50,23,-50,50"},"'":{"d":"46,-183r0,-97r43,0r0,97r-43,0","w":106},"\u201c":{"d":"112,-183r53,-97r47,0r-44,97r-56,0xm24,-183r52,-97r48,0r-44,97r-56,0","w":193,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27}},"\u00ab":{"d":"0,-118r77,-84r33,28r-55,63r34,70r-39,21xm96,-118r77,-84r33,28r-55,63r34,70r-40,21"},"\u2039":{"d":"-1,-118r77,-84r33,28r-55,63r34,70r-40,21","w":120},"\u203a":{"d":"110,-103r-77,84r-33,-29r55,-63r-34,-69r39,-21","w":120},"\u2013":{"d":"-9,-91r9,-39r180,0r-9,39r-180,0","w":180},"\u2020":{"d":"41,45r35,-181r-63,0r10,-54r63,0r13,-66r64,0r-13,66r63,0r-10,54r-63,0r-35,181r-64,0"},"\u2021":{"d":"44,45r11,-59r-59,0r9,-50r60,0r16,-83r-59,0r9,-50r59,0r12,-59r61,0r-11,59r57,0r-10,50r-57,0r-16,83r57,0r-9,50r-58,0r-11,59r-61,0"},"\u00b7":{"d":"20,-102v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":106},"\u00b6":{"d":"45,44r31,-161v-32,0,-57,-28,-57,-63v0,-42,27,-76,92,-76r113,0r-57,300r-44,0r52,-268r-36,0r-51,268r-43,0"},"\u2022":{"d":"26,-128v0,-35,29,-64,64,-64v35,0,64,29,64,64v0,35,-29,64,-64,64v-35,0,-64,-29,-64,-64","w":180},"\u201a":{"d":"-22,41r45,-97r56,0r-53,97r-48,0","w":106},"\u201e":{"d":"-22,41r45,-97r56,0r-53,97r-48,0xm66,41r44,-97r56,0r-53,97r-47,0","w":193},"\u201d":{"d":"22,-183r44,-97r56,0r-53,97r-47,0xm110,-183r44,-97r56,0r-52,97r-48,0","w":193,"k":{" ":13}},"\u00bb":{"d":"204,-103r-77,84r-33,-29r55,-63r-34,-69r40,-21xm109,-103r-77,84r-33,-29r55,-63r-35,-69r40,-21"},"\u2026":{"d":"27,0r10,-56r57,0r-11,56r-56,0xm147,0r10,-56r56,0r-10,56r-56,0xm266,0r11,-56r56,0r-10,56r-57,0","w":360},"\u2030":{"d":"183,5v-28,0,-51,-14,-51,-50v0,-39,22,-85,69,-85v28,0,51,14,51,50v0,39,-22,85,-69,85xm184,-22v21,0,30,-35,30,-62v0,-10,-3,-19,-15,-19v-21,0,-29,35,-29,62v0,10,2,19,14,19xm316,-22v21,0,30,-35,30,-62v0,-10,-3,-19,-15,-19v-21,0,-29,35,-29,62v0,10,2,19,14,19xm314,5v-28,0,-50,-14,-50,-50v0,-39,22,-85,69,-85v28,0,50,14,50,50v0,39,-22,85,-69,85xm67,-128v-28,0,-50,-13,-50,-49v0,-39,22,-85,69,-85v28,0,50,13,50,49v0,39,-22,85,-69,85xm69,-155v21,0,29,-35,29,-62v0,-10,-2,-18,-14,-18v-21,0,-30,34,-30,61v0,10,3,19,15,19xm22,9r194,-275r31,0r-195,275r-30,0","w":399},"\u00bf":{"d":"134,-129v6,54,-65,61,-74,106v0,14,10,23,25,23v30,0,33,-26,34,-32r54,10v0,9,-21,67,-89,67v-96,0,-102,-85,-48,-120v21,-14,47,-19,49,-54r49,0xm152,-217r-11,56r-56,0r10,-56r57,0","w":200},"`":{"d":"8,-289r73,0r38,52r-47,0","w":100},"\u00b4":{"d":"47,-237r39,-52r75,0r-67,52r-47,0","w":100},"\u02c6":{"d":"0,-237r53,-52r59,0r31,52r-43,0r-19,-27r-31,27r-50,0","w":100},"\u02dc":{"d":"34,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r29,0v5,12,-17,63,-59,49v-13,-8,-51,-20,-52,2","w":100},"\u00af":{"d":"11,-248r6,-32r123,0r-6,32r-123,0","w":100},"\u02d8":{"d":"-9,-289r28,0v0,4,3,27,34,27v29,0,40,-21,42,-27r30,0v-3,9,-18,56,-72,56v-55,0,-62,-43,-62,-56","w":100},"\u02d9":{"d":"46,-239r9,-48r63,0r-9,48r-63,0","w":100},"\u00a8":{"d":"-3,-239r9,-48r63,0r-9,48r-63,0xm82,-239r9,-48r63,0r-9,48r-63,0","w":100},"\u02da":{"d":"36,-270v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm58,-270v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":100},"\u00b8":{"d":"2,31r24,-32r22,0r-16,23v19,-4,39,5,39,25v0,42,-70,38,-92,23r10,-17v10,6,47,15,48,-5v1,-10,-18,-11,-26,-7","w":100},"\u02dd":{"d":"-9,-237r31,-52r65,0r-55,52r-41,0xm67,-237r40,-52r65,0r-64,52r-41,0","w":100},"\u02db":{"d":"93,38r-6,29v-16,14,-90,18,-86,-19v3,-28,38,-47,61,-60r32,0v-12,11,-39,24,-40,43v-2,16,28,14,39,7","w":100},"\u02c7":{"d":"17,-289r43,0r20,27r31,-27r50,0r-53,52r-59,0","w":100},"\u2014":{"d":"-9,-91r9,-39r360,0r-9,39r-360,0","w":360},"\u00c6":{"d":"155,0r11,-55r-75,0r-37,55r-79,0r184,-256r204,0r-10,52r-93,0r-9,47r86,0r-10,53r-86,0r-10,52r96,0r-10,52r-162,0xm175,-105v4,-34,18,-75,18,-106v-19,36,-46,72,-68,106r50,0","w":360},"\u00aa":{"d":"86,-129v0,-5,4,-13,2,-17v-18,26,-79,29,-76,-15v3,-41,55,-46,92,-51v1,-13,5,-24,-11,-23v-18,0,-23,14,-25,17r-36,-10v6,-13,20,-34,61,-34v42,0,63,18,54,58r-16,75r-45,0xm94,-168r5,-22v-16,4,-42,4,-42,20v-1,19,31,10,37,2","w":142},"\u0141":{"d":"0,0r16,-81r-26,15r6,-36r27,-16r26,-138r70,0r-18,93r71,-41r-6,36r-72,41r-14,72r96,0r-10,55r-166,0","w":193,"k":{"T":33,"V":33,"W":29,"y":14,"\u00fd":14,"\u00ff":14,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":40,"\u2019":40}},"\u00d8":{"d":"195,-169r-109,100v7,17,21,23,36,23v61,-3,74,-78,73,-123xm82,-87r108,-100v-7,-16,-20,-22,-35,-22v-61,3,-74,76,-73,122xm-1,-11r27,-24v-49,-94,13,-227,132,-227v34,0,62,9,82,29r26,-24r12,11r-27,25v47,95,-7,228,-131,227v-36,0,-65,-10,-84,-29r-25,23","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0152":{"d":"173,-261v60,0,124,6,189,5r-10,52r-92,0r-9,47r85,0r-10,53r-85,0r-10,52r95,0r-10,52v-134,-5,-306,35,-306,-109v0,-45,28,-152,163,-152xm163,-55r28,-148v-61,-16,-108,29,-108,88v0,48,29,61,80,60","w":360,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00ba":{"d":"9,-180v0,-35,27,-82,80,-82v41,0,63,21,63,53v0,35,-27,83,-81,83v-41,0,-62,-21,-62,-54xm54,-175v0,14,7,20,18,20v18,0,34,-26,34,-58v0,-14,-6,-21,-18,-21v-17,0,-34,27,-34,59","w":142},"\u00e6":{"d":"323,-89r-138,0v-6,24,1,47,28,46v19,0,33,-18,37,-26r56,19v-12,19,-39,55,-101,55v-25,0,-58,-11,-72,-35v-28,34,-138,62,-138,-21v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v44,0,60,18,66,26v51,-54,151,-23,147,64v0,14,-2,35,-6,43xm192,-133r70,0v10,-22,-6,-42,-27,-42v-27,0,-39,27,-43,42xm119,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3","w":339},"\u0131":{"d":"-2,0r41,-217r68,0r-41,217r-68,0","w":113},"\u0142":{"d":"-2,0r19,-100r-27,18r5,-34r28,-18r28,-146r68,0r-19,98r25,-15r-6,33r-25,16r-28,148r-68,0","w":113},"\u00f8":{"d":"152,-138r-79,74v3,15,13,21,28,21v30,0,51,-54,51,-95xm72,-84r78,-72v-4,-13,-13,-18,-27,-18v-36,0,-51,54,-51,90xm-10,-6r28,-26v-40,-77,10,-190,108,-190v31,0,54,9,69,23r28,-26r10,11r-28,27v42,77,-8,192,-107,192v-32,0,-56,-10,-71,-26r-27,26","w":233,"k":{",":13,".":13}},"\u0153":{"d":"270,-69r56,19v-12,19,-39,55,-101,55v-26,0,-46,-8,-61,-26v-12,13,-35,26,-73,26v-54,0,-88,-34,-88,-90v0,-63,43,-137,122,-137v37,0,58,11,70,24v50,-47,153,-26,153,66v0,14,-1,35,-5,43r-139,0v-4,25,2,47,29,46v19,0,33,-18,37,-26xm212,-133r70,0v8,-23,-6,-42,-27,-42v-27,0,-39,27,-43,42xm71,-77v0,24,11,34,28,34v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97","w":360,"k":{",":13,".":13}},"\u00df":{"d":"-2,0r37,-193v13,-61,46,-91,110,-91v44,0,80,18,80,63v0,34,-23,64,-61,68r-2,3v19,3,54,15,54,59v0,65,-65,113,-136,91r17,-49v29,13,58,-10,56,-45v-1,-27,-19,-32,-41,-31r8,-46v26,1,40,-8,41,-42v-7,-38,-51,-24,-57,10r-38,203r-68,0","w":240,"k":{",":9,".":9}},"\u00b9":{"d":"56,-105r22,-110r-39,25r-17,-27r68,-41r43,0r-32,153r-45,0","w":138},"\u00ac":{"d":"156,-39r0,-71r-139,0r0,-43r182,0r0,114r-43,0","w":216},"\u00b5":{"d":"-15,70r54,-287r68,0r-28,150v5,34,50,16,54,-6r28,-144r67,0r-41,217r-68,0v1,-8,6,-18,4,-25v-2,16,-41,41,-56,18r-15,77r-67,0","w":233},"\u2122":{"d":"53,-108r0,-116r-40,0r0,-32r124,0r0,32r-41,0r0,116r-43,0xm307,-108r0,-97r-32,97r-32,0r-33,-97r0,97r-39,0r0,-148r56,0r32,86r32,-86r56,0r0,148r-40,0","w":360},"\u00d0":{"d":"0,0r23,-123r-27,0r5,-27r27,0r21,-106r103,0v68,0,107,40,107,108v0,85,-61,148,-141,148r-118,0xm143,-150r-5,27r-44,0r-14,71v74,10,106,-34,106,-98v0,-40,-30,-59,-77,-53r-10,53r44,0","w":273,"k":{"V":6,"Y":27,"\u00dd":27,"\u0178":27,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00bd":{"d":"56,9r149,-275r30,0r-149,275r-30,0xm41,-105r23,-110r-40,25r-16,-27r68,-41r42,0r-31,153r-46,0xm165,0r6,-28r71,-55v15,-12,23,-21,23,-31v0,-10,-7,-15,-17,-15v-17,0,-22,17,-22,24r-38,-7v5,-18,17,-45,64,-45v72,0,68,69,25,89v-17,14,-37,25,-53,40r64,0r-6,28r-117,0","w":320},"\u00b1":{"d":"87,-54r0,-42r-70,0r0,-44r70,0r0,-42r43,0r0,42r69,0r0,44r-69,0r0,42r-43,0xm17,0r0,-43r182,0r0,43r-182,0","w":216},"\u00de":{"d":"90,-108v38,2,73,1,73,-36v0,-34,-29,-29,-60,-29xm0,0r49,-256r70,0r-6,31v66,-4,120,9,118,69v-2,83,-64,108,-150,100r-11,56r-70,0","w":226},"\u00bc":{"d":"226,0r5,-23r-70,0r6,-34r87,-97r46,0r-21,102r21,0r-6,29r-21,0r-5,23r-42,0xm239,-52v4,-21,13,-45,15,-64r-56,64r41,0xm70,9r149,-275r31,0r-149,275r-31,0xm56,-105r22,-110r-39,25r-17,-27r68,-41r43,0r-32,153r-45,0","w":320},"\u00f7":{"d":"17,-69r0,-44r182,0r0,44r-182,0xm75,-166v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34xm75,-17v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":216},"\u00a6":{"d":"18,63r0,-126r44,0r0,126r-44,0xm18,-117r0,-126r44,0r0,126r-44,0","w":79},"\u00b0":{"d":"20,-202v0,-33,28,-60,61,-60v33,0,60,27,60,60v0,33,-27,61,-60,61v-33,0,-61,-28,-61,-61xm56,-202v0,14,11,25,25,25v14,0,24,-11,24,-25v0,-14,-10,-24,-24,-24v-14,0,-25,10,-25,24","w":144},"\u00fe":{"d":"-14,70r67,-350r68,0r-15,85v13,-15,35,-27,57,-27v43,0,62,36,62,75v0,73,-31,152,-100,152v-25,0,-41,-11,-53,-28r-18,93r-68,0xm97,-154r-17,92v4,5,12,17,28,17v35,0,48,-50,48,-89v0,-44,-40,-42,-59,-20","w":240,"k":{",":13,".":13}},"\u00be":{"d":"237,0r5,-23r-71,0r6,-34r87,-97r46,0r-21,102r21,0r-6,29r-21,0r-5,23r-41,0xm249,-52v4,-21,13,-45,15,-64r-56,64r41,0xm79,9r149,-275r31,0r-149,275r-31,0xm59,-169r5,-30v10,0,39,1,39,-21v0,-11,-9,-14,-17,-14v-15,0,-19,12,-19,16r-35,-10v1,-4,14,-34,59,-34v77,0,64,74,11,76v15,5,32,12,32,34v0,25,-22,50,-66,50v-49,0,-57,-27,-58,-41r40,-7v0,5,0,19,18,19v13,0,22,-10,22,-22v0,-17,-17,-18,-31,-16","w":320},"\u00b2":{"d":"4,-105r6,-29r72,-54v15,-12,22,-21,22,-31v0,-10,-7,-15,-17,-15v-17,0,-22,16,-22,23r-38,-6v5,-18,17,-45,64,-45v72,0,65,61,26,89r-54,39r64,0r-5,29r-118,0","w":138},"\u00ae":{"d":"167,-55r-32,-59r-13,0r0,59r-34,0r0,-146v51,1,118,-10,118,42v0,26,-17,42,-38,44r35,60r-36,0xm122,-141v21,0,48,4,48,-17v0,-21,-28,-15,-48,-16r0,33xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm42,-128v0,56,46,102,102,102v56,0,102,-46,102,-102v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102","w":288},"\u2212":{"d":"17,-69r0,-44r182,0r0,44r-182,0","w":216},"\u00f0":{"d":"52,-227r38,-19r-20,-20r46,-26v8,6,20,16,26,22r42,-22r18,21r-42,21v24,28,53,63,53,120v0,63,-34,135,-119,135v-51,0,-90,-23,-90,-89v0,-68,61,-136,131,-110v-7,-12,-17,-24,-26,-33r-41,20xm71,-73v0,24,10,33,27,33v34,0,49,-48,49,-83v0,-22,-8,-36,-28,-36v-33,0,-48,50,-48,86","w":233},"\u00d7":{"d":"78,-91r-55,-56r30,-29r55,55r55,-55r30,29r-56,56r56,55r-30,30r-55,-56r-55,56r-30,-30","w":216},"\u00b3":{"d":"59,-169r5,-30v10,0,39,1,39,-21v0,-11,-9,-14,-17,-14v-15,0,-19,12,-19,16r-35,-10v1,-4,14,-34,59,-34v77,0,64,74,11,76v15,5,32,12,32,34v0,25,-22,50,-66,50v-49,0,-57,-27,-58,-41r40,-7v0,5,0,19,18,19v13,0,22,-10,22,-22v0,-17,-17,-18,-31,-16","w":138},"\u00a9":{"d":"177,-109r36,0v-4,37,-34,57,-66,57v-44,0,-74,-34,-74,-77v0,-85,129,-111,140,-23r-36,0v-3,-17,-15,-23,-30,-23v-23,0,-35,18,-35,45v0,46,58,64,65,21xm10,-128v0,-74,60,-134,134,-134v74,0,134,60,134,134v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm42,-128v0,56,46,102,102,102v56,0,102,-46,102,-102v0,-56,-46,-102,-102,-102v-56,0,-102,46,-102,102","w":288},"\u00c1":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm134,-276r39,-53r75,0r-68,53r-46,0","w":273},"\u00c2":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm87,-276r52,-53r59,0r32,53r-43,0r-19,-27r-31,27r-50,0","w":273},"\u00c4":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm84,-278r9,-48r63,0r-9,48r-63,0xm169,-278r9,-48r63,0r-10,48r-62,0","w":273},"\u00c0":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm95,-329r73,0r38,53r-47,0","w":273},"\u00c5":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm125,-304v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm147,-304v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":273},"\u00c3":{"d":"178,0r-7,-53r-93,0r-28,53r-74,0r144,-256r89,0r39,256r-70,0xm165,-103r-12,-101v-14,36,-32,67,-48,101r60,0xm121,-276r-29,0v0,-10,5,-51,47,-51v21,0,58,28,64,0r29,0v6,12,-21,66,-59,48v-14,-6,-53,-20,-52,3","w":273},"\u00c7":{"d":"171,-88r60,14v-1,6,-21,80,-111,80r-12,16v19,-4,40,4,40,25v0,42,-70,38,-92,23r10,-17v9,7,46,15,47,-5v1,-10,-17,-11,-25,-7r-9,-10r19,-26v-54,-7,-89,-41,-89,-107v0,-78,48,-160,149,-160v82,0,93,66,94,78r-66,13v-1,-14,-8,-38,-35,-38v-51,0,-69,70,-69,116v0,33,14,47,38,47v31,0,48,-34,51,-42","w":253,"k":{",":9,".":9}},"\u00c9":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm110,-276r40,-53r75,0r-68,53r-47,0","w":226},"\u00ca":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm63,-276r53,-53r59,0r32,53r-44,0r-19,-27r-30,27r-51,0","w":226},"\u00cb":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm60,-278r10,-48r62,0r-9,48r-63,0xm145,-278r10,-48r62,0r-9,48r-63,0","w":226},"\u00c8":{"d":"0,0r49,-256r179,0r-9,52r-110,0r-9,47r103,0r-10,53r-103,0r-10,52r113,0r-10,52r-183,0xm71,-329r74,0r37,53r-46,0","w":226},"\u00cd":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm57,-276r39,-53r75,0r-67,53r-47,0","w":119},"\u00ce":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm10,-276r53,-53r59,0r31,53r-43,0r-19,-27r-31,27r-50,0","w":119},"\u00cf":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm7,-278r10,-48r62,0r-9,48r-63,0xm92,-278r10,-48r62,0r-9,48r-63,0","w":119},"\u00cc":{"d":"0,0r49,-256r70,0r-49,256r-70,0xm18,-329r73,0r38,53r-47,0","w":119},"\u00d1":{"d":"0,0r49,-256r89,0r48,185r3,0v8,-60,23,-126,33,-185r66,0r-49,256r-90,0r-40,-138v-5,-12,-5,-33,-11,-45v-6,63,-23,123,-33,183r-65,0xm127,-276r-29,0v0,-10,5,-51,47,-51v22,0,59,28,65,0r29,0v6,12,-20,65,-59,48v-15,-7,-53,-20,-53,3","w":286,"k":{",":9,".":9}},"\u00d3":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm137,-276r39,-53r75,0r-67,53r-47,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d4":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm90,-276r53,-53r59,0r31,53r-43,0r-19,-27r-31,27r-50,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d6":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm87,-278r9,-48r63,0r-9,48r-63,0xm172,-278r9,-48r63,0r-9,48r-63,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d2":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm98,-329r73,0r38,53r-47,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d5":{"d":"268,-154v0,78,-48,160,-148,160v-69,0,-111,-38,-111,-100v0,-80,49,-168,149,-168v65,0,110,34,110,108xm195,-160v0,-37,-18,-49,-40,-49v-58,0,-73,75,-73,114v0,37,18,49,40,49v58,0,73,-77,73,-114xm124,-276r-29,0v0,-10,5,-51,47,-51v21,0,58,28,64,0r29,0v0,10,-4,51,-46,51v-20,0,-61,-28,-65,0","w":280,"k":{"T":6,"V":6,"Y":23,"\u00dd":23,"\u0178":23,",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0160":{"d":"0,-60r63,-19v2,10,9,35,39,35v24,0,37,-9,37,-27v0,-27,-48,-35,-70,-47v-26,-14,-41,-31,-41,-61v0,-50,44,-83,106,-83v61,0,90,29,92,60r-62,17v-1,-7,-5,-27,-34,-27v-15,0,-32,7,-32,24v0,28,39,31,60,41v84,37,69,153,-59,153v-84,0,-98,-52,-99,-66xm84,-329r43,0r20,27r30,-27r50,0r-52,53r-60,0","w":233,"k":{",":13,".":13}},"\u00da":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm130,-276r40,-53r75,0r-68,53r-47,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00db":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm84,-276r52,-53r59,0r32,53r-43,0r-19,-27r-31,27r-50,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dc":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm83,-278r9,-48r63,0r-10,48r-62,0xm168,-278r9,-48r63,0r-10,48r-62,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00d9":{"d":"15,-74v0,-61,22,-123,32,-182r70,0r-27,142v-8,33,-10,68,27,68v38,0,47,-21,52,-50r30,-160r68,0v-30,110,-7,262,-155,262v-56,0,-97,-25,-97,-80xm91,-329r74,0r37,53r-46,0","w":266,"k":{",":13,".":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},"\u00dd":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0xm127,-276r39,-53r75,0r-67,53r-47,0","w":259,"k":{"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"\u0178":{"d":"71,0r18,-94r-63,-162r76,0v12,32,21,72,31,104v18,-36,47,-70,69,-104r81,0r-125,162r-18,94r-69,0xm77,-278r9,-48r63,0r-9,48r-63,0xm162,-278r9,-48r63,0r-9,48r-63,0","w":259,"k":{"O":20,"\u00d8":20,"\u0152":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"\u00d5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,",":40,".":40,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"-":33,"S":9,"\u0160":9,":":20,";":20}},"\u017d":{"d":"-14,0r11,-62r144,-141r-111,0r10,-53r193,0r-12,61r-146,141r119,0r-10,54r-198,0xm77,-329r43,0r20,27r31,-27r50,0r-53,53r-59,0","w":219},"\u00e1":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm107,-237r40,-52r74,0r-67,52r-47,0","w":219},"\u00e2":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm60,-237r53,-52r59,0r31,52r-43,0r-19,-27r-30,27r-51,0","w":219},"\u00e4":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm57,-239r10,-48r62,0r-9,48r-63,0xm142,-239r10,-48r62,0r-9,48r-63,0","w":219},"\u00e0":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm68,-289r73,0r38,52r-47,0","w":219},"\u00e5":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm96,-270v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm118,-270v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-19,-18,-19v-10,0,-18,9,-18,19","w":219},"\u00e3":{"d":"109,0v1,-8,6,-20,5,-27v-31,28,-47,32,-64,32v-27,0,-51,-17,-51,-56v0,-67,64,-88,138,-86v6,-23,4,-40,-20,-41v-22,0,-32,25,-35,30r-56,-17v10,-21,32,-57,94,-57v61,0,92,32,80,97r-23,125r-68,0xm123,-64r6,-34v-31,0,-64,7,-64,31v0,31,46,18,58,3xm94,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r30,0v4,12,-17,62,-59,49v-13,-8,-52,-20,-53,2","w":219},"\u00e7":{"d":"128,-79r59,15v-13,35,-42,67,-89,69r-13,17v19,-4,39,4,39,25v0,43,-69,37,-91,23r9,-17v10,6,47,15,48,-5v1,-10,-18,-11,-26,-7r-9,-10r21,-26v-45,-6,-70,-41,-70,-90v0,-58,29,-137,111,-137v59,0,83,30,85,66r-60,16v4,-20,-3,-34,-24,-35v-40,0,-46,80,-46,104v0,14,5,28,25,28v19,0,30,-21,31,-36","w":206,"k":{",":9,".":9}},"\u00e9":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm110,-237r40,-52r75,0r-68,52r-47,0","w":226,"k":{",":13,".":13}},"\u00ea":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm63,-237r53,-52r59,0r32,52r-44,0r-19,-27r-30,27r-51,0","w":226,"k":{",":13,".":13}},"\u00eb":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm60,-239r10,-48r62,0r-9,48r-63,0xm145,-239r10,-48r62,0r-9,48r-63,0","w":226,"k":{",":13,".":13}},"\u00e8":{"d":"138,-69r55,19v-12,19,-38,55,-93,55v-63,0,-95,-36,-95,-90v0,-69,48,-137,120,-137v76,0,105,63,85,133r-137,0v-6,23,0,46,27,46v19,0,34,-18,38,-26xm80,-133r70,0v8,-24,-7,-42,-28,-42v-27,0,-38,27,-42,42xm71,-289r74,0r37,52r-46,0","w":226,"k":{",":13,".":13}},"\u00ed":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm46,-237r40,-52r75,0r-68,52r-47,0","w":113},"\u00ee":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm7,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":113},"\u00ef":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm4,-239r9,-48r63,0r-9,48r-63,0xm89,-239r9,-48r63,0r-9,48r-63,0","w":113},"\u00ec":{"d":"-2,0r41,-217r68,0r-41,217r-68,0xm4,-289r73,0r37,52r-46,0","w":113},"\u00f1":{"d":"-2,0r41,-217r68,0r-6,30v15,-11,45,-35,75,-35v41,0,50,30,43,68r-30,154r-68,0r28,-149v-7,-34,-40,-4,-56,4r-27,145r-68,0xm104,-237r-29,0v0,-10,5,-50,47,-50v21,0,59,27,64,-1r30,0v4,12,-17,62,-59,49v-13,-8,-52,-20,-53,2","w":240},"\u00f3":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm113,-237r40,-52r75,0r-68,52r-47,0","w":233,"k":{",":13,".":13}},"\u00f4":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm67,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":233,"k":{",":13,".":13}},"\u00f6":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm64,-239r9,-48r63,0r-10,48r-62,0xm149,-239r9,-48r63,0r-10,48r-62,0","w":233,"k":{",":13,".":13}},"\u00f2":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm75,-289r73,0r37,52r-46,0","w":233,"k":{",":13,".":13}},"\u00f5":{"d":"4,-85v0,-58,42,-137,122,-137v62,0,94,36,94,90v0,58,-42,137,-122,137v-62,0,-94,-36,-94,-90xm100,-43v35,0,52,-62,52,-97v0,-24,-11,-34,-28,-34v-39,0,-52,58,-52,97v0,24,11,34,28,34xm101,-237r-29,0v0,-10,5,-50,47,-50v21,0,58,26,64,-1r29,0v4,12,-17,62,-59,49v-13,-7,-51,-20,-52,2","w":233,"k":{",":13,".":13}},"\u0161":{"d":"-6,-51r59,-17v1,9,3,26,29,26v15,0,26,-7,26,-18v1,-20,-35,-24,-52,-31v-21,-9,-39,-21,-39,-56v0,-47,41,-75,93,-75v58,0,79,37,84,52r-57,17v-1,-6,-4,-24,-27,-24v-18,0,-27,10,-27,20v-2,19,37,23,54,29v25,9,42,24,42,53v0,33,-24,80,-102,80v-63,0,-76,-32,-83,-56xm62,-289r43,0r20,27r31,-27r49,0r-52,52r-60,0","w":200,"k":{",":9,".":9}},"\u00fa":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm113,-237r40,-52r75,0r-68,52r-47,0","w":233},"\u00fb":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm67,-237r52,-52r59,0r32,52r-43,0r-19,-27r-31,27r-50,0","w":233},"\u00fc":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm64,-239r9,-48r63,0r-10,48r-62,0xm149,-239r9,-48r63,0r-10,48r-62,0","w":233},"\u00f9":{"d":"119,0r6,-30v-14,11,-42,35,-72,35v-41,0,-49,-36,-42,-73r28,-149r68,0r-28,149v4,29,44,11,53,-2r29,-147r67,0r-41,217r-68,0xm75,-289r73,0r37,52r-46,0","w":233},"\u00fd":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20xm104,-237r39,-52r75,0r-68,52r-46,0","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u00ff":{"d":"50,-3r-34,-214r70,0v2,50,10,100,6,151r3,0v14,-56,44,-101,65,-151r70,0r-122,230v-25,55,-74,72,-133,52r12,-48v22,13,66,1,63,-20xm54,-239r9,-48r63,0r-9,48r-63,0xm139,-239r9,-48r63,0r-9,48r-63,0","k":{",":27,".":27,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6}},"\u017e":{"d":"-15,0r10,-50r116,-122v-23,4,-61,2,-89,2r9,-47r172,0r-9,49r-117,123v25,-4,67,-1,97,-2r-9,47r-180,0xm62,-289r43,0r20,27r31,-27r49,0r-52,52r-60,0","w":200},"\u2206":{"d":"-19,0r7,-30r134,-233r64,0r33,232r-7,31r-231,0xm46,-43r117,0r-24,-164v-25,51,-64,113,-93,164","w":250},"\u2126":{"d":"-6,-43v16,-1,36,2,50,-1v-18,-20,-33,-54,-23,-100v13,-63,70,-118,141,-118v76,0,102,62,91,115v-9,47,-41,81,-68,104r51,0r-9,43r-104,0r7,-32v26,-14,53,-45,65,-103v10,-45,-3,-82,-42,-82v-37,0,-70,34,-80,84v-11,52,1,88,22,101r-6,32r-104,0","w":268},"\u03bc":{"d":"-15,70r54,-287r68,0r-28,150v5,34,50,16,54,-6r28,-144r67,0r-41,217r-68,0v1,-8,6,-18,4,-25v-2,16,-41,41,-56,18r-15,77r-67,0","w":233},"\u03c0":{"d":"226,-149r-25,0v-9,43,-26,106,-27,149r-53,0v-4,-40,19,-108,26,-149r-48,0v-10,38,-33,111,-54,149r-53,0v21,-43,45,-111,54,-149v-17,0,-28,1,-37,4r2,-36v45,-24,159,-9,229,-13","w":231},"\u20ac":{"d":"193,-13v-74,42,-189,13,-181,-81r-26,0v9,-9,8,-29,28,-27v1,-8,2,-17,5,-25r-24,0r17,-27r17,0v23,-78,129,-114,208,-68r-32,51v-26,-29,-88,-35,-102,17r92,0r-17,27r-84,0v-3,9,-5,17,-6,25r74,0r-17,27r-59,0v-7,41,35,63,76,42v15,-7,30,-16,42,-26"},"\u2113":{"d":"158,-72r17,22v-30,40,-64,54,-94,54v-47,-1,-59,-26,-57,-62v-7,5,-13,9,-21,14r-7,-28v13,-9,24,-16,36,-25r19,-89v14,-66,51,-97,91,-97v39,0,49,31,41,68v-9,43,-46,83,-101,126v-7,23,-4,50,21,50v19,0,41,-16,55,-33xm137,-245v-23,-7,-38,73,-44,107v30,-27,52,-56,57,-79v4,-17,1,-28,-13,-28","w":199},"\u212e":{"d":"95,-50v36,63,148,60,189,3r22,0v-27,31,-70,52,-118,52v-82,0,-148,-61,-148,-134v0,-74,66,-133,148,-133v83,1,151,59,149,137r-242,2r0,73xm283,-208v-37,-60,-140,-61,-185,-7v-7,21,-3,58,-2,83r187,-2r0,-74","w":349},"\u2202":{"d":"59,-230r-6,-39v13,-8,39,-22,76,-22v58,0,97,49,78,141v-20,93,-74,154,-142,154v-55,0,-70,-50,-62,-89v13,-59,57,-97,103,-97v31,0,43,20,49,28v11,-43,2,-94,-42,-93v-24,0,-43,9,-54,17xm80,-41v26,0,51,-39,61,-70v-19,-56,-77,-20,-85,28v-4,23,4,42,24,42","w":220},"\u220f":{"d":"293,-210r-38,0r0,246r-53,0r0,-246r-76,0r0,246r-53,0r0,-246r-38,0r0,-48r258,0r0,48","w":301},"\u2211":{"d":"232,36r-197,0r0,-34r88,-113r-85,-110r0,-37r188,0r0,46r-115,1r73,91r-82,107r130,0r0,49","w":238},"\u2219":{"d":"20,-102v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34v-18,0,-33,-16,-33,-34","w":106},"\u221a":{"d":"259,-310r-86,361r-42,0r-56,-159r-27,12r-9,-30r68,-27r37,112v4,12,5,26,9,34v18,-104,47,-202,69,-303r37,0","w":253},"\u221e":{"d":"222,-170v33,0,62,25,59,64v-5,78,-87,90,-127,24v-19,24,-39,42,-69,42v-31,0,-60,-25,-60,-64v0,-39,28,-66,64,-66v28,0,47,16,66,41v14,-17,33,-41,67,-41xm89,-68v20,0,35,-18,49,-35v-15,-21,-27,-39,-51,-39v-20,0,-33,16,-33,38v0,19,16,36,35,36xm219,-142v-22,0,-37,23,-49,37v22,28,33,37,51,37v43,-1,39,-74,-2,-74","w":298},"\u222b":{"d":"78,-217v0,-75,30,-113,93,-99r-5,37v-35,-14,-41,21,-41,67v0,100,48,311,-90,271r6,-37v36,9,44,-10,43,-59v0,-69,-6,-116,-6,-180","w":178},"\u2248":{"d":"77,-170v32,0,48,26,71,27v14,0,23,-11,33,-27r19,18v-13,23,-31,39,-52,39v-24,0,-48,-27,-73,-27v-17,0,-26,13,-35,26r-19,-17v11,-22,33,-39,56,-39xm77,-99v33,0,45,27,71,27v15,0,23,-10,33,-26r19,17v-13,23,-30,39,-52,39v-25,0,-48,-27,-73,-27v-17,0,-26,14,-35,27r-19,-18v11,-22,33,-39,56,-39"},"\u2260":{"d":"168,-191r-14,32r49,0r0,30r-61,0r-21,49r82,0r0,30r-94,0r-18,42r-24,-9r14,-33r-49,0r0,-30r61,0r21,-49r-82,0r0,-30r94,0r18,-42","w":220},"\u2264":{"d":"210,-37r-169,-83r0,-33r168,-83r0,35r-138,65r139,63r0,36xm211,7r-171,0r0,-31r171,0r0,31","w":227},"\u2265":{"d":"42,-236r168,83r0,33r-168,83r0,-36r138,-64r-138,-64r0,-35xm210,7r-170,0r0,-31r170,0r0,31","w":227},"\u25ca":{"d":"236,-129r-75,148r-43,0r-72,-148r74,-147r43,0xm189,-127v-16,-36,-37,-67,-48,-107v-12,37,-32,70,-48,104r48,107v12,-39,33,-69,48,-104","w":253},"\u00a0":{"w":106},"\u00ad":{"d":"1,-88r8,-45r90,0r-9,45r-89,0","w":106},"\u02c9":{"d":"11,-248r6,-32r123,0r-6,32r-123,0","w":100},"\u03a9":{"d":"-6,-43v16,-1,36,2,50,-1v-18,-20,-33,-54,-23,-100v13,-63,70,-118,141,-118v76,0,102,62,91,115v-9,47,-41,81,-68,104r51,0r-9,43r-104,0r7,-32v26,-14,53,-45,65,-103v10,-45,-3,-82,-42,-82v-37,0,-70,34,-80,84v-11,52,1,88,22,101r-6,32r-104,0","w":268},"\u2215":{"d":"-60,9r149,-275r31,0r-149,275r-31,0","w":60}}});
;
/*!
 * Copyright (c) 1991 Adobe Systems Incorporated.  All Rights Reserved.
 * Vectora is a trademark of Linotype-Hell AG and/or its subsidiaries.
 */
Cufon.registerFont({"w":213,"face":{"font-family":"Vectora Black","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 10 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-23 -292 363 90","underline-thickness":"18","underline-position":"-36","stemh":"50","stemv":"68","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":106},"!":{"d":"34,-256r65,0r-9,168r-47,0xm40,0r0,-55r54,0r0,55r-54,0","w":133},"\"":{"d":"117,-183r0,-97r46,0r0,97r-46,0xm30,-183r0,-97r47,0r0,97r-47,0","w":193},"#":{"d":"95,-150r-6,44r33,0r6,-44r-33,0xm52,-106r6,-44r-31,0r0,-35r36,0r10,-71r37,0r-10,71r33,0r10,-71r37,0r-10,71r27,0r0,35r-32,0r-6,44r27,0r0,34r-32,0r-10,72r-37,0r10,-72r-33,0r-10,72r-37,0r11,-72r-32,0r0,-34r36,0"},"$":{"d":"5,-57r57,-16v8,19,14,29,35,30r0,-61v-25,-5,-86,-17,-86,-76v0,-58,47,-80,86,-82r0,-23r17,0r0,23v48,1,75,19,87,59r-56,13v-3,-8,-8,-24,-31,-26r0,58v44,9,94,20,94,79v0,60,-41,80,-94,84r0,22r-17,0r0,-22v-44,-1,-76,-20,-92,-62xm97,-161r0,-55v-15,1,-31,10,-31,27v0,21,20,25,31,28xm114,-101r0,58v26,-1,35,-14,35,-27v0,-22,-16,-28,-35,-31"},"%":{"d":"76,-153v20,0,22,-25,22,-40v0,-15,-2,-40,-22,-40v-20,0,-22,25,-22,40v0,15,2,40,22,40xm76,-124v-46,0,-64,-33,-64,-69v0,-36,18,-69,64,-69v46,0,64,33,64,69v0,36,-18,69,-64,69xm231,5v-46,0,-64,-33,-64,-69v0,-36,18,-69,64,-69v46,0,64,33,64,69v0,36,-18,69,-64,69xm231,-24v20,0,22,-25,22,-40v0,-15,-2,-40,-22,-40v-20,0,-22,25,-22,40v0,15,2,40,22,40xm67,9r140,-275r32,0r-140,275r-32,0","w":306},"&":{"d":"282,0r-71,0r-20,-18v-18,14,-41,23,-73,23v-74,0,-105,-36,-105,-80v0,-39,27,-56,52,-66v-12,-9,-34,-29,-34,-59v0,-52,48,-62,91,-62v50,0,88,18,88,58v0,41,-27,55,-60,72r49,48v15,-15,17,-42,17,-53r55,0v-1,22,-14,66,-40,87xm161,-50r-60,-58v-36,12,-27,69,19,69v20,0,33,-5,41,-11xm94,-195v0,15,15,26,23,33v29,-4,47,-58,4,-57v-17,0,-27,8,-27,24","w":286},"(":{"d":"81,-283r34,23v-61,83,-60,211,0,293r-34,24v-23,-26,-66,-89,-66,-170v0,-81,43,-144,66,-170","w":126},")":{"d":"12,-260r33,-23v23,26,67,89,67,170v0,81,-44,144,-67,170r-33,-24v60,-82,61,-211,0,-293","w":126},"*":{"d":"10,-188r11,-35r52,21r-6,-54r38,0r-5,54r52,-21r11,35r-54,13r37,42r-30,21r-30,-47r-29,47r-30,-21r36,-42","w":172},"+":{"d":"86,-113r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0r0,-69r-69,0r0,-44r69,0","w":216},",":{"d":"30,-55r55,0r-34,97r-48,0","w":106},"-":{"d":"9,-89r0,-43r89,0r0,43r-89,0","w":106},".":{"d":"26,0r0,-55r54,0r0,55r-54,0","w":106},"\/":{"d":"148,-256r-109,268r-40,-12r109,-268","w":146},"0":{"d":"73,-129v0,68,10,89,34,89v24,0,33,-21,33,-89v0,-71,-10,-88,-33,-88v-23,0,-34,17,-34,88xm8,-129v0,-69,18,-133,99,-133v81,0,99,64,99,133v0,68,-19,134,-99,134v-80,0,-99,-66,-99,-134"},"1":{"d":"18,-185r90,-71r61,0r0,256r-66,0r0,-191r-54,45"},"2":{"d":"13,0r0,-45v29,-31,130,-118,117,-140v0,-4,-2,-32,-30,-32v-23,0,-30,25,-31,42r-59,-11v2,-21,17,-76,97,-76v80,0,88,53,88,74v0,48,-66,105,-105,143r103,0r0,45r-180,0"},"3":{"d":"76,-109r0,-47v24,0,52,-1,52,-32v0,-18,-10,-29,-27,-29v-23,0,-27,20,-28,28r-56,-15v18,-44,48,-58,91,-58v65,0,84,36,84,65v0,48,-43,57,-54,63v35,5,58,24,58,65v0,38,-28,74,-92,74v-66,0,-85,-33,-93,-69r58,-13v2,18,10,37,31,37v24,0,31,-23,31,-35v0,-30,-24,-36,-55,-34"},"4":{"d":"6,-93r104,-163r65,0r0,170r32,0r0,46r-32,0r0,40r-59,0r0,-40r-110,0r0,-53xm118,-84r1,-108v-19,44,-42,74,-64,108r63,0"},"5":{"d":"33,-256r153,0r0,46r-99,0r0,41v58,-9,108,16,109,83v0,46,-22,91,-94,91v-81,0,-85,-67,-85,-71r51,-11v1,10,4,38,31,38v27,0,33,-26,33,-42v0,-67,-73,-45,-101,-32"},"6":{"d":"135,-81v0,-32,-26,-44,-49,-33v-1,2,-8,15,-8,37v0,26,12,37,28,37v23,0,29,-20,29,-41xm102,-256r77,0r-77,97v47,-16,97,6,97,75v0,62,-45,89,-94,89v-62,0,-91,-46,-91,-94v1,-67,55,-120,88,-167"},"7":{"d":"13,0r109,-207r-105,0r0,-49r176,0r0,44r-106,212r-74,0"},"8":{"d":"79,-194v0,18,16,27,30,36v13,-8,25,-21,25,-36v0,-9,-7,-25,-29,-25v-15,0,-26,10,-26,25xm78,-67v0,12,8,29,29,29v26,0,28,-25,28,-30v0,-17,-11,-26,-27,-40v-17,8,-30,21,-30,41xm19,-194v0,-49,40,-68,87,-68v51,0,88,22,88,63v0,29,-20,47,-45,61v24,14,49,31,49,70v0,38,-27,73,-92,73v-54,0,-91,-26,-91,-71v0,-35,21,-48,49,-64v-33,-18,-45,-38,-45,-64"},"9":{"d":"78,-177v0,36,28,44,49,33v1,-3,8,-17,8,-37v0,-27,-13,-36,-28,-36v-22,0,-29,18,-29,40xm33,0r79,-98v-47,12,-98,0,-98,-76v0,-61,41,-88,94,-88v52,0,91,33,91,94v0,67,-57,120,-89,168r-77,0"},":":{"d":"26,-217r54,0r0,55r-54,0r0,-55xm26,-55r54,0r0,55r-54,0r0,-55","w":106},";":{"d":"30,-55r55,0r-34,97r-48,0xm26,-217r54,0r0,55r-54,0r0,-55","w":106},"<":{"d":"199,-38r0,41r-182,-77r0,-34r182,-77r0,41r-127,53","w":216},"=":{"d":"199,-153r0,43r-182,0r0,-43r182,0xm199,-72r0,43r-182,0r0,-43r182,0","w":216},">":{"d":"17,3r0,-41r127,-53r-127,-53r0,-41r182,77r0,34","w":216},"?":{"d":"190,-195v3,60,-64,51,-61,107r-49,0v-11,-62,51,-59,53,-104v0,-17,-15,-25,-27,-25v-25,0,-29,22,-31,32r-56,-10v9,-41,37,-67,88,-67v77,0,83,52,83,67xm77,0r0,-55r54,0r0,55r-54,0","w":200},"@":{"d":"144,-161v-40,-4,-53,70,-9,72v43,4,51,-72,9,-72xm224,-49r35,0v-26,35,-62,55,-115,55v-72,0,-132,-54,-132,-137v0,-74,54,-131,132,-131v78,0,132,39,132,109v0,84,-66,98,-87,98v-16,1,-23,-6,-29,-16v-30,34,-89,10,-89,-43v0,-69,72,-107,112,-61r3,-18r34,0r-18,97v0,5,3,9,9,9v15,0,32,-16,32,-55v0,-65,-39,-88,-99,-88v-58,0,-99,42,-99,99v0,66,41,105,99,105v38,0,62,-9,80,-23","w":288},"A":{"d":"105,-103r62,0v-11,-30,-21,-73,-31,-101v-8,38,-20,67,-31,101xm183,-256r90,256r-74,0r-16,-53r-95,0r-17,53r-71,0r94,-256r89,0","w":273},"B":{"d":"24,0r0,-256r108,0v22,0,91,0,91,64v1,51,-37,52,-47,61v21,3,54,14,54,62v0,69,-73,69,-100,69r-106,0xm91,-156v29,0,65,6,65,-25v0,-34,-36,-23,-65,-25r0,50xm91,-50v33,0,71,5,71,-28v0,-37,-39,-26,-71,-28r0,56","w":246},"C":{"d":"179,-88r64,14v-14,53,-45,80,-103,80v-65,0,-127,-35,-127,-134v0,-99,66,-134,127,-134v66,0,95,42,101,78r-65,12v-2,-13,-8,-38,-40,-38v-19,0,-49,13,-49,80v0,42,9,84,49,84v29,0,38,-25,43,-42","w":253},"D":{"d":"24,0r0,-256r105,0v78,0,128,43,128,126v0,88,-55,130,-133,130r-100,0xm94,-204r0,151v61,5,89,-19,89,-75v0,-52,-29,-83,-89,-76","w":273},"E":{"d":"24,0r0,-256r178,0r0,52r-109,0r0,48r102,0r0,52r-102,0r0,51r113,0r0,53r-182,0","w":226},"F":{"d":"24,0r0,-256r179,0r0,52r-109,0r0,54r105,0r0,53r-105,0r0,97r-70,0","w":219},"G":{"d":"138,-98r0,-50r104,0r0,124v-14,12,-59,30,-99,30v-67,0,-130,-33,-130,-134v0,-99,66,-134,127,-134v50,0,93,21,104,67r-65,17v-5,-15,-13,-32,-39,-32v-43,0,-53,44,-53,82v0,41,10,82,53,82v10,0,28,-2,36,-9r0,-43r-38,0","w":266},"H":{"d":"24,0r0,-256r70,0r0,95r85,0r0,-95r70,0r0,256r-70,0r0,-108r-85,0r0,108r-70,0","w":273},"I":{"d":"25,0r0,-256r70,0r0,256r-70,0","w":120},"J":{"d":"144,-256r0,159v0,37,-4,103,-91,103v-37,0,-52,-14,-58,-19r28,-46v16,18,51,24,51,-17r0,-180r70,0","w":166},"K":{"d":"172,0r-78,-112r0,112r-70,0r0,-256r70,0r1,105r76,-105r82,0r-94,121r100,135r-87,0","w":259},"L":{"d":"24,0r0,-256r70,0r0,202r96,0r0,54r-166,0","w":193},"M":{"d":"26,0r0,-256r106,0r38,129v4,6,4,31,11,40v12,-62,33,-112,50,-169r103,0r0,256r-68,0r0,-148v0,-19,2,-47,3,-57r-4,0v-15,65,-41,141,-60,205r-52,0r-61,-205r-3,0v4,58,1,141,2,205r-65,0","w":360},"N":{"d":"24,0r0,-256r88,0v28,61,63,112,85,180r4,0v-7,-47,-3,-124,-4,-180r66,0r0,256r-89,0v-26,-57,-67,-118,-84,-180r-3,0v4,56,1,121,2,180r-65,0","w":286},"O":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm13,-128v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,99,-61,134,-127,134v-61,0,-127,-35,-127,-134","w":280},"P":{"d":"24,0r0,-256v94,2,203,-21,203,81v0,45,-25,87,-88,87r-45,0r0,88r-70,0xm93,-206r0,67v35,2,66,0,66,-34v0,-30,-32,-37,-66,-33","w":233},"Q":{"d":"87,-128v0,45,10,82,53,82v42,0,53,-37,53,-82v0,-45,-11,-82,-53,-82v-43,0,-53,37,-53,82xm261,29r-38,41r-97,-64v-35,-3,-113,-28,-113,-134v0,-99,66,-134,127,-134v75,0,127,35,127,134v0,74,-33,108,-67,122","w":280},"R":{"d":"93,-206r0,56v33,-4,61,15,67,-29v4,-28,-36,-29,-67,-27xm24,0r0,-256r117,0v19,0,85,-1,85,72v0,32,-11,58,-42,71r57,113r-78,0r-42,-98r-27,0r0,98r-70,0","w":246},"S":{"d":"13,-58r62,-24v1,10,9,37,41,37v21,0,35,-9,35,-25v0,-25,-54,-33,-77,-43v-32,-12,-59,-33,-59,-69v0,-54,49,-80,109,-80v74,0,86,43,91,57r-62,20v-1,-8,-11,-27,-35,-27v-23,0,-33,9,-33,22v0,27,58,36,81,46v33,15,54,31,54,66v0,38,-25,84,-108,84v-78,0,-94,-48,-99,-64","w":233},"T":{"d":"2,-202r0,-54r203,0r0,54r-66,0r0,202r-71,0r0,-202r-66,0","w":206},"U":{"d":"24,-95r0,-161r70,0r0,161v0,27,10,49,40,49v32,0,41,-23,41,-49r0,-161r68,0r0,161v0,64,-39,101,-109,101v-59,0,-110,-25,-110,-101","w":266},"V":{"d":"78,0r-78,-256r74,0r50,194r2,0r57,-194r70,0r-85,256r-90,0","w":253},"W":{"d":"62,0r-58,-256r69,0r22,115v4,22,9,61,11,88r4,0v4,-83,20,-130,30,-203r89,0r22,116v5,30,10,66,11,87r4,0v4,-72,19,-138,31,-203r66,0r-55,256r-89,0r-27,-145v-3,-18,-6,-38,-7,-59r-4,0v-6,68,-21,139,-31,204r-88,0","w":366},"X":{"d":"1,0r81,-134r-76,-122r81,0r45,87v14,-36,28,-55,43,-87r75,0r-73,122r82,134r-82,0v-18,-29,-34,-67,-51,-96v-12,31,-33,66,-48,96r-77,0","w":259},"Y":{"d":"95,0r0,-95r-94,-161r81,0v18,32,35,69,51,103v12,-39,31,-69,48,-103r77,0r-93,161r0,95r-70,0","w":259},"Z":{"d":"11,0r0,-60r115,-144r-111,0r0,-52r193,0r0,55r-118,148r119,0r0,53r-198,0","w":219},"[":{"d":"15,47r0,-320r81,0r0,33r-28,0r0,254r28,0r0,33r-81,0","w":119},"\\":{"d":"108,12r-109,-268r40,-12r109,268","w":146},"]":{"d":"104,-273r0,320r-80,0r0,-33r28,0r0,-254r-28,0r0,-33r80,0","w":119},"^":{"d":"26,-125r63,-131r38,0r63,131r-43,0r-39,-88r-39,88r-43,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"109,-222v123,0,82,114,91,222r-65,0v-1,-9,0,-22,-3,-28v-15,14,-35,33,-61,33v-48,0,-62,-39,-62,-65v1,-62,59,-84,123,-77v1,-24,-3,-41,-27,-40v-20,0,-26,15,-29,29r-60,-17v3,-10,19,-57,93,-57xm75,-68v1,33,46,20,57,4r0,-32v-29,-4,-58,2,-57,28","w":219},"b":{"d":"24,0r0,-280r67,0r0,85v17,-15,31,-27,58,-27v64,0,76,61,76,110v0,55,-12,117,-74,117v-17,0,-36,-4,-60,-28r0,23r-67,0xm91,-154r0,92v9,8,17,17,32,17v30,0,33,-41,33,-61v0,-27,-1,-66,-33,-66v-14,0,-23,8,-32,18","w":240},"c":{"d":"197,-156r-57,15v-2,-17,-9,-36,-28,-36v-31,0,-31,32,-31,67v0,37,1,67,31,67v20,0,27,-18,29,-36r60,14v-7,24,-20,70,-91,70v-70,0,-98,-55,-98,-113v0,-61,28,-114,98,-114v62,0,84,42,87,66","w":206},"d":{"d":"216,-280r0,280r-67,0r0,-23v-24,24,-43,28,-60,28v-62,0,-74,-62,-74,-117v0,-49,12,-110,76,-110v27,0,41,12,58,27r0,-85r67,0xm149,-62r0,-92v-9,-10,-18,-18,-32,-18v-32,0,-33,39,-33,66v0,20,3,61,33,61v15,0,23,-9,32,-17","w":240},"e":{"d":"113,-222v62,0,108,44,102,132r-134,0v0,14,-1,47,33,47v22,0,30,-16,35,-26r57,18v-19,41,-49,56,-93,56v-86,0,-101,-74,-101,-113v0,-63,34,-114,101,-114xm81,-134r68,0v-1,-14,-4,-43,-33,-43v-32,0,-35,30,-35,43","w":226},"f":{"d":"35,0r0,-153r-31,0r0,-47r31,0v-1,-50,10,-89,84,-92v14,0,21,1,35,4r0,44v-29,-10,-60,3,-51,44r43,0r0,47r-43,0r0,153r-68,0","w":146},"g":{"d":"15,-153v0,-106,117,-54,210,-64r0,37r-42,0v39,47,-18,113,-88,97v-7,5,-5,13,7,16v47,14,118,12,118,71v0,52,-52,69,-113,69v-58,0,-98,-20,-98,-55v0,-36,31,-48,42,-54v-19,-9,-9,-53,11,-55v-16,-7,-47,-19,-47,-62xm75,-151v0,14,12,26,30,26v17,0,31,-10,31,-27v0,-15,-8,-26,-29,-26v-18,0,-32,7,-32,27xm156,14v0,-23,-53,-23,-73,-32v-23,17,-23,50,35,50v27,0,38,-9,38,-18","w":226},"h":{"d":"24,0r0,-280r67,0r0,92v24,-20,42,-34,72,-34v54,0,53,43,53,69r0,153r-67,0r0,-127v0,-16,0,-40,-21,-40v-12,0,-22,8,-37,22r0,145r-67,0","w":240},"i":{"d":"23,0r0,-217r68,0r0,217r-68,0xm23,-235r0,-45r68,0r0,45r-68,0","w":113},"j":{"d":"91,-217r0,204v0,32,-1,86,-73,86v-13,0,-20,-2,-31,-5r3,-49v20,7,33,-4,33,-27r0,-209r68,0xm91,-280r0,45r-68,0r0,-45r68,0","w":113},"k":{"d":"24,0r0,-280r67,0r1,158r58,-95r76,0r-68,103r75,114r-81,0r-61,-106r0,106r-67,0","w":233},"l":{"d":"23,0r0,-280r68,0r0,280r-68,0","w":113},"m":{"d":"23,0r0,-217r68,0r0,29v34,-46,98,-44,115,0v18,-15,38,-34,71,-34v54,0,53,43,53,69r0,153r-67,0r0,-133v1,-35,-25,-50,-52,-14r0,147r-68,0r0,-133v1,-35,-25,-50,-52,-14r0,147r-68,0","w":353},"n":{"d":"149,0r0,-134v4,-46,-42,-34,-58,-11r0,145r-67,0r0,-217r67,0r0,29v24,-20,42,-34,72,-34v54,0,53,43,53,69r0,153r-67,0","w":240},"o":{"d":"12,-108v0,-63,33,-114,105,-114v72,0,105,51,105,114v0,63,-33,113,-105,113v-72,0,-105,-50,-105,-113xm81,-108v0,33,6,65,36,65v32,0,36,-32,36,-65v0,-33,-4,-66,-36,-66v-30,0,-36,33,-36,66","w":233},"p":{"d":"24,70r0,-287r67,0r0,22v17,-15,31,-27,58,-27v64,0,76,61,76,110v0,55,-12,117,-74,117v-17,0,-36,-4,-60,-28r0,93r-67,0xm91,-154r0,92v9,8,17,17,32,17v30,0,33,-41,33,-61v0,-27,-1,-66,-33,-66v-14,0,-23,8,-32,18","w":240},"q":{"d":"216,-217r0,287r-67,0r0,-93v-24,24,-43,28,-60,28v-62,0,-74,-62,-74,-117v0,-49,12,-110,76,-110v27,0,41,12,58,27r0,-22r67,0xm149,-62r0,-92v-9,-10,-18,-18,-32,-18v-32,0,-33,39,-33,66v0,20,3,61,33,61v15,0,23,-9,32,-17","w":240},"r":{"d":"24,0r0,-217r67,0v1,11,-2,26,1,35v21,-31,42,-41,71,-37r0,61v-25,-8,-60,1,-72,21r0,137r-67,0","w":159},"s":{"d":"188,-170r-55,17v1,-26,-53,-33,-53,-6v-1,17,40,21,58,27v33,11,53,30,53,64v0,63,-56,73,-92,73v-71,0,-84,-43,-90,-56r58,-16v1,28,55,34,56,6v1,-24,-42,-24,-61,-31v-24,-10,-48,-23,-48,-60v0,-70,74,-70,88,-70v66,0,79,34,86,52","w":200},"t":{"d":"38,-246r67,-28r0,74r51,0r0,47r-51,0v2,49,-18,126,51,105r0,48v-58,14,-118,0,-118,-63r0,-90r-34,0r0,-47r34,0r0,-46","w":159},"u":{"d":"211,-217r0,217r-67,0r0,-25v-30,24,-44,30,-68,30v-42,0,-54,-28,-54,-66r0,-156r68,0r0,143v0,33,36,29,54,6r0,-149r67,0","w":233},"v":{"d":"68,0r-68,-217r72,0v13,52,29,89,35,151r3,0v3,-47,24,-107,36,-151r67,0r-67,217r-78,0"},"w":{"d":"63,0r-62,-217r71,0r33,151r4,0v5,-46,20,-105,29,-151r84,0r31,151r3,0v7,-53,21,-101,31,-151r65,0r-56,217r-85,0r-18,-78v-9,-37,-12,-63,-13,-75r-4,0v-3,40,-20,110,-28,153r-85,0","w":353},"x":{"d":"0,0r66,-117r-59,-100r78,0r30,67r3,0v7,-21,23,-46,32,-67r70,0r-58,100r64,117r-78,0r-35,-76v-7,1,-6,13,-11,19r-29,57r-73,0","w":226},"y":{"d":"75,-6r-74,-211r72,0v12,51,27,92,34,150r3,0v4,-63,23,-99,36,-150r67,0r-75,224v-9,27,-22,66,-84,66v-15,0,-27,-3,-41,-6r4,-51v23,13,59,-2,58,-22"},"z":{"d":"14,-172r0,-45r172,0r0,45r-97,127r101,0r0,45r-180,0r0,-46r97,-126r-93,0","w":200},"{":{"d":"28,-3r0,-68v0,-23,-15,-25,-24,-25r0,-34v9,0,24,-3,24,-26r0,-67v2,-44,39,-53,83,-50r0,33v-47,-6,-29,50,-29,89v0,34,-25,37,-37,38v12,1,37,4,37,38v0,36,-21,92,29,89r0,33v-45,3,-83,-6,-83,-50","w":119},"|":{"d":"18,90r0,-360r44,0r0,360r-44,0","w":79},"}":{"d":"91,-223r0,67v0,23,16,26,25,26r0,34v-9,0,-25,2,-25,25r0,68v-2,44,-38,53,-82,50r0,-33v47,6,28,-51,28,-89v0,-34,26,-37,38,-38v-12,-1,-38,-4,-38,-38v-7,-34,22,-92,-28,-89r0,-33v44,-3,82,6,82,50","w":119},"~":{"d":"146,-59v-36,0,-90,-51,-108,1r-13,-34v8,-15,21,-31,45,-31v23,0,56,24,77,25v14,0,23,-13,31,-26r13,34v-11,15,-23,31,-45,31","w":216},"'":{"d":"30,-183r0,-97r47,0r0,97r-47,0","w":106},"`":{"d":"53,-292r35,54r-47,0r-64,-54r76,0","w":100},"\u00a0":{"w":106}}});
;
$(document).ready(function(){

	//$(function(){ $('select#edit-submitted-number-of-45kg-cylinder-re-fills').uniform(); });	
	 
	$('#home-business').append('<iframe frameBorder="0" id="frame-home" width="1016px" height="509px"></iframe>');
	$('#business-home').append('<iframe frameBorder="0" id="frame-business" width="1016px" height="509px"></iframe>');
	
	$('#frame-home').attr('src', 'node/58/?ajax=1');
	$('#frame-business').attr('src', 'node/57/?ajax=1');
	
	$('.frame a').attr('target', '_top');
	$('.frame a.home-business').attr('target', '_self');

	$('a.home-business').click(function() {
        if ($('#section-slider', window.parent.document).position().left == 0) {
        	$('#section-slider', window.parent.document).animate({
        		left: '-1016px'
      		}, 1000, function() {
        		if ($('#nice-menu-0 li.menu-490 a', window.parent.document).hasClass('active')) {
        		  $('#nice-menu-0 li', window.parent.document).removeClass('active-trail');
        		  $('#nice-menu-0 li, #nice-menu-0 li a', window.parent.document).removeClass('active');
        		  $('#nice-menu-0 li.menu-491 a', window.parent.document).addClass('active');
        		} else {
        		  $('#nice-menu-0 li', window.parent.document).removeClass('active-trail');
        		  $('#nice-menu-0 li, #nice-menu-0 li a', window.parent.document).removeClass('active');
        		  $('#nice-menu-0 li.menu-490 a', window.parent.document).addClass('active');
        		}
        		Cufon.refresh();
      		});
    	} else {
        	$('#section-slider', window.parent.document).animate({
        		left: '0'
      		}, 1000, function() {
        		if ($('#nice-menu-0 li.menu-491 a', window.parent.document).hasClass('active')) {
        		  $('#nice-menu-0 li.menu-491', window.parent.document).removeClass('active-trail');
        		  $('#nice-menu-0 li, #nice-menu-0 li a', window.parent.document).removeClass('active');
        		  $('#nice-menu-0 li.menu-490 a', window.parent.document).addClass('active');
        		} else {
        		  $('#nice-menu-0 li', window.parent.document).removeClass('active-trail');
        		  $('#nice-menu-0 li, #nice-menu-0 li a', window.parent.document).removeClass('active');
        		  $('#nice-menu-0 li.menu-491 a', window.parent.document).addClass('active');
        		}
        		parent.Cufon.refresh();
        	});
    	};
 	});

	$('#node-66 #piped-networks-div').hide();
	$('#node-66 .slidetoggle').click(function() {
      $('#piped-networks-div').slideToggle('slow', function() {
        return false;
  	  });
  	});	
	
});



/*

	$('#node-89 table tbody tr').each(function() {
		var $table = $(this);
		var location = $.trim($table.find('td:eq(0)').text());
		var date = $.trim($table.find('td:eq(1)').text());
		var credits = $table.find('td:eq(2)').text();
		if (date == '') {
			// do nothing
		} else if (location == '' && date != '') {
			var location = $.trim($table.prev().find('td:eq(0)').text());
			$table.find('td:last-child').each(function() {
				$table.find('td:last-child').html('<a href="/node/98/?location=' + location + '&date=' + date + '">Book Now</a>');
			});
		} else {
			$table.find('td:last-child').each(function() {
				$table.find('td:last-child').html('<a href="/node/98/?location=' + location + '&date=' + date + '">Book Now</a>');
			});
		}
	});
	



$('.page-find-gasfitter .gmap div:first-child > div:nth-child(4)').append('<img id="map-mask" style="position: absolute;" src="/sites/all/themes/ongas/images/map-mask.png">');*/
		
		/*var pos = $('.page-find-gasfitter .gmap div:first-child div:first-child');
		var position = pos.position();
		$('#map-mask').css({ 'left' : position.left, 'top' : position.top });*/;
(function(a){a.uniform={options:{selectClass:"selector",radioClass:"radio",checkboxClass:"checker",fileClass:"uploader",filenameClass:"filename",fileBtnClass:"action",fileDefaultText:"No file selected",fileBtnText:"Choose File",checkedClass:"checked",focusClass:"focus",disabledClass:"disabled",buttonClass:"button",activeClass:"active",hoverClass:"hover",useID:true,idPrefix:"uniform",resetSelector:false},elements:[]};if(a.browser.msie&&a.browser.version<7){a.support.selectOpacity=false}else{a.support.selectOpacity=true}a.fn.uniform=function(k){k=a.extend(a.uniform.options,k);var d=this;if(k.resetSelector!=false){a(k.resetSelector).mouseup(function(){function l(){a.uniform.update(d)}setTimeout(l,10)})}function j(l){$el=a(l);$el.addClass($el.attr("type"));b(l)}function g(l){a(l).addClass("uniform");b(l)}function i(n){$el=n;var o=a("<div>"),l=a("<span>");o.addClass(k.buttonClass);if(k.useID&&$el.attr("id")!=""){o.attr("id",k.idPrefix+"-"+$el.attr("id"))}var m;if($el.is("a")){m=$el.text()}else{if($el.is("button")){m=$el.text()}else{if($el.is(":submit")||$el.is("input[type=button]")){m=$el.attr("value")}}}if(m==""){m="Submit"}l.html(m);$el.hide();$el.wrap(o);$el.wrap(l);o=$el.closest("div");l=$el.closest("span");if($el.is(":disabled")){o.addClass(k.disabledClass)}o.bind({"mouseenter.uniform":function(){o.addClass(k.hoverClass)},"mouseleave.uniform":function(){o.removeClass(k.hoverClass)},"mousedown.uniform touchbegin.uniform":function(){o.addClass(k.activeClass)},"mouseup.uniform touchend.uniform":function(){o.removeClass(k.activeClass)},"click.uniform touchend.uniform":function(q){if(a(q.target).is("span")||a(q.target).is("div")){if(n[0].dispatchEvent){var p=document.createEvent("MouseEvents");p.initEvent("click",true,true);n[0].dispatchEvent(p)}else{n[0].click()}}}});n.bind({"focus.uniform":function(){o.addClass(k.focusClass)},"blur.uniform":function(){o.removeClass(k.focusClass)}});a.uniform.noSelect(o);b(n)}function e(n){var o=a("<div />"),l=a("<span />");o.addClass(k.selectClass);if(k.useID&&n.attr("id")!=""){o.attr("id",k.idPrefix+"-"+n.attr("id"))}var m=n.find(":selected:first");if(m.length==0){m=n.find("option:first")}l.html(m.text());n.css("opacity",0);n.wrap(o);n.before(l);o=n.parent("div");l=n.siblings("span");n.bind({"change.uniform":function(){l.text(n.find(":selected").text());o.removeClass(k.activeClass)},"focus.uniform":function(){o.addClass(k.focusClass)},"blur.uniform":function(){o.removeClass(k.focusClass);o.removeClass(k.activeClass)},"mousedown.uniform touchbegin.uniform":function(){o.addClass(k.activeClass)},"mouseup.uniform touchend.uniform":function(){o.removeClass(k.activeClass)},"click.uniform touchend.uniform":function(){o.removeClass(k.activeClass)},"mouseenter.uniform":function(){o.addClass(k.hoverClass)},"mouseleave.uniform":function(){o.removeClass(k.hoverClass)},"keyup.uniform":function(){l.text(n.find(":selected").text())}});if(a(n).attr("disabled")){o.addClass(k.disabledClass)}a.uniform.noSelect(l);b(n)}function f(m){var n=a("<div />"),l=a("<span />");n.addClass(k.checkboxClass);if(k.useID&&m.attr("id")!=""){n.attr("id",k.idPrefix+"-"+m.attr("id"))}a(m).wrap(n);a(m).wrap(l);l=m.parent();n=l.parent();a(m).css("opacity",0).bind({"focus.uniform":function(){n.addClass(k.focusClass)},"blur.uniform":function(){n.removeClass(k.focusClass)},"click.uniform touchend.uniform":function(){if(!a(m).attr("checked")){l.removeClass(k.checkedClass)}else{l.addClass(k.checkedClass)}},"mousedown.uniform touchbegin.uniform":function(){n.addClass(k.activeClass)},"mouseup.uniform touchend.uniform":function(){n.removeClass(k.activeClass)},"mouseenter.uniform":function(){n.addClass(k.hoverClass)},"mouseleave.uniform":function(){n.removeClass(k.hoverClass)}});if(a(m).attr("checked")){l.addClass(k.checkedClass)}if(a(m).attr("disabled")){n.addClass(k.disabledClass)}b(m)}function c(m){var n=a("<div />"),l=a("<span />");n.addClass(k.radioClass);if(k.useID&&m.attr("id")!=""){n.attr("id",k.idPrefix+"-"+m.attr("id"))}a(m).wrap(n);a(m).wrap(l);l=m.parent();n=l.parent();a(m).css("opacity",0).bind({"focus.uniform":function(){n.addClass(k.focusClass)},"blur.uniform":function(){n.removeClass(k.focusClass)},"click.uniform touchend.uniform":function(){if(!a(m).attr("checked")){l.removeClass(k.checkedClass)}else{a("."+k.radioClass+" span."+k.checkedClass+":has([name='"+a(m).attr("name")+"'])").removeClass(k.checkedClass);l.addClass(k.checkedClass)}},"mousedown.uniform touchend.uniform":function(){if(!a(m).is(":disabled")){n.addClass(k.activeClass)}},"mouseup.uniform touchbegin.uniform":function(){n.removeClass(k.activeClass)},"mouseenter.uniform touchend.uniform":function(){n.addClass(k.hoverClass)},"mouseleave.uniform":function(){n.removeClass(k.hoverClass)}});if(a(m).attr("checked")){l.addClass(k.checkedClass)}if(a(m).attr("disabled")){n.addClass(k.disabledClass)}b(m)}function h(q){var o=a(q);var r=a("<div />"),p=a("<span>"+k.fileDefaultText+"</span>"),m=a("<span>"+k.fileBtnText+"</span>");r.addClass(k.fileClass);p.addClass(k.filenameClass);m.addClass(k.fileBtnClass);if(k.useID&&o.attr("id")!=""){r.attr("id",k.idPrefix+"-"+o.attr("id"))}o.wrap(r);o.after(m);o.after(p);r=o.closest("div");p=o.siblings("."+k.filenameClass);m=o.siblings("."+k.fileBtnClass);if(!o.attr("size")){var l=r.width();o.attr("size",l/10)}var n=function(){var s=o.val();if(s===""){s=k.fileDefaultText}else{s=s.split(/[\/\\]+/);s=s[(s.length-1)]}p.text(s)};n();o.css("opacity",0).bind({"focus.uniform":function(){r.addClass(k.focusClass)},"blur.uniform":function(){r.removeClass(k.focusClass)},"mousedown.uniform":function(){if(!a(q).is(":disabled")){r.addClass(k.activeClass)}},"mouseup.uniform":function(){r.removeClass(k.activeClass)},"mouseenter.uniform":function(){r.addClass(k.hoverClass)},"mouseleave.uniform":function(){r.removeClass(k.hoverClass)}});if(a.browser.msie){o.bind("click.uniform.ie7",function(){setTimeout(n,0)})}else{o.bind("change.uniform",n)}if(o.attr("disabled")){r.addClass(k.disabledClass)}a.uniform.noSelect(p);a.uniform.noSelect(m);b(q)}a.uniform.restore=function(l){if(l==undefined){l=a(a.uniform.elements)}a(l).each(function(){if(a(this).is(":checkbox")){a(this).unwrap().unwrap()}else{if(a(this).is("select")){a(this).siblings("span").remove();a(this).unwrap()}else{if(a(this).is(":radio")){a(this).unwrap().unwrap()}else{if(a(this).is(":file")){a(this).siblings("span").remove();a(this).unwrap()}else{if(a(this).is("button, :submit, a, input[type='button']")){a(this).unwrap().unwrap()}}}}}a(this).unbind(".uniform");a(this).css("opacity","1");var m=a.inArray(a(l),a.uniform.elements);a.uniform.elements.splice(m,1)})};function b(l){l=a(l).get();if(l.length>1){a.each(l,function(m,n){a.uniform.elements.push(n)})}else{a.uniform.elements.push(l)}}a.uniform.noSelect=function(l){function m(){return false}a(l).each(function(){this.onselectstart=this.ondragstart=m;a(this).mousedown(m).css({MozUserSelect:"none"})})};a.uniform.update=function(l){if(l==undefined){l=a(a.uniform.elements)}l=a(l);l.each(function(){var n=a(this);if(n.is("select")){var m=n.siblings("span");var p=n.parent("div");p.removeClass(k.hoverClass+" "+k.focusClass+" "+k.activeClass);m.html(n.find(":selected").text());if(n.is(":disabled")){p.addClass(k.disabledClass)}else{p.removeClass(k.disabledClass)}}else{if(n.is(":checkbox")){var m=n.closest("span");var p=n.closest("div");p.removeClass(k.hoverClass+" "+k.focusClass+" "+k.activeClass);m.removeClass(k.checkedClass);if(n.is(":checked")){m.addClass(k.checkedClass)}if(n.is(":disabled")){p.addClass(k.disabledClass)}else{p.removeClass(k.disabledClass)}}else{if(n.is(":radio")){var m=n.closest("span");var p=n.closest("div");p.removeClass(k.hoverClass+" "+k.focusClass+" "+k.activeClass);m.removeClass(k.checkedClass);if(n.is(":checked")){m.addClass(k.checkedClass)}if(n.is(":disabled")){p.addClass(k.disabledClass)}else{p.removeClass(k.disabledClass)}}else{if(n.is(":file")){var p=n.parent("div");var o=n.siblings(k.filenameClass);btnTag=n.siblings(k.fileBtnClass);p.removeClass(k.hoverClass+" "+k.focusClass+" "+k.activeClass);o.text(n.val());if(n.is(":disabled")){p.addClass(k.disabledClass)}else{p.removeClass(k.disabledClass)}}else{if(n.is(":submit")||n.is("button")||n.is("a")||l.is("input[type=button]")){var p=n.closest("div");p.removeClass(k.hoverClass+" "+k.focusClass+" "+k.activeClass);if(n.is(":disabled")){p.addClass(k.disabledClass)}else{p.removeClass(k.disabledClass)}}}}}}})};return this.each(function(){if(a.support.selectOpacity){var l=a(this);if(l.is("select")){if(l.attr("multiple")!=true){if(l.attr("size")==undefined||l.attr("size")<=1){e(l)}}}else{if(l.is(":checkbox")){f(l)}else{if(l.is(":radio")){c(l)}else{if(l.is(":file")){h(l)}else{if(l.is(":text, :password, input[type='email']")){j(l)}else{if(l.is("textarea")){g(l)}else{if(l.is("a")||l.is(":submit")||l.is("button")||l.is("input[type=button]")){i(l)}}}}}}}}})}})(jQuery);;

