/*
 * 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")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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]);
          }
        }
      }
    });
  });
});
;
var $ = jQuery.noConflict();
$(document).ready(function(){
	initCufon();
	initLinks();
	initDropdown();
	initImage();
	initFooterLinks();
	initExternalLinks();
})

function initCufon() {
	Cufon.replace('#header div.slogan p,#main div.about div.text p,#bottom-content ul.menu li a.title,#main div.quick_link h2,#content ul.idTabs li a,#content div.content-inner h2,#content div.content-inner h3,#content div.content-inner h4, #main .block-graphic strong.title, #main .block-graphic strong.sub-title, #main .block-graphic div.item', { fontFamily: "PMN Caecilia",hover:true, hoverables:{a:true} });
}

function initLinks() {
	var links = $('a[rel*="external"]');
	$.each(links, function(index, item) {
		$(item).attr('target','_blank');
	});
	
	
	$('#header #menu ul.menu li ul').each(function(i,ul) {
    	var maxwidth = $(ul).width();
		//alert(maxwidth);
		$(ul).find('a').each(function(i,a){
			var linkwidth = $(a).width()+$(a).css('paddingLeft')+$(a).css('paddingRight');
			if (linkwidth > maxwidth) maxwidth = linkwidth;
		});
		$(ul).width(maxwidth+6+'px');
		
	});
	
	var menuwidth = $('#header #menu ul.menu').width(); 
	var paddingleft = ((994 - menuwidth) / 2 | 0) + 14;
	var paddingright = ((994 - menuwidth) / 2 | 0) + 14;
	
	/*$('#main div.quick_link a').attr('target','_blank');*/
	
	$('#header div.menu-block-2 > ul.menu > li.first > a').css('padding-left',paddingleft);
	$('#header div.menu-block-2 > ul.menu > li.last > a').css('padding-right',paddingright);
	
	$('#bottom-content div.menu-block-1 > ul.menu > li > a').addClass('title');
	$('#bottom-content div.menu-block-4 > ul.menu > li > a').addClass('title');
	
	if($('#main div.sidebar').get(0)) {
		var sidebar_height = $('#main div.sidebar').height();
		var content_height = $('#content div.content-inner').height();
		
		if (sidebar_height > content_height){
			$('#content div.content-inner').css('height',sidebar_height-38);
		}
	};
}

function initDropdown() {
	$("#header #menu ul.menu > li").hover(
		function()
		{
			$(this).find("ul").slideDown('slow', function(){});
		},
		function () 
		{
			$(this).find("ul").stop(true, true).slideUp('slow', function(){});
		}
	);
}

function initImage(){
	$('div.node div.content img').each(function(index) {
		if (!($(this).hasClass("chart")) && !($(this).hasClass("staff"))){
			$('div.node div.content').wrapInner('<div class="text-indent" />');
			$(this).prependTo($('div.node div.content'));
			$(this).wrap('<div class="image-top"><div class="image-bottom"><div class="image">');
		}
	});
}

function initFooterLinks(){
	$('#bottom-content ul.menu li a').each(function(index) {
			var description = $(this).attr('title');
			$(this).parent('li').append('<span class="description">'+description+'</span>');
	});
}

function initExternalLinks(){
	var h = window.location.host.toLowerCase();
	$('a[href^="http://"]:not(a[href^="http://' + h + '"]):not(a[href^="http://www.' + h + '"]),a[href*=".pdf"],a[href^="https://"]')
	.attr({
		target: "_blank", 
		title: "Opens in a new window"
	});
};
/* idTabs ~ Sean Catchpole - Version 2.2 - MIT/GPL */ 
(function(){ 
var dep = {"jQuery":"http://code.jquery.com/jquery-latest.min.js"}; 
var init = function(){  
 
/* Options (in any order): 
 
 start (number|string) 
    Index number of default tab. ex: $(...).idTabs(0) 
    String of id of default tab. ex: $(...).idTabs("tab1") 
    default: class "selected" or index 0 
    Passing null will force it to not select a default tab 
 
 change (boolean) 
    True - Url will change. ex: $(...).idTabs(true) 
    False - Url will not change. ex: $(...).idTabs(false) 
    default: false 
 
 click (function) 
    Function will be called when a tab is clicked. ex: $(...).idTabs(foo) 
    If the function returns true, idTabs will show/hide content (as usual). 
    If the function returns false, idTabs will not take any action. 
    The function is passed four variables: 
      The id of the element to be shown 
      an array of all id's that can be shown 
      the element containing the tabs 
      and the current settings 
 
 selected (string) 
    Class to use for selected. ex: $(...).idTabs(".current") 
    default: ".selected" 
 
 event (string) 
    Event to trigger idTabs on. ex: $(...).idTabs("!mouseover") 
    default: "!click" 
    To bind multiple event, call idTabs multiple times 
      ex: $(...).idTabs("!click").idTabs("!focus") 
 
*/ 
(function($){ 
 
  $.fn.idTabs = function(){ 
    //Loop Arguments matching options 
    var s = {}; 
    for(var i=0; i<arguments.length; ++i) { 
      var a=arguments[i]; 
      switch(a.constructor){ 
        case Object: $.extend(s,a); break; 
        case Boolean: s.change = a; break; 
        case Number: s.start = a; break; 
        case Function: s.click = a; break; 
        case String: 
          if(a.charAt(0)=='.') s.selected = a; 
          else if(a.charAt(0)=='!') s.event = a; 
          else s.start = a; 
        break; 
      } 
    } 
 
    if(typeof s['return'] == "function") //backwards compatible 
      s.change = s['return']; 
     
    return this.each(function(){ $.idTabs(this,s); }); //Chainable 
  } 
 
  $.idTabs = function(tabs,options) { 
    //Settings 
    var meta = ($.metadata)?$(tabs).metadata():{}; 
    var s = $.extend({},$.idTabs.settings,meta,options); 
 
    //Play nice 
    if(s.selected.charAt(0)=='.') s.selected=s.selected.substr(1); 
    if(s.event.charAt(0)=='!') s.event=s.event.substr(1); 
    if(s.start==null) s.start=-1; //no tab selected 
     
    //Setup Tabs 
    var showId = function(){ 
      if($(this).is('.'+s.selected)) 
        return s.change; //return if already selected 
      var id = "#"+this.href.split('#')[1]; 
      var aList = []; //save tabs 
      var idList = []; //save possible elements 
      $("a",tabs).each(function(){ 
        if(this.href.match(/#/)) { 
          aList.push(this); 
          idList.push("#"+this.href.split('#')[1]); 
        } 
      }); 
      if(s.click && !s.click.apply(this,[id,idList,tabs,s])) return s.change; 
      //Clear tabs, and hide all 
      for(i in aList) $(aList[i]).removeClass(s.selected); 
      for(i in idList) $(idList[i]).hide(); 
      //Select clicked tab and show content 
      $(this).addClass(s.selected); 
      $(id).show(); 
      return s.change; //Option for changing url 
    } 
 
    //Bind idTabs 
    var list = $("a[href*='#']",tabs).unbind(s.event,showId).bind(s.event,showId); 
    list.each(function(){ $("#"+this.href.split('#')[1]).hide(); }); 
 
    //Select default tab 
    var test=false; 
    if((test=list.filter('.'+s.selected)).length); //Select tab with selected class 
    else if(typeof s.start == "number" &&(test=list.eq(s.start)).length); //Select num tab 
    else if(typeof s.start == "string" //Select tab linking to id 
         &&(test=list.filter("[href*='#"+s.start+"']")).length); 
    if(test) { test.removeClass(s.selected); test.trigger(s.event); } //Select tab 
 
    return s; //return current settings (be creative) 
  } 
 
  //Defaults 
  $.idTabs.settings = { 
    start:0, 
    change:false, 
    click:null, 
    selected:".selected", 
    event:"!click" 
  }; 
 
  //Version 
  $.idTabs.version = "2.2"; 
 
  //Auto-run 
  $(function(){ $(".idTabs").idTabs(); }); 
 
})(jQuery); 
 
 
 
} //init 
 
// Check Dependencies 
var check = function(o,s){ 
  s = s.split('.'); 
  while(o && s.length) o = o[s.shift()]; 
  return o; 
} 
 
// Add Script 
var head = document.getElementsByTagName("head")[0]; 
var add = function(url){ 
  var s = document.createElement("script"); 
  s.type = "text/javascript"; s.src = url; 
  head.appendChild(s); 
} 
 
// Save Self 
var s = document.getElementsByTagName('script'); 
var src = s[s.length-1].src; 
 
// Load Dependencies 
var ok=true; 
for(d in dep) { 
  if(check(this,d)) continue; 
  ok=false; 
  add(dep[d]); 
} if(ok) return init(); 
 
// Reload Self 
add(src); 
 
})(); ;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991, 1992 Adobe Systems Incorporated.  All Rights Reserved.PMN
 * Caecilia is a trademark of Linotype-Hell AG and/or its subsidiaries.
 * 
 * Full name:
 * Caecilia-Roman
 */
Cufon.registerFont({"w":200,"face":{"font-family":"PMN Caecilia","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-20 -333 386 97","underline-thickness":"18","underline-position":"-27","stemh":"23","stemv":"30","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100,"k":{"\u201c":13,"\u2018":13,"Y":27,"W":20,"V":27,"T":27,"A":13}},"!":{"d":"45,-85r-4,-192r34,0r-4,192r-26,0xm34,-18v0,-12,11,-22,23,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-23,-10,-23,-22","w":113},"\"":{"d":"113,-174v-22,-12,-10,-54,-17,-87v0,-11,4,-19,17,-19v24,-2,18,31,15,46v-4,20,5,55,-15,60xm47,-174v-22,-12,-10,-54,-17,-87v0,-11,4,-19,17,-19v23,-2,15,30,15,46v-5,20,5,55,-15,60","w":159},"#":{"d":"85,-152r-11,52r41,0r11,-52r-41,0xm51,-100r12,-52r-40,0r0,-20r44,0r18,-80r22,0r-17,80r40,0r18,-80r23,0r-18,80r40,0r0,20r-44,0r-11,52r39,0r0,20r-44,0r-17,80r-23,0r18,-80r-41,0r-18,80r-22,0r17,-80r-40,0r0,-20r44,0"},"$":{"d":"90,-256r0,-46r23,0r0,46v16,0,49,4,63,10r0,51r-27,0r0,-30v-12,-4,-25,-7,-37,-7r0,90v40,10,78,19,78,70v0,48,-37,72,-80,76r0,46r-23,0r0,-46v-15,0,-65,-6,-77,-12r0,-55r30,0r0,35v14,5,27,8,47,8r1,-96v-51,-9,-78,-27,-78,-68v0,-44,37,-72,80,-72xm89,-146r1,-86v-11,0,-49,6,-49,45v0,30,36,39,48,41xm111,-112r-1,91v18,-1,49,-12,49,-48v0,-30,-25,-39,-48,-43"},"%":{"d":"74,-138v-35,0,-59,-24,-59,-59v0,-35,24,-59,59,-59v32,0,57,24,57,59v0,35,-25,59,-57,59xm73,-160v21,0,31,-18,31,-37v0,-19,-10,-37,-31,-37v-21,0,-32,18,-32,37v0,19,11,37,32,37xm227,4v-35,0,-59,-24,-59,-59v0,-35,24,-59,59,-59v32,0,57,24,57,59v0,35,-25,59,-57,59xm226,-18v21,0,31,-18,31,-37v0,-19,-10,-37,-31,-37v-21,0,-31,18,-31,37v0,19,10,37,31,37xm59,8r162,-280r18,12r-162,280","w":299},"&":{"d":"102,-156v24,-16,39,-26,39,-48v0,-19,-15,-30,-33,-30v-21,0,-36,12,-36,33v0,19,18,33,30,45xm174,-46r-79,-79v-57,22,-52,107,21,105v32,0,50,-17,58,-26xm117,-140r73,74v9,-15,18,-33,18,-63r-27,0r0,-23r80,0r0,23r-28,0v0,31,-14,64,-26,80v14,11,31,33,54,26r0,23v-35,5,-49,-8,-69,-29v-23,24,-48,33,-81,33v-63,0,-85,-42,-85,-69v0,-39,25,-56,54,-75v-27,-27,-34,-42,-34,-61v0,-8,1,-55,63,-55v33,0,59,17,59,52v0,30,-29,50,-51,64","w":280},"\u2019":{"d":"38,-174r-13,-13v13,-14,20,-26,20,-38v0,-20,-17,-18,-17,-35v0,-12,8,-20,20,-20v19,0,28,17,28,36v0,27,-12,48,-38,70","w":100,"k":{"v":6,"t":6,"s":27,"d":46,"\u2019":32}},"(":{"d":"91,-284r21,14v-72,98,-70,257,0,354r-21,13v-86,-110,-85,-270,0,-381","w":113},")":{"d":"22,97r-21,-13v72,-98,70,-257,0,-354r21,-14v85,111,86,270,0,381","w":113},"*":{"d":"57,-231r-5,-46r23,0r-5,46r37,-25r10,18r-41,17r41,18r-10,18r-37,-24r5,45r-23,0r5,-45r-38,24r-10,-18r42,-18r-42,-17r10,-18","w":126},"+":{"d":"96,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0","w":216},",":{"d":"45,14v0,-15,-17,-20,-17,-35v0,-12,9,-19,21,-19v44,0,28,75,0,95r-11,11r-14,-14v8,-11,21,-18,21,-38","w":100,"k":{"\u201d":27,"\u2019":27," ":13}},"-":{"d":"27,-85r0,-27r93,0r0,27r-93,0","w":146},".":{"d":"28,-18v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":100,"k":{"\u201d":27,"\u2019":27," ":13}},"\/":{"d":"-10,19r118,-299r22,9r-117,299","w":133},"0":{"d":"100,-232v-49,0,-57,69,-57,106v0,37,8,106,57,106v49,0,57,-69,57,-106v0,-37,-8,-106,-57,-106xm100,-256v70,0,88,73,88,126v0,60,-20,134,-88,134v-70,0,-88,-73,-88,-126v0,-60,20,-134,88,-134"},"1":{"d":"22,-201r83,-51r23,0r-1,229r52,0r0,23r-132,0r0,-23r50,0r1,-199v-19,15,-43,28,-63,42"},"2":{"d":"47,-181r-29,0v0,-18,17,-75,80,-75v50,0,76,30,76,70v0,80,-77,124,-116,163v40,-2,84,0,125,-1r0,24r-166,0r0,-21v28,-30,127,-88,127,-167v0,-24,-15,-44,-45,-44v-42,0,-48,33,-52,51"},"3":{"d":"67,-117r0,-24v46,4,72,-25,72,-52v0,-23,-17,-39,-42,-39v-25,0,-49,16,-49,43r-28,0v0,-30,22,-67,80,-67v48,0,70,28,70,60v1,46,-36,57,-52,63v37,4,62,23,62,62v0,34,-25,75,-95,75v-33,0,-56,-7,-64,-13r0,-29v37,30,134,22,128,-34v-5,-45,-47,-45,-82,-45"},"4":{"d":"119,-100r0,-119r-84,120v26,-3,56,0,84,-1xm89,0r0,-23r29,0r1,-53r-114,0r0,-22r109,-154r34,0r-1,152r48,0r0,24r-48,0r-1,53r30,0r0,23r-87,0"},"5":{"d":"166,-252r0,24r-106,0r-1,72v52,2,117,12,117,78v0,39,-27,82,-96,82v-24,0,-43,-3,-56,-9r0,-27v9,4,36,12,54,12v56,0,67,-35,67,-56v0,-56,-79,-56,-114,-56r1,-120r134,0"},"6":{"d":"179,-252r-3,24v-77,-20,-135,30,-130,103v13,-15,32,-30,64,-30v50,0,74,33,74,77v0,31,-19,82,-81,82v-52,0,-87,-40,-87,-115v0,-98,59,-163,163,-141xm47,-100v0,36,15,80,57,80v26,0,50,-19,50,-58v0,-26,-14,-52,-51,-52v-28,0,-49,18,-56,30"},"7":{"d":"21,-225r0,-27r158,0r0,21r-86,175v-13,26,-25,47,-31,56r-36,0v43,-59,82,-157,122,-225r-127,0"},"8":{"d":"15,-59v0,-38,28,-56,61,-70v-73,-21,-70,-129,24,-127v40,0,77,16,77,58v0,32,-20,51,-52,67v31,17,60,28,60,68v0,43,-32,67,-85,67v-58,0,-85,-25,-85,-63xm53,-193v1,31,28,39,48,50v20,-11,48,-24,47,-52v-2,-52,-95,-49,-95,2xm156,-64v7,-16,-36,-45,-57,-53v-23,11,-53,26,-53,56v0,28,23,41,54,41v42,0,56,-25,56,-44"},"9":{"d":"21,0r3,-24v77,20,135,-30,130,-103v-13,15,-32,30,-64,30v-50,0,-74,-33,-74,-77v0,-31,20,-82,82,-82v52,0,86,40,86,115v0,98,-59,163,-163,141xm153,-152v0,-36,-15,-80,-57,-80v-26,0,-50,19,-50,58v0,26,14,52,51,52v28,0,49,-18,56,-30"},":":{"d":"28,-163v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm28,-18v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":100},";":{"d":"45,14v0,-15,-17,-20,-17,-35v0,-12,9,-19,21,-19v44,0,28,75,0,95r-11,11r-14,-14v8,-11,21,-18,21,-38xm28,-163v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":100},"<":{"d":"17,-80r0,-23r182,-82r0,24r-153,70r153,69r0,25","w":216},"=":{"d":"17,-115r0,-24r182,0r0,24r-182,0xm17,-43r0,-24r182,0r0,24r-182,0","w":216},">":{"d":"199,-102r0,22r-182,83r0,-25r153,-69r-153,-70r0,-24","w":216},"?":{"d":"36,-248r-2,-25v18,-6,38,-7,44,-7v104,3,83,97,36,128v-23,15,-61,34,-32,61r-24,13v-33,-29,-4,-68,27,-83v24,-12,37,-31,37,-52v7,-33,-51,-53,-86,-35xm44,-18v0,-12,11,-22,23,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-23,-10,-23,-22","w":180},"@":{"d":"176,-140v0,-24,-11,-34,-29,-34v-31,0,-51,35,-51,65v0,21,10,34,27,34v32,0,53,-39,53,-65xm219,-193r-31,112v0,5,3,8,12,8v19,0,43,-33,43,-72v0,-52,-43,-85,-93,-85v-62,0,-105,48,-105,105v0,104,134,132,189,70r29,0v-18,34,-59,59,-116,59v-74,0,-133,-48,-133,-130v0,-73,55,-130,136,-130v71,0,124,43,124,107v0,70,-56,100,-89,100v-19,1,-23,-10,-26,-20v-26,34,-91,23,-91,-36v0,-68,80,-133,118,-68r7,-20r26,0","w":288},"A":{"d":"95,-122r75,0r-36,-101v-10,35,-27,68,-39,101xm4,0r0,-23r23,0r94,-229r33,0r85,229r24,0r0,23r-85,0r0,-23r26,0r-27,-76r-91,0r-29,76r30,0r0,23r-83,0","w":266,"k":{"\u201d":33,"y":27,"w":27,"v":23,"u":9,"Y":33,"W":27,"V":33,"U":11,"T":33,"Q":13,"O":13,"G":13,"C":13,"\u2019":33}},"B":{"d":"76,-229r0,88v42,1,82,0,82,-45v0,-57,-41,-40,-82,-43xm76,-118r-1,95v45,-1,97,9,97,-47v0,-53,-49,-48,-96,-48xm17,-252v77,1,172,-16,172,61v0,34,-23,51,-49,59v33,0,65,21,65,62v0,90,-104,67,-188,70r0,-23r27,0r1,-206r-28,0r0,-23","w":226,"k":{"A":11,".":9,",":9}},"C":{"d":"229,-244r0,58r-28,0r0,-40v-74,-20,-150,11,-150,98v0,85,66,124,146,102r1,-41r28,0r-1,61v-98,29,-207,-2,-207,-118v0,-71,43,-132,137,-132v27,0,57,6,74,12","w":246,"k":{"A":9}},"D":{"d":"222,-130v0,-82,-58,-108,-147,-99r-1,206v93,7,148,-20,148,-107xm43,-23r1,-206r-29,0r0,-23r114,0v75,0,126,38,126,122v0,89,-53,130,-138,130r-102,0r0,-23r28,0","w":273,"k":{"Y":27,"W":16,"V":16,"A":20,".":16,",":16}},"E":{"d":"43,-23r1,-206r-29,0r0,-23r171,0r0,58r-27,0r0,-35r-84,0r0,88r79,0r0,23r-79,0r-1,95r87,0r2,-39r27,0r-2,62r-173,0r0,-23r28,0","w":206},"F":{"d":"43,-23r1,-206r-29,0r0,-23r169,0r1,59r-27,0r-1,-36r-82,0r0,92r86,0r0,23r-86,0r-1,91r32,0r0,23r-91,0r0,-23r28,0","k":{"r":6,"o":11,"i":6,"e":11,"a":16,"A":27,".":46,",":46}},"G":{"d":"225,-87r0,81v-98,29,-207,-2,-207,-118v0,-71,40,-132,134,-132v33,0,66,8,77,13r0,57r-27,0r0,-38v-70,-24,-151,6,-151,96v0,85,63,124,146,102r0,-61r-31,0r0,-23r87,0r0,23r-28,0","w":259,"k":{".":9,",":9}},"H":{"d":"43,-23r1,-206r-29,0r0,-23r88,0r0,23r-28,0r0,92r131,0r0,-92r-29,0r0,-23r88,0r0,23r-28,0r-1,206r29,0r0,23r-88,0r0,-23r28,0r1,-91r-131,0r-1,91r29,0r0,23r-88,0r0,-23r28,0","w":280},"I":{"d":"44,-23r1,-206r-28,0r0,-23r87,0r0,23r-28,0r-1,206r29,0r0,23r-87,0r0,-23r27,0","w":120},"J":{"d":"15,-229r0,-23r87,0r0,23r-26,0r-2,160v-1,73,-24,105,-85,135r-9,-23v91,-38,57,-161,65,-272r-30,0","w":113,"k":{"u":6,"o":4,"e":4,"a":4,"A":6,".":13,",":13}},"K":{"d":"15,-229r0,-23r88,0r0,23r-28,0r0,96r109,-96r-31,0r0,-23r87,0r0,23r-22,0r-112,98r114,108r23,0r0,23r-92,0r0,-23r30,0r-106,-100r-1,100r29,0r0,23r-88,0r0,-23r28,0r1,-206r-29,0","w":253,"k":{"y":20,"u":13,"o":11,"e":4,"O":16}},"L":{"d":"43,-23r1,-206r-29,0r0,-23r86,0r0,23r-26,0r-1,206r86,0r2,-39r27,0r-3,62r-171,0r0,-23r28,0","k":{"\u201d":40,"y":27,"Y":40,"W":33,"V":33,"T":33,"\u2019":40}},"M":{"d":"13,-229r0,-23r68,0r81,201v2,5,2,9,4,16v24,-77,58,-143,85,-217r70,0r0,23r-33,0r2,206r31,0r0,23r-87,0r0,-23r27,0r0,-184v-25,73,-56,137,-83,207r-27,0r-83,-205r-1,182r31,0r0,23r-85,0r0,-23r29,0r2,-206r-31,0","w":333},"N":{"d":"43,-23r1,-206r-33,0r0,-23r60,0r150,203r1,-180r-31,0r0,-23r85,0r0,23r-27,0r-2,229r-25,0r-153,-205r-2,182r32,0r0,23r-84,0r0,-23r28,0","w":286,"k":{"A":6,".":9,",":9}},"O":{"d":"18,-122v0,-77,42,-134,119,-134v79,0,119,57,119,126v0,77,-42,134,-119,134v-79,0,-119,-57,-119,-126xm51,-126v0,55,25,106,86,106v61,0,85,-51,85,-106v0,-55,-24,-106,-85,-106v-61,0,-86,51,-86,106","w":273,"k":{"Y":27,"X":9,"W":13,"V":13,"T":9,"A":16,".":16,",":16}},"P":{"d":"15,-252v83,-1,180,-11,178,71v-2,68,-50,85,-118,79r-1,79r32,0r0,23r-91,0r0,-23r28,0r1,-206r-29,0r0,-23xm162,-177v0,-47,-36,-56,-87,-52r0,104v49,4,87,-7,87,-52","w":206,"k":{"o":11,"e":9,"a":9,"A":27,".":46,",":46}},"Q":{"d":"175,-1v16,-1,83,52,126,38r-1,23v-42,20,-113,-34,-174,-56v-45,0,-108,-37,-108,-126v0,-77,42,-134,119,-134v148,0,156,222,38,255xm137,-232v-61,0,-86,51,-86,106v0,55,25,106,86,106v61,0,85,-51,85,-106v0,-55,-24,-106,-85,-106","w":273,"k":{"U":4}},"R":{"d":"76,-229r0,95v47,2,86,-3,86,-50v0,-47,-41,-46,-86,-45xm17,-229r0,-23v79,5,173,-23,176,65v2,43,-31,63,-59,69v40,0,47,106,98,95r0,23v-93,21,-66,-128,-156,-112r-1,89r29,0r0,23r-87,0r0,-23r27,0r1,-206r-28,0","w":233,"k":{"Y":20,"W":20,"V":20,"U":4,"T":13,"O":4}},"S":{"d":"24,-8r0,-56r29,0r0,34v38,20,109,12,109,-37v0,-67,-138,-28,-138,-118v0,-31,18,-71,93,-71v18,0,52,5,68,12r0,50r-28,0r0,-31v-38,-13,-100,-12,-100,37v0,64,138,24,138,117v0,85,-120,82,-171,63","w":213,"k":{".":9,",":6}},"T":{"d":"103,-23r2,-206r-69,0r-2,39r-27,0r2,-62r222,0r2,62r-26,0r-3,-39r-68,0r-2,206r32,0r0,23r-90,0r0,-23r27,0","w":240,"k":{"y":54,"w":54,"u":46,"r":33,"o":40,"i":20,"e":27,"a":33,"O":9,"A":33,";":27,":":27,".":40,"-":40,",":40}},"U":{"d":"137,4v-78,-4,-99,-22,-97,-107v0,-41,1,-87,1,-126r-29,0r0,-23r87,0r0,23r-27,0v0,35,-1,70,-1,129v-1,58,12,76,67,80v97,7,60,-123,68,-209r-31,0r0,-23r87,0r0,23r-28,0r-1,136v2,61,-29,100,-96,97","w":273,"k":{"A":20,".":16,",":16}},"V":{"d":"113,0r-89,-229r-23,0r0,-23r87,0r0,23r-28,0r73,202r71,-202r-30,0r0,-23r85,0r0,23r-24,0r-88,229r-34,0","w":259,"k":{"u":20,"o":27,"i":13,"e":27,"a":33,"O":11,"G":13,"A":33,";":27,":":27,".":46,"-":33,",":46}},"W":{"d":"105,0r-79,-229r-25,0r0,-23r87,0r0,23r-29,0r67,205v17,-55,40,-106,59,-160r-14,-45r-27,0r0,-23r85,0r0,23r-27,0r62,205v19,-72,47,-136,69,-205r-32,0r0,-23r85,0r0,23r-23,0r-85,229r-35,0r-46,-148r-57,148r-35,0","w":386,"k":{"y":23,"u":13,"o":27,"i":11,"e":27,"a":27,"O":13,"A":27,";":27,":":27,".":46,"-":27,",":46}},"X":{"d":"32,-23r79,-104r-72,-102r-26,0r0,-23r91,0r0,23r-29,0v20,25,36,53,55,79r59,-79r-30,0r0,-23r83,0r0,23r-24,0r-73,99r75,107r24,0r0,23r-89,0r0,-23r28,0v-21,-26,-38,-56,-58,-84r-62,84r29,0r0,23r-83,0r0,-23r23,0","w":253},"Y":{"d":"3,-229r0,-23r87,0r0,23r-26,0r71,96r70,-96r-31,0r0,-23r83,0r0,23r-23,0r-86,120r-1,86r28,0r0,23r-85,0r0,-23r26,0r1,-85r-88,-121r-26,0","w":259,"k":{"u":33,"o":40,"i":20,"e":33,"a":33,"S":13,"O":20,"A":33,";":33,":":33,".":46,"-":46,",":46}},"Z":{"d":"19,0r0,-21r159,-208r-123,0r-2,37r-27,0r2,-60r186,0r0,23r-157,206r129,0r2,-38r27,0r-3,61r-193,0","w":233},"[":{"d":"37,90r1,-367r64,0r0,23r-34,0r-2,322r34,0r0,22r-63,0","w":113},"\\":{"d":"26,-280r117,299r-22,9r-118,-299","w":133},"]":{"d":"76,-277r-1,367r-63,0r0,-22r33,0r2,-322r-34,0r0,-23r63,0","w":113},"^":{"d":"159,-121r-51,-103r-51,103r-25,0r65,-131r22,0r65,131r-25,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"62,-280r14,14v-13,14,-21,25,-21,37v0,20,17,19,17,36v0,12,-8,19,-20,19v-19,0,-28,-17,-28,-36v0,-27,12,-48,38,-70","w":100,"k":{"\u2018":32,"A":46}},"a":{"d":"87,-18v20,0,53,-11,53,-67v-44,0,-88,0,-88,35v0,21,16,32,35,32xm57,-160r0,29r-27,0r0,-45v54,-23,138,-24,138,53v0,16,-2,67,-2,100r27,0r0,23r-53,0v0,-14,2,-31,3,-40v-11,30,-30,44,-63,44v-21,0,-57,-8,-57,-53v0,-52,55,-57,117,-57v7,-59,-34,-72,-83,-54","w":206,"k":{"y":11,"w":11,"v":11,"g":4,"b":4}},"b":{"d":"61,-99r-2,70v58,29,108,-15,108,-71v0,-46,-22,-66,-51,-66v-26,0,-54,17,-55,67xm30,-10r1,-244r-31,0r0,-23r61,0r-3,132v8,-26,32,-45,65,-45v51,0,75,41,75,90v0,44,-23,104,-100,104v-31,0,-41,-5,-68,-14","w":213,"k":{"y":11,"v":9,"l":4,".":9,",":9}},"c":{"d":"169,-31r-2,26v-14,4,-32,9,-53,9v-73,0,-97,-48,-97,-97v0,-97,79,-110,153,-88r0,49r-27,0r0,-29v-8,-3,-23,-5,-31,-5v-54,0,-64,43,-64,73v0,10,1,73,70,73v18,0,34,-6,51,-11","w":186,"k":{"y":9,"k":6,"h":6}},"d":{"d":"103,-20v66,0,53,-75,54,-137v-45,-24,-107,3,-107,72v0,35,17,65,53,65xm187,-277r-2,254r28,0r0,23r-57,0v0,-16,1,-28,3,-38v-26,67,-140,52,-140,-47v0,-75,64,-125,138,-97r0,-72r-37,0r0,-23r67,0","w":226,"k":{"y":9,"w":11,"v":6}},"e":{"d":"48,-113r104,0v0,-29,-18,-54,-49,-54v-32,0,-53,23,-55,54xm183,-90r-135,0v1,38,17,70,70,70v20,0,41,-6,56,-14r-1,25v-69,30,-156,8,-156,-84v0,-55,29,-97,86,-97v73,0,80,67,80,100","k":{"y":11,"x":2,"w":11,"v":11,"p":4,"g":6,"b":2,".":6,",":6}},"f":{"d":"157,-275r-1,24v-6,-3,-20,-4,-30,-4v-51,1,-49,29,-49,69r48,0r0,23r-48,0r-1,140r31,0r0,23r-85,0r0,-23r25,0r1,-140r-31,0r0,-23r31,0v-8,-77,41,-108,109,-89","w":133,"k":{"\u201d":-6,"\u2019":-4}},"g":{"d":"203,-186r0,23v-14,1,-29,-1,-41,-2v43,48,2,115,-61,111v-8,0,-34,5,-34,18v22,33,132,3,132,68v0,43,-45,63,-91,63v-45,0,-89,-15,-89,-51v-1,-29,25,-39,47,-47v-15,-3,-28,-11,-28,-28v-1,-20,21,-22,34,-29v-13,-3,-47,-16,-47,-63v0,-50,55,-78,109,-63r69,0xm170,35v0,-32,-54,-22,-82,-31v-4,0,-40,11,-40,35v0,29,43,33,61,33v23,0,61,-7,61,-37xm103,-167v-29,0,-50,18,-50,45v0,26,22,45,48,45v32,0,52,-20,52,-46v0,-18,-14,-44,-50,-44","k":{"i":-4,"e":-4,"a":-2}},"h":{"d":"43,-23r2,-231r-36,0r0,-23r65,0v-1,45,3,93,-4,132v10,-26,38,-46,67,-45v89,2,59,94,62,167r27,0r0,23r-80,0r0,-23r24,0v0,-29,1,-59,1,-89v0,-18,-1,-54,-42,-54v-26,0,-54,17,-55,67r-1,76r27,0r0,23r-83,0r0,-23r26,0","w":240,"k":{"y":11}},"i":{"d":"43,-23r2,-140r-34,0r0,-23r63,0r-1,163r29,0r0,23r-88,0r0,-23r29,0xm33,-257v0,-12,11,-23,23,-23v12,0,22,11,22,23v0,12,-10,22,-22,22v-12,0,-23,-10,-23,-22","w":113,"k":{"v":4}},"j":{"d":"79,-186v-3,79,6,213,-30,246v-19,18,-39,30,-64,35r-5,-24v51,-18,68,-37,68,-117r1,-117r-34,0r0,-23r64,0xm38,-257v0,-12,10,-23,22,-23v12,0,23,11,23,23v0,12,-11,22,-23,22v-12,0,-22,-10,-22,-22","w":113},"k":{"d":"43,-23r2,-231r-36,0r0,-23r65,0r-1,173r71,-59r-26,0r0,-23r81,0r0,23r-19,0r-77,63r84,77r20,0r0,23r-81,0r0,-23r23,0r-76,-72r0,72r24,0r0,23r-80,0r0,-23r26,0","w":213,"k":{"y":4}},"l":{"d":"43,-23r2,-231r-36,0r0,-23r65,0r-1,254r29,0r0,23r-85,0r0,-23r26,0","w":113,"k":{"y":4,"w":4}},"m":{"d":"19,0r0,-23r24,0r2,-140r-30,0r0,-23r59,0v2,15,-4,31,-3,41v8,-28,38,-45,66,-45v35,-1,49,21,57,43v4,-8,15,-43,63,-43v89,1,57,94,62,167r27,0r0,23r-80,0r0,-23r23,0v-6,-56,27,-143,-38,-143v-24,0,-54,17,-54,67r0,76r26,0r0,23r-81,0r0,-23r24,0v-6,-56,26,-143,-39,-143v-24,0,-53,17,-53,67r-1,76r27,0r0,23r-81,0","w":360,"k":{"y":6,"u":4}},"n":{"d":"146,0r0,-23r24,0v0,-29,1,-59,1,-89v0,-18,-1,-54,-42,-54v-26,0,-54,17,-55,67r-1,76r27,0r0,23r-81,0r0,-23r24,0r2,-140r-30,0r0,-23r59,0v2,15,-4,31,-3,41v8,-28,38,-45,66,-45v89,2,59,94,62,167r27,0r0,23r-80,0","w":240,"k":{"y":11,"v":11,"u":4}},"o":{"d":"17,-88v0,-59,33,-102,90,-102v57,0,90,39,90,92v0,59,-33,102,-90,102v-57,0,-90,-39,-90,-92xm48,-93v0,40,19,73,59,73v40,0,59,-33,59,-73v0,-40,-19,-73,-59,-73v-40,0,-59,33,-59,73","w":213,"k":{"y":9,"x":2,"w":9,"v":9,"g":2,".":9,",":9}},"p":{"d":"41,68r2,-231r-32,0r0,-23r61,0v2,12,-5,32,-3,41v8,-26,33,-45,66,-45v51,0,75,41,75,90v0,44,-23,104,-100,104v-13,0,-28,-2,-38,-6r-1,70r31,0r0,22r-87,0r0,-22r26,0xm72,-99r-1,70v58,29,108,-15,108,-71v0,-46,-23,-66,-52,-66v-26,0,-54,17,-55,67","w":226,"k":{"y":11,".":9,",":9}},"q":{"d":"103,-20v65,0,53,-75,54,-137v-45,-24,-107,3,-107,72v0,35,17,65,53,65xm128,90r0,-22r27,0r4,-106v-8,27,-36,42,-63,42v-33,0,-77,-19,-77,-89v0,-86,79,-125,156,-95r11,0r-1,248r28,0r0,22r-85,0","w":226},"r":{"d":"43,-23r2,-140r-32,0r0,-23r61,0v2,18,-4,40,-3,58v4,-32,31,-73,82,-58r-3,27v-74,-17,-81,60,-77,136r31,0r0,23r-87,0r0,-23r26,0","w":153,"k":{"y":4,"o":4,"g":9,"e":4,"d":9,"c":6,"a":6,".":20,"-":20,",":20}},"s":{"d":"151,-179r1,45r-26,0r-2,-27v-26,-12,-75,-10,-75,22v0,20,18,26,45,31v47,8,67,22,67,53v0,33,-22,59,-76,59v-20,0,-52,-5,-64,-11r-1,-47r26,0r2,27v29,13,85,17,85,-22v0,-18,-19,-25,-39,-29v-50,-11,-75,-20,-75,-56v0,-30,20,-56,73,-56v15,0,45,5,59,11","w":180,"k":{"w":9}},"t":{"d":"14,-163r0,-23r30,0r1,-45r30,-2r-2,47r58,0r0,23r-58,0v-1,31,-2,62,-2,93v0,27,1,50,29,50v15,0,28,-5,36,-8r-1,24v-9,5,-26,8,-41,8v-52,0,-52,-37,-52,-61v0,-23,1,-79,1,-106r-29,0","w":140},"u":{"d":"11,-163r0,-23r60,0v8,56,-31,166,39,166v54,0,55,-58,55,-85r0,-58r-29,0r0,-23r59,0r-1,163r26,0r0,23r-55,0v0,-16,2,-28,3,-41v-8,22,-31,45,-63,45v-88,2,-60,-95,-64,-167r-30,0","w":233},"v":{"d":"4,-163r0,-23r76,0r0,23r-22,0r47,135v13,-48,33,-90,48,-135r-24,0r0,-23r74,0r0,23r-20,0r-65,163r-29,0r-65,-163r-20,0","w":206,"k":{"o":4,"e":4,"a":4,".":33,",":33}},"w":{"d":"6,-163r0,-23r76,0r0,23r-22,0r46,135v10,-37,27,-72,40,-107r-11,-28r-20,0r0,-23r76,0r0,23r-25,0r45,135v12,-48,32,-90,47,-135r-25,0r0,-23r74,0r0,23r-21,0r-62,163r-31,0r-35,-105v-10,36,-27,71,-40,105r-29,0r-62,-163r-21,0","w":313,"k":{"o":6,"e":6,"a":4,".":33,",":33}},"x":{"d":"11,-163r0,-23r81,0r0,23v-10,1,-32,-3,-18,6r36,45r42,-51r-26,0r0,-23r74,0r0,23r-21,0r-56,66r60,74r22,0r0,23r-81,0r0,-23r25,0v-16,-17,-30,-37,-45,-55r-45,55r24,0r0,23r-74,0r0,-23r21,0r60,-72r-55,-68r-24,0","w":213},"y":{"d":"4,-163r0,-23r78,0r0,23r-23,0r50,135v12,-47,31,-90,46,-135r-26,0r0,-23r74,0r0,23r-20,0r-57,157v-30,81,-51,111,-117,97r0,-24v42,15,69,-17,85,-59r-68,-171r-22,0","w":206,"k":{"o":6,"e":6,"a":6,".":33,",":33}},"z":{"d":"175,-54r-3,54r-154,0r0,-22r121,-141r-88,0r-1,30r-27,0r1,-53r150,0r0,21r-107,128v-4,5,-9,9,-14,14r92,0r3,-31r27,0","w":193},"{":{"d":"100,-277r0,23v-71,-7,3,135,-58,161v39,11,25,74,25,119v0,36,6,42,33,42r0,22v-40,1,-58,2,-63,-54v-3,-37,21,-120,-24,-117r0,-24v61,4,-14,-179,67,-172r20,0","w":113},"|":{"d":"28,90r0,-360r24,0r0,360r-24,0","w":79},"}":{"d":"13,90r0,-22v71,7,-3,-136,58,-162v-39,-11,-25,-73,-25,-118v0,-36,-6,-42,-33,-42r0,-23v40,-1,58,-1,63,55v3,37,-20,119,24,117r0,24v-62,-4,16,179,-67,171r-20,0","w":113},"~":{"d":"146,-67v-36,0,-91,-50,-108,1r-13,-18v8,-15,20,-32,44,-32v26,0,55,24,78,25v14,0,23,-12,31,-25r13,18v-11,15,-22,31,-45,31","w":216},"\u00a1":{"d":"68,-104r4,191r-33,0r3,-191r26,0xm79,-171v0,12,-10,22,-22,22v-12,0,-23,-10,-23,-22v0,-12,11,-23,23,-23v12,0,22,11,22,23","w":113},"\u00a2":{"d":"100,-21r1,-144v-74,18,-64,128,-1,144xm124,-166r-1,146v18,0,37,-6,54,-11r-2,27v-16,4,-30,8,-52,8r-1,44r-22,0r0,-45v-60,-7,-79,-51,-79,-96v0,-64,41,-91,80,-96r1,-39r23,0r-1,38v14,0,43,3,56,9r0,49r-25,0r0,-29v-8,-3,-23,-5,-31,-5"},"\u00a3":{"d":"191,-247r0,56r-26,0r0,-36v-46,-10,-89,-13,-92,58v0,7,1,18,2,26r53,0r0,23r-52,0v3,21,0,94,-10,97r97,0r2,-37r27,0r-3,60r-180,0r0,-23r27,0v13,-10,13,-69,10,-97r-33,0r0,-23r32,0v-8,-72,19,-116,89,-113v15,0,39,2,57,9"},"\u00a5":{"d":"2,-229r0,-23r67,0r0,23r-19,0r54,96r52,-96r-21,0r0,-23r63,0r0,23r-18,0r-52,98r45,0r0,21r-57,0r-1,27r58,0r0,20r-58,0r-1,40r21,0r0,23r-66,0r0,-23r19,0r1,-40r-58,0r0,-20r58,0r0,-27r-58,0r0,-21r46,0r-55,-98r-20,0"},"\u0192":{"d":"81,-124r-38,0r0,-23r40,0v-3,-77,33,-124,114,-106r-3,24v-59,-16,-86,21,-83,82r51,0r0,23r-53,0r-7,92v-2,28,-8,102,-73,102v-14,0,-27,-4,-30,-5r3,-24v83,28,71,-90,79,-165"},"\u00a7":{"d":"144,13v0,-46,-116,-49,-116,-108v0,-22,14,-46,36,-54v-18,-8,-33,-26,-33,-47v-1,-69,86,-69,140,-49r0,45r-26,0r0,-26v-6,-2,-18,-6,-38,-6v-37,0,-47,19,-47,32v2,49,115,45,115,110v0,29,-20,41,-34,51v21,15,33,26,33,50v0,75,-107,71,-148,50r0,-50r28,0r0,30v21,13,90,15,90,-28xm57,-102v-2,32,42,39,65,53v8,-5,25,-15,25,-36v-2,-32,-41,-38,-63,-52v-17,9,-27,19,-27,35"},"\u00a4":{"d":"10,-51r20,-21v-25,-28,-25,-80,0,-108r-20,-21r16,-15r20,20v28,-25,80,-25,108,0r20,-20r16,15r-19,21v24,28,24,80,0,108r19,21r-16,15r-20,-20v-28,25,-80,25,-108,0r-20,20xm100,-193v-36,0,-65,30,-65,67v0,37,29,67,65,67v36,0,65,-30,65,-67v0,-37,-29,-67,-65,-67"},"'":{"d":"50,-174v-22,-12,-10,-54,-17,-87v0,-11,4,-19,17,-19v24,-2,18,31,15,46v-4,20,5,55,-15,60","w":100},"\u201c":{"d":"126,-280r13,14v-13,14,-20,25,-20,37v0,20,17,19,17,36v0,12,-8,19,-20,19v-19,0,-28,-17,-28,-36v0,-27,12,-48,38,-70xm58,-280r13,14v-13,14,-20,25,-20,37v0,20,16,19,16,36v0,12,-7,19,-19,19v-19,0,-28,-17,-28,-36v0,-27,12,-48,38,-70","w":159,"k":{"A":46}},"\u00ab":{"d":"92,-109r47,-53r20,17r-41,46r41,47r-20,16r-47,-53r0,-20xm21,-109r47,-53r20,17r-41,46r41,47r-20,16r-47,-53r0,-20","w":180},"\u2013":{"d":"0,-86r0,-25r180,0r0,25r-180,0","w":180},"\u00b7":{"d":"28,-103v0,-12,10,-23,22,-23v12,0,22,11,22,23v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":100},"\u00b6":{"d":"88,70r0,-189v-37,0,-67,-27,-67,-65v0,-78,87,-69,164,-68r0,322r-29,0r0,-298r-38,0r0,298r-30,0","w":216},"\u201d":{"d":"34,-174r-13,-13v13,-14,20,-26,20,-38v0,-20,-17,-18,-17,-35v0,-12,8,-20,20,-20v19,0,28,17,28,36v0,27,-12,48,-38,70xm102,-174r-13,-13v13,-14,20,-26,20,-38v0,-20,-16,-18,-16,-35v0,-12,7,-20,19,-20v19,0,28,17,28,36v0,27,-12,48,-38,70","w":159,"k":{" ":20}},"\u00bb":{"d":"88,-89r-47,53r-20,-16r41,-47r-41,-46r20,-17r47,53r0,20xm159,-89r-47,53r-20,-16r41,-47r-41,-46r20,-17r47,53r0,20","w":180},"\u2026":{"d":"38,-18v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm158,-18v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm278,-18v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":360},"\u00bf":{"d":"144,59r2,24v-18,6,-38,7,-44,7v-104,-3,-83,-98,-36,-128v24,-15,60,-34,32,-61r24,-13v32,30,4,69,-27,84v-24,12,-37,30,-37,51v-7,33,50,55,86,36xm136,-171v0,12,-11,22,-23,22v-12,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,23,11,23,23","w":180},"`":{"d":"20,-289r66,57r-17,15r-68,-56","w":113},"\u00b4":{"d":"27,-232r66,-57r19,16r-68,56","w":113},"\u00af":{"d":"6,-242r0,-23r101,0r0,23r-101,0","w":113},"\u00a8":{"d":"-4,-251v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm75,-251v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":113},"\u00b8":{"d":"67,24v18,1,33,9,33,28v0,39,-52,35,-78,26r2,-18v15,7,46,13,49,-8v2,-15,-15,-17,-27,-13r0,-39r21,0r0,24","w":113},"\u2014":{"d":"0,-86r0,-25r360,0r0,25r-360,0","w":360},"\u00c6":{"d":"22,-23r130,-229r172,0r0,58r-26,0r0,-35r-79,0r0,95r77,0r0,22r-77,0r-1,89r87,0r2,-39r27,0r-2,62r-173,0r0,-23r28,0r1,-89r-87,0r-48,89r29,0r0,23r-83,0r0,-23r23,0xm165,-229r-52,95r75,0r0,-95r-23,0","w":353},"\u00aa":{"d":"88,-193v-26,0,-55,1,-55,21v0,9,11,15,21,15v12,0,34,-6,34,-36xm16,-218r0,-30v35,-13,97,-15,93,32v0,10,-2,40,-2,57r17,0r0,16r-37,0v-2,-7,4,-17,2,-21v-7,27,-78,40,-78,-8v0,-32,36,-34,77,-34v7,-35,-25,-40,-53,-29r0,17r-19,0","w":134},"\u0141":{"d":"15,0r0,-23r28,0r1,-81r-38,28r0,-24r38,-29r0,-100r-29,0r0,-23r86,0r0,23r-26,0r0,77r62,-46r0,24r-62,46r-1,105r86,0r2,-39r27,0r-3,62r-171,0"},"\u00d8":{"d":"76,-47r106,-172v-12,-8,-27,-13,-45,-13v-92,-2,-107,127,-61,185xm199,-204r-106,172v12,8,26,12,44,12v91,2,105,-125,62,-184xm33,22r27,-44v-79,-65,-44,-234,77,-234v23,0,44,5,60,14r25,-41r19,12r-26,41v77,66,42,234,-78,234v-23,0,-43,-4,-59,-13r-27,43","w":273},"\u0152":{"d":"229,-118r-1,95r91,0r2,-39r27,0r-2,62r-191,2v-88,0,-136,-47,-136,-126v0,-102,83,-128,199,-128r125,0r0,58r-26,0r0,-35r-88,0r0,88r82,0r0,23r-82,0xm197,-23r1,-206v-85,-12,-146,20,-146,104v0,83,62,113,145,102","w":366},"\u00ba":{"d":"65,-256v38,0,60,26,60,58v0,32,-22,58,-60,58v-38,0,-60,-26,-60,-58v0,-32,22,-58,60,-58xm65,-157v51,-1,50,-82,0,-83v-49,1,-50,82,0,83","w":130},"\u00e6":{"d":"25,-131r1,-47v48,-16,109,-24,131,25v1,-8,17,-37,60,-37v78,0,77,76,77,100r-127,3v0,20,0,67,64,67v24,0,44,-8,54,-14r0,27v-52,19,-119,15,-136,-34v-11,60,-132,62,-130,-8v0,-27,10,-53,86,-56r34,-2v7,-59,-39,-69,-88,-54r-1,30r-25,0xm48,-50v0,21,19,32,36,32v34,0,55,-19,55,-68v-38,3,-91,-2,-91,36xm167,-108r98,-2v-2,-21,-6,-57,-48,-57v-31,0,-50,18,-50,59","w":313},"\u0131":{"d":"43,-23r2,-140r-34,0r0,-23r63,0r-1,163r29,0r0,23r-88,0r0,-23r29,0","w":113},"\u0142":{"d":"17,0r0,-23r26,0r1,-102r-31,24r0,-22r31,-24r1,-107r-36,0r0,-23r65,0r-1,108r33,-24r0,22r-33,24r0,124r29,0r0,23r-85,0","w":113},"\u00f8":{"d":"63,-41r71,-118v-67,-35,-112,62,-71,118xm150,-145r-70,118v67,36,113,-63,70,-118xm26,21r22,-37v-59,-48,-29,-174,59,-174v15,0,28,3,40,8r21,-34r18,11r-20,34v59,48,30,175,-59,175v-16,0,-29,-2,-41,-8r-22,36","w":213},"\u0153":{"d":"105,-166v-77,1,-84,145,0,146v46,0,50,-41,50,-78v0,-38,-6,-68,-50,-68xm183,-113r97,0v0,-29,-18,-54,-46,-54v-33,0,-51,23,-51,54xm311,-90r-128,0v0,21,2,70,64,70v20,0,40,-6,55,-14r-1,25v-46,21,-117,20,-134,-31v-10,30,-29,44,-65,44v-57,0,-87,-38,-87,-97v0,-54,33,-97,90,-97v35,0,54,13,66,39v6,-15,24,-39,63,-39v71,0,77,67,77,100","w":326},"\u00df":{"d":"114,-135v-11,-34,75,-54,75,-89v0,-20,-19,-33,-51,-33v-64,0,-65,47,-65,70r-1,164r24,0r0,23r-78,0r0,-23r25,0r2,-140r-33,0r0,-23r33,0v-1,-45,13,-94,94,-94v40,0,78,14,78,54v0,49,-76,57,-75,88v10,42,95,23,95,83v0,62,-73,63,-123,51r0,-49r24,0r0,29v27,4,70,10,70,-26v0,-47,-94,-22,-94,-85","w":253},"\u00f7":{"d":"17,-79r0,-24r182,0r0,24r-182,0xm86,-164v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,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},"\u00be":{"d":"239,-129v-19,20,-33,45,-51,66r50,0xm160,-59r70,-92r33,0r-1,88r29,0r0,18r-29,0r0,27r17,0r0,18r-58,0r0,-18r16,0r1,-27r-78,0r0,-14xm64,8r162,-280r19,12r-162,280xm48,-171r0,-18v28,2,46,-14,46,-27v0,-12,-12,-22,-26,-22v-15,0,-29,9,-29,24r-23,0v0,-21,14,-42,55,-42v33,0,47,17,47,36v1,28,-24,34,-35,38v25,2,42,14,42,37v0,21,-16,46,-63,46v-23,0,-39,-4,-44,-8r0,-22v22,18,85,13,82,-18v-2,-25,-31,-24,-52,-24","w":300},"\u00bc":{"d":"239,-129v-19,20,-33,45,-51,66r50,0xm160,-59r70,-92r33,0r-1,88r29,0r0,18r-29,0r0,27r17,0r0,18r-58,0r0,-18r16,0r1,-27r-78,0r0,-14xm64,8r162,-280r19,12r-162,280xm29,-102r0,-19r31,0r1,-109r-41,24r-8,-16v25,-10,37,-33,74,-31r-2,132r30,0r0,19r-85,0","w":300},"\u00b9":{"d":"31,-102r0,-19r31,0r1,-109r-41,24r-8,-16v25,-10,37,-33,74,-31r-2,132r30,0r0,19r-85,0","w":129},"\u00d7":{"d":"91,-91r-65,-66r16,-16r66,65r66,-65r16,16r-65,66r65,65r-16,17r-66,-66r-66,66r-16,-17","w":216},"\u00ae":{"d":"89,-51r0,-150v50,0,113,-8,113,43v0,27,-18,39,-39,43r40,64r-28,0r-39,-63r-23,0r0,63r-24,0xm113,-178r0,41v27,0,69,3,64,-22v1,-24,-39,-18,-64,-19xm14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130xm38,-126v0,60,48,108,106,108v58,0,106,-48,106,-108v0,-60,-48,-108,-106,-108v-58,0,-106,48,-106,108","w":288},"\u00de":{"d":"75,-209v67,-4,118,11,118,71v0,68,-50,85,-119,79r0,36r32,0r0,23r-91,0r0,-23r28,0r1,-206r-29,0r0,-23r91,0r0,23r-31,0r0,20xm162,-134v0,-47,-36,-56,-87,-52r-1,104v49,4,88,-7,88,-52","w":206},"\u00a6":{"d":"28,63r0,-126r24,0r0,126r-24,0xm28,-117r0,-126r24,0r0,126r-24,0","w":79},"\u00d0":{"d":"222,-130v0,-82,-58,-108,-147,-99r0,84r78,0r0,22r-78,0r-1,100v93,7,148,-20,148,-107xm15,0r0,-23r28,0r1,-100r-29,0r0,-22r29,0r0,-84r-29,0r0,-23r114,0v75,0,126,38,126,122v0,89,-53,130,-138,130r-102,0","w":273},"\u00bd":{"d":"64,8r162,-280r19,12r-162,280xm181,0v-3,-20,11,-23,20,-31v24,-22,61,-55,61,-80v0,-31,-57,-31,-59,4r-23,0v0,-28,24,-47,55,-47v34,0,51,18,51,41v0,37,-42,68,-69,95r72,0r0,18r-108,0xm29,-102r0,-19r31,0r1,-109r-41,24r-8,-16v25,-10,37,-33,74,-31r-2,132r30,0r0,19r-85,0","w":300},"\u00e7":{"d":"114,24v19,1,34,9,34,28v0,39,-52,35,-79,26r2,-18v15,6,47,13,50,-8v2,-14,-15,-18,-27,-13r0,-36v-58,-8,-77,-52,-77,-96v0,-97,79,-110,153,-88r0,49r-27,0r0,-29v-8,-3,-23,-5,-31,-5v-54,0,-64,43,-64,73v0,10,1,73,70,73v18,0,34,-6,51,-11r-2,26v-8,5,-42,9,-53,9r0,20","w":186},"\u00f0":{"d":"107,-166v-40,0,-59,33,-59,73v0,40,19,73,59,73v40,0,59,-33,59,-73v0,-40,-19,-73,-59,-73xm56,-230r37,-19v-10,-8,-21,-15,-27,-19r24,-12v9,6,18,13,26,19r34,-19r14,16r-32,17v40,39,65,86,65,145v0,63,-33,106,-90,106v-57,0,-90,-39,-90,-92v0,-78,75,-129,136,-86v-10,-22,-26,-42,-44,-60r-39,21","w":213},"\u00b1":{"d":"96,-37r0,-61r-79,0r0,-24r79,0r0,-60r24,0r0,60r79,0r0,24r-79,0r0,61r-24,0xm17,0r0,-24r182,0r0,24r-182,0","w":216},"\u00c7":{"d":"159,24v19,1,34,9,34,28v0,39,-52,35,-79,26r2,-18v15,6,47,13,50,-8v2,-14,-15,-18,-27,-13r0,-35v-75,-5,-121,-47,-121,-128v0,-71,43,-132,137,-132v27,0,57,6,74,12r0,58r-28,0r0,-40v-74,-20,-150,11,-150,98v0,85,66,124,146,102r1,-41r28,0r-1,61v-14,6,-43,10,-66,10r0,20","w":246},"\u00fe":{"d":"41,68r2,-322r-31,0r0,-23r61,0r-4,132v8,-26,33,-45,66,-45v51,0,75,41,75,90v0,44,-23,104,-100,104v-13,0,-28,-2,-38,-6r-1,70r31,0r0,22r-87,0r0,-22r26,0xm72,-99r-1,70v58,29,108,-15,108,-71v0,-46,-23,-66,-52,-66v-26,0,-54,17,-55,67","w":226},"\u00a9":{"d":"183,-103r29,0v-6,35,-32,55,-67,55v-42,0,-70,-30,-70,-78v0,-88,125,-110,136,-25r-29,0v-3,-18,-14,-29,-35,-29v-28,0,-46,22,-46,54v0,55,72,77,82,23xm14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130xm38,-126v0,60,48,108,106,108v58,0,106,-48,106,-108v0,-60,-48,-108,-106,-108v-58,0,-106,48,-106,108","w":288},"\u00ac":{"d":"175,-39r0,-76r-158,0r0,-24r182,0r0,100r-24,0","w":216},"\u00b2":{"d":"11,-102v-3,-20,11,-23,20,-31v24,-22,61,-55,61,-80v0,-31,-57,-31,-59,4r-22,0v0,-28,24,-47,55,-47v34,0,51,18,51,41v0,36,-40,68,-69,94r71,0r0,19r-108,0","w":129},"\u00b3":{"d":"44,-171r0,-18v28,2,46,-14,46,-27v0,-12,-12,-22,-26,-22v-15,0,-30,9,-30,24r-22,0v0,-21,14,-42,55,-42v33,0,47,17,47,36v1,28,-25,34,-36,38v25,2,42,14,42,37v0,21,-16,46,-63,46v-23,0,-39,-4,-44,-8r0,-22v23,17,86,13,83,-18v-2,-25,-31,-24,-52,-24","w":129},"\u2122":{"d":"59,-102r0,-126r-44,0r0,-24r119,0r0,24r-44,0r0,126r-31,0xm301,-102r0,-118r-44,118r-20,0r-44,-118r0,118r-30,0r0,-150r44,0r40,107r40,-107r44,0r0,150r-30,0","w":356},"\u00b0":{"d":"39,-205v0,18,15,33,33,33v18,0,33,-15,33,-33v0,-18,-15,-33,-33,-33v-18,0,-33,15,-33,33xm21,-205v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,51,-51,51v-28,0,-51,-23,-51,-51","w":144},"\u00b5":{"d":"38,95r3,-258r-30,0r0,-23r60,0v8,56,-31,166,39,166v54,0,55,-58,55,-85r0,-58r-29,0r0,-23r59,0r-1,163r26,0r0,23r-55,0v0,-16,2,-28,3,-41v-7,33,-66,62,-98,33r-1,103r-31,0","w":233},"\u00c1":{"d":"95,-122r75,0r-36,-101v-10,35,-27,68,-39,101xm4,0r0,-23r23,0r94,-229r33,0r85,229r24,0r0,23r-85,0r0,-23r26,0r-27,-76r-91,0r-29,76r30,0r0,23r-83,0xm104,-276r66,-57r19,15r-68,57","w":266},"\u00c2":{"d":"95,-122r75,0r-36,-101v-10,35,-27,68,-39,101xm4,0r0,-23r23,0r94,-229r33,0r85,229r24,0r0,23r-85,0r0,-23r26,0r-27,-76r-91,0r-29,76r30,0r0,23r-83,0xm89,-265r-17,-15r51,-50r21,0r51,50r-17,15r-44,-44","w":266},"\u00c4":{"d":"95,-122r75,0r-36,-101v-10,35,-27,68,-39,101xm4,0r0,-23r23,0r94,-229r33,0r85,229r24,0r0,23r-85,0r0,-23r26,0r-27,-76r-91,0r-29,76r30,0r0,23r-83,0xm76,-296v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm154,-296v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21","w":266},"\u00c0":{"d":"95,-122r75,0r-36,-101v-10,35,-27,68,-39,101xm4,0r0,-23r23,0r94,-229r33,0r85,229r24,0r0,23r-85,0r0,-23r26,0r-27,-76r-91,0r-29,76r30,0r0,23r-83,0xm97,-333r66,57r-17,15r-68,-57","w":266},"\u00c5":{"d":"95,-122r75,0r-36,-101v-10,35,-27,68,-39,101xm4,0r0,-23r23,0r94,-229r33,0r85,229r24,0r0,23r-85,0r0,-23r26,0r-27,-76r-91,0r-29,76r30,0r0,23r-83,0xm101,-295v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm122,-295v0,12,4,20,15,20v11,0,16,-8,16,-20v0,-14,-6,-20,-16,-20v-10,0,-15,9,-15,20","w":266},"\u00c3":{"d":"95,-122r75,0r-36,-101v-10,35,-27,68,-39,101xm4,0r0,-23r23,0r94,-229r33,0r85,229r24,0r0,23r-85,0r0,-23r26,0r-27,-76r-91,0r-29,76r30,0r0,23r-83,0xm159,-277v-27,1,-53,-36,-70,-1r-20,-10v14,-43,62,-27,90,-12v10,0,17,-8,22,-15r17,12v-11,14,-20,26,-39,26","w":266},"\u00c9":{"d":"43,-23r1,-206r-29,0r0,-23r171,0r0,58r-27,0r0,-35r-84,0r0,88r79,0r0,23r-79,0r-1,95r87,0r2,-39r27,0r-2,62r-173,0r0,-23r28,0xm73,-276r67,-57r18,15r-67,57","w":206},"\u00ca":{"d":"43,-23r1,-206r-29,0r0,-23r171,0r0,58r-27,0r0,-35r-84,0r0,88r79,0r0,23r-79,0r-1,95r87,0r2,-39r27,0r-2,62r-173,0r0,-23r28,0xm59,-265r-18,-15r52,-50r20,0r52,50r-17,15r-45,-44","w":206},"\u00cb":{"d":"43,-23r1,-206r-29,0r0,-23r171,0r0,58r-27,0r0,-35r-84,0r0,88r79,0r0,23r-79,0r-1,95r87,0r2,-39r27,0r-2,62r-173,0r0,-23r28,0xm43,-296v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm121,-296v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21","w":206},"\u00c8":{"d":"43,-23r1,-206r-29,0r0,-23r171,0r0,58r-27,0r0,-35r-84,0r0,88r79,0r0,23r-79,0r-1,95r87,0r2,-39r27,0r-2,62r-173,0r0,-23r28,0xm67,-333r66,57r-17,15r-68,-57","w":206},"\u00cd":{"d":"44,-23r1,-206r-28,0r0,-23r87,0r0,23r-28,0r-1,206r29,0r0,23r-87,0r0,-23r27,0xm30,-276r66,-57r19,15r-67,57","w":120},"\u00ce":{"d":"44,-23r1,-206r-28,0r0,-23r87,0r0,23r-28,0r-1,206r29,0r0,23r-87,0r0,-23r27,0xm16,-265r-18,-15r52,-50r20,0r52,50r-18,15r-44,-44","w":120},"\u00cf":{"d":"44,-23r1,-206r-28,0r0,-23r87,0r0,23r-28,0r-1,206r29,0r0,23r-87,0r0,-23r27,0xm0,-296v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm78,-296v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21","w":120},"\u00cc":{"d":"44,-23r1,-206r-28,0r0,-23r87,0r0,23r-28,0r-1,206r29,0r0,23r-87,0r0,-23r27,0xm24,-333r66,57r-18,15r-67,-57","w":120},"\u00d1":{"d":"43,-23r1,-206r-33,0r0,-23r60,0r150,203r1,-180r-31,0r0,-23r85,0r0,23r-27,0r-2,229r-25,0r-153,-205r-2,182r32,0r0,23r-84,0r0,-23r28,0xm174,-277v-27,1,-54,-36,-71,-1r-20,-10v14,-43,62,-27,90,-12v10,0,17,-8,22,-15r17,12v-11,14,-19,26,-38,26","w":286},"\u00d3":{"d":"18,-122v0,-77,42,-134,119,-134v79,0,119,57,119,126v0,77,-42,134,-119,134v-79,0,-119,-57,-119,-126xm51,-126v0,55,25,106,86,106v61,0,85,-51,85,-106v0,-55,-24,-106,-85,-106v-61,0,-86,51,-86,106xm107,-276r66,-57r19,15r-67,57","w":273},"\u00d4":{"d":"18,-122v0,-77,42,-134,119,-134v79,0,119,57,119,126v0,77,-42,134,-119,134v-79,0,-119,-57,-119,-126xm51,-126v0,55,25,106,86,106v61,0,85,-51,85,-106v0,-55,-24,-106,-85,-106v-61,0,-86,51,-86,106xm93,-265r-18,-15r52,-50r20,0r52,50r-18,15r-44,-44","w":273},"\u00d6":{"d":"18,-122v0,-77,42,-134,119,-134v79,0,119,57,119,126v0,77,-42,134,-119,134v-79,0,-119,-57,-119,-126xm51,-126v0,55,25,106,86,106v61,0,85,-51,85,-106v0,-55,-24,-106,-85,-106v-61,0,-86,51,-86,106xm76,-296v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21xm155,-296v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":273},"\u00d2":{"d":"18,-122v0,-77,42,-134,119,-134v79,0,119,57,119,126v0,77,-42,134,-119,134v-79,0,-119,-57,-119,-126xm51,-126v0,55,25,106,86,106v61,0,85,-51,85,-106v0,-55,-24,-106,-85,-106v-61,0,-86,51,-86,106xm100,-333r67,57r-18,15r-67,-57","w":273},"\u00d5":{"d":"18,-122v0,-77,42,-134,119,-134v79,0,119,57,119,126v0,77,-42,134,-119,134v-79,0,-119,-57,-119,-126xm51,-126v0,55,25,106,86,106v61,0,85,-51,85,-106v0,-55,-24,-106,-85,-106v-61,0,-86,51,-86,106xm163,-277v-26,1,-54,-36,-70,-1r-21,-10v14,-43,62,-27,90,-12v10,0,17,-8,22,-15r17,12v-11,14,-19,26,-38,26","w":273},"\u0160":{"d":"24,-8r0,-56r29,0r0,34v38,20,109,12,109,-37v0,-67,-138,-28,-138,-118v0,-31,18,-71,93,-71v18,0,52,5,68,12r0,50r-28,0r0,-31v-38,-13,-100,-12,-100,37v0,64,138,24,138,117v0,85,-120,82,-171,63xm45,-315r18,-15r44,45r44,-45r18,15r-52,50r-20,0","w":213},"\u00da":{"d":"137,4v-78,-4,-99,-22,-97,-107v0,-41,1,-87,1,-126r-29,0r0,-23r87,0r0,23r-27,0v0,35,-1,70,-1,129v-1,58,12,76,67,80v97,7,60,-123,68,-209r-31,0r0,-23r87,0r0,23r-28,0r-1,136v2,61,-29,100,-96,97xm107,-276r66,-57r19,15r-67,57","w":273},"\u00db":{"d":"137,4v-78,-4,-99,-22,-97,-107v0,-41,1,-87,1,-126r-29,0r0,-23r87,0r0,23r-27,0v0,35,-1,70,-1,129v-1,58,12,76,67,80v97,7,60,-123,68,-209r-31,0r0,-23r87,0r0,23r-28,0r-1,136v2,61,-29,100,-96,97xm93,-265r-18,-15r52,-50r20,0r52,50r-18,15r-44,-44","w":273},"\u00dc":{"d":"137,4v-78,-4,-99,-22,-97,-107v0,-41,1,-87,1,-126r-29,0r0,-23r87,0r0,23r-27,0v0,35,-1,70,-1,129v-1,58,12,76,67,80v97,7,60,-123,68,-209r-31,0r0,-23r87,0r0,23r-28,0r-1,136v2,61,-29,100,-96,97xm76,-296v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21xm155,-296v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":273},"\u00d9":{"d":"137,4v-78,-4,-99,-22,-97,-107v0,-41,1,-87,1,-126r-29,0r0,-23r87,0r0,23r-27,0v0,35,-1,70,-1,129v-1,58,12,76,67,80v97,7,60,-123,68,-209r-31,0r0,-23r87,0r0,23r-28,0r-1,136v2,61,-29,100,-96,97xm100,-333r67,57r-18,15r-67,-57","w":273},"\u00dd":{"d":"3,-229r0,-23r87,0r0,23r-26,0r71,96r70,-96r-31,0r0,-23r83,0r0,23r-23,0r-86,120r-1,86r28,0r0,23r-85,0r0,-23r26,0r1,-85r-88,-121r-26,0xm107,-276r67,-57r18,15r-67,57","w":259},"\u0178":{"d":"3,-229r0,-23r87,0r0,23r-26,0r71,96r70,-96r-31,0r0,-23r83,0r0,23r-23,0r-86,120r-1,86r28,0r0,23r-85,0r0,-23r26,0r1,-85r-88,-121r-26,0xm73,-296v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm152,-296v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":259},"\u017d":{"d":"19,0r0,-21r159,-208r-123,0r-2,37r-27,0r2,-60r186,0r0,23r-157,206r129,0r2,-38r27,0r-3,61r-193,0xm55,-315r17,-15r45,45r44,-45r18,15r-52,50r-20,0","w":233},"\u00e1":{"d":"87,-18v20,0,53,-11,53,-67v-44,0,-88,0,-88,35v0,21,16,32,35,32xm57,-160r0,29r-27,0r0,-45v54,-23,138,-24,138,53v0,16,-2,67,-2,100r27,0r0,23r-53,0v0,-14,2,-31,3,-40v-11,30,-30,44,-63,44v-21,0,-57,-8,-57,-53v0,-52,55,-57,117,-57v7,-59,-34,-72,-83,-54xm73,-232r67,-57r18,16r-67,56","w":206},"\u00e2":{"d":"87,-18v20,0,53,-11,53,-67v-44,0,-88,0,-88,35v0,21,16,32,35,32xm57,-160r0,29r-27,0r0,-45v54,-23,138,-24,138,53v0,16,-2,67,-2,100r27,0r0,23r-53,0v0,-14,2,-31,3,-40v-11,30,-30,44,-63,44v-21,0,-57,-8,-57,-53v0,-52,55,-57,117,-57v7,-59,-34,-72,-83,-54xm55,-220r-18,-15r52,-50r20,0r52,50r-18,15r-44,-45","w":206},"\u00e4":{"d":"87,-18v20,0,53,-11,53,-67v-44,0,-88,0,-88,35v0,21,16,32,35,32xm57,-160r0,29r-27,0r0,-45v54,-23,138,-24,138,53v0,16,-2,67,-2,100r27,0r0,23r-53,0v0,-14,2,-31,3,-40v-11,30,-30,44,-63,44v-21,0,-57,-8,-57,-53v0,-52,55,-57,117,-57v7,-59,-34,-72,-83,-54xm39,-251v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm117,-251v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":206},"\u00e0":{"d":"87,-18v20,0,53,-11,53,-67v-44,0,-88,0,-88,35v0,21,16,32,35,32xm57,-160r0,29r-27,0r0,-45v54,-23,138,-24,138,53v0,16,-2,67,-2,100r27,0r0,23r-53,0v0,-14,2,-31,3,-40v-11,30,-30,44,-63,44v-21,0,-57,-8,-57,-53v0,-52,55,-57,117,-57v7,-59,-34,-72,-83,-54xm67,-289r66,57r-17,15r-68,-56","w":206},"\u00e5":{"d":"87,-18v20,0,53,-11,53,-67v-44,0,-88,0,-88,35v0,21,16,32,35,32xm57,-160r0,29r-27,0r0,-45v54,-23,138,-24,138,53v0,16,-2,67,-2,100r27,0r0,23r-53,0v0,-14,2,-31,3,-40v-11,30,-30,44,-63,44v-21,0,-57,-8,-57,-53v0,-52,55,-57,117,-57v7,-59,-34,-72,-83,-54xm63,-252v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm84,-252v0,12,4,20,15,20v11,0,15,-8,15,-20v0,-14,-5,-20,-15,-20v-10,0,-15,9,-15,20","w":206},"\u00e3":{"d":"87,-18v20,0,53,-11,53,-67v-44,0,-88,0,-88,35v0,21,16,32,35,32xm57,-160r0,29r-27,0r0,-45v54,-23,138,-24,138,53v0,16,-2,67,-2,100r27,0r0,23r-53,0v0,-14,2,-31,3,-40v-11,30,-30,44,-63,44v-21,0,-57,-8,-57,-53v0,-52,55,-57,117,-57v7,-59,-34,-72,-83,-54xm129,-232v-27,1,-54,-38,-70,-1r-20,-11v15,-43,62,-26,90,-11v10,0,16,-9,21,-16r18,13v-11,14,-20,26,-39,26","w":206},"\u00e9":{"d":"48,-113r104,0v0,-29,-18,-54,-49,-54v-32,0,-53,23,-55,54xm183,-90r-135,0v1,38,17,70,70,70v20,0,41,-6,56,-14r-1,25v-69,30,-156,8,-156,-84v0,-55,29,-97,86,-97v73,0,80,67,80,100xm70,-232r66,-57r19,16r-67,56"},"\u00ea":{"d":"48,-113r104,0v0,-29,-18,-54,-49,-54v-32,0,-53,23,-55,54xm183,-90r-135,0v1,38,17,70,70,70v20,0,41,-6,56,-14r-1,25v-69,30,-156,8,-156,-84v0,-55,29,-97,86,-97v73,0,80,67,80,100xm56,-220r-18,-15r52,-50r20,0r52,50r-18,15r-44,-45"},"\u00eb":{"d":"48,-113r104,0v0,-29,-18,-54,-49,-54v-32,0,-53,23,-55,54xm183,-90r-135,0v1,38,17,70,70,70v20,0,41,-6,56,-14r-1,25v-69,30,-156,8,-156,-84v0,-55,29,-97,86,-97v73,0,80,67,80,100xm40,-251v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm118,-251v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21"},"\u00e8":{"d":"48,-113r104,0v0,-29,-18,-54,-49,-54v-32,0,-53,23,-55,54xm183,-90r-135,0v1,38,17,70,70,70v20,0,41,-6,56,-14r-1,25v-69,30,-156,8,-156,-84v0,-55,29,-97,86,-97v73,0,80,67,80,100xm64,-289r66,57r-18,15r-67,-56"},"\u00ed":{"d":"43,-23r2,-140r-34,0r0,-23r63,0r-1,163r29,0r0,23r-88,0r0,-23r29,0xm27,-232r66,-57r19,16r-68,56","w":113},"\u00ee":{"d":"43,-23r2,-140r-34,0r0,-23r63,0r-1,163r29,0r0,23r-88,0r0,-23r29,0xm12,-220r-17,-15r51,-50r21,0r51,50r-17,15r-44,-45","w":113},"\u00ef":{"d":"43,-23r2,-140r-34,0r0,-23r63,0r-1,163r29,0r0,23r-88,0r0,-23r29,0xm-4,-251v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm75,-251v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":113},"\u00ec":{"d":"43,-23r2,-140r-34,0r0,-23r63,0r-1,163r29,0r0,23r-88,0r0,-23r29,0xm20,-289r66,57r-17,15r-68,-56","w":113},"\u00f1":{"d":"146,0r0,-23r24,0v0,-29,1,-59,1,-89v0,-18,-1,-54,-42,-54v-26,0,-54,17,-55,67r-1,76r27,0r0,23r-81,0r0,-23r24,0r2,-140r-30,0r0,-23r59,0v2,15,-4,31,-3,41v8,-28,38,-45,66,-45v89,2,59,94,62,167r27,0r0,23r-80,0xm146,-232v-27,1,-54,-38,-70,-1r-20,-11v14,-43,62,-27,89,-11v10,0,17,-9,22,-16r18,13v-11,14,-20,26,-39,26","w":240},"\u00f3":{"d":"17,-88v0,-59,33,-102,90,-102v57,0,90,39,90,92v0,59,-33,102,-90,102v-57,0,-90,-39,-90,-92xm48,-93v0,40,19,73,59,73v40,0,59,-33,59,-73v0,-40,-19,-73,-59,-73v-40,0,-59,33,-59,73xm77,-232r66,-57r19,16r-67,56","w":213},"\u00f4":{"d":"17,-88v0,-59,33,-102,90,-102v57,0,90,39,90,92v0,59,-33,102,-90,102v-57,0,-90,-39,-90,-92xm48,-93v0,40,19,73,59,73v40,0,59,-33,59,-73v0,-40,-19,-73,-59,-73v-40,0,-59,33,-59,73xm63,-220r-18,-15r52,-50r20,0r52,50r-18,15r-44,-45","w":213},"\u00f6":{"d":"17,-88v0,-59,33,-102,90,-102v57,0,90,39,90,92v0,59,-33,102,-90,102v-57,0,-90,-39,-90,-92xm48,-93v0,40,19,73,59,73v40,0,59,-33,59,-73v0,-40,-19,-73,-59,-73v-40,0,-59,33,-59,73xm46,-251v0,-12,10,-22,22,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21xm125,-251v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":213},"\u00f2":{"d":"17,-88v0,-59,33,-102,90,-102v57,0,90,39,90,92v0,59,-33,102,-90,102v-57,0,-90,-39,-90,-92xm48,-93v0,40,19,73,59,73v40,0,59,-33,59,-73v0,-40,-19,-73,-59,-73v-40,0,-59,33,-59,73xm71,-289r66,57r-18,15r-67,-56","w":213},"\u00f5":{"d":"17,-88v0,-59,33,-102,90,-102v57,0,90,39,90,92v0,59,-33,102,-90,102v-57,0,-90,-39,-90,-92xm48,-93v0,40,19,73,59,73v40,0,59,-33,59,-73v0,-40,-19,-73,-59,-73v-40,0,-59,33,-59,73xm133,-232v-27,1,-54,-38,-70,-1r-21,-11v15,-43,62,-26,90,-11v10,0,17,-9,22,-16r17,13v-11,14,-19,26,-38,26","w":213},"\u0161":{"d":"151,-179r1,45r-26,0r-2,-27v-26,-12,-75,-10,-75,22v0,20,18,26,45,31v47,8,67,22,67,53v0,33,-22,59,-76,59v-20,0,-52,-5,-64,-11r-1,-47r26,0r2,27v29,13,85,17,85,-22v0,-18,-19,-25,-39,-29v-50,-11,-75,-20,-75,-56v0,-30,20,-56,73,-56v15,0,45,5,59,11xm28,-270r18,-15r44,44r44,-44r18,15r-52,50r-20,0","w":180},"\u00fa":{"d":"11,-163r0,-23r60,0v8,56,-31,166,39,166v54,0,55,-58,55,-85r0,-58r-29,0r0,-23r59,0r-1,163r26,0r0,23r-55,0v0,-16,2,-28,3,-41v-8,22,-31,45,-63,45v-88,2,-60,-95,-64,-167r-30,0xm87,-232r66,-57r19,16r-68,56","w":233},"\u00fb":{"d":"11,-163r0,-23r60,0v8,56,-31,166,39,166v54,0,55,-58,55,-85r0,-58r-29,0r0,-23r59,0r-1,163r26,0r0,23r-55,0v0,-16,2,-28,3,-41v-8,22,-31,45,-63,45v-88,2,-60,-95,-64,-167r-30,0xm72,-220r-17,-15r52,-50r20,0r52,50r-18,15r-44,-45","w":233},"\u00fc":{"d":"11,-163r0,-23r60,0v8,56,-31,166,39,166v54,0,55,-58,55,-85r0,-58r-29,0r0,-23r59,0r-1,163r26,0r0,23r-55,0v0,-16,2,-28,3,-41v-8,22,-31,45,-63,45v-88,2,-60,-95,-64,-167r-30,0xm56,-251v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm135,-251v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21","w":233},"\u00f9":{"d":"11,-163r0,-23r60,0v8,56,-31,166,39,166v54,0,55,-58,55,-85r0,-58r-29,0r0,-23r59,0r-1,163r26,0r0,23r-55,0v0,-16,2,-28,3,-41v-8,22,-31,45,-63,45v-88,2,-60,-95,-64,-167r-30,0xm80,-289r67,57r-18,15r-67,-56","w":233},"\u00fd":{"d":"4,-163r0,-23r78,0r0,23r-23,0r50,135v12,-47,31,-90,46,-135r-26,0r0,-23r74,0r0,23r-20,0r-57,157v-30,81,-51,111,-117,97r0,-24v42,15,69,-17,85,-59r-68,-171r-22,0xm81,-232r66,-57r19,16r-68,56","w":206},"\u00ff":{"d":"4,-163r0,-23r78,0r0,23r-23,0r50,135v12,-47,31,-90,46,-135r-26,0r0,-23r74,0r0,23r-20,0r-57,157v-30,81,-51,111,-117,97r0,-24v42,15,69,-17,85,-59r-68,-171r-22,0xm43,-251v0,-12,9,-22,21,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm121,-251v0,-12,10,-22,22,-22v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21","w":206},"\u017e":{"d":"175,-54r-3,54r-154,0r0,-22r121,-141r-88,0r-1,30r-27,0r1,-53r150,0r0,21r-107,128v-4,5,-9,9,-14,14r92,0r3,-31r27,0xm35,-270r18,-15r44,44r44,-44r18,15r-52,50r-20,0","w":193},"\u00a0":{"w":100,"k":{"\u201c":13,"\u2018":13,"Y":27,"W":20,"V":27,"T":27,"A":13}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991, 1992 Adobe Systems Incorporated.  All Rights Reserved.PMN
 * Caecilia is a trademark of Linotype-Hell AG and/or its subsidiaries.
 * 
 * Full name:
 * Caecilia-Bold
 */
Cufon.registerFont({"w":213,"face":{"font-family":"PMN Caecilia","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-26 -338 397 98","underline-thickness":"18","underline-position":"-27","stemh":"30","stemv":"36","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":106,"k":{"\u201c":20,"\u2018":20,"Y":33,"W":20,"V":27,"T":27,"A":13}},"!":{"d":"72,-83r-38,0r-4,-194r47,0xm26,-22v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-27,-12,-27,-27","w":106},"\"":{"d":"121,-159v-25,-5,-14,-80,-21,-102v0,-11,10,-20,21,-20v40,0,13,67,13,109v0,10,-8,13,-13,13xm53,-159v-25,-5,-14,-80,-21,-102v0,-11,10,-20,21,-20v40,0,13,67,13,109v0,10,-8,13,-13,13","w":173},"#":{"d":"127,-101r7,-50r-48,0r-6,50r47,0xm112,0r11,-76r-47,0r-11,76r-25,0r11,-76r-33,0r0,-25r36,0r7,-50r-33,0r0,-25r37,0r11,-76r25,0r-11,76r47,0r11,-76r25,0r-11,76r33,0r0,25r-36,0r-7,50r33,0r0,25r-37,0r-10,76r-26,0"},"$":{"d":"93,-226v-55,6,-56,70,-1,75xm162,-67v0,-26,-21,-31,-42,-37r-2,78v29,-3,44,-18,44,-41xm11,-67r36,0r0,35v9,3,26,6,44,6r1,-85v-37,-12,-82,-25,-82,-70v0,-50,42,-74,83,-76r1,-47r27,0r-1,47v27,1,52,6,67,11r0,56r-34,0r0,-30v-7,-3,-20,-6,-33,-6r0,83v43,11,83,22,83,74v0,45,-35,70,-85,74r0,44r-28,0r1,-44v-32,0,-65,-4,-80,-10r0,-62"},"%":{"d":"225,-87v-19,0,-29,14,-29,34v0,20,10,33,29,33v20,0,30,-13,30,-33v0,-20,-9,-34,-30,-34xm227,-112v32,0,57,19,57,58v0,35,-23,59,-59,59v-35,0,-58,-22,-58,-58v0,-32,23,-59,60,-59xm75,-232v-19,0,-30,13,-30,33v0,20,11,34,30,34v20,0,29,-14,29,-34v0,-20,-8,-33,-29,-33xm76,-257v32,0,57,19,57,58v0,35,-22,59,-58,59v-35,0,-59,-22,-59,-58v0,-32,23,-59,60,-59xm53,6r166,-279r24,15r-166,279","w":299},"&":{"d":"258,-154r0,27r-23,0v0,27,-12,60,-26,76v13,14,26,25,49,20r0,30v-31,6,-54,-5,-70,-25v-17,18,-39,30,-81,30v-95,1,-110,-101,-47,-136r13,-9v-43,-35,-50,-115,39,-115v77,0,69,85,23,107r-13,10r65,66v10,-13,16,-39,16,-54r-24,0r0,-27r79,0xm95,-166v4,6,9,6,14,1v29,-11,44,-64,-1,-64v-43,0,-39,44,-13,63xm165,-48r-71,-72v-16,11,-35,24,-35,47v0,49,84,60,106,25","w":273},"\u2019":{"d":"39,-159v-5,-8,-25,-16,-12,-24v10,-10,18,-21,18,-33v0,-20,-18,-26,-18,-42v0,-9,9,-23,26,-23v22,0,33,21,33,41v0,25,-22,65,-47,81","w":106,"k":{"t":6,"s":27,"r":9,"d":33,"\u2019":27}},"(":{"d":"111,82v-11,3,-25,22,-34,10v-33,-46,-60,-118,-60,-185v0,-78,32,-146,68,-192r27,16v-65,87,-71,263,-1,351","w":106},")":{"d":"-4,-269v11,-3,26,-24,33,-9v34,45,60,118,60,185v0,77,-32,144,-67,191r-28,-16v67,-87,71,-261,2,-351","w":106},"*":{"d":"50,-165r6,-44r-35,26r-13,-22r41,-16r-41,-16r13,-24r35,27r-6,-43r28,0r-6,43r33,-27r14,24r-40,16r40,16r-14,22r-33,-26r6,44r-28,0","w":126},"+":{"d":"93,0r0,-76r-76,0r0,-30r76,0r0,-76r30,0r0,76r76,0r0,30r-76,0r0,76r-30,0","w":216},",":{"d":"35,72v-5,-8,-26,-16,-13,-24v10,-10,19,-21,19,-33v0,-20,-19,-26,-19,-42v0,-9,9,-23,26,-23v22,0,33,21,33,41v0,25,-22,64,-46,81","w":106,"k":{"\u201d":20,"\u2019":20," ":13}},"-":{"d":"24,-84r0,-36r99,0r0,36r-99,0","w":146},".":{"d":"26,-22v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-27,-12,-27,-27","w":106,"k":{"\u201d":20,"\u2019":20," ":13}},"\/":{"d":"-1,19r108,-300r27,10r-108,300","w":133},"0":{"d":"58,-122v0,53,11,96,47,96v37,0,51,-46,51,-100v0,-66,-15,-100,-48,-100v-36,0,-50,45,-50,104xm15,-121v0,-66,24,-136,94,-136v72,0,89,73,89,126v0,73,-24,136,-95,136v-62,0,-88,-46,-88,-126"},"1":{"d":"48,0r0,-30r49,0r2,-184v-19,17,-40,27,-61,42r-16,-27r85,-53r32,0r-1,222r52,0r0,30r-142,0"},"2":{"d":"17,0v0,-16,-3,-34,10,-37v35,-28,119,-94,119,-148v0,-23,-12,-39,-42,-39v-36,0,-46,33,-46,46r-40,0v0,-26,18,-79,87,-79v45,0,81,25,81,72v1,60,-72,116,-112,153v33,-4,83,-1,121,-2r0,34r-178,0"},"3":{"d":"72,-114r0,-29v32,1,68,-10,69,-49v0,-21,-15,-34,-38,-34v-35,0,-43,27,-43,40r-41,0v0,-22,18,-71,87,-71v99,0,97,114,25,123v32,6,63,23,63,62v0,44,-31,77,-102,77v-39,0,-59,-9,-71,-14r0,-38v28,21,132,37,130,-25v-1,-41,-43,-43,-79,-42"},"4":{"d":"9,-71r0,-31r105,-150r49,0r-1,150r47,0r0,31r-47,0r-1,41r30,0r0,30r-95,0r0,-30r27,0r1,-41r-115,0xm124,-102r0,-111r-76,111r76,0"},"5":{"d":"31,-252r146,0r0,32r-105,0r-2,60v48,-1,113,10,118,80v5,73,-95,102,-163,75r0,-34v8,3,27,11,59,11v40,0,62,-18,62,-49v0,-47,-59,-52,-116,-52"},"6":{"d":"189,-251r-3,32v-6,-2,-20,-7,-40,-7v-56,-1,-83,38,-87,95v10,-12,28,-28,59,-28v46,0,77,29,77,76v0,55,-34,88,-86,88v-69,0,-91,-62,-91,-117v0,-75,32,-145,128,-145v17,0,31,3,43,6xm108,-127v-30,1,-38,13,-50,24v0,44,18,75,52,75v57,-2,64,-99,-2,-99"},"7":{"d":"23,-218r0,-34r167,0r0,26r-78,158v-14,27,-28,50,-39,68r-44,0v41,-59,80,-155,120,-218r-126,0"},"8":{"d":"64,-192v1,26,24,36,45,44v20,-8,42,-22,42,-45v0,-23,-19,-33,-43,-33v-28,0,-44,15,-44,34xm158,-66v-1,-30,-33,-34,-53,-47v-21,10,-48,23,-48,49v0,21,16,38,51,38v35,0,50,-18,50,-40xm15,-60v0,-44,33,-57,60,-69v-76,-21,-66,-128,34,-128v51,0,83,21,83,61v1,34,-27,52,-53,65v25,8,59,27,59,66v0,51,-38,70,-95,70v-44,0,-88,-15,-88,-65"},"9":{"d":"24,-1r3,-32v6,2,20,7,40,7v56,1,83,-38,87,-95v-10,12,-28,28,-59,28v-46,0,-77,-29,-77,-76v0,-55,34,-88,86,-88v69,0,91,62,91,117v0,75,-32,145,-128,145v-17,0,-31,-3,-43,-6xm105,-125v30,-1,38,-13,50,-24v0,-44,-18,-75,-52,-75v-57,2,-64,99,2,99"},":":{"d":"26,-164v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-27,-13,-27,-28xm26,-22v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-27,-12,-27,-27","w":106},";":{"d":"35,72v-5,-8,-26,-16,-13,-24v10,-10,19,-21,19,-33v0,-20,-19,-26,-19,-42v0,-9,9,-23,26,-23v22,0,33,21,33,41v0,25,-22,64,-46,81xm25,-164v0,-15,13,-28,28,-28v15,0,27,13,27,28v0,15,-12,28,-27,28v-15,0,-28,-13,-28,-28","w":106},"<":{"d":"17,-77r0,-28r182,-81r0,29r-146,66r146,65r0,30","w":216},"=":{"d":"17,-111r0,-29r182,0r0,29r-182,0xm17,-42r0,-29r182,0r0,29r-182,0","w":216},">":{"d":"199,-105r0,28r-182,81r0,-30r146,-65r-146,-66r0,-29","w":216},"?":{"d":"29,-111v-1,-46,89,-54,82,-101v5,-38,-63,-43,-87,-30r-2,-32v4,-1,23,-7,50,-7v92,-3,110,90,46,129v-20,13,-68,33,-40,62v-12,2,-28,16,-38,10v-5,-6,-11,-18,-11,-31xm29,-22v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-28,-12,-28,-27","w":173},"@":{"d":"176,-140v0,-24,-11,-33,-29,-33v-29,0,-49,34,-49,64v0,21,10,33,27,33v30,0,51,-38,51,-64xm219,-193r-31,112v0,5,3,7,12,7v18,0,43,-32,43,-71v0,-49,-44,-82,-93,-82v-62,0,-105,48,-105,102v0,100,131,127,189,70r29,0v-18,34,-59,59,-116,59v-74,0,-133,-48,-133,-130v0,-73,55,-130,136,-130v71,0,124,43,124,107v0,70,-56,100,-89,100v-19,1,-23,-10,-26,-20v-26,34,-91,23,-91,-36v0,-68,80,-133,118,-68r7,-20r26,0","w":288},"A":{"d":"168,-124r-32,-94v-8,30,-24,65,-35,94r67,0xm4,0r0,-30r22,0r91,-222r45,0r85,222r22,0r0,30r-92,0r0,-30r23,0r-22,-62r-88,0r-24,62r26,0r0,30r-88,0","w":273,"k":{"\u201d":27,"y":20,"w":20,"v":20,"u":11,"Y":27,"W":27,"V":27,"U":16,"T":27,"Q":13,"O":13,"G":13,"C":13,"\u2019":33}},"B":{"d":"80,-30v43,2,86,0,86,-42v0,-40,-43,-43,-85,-41xm14,-252v80,3,182,-19,181,62v0,29,-18,55,-50,58v34,0,66,22,66,61v0,43,-30,71,-91,71r-106,0r0,-30r25,0r2,-192r-27,0r0,-30xm153,-185v0,-38,-32,-39,-72,-37r0,77v39,3,72,-4,72,-40","w":226,"k":{"A":9}},"C":{"d":"230,-178r-36,0r0,-41v-70,-21,-135,13,-135,94v0,75,58,113,131,94r2,-45r36,0r-2,68v-16,5,-48,12,-78,12v-90,0,-133,-55,-133,-127v0,-78,52,-133,136,-133v32,0,62,6,79,13r0,65","w":246,"k":{"A":9}},"D":{"d":"14,0r0,-30r26,0r1,-192r-27,0r0,-30r120,0v81,0,127,47,127,120v0,75,-47,132,-128,132r-119,0xm80,-30v84,8,136,-21,136,-100v0,-72,-53,-100,-135,-92","w":280,"k":{"Y":27,"W":16,"V":20,"A":23,".":13,",":13}},"E":{"d":"17,0r0,-30r25,0r1,-192r-29,0r0,-30r177,0r2,66r-34,0r-2,-36r-73,0r-1,77r72,0r0,32r-72,0r-1,83r77,0r3,-41r34,0r-3,71r-176,0"},"F":{"d":"17,0r0,-30r25,0r1,-192r-29,0r0,-30r177,0r2,66r-34,0r-2,-36r-73,0r-1,77r79,0r0,32r-79,0r-1,83r31,0r0,30r-96,0","w":206,"k":{"r":11,"o":20,"i":11,"e":16,"a":27,"A":20,".":46,",":46}},"G":{"d":"230,-178r-36,0r0,-41v-70,-21,-139,14,-135,94v3,73,55,114,129,93r1,-56r-29,0r0,-29r93,0r0,29r-26,0r-1,80v-17,6,-50,12,-77,12v-92,0,-134,-55,-134,-127v0,-78,52,-133,136,-133v30,0,62,6,79,13r0,65","w":259},"H":{"d":"172,0r0,-30r26,0r0,-81r-117,0r0,81r27,0r0,30r-93,0r0,-30r25,0r1,-192r-26,0r0,-30r93,0r0,30r-26,0r-1,80r117,0r1,-80r-27,0r0,-30r93,0r0,30r-25,0r-2,192r27,0r0,30r-93,0","w":280},"I":{"d":"17,0r0,-30r25,0r2,-192r-27,0r0,-30r93,0r0,30r-26,0r-1,192r27,0r0,30r-93,0","w":126},"J":{"d":"-4,68r-13,-29v91,-38,52,-151,62,-261r-28,0r0,-30r93,0r0,30r-25,0r-1,151v1,80,-28,111,-88,139","w":119,"k":{"u":9,"o":4,"e":4,"a":4,"A":11,".":9,",":9}},"K":{"d":"14,0r0,-30r25,0r1,-192r-26,0r0,-30r93,0r0,30r-26,0r-1,88r100,-88r-28,0r0,-30r95,0r0,30r-21,0r-103,90r106,102r21,0r0,30r-101,0r0,-30r27,0r-96,-91r0,91r27,0r0,30r-93,0","w":253,"k":{"y":20,"u":13,"O":11}},"L":{"d":"14,0r0,-30r26,0r1,-192r-27,0r0,-30r93,0r0,30r-26,0r-1,192r75,0r3,-42r34,0r-3,72r-175,0","k":{"\u201d":33,"y":33,"Y":40,"W":40,"V":40,"T":33,"\u2019":40}},"M":{"d":"12,0r0,-30r26,0r1,-192r-28,0r0,-30r83,0r79,208r78,-208r78,0r0,30r-29,0r2,192r27,0r0,30r-92,0r0,-30r25,0r2,-170r-2,-1v-19,73,-50,134,-74,201r-40,0r-63,-161v-6,-12,-6,-27,-12,-38r-1,169r28,0r0,30r-88,0","w":339},"N":{"d":"15,0r0,-30r25,0r1,-192r-31,0r0,-30r66,0r117,152v9,10,17,29,26,38r-2,-160r-28,0r0,-30r88,0r0,30r-25,0r-1,222r-33,0r-126,-163v-8,-8,-13,-24,-18,-26r1,159r28,0r0,30r-88,0","w":286,"k":{"A":9}},"O":{"d":"15,-122v0,-79,49,-134,127,-134v73,0,116,48,116,126v0,67,-38,134,-123,134v-73,0,-120,-49,-120,-126xm59,-123v0,49,24,93,77,93v67,0,78,-64,78,-98v0,-45,-16,-94,-75,-94v-42,0,-80,29,-80,99","w":273,"k":{"Y":27,"X":11,"W":16,"V":16,"T":11,"A":13,".":13,",":13}},"P":{"d":"202,-179v0,60,-50,87,-122,79r0,70r31,0r0,30r-97,0r0,-30r26,0r1,-192r-27,0r0,-30r95,0v68,-3,93,23,93,73xm159,-177v0,-41,-33,-48,-78,-45r-1,92v45,4,79,-8,79,-47","k":{"o":11,"e":11,"a":13,"A":20,".":46,",":46}},"Q":{"d":"15,-122v0,-79,49,-134,127,-134v141,0,155,222,32,255v38,4,78,48,124,36r0,31v-69,14,-124,-42,-180,-62v-64,-8,-103,-55,-103,-126xm59,-123v0,49,24,93,77,93v67,0,78,-64,78,-98v0,-45,-16,-94,-75,-94v-42,0,-80,29,-80,99","w":273},"R":{"d":"14,0r0,-30r25,0r1,-192r-26,0r0,-30r112,0v52,0,76,30,76,67v1,45,-30,61,-60,67v31,7,43,50,60,73v11,15,15,15,31,15r0,30v-36,0,-50,5,-69,-27r-34,-58v-14,-26,-21,-22,-50,-22r0,77r29,0r0,30r-95,0xm80,-139v42,3,80,-3,80,-42v0,-39,-37,-44,-79,-41","w":233,"k":{"Y":16,"W":13,"V":13,"T":6}},"S":{"d":"19,-70r40,0r0,34v28,15,106,12,99,-33v3,-34,-54,-38,-83,-48v-28,-10,-55,-26,-55,-66v0,-79,112,-83,171,-61r0,56r-38,0r0,-31v-5,-2,-19,-6,-38,-6v-37,0,-53,18,-53,37v-1,36,49,36,78,45v29,9,61,24,61,68v0,82,-106,93,-182,66r0,-61","w":219},"T":{"d":"76,0r0,-30r26,0r2,-192r-59,0r-1,36r-36,0r1,-66r229,0r1,66r-36,0r-1,-36r-58,0r-1,192r29,0r0,30r-96,0","w":246,"k":{"y":46,"w":54,"u":40,"r":33,"o":40,"i":13,"h":9,"e":33,"a":33,"O":11,"A":27,";":20,":":20,".":33,"-":40,",":33}},"U":{"d":"136,4v-71,0,-99,-24,-99,-91r0,-135r-26,0r0,-30r92,0r0,30r-26,0v7,81,-29,192,59,192v94,0,55,-113,64,-192r-30,0r0,-30r92,0r0,30r-24,0r0,135v-1,64,-37,91,-102,91","w":273,"k":{"A":16,".":9,",":9}},"V":{"d":"2,-222r0,-30r94,0r0,30r-25,0r60,166v4,7,2,17,6,22v19,-65,44,-125,65,-188r-29,0r0,-30r92,0r0,30r-23,0r-86,222r-45,0r-87,-222r-22,0","w":266,"k":{"u":20,"o":33,"i":13,"e":33,"a":33,"O":16,"G":9,"A":27,";":27,":":27,".":33,"-":33,",":33}},"W":{"d":"3,-222r0,-30r94,0r0,30r-25,0r62,188v14,-53,35,-98,52,-148r-14,-40r-24,0r0,-30r92,0r0,30r-25,0r57,188v18,-66,42,-125,63,-188r-28,0r0,-30r90,0r0,30r-22,0r-84,222r-44,0r-44,-134r-51,134r-44,0r-83,-222r-22,0","w":399,"k":{"y":13,"u":20,"o":27,"i":11,"h":9,"e":27,"a":27,"O":16,"A":27,";":20,":":20,".":40,"-":27,",":33}},"X":{"d":"149,0r0,-30r26,0v-19,-22,-34,-48,-52,-71v-19,23,-34,50,-55,71r26,0r0,30r-88,0r0,-30r21,0r77,-96r-71,-96r-23,0r0,-30r98,0r0,30r-27,0v19,20,33,44,50,66r55,-66r-28,0r0,-30r84,0r0,30r-19,0r-73,92r75,100r23,0r0,30r-99,0","w":253},"Y":{"d":"84,0r0,-30r25,0r2,-74r-88,-118r-22,0r0,-30r93,0r0,30r-25,0v23,28,43,58,65,87r65,-87r-28,0r0,-30r87,0r0,30r-22,0r-85,118r-1,74r26,0r0,30r-92,0","w":259,"k":{"u":33,"o":36,"i":13,"e":36,"a":36,"O":27,"A":27,";":27,":":27,".":40,"-":40,",":40}},"Z":{"d":"16,0r0,-28r150,-194r-103,0r-3,36r-36,0r3,-66r188,0r0,30r-148,192r112,0r2,-36r36,0r-2,66r-199,0","w":233},"[":{"d":"101,61r0,29r-72,0r1,-367r72,0r0,30r-34,0r-1,308r34,0","w":106},"\\":{"d":"107,29r-108,-300r27,-10r108,300","w":133},"]":{"d":"6,-247r0,-30r72,0r-2,367r-72,0r0,-29r34,0r2,-308r-34,0","w":106},"^":{"d":"156,-121r-48,-95r-48,95r-29,0r65,-131r24,0r65,131r-29,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"67,-281v5,8,26,16,13,24v-10,10,-19,21,-19,33v0,20,19,27,19,43v0,9,-9,22,-26,22v-22,0,-33,-21,-33,-41v0,-25,22,-64,46,-81","w":106,"k":{"\u2018":27,"A":27}},"a":{"d":"29,-128r0,-47v10,-5,34,-17,74,-17v93,0,71,83,72,162r25,0r0,30r-60,0v-1,-11,4,-28,3,-39v-8,21,-23,43,-62,43v-45,0,-60,-29,-60,-53v0,-64,66,-56,119,-60v1,-32,-2,-52,-41,-53v-14,0,-28,3,-34,6r0,28r-36,0xm61,-53v0,14,11,26,30,26v33,-1,50,-25,48,-55v-42,0,-78,1,-78,29","k":{"y":11,"w":11,"v":11,"t":9,"g":4,"b":6}},"b":{"d":"107,-30v70,0,84,-129,13,-128v-57,0,-49,65,-50,121v8,4,19,7,37,7xm1,-247r0,-30r71,0r-4,129v7,-18,26,-44,64,-44v49,0,76,35,76,85v0,56,-25,111,-106,111v-33,0,-54,-7,-72,-14r2,-237r-31,0","w":219,"k":{"y":9}},"c":{"d":"133,-129r0,-28v-45,-13,-80,16,-80,61v0,32,16,66,66,66v18,0,39,-5,48,-10r-2,35v-8,3,-29,9,-52,9v-75,0,-100,-50,-100,-97v0,-57,35,-99,101,-99v28,0,45,6,53,10r0,53r-34,0","w":180,"k":{"k":6,"h":6}},"d":{"d":"214,-30r0,30r-64,0v-1,-13,4,-29,3,-38v-10,25,-30,42,-62,42v-45,0,-78,-33,-78,-89v0,-75,59,-124,137,-102r1,-60r-34,0r0,-30r73,0r-1,247r25,0xm101,-30v49,0,51,-66,48,-122v-44,-24,-94,9,-94,61v0,35,16,61,46,61","w":226,"k":{"y":13,"w":11,"v":9}},"e":{"d":"180,-42r-3,33v-13,5,-37,13,-65,13v-62,0,-99,-38,-99,-97v0,-55,32,-99,92,-99v58,0,86,43,84,105r-134,0v-3,62,82,72,125,45xm55,-114r92,0v1,-20,-8,-48,-44,-48v-34,0,-47,25,-48,48","w":200,"k":{"y":9,"w":9,"v":9}},"f":{"d":"16,0r0,-30r23,0r0,-128r-28,0r0,-29r28,0v-9,-77,48,-106,116,-90r-1,32v-5,-2,-16,-4,-31,-4v-39,1,-45,26,-43,62r43,0r0,29r-43,0r-1,128r29,0r0,30r-92,0","w":126,"k":{"\u201d":-13,"\u2019":-13}},"g":{"d":"202,-187r-1,29r-36,-2v6,7,15,19,15,41v-1,45,-41,70,-91,66v-10,0,-21,7,-21,14v23,32,130,-1,130,66v0,90,-183,87,-186,18v-1,-26,22,-39,43,-45v-48,-9,-22,-56,9,-59v-77,-21,-55,-141,36,-133v33,3,64,6,102,5xm54,-121v0,27,18,39,48,39v28,0,44,-16,44,-41v0,-25,-17,-39,-46,-39v-28,0,-46,17,-46,41xm160,34v0,-25,-56,-22,-80,-29v-18,8,-30,18,-30,32v0,22,23,28,54,28v27,0,56,-7,56,-31","w":206},"h":{"d":"17,0r0,-30r22,0r1,-217r-27,0r0,-30r69,0v-2,46,3,90,-6,131v11,-22,29,-46,67,-46v79,0,65,89,63,162r25,0r0,30r-86,0r0,-30r21,0v-3,-50,18,-126,-36,-128v-54,-2,-53,71,-51,128r25,0r0,30r-87,0","w":240,"k":{"y":13}},"i":{"d":"14,0r0,-30r25,0r0,-128r-28,0r0,-29r69,0r-1,157r25,0r0,30r-90,0xm32,-253v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-27,-12,-27,-27","w":113,"k":{"v":6}},"j":{"d":"11,-158r0,-29r69,0r-1,152v0,76,-33,121,-100,130r-5,-32v50,-12,65,-37,65,-114r0,-107r-28,0xm32,-253v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-27,-12,-27,-27","w":119},"k":{"d":"16,0r0,-30r23,0r1,-217r-33,0r0,-30r73,0r-1,171r66,-52r-27,0r0,-29r88,0r0,29r-18,0r-67,56r72,72r21,0r0,30r-90,0r0,-30r22,0r-67,-65r0,65r23,0r0,30r-86,0","w":219,"k":{"e":6}},"l":{"d":"16,0r0,-30r23,0r1,-217r-33,0r0,-30r73,0r-1,247r25,0r0,30r-88,0","w":113,"k":{"y":9,"w":6}},"m":{"d":"17,0r0,-30r22,0r0,-128r-26,0r0,-29r67,0v1,12,-3,28,-3,41v8,-28,33,-46,64,-46v38,-1,51,22,58,43v9,-27,32,-43,64,-43v77,0,66,89,63,162r25,0r0,30r-86,0r0,-30r21,0v-2,-51,17,-126,-37,-128v-51,-2,-46,74,-46,128r24,0r0,30r-85,0r0,-30r21,0v-4,-51,17,-126,-37,-128v-24,0,-46,22,-46,57r-1,71r25,0r0,30r-87,0","w":360,"k":{"y":9,"u":6}},"n":{"d":"17,0r0,-30r22,0r0,-128r-26,0r0,-29r67,0v1,12,-3,28,-3,41v8,-24,29,-46,66,-46v79,0,65,89,63,162r25,0r0,30r-86,0r0,-30r21,0v-3,-50,18,-126,-36,-128v-54,-2,-53,71,-51,128r25,0r0,30r-87,0","w":240,"k":{"y":9,"v":9}},"o":{"d":"109,-158v-73,-1,-75,127,-3,128v37,0,53,-30,53,-67v0,-42,-22,-61,-50,-61xm12,-90v0,-61,41,-102,98,-102v69,0,92,53,92,99v0,53,-33,97,-97,97v-67,0,-93,-46,-93,-94","k":{"y":9,"x":4,"w":9,"v":9}},"p":{"d":"9,-158r0,-29r65,0v1,13,-4,29,-3,38v10,-25,30,-43,62,-43v45,0,79,33,79,89v0,75,-61,125,-138,101r-1,63r30,0r0,29r-90,0r0,-29r21,0r2,-219r-27,0xm124,-158v-50,0,-51,66,-49,123v44,24,94,-9,94,-61v0,-35,-15,-62,-45,-62","w":226,"k":{"y":13,".":9,",":9}},"q":{"d":"101,-30v56,0,50,-65,50,-120v-8,-4,-19,-8,-37,-8v-70,0,-84,128,-13,128xm126,90r0,-29r23,0r1,-60v-1,-12,5,-29,3,-40v-7,18,-26,43,-64,43v-49,0,-76,-35,-76,-85v0,-56,25,-111,106,-111v33,0,53,8,72,15r-1,238r26,0r0,29r-90,0","w":226},"r":{"d":"16,0r0,-30r23,0r0,-128r-28,0r0,-29r66,0v1,13,-2,36,-1,52v8,-43,37,-64,77,-53r-4,36v-66,-17,-74,53,-70,122r27,0r0,30r-90,0","w":153,"k":{"o":4,"a":9,".":20,"-":13,",":20}},"s":{"d":"161,-134r-36,0r0,-22v-16,-9,-72,-11,-69,17v3,29,45,23,70,30v21,6,45,13,45,51v0,76,-107,67,-152,51r-1,-51r36,0r1,25v16,8,80,17,78,-18v-1,-27,-35,-25,-57,-30v-29,-6,-60,-15,-60,-51v0,-71,104,-66,145,-47r0,45","w":186,"k":{"w":9}},"t":{"d":"11,-158r0,-29r28,0r1,-42r41,-3r-2,45r54,0r0,29r-54,0v4,44,-17,132,26,131v11,0,22,-4,31,-8r-1,30v-40,17,-97,14,-97,-48v0,-24,1,-73,1,-105r-28,0","w":133},"u":{"d":"13,-158r0,-29r65,0v5,57,-23,157,35,157v27,0,49,-21,49,-56r0,-72r-24,0r0,-29r65,0r-1,157r25,0r0,30r-65,0v-1,-12,3,-28,3,-41v-8,28,-35,45,-65,45v-40,0,-64,-27,-64,-71v0,-31,1,-61,2,-91r-25,0","w":240},"v":{"d":"82,0r-64,-158r-19,0r0,-29r83,0r0,29r-20,0r44,124v11,-45,28,-82,42,-124r-24,0r0,-29r84,0r0,29r-20,0r-63,158r-43,0","w":206,"k":{"e":6,"a":9,".":27,",":27}},"w":{"d":"194,0r-33,-94v-9,35,-24,62,-36,94r-41,0r-62,-158r-20,0r0,-29r83,0r0,29r-21,0r43,122v10,-35,26,-65,39,-97r-9,-25r-21,0r0,-29r83,0r0,29r-22,0r42,122v11,-43,28,-81,42,-122r-26,0r0,-29r83,0r0,29r-19,0r-63,158r-42,0","w":320,"k":{"o":9,"h":6,"e":9,"a":6,".":27,",":27}},"x":{"d":"126,0r0,-30r23,0v-14,-14,-26,-30,-40,-45v-15,15,-27,32,-43,45r26,0r0,30r-81,0r0,-30r20,0r60,-64r-55,-64r-22,0r0,-29r90,0r0,29r-23,0v14,13,24,28,37,42r38,-42r-24,0r0,-29r79,0r0,29r-20,0r-56,59r60,69r21,0r0,30r-90,0","w":226,"k":{"e":4}},"y":{"d":"-1,-158r0,-29r86,0r0,29r-21,0r45,125v11,-43,28,-84,41,-125r-24,0r0,-29r79,0r0,29r-19,0v-29,74,-46,157,-86,223v-18,30,-55,36,-90,26r0,-32v40,12,59,3,78,-49r-69,-168r-20,0","k":{"o":13,"e":11,"a":13,".":27,",":27}},"z":{"d":"14,0r0,-30r104,-118v3,-4,8,-7,11,-10r-73,0r-3,28r-34,0r3,-57r155,0r0,30r-101,115v-4,5,-8,8,-13,12r79,0r3,-28r34,0r-3,58r-162,0","w":193},"{":{"d":"109,-277r0,28v-48,-7,-30,61,-30,100v0,31,-19,48,-38,56v44,8,39,74,38,129v-1,21,9,29,30,27r0,27v-41,3,-66,-8,-68,-53v-2,-48,10,-114,-34,-117r0,-27v43,-3,32,-69,34,-116v2,-44,27,-58,68,-54","w":106},"|":{"d":"25,90r0,-360r30,0r0,360r-30,0","w":79},"}":{"d":"-3,90r0,-27v49,8,30,-61,30,-101v0,-31,20,-48,39,-56v-45,-8,-40,-73,-39,-128v1,-21,-8,-29,-30,-27r0,-28v42,-4,67,9,69,54v2,47,-10,112,33,116r0,27v-43,3,-31,70,-33,117v-2,45,-27,57,-69,53","w":106},"~":{"d":"70,-118v26,-1,55,23,77,25v14,0,23,-14,31,-27r13,26v-8,15,-21,30,-45,30v-25,1,-55,-23,-77,-25v-14,0,-23,14,-31,27r-13,-26v8,-15,21,-30,45,-30","w":216},"\u00a1":{"d":"30,90r4,-193r38,0r5,193r-47,0xm81,-164v0,15,-13,28,-28,28v-15,0,-27,-13,-27,-28v0,-15,12,-28,27,-28v15,0,28,13,28,28","w":106},"\u00a2":{"d":"103,-30r1,-128v-56,9,-57,115,-1,128xm190,-129r-32,0r0,-28v-6,-1,-17,-3,-27,-3r0,130v21,0,42,-5,54,-10r-2,35v-9,3,-29,8,-52,9r-1,44r-27,0r0,-44v-117,-13,-105,-186,1,-194r1,-38r27,0r-1,36v25,0,52,7,59,10r0,53"},"\u00a3":{"d":"11,0r0,-30r27,0v12,-14,11,-60,8,-86r-32,0r0,-29r31,0v-10,-69,21,-114,91,-112v31,0,53,6,63,10r0,65r-34,0r0,-40v-6,-1,-16,-4,-29,-4v-53,1,-55,39,-51,81r49,0r0,29r-48,0v2,27,5,72,-10,86r87,0r3,-41r33,0r-2,71r-186,0"},"\u00a5":{"d":"68,0r0,-30r22,0r0,-28r-53,0r0,-23r53,0r1,-21r-54,0r0,-23r39,0r-57,-97r-18,0r0,-30r77,0r0,30r-21,0r53,91r52,-91r-23,0r0,-30r73,0r0,30r-18,0r-55,97r37,0r0,23r-51,0r-1,21r52,0r0,23r-52,0r-1,28r22,0r0,30r-77,0"},"\u0192":{"d":"41,-116r0,-29r38,0v-4,-81,40,-130,120,-108r-3,30v-39,-12,-80,11,-75,43r-4,35r46,0r0,29r-49,0v-6,89,-4,216,-114,181r2,-30v34,10,61,1,65,-49r9,-102r-35,0"},"\u00a7":{"d":"89,-133v-26,10,-36,49,-2,60v16,5,37,25,51,12v18,-16,18,-38,-7,-51xm26,6r36,0r0,29v32,14,81,14,83,-25v-15,-55,-118,-31,-118,-102v0,-32,22,-45,37,-53v-65,-30,-29,-111,48,-111v23,0,48,4,69,12r0,48r-36,0r0,-25v-22,-12,-82,-6,-74,23v14,54,116,30,116,103v0,26,-16,42,-35,52v62,33,29,118,-55,118v-31,0,-57,-10,-71,-16r0,-53"},"\u00a4":{"d":"15,-52r21,-20v-25,-29,-25,-79,0,-108r-21,-20r17,-17r20,20v29,-24,80,-24,109,0r20,-20r17,17r-21,20v25,29,25,79,0,108r21,20r-17,17r-20,-20v-29,24,-80,24,-109,0r-20,20xm47,-126v0,36,26,64,60,64v34,0,59,-28,59,-64v0,-36,-25,-64,-59,-64v-34,0,-60,28,-60,64"},"'":{"d":"53,-159v-25,-5,-12,-80,-20,-102v0,-11,9,-20,20,-20v39,0,13,69,13,109v0,10,-8,13,-13,13","w":106},"\u201c":{"d":"61,-281v5,8,25,16,12,24v-10,10,-18,21,-18,33v0,20,18,27,18,43v0,9,-8,22,-25,22v-64,-14,-25,-100,13,-122xm140,-281v5,8,26,16,13,24v-10,10,-19,21,-19,33v0,20,19,27,19,43v0,9,-9,22,-26,22v-22,0,-33,-21,-33,-41v0,-25,22,-64,46,-81","w":173,"k":{"A":20}},"\u00ab":{"d":"96,-114r48,-55r28,22r-38,45r38,45r-28,21r-48,-55r0,-23xm14,-114r49,-55r28,22r-38,45r38,45r-28,21r-49,-55r0,-23","w":186},"\u2013":{"d":"0,-86r0,-32r180,0r0,32r-180,0","w":180},"\u00b7":{"d":"28,-101v0,-14,11,-25,25,-25v14,0,26,11,26,25v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26","w":106},"\u00b6":{"d":"85,70r0,-189v-37,0,-68,-27,-68,-65v0,-80,94,-68,173,-68r0,322r-33,0r0,-292r-38,0r0,292r-34,0","w":216},"\u201d":{"d":"112,-159v-5,-8,-25,-16,-12,-24v10,-10,18,-21,18,-33v0,-20,-18,-26,-18,-42v0,-9,9,-23,26,-23v22,0,33,21,33,41v0,25,-22,65,-47,81xm33,-159v-6,-8,-27,-16,-12,-24v10,-10,18,-21,18,-33v0,-20,-19,-26,-19,-42v0,-9,9,-23,26,-23v22,0,33,21,33,41v0,25,-22,64,-46,81","w":173},"\u00bb":{"d":"42,-36r-28,-22r39,-44r-39,-45r28,-22r49,56r0,23xm124,-36r-28,-22r38,-44r-38,-45r28,-22r48,56r0,23","w":186},"\u2026":{"d":"32,-22v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-28,-12,-28,-27xm152,-22v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-28,-12,-28,-27xm272,-22v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,27,-28,27v-15,0,-28,-12,-28,-27","w":360},"\u00bf":{"d":"144,-76v1,47,-89,55,-82,102v-5,38,64,44,87,29r3,32v-4,1,-24,8,-51,8v-93,3,-110,-90,-46,-130v20,-13,68,-33,40,-61r35,-14v7,8,14,18,14,34xm144,-164v0,15,-13,28,-28,28v-15,0,-27,-13,-27,-28v0,-15,12,-28,27,-28v15,0,28,13,28,28","w":173},"`":{"d":"61,-209r-72,-57r22,-21r73,61","w":100},"\u00b4":{"d":"39,-209r-22,-17r72,-61r22,21","w":100},"\u00af":{"d":"-4,-233r0,-30r108,0r0,30r-108,0","w":100},"\u00a8":{"d":"64,-246v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25xm-15,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25","w":100},"\u00b8":{"d":"38,-5r25,0r0,24v22,-1,37,8,37,29v1,40,-59,40,-87,30r2,-22v16,4,48,10,51,-9v1,-11,-13,-13,-28,-13r0,-39","w":100},"\u2014":{"d":"0,-86r0,-32r360,0r0,32r-360,0","w":360},"\u00c6":{"d":"121,-139r67,0r1,-83r-23,0xm162,0r0,-30r26,0r0,-77r-83,0r-42,77r28,0r0,30r-90,0r0,-30r22,0r125,-222r183,0r2,66r-33,0r-3,-36r-68,0r0,83r68,0r0,32r-68,0r-1,77r78,0r3,-41r33,0r-3,71r-177,0","w":360},"\u00aa":{"d":"17,-220r0,-27v6,-3,22,-10,50,-10v61,0,47,47,47,95r16,0r0,19r-41,0v-1,-6,3,-19,1,-23v-4,13,-15,26,-40,26v-32,0,-41,-18,-41,-32v1,-36,44,-36,79,-38v10,-25,-29,-31,-48,-23r0,13r-23,0xm39,-175v10,26,53,9,48,-17v-39,3,-48,4,-48,17","w":138},"\u0141":{"d":"14,0r0,-30r26,0r0,-68r-26,19r0,-32r26,-18r1,-93r-27,0r0,-30r93,0r0,30r-26,0r0,64r53,-38r0,31r-53,38r-1,97r75,0r3,-42r34,0r-3,72r-175,0"},"\u00d8":{"d":"79,-57r96,-158v-61,-22,-115,7,-116,92v0,25,7,49,20,66xm195,-197r-96,158v10,6,23,9,37,9v67,0,78,-64,78,-98v0,-25,-5,-51,-19,-69xm51,40r-22,-15r28,-46v-27,-21,-42,-57,-42,-101v0,-98,86,-159,179,-124r25,-40r22,14r-24,40v74,65,49,241,-82,236v-21,0,-40,-4,-55,-11","w":273},"\u0152":{"d":"59,-125v0,77,54,103,133,94r1,-189v-79,-12,-134,24,-134,95xm349,-71r-3,71r-200,2v-78,0,-131,-41,-131,-127v0,-102,78,-127,180,-127r148,0r3,66r-34,0r-2,-36r-76,0r-1,77r74,0r0,32r-74,0r-1,83r80,0r3,-41r34,0","w":366},"\u00ba":{"d":"71,-237v-46,0,-47,75,-2,76v23,0,34,-19,34,-40v0,-24,-14,-36,-32,-36xm6,-197v0,-36,27,-60,65,-60v85,0,81,117,-3,117v-45,0,-62,-29,-62,-57","w":138},"\u00e6":{"d":"29,-128r0,-47v32,-13,117,-37,134,19v8,-20,30,-36,61,-36v62,1,81,51,80,105r-128,3v-10,61,84,67,120,43r-2,32v-38,20,-127,22,-139,-31v-10,31,-32,44,-70,44v-50,0,-64,-29,-64,-53v0,-64,66,-56,119,-60v1,-32,-2,-52,-41,-53v-14,0,-28,3,-34,6r0,28r-36,0xm61,-53v0,14,11,26,30,26v33,-1,50,-25,48,-55v-42,0,-78,1,-78,29xm176,-111r88,-3v1,-21,-8,-48,-44,-48v-24,0,-44,12,-44,51","w":320},"\u0131":{"d":"14,0r0,-30r25,0r0,-128r-28,0r0,-29r69,0r-1,157r25,0r0,30r-90,0","w":113},"\u0142":{"d":"16,0r0,-30r23,0r0,-88r-27,21r0,-30r27,-20r1,-100r-33,0r0,-30r73,0r0,98r28,-21r0,29r-28,22r-1,119r25,0r0,30r-88,0","w":113},"\u00f8":{"d":"64,-52r64,-102v-60,-21,-93,51,-64,102xm19,21r23,-37v-73,-66,-4,-216,105,-169r20,-34r22,14r-20,33v61,55,37,180,-64,176v-16,0,-30,-2,-41,-7r-23,39xm148,-138r-64,103v58,28,96,-53,64,-103"},"\u0153":{"d":"309,-41r-1,32v-38,17,-119,25,-138,-26v-13,28,-38,39,-69,39v-59,0,-86,-37,-86,-97v0,-57,30,-99,91,-99v40,0,59,17,68,38v8,-17,30,-38,63,-38v62,1,81,51,80,105r-128,0v-10,66,82,69,120,46xm55,-94v0,38,16,67,50,67v35,0,46,-30,46,-78v0,-41,-17,-55,-46,-55v-34,0,-50,28,-50,66xm189,-114r88,0v1,-21,-8,-48,-44,-48v-28,0,-44,19,-44,48","w":333},"\u00df":{"d":"20,0r0,-30r23,0r1,-128r-29,0r0,-29r29,0v-5,-60,29,-94,97,-94v26,0,87,6,87,56v0,47,-58,52,-69,85v2,22,39,26,57,34v23,11,36,24,36,50v0,63,-83,66,-130,52r0,-51r32,0r0,25v22,6,62,5,59,-23v-5,-41,-101,-27,-92,-79v-5,-44,66,-50,69,-90v0,-11,-12,-27,-47,-27v-40,0,-59,21,-59,52r-1,167r23,0r0,30r-86,0","w":266},"\u00f7":{"d":"17,-76r0,-30r182,0r0,30r-182,0xm82,-21v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-26,-11,-26,-25xm82,-161v0,-14,12,-25,26,-25v14,0,26,11,26,25v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":216},"\u00be":{"d":"229,0r0,-23r19,0r0,-19r-79,0r0,-21r69,-89r40,0r0,87r28,0r0,23r-28,0r0,19r18,0r0,23r-67,0xm248,-65v-1,-21,3,-45,0,-64r-50,65v15,-2,33,-1,50,-1xm71,6r157,-279r23,15r-156,279xm50,-170r0,-20v19,1,42,-6,43,-27v0,-9,-9,-17,-23,-17v-21,0,-27,14,-27,21r-29,0v0,-14,12,-44,58,-44v66,0,65,68,16,73v23,1,43,15,43,39v0,26,-20,46,-68,46v-26,0,-38,-5,-46,-8r0,-25v17,11,82,20,82,-13v0,-24,-28,-26,-49,-25","w":320},"\u00bc":{"d":"229,0r0,-23r19,0r0,-19r-79,0r0,-21r69,-89r40,0r0,87r28,0r0,23r-28,0r0,19r18,0r0,23r-67,0xm248,-65v-1,-21,3,-45,0,-64r-50,65v15,-2,33,-1,50,-1xm71,6r157,-279r23,15r-156,279xm23,-102r0,-23r30,0r1,-104v-10,10,-25,16,-37,25r-13,-18v27,-11,40,-36,82,-32r-1,129r33,0r0,23r-95,0","w":320},"\u00b9":{"d":"31,-102r0,-23r30,0r1,-104v-10,10,-25,16,-37,25r-13,-18v27,-11,40,-36,82,-32r-1,129r33,0r0,23r-95,0","w":138},"\u00d7":{"d":"171,-8r-63,-63r-63,63r-20,-20r63,-63r-63,-63r20,-20r63,63r63,-63r20,20r-63,63r63,63","w":216},"\u00ae":{"d":"89,-51r0,-150v50,0,113,-8,113,43v0,27,-18,39,-39,43r40,64r-29,0r-38,-63r-22,0r0,63r-25,0xm114,-177r0,40v26,1,67,2,62,-22v1,-23,-38,-17,-62,-18xm14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130xm45,-126v0,59,45,101,99,101v54,0,99,-42,99,-101v0,-59,-45,-101,-99,-101v-54,0,-99,42,-99,101","w":288},"\u00de":{"d":"159,-131v-2,-41,-34,-48,-78,-45r-1,93v46,4,81,-9,79,-48xm202,-132v0,60,-50,87,-122,79r0,23r27,0r0,30r-93,0r0,-30r26,0r1,-192r-27,0r0,-30r93,0r0,30r-26,0r0,17v76,-5,121,12,121,73"},"\u00a6":{"d":"25,63r0,-126r30,0r0,126r-30,0xm25,-117r0,-126r30,0r0,126r-30,0","w":79},"\u00d0":{"d":"14,0r0,-30r26,0r0,-86r-26,0r0,-27r26,0r1,-79r-27,0r0,-30r120,0v81,0,127,47,127,120v0,75,-47,132,-128,132r-119,0xm152,-143r0,27r-71,0r-1,86v84,8,136,-21,136,-100v0,-72,-53,-100,-135,-92r0,79r71,0","w":280},"\u00bd":{"d":"71,6r157,-279r23,15r-156,279xm23,-102r0,-23r30,0r1,-104v-10,10,-25,16,-37,25r-13,-18v27,-11,40,-36,82,-32r-1,129r33,0r0,23r-95,0xm302,-112v0,29,-44,65,-77,88v25,-2,52,-1,78,-1r0,25r-116,0v0,-12,-3,-27,8,-29v21,-13,75,-53,75,-81v0,-12,-8,-22,-25,-22v-22,0,-28,19,-28,27r-30,0v0,-18,12,-50,59,-50v34,0,56,12,56,43","w":320},"\u00e7":{"d":"133,-129r0,-28v-45,-13,-80,16,-80,61v0,32,16,66,66,66v18,0,39,-5,48,-10r-2,35v-7,3,-24,8,-45,9v1,6,-4,17,5,15v19,0,32,10,32,29v1,40,-59,40,-87,30r2,-22v16,4,48,10,51,-9v1,-11,-13,-13,-28,-13r0,-31v-60,-8,-82,-53,-82,-96v0,-57,35,-99,101,-99v28,0,45,6,53,10r0,53r-34,0","w":180},"\u00f0":{"d":"109,-158v-73,-1,-75,127,-3,128v37,0,53,-30,53,-67v0,-42,-22,-61,-50,-61xm59,-226r34,-17v-7,-6,-22,-16,-30,-21r31,-17v11,6,21,13,30,21r33,-17r16,19r-30,15v37,38,59,78,59,138v0,66,-33,109,-97,109v-67,0,-93,-46,-93,-94v0,-80,74,-124,135,-90v-8,-15,-21,-31,-36,-46r-35,18"},"\u00b1":{"d":"17,-100r0,-29r76,0r0,-53r30,0r0,53r76,0r0,29r-76,0r0,53r-30,0r0,-53r-76,0xm17,0r0,-30r182,0r0,30r-182,0","w":216},"\u00c7":{"d":"194,-178r0,-41v-70,-21,-135,13,-135,94v0,75,58,113,131,94r2,-45r36,0r-2,68v-14,5,-41,11,-68,12v1,6,-4,17,5,15v19,0,32,10,32,29v1,40,-59,40,-87,30r3,-22v15,4,47,10,50,-9v1,-11,-13,-13,-28,-13r0,-30v-80,-6,-118,-59,-118,-127v0,-78,52,-133,136,-133v32,0,62,6,79,13r0,65r-36,0","w":246},"\u00fe":{"d":"13,90r0,-29r21,0r2,-308r-27,0r0,-30r67,0v-2,43,3,92,-6,128v12,-23,30,-43,63,-43v45,0,79,33,79,89v0,75,-61,125,-138,101r-1,63r30,0r0,29r-90,0xm124,-158v-50,0,-51,66,-49,123v44,24,94,-8,94,-61v0,-35,-15,-62,-45,-62","w":226},"\u00a9":{"d":"182,-103r30,0v-6,35,-32,55,-67,55v-42,0,-70,-30,-70,-78v0,-88,125,-110,136,-25r-29,0v-16,-48,-83,-24,-78,25v-7,50,69,72,78,23xm14,-126v0,-72,58,-130,130,-130v72,0,130,58,130,130v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130xm45,-126v0,59,45,101,99,101v54,0,99,-42,99,-101v0,-59,-45,-101,-99,-101v-54,0,-99,42,-99,101","w":288},"\u00ac":{"d":"17,-111r0,-29r182,0r0,101r-29,0r0,-72r-153,0","w":216},"\u00b2":{"d":"126,-214v0,30,-45,63,-76,88v24,-2,51,-1,77,-1r0,25r-115,0v0,-12,-3,-27,7,-29v21,-13,75,-53,75,-81v0,-12,-8,-22,-25,-22v-22,0,-28,19,-28,27r-29,0v0,-18,11,-50,58,-50v34,0,56,12,56,43","w":138},"\u00b3":{"d":"47,-170r0,-20v19,1,42,-6,43,-27v0,-9,-9,-17,-23,-17v-21,0,-27,14,-27,21r-29,0v0,-14,12,-44,58,-44v66,0,65,68,16,73v23,1,43,15,43,39v0,26,-20,46,-68,46v-26,0,-38,-5,-46,-8r0,-25v17,11,82,20,82,-13v0,-24,-27,-26,-49,-25","w":138},"\u2122":{"d":"55,-102r0,-125r-43,0r0,-25r119,0r0,25r-44,0r0,125r-32,0xm298,-102r-1,-118r-43,118r-20,0r-45,-118r0,118r-29,0r0,-150r43,0r41,107r40,-107r44,0r0,150r-30,0","w":356},"\u00b0":{"d":"21,-206v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,52,-51,52v-28,0,-51,-24,-51,-52xm46,-206v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-14,-12,-26,-26,-26v-14,0,-26,12,-26,26","w":144},"\u00b5":{"d":"36,90r2,-248r-25,0r0,-29r65,0v5,57,-23,157,35,157v27,0,49,-21,49,-56r0,-72r-24,0r0,-29r65,0r-1,157r25,0r0,30r-65,0v-1,-12,3,-28,3,-41v-11,37,-57,59,-87,34r-1,97r-41,0","w":240},"\u00c1":{"d":"168,-124r-32,-94v-8,30,-24,65,-35,94r67,0xm4,0r0,-30r22,0r91,-222r45,0r85,222r22,0r0,30r-92,0r0,-30r23,0r-22,-62r-88,0r-24,62r26,0r0,30r-88,0xm126,-260r-23,-17r73,-61r22,20","w":273},"\u00c2":{"d":"168,-124r-32,-94v-8,30,-24,65,-35,94r67,0xm4,0r0,-30r22,0r91,-222r45,0r85,222r22,0r0,30r-92,0r0,-30r23,0r-22,-62r-88,0r-24,62r26,0r0,30r-88,0xm65,-282r59,-50r26,0r58,50r-23,20r-48,-43r-48,43","w":273},"\u00c4":{"d":"168,-124r-32,-94v-8,30,-24,65,-35,94r67,0xm4,0r0,-30r22,0r91,-222r45,0r85,222r22,0r0,30r-92,0r0,-30r23,0r-22,-62r-88,0r-24,62r26,0r0,30r-88,0xm151,-297v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25xm72,-297v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25","w":273},"\u00c0":{"d":"168,-124r-32,-94v-8,30,-24,65,-35,94r67,0xm4,0r0,-30r22,0r91,-222r45,0r85,222r22,0r0,30r-92,0r0,-30r23,0r-22,-62r-88,0r-24,62r26,0r0,30r-88,0xm148,-260r-72,-58r22,-20r72,61","w":273},"\u00c5":{"d":"168,-124r-32,-94v-8,30,-24,65,-35,94r67,0xm4,0r0,-30r22,0r91,-222r45,0r85,222r22,0r0,30r-92,0r0,-30r23,0r-22,-62r-88,0r-24,62r26,0r0,30r-88,0xm98,-295v0,-20,17,-37,39,-37v22,0,39,17,39,37v0,20,-17,37,-39,37v-22,0,-39,-17,-39,-37xm121,-295v0,21,32,21,32,0v0,-21,-32,-21,-32,0","w":273},"\u00c3":{"d":"168,-124r-32,-94v-8,30,-24,65,-35,94r67,0xm4,0r0,-30r22,0r91,-222r45,0r85,222r22,0r0,30r-92,0r0,-30r23,0r-22,-62r-88,0r-24,62r26,0r0,30r-88,0xm113,-323v29,0,55,38,72,3v6,7,26,11,17,20v-10,14,-20,26,-38,26v-29,0,-58,-38,-71,-2v-7,-6,-28,-8,-22,-18v5,-9,18,-29,42,-29","w":273},"\u00c9":{"d":"17,0r0,-30r25,0r1,-192r-29,0r0,-30r177,0r2,66r-34,0r-2,-36r-73,0r-1,77r72,0r0,32r-72,0r-1,83r77,0r3,-41r34,0r-3,71r-176,0xm96,-260r-23,-17r73,-61r22,20"},"\u00ca":{"d":"17,0r0,-30r25,0r1,-192r-29,0r0,-30r177,0r2,66r-34,0r-2,-36r-73,0r-1,77r72,0r0,32r-72,0r-1,83r77,0r3,-41r34,0r-3,71r-176,0xm35,-282r59,-50r26,0r59,50r-24,20r-48,-43r-48,43"},"\u00cb":{"d":"17,0r0,-30r25,0r1,-192r-29,0r0,-30r177,0r2,66r-34,0r-2,-36r-73,0r-1,77r72,0r0,32r-72,0r-1,83r77,0r3,-41r34,0r-3,71r-176,0xm121,-297v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25xm42,-297v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25"},"\u00c8":{"d":"17,0r0,-30r25,0r1,-192r-29,0r0,-30r177,0r2,66r-34,0r-2,-36r-73,0r-1,77r72,0r0,32r-72,0r-1,83r77,0r3,-41r34,0r-3,71r-176,0xm118,-260r-72,-58r22,-20r72,61"},"\u00cd":{"d":"17,0r0,-30r25,0r2,-192r-27,0r0,-30r93,0r0,30r-26,0r-1,192r27,0r0,30r-93,0xm53,-260r-23,-17r73,-61r21,20","w":126},"\u00ce":{"d":"17,0r0,-30r25,0r2,-192r-27,0r0,-30r93,0r0,30r-26,0r-1,192r27,0r0,30r-93,0xm-8,-282r58,-50r26,0r59,50r-24,20r-48,-43r-48,43","w":126},"\u00cf":{"d":"17,0r0,-30r25,0r2,-192r-27,0r0,-30r93,0r0,30r-26,0r-1,192r27,0r0,30r-93,0xm77,-297v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-26,-11,-26,-25xm-2,-297v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25","w":126},"\u00cc":{"d":"17,0r0,-30r25,0r2,-192r-27,0r0,-30r93,0r0,30r-26,0r-1,192r27,0r0,30r-93,0xm74,-260r-71,-58r21,-20r73,61","w":126},"\u00d1":{"d":"15,0r0,-30r25,0r1,-192r-31,0r0,-30r66,0r117,152v9,10,17,29,26,38r-2,-160r-28,0r0,-30r88,0r0,30r-25,0r-1,222r-33,0r-126,-163v-8,-8,-13,-24,-18,-26r1,159r28,0r0,30r-88,0xm120,-323v29,0,54,38,71,3v6,7,26,11,17,20v-10,14,-19,26,-37,26v-30,0,-57,-37,-72,-2v-7,-6,-28,-8,-22,-18v5,-9,19,-29,43,-29","w":286},"\u00d3":{"d":"15,-122v0,-79,49,-134,127,-134v73,0,116,48,116,126v0,67,-38,134,-123,134v-73,0,-120,-49,-120,-126xm59,-123v0,49,24,93,77,93v67,0,78,-64,78,-98v0,-45,-16,-94,-75,-94v-42,0,-80,29,-80,99xm126,-260r-23,-17r73,-61r22,20","w":273},"\u00d4":{"d":"15,-122v0,-79,49,-134,127,-134v73,0,116,48,116,126v0,67,-38,134,-123,134v-73,0,-120,-49,-120,-126xm59,-123v0,49,24,93,77,93v67,0,78,-64,78,-98v0,-45,-16,-94,-75,-94v-42,0,-80,29,-80,99xm65,-282r59,-50r26,0r58,50r-23,20r-48,-43r-48,43","w":273},"\u00d6":{"d":"15,-122v0,-79,49,-134,127,-134v73,0,116,48,116,126v0,67,-38,134,-123,134v-73,0,-120,-49,-120,-126xm59,-123v0,49,24,93,77,93v67,0,78,-64,78,-98v0,-45,-16,-94,-75,-94v-42,0,-80,29,-80,99xm151,-297v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25xm72,-297v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25","w":273},"\u00d2":{"d":"15,-122v0,-79,49,-134,127,-134v73,0,116,48,116,126v0,67,-38,134,-123,134v-73,0,-120,-49,-120,-126xm59,-123v0,49,24,93,77,93v67,0,78,-64,78,-98v0,-45,-16,-94,-75,-94v-42,0,-80,29,-80,99xm148,-260r-72,-58r22,-20r72,61","w":273},"\u00d5":{"d":"15,-122v0,-79,49,-134,127,-134v73,0,116,48,116,126v0,67,-38,134,-123,134v-73,0,-120,-49,-120,-126xm59,-123v0,49,24,93,77,93v67,0,78,-64,78,-98v0,-45,-16,-94,-75,-94v-42,0,-80,29,-80,99xm113,-323v29,0,55,38,72,3v6,7,26,11,17,20v-10,14,-20,26,-38,26v-29,0,-58,-38,-71,-2v-7,-6,-28,-8,-22,-18v5,-9,18,-29,42,-29","w":273},"\u0160":{"d":"19,-70r40,0r0,34v28,15,106,12,99,-33v3,-34,-54,-38,-83,-48v-28,-10,-55,-26,-55,-66v0,-79,112,-83,171,-61r0,56r-38,0r0,-31v-5,-2,-19,-6,-38,-6v-37,0,-53,18,-53,37v-1,36,49,36,78,45v29,9,61,24,61,68v0,82,-106,93,-182,66r0,-61xm97,-268r-58,-50r23,-20r48,43r48,-43r24,20r-59,50r-26,0","w":219},"\u00da":{"d":"136,4v-71,0,-99,-24,-99,-91r0,-135r-26,0r0,-30r92,0r0,30r-26,0v7,81,-29,192,59,192v94,0,55,-113,64,-192r-30,0r0,-30r92,0r0,30r-24,0r0,135v-1,64,-37,91,-102,91xm126,-260r-23,-17r73,-61r22,20","w":273},"\u00db":{"d":"136,4v-71,0,-99,-24,-99,-91r0,-135r-26,0r0,-30r92,0r0,30r-26,0v7,81,-29,192,59,192v94,0,55,-113,64,-192r-30,0r0,-30r92,0r0,30r-24,0r0,135v-1,64,-37,91,-102,91xm65,-282r59,-50r26,0r58,50r-23,20r-48,-43r-48,43","w":273},"\u00dc":{"d":"136,4v-71,0,-99,-24,-99,-91r0,-135r-26,0r0,-30r92,0r0,30r-26,0v7,81,-29,192,59,192v94,0,55,-113,64,-192r-30,0r0,-30r92,0r0,30r-24,0r0,135v-1,64,-37,91,-102,91xm151,-297v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25xm72,-297v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25","w":273},"\u00d9":{"d":"136,4v-71,0,-99,-24,-99,-91r0,-135r-26,0r0,-30r92,0r0,30r-26,0v7,81,-29,192,59,192v94,0,55,-113,64,-192r-30,0r0,-30r92,0r0,30r-24,0r0,135v-1,64,-37,91,-102,91xm148,-260r-72,-58r22,-20r72,61","w":273},"\u00dd":{"d":"84,0r0,-30r25,0r2,-74r-88,-118r-22,0r0,-30r93,0r0,30r-25,0v23,28,43,58,65,87r65,-87r-28,0r0,-30r87,0r0,30r-22,0r-85,118r-1,74r26,0r0,30r-92,0xm119,-260r-23,-17r73,-61r22,20","w":259},"\u0178":{"d":"84,0r0,-30r25,0r2,-74r-88,-118r-22,0r0,-30r93,0r0,30r-25,0v23,28,43,58,65,87r65,-87r-28,0r0,-30r87,0r0,30r-22,0r-85,118r-1,74r26,0r0,30r-92,0xm144,-297v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25xm65,-297v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25","w":259},"\u017d":{"d":"16,0r0,-28r150,-194r-103,0r-3,36r-36,0r3,-66r188,0r0,30r-148,192r112,0r2,-36r36,0r-2,66r-199,0xm104,-268r-59,-50r24,-20r48,43r48,-43r23,20r-58,50r-26,0","w":233},"\u00e1":{"d":"29,-128r0,-47v10,-5,34,-17,74,-17v93,0,71,83,72,162r25,0r0,30r-60,0v-1,-11,4,-28,3,-39v-8,21,-23,43,-62,43v-45,0,-60,-29,-60,-53v0,-64,66,-56,119,-60v1,-32,-2,-52,-41,-53v-14,0,-28,3,-34,6r0,28r-36,0xm61,-53v0,14,11,26,30,26v33,-1,50,-25,48,-55v-42,0,-78,1,-78,29xm96,-209r-23,-17r73,-61r22,21"},"\u00e2":{"d":"29,-128r0,-47v10,-5,34,-17,74,-17v93,0,71,83,72,162r25,0r0,30r-60,0v-1,-11,4,-28,3,-39v-8,21,-23,43,-62,43v-45,0,-60,-29,-60,-53v0,-64,66,-56,119,-60v1,-32,-2,-52,-41,-53v-14,0,-28,3,-34,6r0,28r-36,0xm61,-53v0,14,11,26,30,26v33,-1,50,-25,48,-55v-42,0,-78,1,-78,29xm33,-231r59,-50r26,0r58,50r-23,20r-48,-43r-48,43"},"\u00e4":{"d":"29,-128r0,-47v10,-5,34,-17,74,-17v93,0,71,83,72,162r25,0r0,30r-60,0v-1,-11,4,-28,3,-39v-8,21,-23,43,-62,43v-45,0,-60,-29,-60,-53v0,-64,66,-56,119,-60v1,-32,-2,-52,-41,-53v-14,0,-28,3,-34,6r0,28r-36,0xm61,-53v0,14,11,26,30,26v33,-1,50,-25,48,-55v-42,0,-78,1,-78,29xm119,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25xm40,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25"},"\u00e0":{"d":"29,-128r0,-47v10,-5,34,-17,74,-17v93,0,71,83,72,162r25,0r0,30r-60,0v-1,-11,4,-28,3,-39v-8,21,-23,43,-62,43v-45,0,-60,-29,-60,-53v0,-64,66,-56,119,-60v1,-32,-2,-52,-41,-53v-14,0,-28,3,-34,6r0,28r-36,0xm61,-53v0,14,11,26,30,26v33,-1,50,-25,48,-55v-42,0,-78,1,-78,29xm118,-209r-72,-57r22,-21r72,61"},"\u00e5":{"d":"29,-128r0,-47v10,-5,34,-17,74,-17v93,0,71,83,72,162r25,0r0,30r-60,0v-1,-11,4,-28,3,-39v-8,21,-23,43,-62,43v-45,0,-60,-29,-60,-53v0,-64,66,-56,119,-60v1,-32,-2,-52,-41,-53v-14,0,-28,3,-34,6r0,28r-36,0xm61,-53v0,14,11,26,30,26v33,-1,50,-25,48,-55v-42,0,-78,1,-78,29xm66,-240v0,-20,17,-37,39,-37v22,0,39,17,39,37v0,20,-17,37,-39,37v-22,0,-39,-17,-39,-37xm89,-240v0,21,32,21,32,0v0,-21,-32,-21,-32,0"},"\u00e3":{"d":"29,-128r0,-47v10,-5,34,-17,74,-17v93,0,71,83,72,162r25,0r0,30r-60,0v-1,-11,4,-28,3,-39v-8,21,-23,43,-62,43v-45,0,-60,-29,-60,-53v0,-64,66,-56,119,-60v1,-32,-2,-52,-41,-53v-14,0,-28,3,-34,6r0,28r-36,0xm61,-53v0,14,11,26,30,26v33,-1,50,-25,48,-55v-42,0,-78,1,-78,29xm81,-272v29,0,55,38,72,3v6,7,26,10,17,21v-11,13,-20,25,-38,25v-29,0,-58,-38,-71,-2v-7,-6,-28,-8,-22,-18v5,-9,18,-29,42,-29"},"\u00e9":{"d":"180,-42r-3,33v-13,5,-37,13,-65,13v-62,0,-99,-38,-99,-97v0,-55,32,-99,92,-99v58,0,86,43,84,105r-134,0v-3,62,82,72,125,45xm55,-114r92,0v1,-20,-8,-48,-44,-48v-34,0,-47,25,-48,48xm89,-209r-22,-17r72,-61r22,21","w":200},"\u00ea":{"d":"180,-42r-3,33v-13,5,-37,13,-65,13v-62,0,-99,-38,-99,-97v0,-55,32,-99,92,-99v58,0,86,43,84,105r-134,0v-3,62,82,72,125,45xm55,-114r92,0v1,-20,-8,-48,-44,-48v-34,0,-47,25,-48,48xm28,-231r59,-50r26,0r59,50r-24,20r-48,-43r-48,43","w":200},"\u00eb":{"d":"180,-42r-3,33v-13,5,-37,13,-65,13v-62,0,-99,-38,-99,-97v0,-55,32,-99,92,-99v58,0,86,43,84,105r-134,0v-3,62,82,72,125,45xm55,-114r92,0v1,-20,-8,-48,-44,-48v-34,0,-47,25,-48,48xm114,-246v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25xm35,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25","w":200},"\u00e8":{"d":"180,-42r-3,33v-13,5,-37,13,-65,13v-62,0,-99,-38,-99,-97v0,-55,32,-99,92,-99v58,0,86,43,84,105r-134,0v-3,62,82,72,125,45xm55,-114r92,0v1,-20,-8,-48,-44,-48v-34,0,-47,25,-48,48xm111,-209r-72,-57r22,-21r73,61","w":200},"\u00ed":{"d":"14,0r0,-30r25,0r0,-128r-28,0r0,-29r69,0r-1,157r25,0r0,30r-90,0xm46,-209r-23,-17r73,-61r22,21","w":113},"\u00ee":{"d":"14,0r0,-30r25,0r0,-128r-28,0r0,-29r69,0r-1,157r25,0r0,30r-90,0xm-15,-231r59,-50r26,0r59,50r-24,20r-48,-43r-48,43","w":113},"\u00ef":{"d":"14,0r0,-30r25,0r0,-128r-28,0r0,-29r69,0r-1,157r25,0r0,30r-90,0xm71,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25xm-8,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25","w":113},"\u00ec":{"d":"14,0r0,-30r25,0r0,-128r-28,0r0,-29r69,0r-1,157r25,0r0,30r-90,0xm68,-209r-72,-57r22,-21r72,61","w":113},"\u00f1":{"d":"17,0r0,-30r22,0r0,-128r-26,0r0,-29r67,0v1,12,-3,28,-3,41v8,-24,29,-46,66,-46v79,0,65,89,63,162r25,0r0,30r-86,0r0,-30r21,0v-3,-50,18,-126,-36,-128v-54,-2,-53,71,-51,128r25,0r0,30r-87,0xm97,-272v29,0,54,38,71,3v6,7,26,10,17,21v-11,13,-19,25,-37,25v-30,0,-57,-37,-72,-2v-7,-6,-28,-8,-22,-18v5,-9,19,-29,43,-29","w":240},"\u00f3":{"d":"109,-158v-73,-1,-75,127,-3,128v37,0,53,-30,53,-67v0,-42,-22,-61,-50,-61xm12,-90v0,-61,41,-102,98,-102v69,0,92,53,92,99v0,53,-33,97,-97,97v-67,0,-93,-46,-93,-94xm96,-209r-23,-17r73,-61r22,21"},"\u00f4":{"d":"109,-158v-73,-1,-75,127,-3,128v37,0,53,-30,53,-67v0,-42,-22,-61,-50,-61xm12,-90v0,-61,41,-102,98,-102v69,0,92,53,92,99v0,53,-33,97,-97,97v-67,0,-93,-46,-93,-94xm35,-231r59,-50r26,0r59,50r-24,20r-48,-43r-48,43"},"\u00f6":{"d":"109,-158v-73,-1,-75,127,-3,128v37,0,53,-30,53,-67v0,-42,-22,-61,-50,-61xm12,-90v0,-61,41,-102,98,-102v69,0,92,53,92,99v0,53,-33,97,-97,97v-67,0,-93,-46,-93,-94xm121,-246v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25xm42,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25"},"\u00f2":{"d":"109,-158v-73,-1,-75,127,-3,128v37,0,53,-30,53,-67v0,-42,-22,-61,-50,-61xm12,-90v0,-61,41,-102,98,-102v69,0,92,53,92,99v0,53,-33,97,-97,97v-67,0,-93,-46,-93,-94xm118,-209r-72,-57r22,-21r72,61"},"\u00f5":{"d":"109,-158v-73,-1,-75,127,-3,128v37,0,53,-30,53,-67v0,-42,-22,-61,-50,-61xm12,-90v0,-61,41,-102,98,-102v69,0,92,53,92,99v0,53,-33,97,-97,97v-67,0,-93,-46,-93,-94xm84,-272v29,0,54,38,71,3v6,7,26,10,17,21v-11,13,-20,25,-38,25v-29,0,-56,-37,-71,-2v-7,-6,-28,-8,-22,-18v5,-9,19,-29,43,-29"},"\u0161":{"d":"161,-134r-36,0r0,-22v-16,-9,-72,-11,-69,17v3,29,45,23,70,30v21,6,45,13,45,51v0,76,-107,67,-152,51r-1,-51r36,0r1,25v16,8,80,17,78,-18v-1,-27,-35,-25,-57,-30v-29,-6,-60,-15,-60,-51v0,-71,104,-66,145,-47r0,45xm81,-217r-59,-50r24,-20r48,43r48,-43r23,20r-58,50r-26,0","w":186},"\u00fa":{"d":"13,-158r0,-29r65,0v5,57,-23,157,35,157v27,0,49,-21,49,-56r0,-72r-24,0r0,-29r65,0r-1,157r25,0r0,30r-65,0v-1,-12,3,-28,3,-41v-8,28,-35,45,-65,45v-40,0,-64,-27,-64,-71v0,-31,1,-61,2,-91r-25,0xm109,-209r-22,-17r72,-61r22,21","w":240},"\u00fb":{"d":"13,-158r0,-29r65,0v5,57,-23,157,35,157v27,0,49,-21,49,-56r0,-72r-24,0r0,-29r65,0r-1,157r25,0r0,30r-65,0v-1,-12,3,-28,3,-41v-8,28,-35,45,-65,45v-40,0,-64,-27,-64,-71v0,-31,1,-61,2,-91r-25,0xm49,-231r58,-50r26,0r59,50r-24,20r-48,-43r-48,43","w":240},"\u00fc":{"d":"13,-158r0,-29r65,0v5,57,-23,157,35,157v27,0,49,-21,49,-56r0,-72r-24,0r0,-29r65,0r-1,157r25,0r0,30r-65,0v-1,-12,3,-28,3,-41v-8,28,-35,45,-65,45v-40,0,-64,-27,-64,-71v0,-31,1,-61,2,-91r-25,0xm131,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25xm51,-246v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-26,-11,-26,-25","w":240},"\u00f9":{"d":"13,-158r0,-29r65,0v5,57,-23,157,35,157v27,0,49,-21,49,-56r0,-72r-24,0r0,-29r65,0r-1,157r25,0r0,30r-65,0v-1,-12,3,-28,3,-41v-8,28,-35,45,-65,45v-40,0,-64,-27,-64,-71v0,-31,1,-61,2,-91r-25,0xm131,-209r-72,-57r22,-21r73,61","w":240},"\u00fd":{"d":"-1,-158r0,-29r86,0r0,29r-21,0r45,125v11,-43,28,-84,41,-125r-24,0r0,-29r79,0r0,29r-19,0v-29,74,-46,157,-86,223v-18,30,-55,36,-90,26r0,-32v40,12,59,3,78,-49r-69,-168r-20,0xm96,-209r-23,-17r73,-61r22,21"},"\u00ff":{"d":"-1,-158r0,-29r86,0r0,29r-21,0r45,125v11,-43,28,-84,41,-125r-24,0r0,-29r79,0r0,29r-19,0v-29,74,-46,157,-86,223v-18,30,-55,36,-90,26r0,-32v40,12,59,3,78,-49r-69,-168r-20,0xm121,-246v0,-14,12,-26,26,-26v14,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-26,-11,-26,-25xm42,-246v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25"},"\u017e":{"d":"14,0r0,-30r104,-118v3,-4,8,-7,11,-10r-73,0r-3,28r-34,0r3,-57r155,0r0,30r-101,115v-4,5,-8,8,-13,12r79,0r3,-28r34,0r-3,58r-162,0xm84,-217r-59,-50r24,-20r48,43r48,-43r23,20r-58,50r-26,0","w":193},"\u00a0":{"w":106,"k":{"\u201c":20,"\u2018":20,"Y":33,"W":20,"V":27,"T":27,"A":13}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991, 1992, 1995 Adobe Systems Incorporated.  All Rights
 * Reserved.PMN Caecilia is a trademark of Linotype-Hell AG and/or its
 * subsidiaries.
 * 
 * Full name:
 * Caecilia-Italic
 */
Cufon.registerFont({"w":200,"face":{"font-family":"PMN Caecilia","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-46 -329 379 97","underline-thickness":"18","underline-position":"-27","slope":"-5","stemh":"23","stemv":"27","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100,"k":{"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"38,-83r14,-194r31,0r-19,194r-26,0xm24,-17v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,11,-10,21,-21,21v-11,0,-20,-10,-20,-21","w":106},"\"":{"d":"117,-186r-6,-74v0,-11,4,-20,14,-20v19,-1,14,34,12,48r-4,46v0,5,-2,9,-8,9v-6,0,-8,-4,-8,-9xm45,-186r-6,-74v0,-11,4,-20,14,-20v19,-1,14,34,12,48r-4,46v0,5,-2,9,-8,9v-6,0,-8,-4,-8,-9","w":159},"#":{"d":"118,-100r12,-52r-48,0r-11,52r47,0xm27,0r17,-77r-40,0r3,-23r42,0r11,-52r-41,0r4,-23r42,0r17,-77r21,0r-16,77r48,0r16,-77r22,0r-17,77r41,0r-4,23r-42,0r-11,52r41,0r-4,23r-42,0r-17,77r-21,0r16,-77r-47,0r-17,77r-22,0"},"$":{"d":"11,-8r2,-55r23,0r0,35v12,4,29,8,48,8r9,-98v-56,-14,-73,-40,-73,-68v0,-46,41,-70,84,-70r4,-44r20,0r-3,44v19,1,43,4,59,10r-2,52r-24,0r0,-32v-8,-3,-22,-6,-36,-6r-7,88v34,8,74,25,74,69v0,46,-35,78,-87,79r-4,47r-20,0r4,-47v-29,-1,-54,-6,-71,-12xm95,-149r7,-83v-32,0,-51,20,-51,40v0,27,23,38,44,43xm112,-113r-8,93v22,0,54,-17,54,-49v0,-24,-17,-38,-46,-44"},"%":{"d":"21,-191v0,-35,18,-65,60,-65v29,0,49,21,49,52v0,30,-15,64,-59,64v-27,0,-50,-17,-50,-51xm78,-236v-39,0,-47,76,-5,76v21,0,32,-19,32,-42v0,-24,-9,-34,-27,-34xm158,-47v0,-35,17,-65,59,-65v29,0,50,21,50,52v0,30,-16,64,-60,64v-27,0,-49,-17,-49,-51xm215,-92v-39,0,-47,76,-5,76v21,0,32,-19,32,-42v0,-24,-9,-34,-27,-34xm13,7r246,-280r16,14r-246,280","w":286},"&":{"d":"19,-63v0,-39,37,-69,60,-81v-19,-21,-29,-39,-29,-56v0,-27,19,-57,65,-57v34,0,53,19,53,45v0,32,-29,53,-55,69r72,77v9,-14,17,-37,17,-60r-25,0r2,-23r74,0r-2,23r-25,0v-1,28,-7,52,-25,77v16,21,26,32,54,28r-3,23v-35,6,-51,-13,-68,-33v-11,11,-32,35,-85,35v-53,0,-80,-31,-80,-67xm76,-201v0,18,13,31,24,43v20,-13,44,-28,44,-51v0,-14,-13,-25,-31,-25v-18,0,-37,9,-37,33xm93,-129v-25,17,-46,32,-47,61v-2,59,95,60,123,21","w":273},"\u2019":{"d":"29,-177r-10,-16v19,-8,32,-20,32,-34v-6,-23,-22,-53,9,-53v13,0,25,11,25,32v0,34,-22,58,-56,71","w":100,"k":{"t":6,"s":27,"d":40,"\u2019":27}},"(":{"d":"120,-284r18,15v-79,94,-104,239,-35,353r-20,13v-77,-118,-67,-268,37,-381","w":119},")":{"d":"-5,97r-18,-15v79,-94,102,-239,34,-352r20,-14v76,117,68,268,-36,381","w":119},"*":{"d":"62,-225r-39,-19r13,-20r32,30r-1,-43r23,0r-10,44r34,-28r12,20r-43,16r39,19r-13,20r-32,-30r1,43r-23,0v3,-14,10,-31,10,-44r-34,28r-12,-20","w":126},"+":{"d":"96,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0","w":216},",":{"d":"17,66r-10,-17v19,-8,33,-20,33,-34v0,-17,-12,-20,-12,-32v0,-12,10,-20,21,-20v13,0,24,10,24,31v0,34,-22,59,-56,72","w":100,"k":{"\u201d":33,"\u2019":33," ":13}},"-":{"d":"24,-85r2,-27r83,0r-2,27r-83,0","w":133},".":{"d":"30,-17v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,11,-10,21,-21,21v-11,0,-20,-10,-20,-21","w":100,"k":{"\u201d":33,"\u2019":33," ":13}},"\/":{"d":"-9,18r142,-298r20,10r-142,298","w":140},"0":{"d":"189,-141v0,90,-38,145,-96,145v-37,0,-81,-21,-81,-109v0,-71,25,-151,100,-151v55,0,77,49,77,115xm94,-20v45,0,66,-64,66,-123v0,-47,-13,-89,-52,-89v-36,0,-68,45,-68,128v0,35,9,84,54,84"},"1":{"d":"38,0r2,-23r47,0r17,-206v-16,17,-45,29,-66,43r-11,-18r81,-48r26,0r-20,229r52,0r-2,23r-126,0"},"2":{"d":"10,0r2,-23v51,-41,138,-113,138,-169v0,-23,-18,-40,-42,-40v-31,0,-51,23,-55,48r-29,0v4,-26,25,-72,87,-72v44,0,68,29,68,63v1,59,-89,135,-133,170v41,-2,88,0,131,-1r-2,24r-165,0"},"3":{"d":"10,-10r2,-25v14,6,39,15,67,15v44,0,66,-26,66,-52v0,-28,-25,-48,-83,-46r2,-23v49,1,82,-25,82,-56v0,-23,-15,-35,-39,-35v-32,0,-49,19,-53,40r-27,0v3,-27,28,-64,83,-64v32,0,65,18,65,58v1,39,-36,60,-64,66v33,2,63,21,63,59v0,68,-99,96,-164,63"},"4":{"d":"123,-100r10,-124r-100,125v28,-2,60,0,90,-1xm91,0r2,-23r24,0r4,-54r-116,0r2,-26r123,-149r33,0r-12,152r44,0r-2,23r-44,0r-5,54r29,0r-2,23r-80,0"},"5":{"d":"15,-5r3,-26v14,5,39,11,53,11v51,0,72,-32,72,-60v0,-42,-36,-53,-111,-56r11,-116r130,0r-2,24r-103,0r-7,69v63,3,111,20,111,77v0,39,-30,86,-98,86v-22,0,-45,-4,-59,-9"},"6":{"d":"18,-96v0,-100,69,-185,175,-153r-5,23v-78,-24,-134,28,-140,103v37,-56,136,-36,136,42v0,36,-24,85,-84,85v-59,0,-82,-45,-82,-100xm47,-102v-2,43,11,81,54,82v35,0,54,-30,54,-60v1,-62,-80,-67,-108,-22"},"7":{"d":"32,-228r2,-24r158,0r-2,19r-114,197v-6,12,-13,21,-23,36r-33,0v46,-63,95,-161,139,-228r-127,0"},"8":{"d":"10,-59v0,-32,25,-56,69,-73v-35,-14,-49,-36,-49,-60v0,-41,36,-64,82,-64v49,0,71,27,71,55v0,31,-23,54,-60,68v45,20,60,39,60,67v0,37,-30,70,-87,70v-51,0,-86,-20,-86,-63xm110,-234v-33,0,-51,20,-51,41v0,21,14,33,44,48v30,-12,51,-29,51,-55v0,-21,-18,-34,-44,-34xm154,-64v0,-19,-9,-34,-56,-56v-44,21,-59,34,-59,60v0,24,20,42,56,42v41,0,59,-21,59,-46"},"9":{"d":"101,-232v-27,0,-53,20,-53,56v0,28,17,50,50,50v25,0,47,-14,56,-28v0,-28,-8,-78,-53,-78xm9,-1r5,-25v82,28,139,-38,139,-108v-29,55,-132,38,-132,-40v0,-47,32,-82,81,-82v60,0,81,51,81,101v0,76,-34,159,-128,159v-17,0,-30,-1,-46,-5"},":":{"d":"48,-37v11,0,21,9,21,20v0,11,-10,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,9,-20,20,-20xm63,-186v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21","w":100},";":{"d":"17,66r-10,-17v19,-8,33,-20,33,-34v0,-17,-12,-20,-12,-32v0,-12,10,-20,21,-20v13,0,24,10,24,31v0,34,-22,59,-56,72xm63,-186v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21","w":100},"<":{"d":"199,-185r0,24r-153,70r153,69r0,25r-182,-83r0,-23","w":216},"=":{"d":"17,-115r0,-24r182,0r0,24r-182,0xm17,-43r0,-24r182,0r0,24r-182,0","w":216},">":{"d":"17,3r0,-25r153,-69r-153,-70r0,-24r182,83r0,22","w":216},"?":{"d":"72,-87r-24,11v-22,-19,-19,-54,7,-67v24,-19,73,-40,73,-75v0,-17,-10,-37,-46,-37v-18,0,-33,4,-45,8r-1,-25v56,-21,121,2,121,54v0,45,-39,62,-68,81v-33,20,-33,29,-17,50xm29,-17v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,11,-10,21,-21,21v-11,0,-20,-10,-20,-21","w":173},"@":{"d":"176,-140v0,-24,-11,-34,-29,-34v-31,0,-52,35,-52,65v0,21,11,34,28,34v32,0,53,-39,53,-65xm219,-193r-31,112v0,5,3,8,12,8v19,0,44,-33,44,-72v0,-52,-44,-85,-94,-85v-63,0,-106,48,-106,105v0,105,135,132,191,70r29,0v-19,34,-59,60,-117,60v-75,0,-134,-49,-134,-131v0,-73,56,-131,137,-131v71,0,125,44,125,108v0,70,-57,100,-90,100v-19,1,-23,-10,-26,-20v-26,34,-91,23,-91,-36v0,-68,80,-133,118,-68r7,-20r26,0","w":288},"A":{"d":"-1,0r2,-23r22,0r106,-229r33,0r65,229r26,0r-1,23r-79,0r1,-23r22,0r-20,-76r-90,0r-34,76r28,0r-2,23r-79,0xm96,-122r74,0r-28,-107","w":266,"k":{"\u201d":33,"y":27,"w":20,"v":20,"u":11,"p":4,"Y":33,"W":27,"V":33,"U":11,"T":20,"Q":13,"O":13,"G":13,"C":13,"\u2019":33}},"B":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r83,0v65,0,77,33,77,57v1,39,-29,58,-56,64v32,0,62,18,62,55v0,42,-28,76,-93,76r-90,0xm80,-229r-8,88v47,4,81,-10,84,-52v2,-30,-36,-40,-76,-36xm71,-121r-9,98v53,5,101,-9,98,-53v6,-34,-41,-51,-89,-45","w":213,"k":{"A":6,".":9,",":9}},"C":{"d":"179,-23r4,-35r25,0r-5,52v-89,31,-185,-4,-185,-105v0,-77,42,-146,136,-146v20,0,44,4,65,10r-3,52r-25,0r0,-33v-85,-26,-142,36,-142,117v0,76,62,106,130,88","w":233,"k":{"A":9}},"D":{"d":"80,-229r-18,206v96,9,149,-29,152,-122v2,-71,-55,-91,-134,-84xm8,0r2,-23r23,0r18,-206r-28,0r2,-23r104,0v88,0,116,50,116,106v0,90,-52,146,-140,146r-97,0","w":259,"k":{"Y":20,"W":13,"V":16,"A":13,".":13,",":13}},"E":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r164,0r-4,57r-23,0r1,-34r-83,0r-8,88r85,0r-2,23r-84,0r-9,95r91,0r4,-35r26,0r-6,58r-169,0","w":206},"F":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r164,0r-4,57r-23,0r1,-34r-83,0r-8,92r83,0r-2,23r-83,0r-8,91r29,0r-2,23r-81,0","w":193,"k":{"r":6,"o":9,"i":6,"e":9,"a":20,"A":27,".":46,",":46}},"G":{"d":"219,-195r-24,0r0,-33v-78,-20,-146,8,-146,114v0,49,24,96,88,96v15,0,34,-3,45,-7r6,-62r-29,0r2,-23r78,0r-2,23r-23,0r-7,79v-21,8,-49,13,-77,13v-71,0,-112,-45,-112,-118v0,-68,38,-144,134,-144v29,0,54,7,70,11","w":253,"k":{".":9,",":9}},"H":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-8,92r125,0r8,-92r-29,0r2,-23r80,0r-2,23r-22,0r-19,206r29,0r-2,23r-80,0r2,-23r22,0r9,-91r-125,0r-8,91r29,0r-2,23r-81,0","w":266},"I":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-18,206r29,0r-2,23r-81,0","w":113},"J":{"d":"-30,64r-10,-20v102,-42,74,-158,91,-273r-28,0r2,-23r80,0r-2,23r-23,0r-13,146v-6,77,-34,119,-97,147","w":113,"k":{"u":13,"o":6,"e":6,"a":13,"A":9,".":13,",":13}},"K":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-8,92r105,-92r-29,0r2,-23r83,0r-2,23r-20,0r-108,97r99,109r23,0r-1,23r-85,0r1,-23r25,0r-94,-104r-9,104r29,0r-2,23r-81,0","w":233,"k":{"y":16,"u":11,"o":9,"e":9,"O":9}},"L":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-18,206r80,0r5,-35r25,0r-6,58r-158,0","w":186,"k":{"\u201d":33,"y":27,"Y":33,"W":27,"V":27,"T":27,"\u2019":33}},"M":{"d":"9,0r2,-23r22,0r20,-206r-27,0r1,-23r66,0r55,189v5,12,3,24,8,34v27,-78,67,-149,99,-223r62,0r-1,23r-23,0r-15,206r28,0r-1,23r-80,0r1,-23r23,0r13,-190r-96,213r-29,0r-61,-211r-18,188r29,0r-2,23r-76,0","w":326},"N":{"d":"8,0r2,-23r22,0r19,-206r-29,0r2,-23r51,0r126,208r15,-185r-28,0r2,-23r76,0r-2,23r-23,0r-21,229r-23,0r-116,-187v-5,-6,-6,-14,-10,-20r-14,184r29,0r-2,23r-76,0","w":273,"k":{".":13,",":13}},"O":{"d":"18,-110v0,-90,50,-147,122,-147v73,0,102,54,102,115v0,90,-51,147,-123,147v-73,0,-101,-54,-101,-115xm211,-143v0,-64,-33,-90,-73,-90v-52,0,-89,44,-89,124v0,65,33,90,73,90v53,0,89,-44,89,-124","w":259,"k":{"Y":20,"X":11,"W":16,"V":20,"T":9,"A":13,".":13,",":13}},"P":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23v76,-2,171,-7,163,67v7,46,-46,94,-119,81r-7,81r29,0r-2,23r-81,0xm159,-184v0,-42,-33,-48,-79,-45r-9,103v48,6,88,-10,88,-58","k":{"o":9,"e":6,"a":20,"A":27,".":46,",":46}},"Q":{"d":"154,1v32,-7,91,64,128,39r-2,23v-34,12,-39,7,-89,-22v-49,-28,-64,-32,-85,-35v-59,-9,-88,-52,-88,-116v0,-90,50,-147,122,-147v73,0,102,54,102,115v0,82,-42,129,-88,143xm138,-233v-52,0,-89,44,-89,124v0,65,33,90,73,90v53,0,89,-44,89,-124v0,-64,-33,-90,-73,-90","w":259},"R":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r83,0v60,0,80,26,80,63v1,46,-38,68,-72,71v21,3,25,6,49,54v22,44,19,41,47,41r0,23v-58,-1,-41,12,-82,-68v-21,-41,-22,-45,-60,-44r-8,89r29,0r-2,23r-81,0xm80,-229r-8,97v51,5,87,-13,87,-56v0,-31,-35,-46,-79,-41","w":219,"k":{"Y":20,"W":16,"V":20,"T":6}},"S":{"d":"15,-7r3,-56r23,0r0,36v45,17,113,6,113,-44v0,-57,-128,-39,-128,-114v0,-41,32,-72,91,-72v27,0,44,6,63,11r-2,51r-24,0r0,-33v-36,-14,-97,-5,-97,39v0,59,128,32,128,115v0,75,-94,95,-170,67","k":{".":6,",":6}},"T":{"d":"59,0r3,-23r22,0r19,-206r-66,0r-4,35r-24,0r4,-58r210,0r-4,57r-25,0r1,-34r-64,0r-18,206r29,0r-2,23r-81,0","w":219,"k":{"y":46,"w":46,"u":40,"r":27,"o":27,"i":13,"h":6,"e":27,"a":40,"O":6,"A":27,";":33,":":33,".":46,"-":46,",":46}},"U":{"d":"35,-80r13,-149r-29,0r2,-23r81,0r-3,23r-22,0r-13,147v-3,39,9,63,59,63v43,0,67,-21,71,-68r13,-142r-29,0r2,-23r77,0r-2,23r-23,0v-16,104,16,234,-114,234v-57,0,-88,-24,-83,-85","w":259,"k":{"A":13,".":16,",":16}},"V":{"d":"101,0r-62,-229r-27,0r2,-23r81,0r-2,23r-23,0r51,205v24,-71,57,-137,85,-205r-28,0r2,-23r79,0r-2,23r-23,0r-102,229r-31,0","w":253,"k":{"u":20,"o":27,"i":20,"e":27,"a":33,"O":11,"G":9,"A":33,";":33,":":33,".":46,"-":33,",":46}},"W":{"d":"97,0r-60,-229r-27,0r2,-23r81,0r-2,23r-23,0r49,206r67,-161r-12,-45r-27,0r2,-23r81,0r-2,23r-23,0r42,168v4,10,3,26,7,37r73,-205r-27,0r2,-23r79,0r-2,23r-23,0r-89,229r-34,0r-37,-147r-64,147r-33,0","w":373,"k":{"y":22,"u":20,"o":22,"i":13,"e":20,"a":33,"O":6,"A":27,";":33,":":33,".":46,"-":33,",":46}},"X":{"d":"4,0r1,-23r23,0r85,-107r-60,-99r-24,0r1,-23r81,0r-2,23r-24,0v17,24,30,52,46,77r61,-77r-30,0r1,-23r83,0r-2,23r-23,0r-77,97r65,109r25,0r-2,23r-81,0r1,-23r24,0r-51,-86r-67,86r30,0r-2,23r-82,0","w":253},"Y":{"d":"73,0r2,-23r23,0r7,-80r-73,-126r-26,0r1,-23r83,0r-2,23r-23,0r57,102r75,-102r-30,0r2,-23r80,0r-1,23r-23,0r-92,124r-7,82r29,0r-2,23r-80,0","w":240,"k":{"u":33,"o":33,"i":20,"e":33,"a":40,"S":9,"O":13,"A":33,";":33,":":33,".":46,"-":46,",":46}},"Z":{"d":"6,0r3,-21r167,-209v-37,2,-78,0,-117,1r-5,35r-25,0r4,-58r180,0r-1,20r-147,187v-7,10,-16,16,-21,23v42,-3,86,0,129,-1r4,-35r26,0r-6,58r-191,0","w":219},"[":{"d":"21,90r32,-367r63,0r-2,23r-36,0r-28,322r34,0r-2,22r-61,0","w":113},"\\":{"d":"118,28r-116,-298r21,-10r116,298","w":140},"]":{"d":"-8,90r2,-22r35,0r29,-322r-35,0r3,-23r61,0r-32,367r-63,0","w":113},"^":{"d":"32,-121r65,-131r22,0r65,131r-25,0r-51,-103r-51,103r-25,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"86,-280r9,17v-19,8,-32,20,-32,34v0,17,12,20,12,32v0,12,-10,20,-21,20v-13,0,-24,-10,-24,-31v0,-34,22,-59,56,-72","w":100,"k":{"\u2018":27,"A":33}},"a":{"d":"19,-64v-1,-98,59,-143,140,-117r13,0v-5,26,-12,106,-15,158r27,0r-2,23r-54,0v2,-31,11,-71,13,-94v-9,34,-30,98,-75,98v-31,0,-47,-28,-47,-68xm48,-64v0,27,7,41,21,41v38,0,66,-83,72,-139v-62,-23,-93,40,-93,98","k":{"y":6,"w":4,"v":4}},"b":{"d":"14,-254r2,-23r61,0r-18,177v15,-56,42,-89,78,-89v34,0,44,32,44,68v0,37,-17,125,-97,125v-24,0,-47,-6,-60,-13v6,-39,13,-134,23,-245r-33,0xm153,-122v0,-28,-7,-43,-21,-43v-33,0,-72,64,-78,141v62,23,101,-33,99,-98","k":{"y":11,".":13,",":13}},"c":{"d":"118,-136r1,-29v-53,-12,-78,30,-78,84v0,70,54,68,95,46r-3,26v-12,6,-28,13,-51,13v-52,0,-70,-44,-70,-83v0,-77,54,-129,133,-104r-4,47r-23,0","w":153,"k":{"y":6,"k":9,"h":9}},"d":{"d":"19,-64v0,-92,37,-133,124,-122r6,-68r-33,0r2,-23r61,0r-22,254r27,0r-2,23r-53,0v2,-31,10,-71,12,-93v-9,34,-30,97,-75,97v-37,0,-47,-36,-47,-68xm48,-64v0,27,7,41,21,41v38,0,66,-83,72,-139v-62,-23,-93,40,-93,98","k":{"y":6}},"e":{"d":"12,-80v0,-59,32,-108,91,-109v36,0,51,21,51,42v0,44,-50,68,-113,75v-1,63,60,59,99,35r-3,27v-9,5,-30,14,-56,14v-46,0,-69,-24,-69,-84xm126,-145v0,-10,-9,-22,-28,-22v-34,0,-53,35,-57,75v51,-6,85,-21,85,-53","w":166,"k":{"y":6,"w":4,"b":4,".":6,",":6}},"f":{"d":"-46,89r1,-24v60,13,72,-5,78,-83r12,-145r-29,0r2,-23r28,0v-3,-71,41,-109,113,-89r-2,22v-41,-10,-77,-4,-81,47r-3,20r49,0r-2,23r-48,0v-12,78,0,192,-39,239v-18,21,-54,23,-79,13","w":119,"k":{"\u201d":-13,"o":6,"a":6,".":13,",":13,"\u2019":-13}},"g":{"d":"12,77r1,-26v17,17,76,25,97,2v25,-28,21,-82,32,-147v-11,30,-35,92,-80,92v-34,0,-45,-32,-45,-64v-2,-89,62,-143,144,-116r13,0v-6,46,-11,100,-16,173v-6,97,-72,116,-146,86xm114,-167v-53,0,-68,54,-68,101v0,27,7,41,21,41v30,0,65,-63,77,-136v-6,-2,-15,-6,-30,-6","w":193,"k":{"y":4,".":6}},"h":{"d":"16,-254r2,-23r61,0v-5,41,-9,135,-21,182v16,-45,46,-95,83,-94v24,0,36,15,36,47v0,30,-7,77,-12,119r27,0r-2,23r-55,0v7,-59,15,-114,15,-137v0,-20,-5,-26,-16,-26v-40,0,-71,90,-75,117r-7,46r-28,0v13,-93,21,-220,25,-254r-33,0","w":206,"k":{"y":6}},"i":{"d":"28,0r15,-163r-29,0r3,-23r56,0r-15,163r28,0r-2,23r-56,0xm64,-280v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21","w":100},"j":{"d":"-21,95r-9,-21v45,-16,62,-33,68,-104r12,-133r-28,0r2,-23r56,0r-13,156v-8,86,-37,110,-88,125xm51,-259v0,-11,10,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20","w":106},"k":{"d":"147,-147v0,-11,-8,-18,-19,-18v-35,0,-57,50,-63,77v54,-11,82,-36,82,-59xm16,-254r2,-23r61,0v-6,56,-4,103,-17,158v9,-27,30,-70,73,-70v27,0,41,19,41,35v0,42,-53,67,-80,72v11,8,34,39,53,59r27,0r-2,23r-44,0r-67,-81v-4,20,-8,65,-9,81r-27,0v9,-91,14,-170,22,-254r-33,0","w":193,"k":{"y":4}},"l":{"d":"27,0r22,-254r-33,0r2,-23r61,0r-22,254r27,0r-2,23r-55,0","w":100},"m":{"d":"14,-163r2,-23r56,0r-12,91v12,-50,44,-94,82,-94v39,0,33,48,31,78v12,-40,40,-78,73,-78v24,0,36,15,36,47v0,30,-7,77,-12,119r27,0r-2,23r-56,0v7,-59,16,-114,16,-137v0,-20,-5,-26,-16,-26v-34,-1,-77,97,-78,163r-28,0v3,-23,15,-110,15,-132v0,-22,-6,-31,-17,-31v-39,0,-75,101,-78,163r-28,0v8,-58,12,-112,17,-163r-28,0","w":313,"k":{"y":6,"u":4}},"n":{"d":"13,-163r2,-23r57,0r-13,91v13,-48,46,-94,82,-94v24,0,36,15,36,47v0,30,-7,77,-12,119r27,0r-2,23r-55,0v7,-59,15,-114,15,-137v0,-20,-5,-26,-16,-26v-40,0,-71,90,-75,117r-7,46r-28,0v8,-58,13,-112,18,-163r-29,0","w":206,"k":{"y":6}},"o":{"d":"12,-79v0,-59,30,-110,86,-110v52,0,70,44,70,83v0,61,-30,110,-86,110v-52,0,-70,-44,-70,-83xm41,-78v0,39,19,57,43,57v26,0,55,-20,55,-87v0,-39,-19,-57,-43,-57v-26,0,-55,20,-55,87","w":180,"k":{"y":9,".":9,",":9}},"p":{"d":"132,-163v-33,0,-72,64,-78,139v61,23,99,-33,99,-97v0,-26,-7,-42,-21,-42xm-6,90r2,-22r23,0r20,-231r-29,0r3,-23r56,0v-2,30,-11,62,-10,87v15,-57,42,-90,78,-90v34,0,44,32,44,68v0,37,-17,125,-97,125v-17,0,-27,-3,-32,-4r-6,68r29,0r-2,22r-79,0","k":{"y":9,".":13,",":13}},"q":{"d":"100,90r3,-22r22,0r18,-161v-19,57,-40,97,-79,97v-26,0,-45,-23,-45,-69v0,-87,60,-145,143,-117r14,0v-7,41,-15,169,-23,250r28,0r-2,22r-79,0xm48,-64v0,28,7,41,21,41v30,0,64,-63,76,-138v-6,-2,-14,-6,-29,-6v-53,0,-68,55,-68,103"},"r":{"d":"14,-163r2,-23r54,0v0,15,-7,48,-8,81v13,-58,28,-91,83,-83r-5,27v-4,-1,-8,-2,-12,-2v-36,0,-60,41,-73,163r-27,0v8,-56,10,-113,14,-163r-28,0","w":146,"k":{"y":6,"s":4,"q":13,"o":6,"k":9,"g":11,"e":6,"d":11,"c":9,"a":11,";":6,".":33,"-":27,",":33}},"s":{"d":"12,-8r4,-47r23,0r-1,29v24,13,79,8,79,-26v0,-37,-96,-27,-96,-82v0,-32,23,-55,69,-55v24,0,43,5,55,9r-3,47r-24,0r2,-28v-23,-13,-79,-1,-71,22v5,43,100,27,95,83v9,65,-89,69,-132,48","w":166,"k":{".":6,",":6}},"t":{"d":"73,4v-69,2,-31,-111,-31,-167r-29,0r1,-23r31,0r4,-46r27,-1r-4,47r53,0r-2,23r-53,0r-10,113v-7,39,38,31,57,18r-2,26v-9,5,-24,10,-42,10","w":126},"u":{"d":"198,-23r-2,23r-57,0r13,-91v-13,48,-47,95,-83,95v-24,0,-35,-17,-35,-48v0,-35,8,-80,12,-119r-27,0r2,-23r55,0v-7,59,-15,107,-15,137v0,19,5,26,16,26v40,0,71,-90,75,-117r7,-46r27,0v-8,58,-12,112,-17,163r29,0","w":213},"v":{"d":"9,-163r2,-23r58,0v-2,45,-17,165,18,165v29,0,58,-47,65,-142r-29,0r2,-23r55,0v-8,104,-34,190,-99,190v-55,0,-46,-99,-43,-167r-29,0","k":{"o":2,"e":2,"a":11,".":33,",":33}},"w":{"d":"13,-163r2,-23r58,0v-3,36,-9,91,-9,113v0,33,6,50,25,50v38,0,56,-83,60,-163r27,0v-3,41,-6,64,-6,113v0,33,5,50,24,50v33,0,55,-56,59,-140r-29,0r2,-23r54,0v-3,97,-25,190,-90,190v-35,0,-44,-36,-43,-73v-3,21,-20,73,-62,73v-73,0,-44,-120,-43,-167r-29,0","w":299,"k":{"h":4,"a":4,".":33,",":33}},"x":{"d":"8,0r2,-21r73,-74r-38,-68r-28,0r2,-23r45,0r41,74r48,-51r-28,0r2,-23r59,0r-2,21r-68,70r39,72r29,0r-3,23r-45,0r-42,-77r-52,54r29,0r-2,23r-61,0","w":193,"k":{"e":-2}},"y":{"d":"-1,92r2,-23v41,19,63,-24,81,-64r-48,-168r-27,0r2,-23r50,0r40,162v15,-50,35,-92,52,-139r-31,0r2,-23r57,0v-2,41,-20,66,-32,98v-59,152,-77,183,-126,183v-10,0,-17,-2,-22,-3","w":193,"k":{"o":4,"e":4,"a":6,".":40,",":40}},"z":{"d":"13,0r2,-21r118,-143v-26,3,-57,0,-84,1r-2,27r-23,0r3,-50r140,0r-1,19r-119,145v29,-2,60,0,90,-1r4,-27r23,0r-5,50r-146,0","w":180,"k":{"e":-2}},"{":{"d":"64,-48r-6,91v-2,22,10,28,31,25r-2,22v-35,1,-54,0,-57,-42v-2,-34,25,-128,-16,-130r2,-23v59,-5,8,-181,81,-172r24,0r-2,23v-57,-10,-38,65,-45,108v-7,41,-30,49,-37,53v8,1,29,11,27,45","w":113},"|":{"d":"28,90r0,-360r24,0r0,360r-24,0","w":79},"}":{"d":"43,-139r7,-90v2,-22,-10,-28,-32,-25r3,-23v35,-2,53,1,56,43v2,34,-23,128,17,130r-2,22v-59,5,-9,180,-81,172r-24,0r2,-22v57,10,38,-65,45,-108v7,-41,29,-50,36,-54v-8,-1,-30,-11,-27,-45","w":113},"~":{"d":"146,-67v-38,0,-91,-50,-108,1r-13,-18v8,-15,20,-31,44,-31v24,-1,58,24,78,24v14,0,23,-13,31,-25r13,18v-11,15,-23,31,-45,31","w":216},"\u00a1":{"d":"24,87r19,-194r25,0r-13,194r-31,0xm83,-172v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v11,0,21,10,21,21","w":106},"\u00a2":{"d":"84,48r3,-44v-42,-6,-61,-33,-61,-84v0,-77,44,-104,79,-109r3,-38r21,0r-4,38v16,0,39,3,49,7r-3,46r-24,0r2,-28v-10,-3,-20,-3,-26,-3r-13,147v20,0,38,-5,53,-14r-3,26v-17,9,-38,11,-52,12r-4,44r-20,0xm90,-22r13,-144v-54,2,-66,136,-13,144"},"\u00a3":{"d":"3,0r2,-23r22,0v18,-24,21,-56,20,-97r-35,0r2,-23r33,0v-1,-49,6,-73,23,-88v16,-28,90,-29,125,-17r-2,52r-24,0r0,-34v-65,-17,-107,22,-94,87r55,0r-2,23r-53,0v0,59,-6,83,-20,97r96,0r5,-35r25,0r-6,58r-172,0"},"\u00a5":{"d":"58,0r2,-23r18,0r4,-36r-51,0r2,-20r51,0r2,-26r-50,0r3,-20r37,0r-49,-104r-21,0r2,-23r69,0r-2,23r-19,0r46,104v18,-38,42,-69,62,-104r-24,0r3,-23r66,0r-2,23r-18,0r-66,104r40,0r-2,20r-50,0r-3,26r50,0r-2,20r-49,0r-4,36r24,0r-2,23r-67,0"},"\u0192":{"d":"198,-251r-1,22v-58,-21,-86,16,-85,86r51,0r-1,23r-51,0v-9,89,2,217,-109,186r2,-22v86,26,68,-92,78,-164r-36,0r2,-23r35,0v-3,-80,37,-132,115,-108"},"\u00a7":{"d":"15,63r3,-46r24,0r-1,28v33,16,92,3,92,-31v0,-46,-107,-46,-107,-109v-1,-28,22,-45,43,-53v-56,-29,-45,-107,44,-109v21,0,42,4,59,9r-2,46r-24,0r1,-28v-31,-10,-83,-2,-83,32v0,45,106,48,106,109v0,29,-21,47,-45,50v58,30,48,110,-46,114v-18,0,-48,-5,-64,-12xm111,-47v63,-33,25,-67,-26,-91v-42,21,-46,54,4,79"},"\u00a4":{"d":"10,-51r20,-21v-25,-28,-25,-80,0,-108r-20,-21r16,-15r20,19v29,-24,80,-24,108,1r21,-20r15,15r-20,21v25,28,25,80,0,108r20,21r-15,15r-21,-20v-27,25,-80,25,-109,1r-19,19xm35,-126v0,36,29,65,65,65v36,0,65,-29,65,-65v0,-36,-29,-65,-65,-65v-36,0,-65,29,-65,65"},"'":{"d":"51,-186r-6,-74v0,-11,4,-20,14,-20v19,-1,14,34,12,48r-4,46v0,5,-2,9,-8,9v-6,0,-8,-4,-8,-9","w":100},"\u201c":{"d":"79,-280r10,17v-19,8,-32,20,-32,34v7,23,22,52,-9,52v-13,0,-25,-10,-25,-31v0,-34,22,-59,56,-72xm152,-280r10,17v-19,8,-33,20,-33,34v0,17,12,20,12,32v0,12,-10,20,-21,20v-13,0,-24,-10,-24,-31v0,-34,22,-59,56,-72","w":159,"k":{"A":13}},"\u00ab":{"d":"15,-91r2,-19r55,-51r15,17r-47,44r40,47r-19,17xm86,-91r2,-19r55,-51r15,17r-47,44r40,47r-19,17","w":173},"\u2013":{"d":"-2,-86r2,-25r180,0r-2,25r-180,0","w":180},"\u00b7":{"d":"28,-103v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":100},"\u00b6":{"d":"80,69r17,-188v-38,0,-63,-28,-63,-61v1,-83,89,-73,170,-72r-28,321r-29,0r26,-297r-38,0r-26,297r-29,0","w":216},"\u201d":{"d":"24,-177r-10,-16v19,-8,33,-20,33,-34v0,-17,-12,-21,-12,-33v0,-12,10,-20,21,-20v13,0,24,11,24,32v0,34,-22,58,-56,71xm97,-177r-10,-16v19,-8,33,-20,33,-34v0,-17,-12,-21,-12,-33v0,-12,10,-20,21,-20v13,0,24,11,24,32v0,34,-22,58,-56,71","w":159,"k":{" ":13}},"\u00bb":{"d":"15,-53r47,-44r-40,-47r19,-17r46,55r-2,19r-54,51xm86,-53r47,-44r-40,-47r19,-17r46,55r-2,19r-54,51","w":173},"\u2026":{"d":"40,-17v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,11,-10,21,-21,21v-11,0,-20,-10,-20,-21xm159,-17v0,-11,10,-20,21,-20v11,0,21,9,21,20v0,11,-10,21,-21,21v-11,0,-21,-10,-21,-21xm279,-17v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-21,-10,-21,-21","w":360},"\u00bf":{"d":"96,-102r24,-12v21,19,19,55,-7,68v-23,19,-73,40,-73,74v0,17,10,38,46,38v18,0,33,-4,45,-8r1,24v-56,21,-121,-1,-121,-53v0,-60,84,-73,95,-112v0,-9,-5,-14,-10,-19xm139,-172v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v11,0,21,10,21,21","w":173},"`":{"d":"70,-214r-54,-49r20,-14r52,49","w":100},"\u00b4":{"d":"33,-228r61,-49r18,14r-63,49","w":100},"\u00af":{"d":"18,-234r1,-22r90,0r-1,22r-90,0","w":100},"\u00a8":{"d":"82,-246v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20xm9,-246v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20","w":100},"\u00b8":{"d":"45,0r20,0v1,8,-6,22,-1,27v16,0,29,10,29,24v0,34,-49,42,-78,29r3,-18v14,7,50,11,50,-8v0,-11,-16,-16,-28,-12","w":100},"\u2014":{"d":"-2,-86r2,-25r360,0r-2,25r-360,0","w":360},"\u00c6":{"d":"120,-134r71,0r8,-95r-24,0xm1,0r2,-23r20,0r139,-229r167,0r-3,57r-24,0r2,-34r-76,0r-8,95r78,0r-1,22r-80,0r-7,89r90,0r5,-35r25,0r-6,58r-167,0r1,-23r23,0r8,-89r-82,0r-53,89r27,0r-1,23r-79,0","w":346},"\u00aa":{"d":"18,-181v1,-64,38,-83,101,-71v-3,15,-7,65,-9,93r18,0r-2,16r-36,0v1,-19,7,-44,7,-57v-5,22,-18,60,-48,60v-25,0,-31,-21,-31,-41xm38,-182v0,15,5,24,13,24v25,0,44,-50,48,-79v-39,-14,-61,23,-61,55","w":129},"\u0141":{"d":"8,0r2,-23r23,0r7,-72r-27,17r3,-27r26,-18r9,-106r-28,0r2,-23r80,0r-2,23r-23,0r-7,86r63,-42r-3,27r-63,42r-8,93r80,0r5,-35r25,0r-6,58r-158,0","w":186},"\u00d8":{"d":"193,-207r-116,173v69,42,137,-9,134,-109v0,-29,-7,-50,-18,-64xm63,-50r116,-171v-69,-36,-132,14,-130,112v0,26,5,45,14,59xm16,20r30,-44v-19,-21,-28,-53,-28,-86v-3,-111,85,-176,176,-134r33,-49r17,11r-34,50v22,21,32,55,32,90v0,114,-92,179,-181,131r-28,42","w":259},"\u0152":{"d":"147,-254r183,2r-3,57r-24,0r2,-34r-83,0r-8,88r84,0r-2,23r-84,0r-9,95r91,0r4,-35r26,0r-6,58r-193,2v-85,0,-107,-59,-107,-113v0,-79,45,-143,129,-143xm175,-23r18,-206v-87,-14,-144,29,-144,117v0,73,50,101,126,89","w":346},"\u00ba":{"d":"18,-190v0,-36,20,-66,57,-66v35,0,46,27,46,50v0,36,-20,66,-57,66v-35,0,-46,-27,-46,-50xm100,-207v0,-21,-12,-31,-27,-31v-17,0,-35,12,-35,49v0,20,12,31,27,31v17,0,35,-12,35,-49","w":129},"\u00e6":{"d":"41,-68v0,28,5,45,24,45v18,0,55,-33,68,-135v-54,-34,-92,32,-92,90xm226,-145v0,-15,-12,-22,-27,-22v-35,0,-46,29,-48,72v44,-5,75,-21,75,-50xm243,-36r-3,27v-16,6,-31,13,-55,13v-52,1,-60,-38,-59,-71v-13,35,-31,71,-68,71v-22,0,-46,-12,-46,-67v0,-103,78,-156,144,-107v30,-34,99,-20,99,22v0,53,-63,71,-104,73v-5,69,57,60,92,39","w":266},"\u0131":{"d":"28,0r15,-163r-29,0r3,-23r56,0r-15,163r28,0r-2,23r-56,0","w":100},"\u0142":{"d":"4,-101r2,-25r34,-22r9,-106r-33,0r2,-23r61,0r-9,109r32,-21r-2,24r-32,22r-11,120r27,0r-2,23r-55,0r11,-123","w":100},"\u00f8":{"d":"47,-45r74,-112v-43,-22,-78,-1,-80,79v0,14,2,25,6,33xm133,-141r-74,111v42,24,78,1,80,-78v0,-14,-2,-25,-6,-33xm4,21r26,-41v-52,-72,13,-209,106,-159r25,-38r15,11r-26,40v53,73,-13,212,-106,159r-25,38","w":180},"\u0153":{"d":"80,-21v41,0,52,-43,52,-98v0,-35,-15,-48,-38,-48v-31,0,-53,27,-53,90v0,29,15,56,39,56xm239,-143v0,-11,-8,-24,-28,-24v-31,0,-52,25,-52,72v38,-4,80,-16,80,-48xm253,-35r-2,27v-37,19,-111,20,-115,-34v-24,74,-124,55,-124,-36v0,-59,25,-111,84,-111v26,0,49,16,54,46v4,-14,21,-46,66,-46v30,0,52,16,52,42v0,53,-68,70,-109,72v-6,67,60,59,94,40","w":280},"\u00df":{"d":"-46,89r2,-22v52,17,67,-12,72,-82r13,-176v4,-63,31,-89,90,-89v54,0,69,28,69,49v0,54,-72,60,-72,93v0,30,79,30,79,83v0,29,-19,57,-66,57v-28,0,-43,-4,-55,-8r2,-45r26,0r-2,26v27,9,67,4,67,-27v0,-40,-80,-34,-80,-82v0,-46,73,-54,73,-94v0,-19,-15,-29,-43,-29v-36,0,-57,19,-60,60r-15,214v-1,64,-46,90,-100,72","w":219},"\u00f7":{"d":"17,-79r0,-24r182,0r0,24r-182,0xm86,-164v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,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,-23,22v-12,0,-21,-10,-21,-22","w":216},"\u00be":{"d":"229,-62v1,-22,6,-47,5,-67r-57,68v15,-2,35,0,52,-1xm207,0r2,-18r15,0r3,-24r-77,0r2,-21r76,-88r33,0r-8,89r26,0r-2,20r-26,0r-2,24r17,0r-1,18r-58,0xm22,-107r1,-21v18,10,87,13,83,-17v2,-15,-17,-27,-50,-25v2,-6,-1,-17,4,-20v31,0,46,-13,46,-28v0,-29,-51,-19,-52,3r-23,0v2,-19,18,-41,56,-41v22,0,44,10,44,35v1,24,-23,35,-41,40v22,1,40,12,40,35v0,40,-67,59,-108,39xm66,8r165,-279r15,11r-165,279","w":300},"\u00bc":{"d":"229,-62v1,-22,6,-47,5,-67r-57,68v15,-2,35,0,52,-1xm207,0r2,-18r15,0r3,-24r-77,0r2,-21r76,-88r33,0r-8,89r26,0r-2,20r-26,0r-2,24r17,0r-1,18r-58,0xm66,8r165,-279r15,11r-165,279xm27,-102r2,-18r30,0r11,-113v-11,9,-29,17,-42,25r-6,-16v24,-10,36,-32,73,-29r-13,133r32,0r-2,18r-85,0","w":300},"\u00b9":{"d":"27,-102r2,-18r30,0r11,-113v-11,9,-29,17,-42,25r-6,-16v24,-10,36,-32,73,-29r-13,133r32,0r-2,18r-85,0","w":129},"\u00d7":{"d":"91,-91r-65,-66r16,-16r66,65r66,-65r16,16r-65,66r65,65r-16,17r-66,-66r-66,66r-16,-17","w":216},"\u00ae":{"d":"89,-51r0,-150v50,0,113,-8,113,43v0,27,-18,39,-39,43r40,64r-28,0r-39,-63r-23,0r0,63r-24,0xm113,-178r0,41v27,0,69,3,64,-22v1,-24,-39,-18,-64,-19xm13,-126v0,-72,59,-131,131,-131v72,0,131,59,131,131v0,72,-59,131,-131,131v-72,0,-131,-59,-131,-131xm37,-126v0,60,48,108,107,108v59,0,107,-48,107,-108v0,-60,-48,-108,-107,-108v-59,0,-107,48,-107,108","w":288},"\u00de":{"d":"155,-140v0,-42,-33,-49,-79,-46r-9,103v48,6,88,-9,88,-57xm8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-1,20v63,-4,105,15,105,68v0,46,-42,93,-118,80r-4,38r29,0r-2,23r-81,0"},"\u00a6":{"d":"28,63r0,-126r24,0r0,126r-24,0xm28,-117r0,-126r24,0r0,126r-24,0","w":79},"\u00d0":{"d":"8,0r2,-23r23,0r9,-97r-28,0r2,-23r28,0r7,-86r-28,0r2,-23r101,0v90,0,119,50,119,106v0,90,-52,146,-142,146r-95,0xm71,-120r-9,97v97,8,152,-30,152,-122v0,-71,-54,-91,-134,-84r-7,86r56,0r-2,23r-56,0","w":259},"\u00bd":{"d":"66,8r164,-279r16,11r-165,279xm27,-102r2,-18r30,0r11,-113v-11,9,-29,17,-42,25r-6,-16v24,-10,36,-32,73,-29r-13,133r32,0r-2,18r-85,0xm279,-114v-2,44,-56,71,-80,97v22,-2,52,0,77,-1r-1,18r-107,0r2,-18v28,-25,84,-59,84,-94v0,-38,-53,-19,-55,3r-22,0v3,-18,16,-45,57,-45v29,0,45,18,45,40","w":300},"\u00e7":{"d":"118,-136r1,-29v-53,-12,-78,30,-78,84v0,63,55,71,95,46r-3,26v-10,5,-24,12,-42,13r-3,23v18,-1,31,9,31,24v1,35,-49,42,-78,29r3,-18v14,7,50,11,51,-8v0,-11,-16,-16,-28,-12r5,-38v-100,-20,-69,-193,31,-193v13,0,30,2,42,6r-4,47r-23,0","w":153},"\u00f0":{"d":"41,-78v0,39,19,57,43,57v26,0,55,-20,55,-87v0,-39,-19,-57,-43,-57v-26,0,-55,20,-55,87xm62,-227r33,-18v-9,-9,-18,-16,-27,-21r21,-14v10,7,19,14,27,23r32,-18r13,13r-33,18v35,44,40,96,40,133v0,66,-30,115,-86,115v-52,0,-70,-44,-70,-83v0,-61,32,-110,81,-110v19,-1,35,7,46,26v-4,-23,-16,-48,-32,-69r-33,18","w":180},"\u00b1":{"d":"96,-41r0,-58r-79,0r0,-25r79,0r0,-58r24,0r0,58r79,0r0,25r-79,0r0,58r-24,0xm17,0r0,-24r182,0r0,24r-182,0","w":216},"\u00c7":{"d":"179,-23r4,-35r25,0r-5,52v-15,5,-39,10,-59,11v0,7,-6,19,-1,22v16,0,29,10,29,24v1,35,-49,42,-78,29r3,-18v14,7,50,11,50,-8v1,-11,-15,-16,-27,-12r4,-37v-67,-4,-106,-47,-106,-116v0,-77,42,-146,136,-146v20,0,44,4,65,10r-3,52r-25,0r0,-33v-85,-26,-142,36,-142,117v0,76,62,106,130,88","w":233},"\u00fe":{"d":"132,-163v-33,0,-72,64,-78,139v61,23,99,-33,99,-97v0,-26,-7,-42,-21,-42xm-6,90r2,-22r23,0r28,-322r-33,0r2,-23r61,0r-18,178v15,-57,42,-90,78,-90v34,0,44,32,44,68v0,37,-17,125,-97,125v-17,0,-27,-3,-32,-4r-6,68r29,0r-2,22r-79,0"},"\u00a9":{"d":"183,-103r29,0v-6,35,-32,55,-67,55v-42,0,-70,-30,-70,-78v0,-88,125,-110,136,-25r-29,0v-3,-18,-14,-29,-35,-29v-28,0,-45,22,-45,54v0,55,71,77,81,23xm13,-126v0,-72,59,-131,131,-131v72,0,131,59,131,131v0,72,-59,131,-131,131v-72,0,-131,-59,-131,-131xm37,-126v0,60,48,108,107,108v59,0,107,-48,107,-108v0,-60,-48,-108,-107,-108v-59,0,-107,48,-107,108","w":288},"\u00ac":{"d":"17,-115r0,-24r182,0r0,100r-24,0r0,-76r-158,0","w":216},"\u00b2":{"d":"120,-216v-1,45,-55,72,-79,97v22,-2,52,0,77,-1r-2,18r-106,0r1,-18v28,-25,85,-59,85,-95v0,-37,-53,-19,-55,4r-23,0v3,-18,16,-45,57,-45v29,0,45,18,45,40","w":129},"\u00b3":{"d":"10,-107r2,-21v18,10,87,13,83,-17v2,-15,-17,-27,-50,-25r1,-20v31,1,50,-12,49,-28v-3,-29,-51,-19,-52,3r-23,0v2,-19,18,-41,56,-41v22,0,44,10,44,35v1,24,-23,35,-41,40v22,1,40,12,40,35v0,41,-68,59,-109,39","w":129},"\u2122":{"d":"59,-102r0,-126r-44,0r0,-24r119,0r0,24r-44,0r0,126r-31,0xm302,-102r-1,-118r-44,118r-20,0r-45,-118r0,118r-29,0r0,-150r45,0r39,105r40,-105r44,0r0,150r-29,0","w":356},"\u00b0":{"d":"29,-205v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,51,-51,51v-28,0,-51,-23,-51,-51xm47,-205v0,18,15,33,33,33v18,0,33,-15,33,-33v0,-18,-15,-33,-33,-33v-18,0,-33,15,-33,33","w":144},"\u00b5":{"d":"198,-23r-2,23r-57,0r13,-91v-17,53,-52,111,-101,89r-10,92r-24,0v9,-85,18,-173,29,-253r-27,0r2,-23r55,0v-7,59,-15,107,-15,137v0,19,5,26,16,26v40,0,71,-90,75,-117r7,-46r27,0v-8,58,-12,112,-17,163r29,0","w":213},"\u00c1":{"d":"-1,0r2,-23r22,0r106,-229r33,0r65,229r26,0r-1,23r-79,0r1,-23r22,0r-20,-76r-90,0r-34,76r28,0r-2,23r-79,0xm96,-122r74,0r-28,-107xm117,-273r60,-48r18,14r-63,49","w":266},"\u00c2":{"d":"-1,0r2,-23r22,0r106,-229r33,0r65,229r26,0r-1,23r-79,0r1,-23r22,0r-20,-76r-90,0r-34,76r28,0r-2,23r-79,0xm96,-122r74,0r-28,-107xm89,-281r50,-40r24,0r44,40r-18,14r-39,-34r-45,34","w":266},"\u00c4":{"d":"-1,0r2,-23r22,0r106,-229r33,0r65,229r26,0r-1,23r-79,0r1,-23r22,0r-20,-76r-90,0r-34,76r28,0r-2,23r-79,0xm96,-122r74,0r-28,-107xm166,-290v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-9,19,-20,19v-11,0,-19,-8,-19,-19xm92,-290v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19","w":266},"\u00c0":{"d":"-1,0r2,-23r22,0r106,-229r33,0r65,229r26,0r-1,23r-79,0r1,-23r22,0r-20,-76r-90,0r-34,76r28,0r-2,23r-79,0xm96,-122r74,0r-28,-107xm153,-258r-53,-49r20,-14r52,48","w":266},"\u00c5":{"d":"-1,0r2,-23r22,0r106,-229r33,0r65,229r26,0r-1,23r-79,0r1,-23r22,0r-20,-76r-90,0r-34,76r28,0r-2,23r-79,0xm96,-122r74,0r-28,-107xm147,-275v22,1,25,-39,3,-38v-21,-1,-26,37,-3,38xm151,-329v24,0,32,17,32,32v0,12,-7,38,-37,38v-19,0,-32,-11,-32,-33v0,-20,14,-37,37,-37","w":266},"\u00c3":{"d":"-1,0r2,-23r22,0r106,-229r33,0r65,229r26,0r-1,23r-79,0r1,-23r22,0r-20,-76r-90,0r-34,76r28,0r-2,23r-79,0xm96,-122r74,0r-28,-107xm210,-292v-22,45,-57,18,-85,6v-8,0,-14,6,-18,18r-21,-9v6,-17,21,-32,39,-32v28,0,51,39,67,4","w":266},"\u00c9":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r164,0r-4,57r-23,0r1,-34r-83,0r-8,88r85,0r-2,23r-84,0r-9,95r91,0r4,-35r26,0r-6,58r-169,0xm86,-273r61,-48r18,14r-63,49","w":206},"\u00ca":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r164,0r-4,57r-23,0r1,-34r-83,0r-8,88r85,0r-2,23r-84,0r-9,95r91,0r4,-35r26,0r-6,58r-169,0xm59,-281r50,-40r24,0r44,40r-19,14r-38,-34r-45,34","w":206},"\u00cb":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r164,0r-4,57r-23,0r1,-34r-83,0r-8,88r85,0r-2,23r-84,0r-9,95r91,0r4,-35r26,0r-6,58r-169,0xm136,-290v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-9,19,-20,19v-11,0,-19,-8,-19,-19xm62,-290v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-9,19,-20,19v-11,0,-19,-8,-19,-19","w":206},"\u00c8":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r164,0r-4,57r-23,0r1,-34r-83,0r-8,88r85,0r-2,23r-84,0r-9,95r91,0r4,-35r26,0r-6,58r-169,0xm123,-258r-54,-49r20,-14r52,48","w":206},"\u00cd":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-18,206r29,0r-2,23r-81,0xm40,-273r60,-48r19,14r-63,49","w":113},"\u00ce":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-18,206r29,0r-2,23r-81,0xm12,-281r50,-40r25,0r43,40r-18,14r-39,-34r-45,34","w":113},"\u00cf":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-18,206r29,0r-2,23r-81,0xm89,-290v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19xm15,-290v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19","w":113},"\u00cc":{"d":"8,0r2,-23r23,0r18,-206r-28,0r2,-23r80,0r-2,23r-23,0r-18,206r29,0r-2,23r-81,0xm77,-258r-54,-49r20,-14r52,48","w":113},"\u00d1":{"d":"8,0r2,-23r22,0r19,-206r-29,0r2,-23r51,0r126,208r15,-185r-28,0r2,-23r76,0r-2,23r-23,0r-21,229r-23,0r-116,-187v-5,-6,-6,-14,-10,-20r-14,184r29,0r-2,23r-76,0xm213,-292v-22,45,-57,18,-85,6v-8,0,-14,6,-18,18r-20,-9v6,-17,21,-32,39,-32v28,0,50,38,66,4","w":273},"\u00d3":{"d":"18,-110v0,-90,50,-147,122,-147v73,0,102,54,102,115v0,90,-51,147,-123,147v-73,0,-101,-54,-101,-115xm211,-143v0,-64,-33,-90,-73,-90v-52,0,-89,44,-89,124v0,65,33,90,73,90v53,0,89,-44,89,-124xm113,-273r61,-48r18,14r-63,49","w":259},"\u00d4":{"d":"18,-110v0,-90,50,-147,122,-147v73,0,102,54,102,115v0,90,-51,147,-123,147v-73,0,-101,-54,-101,-115xm211,-143v0,-64,-33,-90,-73,-90v-52,0,-89,44,-89,124v0,65,33,90,73,90v53,0,89,-44,89,-124xm85,-281r50,-40r25,0r43,40r-18,14r-39,-34r-45,34","w":259},"\u00d6":{"d":"18,-110v0,-90,50,-147,122,-147v73,0,102,54,102,115v0,90,-51,147,-123,147v-73,0,-101,-54,-101,-115xm211,-143v0,-64,-33,-90,-73,-90v-52,0,-89,44,-89,124v0,65,33,90,73,90v53,0,89,-44,89,-124xm162,-290v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19xm89,-290v0,-11,8,-20,19,-20v11,0,19,9,19,20v0,11,-8,19,-19,19v-11,0,-19,-8,-19,-19","w":259},"\u00d2":{"d":"18,-110v0,-90,50,-147,122,-147v73,0,102,54,102,115v0,90,-51,147,-123,147v-73,0,-101,-54,-101,-115xm211,-143v0,-64,-33,-90,-73,-90v-52,0,-89,44,-89,124v0,65,33,90,73,90v53,0,89,-44,89,-124xm150,-258r-54,-49r20,-14r52,48","w":259},"\u00d5":{"d":"18,-110v0,-90,50,-147,122,-147v73,0,102,54,102,115v0,90,-51,147,-123,147v-73,0,-101,-54,-101,-115xm211,-143v0,-64,-33,-90,-73,-90v-52,0,-89,44,-89,124v0,65,33,90,73,90v53,0,89,-44,89,-124xm206,-292v-22,45,-57,18,-85,6v-8,0,-14,6,-18,18r-20,-9v6,-17,21,-32,39,-32v28,0,50,38,66,4","w":259},"\u0160":{"d":"15,-7r3,-56r23,0r0,36v45,17,113,6,113,-44v0,-57,-128,-39,-128,-114v0,-41,32,-72,91,-72v27,0,44,6,63,11r-2,51r-24,0r0,-33v-36,-14,-97,-5,-97,39v0,59,128,32,128,115v0,75,-94,95,-170,67xm103,-265r-44,-40r18,-15r39,35r45,-35r16,15r-50,40r-24,0"},"\u00da":{"d":"35,-80r13,-149r-29,0r2,-23r81,0r-3,23r-22,0r-13,147v-3,39,9,63,59,63v43,0,67,-21,71,-68r13,-142r-29,0r2,-23r77,0r-2,23r-23,0v-16,104,16,234,-114,234v-57,0,-88,-24,-83,-85xm113,-273r61,-48r18,14r-63,49","w":259},"\u00db":{"d":"35,-80r13,-149r-29,0r2,-23r81,0r-3,23r-22,0r-13,147v-3,39,9,63,59,63v43,0,67,-21,71,-68r13,-142r-29,0r2,-23r77,0r-2,23r-23,0v-16,104,16,234,-114,234v-57,0,-88,-24,-83,-85xm85,-281r50,-40r25,0r43,40r-18,14r-39,-34r-45,34","w":259},"\u00dc":{"d":"35,-80r13,-149r-29,0r2,-23r81,0r-3,23r-22,0r-13,147v-3,39,9,63,59,63v43,0,67,-21,71,-68r13,-142r-29,0r2,-23r77,0r-2,23r-23,0v-16,104,16,234,-114,234v-57,0,-88,-24,-83,-85xm162,-290v0,-11,9,-20,20,-20v11,0,19,9,19,20v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19xm89,-290v0,-11,8,-20,19,-20v11,0,19,9,19,20v0,11,-8,19,-19,19v-11,0,-19,-8,-19,-19","w":259},"\u00d9":{"d":"35,-80r13,-149r-29,0r2,-23r81,0r-3,23r-22,0r-13,147v-3,39,9,63,59,63v43,0,67,-21,71,-68r13,-142r-29,0r2,-23r77,0r-2,23r-23,0v-16,104,16,234,-114,234v-57,0,-88,-24,-83,-85xm150,-258r-54,-49r20,-14r52,48","w":259},"\u00dd":{"d":"73,0r2,-23r23,0r7,-80r-73,-126r-26,0r1,-23r83,0r-2,23r-23,0r57,102r75,-102r-30,0r2,-23r80,0r-1,23r-23,0r-92,124r-7,82r29,0r-2,23r-80,0xm103,-273r61,-48r18,14r-63,49","w":240},"\u0178":{"d":"73,0r2,-23r23,0r7,-80r-73,-126r-26,0r1,-23r83,0r-2,23r-23,0r57,102r75,-102r-30,0r2,-23r80,0r-1,23r-23,0r-92,124r-7,82r29,0r-2,23r-80,0xm153,-290v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-9,19,-20,19v-11,0,-19,-8,-19,-19xm79,-290v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-9,19,-20,19v-11,0,-19,-8,-19,-19","w":240},"\u017d":{"d":"6,0r3,-21r167,-209v-37,2,-78,0,-117,1r-5,35r-25,0r4,-58r180,0r-1,20r-147,187v-7,10,-16,16,-21,23v42,-3,86,0,129,-1r4,-35r26,0r-6,58r-191,0xm113,-265r-44,-40r18,-15r39,35r45,-35r16,15r-50,40r-24,0","w":219},"\u00e1":{"d":"19,-64v-1,-98,59,-143,140,-117r13,0v-5,26,-12,106,-15,158r27,0r-2,23r-54,0v2,-31,11,-71,13,-94v-9,34,-30,98,-75,98v-31,0,-47,-28,-47,-68xm48,-64v0,27,7,41,21,41v38,0,66,-83,72,-139v-62,-23,-93,40,-93,98xm83,-228r61,-49r18,14r-63,49"},"\u00e2":{"d":"19,-64v-1,-98,59,-143,140,-117r13,0v-5,26,-12,106,-15,158r27,0r-2,23r-54,0v2,-31,11,-71,13,-94v-9,34,-30,98,-75,98v-31,0,-47,-28,-47,-68xm48,-64v0,27,7,41,21,41v38,0,66,-83,72,-139v-62,-23,-93,40,-93,98xm55,-237r50,-40r25,0r44,40r-19,15r-39,-35r-45,35"},"\u00e4":{"d":"19,-64v-1,-98,59,-143,140,-117r13,0v-5,26,-12,106,-15,158r27,0r-2,23r-54,0v2,-31,11,-71,13,-94v-9,34,-30,98,-75,98v-31,0,-47,-28,-47,-68xm48,-64v0,27,7,41,21,41v38,0,66,-83,72,-139v-62,-23,-93,40,-93,98xm132,-246v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20xm59,-246v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20"},"\u00e0":{"d":"19,-64v-1,-98,59,-143,140,-117r13,0v-5,26,-12,106,-15,158r27,0r-2,23r-54,0v2,-31,11,-71,13,-94v-9,34,-30,98,-75,98v-31,0,-47,-28,-47,-68xm48,-64v0,27,7,41,21,41v38,0,66,-83,72,-139v-62,-23,-93,40,-93,98xm120,-214r-54,-49r20,-14r52,49"},"\u00e5":{"d":"19,-64v-1,-98,59,-143,140,-117r13,0v-5,26,-12,106,-15,158r27,0r-2,23r-54,0v2,-31,11,-71,13,-94v-9,34,-30,98,-75,98v-31,0,-47,-28,-47,-68xm48,-64v0,27,7,41,21,41v38,0,66,-83,72,-139v-62,-23,-93,40,-93,98xm113,-227v22,1,25,-39,4,-38v-20,-1,-27,36,-4,38xm117,-281v24,0,32,18,32,33v0,12,-6,37,-36,37v-19,0,-32,-10,-32,-32v0,-20,13,-38,36,-38"},"\u00e3":{"d":"19,-64v-1,-98,59,-143,140,-117r13,0v-5,26,-12,106,-15,158r27,0r-2,23r-54,0v2,-31,11,-71,13,-94v-9,34,-30,98,-75,98v-31,0,-47,-28,-47,-68xm48,-64v0,27,7,41,21,41v38,0,66,-83,72,-139v-62,-23,-93,40,-93,98xm176,-248v-22,46,-58,20,-85,6v-8,0,-14,7,-18,19r-20,-9v6,-17,21,-32,39,-32v28,0,50,38,66,4"},"\u00e9":{"d":"12,-80v0,-59,32,-108,91,-109v36,0,51,21,51,42v0,44,-50,68,-113,75v-1,63,60,59,99,35r-3,27v-9,5,-30,14,-56,14v-46,0,-69,-24,-69,-84xm126,-145v0,-10,-9,-22,-28,-22v-34,0,-53,35,-57,75v51,-6,85,-21,85,-53xm67,-228r60,-49r18,14r-63,49","w":166},"\u00ea":{"d":"12,-80v0,-59,32,-108,91,-109v36,0,51,21,51,42v0,44,-50,68,-113,75v-1,63,60,59,99,35r-3,27v-9,5,-30,14,-56,14v-46,0,-69,-24,-69,-84xm126,-145v0,-10,-9,-22,-28,-22v-34,0,-53,35,-57,75v51,-6,85,-21,85,-53xm39,-237r50,-40r24,0r44,40r-18,15r-39,-35r-45,35","w":166},"\u00eb":{"d":"12,-80v0,-59,32,-108,91,-109v36,0,51,21,51,42v0,44,-50,68,-113,75v-1,63,60,59,99,35r-3,27v-9,5,-30,14,-56,14v-46,0,-69,-24,-69,-84xm126,-145v0,-10,-9,-22,-28,-22v-34,0,-53,35,-57,75v51,-6,85,-21,85,-53xm116,-246v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20xm42,-246v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20","w":166},"\u00e8":{"d":"12,-80v0,-59,32,-108,91,-109v36,0,51,21,51,42v0,44,-50,68,-113,75v-1,63,60,59,99,35r-3,27v-9,5,-30,14,-56,14v-46,0,-69,-24,-69,-84xm126,-145v0,-10,-9,-22,-28,-22v-34,0,-53,35,-57,75v51,-6,85,-21,85,-53xm103,-214r-53,-49r19,-14r53,49","w":166},"\u00ed":{"d":"28,0r15,-163r-29,0r3,-23r56,0r-15,163r28,0r-2,23r-56,0xm33,-228r61,-49r18,14r-63,49","w":100},"\u00ee":{"d":"28,0r15,-163r-29,0r3,-23r56,0r-15,163r28,0r-2,23r-56,0xm5,-237r50,-40r25,0r43,40r-18,15r-39,-35r-45,35","w":100},"\u00ef":{"d":"28,0r15,-163r-29,0r3,-23r56,0r-15,163r28,0r-2,23r-56,0xm82,-246v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20xm9,-246v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20","w":100},"\u00ec":{"d":"28,0r15,-163r-29,0r3,-23r56,0r-15,163r28,0r-2,23r-56,0xm70,-214r-54,-49r20,-14r52,49","w":100},"\u00f1":{"d":"13,-163r2,-23r57,0r-13,91v13,-48,46,-94,82,-94v24,0,36,15,36,47v0,30,-7,77,-12,119r27,0r-2,23r-55,0v7,-59,15,-114,15,-137v0,-20,-5,-26,-16,-26v-40,0,-71,90,-75,117r-7,46r-28,0v8,-58,13,-112,18,-163r-29,0xm172,-248v-22,46,-58,20,-85,6v-8,0,-14,7,-18,19r-20,-9v6,-17,21,-32,39,-32v28,0,50,38,66,4","w":206},"\u00f3":{"d":"12,-79v0,-59,30,-110,86,-110v52,0,70,44,70,83v0,61,-30,110,-86,110v-52,0,-70,-44,-70,-83xm41,-78v0,39,19,57,43,57v26,0,55,-20,55,-87v0,-39,-19,-57,-43,-57v-26,0,-55,20,-55,87xm73,-228r61,-49r18,14r-63,49","w":180},"\u00f4":{"d":"12,-79v0,-59,30,-110,86,-110v52,0,70,44,70,83v0,61,-30,110,-86,110v-52,0,-70,-44,-70,-83xm41,-78v0,39,19,57,43,57v26,0,55,-20,55,-87v0,-39,-19,-57,-43,-57v-26,0,-55,20,-55,87xm45,-237r50,-40r25,0r43,40r-18,15r-39,-35r-45,35","w":180},"\u00f6":{"d":"12,-79v0,-59,30,-110,86,-110v52,0,70,44,70,83v0,61,-30,110,-86,110v-52,0,-70,-44,-70,-83xm41,-78v0,39,19,57,43,57v26,0,55,-20,55,-87v0,-39,-19,-57,-43,-57v-26,0,-55,20,-55,87xm122,-246v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20xm49,-246v0,-11,8,-19,19,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-19,-9,-19,-20","w":180},"\u00f2":{"d":"12,-79v0,-59,30,-110,86,-110v52,0,70,44,70,83v0,61,-30,110,-86,110v-52,0,-70,-44,-70,-83xm41,-78v0,39,19,57,43,57v26,0,55,-20,55,-87v0,-39,-19,-57,-43,-57v-26,0,-55,20,-55,87xm110,-214r-54,-49r20,-14r52,49","w":180},"\u00f5":{"d":"12,-79v0,-59,30,-110,86,-110v52,0,70,44,70,83v0,61,-30,110,-86,110v-52,0,-70,-44,-70,-83xm41,-78v0,39,19,57,43,57v26,0,55,-20,55,-87v0,-39,-19,-57,-43,-57v-26,0,-55,20,-55,87xm166,-248v-22,46,-58,20,-85,6v-8,0,-14,7,-18,19r-20,-9v6,-17,21,-32,39,-32v28,0,50,38,66,4","w":180},"\u0161":{"d":"12,-8r4,-47r23,0r-1,29v24,13,79,8,79,-26v0,-37,-96,-27,-96,-82v0,-32,23,-55,69,-55v24,0,43,5,55,9r-3,47r-24,0r2,-28v-23,-13,-79,-1,-71,22v5,43,100,27,95,83v9,65,-89,69,-132,48xm86,-220r-44,-41r19,-14r39,35r45,-35r16,14r-50,41r-25,0","w":166},"\u00fa":{"d":"198,-23r-2,23r-57,0r13,-91v-13,48,-47,95,-83,95v-24,0,-35,-17,-35,-48v0,-35,8,-80,12,-119r-27,0r2,-23r55,0v-7,59,-15,107,-15,137v0,19,5,26,16,26v40,0,71,-90,75,-117r7,-46r27,0v-8,58,-12,112,-17,163r29,0xm90,-228r60,-49r19,14r-63,49","w":213},"\u00fb":{"d":"198,-23r-2,23r-57,0r13,-91v-13,48,-47,95,-83,95v-24,0,-35,-17,-35,-48v0,-35,8,-80,12,-119r-27,0r2,-23r55,0v-7,59,-15,107,-15,137v0,19,5,26,16,26v40,0,71,-90,75,-117r7,-46r27,0v-8,58,-12,112,-17,163r29,0xm58,-237r50,-40r24,0r44,40r-18,15r-39,-35r-45,35","w":213},"\u00fc":{"d":"198,-23r-2,23r-57,0r13,-91v-13,48,-47,95,-83,95v-24,0,-35,-17,-35,-48v0,-35,8,-80,12,-119r-27,0r2,-23r55,0v-7,59,-15,107,-15,137v0,19,5,26,16,26v40,0,71,-90,75,-117r7,-46r27,0v-8,58,-12,112,-17,163r29,0xm135,-246v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20xm61,-246v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20","w":213},"\u00f9":{"d":"198,-23r-2,23r-57,0r13,-91v-13,48,-47,95,-83,95v-24,0,-35,-17,-35,-48v0,-35,8,-80,12,-119r-27,0r2,-23r55,0v-7,59,-15,107,-15,137v0,19,5,26,16,26v40,0,71,-90,75,-117r7,-46r27,0v-8,58,-12,112,-17,163r29,0xm127,-214r-54,-49r20,-14r52,49","w":213},"\u00fd":{"d":"-1,92r2,-23v41,19,63,-24,81,-64r-48,-168r-27,0r2,-23r50,0r40,162v15,-50,35,-92,52,-139r-31,0r2,-23r57,0v-2,41,-20,66,-32,98v-59,152,-77,183,-126,183v-10,0,-17,-2,-22,-3xm80,-228r60,-49r19,14r-63,49","w":193},"\u00ff":{"d":"-1,92r2,-23v41,19,63,-24,81,-64r-48,-168r-27,0r2,-23r50,0r40,162v15,-50,35,-92,52,-139r-31,0r2,-23r57,0v-2,41,-20,66,-32,98v-59,152,-77,183,-126,183v-10,0,-17,-2,-22,-3xm122,-246v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20xm48,-246v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20","w":193},"\u017e":{"d":"13,0r2,-21r118,-143v-26,3,-57,0,-84,1r-2,27r-23,0r3,-50r140,0r-1,19r-119,145v29,-2,60,0,90,-1r4,-27r23,0r-5,50r-146,0xm85,-220r-43,-41r18,-14r39,35r45,-35r16,14r-50,41r-25,0","w":180},"\u00a0":{"w":100,"k":{"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991, 1992, 1995 Adobe Systems Incorporated.  All Rights
 * Reserved.PMN Caecilia is a trademark of Linotype-Hell AG and/or its
 * subsidiaries.
 * 
 * Full name:
 * Caecilia-BoldItalic
 */
Cufon.registerFont({"w":213,"face":{"font-family":"PMN Caecilia","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-42 -336 387 98","underline-thickness":"18","underline-position":"-27","slope":"-5","stemh":"30","stemv":"38","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":106,"k":{"Y":40,"W":13,"V":33,"T":13,"A":13}},"!":{"d":"32,-81r13,-196r44,0r-21,196r-36,0xm18,-19v0,-16,11,-26,27,-26v18,0,26,11,26,24v0,15,-10,25,-28,25v-11,0,-25,-4,-25,-23","w":106},"\"":{"d":"121,-161v-25,-5,-14,-78,-21,-100v0,-11,10,-20,21,-20v39,0,13,66,13,107v0,10,-8,13,-13,13xm53,-161v-25,-5,-14,-78,-21,-100v0,-11,10,-20,21,-20v39,0,13,66,13,107v0,10,-8,13,-13,13","w":173},"#":{"d":"126,-101r7,-50r-46,0r-7,50r46,0xm40,0r10,-76r-32,0r4,-25r32,0r7,-50r-33,0r4,-25r32,0r11,-76r27,0r-11,76r45,0r11,-76r27,0r-11,76r32,0r-3,25r-33,0r-7,50r33,0r-4,25r-32,0r-11,76r-26,0r10,-76r-45,0r-11,76r-26,0"},"$":{"d":"14,-7r2,-61r30,0r0,34v5,2,21,8,40,8r8,-90v-32,-9,-72,-21,-72,-68v0,-39,33,-73,84,-73r4,-44r29,0r-4,44v21,0,44,6,59,11r-2,57r-31,0r1,-33v-7,-3,-20,-6,-29,-6r-7,80v59,20,73,41,73,78v0,48,-41,73,-86,75r-5,48r-29,0r4,-48v-28,0,-57,-6,-69,-12xm97,-155r6,-73v-22,3,-40,12,-40,38v0,21,16,29,34,35xm122,-108r-6,81v17,-1,43,-11,43,-44v0,-21,-17,-32,-37,-37"},"%":{"d":"158,-48v0,-36,22,-64,61,-64v34,0,51,24,51,53v0,36,-22,64,-60,64v-26,0,-52,-14,-52,-53xm217,-86v-35,-1,-45,64,-6,66v32,3,43,-64,6,-66xm84,-232v-34,0,-45,64,-6,66v32,3,43,-64,6,-66xm25,-194v0,-36,22,-63,61,-63v34,0,51,24,51,53v0,36,-22,64,-60,64v-26,0,-52,-15,-52,-54xm14,8r245,-285r20,17r-245,285","w":293},"&":{"d":"119,-143r66,72v11,-12,16,-41,16,-54r-24,0r3,-29r78,0r-2,29r-23,0v-2,32,-15,63,-28,75v9,15,24,23,50,20r-3,30v-35,1,-49,2,-69,-26v-16,15,-41,32,-83,32v-60,0,-86,-36,-86,-72v0,-42,28,-59,60,-77v-49,-37,-33,-116,40,-115v42,0,58,24,58,48v0,35,-32,54,-53,67xm79,-201v0,19,15,32,23,40v21,-14,39,-26,39,-45v0,-12,-7,-25,-29,-25v-19,0,-33,10,-33,30xm163,-47r-72,-77v-12,7,-39,22,-39,53v-1,53,82,62,111,24","w":273},"\u2019":{"d":"34,-161r-12,-22v19,-8,35,-18,35,-37v-6,-24,-33,-61,12,-61v20,0,30,18,30,41v0,44,-38,70,-65,79","w":106,"k":{"v":9,"t":13,"s":40,"d":40,"\u2019":28}},"(":{"d":"113,-285r26,20v-76,90,-99,236,-32,347r-27,16v-32,-44,-55,-110,-55,-165v0,-90,33,-154,88,-218","w":119},")":{"d":"6,98r-25,-19v76,-90,99,-236,32,-347r27,-17v32,44,55,110,55,165v0,90,-34,154,-89,218","w":119},"*":{"d":"26,-184r-12,-23r45,-16r-41,-18r15,-23r32,31r-2,-44r26,0r-11,44r35,-29r14,23r-45,16r41,18r-15,23r-32,-31r3,46r-26,0r11,-46","w":126},"+":{"d":"90,0r0,-76r-76,0r0,-30r76,0r0,-76r30,0r0,76r76,0r0,30r-76,0r0,76r-30,0","w":216},",":{"d":"13,72r-13,-22v19,-8,35,-18,35,-37v-5,-23,-32,-61,12,-61v20,0,30,17,30,40v0,44,-37,71,-64,80","w":106,"k":{"\u201d":40,"\u2019":40," ":13}},"-":{"d":"21,-85r2,-34r92,0r-2,34r-92,0","w":140},".":{"d":"20,-19v0,-16,11,-26,27,-26v18,0,26,11,26,24v0,15,-10,25,-28,25v-11,0,-25,-4,-25,-23","w":106,"k":{"\u201d":40,"\u2019":40," ":-13}},"\/":{"d":"-28,18r162,-299r27,11r-162,299","w":133},"0":{"d":"14,-107v0,-63,26,-150,103,-150v66,0,82,55,82,114v0,51,-13,148,-103,148v-70,0,-82,-72,-82,-112xm52,-111v0,49,12,85,47,85v54,0,62,-78,62,-115v0,-49,-14,-85,-46,-85v-51,0,-63,77,-63,115"},"1":{"d":"42,0r3,-30r46,0r17,-191v-16,13,-44,29,-63,42r-15,-24r83,-49r36,0r-19,222r50,0r-2,30r-136,0"},"2":{"d":"12,0r2,-30v24,-16,139,-103,139,-161v0,-20,-14,-35,-40,-35v-31,0,-44,21,-47,42r-38,0v0,-9,14,-73,89,-73v40,0,74,23,74,67v0,63,-95,132,-128,159v40,-3,82,0,123,-1r-3,32r-171,0"},"3":{"d":"13,-10r2,-34v41,23,134,34,134,-29v0,-41,-54,-42,-81,-42r2,-29v44,2,80,-21,80,-50v0,-17,-10,-32,-36,-32v-28,0,-42,15,-47,36r-36,0v9,-49,44,-67,87,-67v35,0,70,18,70,57v0,37,-28,59,-66,67v35,0,65,22,65,59v0,37,-27,79,-100,79v-28,0,-60,-6,-74,-15"},"4":{"d":"126,-102r10,-119r-94,120v25,-2,57,0,84,-1xm93,0r3,-30r23,0r4,-43r-116,0r3,-32r117,-147r48,0r-13,150r43,0r-2,29r-44,0r-4,43r28,0r-2,30r-88,0"},"5":{"d":"35,-131r11,-121r138,0r-3,32r-101,0r-6,58v49,1,110,11,110,77v0,28,-13,90,-103,90v-23,0,-41,-4,-62,-10r3,-33v4,3,32,12,58,12v51,0,64,-32,64,-55v0,-42,-40,-47,-109,-50"},"6":{"d":"204,-251r-6,31v-70,-22,-133,15,-138,93v7,-12,27,-30,59,-30v51,0,75,38,75,75v0,49,-31,87,-87,87v-62,0,-88,-44,-88,-104v0,-102,74,-183,185,-152xm156,-78v1,-58,-76,-57,-98,-21v-1,37,10,72,50,73v24,0,48,-16,48,-52"},"7":{"d":"35,-220r2,-32r166,0r-2,25r-105,179v-10,17,-20,34,-31,48r-43,0v49,-62,90,-154,136,-220r-123,0"},"8":{"d":"13,-59v0,-37,33,-58,67,-73v-26,-13,-47,-30,-47,-60v0,-48,43,-65,85,-65v36,0,75,15,75,56v0,37,-27,54,-57,68v45,22,58,42,58,71v0,35,-31,67,-94,67v-35,0,-87,-13,-87,-64xm71,-191v0,17,14,26,40,42v20,-10,46,-24,46,-47v0,-24,-23,-32,-42,-32v-30,0,-44,19,-44,37xm156,-66v1,-28,-30,-39,-51,-50v-27,14,-54,25,-54,54v0,28,29,36,52,36v33,0,53,-17,53,-40"},"9":{"d":"12,-1r6,-31v77,25,136,-26,137,-97v-29,49,-132,36,-132,-43v0,-44,27,-85,84,-85v63,0,87,47,87,105v0,103,-72,181,-182,151xm61,-175v0,54,79,51,95,21v1,-32,-8,-72,-50,-72v-28,0,-45,20,-45,51"},":":{"d":"20,-19v0,-16,11,-26,27,-26v18,0,26,11,26,24v0,15,-10,25,-28,25v-11,0,-25,-4,-25,-23xm33,-163v0,-16,11,-26,27,-26v18,0,26,10,26,23v0,15,-10,26,-28,26v-11,0,-25,-4,-25,-23","w":106},";":{"d":"13,72r-13,-22v19,-8,35,-18,35,-37v-5,-23,-32,-61,12,-61v20,0,30,17,30,40v0,44,-37,71,-64,80xm33,-163v0,-16,11,-26,27,-26v18,0,26,10,26,23v0,15,-10,26,-28,26v-11,0,-25,-4,-25,-23","w":106},"<":{"d":"14,-77r0,-28r182,-81r0,29r-146,66r146,65r0,30","w":216},"=":{"d":"14,-111r0,-29r182,0r0,29r-182,0xm14,-42r0,-29r182,0r0,29r-182,0","w":216},">":{"d":"196,-105r0,28r-182,81r0,-30r146,-65r-146,-66r0,-29","w":216},"?":{"d":"30,-242r2,-31v8,-3,31,-8,52,-8v107,2,95,105,32,135v-22,11,-70,33,-41,60r-34,12v-31,-34,0,-70,35,-86v34,-16,46,-31,46,-52v0,-44,-54,-42,-92,-30xm22,-19v0,-16,10,-26,26,-26v18,0,27,11,27,24v0,15,-10,25,-28,25v-11,0,-25,-4,-25,-23","w":173},"@":{"d":"181,-140v0,-18,-13,-35,-30,-35v-30,0,-53,37,-53,67v0,20,10,35,31,35v30,0,52,-40,52,-67xm12,-126v0,-74,62,-132,138,-132v68,0,126,44,126,108v0,67,-58,102,-87,102v-15,1,-21,-8,-25,-20v-27,37,-100,18,-93,-37v-7,-64,80,-134,121,-69r6,-20r27,0r-32,113v0,5,3,8,9,8v21,0,47,-34,47,-72v0,-53,-46,-88,-99,-88v-66,0,-111,50,-111,108v0,59,50,106,114,106v33,0,65,-16,81,-35r30,0v-24,37,-66,60,-112,60v-78,0,-140,-57,-140,-132","w":288},"A":{"d":"-3,0r3,-30r20,0r104,-224r44,0r65,224r23,0r-3,30r-85,0r3,-30r19,0r-15,-62r-89,0r-28,62r27,0r-3,30r-85,0xm167,-122r-25,-103v-13,37,-29,69,-43,103r68,0","w":266,"k":{"\u201d":20,"y":27,"w":20,"v":20,"u":6,"p":4,"Y":33,"W":27,"V":27,"U":13,"T":20,"Q":11,"O":11,"G":11,"C":11,"\u2019":20}},"B":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30v73,2,169,-17,169,59v0,45,-35,58,-60,63v30,0,64,13,64,56v0,82,-104,76,-190,74xm87,-222r-6,77v40,2,75,-4,76,-44v1,-36,-35,-34,-70,-33xm78,-117r-7,87v44,-1,88,9,88,-46v0,-44,-41,-41,-81,-41","k":{"A":4}},"C":{"d":"210,-65r-6,59v-17,5,-41,12,-69,12v-74,0,-121,-40,-121,-116v0,-46,19,-148,136,-148v30,0,52,6,69,11r-3,59r-30,0r0,-34v-9,-3,-21,-4,-33,-4v-73,0,-96,56,-96,110v0,73,50,103,117,85r4,-34r32,0","w":226,"k":{"A":9}},"D":{"d":"87,-222r-16,192v87,10,140,-31,140,-110v0,-86,-54,-83,-124,-82xm9,0r2,-30r21,0r17,-192r-26,0r3,-30v113,-3,225,-7,225,107v0,98,-60,145,-142,145r-100,0","w":266,"k":{"Y":27,"W":20,"V":20,"A":20,".":11,",":11}},"E":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r173,0r-5,64r-32,0r1,-34r-76,0r-6,77r77,0r-3,30r-77,0r-7,85r81,0r5,-34r32,0r-5,64r-175,0","w":206},"F":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r169,0r-4,64r-32,0r0,-34r-72,0r-7,82r76,0r-2,29r-77,0r-6,81r25,0r-2,30r-85,0","w":193,"k":{"r":6,"o":6,"e":9,"a":20,"A":20,".":46,",":46}},"G":{"d":"228,-247r-5,59r-32,0r1,-33v-83,-21,-135,24,-135,104v0,66,54,108,121,85r5,-53r-27,0r3,-30r83,0r-3,30r-22,0r-6,77v-10,5,-43,14,-78,14v-76,0,-119,-41,-119,-123v0,-86,51,-141,137,-141v31,0,56,6,77,11","w":246},"H":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-7,80r116,0r7,-80r-26,0r2,-30r86,0r-3,30r-21,0r-16,192r26,0r-3,30r-85,0r2,-30r21,0r7,-81r-116,0r-6,81r25,0r-2,30r-85,0","w":273},"I":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-16,192r25,0r-2,30r-85,0","w":119},"J":{"d":"36,-78r13,-144r-26,0r3,-30r85,0r-3,30r-21,0r-10,119v-8,90,-19,127,-101,168r-15,-28v42,-23,69,-46,75,-115","w":119,"k":{"u":11,"o":9,"e":9,"a":11,"A":11,".":11,",":11}},"K":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-6,86r96,-86r-26,0r3,-30r90,0r-3,30r-18,0r-102,90r93,102r22,0r-3,30r-94,0r3,-30r22,0r-86,-95r-7,95r25,0r-2,30r-85,0","w":246,"k":{"y":16,"u":6,"o":4,"O":9}},"L":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-16,192r70,0r5,-34r34,0r-6,64r-165,0","w":193,"k":{"\u201d":33,"y":27,"Y":33,"W":27,"V":27,"T":27,"\u2019":33}},"M":{"d":"5,0r3,-30r21,0r19,-192r-28,0r3,-30r79,0r53,186v4,9,2,20,6,26v27,-75,64,-141,94,-212r73,0r-3,30r-23,0r-12,192r25,0r-2,30r-85,0r3,-30r21,0r14,-177v-27,71,-62,139,-92,207r-40,0r-57,-205r-14,175r25,0r-3,30r-80,0","w":333},"N":{"d":"8,0r2,-30r22,0r17,-192r-27,0r2,-30r58,0r121,189r13,-159r-27,0r3,-30r81,0r-3,30r-22,0r-19,222r-33,0r-102,-161v-9,-13,-11,-22,-17,-29r-13,160r27,0r-3,30r-80,0","w":280,"k":{"A":4,".":9,",":9}},"O":{"d":"14,-111v0,-99,61,-147,128,-147v71,0,104,50,104,119v0,69,-33,145,-129,145v-57,0,-103,-34,-103,-117xm57,-112v0,33,8,86,66,86v68,0,80,-79,80,-113v0,-49,-17,-87,-66,-87v-62,0,-80,63,-80,114","w":259,"k":{"Y":20,"X":11,"W":13,"V":11,"A":13,".":11,",":11}},"P":{"d":"87,-222r-8,91v43,6,82,-7,80,-51v-3,-45,-37,-40,-72,-40xm9,0r2,-30r21,0r17,-192r-26,0r3,-30v78,3,171,-19,171,66v0,71,-53,91,-120,85r-6,71r27,0r-2,30r-87,0","w":200,"k":{"o":6,"e":6,"a":9,"A":20,".":46,",":46}},"Q":{"d":"14,-111v0,-99,61,-147,128,-147v137,0,134,215,27,254v36,6,75,53,115,36r-3,30v-66,22,-105,-56,-165,-56v-56,0,-102,-34,-102,-117xm57,-112v0,33,8,86,66,86v68,0,80,-79,80,-113v0,-49,-17,-87,-66,-87v-62,0,-80,63,-80,114","w":259},"R":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30v75,0,171,-11,171,64v0,45,-33,70,-72,70v29,-4,48,51,63,77v4,13,14,11,29,11r-2,30v-31,0,-55,5,-63,-22v-22,-29,-21,-92,-75,-85r-6,77r25,0r-2,30r-85,0xm87,-222r-7,86v44,7,83,-12,78,-49v-6,-46,-39,-35,-71,-37","w":226,"k":{"Y":20,"W":13,"V":20,"U":6,"T":6}},"S":{"d":"186,-247r-4,59r-32,0r0,-33v-33,-10,-91,-7,-87,31v-6,28,50,40,76,50v23,8,50,24,50,64v0,78,-108,99,-176,69r3,-61r30,0r-1,34v42,11,103,13,103,-36v0,-36,-44,-41,-72,-50v-84,-28,-70,-140,38,-138v27,0,50,5,72,11","w":206},"T":{"d":"57,0r2,-30r21,0r17,-192r-56,0r-4,34r-32,0r6,-64r215,0r-6,64r-31,0r1,-34r-55,0r-17,192r26,0r-2,30r-85,0","w":219,"k":{"y":46,"w":46,"u":40,"r":33,"o":33,"i":20,"h":6,"e":33,"a":33,"O":6,"A":33,";":33,":":33,".":46,"-":40,",":46}},"U":{"d":"21,-222r2,-30r85,0r-2,30r-21,0r-13,148v0,26,12,48,54,48v96,-1,60,-119,78,-196r-27,0r2,-30r82,0r-3,30r-20,0v-16,100,12,236,-113,228v-98,-6,-95,-45,-89,-114r10,-114r-25,0","w":266,"k":{"A":13,".":11,",":11}},"V":{"d":"94,0r-64,-222r-23,0r3,-30r86,0r-2,30r-21,0r48,188v23,-65,53,-125,78,-188r-27,0r3,-30r86,0r-3,30r-20,0r-102,222r-42,0","w":253,"k":{"u":27,"o":27,"i":20,"e":27,"a":33,"O":6,"G":11,"A":27,";":27,":":27,".":46,"-":33,",":46}},"W":{"d":"90,0r-59,-222r-23,0r2,-30r85,0r-2,30r-21,0r46,192v18,-53,43,-100,63,-150r-11,-42r-25,0r3,-30r85,0r-3,30r-20,0r45,188v21,-65,48,-125,71,-188r-28,0r3,-30r86,0r-3,30r-20,0r-92,222r-44,0r-35,-134r-58,134r-45,0","w":380,"k":{"y":27,"u":27,"o":27,"i":20,"h":6,"e":27,"a":33,"O":13,"A":33,";":27,":":27,".":46,"-":33,",":46}},"X":{"d":"1,0r2,-30r21,0r83,-100r-59,-92r-23,0r2,-30r89,0r-2,30r-22,0v16,18,28,43,42,64v18,-21,35,-46,55,-64r-30,0r3,-30r88,0r-2,30r-20,0r-76,90r64,102r23,0r-3,30r-90,0r3,-30r22,0v-16,-20,-32,-50,-47,-73r-59,73r30,0r-2,30r-92,0","w":253},"Y":{"d":"72,0r3,-30r21,0r7,-70r-74,-122r-23,0r3,-30r89,0r-3,30r-19,0r51,90r66,-90r-27,0r2,-30r87,0r-3,30r-21,0r-90,119r-6,73r27,0r-3,30r-87,0","w":246,"k":{"u":40,"o":40,"i":20,"e":40,"a":40,"S":6,"O":13,"A":27,";":33,":":33,".":46,"-":46,",":46}},"Z":{"d":"5,0r4,-27r143,-177v5,-6,12,-14,18,-18r-106,0r-5,35r-32,0r6,-65r187,0r-4,27r-147,182v-4,5,-9,9,-13,13r114,0r5,-36r33,0r-6,66r-197,0","w":226},"[":{"d":"16,90r32,-367r72,0r-3,30r-34,0r-27,308r32,0r-2,29r-70,0","w":113},"\\":{"d":"17,-281r127,299r-28,11r-126,-299","w":133},"]":{"d":"97,-277r-31,367r-72,0r2,-29r35,0r26,-308r-32,0r3,-30r69,0","w":113},"^":{"d":"156,-121r-48,-95r-48,95r-29,0r65,-131r24,0r65,131r-29,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"86,-281r13,22v-19,8,-35,18,-35,37v5,23,32,61,-12,61v-20,0,-30,-18,-30,-41v0,-44,37,-70,64,-79","w":106,"k":{"\u2018":28,"A":20}},"a":{"d":"52,-67v0,21,6,35,19,35v35,0,67,-97,67,-125v-5,-2,-14,-4,-24,-4v-49,0,-62,63,-62,94xm189,-30r-3,30r-59,0v0,-19,8,-48,11,-83v-11,39,-31,85,-75,85v-39,0,-49,-33,-49,-70v0,-37,16,-123,103,-123v24,-1,38,9,62,8v-8,44,-11,105,-16,153r26,0","w":206,"k":{"y":9,"w":6,"v":6,"g":4}},"b":{"d":"9,-247r3,-30r68,0v-6,56,-7,115,-19,165v13,-35,37,-80,79,-79v24,0,46,20,46,66v0,65,-34,129,-102,129v-27,0,-58,-8,-66,-14r22,-237r-31,0xm58,-31v59,25,90,-40,90,-89v0,-27,-5,-37,-18,-37v-33,0,-66,71,-72,126","w":200,"k":{"y":9,"v":4,".":11,",":11}},"c":{"d":"141,-41r-3,33v-58,29,-132,2,-128,-72v5,-104,70,-123,143,-104r-6,51r-31,0r1,-26v-45,-11,-67,28,-67,73v0,57,53,71,91,45","w":153,"k":{"k":6,"h":6}},"d":{"d":"116,-247r2,-30r67,0r-21,247r26,0r-3,30r-59,0v1,-21,10,-58,11,-83v-11,37,-34,87,-73,87v-36,0,-52,-29,-52,-71v-1,-69,44,-140,126,-121r6,-59r-30,0xm52,-67v0,19,6,35,19,35v23,0,61,-56,67,-125v-56,-20,-86,42,-86,90","w":206,"k":{"y":11,"w":9,"v":6}},"e":{"d":"149,-44r-5,35v-9,5,-33,13,-60,13v-48,0,-74,-30,-74,-78v0,-52,27,-117,98,-117v27,0,54,14,54,44v0,59,-83,72,-112,75v-5,51,64,52,99,28xm123,-143v0,-10,-6,-18,-21,-18v-36,0,-49,36,-52,63v35,-6,73,-16,73,-45","w":166},"f":{"d":"17,-158r2,-29r26,0v-3,-70,48,-105,117,-86r-3,28v-44,-14,-79,9,-76,58r44,0r-3,29r-43,0r-12,142v-4,46,-10,109,-79,109v-12,0,-21,-2,-32,-5r3,-31v51,14,65,-11,71,-79r11,-136r-26,0","w":126,"k":{"\u0131":4,"\u201d":-9,"o":6,"i":4,"e":6,"a":6,".":11,",":11}},"g":{"d":"52,-66v0,26,9,34,19,34v25,0,60,-55,68,-124v-54,-23,-87,37,-87,90xm9,79r3,-35v12,9,35,17,53,17v81,0,61,-85,75,-142v-12,29,-34,81,-78,81v-37,0,-48,-35,-48,-67v0,-46,20,-124,111,-124v22,0,34,11,56,8v-6,53,-10,113,-15,170v-6,62,-23,106,-97,106v-19,0,-46,-6,-60,-14","w":200,"k":{"y":4,"r":2}},"h":{"d":"27,0r23,-247r-31,0r3,-30r67,0r-11,121v0,11,-8,34,-7,48v19,-60,51,-83,83,-83v45,0,41,47,36,84r-10,77r25,0r-3,30r-64,0v8,-44,16,-120,16,-136v0,-11,-1,-21,-13,-21v-39,1,-71,94,-77,157r-37,0","w":219,"k":{"y":9}},"i":{"d":"14,-158r3,-29r64,0r-14,157r25,0r-2,30r-63,0r14,-158r-27,0xm40,-255v0,-18,12,-26,30,-26v14,0,23,9,23,22v0,12,-6,27,-29,27v-18,0,-24,-13,-24,-23","w":106},"j":{"d":"14,-158r3,-29r64,0v-19,117,12,250,-102,282r-11,-27v84,-30,57,-135,73,-226r-27,0xm40,-255v0,-18,12,-26,30,-26v14,0,23,9,23,22v0,12,-6,27,-29,27v-18,0,-24,-13,-24,-23","w":106},"k":{"d":"19,-247r3,-30r67,0r-8,92v0,16,-9,42,-8,57v8,-25,31,-63,76,-63v26,0,41,19,41,39v0,40,-40,61,-73,73v16,15,29,33,44,49r25,0r-2,30r-49,0r-62,-75v-5,25,-8,56,-10,75r-36,0r23,-247r-31,0xm150,-141v0,-9,-6,-16,-16,-16v-21,0,-51,27,-59,72v13,-3,75,-23,75,-56","w":200},"l":{"d":"12,-247r2,-30r68,0r-22,247r26,0r-3,30r-62,0r21,-247r-30,0","w":100,"k":{"y":4}},"m":{"d":"15,-158r3,-29r63,0v-2,28,-7,52,-10,79v19,-60,50,-83,80,-83v45,0,37,42,37,67v5,-19,30,-67,73,-67v41,0,40,41,36,77r-10,84r24,0r-2,30r-65,0v8,-44,17,-124,17,-139v0,-8,-2,-18,-13,-18v-31,-1,-72,86,-73,157r-37,0r15,-137v0,-9,-2,-20,-13,-20v-36,1,-71,95,-76,157r-37,0v8,-51,10,-105,15,-158r-27,0","w":326},"n":{"d":"15,-158r3,-29r63,0v-2,28,-7,52,-10,79v19,-60,51,-83,83,-83v45,0,41,47,36,84r-10,77r25,0r-3,30r-64,0v8,-44,16,-120,16,-136v0,-11,-1,-21,-13,-21v-39,1,-71,94,-77,157r-37,0v8,-51,10,-105,15,-158r-27,0","w":219,"k":{"y":6,"v":4}},"o":{"d":"50,-80v0,23,7,52,37,52v41,0,49,-49,49,-81v0,-16,-4,-50,-36,-50v-41,0,-50,47,-50,79xm10,-80v0,-57,30,-111,94,-111v32,0,73,19,73,83v0,78,-43,112,-91,112v-61,0,-76,-47,-76,-84","w":186,"k":{"y":4,"x":2,"w":2,"v":2}},"p":{"d":"-4,90r2,-29r22,0r19,-219r-27,0r2,-29r64,0v-3,25,-5,47,-10,76v8,-24,25,-80,78,-80v39,0,47,42,47,69v0,79,-52,139,-132,121r-5,62r26,0r-2,29r-84,0xm154,-119v0,-18,-2,-38,-18,-38v-27,0,-61,53,-72,124v6,3,18,3,31,3v42,0,59,-52,59,-89","w":206,"k":{"y":9,".":11,",":11}},"q":{"d":"52,-66v0,18,5,34,19,34v22,0,54,-43,69,-124v-60,-25,-88,43,-88,90xm98,90r2,-29r21,0r6,-66v2,-27,10,-52,11,-75v-12,32,-31,82,-76,82v-35,0,-48,-35,-48,-70v0,-85,67,-146,151,-115r16,0v-12,73,-15,166,-24,244r27,0r-3,29r-83,0","w":206},"r":{"d":"15,-158r3,-29r61,0v-1,23,-7,51,-7,72v11,-45,30,-86,82,-74r-6,36v-63,-13,-75,91,-81,153r-38,0r13,-158r-27,0","w":153,"k":{"v":4,"s":4,"q":4,"o":4,"k":6,"g":9,"e":4,"d":11,"c":6,"a":11,".":33,"-":13,",":33}},"s":{"d":"50,-56r0,24v24,9,69,11,69,-21v0,-23,-36,-26,-54,-33v-18,-7,-42,-16,-42,-48v0,-28,21,-57,77,-57v29,0,50,8,56,11r-2,47r-32,0r2,-23v-18,-10,-66,-5,-62,18v6,39,95,18,95,80v0,30,-20,62,-75,62v-30,0,-49,-7,-66,-12r1,-48r33,0","w":173,"k":{"w":4}},"t":{"d":"14,-158r3,-29r27,0r4,-43r38,-3r-4,46r52,0r-3,29r-51,0r-9,108v-3,29,37,21,53,11r-3,32v-11,5,-26,9,-42,9v-83,-3,-33,-91,-38,-160r-27,0","w":133},"u":{"d":"16,-158r3,-29r67,0r-18,134v0,13,6,21,16,21v23,0,60,-56,73,-155r37,0v-9,49,-11,104,-16,157r26,0r-3,30r-61,0v0,-22,11,-57,12,-81v-14,42,-39,83,-81,83v-74,0,-28,-100,-29,-160r-26,0","w":219},"v":{"d":"13,-158r3,-29r65,0v-3,37,-6,86,-6,98v0,30,2,59,20,59v33,0,57,-80,60,-128r-28,0r3,-29r63,0v0,65,-22,191,-105,191v-67,0,-49,-108,-48,-162r-27,0","w":206,"k":{"a":2,".":33,",":33}},"w":{"d":"15,-158r3,-29r67,0v-4,30,-10,92,-10,116v0,21,3,41,19,41v28,7,54,-69,57,-157r38,0r-8,105v0,39,7,52,21,52v27,0,49,-62,51,-128r-25,0r3,-29r61,0v-2,97,-30,191,-97,191v-40,1,-41,-43,-44,-68v-3,19,-20,68,-65,68v-71,0,-45,-100,-44,-162r-27,0","w":306,"k":{"h":4,".":33,",":33}},"x":{"d":"6,0r2,-30r70,-65r-36,-63r-26,0r3,-29r51,0r41,71r42,-42r-28,0r2,-29r67,0r-2,29r-69,63r38,65r26,0r-2,30r-51,0r-41,-72r-44,42r28,0r-3,30r-68,0","w":200},"y":{"d":"-3,91r3,-30v45,12,63,-26,78,-58r-48,-161r-24,0r2,-29r55,0r38,150v12,-43,30,-80,45,-121r-29,0r2,-29r64,0r-2,28v-35,76,-89,254,-161,254v-6,0,-15,-1,-23,-4","w":193,"k":{"o":4,"e":4,"a":6,".":40,",":40}},"z":{"d":"9,0r3,-28r109,-130r-66,0r-2,25r-33,0r5,-54r146,0r-2,27r-111,132v22,-2,48,-2,73,-2r3,-26r33,0r-5,56r-153,0","w":180,"k":{"e":-4}},"{":{"d":"90,90v-87,16,-59,-75,-56,-134v0,-19,-12,-35,-25,-36r3,-27v37,-2,36,-75,42,-117v7,-56,29,-54,75,-53r-3,25v-53,-8,-37,65,-45,104v-8,39,-30,49,-38,55v8,2,27,14,27,42v0,32,-8,65,-8,97v-3,15,13,22,31,19","w":113},"|":{"d":"25,90r0,-360r30,0r0,360r-30,0","w":79},"}":{"d":"17,-277v88,-16,57,75,57,134v0,19,11,35,24,36r-3,27v-59,6,-17,180,-87,170r-29,0r2,-25v54,8,38,-64,46,-104v7,-39,29,-49,37,-55v-8,-2,-26,-13,-26,-41v0,-33,8,-65,8,-98v3,-14,-13,-22,-31,-19","w":113},"~":{"d":"67,-118v26,-1,55,23,77,25v14,0,23,-14,31,-27r13,26v-8,15,-21,30,-45,30v-25,1,-55,-25,-76,-25v-14,0,-24,14,-32,27r-13,-26v8,-15,21,-30,45,-30","w":216},"\u00a1":{"d":"72,-110r-12,196r-44,0r20,-196r36,0xm33,-170v0,-15,11,-25,29,-25v11,0,25,4,25,23v0,16,-11,26,-27,26v-18,0,-27,-11,-27,-24","w":106},"\u00a2":{"d":"88,48r3,-43v-28,-4,-65,-21,-65,-89v0,-55,29,-101,83,-107r3,-35r27,0r-3,35v10,0,31,1,51,7r-6,52r-29,0r1,-26v-5,-2,-14,-3,-19,-3r-12,135v19,0,36,-5,53,-14r-4,33v-18,9,-37,11,-52,12r-4,43r-27,0xm95,-30r11,-129v-41,2,-58,114,-11,129"},"\u00a3":{"d":"7,0r2,-30r21,0v9,-6,20,-50,17,-86r-33,0r3,-29r30,0v-4,-72,20,-111,98,-112v20,0,39,3,61,9r-3,57r-31,0r2,-34v-55,-12,-100,12,-89,80r55,0r-2,29r-53,0v2,37,-6,81,-17,86r86,0r8,-34r31,0r-5,64r-181,0"},"\u00a5":{"d":"58,0r2,-30r20,0r2,-24r-52,0r2,-25r52,0r2,-25r-51,0r2,-26r36,0r-47,-92r-20,0r3,-30r77,0r-3,30r-17,0r43,92v18,-33,39,-61,59,-92r-24,0r3,-30r74,0r-2,30r-18,0r-62,92r37,0r-2,26r-52,0r-2,25r51,0r-2,25r-51,0r-2,24r22,0r-3,30r-77,0"},"\u0192":{"d":"50,-116r3,-29r33,0v2,-62,11,-112,81,-112v14,0,30,2,37,5r-4,30v-39,-10,-73,-3,-74,48r-2,29r47,0r-2,29r-47,0v-7,90,-1,212,-113,182r3,-31v74,29,64,-85,72,-151r-34,0"},"\u00a7":{"d":"21,63r3,-53r31,0r-1,30v31,8,80,12,81,-28v-8,-47,-105,-49,-105,-106v0,-20,12,-46,44,-53v-65,-32,-31,-111,47,-111v26,0,46,5,64,10r-3,50r-31,0r1,-27v-26,-7,-80,-7,-75,26v8,53,104,39,105,106v1,28,-20,45,-44,51v17,10,35,20,35,50v0,43,-38,67,-86,67v-33,0,-54,-9,-66,-12xm146,-87v0,-30,-35,-33,-53,-47v-11,5,-27,13,-27,31v0,23,35,38,53,49v10,-5,27,-14,27,-33"},"\u00a4":{"d":"15,-52r21,-20v-25,-29,-25,-79,0,-108r-21,-20r17,-17r20,20v29,-24,80,-24,109,0r20,-20r17,17r-21,20v25,29,25,79,0,108r21,20r-17,17r-20,-20v-29,24,-80,24,-109,0r-20,20xm47,-126v0,36,26,64,60,64v34,0,59,-28,59,-64v0,-36,-25,-64,-59,-64v-34,0,-60,28,-60,64"},"'":{"d":"53,-161v-25,-5,-13,-78,-20,-100v0,-11,9,-20,20,-20v39,0,13,68,13,107v0,10,-8,13,-13,13","w":106},"\u201c":{"d":"86,-281r13,22v-19,8,-35,18,-35,37v5,23,32,61,-12,61v-20,0,-30,-18,-30,-41v0,-44,37,-70,64,-79xm165,-281r13,22v-19,8,-35,18,-35,37v5,23,32,61,-12,61v-20,0,-31,-18,-31,-41v0,-44,38,-70,65,-79","w":173,"k":{"A":9}},"\u00ab":{"d":"141,-36r-46,-55r2,-26r56,-52r21,21r-46,45r38,46xm60,-36r-46,-55r2,-26r56,-52r21,21r-47,45r39,46","w":186},"\u2013":{"d":"-3,-86r3,-32r180,0r-3,32r-180,0","w":180},"\u00b7":{"d":"28,-101v0,-14,11,-25,25,-25v14,0,26,11,26,25v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26","w":106},"\u00b6":{"d":"140,68r31,-296r-40,0r-31,296r-30,0r20,-187v-46,0,-71,-23,-71,-65v0,-75,103,-71,185,-68r-34,320r-30,0","w":216},"\u201d":{"d":"94,-161r-12,-22v19,-8,35,-18,35,-37v-6,-24,-33,-61,12,-61v20,0,30,18,30,41v0,44,-38,70,-65,79xm15,-161r-12,-22v19,-8,35,-18,35,-37v-6,-24,-33,-61,12,-61v20,0,30,18,30,41v0,44,-38,70,-65,79","w":173,"k":{" ":13}},"\u00bb":{"d":"125,-169r46,56r-2,25r-56,52r-21,-21r47,-44r-39,-47xm44,-169r46,56r-2,25r-56,52r-21,-21r46,-44r-38,-47","w":186},"\u2026":{"d":"30,-19v0,-16,11,-26,27,-26v18,0,26,11,26,24v0,15,-10,25,-28,25v-11,0,-25,-4,-25,-23xm150,-19v0,-16,10,-26,26,-26v18,0,27,11,27,24v0,15,-10,25,-28,25v-11,0,-25,-4,-25,-23xm270,-19v0,-16,10,-26,26,-26v18,0,27,11,27,24v0,15,-10,25,-28,25v-11,0,-25,-4,-25,-23","w":360},"\u00bf":{"d":"139,51r-1,31v-8,3,-32,8,-53,8v-109,-2,-94,-104,-31,-135v22,-11,67,-32,41,-60r34,-12v30,34,-1,70,-36,86v-34,16,-45,32,-45,53v0,45,54,42,91,29xm148,-172v0,16,-11,26,-27,26v-18,0,-27,-11,-27,-24v0,-15,10,-25,28,-25v11,0,26,4,26,23","w":173},"`":{"d":"39,-281r60,55r-24,17r-61,-54","w":100},"\u00b4":{"d":"21,-228r69,-53r24,18r-73,54","w":100},"\u00af":{"d":"11,-231r3,-29r99,0r-2,29r-100,0","w":100},"\u00a8":{"d":"77,-244v0,-12,8,-24,25,-24v17,0,24,10,24,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23xm1,-244v0,-12,8,-24,25,-24v17,0,24,10,24,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23","w":100},"\u00b8":{"d":"-3,80r3,-21v16,6,52,15,52,-7v0,-12,-16,-13,-25,-13r5,-39r23,0v0,7,-6,19,-1,22v12,0,30,8,30,28v0,39,-57,41,-87,30","w":100},"\u2014":{"d":"-3,-86r3,-32r360,0r-3,32r-360,0","w":360},"\u00c6":{"d":"-7,0r3,-30r18,0r136,-222r182,0r-5,64r-32,0r1,-34r-68,0r-8,84r73,0r-3,29r-72,0r-7,79r80,0r5,-34r32,0r-5,64r-174,0r3,-30r21,0r7,-79r-80,0r-45,79r26,0r-3,30r-85,0xm182,-138r7,-84r-23,0r-49,84r65,0","w":346},"\u00aa":{"d":"39,-183v0,11,3,20,10,20v24,0,44,-58,44,-73v-35,-15,-54,29,-54,53xm127,-162r-1,19r-40,0v1,-12,3,-27,8,-50v-8,23,-20,53,-49,53v-25,0,-34,-22,-34,-44v0,-22,13,-73,69,-73v16,-1,25,5,41,4v-5,25,-7,63,-10,91r16,0","w":134},"\u0141":{"d":"9,0r2,-30r21,0r6,-64r-25,18r2,-29r26,-18r8,-99r-26,0r3,-30r85,0r-3,30r-21,0r-6,70r60,-44r-3,30r-60,44r-7,92r70,0r5,-34r34,0r-6,64r-165,0","w":193},"\u00d8":{"d":"68,-58r107,-157v-10,-7,-23,-11,-38,-11v-80,4,-94,102,-69,168xm192,-194r-107,157v9,7,22,11,38,11v68,0,80,-79,80,-113v0,-22,-3,-41,-11,-55xm14,21r30,-43v-18,-18,-30,-48,-30,-89v1,-120,90,-172,181,-135r29,-42r22,15r-30,43v60,79,34,237,-99,236v-19,0,-38,-3,-53,-12r-28,42","w":259},"\u0152":{"d":"228,-222r-6,77r73,0r-3,30r-72,0r-8,85r77,0r5,-34r32,0r-5,64r-187,2v-78,0,-120,-47,-120,-113v-1,-104,75,-141,192,-141r130,0r-5,64r-32,0r1,-34r-72,0xm174,-30r16,-192v-77,-16,-133,29,-133,107v0,69,48,98,117,85","w":346},"\u00ba":{"d":"44,-191v0,13,4,30,23,30v27,0,32,-28,32,-47v0,-9,-2,-29,-23,-29v-27,0,-32,28,-32,46xm17,-191v0,-34,19,-66,61,-66v21,0,48,11,48,50v0,47,-28,67,-59,67v-40,0,-50,-29,-50,-51","w":138},"\u00e6":{"d":"137,-154v-54,-30,-84,43,-84,87v0,19,6,35,19,35v27,0,58,-59,65,-122xm231,-143v0,-13,-8,-18,-21,-18v-30,0,-42,35,-44,63v28,-4,65,-17,65,-45xm258,-44r-4,34v-15,8,-38,14,-60,14v-48,1,-59,-29,-61,-68v-11,37,-34,66,-69,66v-40,0,-49,-41,-49,-70v0,-60,31,-123,99,-123v26,0,42,10,55,19v26,-35,109,-17,100,25v0,49,-61,72,-104,75v-3,68,66,42,93,28","w":280},"\u0131":{"d":"14,-158r3,-29r64,0r-14,157r25,0r-2,30r-63,0r14,-158r-27,0","w":106},"\u0142":{"d":"12,-247r2,-30r68,0r-8,92r27,-26r-3,30r-27,25r-11,126r26,0r-3,30r-62,0r10,-119r-27,26r2,-29r27,-26r9,-99r-30,0","w":100},"\u00f8":{"d":"54,-55r65,-99v-54,-22,-81,48,-65,99xm5,18r25,-37v-56,-72,8,-206,108,-164r24,-36r20,13r-25,38v12,13,20,32,20,60v-1,94,-61,129,-128,104r-24,36xm133,-132r-65,99v54,22,79,-48,65,-99","w":186},"\u0153":{"d":"270,-43r-3,34v-43,22,-121,18,-122,-32v-6,19,-20,45,-61,45v-55,0,-69,-45,-69,-84v0,-58,27,-111,91,-111v32,-1,47,21,55,46v6,-17,24,-46,69,-46v36,0,53,24,53,44v0,48,-61,73,-110,75v-10,58,75,45,97,29xm55,-77v0,25,10,49,36,49v30,0,46,-30,46,-88v0,-29,-13,-45,-32,-45v-22,0,-50,17,-50,84xm222,-161v-37,0,-48,36,-49,63v37,-5,71,-19,71,-43v0,-12,-9,-20,-22,-20","w":293},"\u00df":{"d":"-42,87r3,-30v45,13,61,-3,66,-69r15,-180v4,-46,21,-89,93,-89v53,0,75,25,75,53v0,50,-65,61,-65,88v0,28,75,29,75,82v0,25,-17,60,-70,60v-22,0,-42,-3,-59,-8r5,-49r32,0r-1,25v24,8,57,0,57,-24v0,-35,-77,-29,-77,-81v0,-47,67,-49,67,-89v0,-23,-22,-28,-39,-28v-37,0,-52,20,-56,68r-14,175v-4,52,-13,102,-75,102v-13,0,-25,-3,-32,-6","w":233},"\u00f7":{"d":"14,-76r0,-30r182,0r0,30r-182,0xm80,-21v0,-14,11,-26,25,-26v14,0,26,12,26,26v0,14,-12,25,-26,25v-14,0,-25,-11,-25,-25xm80,-161v0,-14,11,-25,25,-25v14,0,26,11,26,25v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26","w":216},"\u00be":{"d":"252,-64v1,-20,6,-43,5,-61v-13,22,-34,41,-50,61r45,0xm232,0r2,-23r14,0r2,-18r-73,0r2,-23r76,-88r36,0r-9,88r25,0r-2,23r-26,0r-1,18r17,0r-2,23r-61,0xm73,10r157,-287r25,15r-158,287xm48,-192v23,1,47,-6,46,-25v-2,-24,-43,-16,-44,3r-29,0v7,-32,30,-43,58,-43v23,0,47,10,47,36v0,20,-18,35,-45,38v24,0,44,14,44,36v0,22,-20,48,-67,48v-18,0,-39,-4,-48,-9r2,-25v24,10,80,19,81,-14v0,-22,-30,-22,-47,-22","w":320},"\u00bc":{"d":"252,-64v1,-20,6,-43,5,-61v-13,22,-34,41,-50,61r45,0xm232,0r2,-23r14,0r2,-18r-73,0r2,-23r76,-88r36,0r-9,88r25,0r-2,23r-26,0r-1,18r17,0r-2,23r-61,0xm73,10r157,-287r25,15r-158,287xm26,-102r2,-23r29,0r10,-104v-7,9,-28,19,-40,26r-9,-21v27,-11,41,-35,84,-30r-13,129r32,0r-2,23r-93,0","w":320},"\u00b9":{"d":"26,-102r2,-23r29,0r10,-104v-7,9,-28,19,-40,26r-9,-21v27,-11,41,-35,84,-30r-13,129r32,0r-2,23r-93,0","w":138},"\u00d7":{"d":"168,-8r-63,-63r-63,63r-20,-20r63,-63r-63,-63r20,-20r63,63r63,-63r20,20r-63,63r63,63","w":216},"\u00ae":{"d":"12,-126v0,-73,59,-132,132,-132v73,0,132,59,132,132v0,73,-59,132,-132,132v-73,0,-132,-59,-132,-132xm249,-126v0,-60,-46,-107,-105,-107v-59,0,-105,47,-105,107v0,60,46,107,105,107v59,0,105,-47,105,-107xm180,-51r-40,-65r-24,0r0,65r-25,0r0,-150v51,0,116,-9,116,43v0,27,-18,39,-39,40r41,67r-29,0xm116,-137v28,-2,63,8,63,-23v0,-28,-37,-18,-63,-20r0,43","w":288},"\u00de":{"d":"83,-176r-8,92v43,6,82,-7,80,-51v-3,-45,-36,-41,-72,-41xm9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-1,17v56,-2,107,4,107,65v0,71,-53,93,-120,86r-2,24r27,0r-2,30r-87,0","w":200},"\u00a6":{"d":"25,63r0,-126r30,0r0,126r-30,0xm25,-117r0,-126r30,0r0,126r-30,0","w":79},"\u00d0":{"d":"9,0r2,-30r21,0r8,-86r-25,0r3,-27r24,0r7,-79r-26,0r3,-30v114,-1,225,-15,225,107v0,98,-60,145,-142,145r-100,0xm87,-222r-7,79r69,0r-2,27r-69,0r-7,86r49,0v57,0,91,-56,91,-110v0,-86,-54,-83,-124,-82","w":266},"\u00bd":{"d":"69,10r157,-287r25,15r-157,287xm26,-102r2,-23r29,0r10,-104v-7,9,-28,19,-40,26r-9,-21v27,-11,41,-35,84,-30r-13,129r32,0r-2,23r-93,0xm183,0r1,-22v36,-24,87,-58,87,-86v0,-12,-8,-22,-22,-22v-18,0,-26,12,-28,24r-31,0v0,-10,10,-49,61,-49v28,0,51,14,51,44v0,39,-54,72,-77,86r72,0r-2,25r-112,0","w":320},"\u00e7":{"d":"141,-41r-3,33v-13,6,-31,12,-49,12v1,5,-5,16,0,18v12,0,30,8,30,28v0,39,-57,41,-87,30r4,-21v15,6,51,15,51,-7v0,-12,-16,-13,-25,-13r5,-38v-38,-8,-57,-37,-57,-81v1,-104,71,-124,143,-104r-6,51r-31,0r1,-26v-45,-11,-67,28,-67,73v0,57,53,71,91,45","w":153},"\u00f0":{"d":"50,-80v0,23,7,52,37,52v41,0,49,-49,49,-81v0,-16,-4,-50,-36,-50v-41,0,-50,47,-50,79xm69,-212r-17,-16r40,-19v-9,-8,-20,-15,-30,-19r34,-15v11,5,21,11,30,19r34,-15r17,16r-36,16v27,35,36,81,36,125v0,92,-43,124,-91,124v-61,0,-76,-47,-76,-84v0,-71,57,-133,122,-102v-4,-16,-12,-33,-24,-48","w":186},"\u00b1":{"d":"14,-100r0,-29r76,0r0,-53r30,0r0,53r76,0r0,29r-76,0r0,53r-30,0r0,-53r-76,0xm14,0r0,-30r182,0r0,30r-182,0","w":216},"\u00c7":{"d":"210,-65r-6,59v-17,5,-42,12,-70,12v1,5,-4,14,0,16v12,0,30,8,30,28v0,39,-57,41,-87,30r4,-21v15,6,51,15,51,-7v0,-12,-16,-13,-25,-13r5,-35v-61,-8,-98,-46,-98,-114v0,-46,19,-148,136,-148v30,0,52,6,69,11r-3,59r-30,0r0,-34v-9,-3,-21,-4,-33,-4v-73,0,-96,56,-96,110v0,73,50,103,117,85r4,-34r32,0","w":226},"\u00fe":{"d":"-4,90r2,-29r22,0r26,-308r-31,0r3,-30r68,0r-10,115v-2,15,-5,35,-8,51v8,-24,25,-80,78,-80v39,0,47,42,47,69v0,79,-52,139,-132,121r-5,62r26,0r-2,29r-84,0xm154,-119v0,-18,-2,-38,-18,-38v-27,0,-61,53,-72,124v6,3,18,3,31,3v42,0,59,-52,59,-89","w":206},"\u00a9":{"d":"249,-126v0,-60,-46,-107,-105,-107v-59,0,-105,47,-105,107v0,60,46,107,105,107v59,0,105,-47,105,-107xm183,-102r30,0v-17,93,-138,59,-138,-24v0,-45,28,-80,73,-80v32,0,59,20,64,55r-29,0v-17,-51,-86,-29,-81,25v-8,52,71,77,81,24xm12,-126v0,-73,59,-132,132,-132v73,0,132,59,132,132v0,73,-59,132,-132,132v-73,0,-132,-59,-132,-132","w":288},"\u00ac":{"d":"14,-111r0,-29r182,0r0,101r-29,0r0,-72r-153,0","w":216},"\u00b2":{"d":"10,-102r2,-22v36,-24,86,-59,86,-87v0,-12,-8,-21,-22,-21v-18,0,-25,12,-27,24r-32,0v0,-10,10,-49,61,-49v28,0,52,14,52,44v0,40,-56,71,-77,87v20,-2,49,0,71,-1r-2,25r-112,0","w":138},"\u00b3":{"d":"48,-192v23,1,47,-6,46,-25v-2,-24,-43,-16,-44,3r-29,0v7,-32,30,-43,58,-43v23,0,47,10,47,36v0,20,-18,35,-45,38v24,0,44,14,44,36v0,22,-20,48,-67,48v-18,0,-39,-4,-48,-9r2,-25v24,10,80,19,81,-14v0,-22,-30,-22,-47,-22","w":138},"\u2122":{"d":"63,-105r0,-124r-45,0r0,-23r120,0r0,23r-45,0r0,124r-30,0xm305,-105r-1,-117r-44,117r-20,0r-44,-117r0,117r-28,0r0,-147r43,0r40,103r40,-103r41,0r0,147r-27,0","w":356},"\u00b0":{"d":"26,-206v0,-28,23,-51,51,-51v28,0,52,23,52,51v0,28,-24,52,-52,52v-28,0,-51,-24,-51,-52xm49,-206v0,16,12,29,28,29v16,0,29,-13,29,-29v0,-16,-13,-28,-29,-28v-16,0,-28,12,-28,28","w":144},"\u00b5":{"d":"16,-158r3,-29r67,0r-18,134v0,13,6,21,16,21v23,0,60,-56,73,-155r37,0v-9,49,-11,104,-16,157r26,0r-3,30r-61,0v0,-22,11,-57,12,-81v-14,42,-41,83,-75,83v-8,0,-14,-4,-17,-11r-14,99r-36,0r32,-248r-26,0","w":219},"\u00c1":{"d":"-3,0r3,-30r20,0r104,-224r44,0r65,224r23,0r-3,30r-85,0r3,-30r19,0r-15,-62r-89,0r-28,62r27,0r-3,30r-85,0xm167,-122r-25,-103v-13,37,-29,69,-43,103r68,0xm108,-280r69,-53r24,18r-73,54","w":266},"\u00c2":{"d":"-3,0r3,-30r20,0r104,-224r44,0r65,224r23,0r-3,30r-85,0r3,-30r19,0r-15,-62r-89,0r-28,62r27,0r-3,30r-85,0xm167,-122r-25,-103v-13,37,-29,69,-43,103r68,0xm79,-290r58,-41r28,0r50,41r-25,19r-41,-35r-48,35","w":266},"\u00c4":{"d":"-3,0r3,-30r20,0r104,-224r44,0r65,224r23,0r-3,30r-85,0r3,-30r19,0r-15,-62r-89,0r-28,62r27,0r-3,30r-85,0xm167,-122r-25,-103v-13,37,-29,69,-43,103r68,0xm161,-296v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22xm85,-296v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22","w":266},"\u00c0":{"d":"-3,0r3,-30r20,0r104,-224r44,0r65,224r23,0r-3,30r-85,0r3,-30r19,0r-15,-62r-89,0r-28,62r27,0r-3,30r-85,0xm167,-122r-25,-103v-13,37,-29,69,-43,103r68,0xm122,-333r61,55r-24,17r-62,-54","w":266},"\u00c5":{"d":"-3,0r3,-30r20,0r104,-224r44,0r65,224r23,0r-3,30r-85,0r3,-30r19,0r-15,-62r-89,0r-28,62r27,0r-3,30r-85,0xm167,-122r-25,-103v-13,37,-29,69,-43,103r68,0xm111,-296v0,-16,9,-40,39,-40v23,0,35,16,35,34v0,19,-14,40,-40,40v-21,0,-34,-13,-34,-34xm150,-319v-22,0,-24,41,-2,41v18,0,25,-41,2,-41","w":266},"\u00c3":{"d":"-3,0r3,-30r20,0r104,-224r44,0r65,224r23,0r-3,30r-85,0r3,-30r19,0r-15,-62r-89,0r-28,62r27,0r-3,30r-85,0xm167,-122r-25,-103v-13,37,-29,69,-43,103r68,0xm193,-316r22,15v-9,15,-22,31,-41,31v-26,0,-58,-42,-69,-4r-26,-11v6,-15,19,-36,43,-36v33,0,52,41,71,5","w":266},"\u00c9":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r173,0r-5,64r-32,0r1,-34r-76,0r-6,77r77,0r-3,30r-77,0r-7,85r81,0r5,-34r32,0r-5,64r-175,0xm74,-280r70,-53r23,18r-73,54","w":206},"\u00ca":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r173,0r-5,64r-32,0r1,-34r-76,0r-6,77r77,0r-3,30r-77,0r-7,85r81,0r5,-34r32,0r-5,64r-175,0xm49,-290r58,-41r27,0r51,41r-26,19r-41,-35r-47,35","w":206},"\u00cb":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r173,0r-5,64r-32,0r1,-34r-76,0r-6,77r77,0r-3,30r-77,0r-7,85r81,0r5,-34r32,0r-5,64r-175,0xm131,-296v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22xm54,-296v0,-12,8,-24,25,-24v17,0,24,10,24,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22","w":206},"\u00c8":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r173,0r-5,64r-32,0r1,-34r-76,0r-6,77r77,0r-3,30r-77,0r-7,85r81,0r5,-34r32,0r-5,64r-175,0xm92,-333r60,55r-23,17r-62,-54","w":206},"\u00cd":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-16,192r25,0r-2,30r-85,0xm31,-280r69,-53r24,18r-74,54","w":119},"\u00ce":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-16,192r25,0r-2,30r-85,0xm5,-290r58,-41r28,0r50,41r-25,19r-41,-35r-48,35","w":119},"\u00cf":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-16,192r25,0r-2,30r-85,0xm87,-296v0,-12,8,-24,25,-24v17,0,24,10,24,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22xm11,-296v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22","w":119},"\u00cc":{"d":"9,0r2,-30r21,0r17,-192r-26,0r3,-30r85,0r-3,30r-21,0r-16,192r25,0r-2,30r-85,0xm49,-333r60,55r-24,17r-62,-54","w":119},"\u00d1":{"d":"8,0r2,-30r22,0r17,-192r-27,0r2,-30r58,0r121,189r13,-159r-27,0r3,-30r81,0r-3,30r-22,0r-19,222r-33,0r-102,-161v-9,-13,-11,-22,-17,-29r-13,160r27,0r-3,30r-80,0xm199,-316r23,15v-9,15,-23,31,-42,31v-26,0,-58,-42,-69,-4r-25,-11v6,-15,19,-36,43,-36v33,0,52,42,70,5","w":280},"\u00d3":{"d":"14,-111v0,-99,61,-147,128,-147v71,0,104,50,104,119v0,69,-33,145,-129,145v-57,0,-103,-34,-103,-117xm57,-112v0,33,8,86,66,86v68,0,80,-79,80,-113v0,-49,-17,-87,-66,-87v-62,0,-80,63,-80,114xm101,-280r69,-53r24,18r-73,54","w":259},"\u00d4":{"d":"14,-111v0,-99,61,-147,128,-147v71,0,104,50,104,119v0,69,-33,145,-129,145v-57,0,-103,-34,-103,-117xm57,-112v0,33,8,86,66,86v68,0,80,-79,80,-113v0,-49,-17,-87,-66,-87v-62,0,-80,63,-80,114xm76,-290r58,-41r27,0r51,41r-26,19r-41,-35r-47,35","w":259},"\u00d6":{"d":"14,-111v0,-99,61,-147,128,-147v71,0,104,50,104,119v0,69,-33,145,-129,145v-57,0,-103,-34,-103,-117xm57,-112v0,33,8,86,66,86v68,0,80,-79,80,-113v0,-49,-17,-87,-66,-87v-62,0,-80,63,-80,114xm157,-296v0,-12,8,-24,25,-24v17,0,24,10,24,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22xm81,-296v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22","w":259},"\u00d2":{"d":"14,-111v0,-99,61,-147,128,-147v71,0,104,50,104,119v0,69,-33,145,-129,145v-57,0,-103,-34,-103,-117xm57,-112v0,33,8,86,66,86v68,0,80,-79,80,-113v0,-49,-17,-87,-66,-87v-62,0,-80,63,-80,114xm119,-333r60,55r-24,17r-61,-54","w":259},"\u00d5":{"d":"14,-111v0,-99,61,-147,128,-147v71,0,104,50,104,119v0,69,-33,145,-129,145v-57,0,-103,-34,-103,-117xm57,-112v0,33,8,86,66,86v68,0,80,-79,80,-113v0,-49,-17,-87,-66,-87v-62,0,-80,63,-80,114xm189,-316r23,15v-9,15,-23,31,-42,31v-26,0,-58,-42,-69,-4r-25,-11v6,-15,18,-36,42,-36v33,0,53,42,71,5","w":259},"\u0160":{"d":"186,-247r-4,59r-32,0r0,-33v-33,-10,-91,-7,-87,31v-6,28,50,40,76,50v23,8,50,24,50,64v0,78,-108,99,-176,69r3,-61r30,0r-1,34v42,11,103,13,103,-36v0,-36,-44,-41,-72,-50v-84,-28,-70,-140,38,-138v27,0,50,5,72,11xm184,-313r-58,42r-28,0r-50,-42r25,-18r41,34r48,-34","w":206},"\u00da":{"d":"21,-222r2,-30r85,0r-2,30r-21,0r-13,148v0,26,12,48,54,48v96,-1,60,-119,78,-196r-27,0r2,-30r82,0r-3,30r-20,0v-16,100,12,236,-113,228v-98,-6,-95,-45,-89,-114r10,-114r-25,0xm109,-280r69,-53r24,18r-73,54","w":266},"\u00db":{"d":"21,-222r2,-30r85,0r-2,30r-21,0r-13,148v0,26,12,48,54,48v96,-1,60,-119,78,-196r-27,0r2,-30r82,0r-3,30r-20,0v-16,100,12,236,-113,228v-98,-6,-95,-45,-89,-114r10,-114r-25,0xm79,-290r58,-41r28,0r50,41r-25,19r-41,-35r-48,35","w":266},"\u00dc":{"d":"21,-222r2,-30r85,0r-2,30r-21,0r-13,148v0,26,12,48,54,48v96,-1,60,-119,78,-196r-27,0r2,-30r82,0r-3,30r-20,0v-16,100,12,236,-113,228v-98,-6,-95,-45,-89,-114r10,-114r-25,0xm161,-296v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22xm85,-296v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22","w":266},"\u00d9":{"d":"21,-222r2,-30r85,0r-2,30r-21,0r-13,148v0,26,12,48,54,48v96,-1,60,-119,78,-196r-27,0r2,-30r82,0r-3,30r-20,0v-16,100,12,236,-113,228v-98,-6,-95,-45,-89,-114r10,-114r-25,0xm118,-333r60,55r-24,17r-61,-54","w":266},"\u00dd":{"d":"72,0r3,-30r21,0r7,-70r-74,-122r-23,0r3,-30r89,0r-3,30r-19,0r51,90r66,-90r-27,0r2,-30r87,0r-3,30r-21,0r-90,119r-6,73r27,0r-3,30r-87,0xm102,-280r69,-53r24,18r-74,54","w":246},"\u0178":{"d":"72,0r3,-30r21,0r7,-70r-74,-122r-23,0r3,-30r89,0r-3,30r-19,0r51,90r66,-90r-27,0r2,-30r87,0r-3,30r-21,0r-90,119r-6,73r27,0r-3,30r-87,0xm151,-296v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,24,-26,24v-12,0,-23,-5,-23,-22xm75,-296v0,-12,7,-24,24,-24v17,0,24,10,24,22v0,18,-10,24,-25,24v-12,0,-23,-5,-23,-22","w":246},"\u017d":{"d":"5,0r4,-27r143,-177v5,-6,12,-14,18,-18r-106,0r-5,35r-32,0r6,-65r187,0r-4,27r-147,182v-4,5,-9,9,-13,13r114,0r5,-36r33,0r-6,66r-197,0xm194,-313r-58,42r-28,0r-50,-42r25,-18r41,34r48,-34","w":226},"\u00e1":{"d":"52,-67v0,21,6,35,19,35v35,0,67,-97,67,-125v-5,-2,-14,-4,-24,-4v-49,0,-62,63,-62,94xm189,-30r-3,30r-59,0v0,-19,8,-48,11,-83v-11,39,-31,85,-75,85v-39,0,-49,-33,-49,-70v0,-37,16,-123,103,-123v24,-1,38,9,62,8v-8,44,-11,105,-16,153r26,0xm78,-228r70,-53r24,18r-74,54","w":206},"\u00e2":{"d":"52,-67v0,21,6,35,19,35v35,0,67,-97,67,-125v-5,-2,-14,-4,-24,-4v-49,0,-62,63,-62,94xm189,-30r-3,30r-59,0v0,-19,8,-48,11,-83v-11,39,-31,85,-75,85v-39,0,-49,-33,-49,-70v0,-37,16,-123,103,-123v24,-1,38,9,62,8v-8,44,-11,105,-16,153r26,0xm49,-238r58,-41r27,0r51,41r-26,19r-41,-35r-47,35","w":206},"\u00e4":{"d":"52,-67v0,21,6,35,19,35v35,0,67,-97,67,-125v-5,-2,-14,-4,-24,-4v-49,0,-62,63,-62,94xm189,-30r-3,30r-59,0v0,-19,8,-48,11,-83v-11,39,-31,85,-75,85v-39,0,-49,-33,-49,-70v0,-37,16,-123,103,-123v24,-1,38,9,62,8v-8,44,-11,105,-16,153r26,0xm131,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23xm54,-244v0,-12,8,-24,25,-24v17,0,24,10,24,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23","w":206},"\u00e0":{"d":"52,-67v0,21,6,35,19,35v35,0,67,-97,67,-125v-5,-2,-14,-4,-24,-4v-49,0,-62,63,-62,94xm189,-30r-3,30r-59,0v0,-19,8,-48,11,-83v-11,39,-31,85,-75,85v-39,0,-49,-33,-49,-70v0,-37,16,-123,103,-123v24,-1,38,9,62,8v-8,44,-11,105,-16,153r26,0xm92,-281r60,55r-23,17r-62,-54","w":206},"\u00e5":{"d":"52,-67v0,21,6,35,19,35v35,0,67,-97,67,-125v-5,-2,-14,-4,-24,-4v-49,0,-62,63,-62,94xm189,-30r-3,30r-59,0v0,-19,8,-48,11,-83v-11,39,-31,85,-75,85v-39,0,-49,-33,-49,-70v0,-37,16,-123,103,-123v24,-1,38,9,62,8v-8,44,-11,105,-16,153r26,0xm82,-244v0,-16,9,-39,39,-39v23,0,35,16,35,34v0,19,-14,39,-40,39v-21,0,-34,-13,-34,-34xm120,-267v-21,0,-23,41,-2,41v19,0,25,-40,2,-41","w":206},"\u00e3":{"d":"52,-67v0,21,6,35,19,35v35,0,67,-97,67,-125v-5,-2,-14,-4,-24,-4v-49,0,-62,63,-62,94xm189,-30r-3,30r-59,0v0,-19,8,-48,11,-83v-11,39,-31,85,-75,85v-39,0,-49,-33,-49,-70v0,-37,16,-123,103,-123v24,-1,38,9,62,8v-8,44,-11,105,-16,153r26,0xm162,-264r23,16v-9,15,-22,30,-41,30v-26,0,-57,-40,-69,-4r-26,-11v6,-15,19,-36,43,-36v33,0,52,43,70,5","w":206},"\u00e9":{"d":"149,-44r-5,35v-9,5,-33,13,-60,13v-48,0,-74,-30,-74,-78v0,-52,27,-117,98,-117v27,0,54,14,54,44v0,59,-83,72,-112,75v-5,51,64,52,99,28xm123,-143v0,-10,-6,-18,-21,-18v-36,0,-49,36,-52,63v35,-6,73,-16,73,-45xm59,-228r69,-53r24,18r-74,54","w":166},"\u00ea":{"d":"149,-44r-5,35v-9,5,-33,13,-60,13v-48,0,-74,-30,-74,-78v0,-52,27,-117,98,-117v27,0,54,14,54,44v0,59,-83,72,-112,75v-5,51,64,52,99,28xm123,-143v0,-10,-6,-18,-21,-18v-36,0,-49,36,-52,63v35,-6,73,-16,73,-45xm29,-238r58,-41r27,0r51,41r-25,19r-41,-35r-48,35","w":166},"\u00eb":{"d":"149,-44r-5,35v-9,5,-33,13,-60,13v-48,0,-74,-30,-74,-78v0,-52,27,-117,98,-117v27,0,54,14,54,44v0,59,-83,72,-112,75v-5,51,64,52,99,28xm123,-143v0,-10,-6,-18,-21,-18v-36,0,-49,36,-52,63v35,-6,73,-16,73,-45xm111,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23xm35,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23","w":166},"\u00e8":{"d":"149,-44r-5,35v-9,5,-33,13,-60,13v-48,0,-74,-30,-74,-78v0,-52,27,-117,98,-117v27,0,54,14,54,44v0,59,-83,72,-112,75v-5,51,64,52,99,28xm123,-143v0,-10,-6,-18,-21,-18v-36,0,-49,36,-52,63v35,-6,73,-16,73,-45xm72,-281r60,55r-23,17r-62,-54","w":166},"\u00ed":{"d":"14,-158r3,-29r64,0r-14,157r25,0r-2,30r-63,0r14,-158r-27,0xm24,-228r70,-53r23,18r-73,54","w":106},"\u00ee":{"d":"14,-158r3,-29r64,0r-14,157r25,0r-2,30r-63,0r14,-158r-27,0xm-1,-238r58,-41r27,0r51,41r-26,19r-41,-35r-47,35","w":106},"\u00ef":{"d":"14,-158r3,-29r64,0r-14,157r25,0r-2,30r-63,0r14,-158r-27,0xm81,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23xm4,-244v0,-12,8,-24,25,-24v17,0,24,10,24,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23","w":106},"\u00ec":{"d":"14,-158r3,-29r64,0r-14,157r25,0r-2,30r-63,0r14,-158r-27,0xm42,-281r60,55r-24,17r-61,-54","w":106},"\u00f1":{"d":"15,-158r3,-29r63,0v-2,28,-7,52,-10,79v19,-60,51,-83,83,-83v45,0,41,47,36,84r-10,77r25,0r-3,30r-64,0v8,-44,16,-120,16,-136v0,-11,-1,-21,-13,-21v-39,1,-71,94,-77,157r-37,0v8,-51,10,-105,15,-158r-27,0xm165,-264r23,16v-9,15,-23,30,-42,30v-26,0,-57,-40,-69,-4r-26,-11v6,-15,19,-36,43,-36v34,0,52,43,71,5","w":219},"\u00f3":{"d":"50,-80v0,23,7,52,37,52v41,0,49,-49,49,-81v0,-16,-4,-50,-36,-50v-41,0,-50,47,-50,79xm10,-80v0,-57,30,-111,94,-111v32,0,73,19,73,83v0,78,-43,112,-91,112v-61,0,-76,-47,-76,-84xm64,-228r70,-53r24,18r-74,54","w":186},"\u00f4":{"d":"50,-80v0,23,7,52,37,52v41,0,49,-49,49,-81v0,-16,-4,-50,-36,-50v-41,0,-50,47,-50,79xm10,-80v0,-57,30,-111,94,-111v32,0,73,19,73,83v0,78,-43,112,-91,112v-61,0,-76,-47,-76,-84xm39,-238r58,-41r28,0r50,41r-25,19r-41,-35r-48,35","w":186},"\u00f6":{"d":"50,-80v0,23,7,52,37,52v41,0,49,-49,49,-81v0,-16,-4,-50,-36,-50v-41,0,-50,47,-50,79xm10,-80v0,-57,30,-111,94,-111v32,0,73,19,73,83v0,78,-43,112,-91,112v-61,0,-76,-47,-76,-84xm121,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23xm45,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23","w":186},"\u00f2":{"d":"50,-80v0,23,7,52,37,52v41,0,49,-49,49,-81v0,-16,-4,-50,-36,-50v-41,0,-50,47,-50,79xm10,-80v0,-57,30,-111,94,-111v32,0,73,19,73,83v0,78,-43,112,-91,112v-61,0,-76,-47,-76,-84xm82,-281r61,55r-24,17r-62,-54","w":186},"\u00f5":{"d":"50,-80v0,23,7,52,37,52v41,0,49,-49,49,-81v0,-16,-4,-50,-36,-50v-41,0,-50,47,-50,79xm10,-80v0,-57,30,-111,94,-111v32,0,73,19,73,83v0,78,-43,112,-91,112v-61,0,-76,-47,-76,-84xm153,-264r22,16v-9,15,-22,30,-41,30v-26,0,-57,-40,-69,-4r-26,-11v6,-15,19,-36,43,-36v34,0,52,43,71,5","w":186},"\u0161":{"d":"50,-56r0,24v24,9,69,11,69,-21v0,-23,-36,-26,-54,-33v-18,-7,-42,-16,-42,-48v0,-28,21,-57,77,-57v29,0,50,8,56,11r-2,47r-32,0r2,-23v-18,-10,-66,-5,-62,18v6,39,95,18,95,80v0,30,-20,62,-75,62v-30,0,-49,-7,-66,-12r1,-48r33,0xm167,-261r-58,42r-27,0r-51,-42r26,-18r41,35r47,-35","w":173},"\u00fa":{"d":"16,-158r3,-29r67,0r-18,134v0,13,6,21,16,21v23,0,60,-56,73,-155r37,0v-9,49,-11,104,-16,157r26,0r-3,30r-61,0v0,-22,11,-57,12,-81v-14,42,-39,83,-81,83v-74,0,-28,-100,-29,-160r-26,0xm85,-228r70,-53r24,18r-74,54","w":219},"\u00fb":{"d":"16,-158r3,-29r67,0r-18,134v0,13,6,21,16,21v23,0,60,-56,73,-155r37,0v-9,49,-11,104,-16,157r26,0r-3,30r-61,0v0,-22,11,-57,12,-81v-14,42,-39,83,-81,83v-74,0,-28,-100,-29,-160r-26,0xm51,-238r58,-41r28,0r51,41r-26,19r-41,-35r-48,35","w":219},"\u00fc":{"d":"16,-158r3,-29r67,0r-18,134v0,13,6,21,16,21v23,0,60,-56,73,-155r37,0v-9,49,-11,104,-16,157r26,0r-3,30r-61,0v0,-22,11,-57,12,-81v-14,42,-39,83,-81,83v-74,0,-28,-100,-29,-160r-26,0xm133,-244v0,-12,8,-24,25,-24v17,0,24,10,24,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23xm57,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23","w":219},"\u00f9":{"d":"16,-158r3,-29r67,0r-18,134v0,13,6,21,16,21v23,0,60,-56,73,-155r37,0v-9,49,-11,104,-16,157r26,0r-3,30r-61,0v0,-22,11,-57,12,-81v-14,42,-39,83,-81,83v-74,0,-28,-100,-29,-160r-26,0xm95,-281r60,55r-24,17r-62,-54","w":219},"\u00fd":{"d":"-3,91r3,-30v45,12,63,-26,78,-58r-48,-161r-24,0r2,-29r55,0r38,150v12,-43,30,-80,45,-121r-29,0r2,-29r64,0r-2,28v-35,76,-89,254,-161,254v-6,0,-15,-1,-23,-4xm68,-228r69,-53r24,18r-74,54","w":193},"\u00ff":{"d":"-3,91r3,-30v45,12,63,-26,78,-58r-48,-161r-24,0r2,-29r55,0r38,150v12,-43,30,-80,45,-121r-29,0r2,-29r64,0r-2,28v-35,76,-89,254,-161,254v-6,0,-15,-1,-23,-4xm117,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23xm41,-244v0,-12,7,-24,24,-24v17,0,25,10,25,22v0,18,-11,25,-26,25v-12,0,-23,-6,-23,-23","w":193},"\u017e":{"d":"9,0r3,-28r109,-130r-66,0r-2,25r-33,0r5,-54r146,0r-2,27r-111,132v22,-2,48,-2,73,-2r3,-26r33,0r-5,56r-153,0xm170,-261r-58,42r-27,0r-51,-42r26,-18r41,35r47,-35","w":180},"\u00a0":{"w":106,"k":{"Y":40,"W":13,"V":33,"T":13,"A":13}}}});
;

