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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n>1)); }, 'strings': { "Cancel": "CancelÂ·la", "Save": "Desa", "Update": "Actualitza", "Not published": "No publicat", "Automatic alias": "Ã€lies automÃ tic", "\x3cnone\x3e": "\x3ccap\x3e", "A comma-separated list of terms describing this content. Example: funny, bungee jumping, \"Company, Inc.\".": "Una llista separada per coma de termes que descriuen aquest contingut. Exemple: divertit, ponting, \"Empresa, S.A.\".", "Add": "Afegeix", "Anonymous": "AnÃ²nim", "1 attachment": [ "1 adjunt", "@count adjunts" ], "Drag to re-order": "Arrossegueu per canviar l\'ordre", "Changes made in this table will not be saved until the form is submitted.": "Els canvis fets en aquesta taula no es desaran fins que no envieu el formulari.", "Deselect all rows in this table": "Deselecciona totes les fileres d\'aquesta taula", "Unspecified error": "Error no especificat", "Select all rows in this table": "Selecciona totes les fileres d\'aquesta taula", "Close": "Tanca", "Updating parents...": "Actualitzant els pares...", "An error occurred:\\n\\n@error": "S\'ha produÃ¯t un error:\\n\\n@error", "By @name on @date": "Per @name el @date", "By @name": "Per @name", "Not in menu": "No estÃ  al menÃº", "Alias: @alias": "Ã€lies: @alias", "No alias": "No hi ha Ã lies", "jQuery UI Tabs: Mismatching fragment identifier.": "Pestanyes de jQuery UI: No coincideix l\'identificador de fragment.", "jQuery UI Tabs: Not enough arguments to add tab.": "Pestanyes de jQuery UI: No hi ha suficients arguments per afegir una pestanya.", "Key": "Clau", "Loading...": "Carregant...", "New revision": "Nova revisiÃ³", "@number comments per page": "@number comentaris per pÃ gina", "Requires a title": "Requereix un tÃ­tol", "No body": "Sense cos", "No revision": "No hi ha cap revisiÃ³", "Insert": "Insert", "Not restricted": "Sense restriccions", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Els canvis fets a aquest bloc no es desaran fins que no es premi el botÃ³ \x3cem\x3eDesar blocs\x3c/em\x3e.", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "No s\'ha pogut carregar el fitxer %filename seleccionat. NomÃ©s sÃ³n permesos els fitxers amb les segÃ¼ents extensions: %extensions.", "Show password": "Mostra la contrasenya" } };;
// $Id: jstools.js,v 1.26 2008/04/03 17:59:37 nedjo Exp $

Drupal.preventSelect = function (elt) {
  // IE hack to prevent selection of the text when users click.
  if (document.onselectstart) {
    elt.onselectstart = function () {
      return false;
    }
  }
  else {
    $(elt).mousedown(function () {
      return false;
    });
  }
};

Drupal.url = function (path, query, fragment) {
  query = query ? query : '';
  fragment = fragment ? '#' + fragment : '';
  var base = Drupal.settings.basePath;
  if (!Drupal.settings.jstools.cleanurls) {
    if (query) {
      return base + '?q=' + path + '&' + query + fragment;
    }
    else {
      return base + '?q=' + path + fragment;
    }
  }
  else {
    if (query) {
      return base + path + '?' + query + fragment;
    }
    else {
      return base + path + fragment;
    }
  }
};

/**
 * Return the Drupal path portion of an href.
 */
Drupal.getPath = function (href) {
  href = Drupal.pathPortion(href);
  // 3 is the length of the '?q=' added to the url without clean urls.
  href = href.substring(Drupal.settings.basePath.length + (Drupal.settings.jstools.cleanurls ? 0 : 3), href.length);
  var chars = ['#', '?', '&'];
  for (i in chars) {
    if (href.indexOf(chars[i]) > -1) {
      href = href.substr(0, href.indexOf(chars[i]));
    }
  }
  return href;
};

/**
 * Add a segment to the beginning of a path.
 */
Drupal.prependPath = function (href, segment) {
  href = Drupal.pathPortion(href);
  // 3 is the length of the '?q=' added to the url without clean urls.
  var baseLength = Drupal.settings.jstools.basePath.length + (Drupal.settings.jstools.cleanurls ? 0 : 3);
  var base = href.substring(0, baseLength);
  return base + segment + '/' + href.substring(baseLength, href.length);
};

/**
 * Strip off the protocol plus domain from an href.
 */
Drupal.pathPortion = function (href) {
  // Remove e.g. http://example.com if present.
  var protocol = window.location.protocol;
  if (href.substring(0, protocol.length) == protocol) {
    // 2 is the length of the '//' that normally follows the protocol
    href = href.substring(href.indexOf('/', protocol.length + 2));
  }
  return href;
};

/**
 * Scroll to a given element's vertical page position.
 */
Drupal.scrollTo = function(el) {
  var pos = Drupal.absolutePosition(el);
  window.scrollTo(0, pos.y);
};

Drupal.elementChildren = function (element) {
  var children = [];
  for (i in element) {
    if (i.substr(0, 1) != '#') {
      children[children.length] = i;
    }
  }
  return children;
};

Drupal.elementProperties = function (element) {
  var properties = [];
  for (i in element) {
    if (i.substr(0, 1) == '#') {
      properties[properties.length] = i;
    }
  }
  return properties;
};

Drupal.parseQueryString = function (href) {
  query = Drupal.getQueryString(href);
  var args = {};
  var pairs = query.split("&");
  for(var i = 0; i < pairs.length; i++) {
    var pos = pairs[i].indexOf('=');
    if (pos == -1) continue;
    var argname = pairs[i].substring(0, pos);
    var value = pairs[i].substring(pos + 1);
    args[argname] = unescape(value.replace(/\+/g, " "));
  }
  return args;
};

Drupal.getQueryString = function (href) {
  if (href) {
    var index = href.indexOf('?');
    href = (index == -1) ? '' : href.substring(index + 1);
  }
  query = href ? href : location.search.substring(1);
  if (!Drupal.settings.jstools.cleanurls) {
    var index = query.indexOf('&');
    query = (index == -1) ? '' : query.substring(index + 1);
  }
  return query;
};

Drupal.pathMatch = function (path, paths, type) {
  // Convert paths into a regular expression.
  paths = '^' + paths + '$';
  paths = paths.replace(/\n/g, '$|^');
  paths = paths.replace(/\*/g, '.*');
  var search = path.search(new RegExp(paths)) > -1 ? true : false;
  return (type == 0) ? search : !search;
};

/**
 * Retrieves the absolute position of an element on the screen
 */
Drupal.absolutePosition = function (el) {
  var sLeft = 0, sTop = 0;
  var isDiv = /^div$/i.test(el.tagName);
  if (isDiv && el.scrollLeft) {
    sLeft = el.scrollLeft;
  }
  if (isDiv && el.scrollTop) {
    sTop = el.scrollTop;
  }
  var r = { x: el.offsetLeft - sLeft, y: el.offsetTop - sTop };
  if (el.offsetParent) {
    var tmp = Drupal.absolutePosition(el.offsetParent);
    r.x += tmp.x;
    r.y += tmp.y;
  }
  return r;
};

/**
 *  Returns the position of the mouse cursor based on the event object passed
 */
Drupal.mousePosition = function(e) {
  return { x: e.clientX + document.documentElement.scrollLeft, y: e.clientY + document.documentElement.scrollTop };
};;
// $Id: collapsiblock.js,v 1.8 2010/10/02 00:42:28 gagarine Exp $

Drupal.Collapsiblock = Drupal.Collapsiblock || {};

Drupal.behaviors.collapsiblock = function (context) {
  var cookieData = Drupal.Collapsiblock.getCookieData();
  var slidetype = Drupal.settings.collapsiblock.slide_type;
  var defaultState = Drupal.settings.collapsiblock.default_state;
  var slidespeed = parseInt(Drupal.settings.collapsiblock.slide_speed);
  var title = Drupal.settings.collapsiblock.block_title;
  var block = Drupal.settings.collapsiblock.block;
  var block_content = Drupal.settings.collapsiblock.block_content;
  $(block + ':not(.collapsiblock-processed)', context).addClass('collapsiblock-processed').each(function () {
    var id = this.id;
    var titleElt = $(title, this).not($('.content :header',this));
    if (titleElt.size()) {
      titleElt = titleElt[0];
      // Status values: 1 = not collapsible, 2 = collapsible and expanded, 3 = collapsible and collapsed, 4 = always collapsed
      var stat = Drupal.settings.collapsiblock.blocks[this.id] ? Drupal.settings.collapsiblock.blocks[this.id] : defaultState;
      if (stat == 1) {
        return;
      }

      titleElt.target = $(this).find(block_content);
      $(titleElt)
      .wrapInner('<a href="#" role="link" />')
      .addClass('collapsiblock')
      .click(function (e) {
        var st = Drupal.Collapsiblock.getCookieData();
        if ($(this).is('.collapsiblockCollapsed')) {
          $(this).removeClass('collapsiblockCollapsed');
          if (slidetype == 1) {
            $(this.target).slideDown(slidespeed).attr('aria-hidden', false); ;
          }
          else {
            $(this.target).animate({
              height:'show',
              opacity:'show'
            }, slidespeed);
          }

          // Don't save cookie data if the block is always collapsed.
          if (stat != 4) {
            st[id] = 1;
          }
        }
        else {
          $(this).addClass('collapsiblockCollapsed');
          if (slidetype == 1) {
            $(this.target).slideUp(slidespeed).attr('aria-hidden', true);
          }
          else {
            $(this.target).animate({
              height:'hide',
              opacity:'hide'
            }, slidespeed);
          }

          // Don't save cookie data if the block is always collapsed.
          if (stat != 4) {
            st[id] = 0;
          }
        }
        // Stringify the object in JSON format for saving in the cookie.
        var cookieString = '{ ';
        var cookieParts = [];
        $.each(st, function (id, setting) {
          cookieParts[cookieParts.length] = ' "' + id + '": ' + setting;
        });
        cookieString += cookieParts.join(', ') + ' }';
        $.cookie('collapsiblock', cookieString, {
          path: Drupal.settings.basePath
          });
        e.preventDefault();
      });
      // Leave active blocks uncollapsed. If the block is expanded, do nothing.
      if (stat ==  4 || (cookieData[id] == 0 || (stat == 3 && cookieData[id] == undefined)) && !$(this).find('a.active').size()) {
        $(titleElt).addClass('collapsiblockCollapsed');
        $(titleElt.target).hide();
      }
    }
  });
};

Drupal.Collapsiblock.getCookieData = function () {
  var cookieString = $.cookie('collapsiblock');
  return cookieString ? Drupal.parseJson(cookieString) : {};
};

  

;
/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

/**
 * Create a cookie with the given name and value and other optional parameters.
 *
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
 *       used when the cookie was set.
 *
 * @param String name The name of the cookie.
 * @param String value The value of the cookie.
 * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
 * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
 *                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
 *                             If set to null or omitted, the cookie will be a session cookie and will not be retained
 *                             when the the browser exits.
 * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
 * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
 *                        require a secure protocol (like HTTPS).
 * @type undefined
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

/**
 * Get the value of a cookie with the given name.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String name The name of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // CAUTION: Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};;
// ColorBox v1.3.17.2 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(a,b,c){function bc(b){if(!U){P=b,_(),y=a(P),Q=0,K.rel!=="nofollow"&&(y=a("."+g).filter(function(){var b=a.data(this,e).rel||this.rel;return b===K.rel}),Q=y.index(P),Q===-1&&(y=y.add(P),Q=y.length-1));if(!S){S=T=!0,r.show();if(K.returnFocus)try{P.blur(),a(P).one(l,function(){try{this.focus()}catch(a){}})}catch(c){}q.css({opacity:+K.opacity,cursor:K.overlayClose?"pointer":"auto"}).show(),K.w=Z(K.initialWidth,"x"),K.h=Z(K.initialHeight,"y"),X.position(),o&&z.bind("resize."+p+" scroll."+p,function(){q.css({width:z.width(),height:z.height(),top:z.scrollTop(),left:z.scrollLeft()})}).trigger("resize."+p),ba(h,K.onOpen),J.add(D).hide(),I.html(K.close).show()}X.load(!0)}}function bb(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;K.slideshow&&y[1]?(d=function(){F.text(K.slideshowStop).unbind(c).bind(j,function(){if(Q<y.length-1||K.loop)a=setTimeout(X.next,K.slideshowSpeed)}).bind(i,function(){clearTimeout(a)}).one(c+" "+k,e),r.removeClass(b+"off").addClass(b+"on"),a=setTimeout(X.next,K.slideshowSpeed)},e=function(){clearTimeout(a),F.text(K.slideshowStart).unbind([j,i,k,c].join(" ")).one(c,d),r.removeClass(b+"on").addClass(b+"off")},K.slideshowAuto?d():e()):r.removeClass(b+"off "+b+"on")}function ba(b,c){c&&c.call(P),a.event.trigger(b)}function _(b){K=a.extend({},a.data(P,e));for(b in K)a.isFunction(K[b])&&b.substring(0,2)!=="on"&&(K[b]=K[b].call(P));K.rel=K.rel||P.rel||"nofollow",K.href=K.href||a(P).attr("href"),K.title=K.title||P.title,typeof K.href=="string"&&(K.href=a.trim(K.href))}function $(a){return K.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function Z(a,b){return Math.round((/%/.test(a)?(b==="x"?z.width():z.height())/100:1)*parseInt(a,10))}function Y(c,d,e){e=b.createElement("div"),c&&(e.id=f+c),e.style.cssText=d||"";return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0,top:!1,bottom:!1,left:!1,right:!1,fixed:!1,data:!1},e="colorbox",f="cbox",g=f+"Element",h=f+"_open",i=f+"_load",j=f+"_complete",k=f+"_cleanup",l=f+"_closed",m=f+"_purge",n=a.browser.msie&&!a.support.opacity,o=n&&a.browser.version<7,p=f+"_IE6",q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X;X=a.fn[e]=a[e]=function(b,c){var f=this;b=b||{};if(!f[0]){if(f.selector)return f;f=a("<a/>"),b.open=!0}c&&(b.onComplete=c),f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(g)}),(a.isFunction(b.open)&&b.open.call(f)||b.open)&&bc(f[0]);return f},X.init=function(){z=a(c),r=Y().attr({id:e,"class":n?f+(o?"IE6":"IE"):""}),q=Y("Overlay",o?"position:absolute":"").hide(),s=Y("Wrapper"),t=Y("Content").append(A=Y("LoadedContent","width:0; height:0; overflow:hidden"),C=Y("LoadingOverlay").add(Y("LoadingGraphic")),D=Y("Title"),E=Y("Current"),G=Y("Next"),H=Y("Previous"),F=Y("Slideshow").bind(h,bb),I=Y("Close")),s.append(Y().append(Y("TopLeft"),u=Y("TopCenter"),Y("TopRight")),Y(!1,"clear:left").append(v=Y("MiddleLeft"),t,w=Y("MiddleRight")),Y(!1,"clear:left").append(Y("BottomLeft"),x=Y("BottomCenter"),Y("BottomRight"))).children().children().css({"float":"left"}),B=Y(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(q,r.append(s,B)),t.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),L=u.height()+x.height()+t.outerHeight(!0)-t.height(),M=v.width()+w.width()+t.outerWidth(!0)-t.width(),N=A.outerHeight(!0),O=A.outerWidth(!0),r.css({"padding-bottom":L,"padding-right":M}).hide(),G.click(function(){X.next()}),H.click(function(){X.prev()}),I.click(function(){X.close()}),J=G.add(H).add(E).add(F),t.children().removeClass("hover"),q.click(function(){K.overlayClose&&X.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;S&&K.escKey&&b===27&&(a.preventDefault(),X.close()),S&&K.arrowKey&&y[1]&&(b===37?(a.preventDefault(),H.click()):b===39&&(a.preventDefault(),G.click()))})},X.remove=function(){r.add(q).remove(),a("."+g).removeData(e).removeClass(g)},X.position=function(a,c){function g(a){u[0].style.width=x[0].style.width=t[0].style.width=a.style.width,C[0].style.height=C[1].style.height=t[0].style.height=v[0].style.height=w[0].style.height=a.style.height}var d=0,e=0;z.unbind("resize."+f),r.hide(),K.fixed&&!o?r.css({position:"fixed"}):(d=z.scrollTop(),e=z.scrollLeft(),r.css({position:"absolute"})),K.right!==!1?e+=Math.max(z.width()-K.w-O-M-Z(K.right,"x"),0):K.left!==!1?e+=Z(K.left,"x"):e+=Math.round(Math.max(z.width()-K.w-O-M,0)/2),K.bottom!==!1?d+=Math.max(b.documentElement.clientHeight-K.h-N-L-Z(K.bottom,"y"),0):K.top!==!1?d+=Z(K.top,"y"):d+=Math.round(Math.max(b.documentElement.clientHeight-K.h-N-L,0)/2),r.show(),a=r.width()===K.w+O&&r.height()===K.h+N?0:a||0,s[0].style.width=s[0].style.height="9999px",r.dequeue().animate({width:K.w+O,height:K.h+N,top:d,left:e},{duration:a,complete:function(){g(this),T=!1,s[0].style.width=K.w+O+M+"px",s[0].style.height=K.h+N+L+"px",c&&c(),setTimeout(function(){z.bind("resize."+f,X.position)},1)},step:function(){g(this)}})},X.resize=function(a){if(S){a=a||{},a.width&&(K.w=Z(a.width,"x")-O-M),a.innerWidth&&(K.w=Z(a.innerWidth,"x")),A.css({width:K.w}),a.height&&(K.h=Z(a.height,"y")-N-L),a.innerHeight&&(K.h=Z(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=A.wrapInner("<div style='overflow:auto'></div>").children();K.h=b.height(),b.replaceWith(b.children())}A.css({height:K.h}),X.position(K.transition==="none"?0:K.speed)}},X.prep=function(b){function h(){K.h=K.h||A.height(),K.h=K.mh&&K.mh<K.h?K.mh:K.h;return K.h}function g(){K.w=K.w||A.width(),K.w=K.mw&&K.mw<K.w?K.mw:K.w;return K.w}if(!!S){var c,d=K.transition==="none"?0:K.speed;A.remove(),A=Y("LoadedContent").append(b),A.hide().appendTo(B.show()).css({width:g(),overflow:K.scrolling?"auto":"hidden"}).css({height:h()}).prependTo(t),B.hide(),a(R).css({"float":"none"}),o&&a("select").not(r.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(k,function(){this.style.visibility="inherit"}),c=function(){function o(){n&&r[0].style.removeAttribute("filter")}var b,c,g,h,i=y.length,k,l;!S||(l=function(){clearTimeout(W),C.hide(),ba(j,K.onComplete)},n&&R&&A.fadeIn(100),D.html(K.title).add(A).show(),i>1?(typeof K.current=="string"&&E.html(K.current.replace("{current}",Q+1).replace("{total}",i)).show(),G[K.loop||Q<i-1?"show":"hide"]().html(K.next),H[K.loop||Q?"show":"hide"]().html(K.previous),b=Q?y[Q-1]:y[i-1],g=Q<i-1?y[Q+1]:y[0],K.slideshow&&F.show(),K.preloading&&(h=a.data(g,e).href||g.href,c=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,c=a.isFunction(c)?c.call(b):c,$(h)&&(a("<img/>")[0].src=h),$(c)&&(a("<img/>")[0].src=c))):J.hide(),K.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],K.fastIframe?l():a(k).one("load",l),k.name=f+ +(new Date),k.src=K.href,K.scrolling||(k.scrolling="no"),n&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(A).one(m,function(){k.src="//about:blank"})):l(),K.transition==="fade"?r.fadeTo(d,1,o):o())},K.transition==="fade"?r.fadeTo(d,0,function(){X.position(0,c)}):X.position(d,c)}},X.load=function(b){var c,d,e=X.prep;T=!0,R=!1,P=y[Q],b||_(),ba(m),ba(i,K.onLoad),K.h=K.height?Z(K.height,"y")-N-L:K.innerHeight&&Z(K.innerHeight,"y"),K.w=K.width?Z(K.width,"x")-O-M:K.innerWidth&&Z(K.innerWidth,"x"),K.mw=K.w,K.mh=K.h,K.maxWidth&&(K.mw=Z(K.maxWidth,"x")-O-M,K.mw=K.w&&K.w<K.mw?K.w:K.mw),K.maxHeight&&(K.mh=Z(K.maxHeight,"y")-N-L,K.mh=K.h&&K.h<K.mh?K.h:K.mh),c=K.href,W=setTimeout(function(){C.show()},100),K.inline?(Y().hide().insertBefore(a(c)[0]).one(m,function(){a(this).replaceWith(A.children())}),e(a(c))):K.iframe?e(" "):K.html?e(K.html):$(c)?(a(R=new Image).addClass(f+"Photo").error(function(){K.title=!1,e(Y("Error").text("This image could not be loaded"))}).load(function(){var a;R.onload=null,K.scalePhotos&&(d=function(){R.height-=R.height*a,R.width-=R.width*a},K.mw&&R.width>K.mw&&(a=(R.width-K.mw)/R.width,d()),K.mh&&R.height>K.mh&&(a=(R.height-K.mh)/R.height,d())),K.h&&(R.style.marginTop=Math.max(K.h-R.height,0)/2+"px"),y[1]&&(Q<y.length-1||K.loop)&&(R.style.cursor="pointer",R.onclick=function(){X.next()}),n&&(R.style.msInterpolationMode="bicubic"),setTimeout(function(){e(R)},1)}),setTimeout(function(){R.src=c},1)):c&&B.load(c,K.data,function(b,c,d){e(c==="error"?Y("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},X.next=function(){!T&&y[1]&&(Q<y.length-1||K.loop)&&(Q=Q<y.length-1?Q+1:0,X.load())},X.prev=function(){!T&&y[1]&&(Q||K.loop)&&(Q=Q?Q-1:y.length-1,X.load())},X.close=function(){S&&!U&&(U=!0,S=!1,ba(k,K.onCleanup),z.unbind("."+f+" ."+p),q.fadeTo(200,0),r.stop().fadeTo(300,0,function(){r.add(q).css({opacity:1,cursor:"auto"}).hide(),ba(m),A.remove(),setTimeout(function(){U=!1,ba(l,K.onClosed)},1)}))},X.element=function(){return a(P)},X.settings=d,V=function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),bc(this))},a.fn.delegate?a(b).delegate("."+g,"click",V):a("."+g).live("click",V),a(X.init)})(jQuery,document,this);;
(function ($) {

Drupal.behaviors.initColorbox = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  $('a, area, input', context)
    .filter('.colorbox:not(.initColorbox-processed)')
    .addClass('initColorbox-processed')
    .colorbox(Drupal.settings.colorbox);
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxDefaultStyle = function (context) {
  $(document).bind('cbox_complete', function () {
    // Only run if there is a title.
    if ($('#cboxTitle:empty', context).length == false) {
      setTimeout(function () { $('#cboxTitle', context).slideUp() }, 1500);
      $('#cboxLoadedContent img', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideDown();
      });
      $('#cboxOverlay', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideUp();
      });
    }
    else {
      $('#cboxTitle', context).hide();
    }
  });
};

})(jQuery);
;
// $Id: dhtml_menu.js,v 1.18.2.10 2009/01/12 10:13:30 arancaytar Exp $

/**
 * @file dhtml_menu.js
 * The Javascript code for DHTML Menu
 */
 
Drupal.dhtmlMenu = {};

/**
 * Initialize the module's JS functions
 */
Drupal.behaviors.dhtmlMenu = function() {
  // Do not run this function more than once.
  if (Drupal.dhtmlMenu.init) {
    return;
  }
  else {
    Drupal.dhtmlMenu.init = true;
  }

  // Get the settings.
  var effects = Drupal.settings.dhtmlMenu;

  $('.collapsed').removeClass('expanded');

  // Get cookie
  if (!effects.siblings) {
    var cookie = Drupal.dhtmlMenu.cookieGet();
    for (var i in cookie) {
      // If the cookie was not applied to the HTML code yet, do so now.
      var li = $('#dhtml_menu-' + cookie[i]).parents('li:first');
      if ($(li).hasClass('collapsed')) {
        Drupal.dhtmlMenu.toggleMenu(li);
      }
    }
  }

  /* Add jQuery effects and listeners to all menu items.
   * The ~ (sibling) selector is unidirectional and selects 
   * only the latter element, so we must use siblings() to get 
   * back to the link element.
   */
   $('ul.menu li.dhtml-menu:not(.leaf,.no-dhtml)').each(function() {
    var li = this;
    if (effects.clone) {
      var ul = $(li).find('ul:first');
      if (ul.length) {
        $(li).find('a:first').clone().prependTo(ul).wrap('<li class="leaf fake-leaf"></li>');
      }
    }

    if (effects.doubleclick) {
      $(li).find('a:first').dblclick(function(e) {
        window.location = this.href;
      });
    }

    $(li).find('a:first').click(function(e) {
      Drupal.dhtmlMenu.toggleMenu($(li));
      return false;
    });
  });
}

/**
 * Toggles the menu's state between open and closed.
 *
 * @param li
 *   Object. The <li> element that will be expanded or collapsed.
 */
Drupal.dhtmlMenu.toggleMenu = function(li) {
  var effects = Drupal.settings.dhtmlMenu;

  // If the menu is expanded, collapse it.
  if($(li).hasClass('expanded')) {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'none');

    // If children are closed automatically, find and close them now.
    if (effects.children) {
      if (effects.slide) {
        $(li).find('li.expanded').find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(li).find('li.expanded').find('ul:first').css('display', 'none');

      $(li).find('li.expanded').removeClass('expanded').addClass('collapsed')
    }

    $(li).removeClass('expanded').addClass('collapsed');
  }

  // Otherwise, expand it.
  else {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'show', opacity: 'show'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'block');
    $(li).removeClass('collapsed').addClass('expanded');

    // If the siblings effect is on, close all sibling menus.
    if (effects.siblings) {
      var id = $(li).find('a:first').attr('id');

      // Siblings are all open menus that are neither parents nor children of this menu.
      $(li).find('li').addClass('own-children-temp');
	  
      // If the relativity option is on, select only the siblings that have the same parent
      if (effects.relativity) {
        var siblings = $(li).parent().find('li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }
      // Otherwise, select all menus of the same level
      else {
        var siblings = $('ul.menu li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }

      // If children should not get closed automatically...
      if (!effects.children) {
        // Remove items that are currently hidden from view (do not close these).
        $('li.collapsed li.expanded').addClass('sibling-children-temp');
        // Only close the top-most open sibling, not its children.
        $(siblings).find('li.expanded').addClass('sibling-children-temp');
        siblings = $(siblings).not('.sibling-children-temp');
      }

      $('.own-children-temp, .sibling-children-temp').removeClass('own-children-temp').removeClass('sibling-children-temp');

      if (effects.slide) {
        $(siblings).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(siblings).find('ul:first').css('display', 'none');

      $(siblings).removeClass('expanded').addClass('collapsed');
    }
  }

  // Save the current state of the menus in the cookie.
  Drupal.dhtmlMenu.cookieSet();
}

/**
 * Reads the dhtml_menu cookie.
 */
Drupal.dhtmlMenu.cookieGet = function() {
  var c = /dhtml_menu=(.*?)(;|$)/.exec(document.cookie);
  if (c) {
    return c[1];
  }
  else return '';
}

/**
 * Saves the dhtml_menu cooki.
 */
Drupal.dhtmlMenu.cookieSet = function() {
  var expanded = new Array();
  $('li.expanded').each(function() {
    expanded.push($(this).find('a:first').attr('id').substr(5));
  });
  document.cookie = 'dhtml_menu=' + expanded.join(',') + ';path=/';
}

;

$(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]);
          }
        }
      }
    });
  });
});
;
/**
 * Display banner if Internet Explorer version is less than 7.
 */
Drupal.behaviors.ie6nomore = function (context) {
  if($.browser.msie && $.browser.version < 7) {
    $("body").prepend($("#ie6nomore")).find('#ie6nomore').show();
  }
};
/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */
jQuery.cookie=function(B,I,L){if(typeof I!="undefined"){L=L||{};if(I===null){I="";L.expires=-1}var E="";if(L.expires&&(typeof L.expires=="number"||L.expires.toUTCString)){var F;if(typeof L.expires=="number"){F=new Date();F.setTime(F.getTime()+(L.expires*24*60*60*1000))}else{F=L.expires}E="; expires="+F.toUTCString()}var K=L.path?"; path="+(L.path):"";var G=L.domain?"; domain="+(L.domain):"";var A=L.secure?"; secure":"";document.cookie=[B,"=",encodeURIComponent(I),E,K,G,A].join("")}else{var D=null;if(document.cookie&&document.cookie!=""){var J=document.cookie.split(";");for(var H=0;H<J.length;H++){var C=jQuery.trim(J[H]);if(C.substring(0,B.length+1)==(B+"=")){D=decodeURIComponent(C.substring(B.length+1));break}}}return D}};
;
/* Code first created by Zewa,
 * fixed up by AlexisWilke so it works with any type of page
 */
/**
* Reply, Edit & Delete buttons for included comments.
*
* Store where the user was when clicking add comment or reply,
* and bring him or her back there afterwards.
*/
function insert_node_destination(link){
  var attr=jQuery(link).attr('href');
  var p=attr.indexOf('#');
  var anchor='';
  if(p!=-1){
    anchor=attr.substr(p);
    attr=attr.substr(0,p);
  }
  attr+=attr.indexOf('?')==-1?'?':'&';
  url=location.pathname.substring(1);
  jQuery(link).attr('href',attr+'destination='+url+anchor);
}
jQuery(document).ready(function() {
  jQuery("a[href*='comment/reply'],a[href*='comment/edit'],a[href*='comment/delete']").click(function(){insert_node_destination(this);});
});
;

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

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

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

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

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

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

// Add Superfish to all Nice menus with some basic options.
(function ($) {
  $(document).ready(function() {
    $('ul.nice-menu').superfish({
      // Apply a generic hover class.
      hoverClass: 'over',
      // Disable generation of arrow mark-up.
      autoArrows: false,
      // Disable drop shadows.
      dropShadows: false,
      // Mouse delay.
      delay: Drupal.settings.nice_menus_options.delay,
      // Animation speed.
      speed: Drupal.settings.nice_menus_options.speed
    // Add in Brandon Aaronâ€™s bgIframe plugin for IE select issues.
    // http://plugins.jquery.com/node/46/release
    }).find('ul').bgIframe({opacity:false});
    $('ul.nice-menu ul').css('display', 'none');
  });
})(jQuery);
;
// $Id: extlink.js,v 1.4.2.12 2010/05/26 01:25:56 quicksketch Exp $
(function ($) {

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

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

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

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

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

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

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

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

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

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

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

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

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.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}})());;

Drupal.behaviors.custom_search = function (context) {

  if (!Drupal.settings.custom_search.solr) {
    // Check if the search box is not empty on submit
    $('form.search-form', context).submit(function(){
      var box = $(this).find('input.custom-search-box');
      if (box.val() != undefined && (box.val() == '' || box.val() == $(this).find('input.default-text').val())) {
        $(this).find('input.custom-search-box').addClass('error');
        return false;
      }
      // If basic search is hidden, copy or value to the keys
      if ($(this).find('#edit-keys').parents('div.element-invisible').attr('class') == 'element-invisible') {
        $(this).find('#edit-keys').val($(this).find('#edit-or').val());
        $(this).find('#edit-or').val('');
      }
      return true;
    });
  }

  // Search from target
  $('form.search-form').attr('target', Drupal.settings.custom_search.form_target);

  // Clear default text on focus, and put it back on blur. Also displays Popup.
  $('input.custom-search-box', context)
    .blur(function(e){
      $this = $(this);
      $parentForm = $this.parents('form');
      if ($this.val() == '') {
        $this.addClass('custom-search-default-value');
        $this.val($parentForm.find('input.default-text').val());
      }
    })
    .bind('click focus', function(e){
      $this = $(this);
      $parentForm = $this.parents('form');
      if ($this.val() == $parentForm.find('input.default-text').val()) $this.val('');
      $this.removeClass('custom-search-default-value');
      // check if there's something in the popup and displays it
      var popup = $parentForm.find('fieldset.custom_search-popup');
      if (popup.find('input,select').length && !popup.hasClass('opened')) popup.fadeIn().addClass('opened');
      e.stopPropagation();
    }
  );
  $(document).bind('click focus', function(){
    $('fieldset.custom_search-popup').hide().removeClass('opened');
  });

  // Handle checkboxes
  $('.custom-search-selector input:checkbox', context).each(function(){
    var el = $(this);
    if (el.val() == 'c-all') {
      el.change(function(){
        $(this).parents('.custom-search-selector').find('input:checkbox[value!=c-all]').attr('checked', false);
      });
    }
    else {
      if (el.val().substr(0,2) == 'c-') {
        el.change(function(){
          $('.custom-search-selector input:checkbox').each(function(){
            if ($(this).val().substr(0,2) == 'o-') $(this).attr('checked', false);
          });
          $(this).parents('.custom-search-selector').find('input:checkbox[value=c-all]').attr('checked', false);
        });
      } else {
        el.change(function(){
          $(this).parents('.custom-search-selector').find('input:checkbox[value!='+el.val()+']').attr('checked', false);
        });
      }
    }
  });

  // Reselect types and terms in advanced search
  var edit_keys = $('#edit-keys').val();
  if(edit_keys) {
    // types
    var pos = edit_keys.indexOf('type:');
    if (pos) {
      var pos2 = edit_keys.indexOf(' ',pos);
      if (pos2==-1) pos2 = edit_keys.length;
      var types = edit_keys.substring(pos+5,pos2);
      types = types.split(',');
      for (var i in types) {
        $('.search-form input:checkbox[value='+types[i]+']').attr('checked', true);
      }
    }
    // terms
    var pos = edit_keys.indexOf('category:');
    if (pos) {
      var pos2 = edit_keys.indexOf(' ',pos);
      if (pos2==-1) pos2 = edit_keys.length;
      var terms = edit_keys.substring(pos+9,pos2);
      terms = terms.split(',');
      for (var i in terms) {
        $('.search-form option[value='+terms[i]+']').attr('selected', true);
      }
    }
  }

  var popup = $('fieldset.custom_search-popup:not(.custom_search-processed)', context).addClass("custom_search-processed");
  popup.click(function(e){
    e.stopPropagation();
  })
  popup.append('<a class="custom_search-popup-close" href="#">' + Drupal.t('Close') + '</a>');
  $('a.custom_search-popup-close').click(function(e){
    $('fieldset.custom_search-popup.opened').hide().removeClass('opened');
    e.preventDefault();
  });

}
;

(function($) {

Drupal.RotorBanner = {};

Drupal.RotorBanner.initialize = function() {
    Drupal.RotorBanner.animate();
};

Drupal.RotorBanner.animate = function() {
	// redefine Cycle's updateActivePagerLink function 
	$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex){
		$(pager).find('.rotor-tab').removeClass('selected')
		.filter('.rotor-tab:eq(' + currSlideIndex + ')').addClass('selected');
	};
	
  for (rotor_item in Drupal.settings.RotorBanner) {
    var settings = Drupal.settings.RotorBanner[rotor_item];
    // cache the jquery context for a performance boost
    var $rotor = $('#rotor-view-id-'+ settings.view_id +'-view-display-id-'+ settings.display_id);
    
    if (settings.effect == 'random') {
      settings.effect = 'blindX, blindY, blindZ, cover, curtainX, curtainY, fade, fadeZoom, growX, growY, scrollUp, scrollDown, scrollLeft, scrollRight, scrollHorz, scrollVert, shuffle, slideX, slideY, toss, turnUp, turnDown, turnLeft, turnRight, uncover, wipe, zoom';
      settings.randomize = 1;
    }

    $items = $rotor.find('div.rotor-items');
  	$items.cycle({
  		timeout: settings.time * 1000,
  		speed: settings.speed,
  		fx: settings.effect,
  		randomizeEffects: settings.randomize,
  		pause: settings.pause,
  		cleartypeNoBg: true,
  		pager: $('div.rotor-tabs', $rotor),
  		pagerAnchorBuilder: function(idx, slide){
  			return $('div.rotor-tabs .rotor-tab:eq(' + idx + ')', $rotor); 
  		}
  	}).css('visibility', 'visible');
  }
};

if (Drupal.jsEnabled) {
  $(document).ready(function() {
    Drupal.RotorBanner.initialize();
  });
}

})(jQuery);
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.65 (07-APR-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);

/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.52
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Trademark:
 * Helvetica, Neue Helvetica is a trademark of Heidelberger Druckmaschinen AG
 * which may be registered in certain jurisdictions, exclusively licensed through
 * Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen
 * AG.
 * 
 * Full name:
 * HelveticaNeueLTPro-Cn
 * 
 * Description:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH
 * 
 * Designer:
 * Linotype Library GmbH
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.Linotype.com
 */
Cufon.registerFont({"w":166,"face":{"font-family":"Helvetica Neue LT Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 6 3 5 2 3 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-16 -339 278 76.2302","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"30","unicode-range":"U+0020-U+021B"},"glyphs":{" ":{"w":86,"k":{"\u021a":13,"\u0176":13,"\u0174":13,"\u0162":13,"\u0164":13,"\u0104":13,"\u0102":13,"\u0100":13,"\u0178":13,"\u00dd":13,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"30,0r0,-35r33,0r0,35r-33,0xm36,-67r-6,-190r33,0r-6,190r-21,0","w":92},"\"":{"d":"91,-166r0,-91r24,0r0,91r-24,0xm31,-166r0,-91r24,0r0,91r-24,0","w":146},"#":{"d":"71,-153r-7,55r39,0r6,-55r-38,0xm28,0r10,-74r-30,0r0,-24r33,0r7,-55r-32,0r0,-24r35,0r9,-73r24,0r-9,73r38,0r9,-73r23,0r-9,73r29,0r0,24r-32,0r-7,55r30,0r0,24r-33,0r-9,74r-24,0r10,-74r-38,0r-10,74r-24,0","w":172},"$":{"d":"78,-255r0,-21r15,0r0,21v44,3,64,26,65,70r-32,0v0,-23,-8,-41,-33,-44r0,88v33,12,72,20,72,72v0,54,-38,72,-72,74r0,34r-15,0r0,-34v-54,-2,-70,-32,-70,-83r31,0v0,26,1,53,39,57r0,-94v-33,-10,-67,-22,-67,-71v0,-23,9,-65,67,-69xm78,-146r0,-83v-22,3,-34,17,-34,40v0,24,14,35,34,43xm93,-110r0,89v23,-2,39,-18,39,-43v0,-27,-17,-38,-39,-46","w":172},"%":{"d":"210,5v-43,0,-48,-33,-48,-69v0,-36,5,-69,48,-69v43,0,47,33,47,69v0,36,-4,69,-47,69xm64,-117v-43,0,-47,-33,-47,-69v0,-36,4,-69,47,-69v43,0,47,33,47,69v0,36,-4,69,-47,69xm210,-14v20,0,21,-20,21,-50v0,-30,-1,-50,-21,-50v-20,0,-22,20,-22,50v0,30,2,50,22,50xm67,5r112,-260r25,0r-112,260r-25,0xm64,-136v20,0,21,-20,21,-50v0,-30,-1,-49,-21,-49v-20,0,-22,19,-22,49v0,30,2,50,22,50","w":273},"&":{"d":"99,-144r51,73v5,-13,8,-27,10,-50r28,0v0,19,-11,62,-21,75r33,46r-34,0r-17,-24v-20,19,-36,29,-64,29v-63,0,-76,-48,-76,-71v-1,-37,28,-64,54,-81v-10,-18,-27,-36,-27,-60v0,-30,24,-50,53,-50v33,0,55,14,55,49v0,30,-26,47,-45,64xm134,-46r-57,-81v-21,13,-36,31,-36,58v0,56,69,60,93,23xm80,-172v4,8,8,10,13,2v24,-13,36,-63,-3,-63v-35,0,-29,42,-10,61","w":200},"(":{"d":"68,-257r17,0v-54,98,-51,225,0,323r-17,0v-70,-93,-71,-230,0,-323","w":86},")":{"d":"19,66r-18,0v56,-98,52,-225,0,-323r18,0v68,93,70,230,0,323","w":86},"*":{"d":"53,-214r0,-43r21,0r0,43r39,-15r8,21r-41,12r27,34r-18,13r-26,-36r-26,36r-18,-13r28,-34r-41,-12r8,-21","w":126},"+":{"d":"96,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0","w":216},",":{"d":"27,0r0,-38r33,0v-1,43,8,78,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86,"k":{" ":13}},"-":{"d":"19,-88r0,-28r88,0r0,28r-88,0","w":126},".":{"d":"27,0r0,-38r33,0r0,38r-33,0","w":86,"k":{" ":13}},"\/":{"d":"-4,5r84,-267r24,0r-84,267r-24,0","w":100},"0":{"d":"45,-124v0,54,2,105,41,105v39,0,41,-51,41,-105v0,-56,-2,-107,-41,-107v-39,0,-41,51,-41,107xm86,5v-69,0,-72,-69,-72,-129v0,-56,3,-131,72,-131v69,0,73,69,73,131v0,54,-4,129,-73,129","w":172},"1":{"d":"24,-192r0,-21v32,-2,61,-6,63,-42r22,0r0,255r-31,0r0,-192r-54,0","w":172},"2":{"d":"158,-28r0,28r-143,0v0,-61,41,-93,76,-122v21,-18,34,-33,34,-61v0,-22,-10,-46,-37,-46v-39,0,-40,41,-40,55r-32,0v0,-48,20,-81,72,-81v59,0,69,46,69,68v3,80,-91,94,-109,159r110,0","w":172},"3":{"d":"65,-120r0,-24v36,4,56,-13,55,-45v0,-23,-10,-42,-34,-42v-33,0,-36,32,-36,50r-32,0v0,-43,21,-74,68,-74v84,1,84,102,26,121v27,9,47,22,47,60v0,46,-24,79,-73,79v-69,0,-72,-57,-72,-74r32,0v0,23,11,50,40,50v19,0,41,-9,41,-52v1,-36,-21,-53,-62,-49","w":172},"4":{"d":"11,-90r92,-165r30,0r0,168r29,0r0,25r-29,0r0,62r-30,0r0,-62r-92,0r0,-28xm103,-205v-24,37,-43,79,-65,118r65,0r0,-118","w":172},"5":{"d":"21,-119r14,-131r114,0r0,28r-90,0v-2,24,-9,52,-9,75v43,-42,108,-11,108,65v0,48,-21,87,-74,87v-60,0,-70,-50,-70,-71r32,0v0,13,5,47,39,47v36,0,42,-40,42,-66v0,-28,-11,-58,-43,-58v-22,0,-36,19,-36,25","w":172},"6":{"d":"48,-78v0,27,8,59,40,59v32,0,41,-32,41,-59v0,-27,-8,-59,-41,-59v-33,0,-40,32,-40,59xm154,-194r-31,0v0,-22,-12,-37,-34,-37v-49,0,-47,66,-44,97v5,-10,21,-29,49,-29v44,0,66,33,66,81v0,49,-24,87,-72,87v-71,0,-75,-68,-75,-121v0,-58,3,-139,77,-139v59,0,64,49,64,61","w":172},"7":{"d":"159,-224v-36,47,-78,137,-85,224r-35,0v12,-86,46,-163,91,-222r-116,0r0,-28r145,0r0,26","w":172},"8":{"d":"45,-71v0,30,11,52,41,52v30,0,42,-22,42,-52v0,-30,-12,-53,-42,-53v-30,0,-41,23,-41,53xm86,-231v-23,0,-33,18,-33,42v0,24,10,41,33,41v23,0,34,-17,34,-41v0,-24,-11,-42,-34,-42xm86,5v-93,0,-94,-121,-28,-141v-62,-19,-42,-127,28,-119v70,-8,92,100,28,119v66,21,65,141,-28,141","w":172},"9":{"d":"125,-172v0,-27,-8,-59,-40,-59v-32,0,-41,32,-41,59v0,27,8,59,41,59v33,0,40,-32,40,-59xm18,-56r32,0v0,21,12,37,34,37v49,0,47,-66,44,-97v-5,10,-21,29,-49,29v-44,0,-66,-33,-66,-81v0,-49,24,-87,72,-87v71,0,75,68,75,121v0,58,-3,139,-77,139v-59,0,-65,-49,-65,-61","w":172},":":{"d":"27,0r0,-38r33,0r0,38r-33,0xm27,-144r0,-38r33,0r0,38r-33,0","w":86,"k":{" ":13}},";":{"d":"27,-144r0,-38r33,0r0,38r-33,0xm27,0r0,-38r33,0v-1,43,8,78,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86},"\u037e":{"d":"27,-144r0,-38r33,0r0,38r-33,0xm27,0r0,-38r33,0v-1,43,8,78,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86},"<":{"d":"17,-80r0,-22r182,-83r0,24r-154,70r154,70r0,24","w":216},"=":{"d":"17,-42r0,-24r182,0r0,24r-182,0xm17,-116r0,-24r182,0r0,24r-182,0","w":216},">":{"d":"17,3r0,-24r154,-70r-154,-70r0,-24r182,83r0,22","w":216},"?":{"d":"59,0r0,-35r34,0r0,35r-34,0xm62,-67v-9,-63,55,-72,54,-127v0,-21,-12,-40,-35,-40v-35,0,-38,35,-38,53r-30,0v0,-42,21,-79,67,-79v43,0,67,29,67,68v0,55,-62,69,-57,125r-28,0","w":159},"@":{"d":"188,-175v5,-6,5,-16,9,-23r20,0r-34,118v0,5,4,9,11,9v33,0,60,-38,60,-78v0,-54,-48,-91,-110,-91v-62,0,-110,48,-110,111v0,64,48,112,110,112v45,0,78,-14,98,-40r22,0v-23,40,-64,62,-120,62v-74,0,-134,-60,-134,-134v0,-74,60,-133,134,-133v78,0,134,46,134,111v0,62,-51,102,-93,102v-14,0,-24,-7,-26,-22v-26,37,-96,24,-96,-32v0,-50,33,-102,84,-102v18,0,33,8,41,30xm86,-105v0,20,14,34,34,34v33,0,56,-49,56,-76v0,-16,-11,-36,-29,-36v-35,0,-61,45,-61,78","w":288},"A":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"B":{"d":"53,-231r0,85v42,-2,72,13,79,-43v5,-41,-36,-45,-79,-42xm21,0r0,-257v72,2,143,-17,145,66v1,24,-17,45,-38,54v32,8,46,32,46,64v0,79,-75,75,-153,73xm53,-122r0,96r43,0v33,0,45,-22,45,-47v-1,-50,-40,-51,-88,-49","w":186},"C":{"d":"145,-88r33,0v-3,49,-22,93,-78,93v-73,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v52,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67","w":186},"D":{"d":"24,0r0,-257r69,0v80,0,90,57,90,128v0,65,-16,129,-87,129r-72,0xm56,-231r0,205r33,0v55,0,61,-56,61,-102v0,-50,-3,-103,-61,-103r-33,0","w":200,"k":{"\u0176":7,"\u0178":7,"\u00dd":7,"Y":7}},"E":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0"},"F":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,120r-32,0","w":159,"k":{"\u0159":7,"\u0157":7,"\u0155":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u012f":6,"\u0119":9,"\u0117":9,"\u0115":9,"\u0113":9,"\u011b":9,"\u0105":7,"\u0103":7,"\u0101":7,"\u0104":19,"\u0102":19,"\u0100":19,"\u00f5":7,"\u00f2":7,"\u00f6":7,"\u00f4":7,"\u00f3":7,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e3":7,"\u00e5":7,"\u00e0":7,"\u00e4":7,"\u00e2":7,"\u00e1":7,"\u00c3":19,"\u00c5":19,"\u00c0":19,"\u00c4":19,"\u00c2":19,"\u00c1":19,"r":7,"o":7,"i":6,"e":9,"a":7,"A":19,".":40,",":40}},"G":{"d":"176,-186r-33,0v-2,-27,-11,-50,-43,-50v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,47,-53,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-7,22,-28,40,-56,40v-67,0,-79,-65,-79,-134v0,-65,12,-133,83,-133v73,0,76,63,76,76","w":193},"H":{"d":"172,-257r0,257r-31,0r0,-124r-88,0r0,124r-32,0r0,-257r32,0r0,105r88,0r0,-105r31,0","w":193},"I":{"d":"21,0r0,-257r32,0r0,257r-32,0","w":73},"J":{"d":"132,-257r0,183v0,46,-11,79,-64,79v-51,0,-63,-34,-60,-80r30,0v-1,29,1,55,30,54v29,0,33,-18,33,-54r0,-182r31,0","w":153},"K":{"d":"21,0r0,-257r32,0r0,125r89,-125r35,0r-77,107r84,150r-35,0r-70,-124r-26,37r0,87r-32,0","w":180,"k":{"\u0177":4,"\u0173":7,"\u0171":7,"\u016f":7,"\u016d":7,"\u016b":7,"\u0169":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u00ff":4,"\u00fd":4,"\u00f9":7,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f5":7,"\u00f2":7,"\u00f6":7,"\u00f4":7,"\u00f3":7,"y":4,"u":7,"o":7}},"L":{"d":"21,0r0,-257r32,0r0,229r104,0r0,28r-136,0","w":159,"k":{"\u021a":34,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":34,"\u0164":34,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"M":{"d":"22,0r0,-257r53,0r52,204r52,-204r53,0r0,257r-32,0r-1,-225r-56,225r-32,0r-58,-225r0,225r-31,0","w":253},"N":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0","w":200},"O":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"P":{"d":"53,-231r0,96v46,2,77,1,80,-50v2,-42,-35,-50,-80,-46xm21,0r0,-257r65,0v22,0,80,0,80,74v0,63,-47,80,-113,74r0,109r-32,0","w":173,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":13,"\u0102":13,"\u0100":13,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"o":6,"e":6,"a":6,"A":13,".":46,",":46}},"Q":{"d":"123,-27r-24,-22r17,-20r24,22v15,-52,26,-189,-40,-189v-44,0,-50,48,-50,107v0,69,15,127,73,102xm170,15r-26,-23v-11,8,-26,13,-44,13v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v71,0,83,68,83,133v0,37,-4,76,-21,102r26,24","w":200},"R":{"d":"53,-231r0,91v45,-3,78,14,84,-50v4,-40,-41,-44,-84,-41xm21,0r0,-257v71,-1,149,-10,149,64v0,28,-12,57,-40,66v58,-1,23,105,53,127r-39,0v-11,-16,-8,-52,-10,-77v-7,-53,-39,-33,-81,-37r0,114r-32,0","w":186,"k":{"\u021a":6,"\u0176":6,"\u0174":-7,"\u0172":-7,"\u0170":-7,"\u016e":-7,"\u016c":-7,"\u016a":-7,"\u0168":-7,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-7,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"Y":6,"W":-7,"U":-7,"T":6}},"S":{"d":"162,-190r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123v0,59,-44,76,-80,76v-60,0,-78,-31,-78,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,24,72,72","w":180},"T":{"d":"99,-229r0,229r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81","w":186},"V":{"d":"62,0r-63,-257r33,0r52,221r50,-221r33,0r-65,257r-40,0","k":{"\u0173":6,"\u0171":6,"\u016f":6,"\u016d":6,"\u016b":6,"\u0169":6,"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":13,"\u0102":13,"\u0100":13,"\u00f9":6,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"54,0r-51,-257r32,0r40,210r36,-210r38,0r37,210r39,-210r32,0r-53,257r-38,0r-36,-208r-37,208r-39,0","w":259,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":6,"\u0102":6,"\u0100":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"69,-131r-63,-126r35,0r47,96r47,-96r33,0r-64,126r68,131r-35,0r-51,-103r-52,103r-33,0","w":173},"Y":{"d":"67,-101r-68,-156r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101","k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":11,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,0r0,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0"},"[":{"d":"28,66r0,-323r65,0r0,24r-37,0r0,275r37,0r0,24r-65,0","w":93},"\\":{"d":"80,5r-84,-267r24,0r84,267r-24,0","w":100},"]":{"d":"65,-257r0,323r-64,0r0,-24r36,0r0,-275r-36,0r0,-24r64,0","w":93},"^":{"d":"17,-94r82,-156r18,0r82,156r-24,0r-67,-130r-67,130r-24,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"a":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"b":{"d":"20,0r0,-257r30,0r1,86v7,-17,24,-27,44,-27v52,0,59,62,59,102v0,54,-18,101,-63,101v-21,0,-38,-15,-42,-29r0,24r-29,0xm48,-96v0,39,6,75,39,75v28,0,35,-31,35,-75v0,-46,-7,-76,-35,-76v-33,0,-39,39,-39,76"},"c":{"d":"142,-134r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,30,-16,72,-64,72v-48,0,-66,-32,-66,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64","w":153,"k":{"\u0140":7,"\u0177":7,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"d":{"d":"147,-257r0,257r-29,0v-1,-7,2,-18,-1,-24v-4,14,-20,29,-41,29v-46,0,-63,-41,-63,-101v0,-40,5,-102,60,-102v18,-1,35,12,44,27r0,-86r30,0xm44,-96v0,46,8,75,36,75v33,0,38,-31,38,-75v0,-37,-5,-76,-38,-76v-28,0,-36,30,-36,76","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"e":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57","w":159},"f":{"d":"29,0r0,-169r-28,0r0,-24r28,0v-5,-49,12,-74,64,-67r0,26v-18,-1,-34,-1,-34,18r0,23r33,0r0,24r-33,0r0,169r-30,0","w":93},"g":{"d":"147,-193r0,181v0,58,-27,78,-66,78v-12,0,-58,0,-63,-48r30,0v1,18,15,24,31,24v50,0,38,-36,37,-68v-7,16,-25,26,-44,26v-56,0,-59,-70,-59,-96v0,-52,14,-102,63,-102v22,-1,36,17,42,30r0,-25r29,0xm80,-172v-28,0,-36,30,-36,76v0,31,5,70,35,70v33,0,39,-30,39,-70v0,-37,-5,-76,-38,-76","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"h":{"d":"20,0r0,-257r30,0r1,86v8,-16,29,-27,46,-27v50,0,50,38,50,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0"},"i":{"d":"22,-222r0,-35r30,0r0,35r-30,0xm22,0r0,-193r30,0r0,193r-30,0","w":73},"j":{"d":"52,-257r0,35r-30,0r0,-35r30,0xm52,-193r0,212v2,37,-22,51,-60,46r0,-26v23,5,30,-7,30,-31r0,-201r30,0","w":73},"k":{"d":"95,-120r69,120r-35,0r-54,-95r-25,30r0,65r-30,0r0,-257r30,0r1,153r67,-89r36,0","w":159},"l":{"d":"22,0r0,-257r30,0r0,257r-30,0","w":73,"k":{"\u0175":-4,"w":-4}},"m":{"d":"23,0r0,-193r28,0v1,7,-2,18,1,23v15,-35,81,-41,89,3v9,-17,25,-31,45,-31v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-1,-39,-26,-39v-14,0,-36,9,-36,39r0,133r-30,0r0,-133v0,-15,-1,-39,-26,-39v-14,0,-36,9,-36,39r0,133r-30,0","w":259},"n":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"o":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"p":{"d":"20,63r0,-256r29,0r0,24v4,-14,21,-29,42,-29v46,0,63,40,63,98v0,44,-13,105,-63,105v-18,1,-32,-12,-41,-27r0,85r-30,0xm48,-96v0,37,6,75,39,75v28,0,35,-29,35,-79v0,-42,-7,-72,-35,-72v-33,0,-39,32,-39,76"},"q":{"d":"118,-96v0,-44,-5,-76,-38,-76v-28,0,-36,30,-36,72v0,50,8,79,36,79v33,0,38,-38,38,-75xm117,63r-1,-85v-7,17,-23,27,-40,27v-50,0,-63,-52,-63,-105v0,-58,17,-98,63,-98v22,-1,36,17,42,29r0,-24r29,0r0,256r-30,0"},"r":{"d":"20,0r0,-193r30,0v1,9,-2,22,1,29v10,-22,27,-40,55,-32r0,30v-26,-7,-56,5,-56,44r0,122r-30,0","w":106,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,95,20,95,90v0,40,-27,60,-63,60v-66,0,-66,-48,-66,-68r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32","w":146,"k":{"\u0175":-4,"w":-4}},"t":{"d":"29,-193r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-4,21,16,23,33,20r0,25v-29,6,-72,-1,-63,-36r0,-133r-28,0r0,-24r28,0","w":93},"u":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0"},"v":{"d":"56,0r-52,-193r33,0r36,155r36,-155r34,0r-53,193r-34,0","w":146,"k":{".":20,",":20}},"w":{"d":"49,0r-45,-193r31,0r32,158r33,-158r35,0r33,158r30,-158r32,0r-46,193r-33,0r-35,-158r-32,158r-35,0","w":233,"k":{".":13,",":13}},"x":{"d":"55,-100r-49,-93r33,0r35,69r35,-69r33,0r-50,93r52,100r-33,0r-39,-76r-37,76r-33,0","w":146},"y":{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-5,35,-30,57,-74,49r0,-23v28,7,45,-11,47,-35","w":146,"k":{"\u0105":-4,"\u0103":-4,"\u0101":-4,"\u00e3":-4,"\u00e5":-4,"\u00e0":-4,"\u00e4":-4,"\u00e2":-4,"\u00e1":-4,"a":-4,".":20,",":20}},"z":{"d":"14,-167r0,-26r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0","w":140},"{":{"d":"1,-85r0,-21v36,1,26,-66,27,-104v2,-48,25,-48,65,-47r0,24v-53,-11,-37,46,-37,91v0,37,-25,43,-32,47v8,1,32,11,32,46r0,62v-4,22,12,33,37,29r0,24v-40,1,-63,1,-65,-47v-1,-39,9,-105,-27,-104","w":93},"|":{"d":"28,5r0,-267r24,0r0,267r-24,0","w":79},"}":{"d":"93,-106r0,21v-36,-1,-27,65,-28,104v-2,48,-25,48,-64,47r0,-24v52,10,36,-47,36,-91v0,-37,25,-43,32,-47v-8,-1,-32,-11,-32,-46r0,-62v4,-21,-11,-33,-36,-29r0,-24v39,-1,62,-1,64,47v1,39,-8,105,28,104","w":93},"~":{"d":"147,-66v-25,5,-54,-26,-76,-27v-17,0,-30,17,-36,26r-15,-16v10,-15,26,-34,49,-34v25,0,53,27,76,28v17,0,30,-18,36,-27r15,17v-11,15,-25,33,-49,33","w":216},"\u00a1":{"d":"63,-194r0,35r-33,0r0,-35r33,0xm57,-127r6,190r-33,0r6,-190r21,0","w":92},"\u00a2":{"d":"82,36r0,-31v-43,-3,-61,-35,-61,-99v0,-46,9,-99,61,-104r0,-25r15,0r0,25v46,3,55,42,55,64r-31,0v0,-17,-6,-37,-24,-40r0,155v20,-5,24,-28,24,-48r31,0v0,30,-14,68,-55,72r0,31r-15,0xm82,-19r0,-155v-15,4,-29,20,-29,80v0,24,1,69,29,75","w":172},"\u00a3":{"d":"37,-24v40,-23,79,20,116,-13r13,24v-15,10,-32,18,-50,18v-35,0,-65,-27,-95,-3r-14,-23v28,-20,58,-55,37,-95r-34,0r0,-22r25,0v-8,-14,-18,-34,-18,-52v0,-41,33,-65,73,-65v42,0,71,23,71,73r-30,0v0,-27,-11,-49,-41,-49v-61,0,-42,58,-21,93r59,0r0,22r-51,0v19,40,-12,70,-40,92","w":172},"\u00a5":{"d":"72,0r0,-55r-53,0r0,-22r53,0v0,-11,1,-23,-4,-29r-49,0r0,-22r40,0r-56,-122r35,0r49,117r51,-117r32,0r-54,122r39,0r0,22r-49,0v-5,6,-4,18,-4,29r53,0r0,22r-53,0r0,55r-30,0","w":172},"\u0192":{"d":"-6,62r5,-24v24,5,40,2,46,-31r28,-144r-37,0r4,-21r37,0v9,-53,18,-114,89,-98r-5,24v-45,-11,-46,36,-53,74r39,0r-4,21r-39,0r-29,148v-7,42,-35,57,-81,51","w":172},"\u00a7":{"d":"41,-119v0,33,50,41,71,61v7,-4,20,-16,20,-35v0,-33,-45,-44,-67,-61v-10,8,-24,17,-24,35xm149,-208r-32,0v0,-20,-15,-30,-32,-30v-21,0,-30,15,-30,27v14,52,108,49,108,113v0,23,-15,41,-32,53v44,32,13,100,-42,100v-54,0,-66,-38,-66,-62r30,0v0,22,12,39,36,39v52,0,31,-56,1,-69v-28,-21,-79,-36,-79,-78v0,-26,15,-38,35,-51v-14,-9,-23,-27,-23,-44v0,-35,31,-52,62,-52v59,0,62,40,64,54","w":173},"\u00a4":{"d":"6,-60r17,-17v-21,-25,-21,-70,0,-95r-17,-17r16,-16r17,17v26,-22,69,-20,95,0r17,-17r15,16r-17,17v23,26,21,69,0,95r17,17r-15,15r-17,-17v-25,21,-70,21,-95,0r-17,17xm33,-125v0,31,23,56,53,56v30,0,54,-25,54,-56v0,-31,-24,-55,-54,-55v-30,0,-53,24,-53,55","w":172},"'":{"d":"31,-166r0,-91r24,0r0,91r-24,0","w":86},"\u00ab":{"d":"18,-88r0,-28r51,-52r0,32r-34,34r34,34r0,31xm71,-88r0,-28r51,-52r0,32r-33,34r33,34r0,31","w":140},"\u00b7":{"d":"23,-118v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":86},"\u00b6":{"d":"148,50r0,-288r-36,0r0,288r-24,0r0,-166v-44,0,-75,-30,-75,-67v-2,-75,80,-79,159,-74r0,307r-24,0","w":200},"\u00bb":{"d":"69,-116r0,28r-51,51r0,-31r33,-34r-33,-34r0,-32xm122,-116r0,28r-51,51r0,-31r34,-34r-34,-34r0,-32","w":140},"\u00bf":{"d":"100,-194r0,35r-33,0r0,-35r33,0xm98,-127v8,63,-53,73,-54,127v0,21,12,40,35,40v35,0,38,-34,38,-52r30,0v0,42,-21,78,-67,78v-43,0,-67,-28,-67,-67v0,-55,62,-69,57,-126r28,0","w":159},"`":{"d":"-6,-270r36,0r25,51r-22,0","w":73},"\u00b4":{"d":"19,-219r25,-51r35,0r-39,51r-21,0","w":73},"\u00af":{"d":"-11,-235r0,-20r95,0r0,20r-95,0","w":73},"\u00a8":{"d":"52,-227r0,-36r28,0r0,36r-28,0xm-6,-227r0,-36r28,0r0,36r-28,0","w":73},"\u00b8":{"d":"0,68r5,-12v9,4,48,7,43,-10v0,-21,-33,-4,-37,-17v12,-10,11,-33,37,-29v-4,7,-14,14,-14,20v19,-3,39,0,40,25v1,31,-50,38,-74,23","w":73},"\u00c6":{"d":"-3,0r99,-257r151,0r0,28r-96,0r0,81r90,0r0,28r-90,0r0,92r100,0r0,28r-131,0r0,-71r-63,0r-27,71r-33,0xm116,-231r-50,135r54,0r0,-135r-4,0","w":259},"\u00aa":{"d":"69,-197v-13,13,-42,5,-42,30v0,10,3,18,16,18v25,-1,28,-21,26,-48xm52,-255v65,0,29,51,38,98v-2,8,5,12,11,9r0,15v-12,2,-34,3,-32,-16v-13,27,-71,20,-66,-17v-3,-28,28,-35,52,-40v24,-5,16,-34,-6,-32v-22,1,-21,16,-21,23r-22,0v0,-28,13,-40,46,-40","w":104},"\u0141":{"d":"-3,-71r0,-26r24,-17r0,-143r32,0r0,121r69,-50r0,25r-69,50r0,83r104,0r0,28r-136,0r0,-88","w":159},"\u00d8":{"d":"32,9r12,-29v-22,-26,-27,-69,-27,-109v0,-65,12,-133,83,-133v17,0,30,3,40,10r9,-21r19,8r-11,27v21,26,26,68,26,109v0,65,-12,134,-83,134v-15,0,-29,-3,-40,-10r-9,22xm142,-202r-70,170v7,7,16,11,28,11v64,4,54,-127,42,-181xm58,-55r71,-170v-7,-7,-17,-11,-29,-11v-64,-4,-54,126,-42,181","w":200},"\u0152":{"d":"100,-21v70,0,48,-84,48,-146v0,-36,-1,-69,-48,-69v-45,0,-51,48,-51,107v0,59,6,108,51,108xm180,-120r0,92r98,0r0,28r-129,0v-1,-7,2,-18,-1,-23v-7,17,-26,28,-48,28v-71,0,-83,-65,-83,-134v0,-65,12,-133,83,-133v19,0,41,9,50,25r0,-20r124,0r0,28r-94,0r0,81r88,0r0,28r-88,0","w":286},"\u00ba":{"d":"51,-149v33,-1,33,-88,0,-89v-31,1,-29,88,0,89xm51,-255v38,0,47,29,47,61v0,33,-10,62,-47,62v-37,0,-45,-29,-45,-62v0,-32,8,-61,45,-61","w":104},"\u00e6":{"d":"104,-100v-17,15,-63,7,-63,48v0,18,8,33,27,33v50,-10,33,-41,36,-81xm199,-63r30,0v0,21,-12,68,-61,68v-42,0,-48,-29,-52,-35v-10,21,-25,35,-54,35v-62,0,-71,-98,-16,-109v22,-11,58,-4,58,-42v0,-18,-8,-28,-28,-28v-31,1,-31,30,-31,39r-31,0v0,-44,20,-63,64,-63v27,-1,41,13,47,27v7,-16,27,-27,45,-27v59,2,62,56,61,105r-99,0v0,30,1,74,34,74v29,0,33,-29,33,-44xm134,-117r65,0v1,-28,-4,-57,-32,-57v-33,0,-33,38,-33,57","w":240},"\u0131":{"d":"22,0r0,-193r30,0r0,193r-30,0","w":73},"\u0142":{"d":"22,0r0,-99r-22,23r0,-28r22,-23r0,-130r30,0r0,98r21,-23r0,28r-21,23r0,131r-30,0","w":73},"\u00f8":{"d":"23,14r12,-27v-50,-53,-30,-224,75,-179r10,-21r17,7r-11,26v47,57,28,223,-76,179r-10,22xm48,-45r52,-122v-40,-24,-58,19,-58,71v0,19,1,37,6,51xm112,-147r-52,121v38,24,58,-19,58,-70v0,-18,-1,-37,-6,-51","w":159},"\u0153":{"d":"182,-174v-33,0,-33,38,-33,57r65,0v1,-28,-4,-57,-32,-57xm120,-96v0,-39,-6,-78,-38,-78v-30,0,-36,39,-36,78v0,39,6,77,36,77v32,0,38,-38,38,-77xm185,-198v59,2,62,56,61,105r-98,0v0,30,0,74,33,74v29,0,33,-29,33,-44r30,0v0,21,-11,68,-60,68v-41,0,-51,-30,-52,-33v-9,21,-27,33,-50,33v-54,0,-68,-49,-68,-101v0,-52,14,-102,68,-102v27,0,41,10,53,33v9,-20,28,-33,50,-33","w":259},"\u00df":{"d":"17,0r0,-184v0,-45,14,-76,64,-76v65,0,87,97,24,112v34,0,51,31,51,67v1,46,-25,89,-85,81r0,-26v41,8,55,-26,54,-55v-1,-39,-18,-60,-53,-53r0,-24v24,2,40,-10,41,-38v0,-18,-6,-40,-32,-40v-31,0,-33,24,-33,47r0,189r-31,0"},"\u00b9":{"d":"46,-101r0,-112r-34,0r0,-18v21,0,39,-2,40,-24r18,0r0,154r-24,0","w":112},"\u00ac":{"d":"175,-38r0,-78r-158,0r0,-24r182,0r0,102r-24,0","w":216},"\u00b5":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-10,24,-42,36,-67,23r0,63r-30,0r0,-256r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0"},"\u00d0":{"d":"56,-26r33,0v55,0,61,-56,61,-102v0,-50,-3,-103,-61,-103r-33,0r0,85r48,0r0,24r-48,0r0,96xm24,0r0,-122r-21,0r0,-24r21,0r0,-111r69,0v80,0,90,57,90,128v0,65,-16,129,-87,129r-72,0","w":200},"\u00bd":{"d":"245,0r-94,0v-3,-57,72,-63,72,-111v0,-13,-7,-21,-24,-21v-21,0,-22,18,-22,27r-26,0v0,-28,13,-49,50,-49v58,0,61,70,19,92v-13,11,-35,25,-40,40r65,0r0,22xm11,-213r0,-18v21,0,39,-2,40,-24r18,0r0,154r-24,0r0,-112r-34,0xm27,11r156,-272r21,0r-156,272r-21,0","w":259},"\u00b1":{"d":"17,0r0,-24r182,0r0,24r-182,0xm17,-106r0,-24r79,0r0,-52r24,0r0,52r79,0r0,24r-79,0r0,52r-24,0r0,-52r-79,0","w":216},"\u00de":{"d":"53,-181r0,97v46,2,77,1,80,-50v2,-42,-35,-51,-80,-47xm21,0r0,-257r32,0r0,50r33,0v22,0,80,0,80,74v0,63,-47,81,-113,75r0,58r-32,0","w":173},"\u00bc":{"d":"12,-213r0,-18v21,0,39,-2,40,-24r18,0r0,154r-24,0r0,-112r-34,0xm33,11r157,-272r21,0r-156,272r-22,0xm144,-57r58,-97r26,0r0,99r16,0r0,19r-16,0r0,36r-24,0r0,-36r-60,0r0,-21xm163,-55r41,0v-1,-22,2,-47,-1,-67","w":259},"\u00f7":{"d":"88,-15v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm88,-167v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm17,-79r0,-24r182,0r0,24r-182,0","w":216},"\u00a6":{"d":"28,-156r0,-106r24,0r0,106r-24,0xm28,5r0,-106r24,0r0,106r-24,0","w":79},"\u00b0":{"d":"38,-201v0,19,15,34,34,34v19,0,34,-15,34,-34v0,-19,-15,-34,-34,-34v-19,0,-34,15,-34,34xm18,-201v0,-31,23,-54,54,-54v31,0,54,23,54,54v0,31,-23,53,-54,53v-31,0,-54,-22,-54,-53","w":144},"\u00fe":{"d":"20,63r0,-320r30,0r1,86v5,-16,24,-27,40,-27v46,0,63,40,63,98v0,44,-13,105,-63,105v-18,1,-32,-12,-41,-27r0,85r-30,0xm48,-96v0,37,6,75,39,75v28,0,35,-29,35,-79v0,-42,-7,-72,-35,-72v-33,0,-39,32,-39,76"},"\u00be":{"d":"43,-171r0,-19v35,9,50,-45,15,-45v-20,0,-22,16,-22,24r-26,0v0,-26,13,-44,49,-44v59,2,58,63,14,73v18,6,35,13,35,37v0,28,-16,47,-49,47v-49,0,-52,-34,-52,-45r26,0v0,11,7,25,25,25v10,0,24,-5,24,-26v1,-19,-15,-29,-39,-27xm52,11r156,-272r22,0r-156,272r-22,0xm152,-57r58,-97r25,0r0,99r17,0r0,19r-17,0r0,36r-23,0r0,-36r-60,0r0,-21xm171,-55r41,0v-1,-22,2,-47,-1,-67","w":259},"\u00b2":{"d":"102,-101r-94,0v-2,-56,71,-63,71,-111v0,-13,-7,-21,-24,-21v-21,0,-22,18,-22,27r-26,0v0,-28,13,-49,50,-49v58,0,61,70,19,92v-13,11,-35,26,-39,41r65,0r0,21","w":112},"\u00ae":{"d":"144,-17v61,0,110,-50,110,-112v0,-62,-49,-111,-110,-111v-61,0,-110,49,-110,111v0,62,49,112,110,112xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm114,-137v29,-2,68,8,67,-24v-1,-32,-38,-21,-67,-23r0,47xm91,-50r0,-156v52,0,113,-8,113,46v0,28,-18,40,-42,43r45,67r-24,0r-43,-65r-26,0r0,65r-23,0","w":288},"\u00f0":{"d":"43,-214r-13,-15r25,-15v-8,-8,-18,-16,-28,-24r23,-10v10,8,18,15,26,22r27,-15r14,15r-26,14v36,36,58,79,58,146v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101v0,-60,31,-114,92,-91v-10,-15,-20,-29,-33,-42xm79,-169v-31,0,-37,38,-37,73v0,42,6,77,37,77v32,0,39,-35,39,-77v0,-35,-6,-73,-39,-73","w":159},"\u00d7":{"d":"173,-11r-65,-65r-65,65r-15,-15r65,-65r-65,-65r15,-15r65,64r65,-64r15,15r-65,65r65,65","w":216},"\u00b3":{"d":"42,-171r0,-19v21,2,34,-8,34,-25v0,-11,-6,-20,-19,-20v-20,0,-23,16,-23,24r-26,0v0,-26,13,-44,49,-44v59,1,59,63,15,73v18,6,35,13,35,37v0,28,-16,47,-49,47v-49,0,-52,-34,-52,-45r26,0v0,11,7,25,25,25v10,0,24,-5,24,-26v1,-19,-15,-29,-39,-27","w":112},"\u00a9":{"d":"144,-17v61,0,110,-50,110,-112v0,-62,-49,-111,-110,-111v-61,0,-110,49,-110,111v0,62,49,112,110,112xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm195,-100r22,0v-5,36,-35,55,-71,55v-49,0,-79,-33,-79,-82v0,-92,137,-115,150,-27r-22,0v-19,-63,-104,-33,-104,27v0,33,21,61,55,61v27,0,45,-15,49,-34","w":288},"\u00c1":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm72,-278r25,-51r35,0r-38,51r-22,0","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c2":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm42,-278r37,-51r28,0r36,51r-29,0r-21,-32r-22,32r-29,0","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c4":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm107,-286r0,-36r28,0r0,36r-28,0xm49,-286r0,-36r28,0r0,36r-28,0","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c0":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm52,-329r35,0r26,51r-22,0","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c5":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm72,-304v0,11,10,21,21,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-21,9,-21,20xm57,-304v0,-20,16,-35,36,-35v20,0,35,15,35,35v0,20,-15,36,-35,36v-20,0,-36,-16,-36,-36","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c3":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm73,-323v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u00c7":{"d":"178,-88v-2,48,-23,91,-76,93v-2,5,-10,10,-9,15v19,-3,38,0,39,25v1,31,-50,38,-74,23r5,-12v9,4,48,7,43,-10v0,-21,-33,-4,-37,-17r18,-25v-62,-6,-69,-72,-70,-133v0,-65,12,-133,83,-133v52,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67r33,0","w":186},"\u00c9":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm78,-278r25,-51r36,0r-39,51r-22,0"},"\u00ca":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm38,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0"},"\u00cb":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm104,-286r0,-36r28,0r0,36r-28,0xm46,-286r0,-36r28,0r0,36r-28,0"},"\u00c8":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm49,-329r36,0r25,51r-22,0"},"\u00cd":{"d":"21,0r0,-257r32,0r0,257r-32,0xm21,-278r25,-51r36,0r-39,51r-22,0","w":73},"\u00ce":{"d":"21,0r0,-257r32,0r0,257r-32,0xm-14,-278r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":73},"\u00cf":{"d":"21,0r0,-257r32,0r0,257r-32,0xm51,-286r0,-36r29,0r0,36r-29,0xm-7,-286r0,-36r28,0r0,36r-28,0","w":73},"\u00cc":{"d":"21,0r0,-257r32,0r0,257r-32,0xm-8,-329r35,0r25,51r-21,0","w":73},"\u00d1":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0xm80,-323v18,0,49,30,53,-2r19,0v0,18,-10,40,-31,40v-23,0,-50,-28,-55,2r-20,0v0,-21,15,-40,34,-40","w":200},"\u00d3":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm86,-278r25,-51r35,0r-39,51r-21,0","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"\u00d4":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm50,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"\u00d6":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm116,-286r0,-36r28,0r0,36r-28,0xm57,-286r0,-36r28,0r0,36r-28,0","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"\u00d2":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm54,-329r36,0r25,51r-22,0","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"\u00d5":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm80,-323v18,0,49,30,53,-2r19,0v0,18,-10,40,-31,40v-23,0,-50,-28,-55,2r-20,0v0,-21,15,-40,34,-40","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"\u0160":{"d":"162,-190r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123v0,59,-44,76,-80,76v-60,0,-78,-31,-78,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,24,72,72xm141,-329r-36,51r-28,0r-36,-51r28,0r22,31r22,-31r28,0","w":180},"\u00da":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm80,-278r25,-51r36,0r-39,51r-22,0","w":186},"\u00db":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm44,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":186},"\u00dc":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm108,-286r0,-36r28,0r0,36r-28,0xm50,-286r0,-36r28,0r0,36r-28,0","w":186},"\u00d9":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm47,-329r35,0r26,51r-22,0","w":186},"\u00dd":{"d":"67,-101r-68,-156r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101xm71,-278r25,-51r35,0r-39,51r-21,0","k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":11,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u0178":{"d":"67,-101r-68,-156r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101xm98,-286r0,-36r28,0r0,36r-28,0xm40,-286r0,-36r28,0r0,36r-28,0","k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":11,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u017d":{"d":"8,0r0,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0xm134,-329r-36,51r-28,0r-36,-51r28,0r22,31r22,-31r28,0"},"\u00e1":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm68,-219r25,-51r35,0r-39,51r-21,0","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e2":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm30,-219r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e4":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm95,-227r0,-36r28,0r0,36r-28,0xm36,-227r0,-36r28,0r0,36r-28,0","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e0":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm40,-270r36,0r25,51r-22,0","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e5":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm59,-248v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21v-11,0,-21,10,-21,21xm44,-248v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,20,-15,35,-35,35v-20,0,-36,-15,-36,-35","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e3":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm59,-264v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e7":{"d":"142,-67v1,31,-19,71,-58,72v-3,5,-11,10,-10,15v19,-3,38,0,39,25v1,31,-50,38,-74,23r6,-12v9,4,48,7,42,-10v1,-14,-22,-15,-31,-10v-11,-11,8,-21,13,-32v-47,-5,-56,-42,-57,-98v0,-48,9,-104,68,-104v53,0,62,42,62,64r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0","w":153,"k":{"\u0140":7,"\u0177":7,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u00e9":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm71,-219r25,-51r35,0r-39,51r-21,0","w":159},"\u00ea":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm32,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":159},"\u00eb":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm98,-227r0,-36r28,0r0,36r-28,0xm39,-227r0,-36r28,0r0,36r-28,0","w":159},"\u00e8":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm39,-270r35,0r25,51r-22,0","w":159},"\u00ed":{"d":"22,0r0,-193r30,0r0,193r-30,0xm22,-219r25,-51r35,0r-39,51r-21,0","w":73},"\u00ee":{"d":"22,0r0,-193r30,0r0,193r-30,0xm-13,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":73},"\u00ef":{"d":"22,0r0,-193r30,0r0,193r-30,0xm52,-227r0,-36r28,0r0,36r-28,0xm-6,-227r0,-36r28,0r0,36r-28,0","w":73},"\u00ec":{"d":"22,0r0,-193r30,0r0,193r-30,0xm-9,-270r35,0r25,51r-21,0","w":73},"\u00f1":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0xm64,-264v18,1,49,30,53,-2r19,0v0,18,-10,40,-31,40v-23,0,-50,-28,-55,2r-20,0v0,-21,15,-40,34,-40","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u00f3":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm68,-219r25,-51r36,0r-39,51r-22,0","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f4":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm30,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f6":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm95,-227r0,-36r28,0r0,36r-28,0xm37,-227r0,-36r28,0r0,36r-28,0","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f2":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm33,-270r35,0r25,51r-21,0","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u00f5":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm60,-264v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u0161":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,95,20,95,90v0,40,-27,60,-63,60v-66,0,-66,-48,-66,-68r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32xm124,-270r-37,51r-27,0r-36,-51r28,0r22,31r22,-31r28,0","w":146,"k":{"\u0175":-4,"w":-4}},"\u00fa":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm70,-219r25,-51r36,0r-39,51r-22,0"},"\u00fb":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm33,-219r37,-51r28,0r36,51r-29,0r-21,-32r-22,32r-29,0"},"\u00fc":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm98,-227r0,-36r28,0r0,36r-28,0xm40,-227r0,-36r28,0r0,36r-28,0"},"\u00f9":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm36,-270r35,0r25,51r-21,0"},"\u00fd":{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-5,35,-30,57,-74,49r0,-23v28,7,45,-11,47,-35xm63,-219r26,-51r35,0r-39,51r-22,0","w":146,"k":{"\u0105":-4,"\u0103":-4,"\u0101":-4,"\u00e3":-4,"\u00e5":-4,"\u00e0":-4,"\u00e4":-4,"\u00e2":-4,"\u00e1":-4,"a":-4,".":20,",":20}},"\u00ff":{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-5,35,-30,57,-74,49r0,-23v28,7,45,-11,47,-35xm91,-227r0,-36r28,0r0,36r-28,0xm32,-227r0,-36r28,0r0,36r-28,0","w":146,"k":{"\u0105":-4,"\u0103":-4,"\u0101":-4,"\u00e3":-4,"\u00e5":-4,"\u00e0":-4,"\u00e4":-4,"\u00e2":-4,"\u00e1":-4,"a":-4,".":20,",":20}},"\u017e":{"d":"14,-167r0,-26r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0xm121,-270r-36,51r-28,0r-36,-51r28,0r22,31r22,-31r28,0","w":140},"\u0100":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm45,-294r0,-20r95,0r0,20r-95,0","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u0102":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm48,-320r17,0v1,30,55,31,56,0r17,0v0,15,-9,45,-45,45v-36,0,-45,-30,-45,-45","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u0104":{"d":"183,0r-14,0v-31,23,-38,35,-38,45v-1,19,28,15,39,8r6,13v-25,16,-72,14,-71,-18v0,-18,15,-34,45,-48r-19,-71r-82,0r-19,71r-33,0r74,-257r43,0xm92,-221v-15,39,-23,84,-36,125r69,0","w":180,"k":{"\u021a":20,"\u0176":20,"\u0174":7,"\u0162":20,"\u0164":20,"\u0178":20,"\u00dd":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"\u0106":{"d":"145,-88r33,0v-3,49,-22,93,-78,93v-73,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v52,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67xm89,-278r25,-51r36,0r-39,51r-22,0","w":186},"\u0108":{"d":"145,-88r33,0v-3,49,-22,93,-78,93v-73,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v52,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67xm51,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":186},"\u010c":{"d":"145,-88r33,0v-3,49,-22,93,-78,93v-73,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v52,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67xm150,-329r-37,51r-27,0r-36,-51r28,0r22,31r22,-31r28,0","w":186},"\u010a":{"d":"145,-88r33,0v-3,49,-22,93,-78,93v-73,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v52,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67xm86,-286r0,-36r28,0r0,36r-28,0","w":186},"\u010e":{"d":"24,0r0,-257r69,0v80,0,90,57,90,128v0,65,-16,129,-87,129r-72,0xm56,-231r0,205r33,0v55,0,61,-56,61,-102v0,-50,-3,-103,-61,-103r-33,0xm140,-329r-36,51r-28,0r-36,-51r28,0r22,31r22,-31r28,0","w":200,"k":{"\u0176":7,"\u0178":7,"\u00dd":7,"Y":7}},"\u011a":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm138,-329r-37,51r-28,0r-36,-51r29,0r21,31r22,-31r29,0"},"\u0112":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm41,-294r0,-20r95,0r0,20r-95,0"},"\u0114":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm41,-327r18,0v1,31,54,30,55,0r17,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46"},"\u0116":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm74,-286r0,-36r28,0r0,36r-28,0"},"\u0118":{"d":"158,0r-7,0v-31,23,-38,35,-38,45v-1,19,28,15,39,8r6,13v-25,16,-72,14,-71,-18v0,-18,15,-34,45,-48r-111,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28"},"\u011c":{"d":"176,-186r-33,0v-2,-27,-11,-50,-43,-50v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,47,-53,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-7,22,-28,40,-56,40v-67,0,-79,-65,-79,-134v0,-65,12,-133,83,-133v73,0,76,63,76,76xm51,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":193},"\u011e":{"d":"176,-186r-33,0v-2,-27,-11,-50,-43,-50v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,47,-53,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-7,22,-28,40,-56,40v-67,0,-79,-65,-79,-134v0,-65,12,-133,83,-133v73,0,76,63,76,76xm57,-327r17,0v1,30,54,31,55,0r18,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46","w":193},"\u0120":{"d":"176,-186r-33,0v-2,-27,-11,-50,-43,-50v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,47,-53,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-7,22,-28,40,-56,40v-67,0,-79,-65,-79,-134v0,-65,12,-133,83,-133v73,0,76,63,76,76xm88,-286r0,-36r28,0r0,36r-28,0","w":193},"\u0122":{"d":"176,-186r-33,0v-2,-27,-11,-50,-43,-50v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,47,-53,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-7,22,-28,40,-56,40v-67,0,-79,-65,-79,-134v0,-65,12,-133,83,-133v73,0,76,63,76,76xm84,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","w":193},"\u0124":{"d":"172,-257r0,257r-31,0r0,-124r-88,0r0,124r-32,0r0,-257r32,0r0,105r88,0r0,-105r31,0xm47,-278r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":193},"\u0126":{"d":"172,-257r0,257r-31,0r0,-120r-88,0r0,120r-32,0r0,-257r32,0r0,64r88,0r0,-64r31,0xm53,-148r88,0r0,-27r-88,0r0,27","w":193},"\u0128":{"d":"21,0r0,-257r32,0r0,257r-32,0xm17,-323v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":73},"\u012a":{"d":"21,0r0,-257r32,0r0,257r-32,0xm-11,-294r0,-20r95,0r0,20r-95,0","w":73},"\u0130":{"d":"21,0r0,-257r32,0r0,257r-32,0xm23,-286r0,-36r28,0r0,36r-28,0","w":73},"\u012e":{"d":"53,-257r0,257v-27,23,-32,34,-32,45v-1,19,21,15,32,8r6,13v-22,16,-60,14,-60,-18v0,-18,12,-34,37,-48r-15,0r0,-257r32,0","w":73},"\u0134":{"d":"132,-257r0,183v0,46,-11,79,-64,79v-51,0,-63,-34,-60,-80r30,0v-1,29,1,55,30,54v29,0,33,-18,33,-54r0,-182r31,0xm65,-278r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":153},"\u0136":{"d":"21,0r0,-257r32,0r0,125r89,-125r35,0r-77,107r84,150r-35,0r-70,-124r-26,37r0,87r-32,0xm77,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","w":180,"k":{"\u0177":4,"\u0173":7,"\u0171":7,"\u016f":7,"\u016d":7,"\u016b":7,"\u0169":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u00ff":4,"\u00fd":4,"\u00f9":7,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f5":7,"\u00f2":7,"\u00f6":7,"\u00f4":7,"\u00f3":7,"y":4,"u":7,"o":7}},"\u0139":{"d":"21,0r0,-257r32,0r0,229r104,0r0,28r-136,0xm25,-278r25,-51r36,0r-39,51r-22,0","w":159,"k":{"\u021a":34,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":34,"\u0164":34,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"\u013d":{"d":"21,0r0,-257r32,0r0,229r104,0r0,28r-136,0xm80,-206r9,-51r31,0r-21,51r-19,0","w":159,"k":{"\u021a":34,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":34,"\u0164":34,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"\u013b":{"d":"21,0r0,-257r32,0r0,229r104,0r0,28r-136,0xm71,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","w":159,"k":{"\u021a":34,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":34,"\u0164":34,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"\u0143":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0xm88,-278r25,-51r36,0r-39,51r-22,0","w":200},"\u0147":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0xm150,-329r-37,51r-27,0r-36,-51r28,0r22,31r22,-31r28,0","w":200},"\u0145":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0xm84,51r0,-33r29,0v1,30,3,59,-28,58v-3,-17,13,-8,13,-25r-14,0","w":200},"\u014c":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm53,-294r0,-20r95,0r0,20r-95,0","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"\u014e":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm55,-327r17,0v1,30,54,31,55,0r18,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"\u0150":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm118,-278r25,-51r36,0r-39,51r-22,0xm59,-278r25,-51r36,0r-39,51r-22,0","w":200,"k":{"\u0176":9,"\u0178":9,"\u00dd":9,"Y":9,"X":9}},"\u0154":{"d":"53,-231r0,91v45,-3,78,14,84,-50v4,-40,-41,-44,-84,-41xm21,0r0,-257v71,-1,149,-10,149,64v0,28,-12,57,-40,66v58,-1,23,105,53,127r-39,0v-11,-16,-8,-52,-10,-77v-7,-53,-39,-33,-81,-37r0,114r-32,0xm71,-278r25,-51r35,0r-39,51r-21,0","w":186,"k":{"\u021a":6,"\u0176":6,"\u0174":-7,"\u0172":-7,"\u0170":-7,"\u016e":-7,"\u016c":-7,"\u016a":-7,"\u0168":-7,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-7,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"Y":6,"W":-7,"U":-7,"T":6}},"\u0158":{"d":"53,-231r0,91v45,-3,78,14,84,-50v4,-40,-41,-44,-84,-41xm21,0r0,-257v71,-1,149,-10,149,64v0,28,-12,57,-40,66v58,-1,23,105,53,127r-39,0v-11,-16,-8,-52,-10,-77v-7,-53,-39,-33,-81,-37r0,114r-32,0xm137,-329r-37,51r-27,0r-36,-51r28,0r22,32r22,-32r28,0","w":186,"k":{"\u021a":6,"\u0176":6,"\u0174":-7,"\u0172":-7,"\u0170":-7,"\u016e":-7,"\u016c":-7,"\u016a":-7,"\u0168":-7,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-7,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"Y":6,"W":-7,"U":-7,"T":6}},"\u0156":{"d":"53,-231r0,91v45,-3,78,14,84,-50v4,-40,-41,-44,-84,-41xm21,0r0,-257v71,-1,149,-10,149,64v0,28,-12,57,-40,66v58,-1,23,105,53,127r-39,0v-11,-16,-8,-52,-10,-77v-7,-53,-39,-33,-81,-37r0,114r-32,0xm79,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","w":186,"k":{"\u021a":6,"\u0176":6,"\u0174":-7,"\u0172":-7,"\u0170":-7,"\u016e":-7,"\u016c":-7,"\u016a":-7,"\u0168":-7,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-7,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"Y":6,"W":-7,"U":-7,"T":6}},"\u015a":{"d":"162,-190r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123v0,59,-44,76,-80,76v-60,0,-78,-31,-78,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,24,72,72xm78,-280r25,-52r35,0r-39,52r-21,0","w":180},"\u015c":{"d":"162,-190r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123v0,59,-44,76,-80,76v-60,0,-78,-31,-78,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,24,72,72xm41,-278r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":180},"\u015e":{"d":"169,-71v0,54,-31,72,-75,76v-2,5,-10,10,-9,15v19,-3,38,0,39,25v1,31,-50,38,-74,23r5,-12v9,4,48,7,43,-10v1,-13,-22,-15,-31,-10v-11,-10,8,-21,12,-31v-49,-4,-69,-33,-68,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,24,72,72r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123","w":180},"\uf6c1":{"d":"169,-71v0,54,-31,72,-75,76v-2,5,-10,10,-9,15v19,-3,38,0,39,25v1,31,-50,38,-74,23r5,-12v9,4,48,7,43,-10v1,-13,-22,-15,-31,-10v-11,-10,8,-21,12,-31v-49,-4,-69,-33,-68,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,24,72,72r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123","w":180},"\u0218":{"d":"162,-190r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123v0,59,-44,76,-80,76v-60,0,-78,-31,-78,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,24,72,72xm75,51r0,-33r29,0v1,30,3,59,-28,58v-3,-17,13,-8,13,-25r-14,0","w":180},"\u0164":{"d":"99,-229r0,229r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0xm133,-329r-36,51r-28,0r-36,-51r28,0r22,31r22,-31r28,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0162":{"d":"99,-229r0,229r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0xm68,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0166":{"d":"99,-157r0,157r-32,0r0,-157r-41,0r0,-18r41,0r0,-54r-64,0r0,-28r161,0r0,28r-65,0r0,54r40,0r0,18r-40,0"},"\u0168":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm74,-323v18,0,49,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":186},"\u016a":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm46,-294r0,-20r95,0r0,20r-95,0","w":186},"\u016c":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm49,-327r17,0v1,30,54,31,55,0r18,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46","w":186},"\u016e":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm73,-301v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21v-11,0,-21,10,-21,21xm58,-301v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,20,-15,35,-35,35v-20,0,-36,-15,-36,-35","w":186},"\u0170":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm112,-278r25,-51r35,0r-39,51r-21,0xm53,-278r25,-51r35,0r-39,51r-21,0","w":186},"\u0172":{"d":"90,5v-50,0,-72,-29,-72,-81r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0v-10,95,35,234,-53,260v-14,9,-37,30,-34,42v-1,20,27,15,38,8r7,13v-25,16,-72,14,-71,-18v0,-15,11,-30,34,-43","w":186},"\u0174":{"d":"54,0r-51,-257r32,0r40,210r36,-210r38,0r37,210r39,-210r32,0r-53,257r-38,0r-36,-208r-37,208r-39,0xm80,-278r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":259,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":6,"\u0102":6,"\u0100":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"\u0176":{"d":"67,-101r-68,-156r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101xm33,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":11,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u0179":{"d":"8,0r0,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0xm73,-278r25,-51r35,0r-39,51r-21,0"},"\u017b":{"d":"8,0r0,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0xm70,-286r0,-36r28,0r0,36r-28,0"},"\u0101":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm33,-235r0,-20r95,0r0,20r-95,0","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u0103":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm35,-268r17,0v1,30,54,31,55,0r18,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u0105":{"d":"126,1v-12,-1,-13,-11,-17,-24v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-59,-9,-57v-33,2,-33,30,-33,39r-30,0v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14v-2,9,6,24,-7,22v-17,8,-37,31,-37,44v0,20,27,15,38,8r6,13v-25,16,-72,14,-70,-18v0,-17,13,-34,41,-47xm108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86","w":159,"k":{"\u021b":-4,"\u0175":-4,"\u0163":-4,"\u0123":-4,"\u0121":-4,"\u011f":-4,"\u011d":-4,"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u0107":{"d":"142,-134r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,30,-16,72,-64,72v-48,0,-66,-32,-66,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64xm70,-219r25,-51r35,0r-39,51r-21,0","w":153,"k":{"\u0140":7,"\u0177":7,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u0109":{"d":"142,-134r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,30,-16,72,-64,72v-48,0,-66,-32,-66,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64xm31,-219r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":153,"k":{"\u0140":7,"\u0177":7,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u010d":{"d":"142,-134r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,30,-16,72,-64,72v-48,0,-66,-32,-66,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64xm129,-270r-36,51r-28,0r-36,-51r28,0r22,31r22,-31r28,0","w":153,"k":{"\u0140":7,"\u0177":7,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u010b":{"d":"142,-134r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,30,-16,72,-64,72v-48,0,-66,-32,-66,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64xm67,-227r0,-36r28,0r0,36r-28,0","w":153,"k":{"\u0140":7,"\u0177":7,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":7,"\u00fd":7,"y":7,"l":7}},"\u010f":{"d":"147,-257r0,257r-29,0v-1,-7,2,-18,-1,-24v-4,14,-20,29,-41,29v-46,0,-63,-41,-63,-101v0,-40,5,-102,60,-102v18,-1,35,12,44,27r0,-86r30,0xm44,-96v0,46,8,75,36,75v33,0,38,-31,38,-75v0,-37,-5,-76,-38,-76v-28,0,-36,30,-36,76xm162,-206r10,-51r31,0r-21,51r-20,0","w":188,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0111":{"d":"147,-213r0,213r-29,0v-1,-7,2,-18,-1,-24v-4,14,-20,29,-41,29v-46,0,-63,-41,-63,-101v0,-40,5,-102,60,-102v18,-1,35,12,44,27r0,-42r-37,0r0,-17r37,0r0,-27r30,0r0,27r28,0r0,17r-28,0xm44,-96v0,46,8,75,36,75v33,0,38,-31,38,-75v0,-37,-5,-76,-38,-76v-28,0,-36,30,-36,76","w":172},"\u011b":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm132,-270r-36,51r-28,0r-36,-51r28,0r22,31r22,-31r28,0","w":159},"\u0113":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm35,-235r0,-20r95,0r0,20r-95,0","w":159},"\u0115":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm38,-268r17,0v1,30,55,31,56,0r17,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46","w":159},"\u0117":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm68,-227r0,-36r28,0r0,36r-28,0","w":159},"\u0119":{"d":"78,5v-53,-1,-65,-41,-65,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v2,17,-13,51,-39,64v-17,8,-35,30,-35,44v0,20,27,15,38,8r6,13v-25,16,-72,14,-70,-18v0,-15,11,-30,33,-43xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57","w":159},"\u011d":{"d":"147,-193r0,181v0,58,-27,78,-66,78v-12,0,-58,0,-63,-48r30,0v1,18,15,24,31,24v50,0,38,-36,37,-68v-7,16,-25,26,-44,26v-56,0,-59,-70,-59,-96v0,-52,14,-102,63,-102v22,-1,36,17,42,30r0,-25r29,0xm80,-172v-28,0,-36,30,-36,76v0,31,5,70,35,70v33,0,39,-30,39,-70v0,-37,-5,-76,-38,-76xm35,-219r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u011f":{"d":"147,-193r0,181v0,58,-27,78,-66,78v-12,0,-58,0,-63,-48r30,0v1,18,15,24,31,24v50,0,38,-36,37,-68v-7,16,-25,26,-44,26v-56,0,-59,-70,-59,-96v0,-52,14,-102,63,-102v22,-1,36,17,42,30r0,-25r29,0xm80,-172v-28,0,-36,30,-36,76v0,31,5,70,35,70v33,0,39,-30,39,-70v0,-37,-5,-76,-38,-76xm42,-268r18,0v1,31,54,30,55,0r17,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0121":{"d":"147,-193r0,181v0,58,-27,78,-66,78v-12,0,-58,0,-63,-48r30,0v1,18,15,24,31,24v50,0,38,-36,37,-68v-7,16,-25,26,-44,26v-56,0,-59,-70,-59,-96v0,-52,14,-102,63,-102v22,-1,36,17,42,30r0,-25r29,0xm80,-172v-28,0,-36,30,-36,76v0,31,5,70,35,70v33,0,39,-30,39,-70v0,-37,-5,-76,-38,-76xm72,-227r0,-36r28,0r0,36r-28,0","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0123":{"d":"147,-193r0,181v0,58,-27,78,-66,78v-12,0,-58,0,-63,-48r30,0v1,18,15,24,31,24v50,0,38,-36,37,-68v-7,16,-25,26,-44,26v-56,0,-59,-70,-59,-96v0,-52,14,-102,63,-102v22,-1,36,17,42,30r0,-25r29,0xm80,-172v-28,0,-36,30,-36,76v0,31,5,70,35,70v33,0,39,-30,39,-70v0,-37,-5,-76,-38,-76xm97,-257r0,33r-30,0v0,-30,-4,-59,28,-58v2,16,-12,8,-12,25r14,0","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0125":{"d":"20,0r0,-257r30,0r1,86v8,-16,29,-27,46,-27v50,0,50,38,50,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0xm33,-278r37,-51r28,0r36,51r-29,0r-21,-32r-22,32r-29,0"},"\u0127":{"d":"-1,-213r0,-17r26,0r0,-27r30,0r0,27r39,0r0,17r-39,0v1,13,-2,31,1,42v8,-16,30,-27,47,-27v50,0,49,38,49,61r0,137r-30,0r0,-133v0,-15,-1,-39,-28,-39v-16,0,-39,11,-39,39r0,133r-30,0r0,-213r-26,0","w":172},"\u0129":{"d":"22,0r0,-193r30,0r0,193r-30,0xm17,-264v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":73},"\u012b":{"d":"22,0r0,-193r30,0r0,193r-30,0xm-11,-235r0,-20r95,0r0,20r-95,0","w":73},"\u012f":{"d":"52,-193r0,193v-27,23,-33,35,-33,45v0,19,23,15,34,8r5,13v-22,17,-61,14,-61,-18v0,-18,12,-34,38,-48r-13,0r0,-193r30,0xm22,-222r0,-35r30,0r0,35r-30,0","w":73},"\u0135":{"d":"52,-193r0,212v2,37,-22,51,-60,46r0,-26v23,5,30,-7,30,-31r0,-201r30,0xm-14,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":73},"\u0137":{"d":"95,-120r69,120r-35,0r-54,-95r-25,30r0,65r-30,0r0,-257r30,0r1,153r67,-89r36,0xm69,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","w":159},"\u013a":{"d":"22,0r0,-257r30,0r0,257r-30,0xm22,-278r25,-51r35,0r-39,51r-21,0","w":73,"k":{"\u0175":-4,"w":-4}},"\u013e":{"d":"22,0r0,-257r30,0r0,257r-30,0xm67,-206r9,-51r32,0r-22,51r-19,0","w":93,"k":{"\u0175":-4,"w":-4}},"\u013c":{"d":"22,0r0,-257r30,0r0,257r-30,0xm22,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","w":73,"k":{"\u0175":-4,"w":-4}},"\u0144":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0xm68,-219r25,-51r35,0r-39,51r-21,0","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0148":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0xm133,-270r-37,51r-27,0r-36,-51r28,0r22,31r22,-31r28,0","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0146":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0xm68,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u014d":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm33,-235r0,-20r95,0r0,20r-95,0","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u014f":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm35,-268r17,0v1,30,54,31,55,0r18,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u0151":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm98,-219r25,-51r35,0r-39,51r-21,0xm39,-219r25,-51r35,0r-39,51r-21,0","w":159,"k":{"\u0177":-4,"\u0175":-4,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4}},"\u0155":{"d":"20,0r0,-193r30,0v1,9,-2,22,1,29v10,-22,27,-40,55,-32r0,30v-26,-7,-56,5,-56,44r0,122r-30,0xm28,-219r25,-51r36,0r-39,51r-22,0","w":106,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u0157":{"d":"20,0r0,-193r30,0v1,9,-2,22,1,29v10,-22,27,-40,55,-32r0,30v-26,-7,-56,5,-56,44r0,122r-30,0xm21,51r0,-33r29,0v1,30,3,59,-28,58v-3,-17,13,-8,13,-25r-14,0","w":106,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u0159":{"d":"20,0r0,-193r30,0v1,9,-2,22,1,29v10,-22,27,-40,55,-32r0,30v-26,-7,-56,5,-56,44r0,122r-30,0xm109,-270r-36,51r-28,0r-36,-51r28,0r22,31r22,-31r28,0","w":106,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u015b":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,95,20,95,90v0,40,-27,60,-63,60v-66,0,-66,-48,-66,-68r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32xm62,-219r25,-51r36,0r-39,51r-22,0","w":146,"k":{"\u0175":-4,"w":-4}},"\u015d":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,95,20,95,90v0,40,-27,60,-63,60v-66,0,-66,-48,-66,-68r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32xm26,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":146,"k":{"\u0175":-4,"w":-4}},"\u015f":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,98,20,95,90v-2,38,-23,58,-60,60r4,-5v-8,0,-17,-1,-19,4v-39,2,-59,-45,-54,-67r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32xm34,68r5,-12v9,4,48,7,43,-10v0,-21,-33,-4,-37,-17v10,-10,11,-29,33,-24r-10,15v19,-3,39,0,40,25v1,31,-50,38,-74,23","w":146,"k":{"\u0175":-4,"w":-4}},"\uf6c2":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,98,20,95,90v-2,38,-23,58,-60,60r4,-5v-8,0,-17,-1,-19,4v-39,2,-59,-45,-54,-67r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32xm34,68r5,-12v9,4,48,7,43,-10v0,-21,-33,-4,-37,-17v10,-10,11,-29,33,-24r-10,15v19,-3,39,0,40,25v1,31,-50,38,-74,23","w":146},"\u0219":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,95,20,95,90v0,40,-27,60,-63,60v-66,0,-66,-48,-66,-68r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32xm59,51r0,-33r30,0v1,30,2,59,-29,58v-3,-17,13,-8,13,-25r-14,0","w":146,"k":{"\u0175":-4,"w":-4}},"\u0165":{"d":"88,-206r10,-51r31,0r-21,51r-20,0xm29,-193r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-4,21,16,23,33,20r0,25v-29,6,-72,-1,-63,-36r0,-133r-28,0r0,-24r28,0","w":115},"\u0163":{"d":"29,-193r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-4,21,16,23,33,20r0,25v-29,6,-72,-1,-63,-36r0,-133r-28,0r0,-24r28,0xm43,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","w":93},"\u0167":{"d":"-2,-107r0,-18r31,0r0,-44r-28,0r0,-24r28,0r0,-56r30,0r0,56r34,0r0,24r-34,0r0,44r36,0r0,18r-36,0v5,34,-19,94,33,82r0,25v-29,6,-72,-1,-63,-36r0,-71r-31,0","w":93},"\u0169":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm64,-264v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40"},"\u016b":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm36,-235r0,-20r95,0r0,20r-95,0"},"\u016d":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm39,-268r17,0v1,30,54,31,55,0r18,0v0,15,-9,46,-45,46v-36,0,-45,-31,-45,-46"},"\u016f":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm63,-248v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21v-11,0,-21,10,-21,21xm48,-248v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,20,-15,35,-35,35v-20,0,-36,-15,-36,-35"},"\u0171":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm101,-219r25,-51r36,0r-39,51r-22,0xm42,-219r25,-51r36,0r-39,51r-22,0"},"\u0173":{"d":"147,0v-27,-3,-39,33,-42,46v0,18,23,14,34,7r6,13v-22,17,-63,12,-63,-17v0,-17,10,-30,36,-49v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0r0,193"},"\u0175":{"d":"49,0r-45,-193r31,0r32,158r33,-158r35,0r33,158r30,-158r32,0r-46,193r-33,0r-35,-158r-32,158r-35,0xm68,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":233,"k":{".":13,",":13}},"\u0177":{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-5,35,-30,57,-74,49r0,-23v28,7,45,-11,47,-35xm25,-219r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":146,"k":{"\u0105":-4,"\u0103":-4,"\u0101":-4,"\u00e3":-4,"\u00e5":-4,"\u00e0":-4,"\u00e4":-4,"\u00e2":-4,"\u00e1":-4,"a":-4,".":20,",":20}},"\u017a":{"d":"14,-167r0,-26r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0xm58,-219r26,-51r35,0r-39,51r-22,0","w":140},"\u017c":{"d":"14,-167r0,-26r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0xm57,-227r0,-36r28,0r0,36r-28,0","w":140},"\u013f":{"d":"21,0r0,-257r32,0r0,229r104,0r0,28r-136,0xm85,-157r0,-36r28,0r0,36r-28,0","w":159,"k":{"\u021a":34,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":34,"\u0164":34,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":34}},"\u0140":{"d":"22,0r0,-257r30,0r0,257r-30,0xm72,-157r0,-36r28,0r0,36r-28,0","w":105,"k":{"\u0175":-4,"w":-4}},"\u00a0":{"w":86},"\u00ad":{"d":"19,-88r0,-28r88,0r0,28r-88,0","w":126},"\u0110":{"d":"56,-26r33,0v55,0,61,-56,61,-102v0,-50,-3,-103,-61,-103r-33,0r0,85r48,0r0,24r-48,0r0,96xm24,0r0,-122r-21,0r0,-24r21,0r0,-111r69,0v80,0,90,57,90,128v0,65,-16,129,-87,129r-72,0","w":200},"\u021a":{"d":"99,-229r0,229r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0xm68,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u021b":{"d":"29,-193r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-4,21,16,23,33,20r0,25v-29,6,-72,-1,-63,-36r0,-133r-28,0r0,-24r28,0xm43,51r0,-33r30,0v1,30,3,59,-28,58v-3,-17,12,-8,12,-25r-14,0","w":93}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Trademark:
 * Helvetica, Neue Helvetica is a trademark of Heidelberger Druckmaschinen AG
 * which may be registered in certain jurisdictions, exclusively licensed through
 * Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen
 * AG.
 * 
 * Full name:
 * HelveticaNeueLTPro-BdCn
 * 
 * Description:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH
 * 
 * Designer:
 * Linotype Library GmbH
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.Linotype.com
 */
Cufon.registerFont({"w":172,"face":{"font-family":"Helvetica Neue LT Pro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 6 3 5 2 3 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-13 -493 278 91","underline-thickness":"18","underline-position":"-18","stemh":"38","stemv":"50","unicode-range":"U+0020-U+021B"},"glyphs":{" ":{"w":86},"!":{"d":"28,-48r50,0r0,48r-50,0r0,-48xm71,-72r-36,0r-7,-102r0,-83r50,0v1,65,-2,126,-7,185","w":106},"\"":{"d":"26,-141r0,-116r45,0r0,116r-45,0xm96,-141r0,-116r45,0r0,116r-45,0","w":166},"#":{"d":"72,-147r-6,44r35,0r6,-44r-35,0xm0,-63r0,-40r31,0r6,-44r-26,0r0,-40r31,0r8,-63r34,0r-7,63r35,0r8,-63r34,0r-7,63r26,0r0,40r-31,0r-6,44r26,0r0,40r-31,0r-8,63r-34,0r7,-63r-35,0r-7,63r-35,0r8,-63r-27,0"},"$":{"d":"74,36r0,-31v-62,-7,-72,-37,-71,-81r50,0v0,20,2,38,21,43r0,-73v-39,-10,-68,-35,-68,-75v0,-44,25,-69,68,-74r0,-25r23,0r0,25v55,6,67,36,66,73r-49,0v0,-18,-4,-31,-17,-35r0,68v35,16,73,23,73,77v0,52,-25,74,-73,77r0,31r-23,0xm74,-159r0,-58v-24,6,-24,49,0,58xm97,-97r0,64v31,-7,25,-56,0,-64"},"%":{"d":"50,11r147,-272r32,0r-147,272r-32,0xm48,-188v0,29,2,43,16,43v14,0,16,-14,16,-43v0,-26,-2,-40,-16,-40v-14,0,-16,14,-16,40xm10,-186v0,-46,9,-69,54,-69v45,0,54,23,54,69v0,46,-9,69,-54,69v-45,0,-54,-23,-54,-69xm162,-64v0,-46,9,-68,54,-68v45,0,54,22,54,68v0,46,-9,69,-54,69v-45,0,-54,-23,-54,-69xm201,-65v0,29,1,43,15,43v14,0,16,-14,16,-43v0,-26,-2,-40,-16,-40v-14,0,-15,14,-15,40","w":280},"&":{"d":"115,-137r38,52v5,-11,9,-27,9,-38r45,0v0,28,-11,53,-26,75r34,48r-56,0r-14,-20v-13,15,-36,25,-62,25v-65,0,-79,-45,-79,-74v0,-30,20,-54,52,-74v-39,-40,-37,-116,39,-114v85,2,80,87,20,120xm123,-51r-43,-62v-20,15,-26,28,-26,44v0,31,52,48,69,18xm94,-225v-35,2,-19,42,-3,57v23,-11,42,-54,3,-57","w":213},"(":{"d":"68,-257r39,0v-56,102,-56,221,0,323r-39,0v-68,-115,-68,-208,0,-323","w":106},")":{"d":"0,-257r38,0v69,115,69,208,0,323r-38,0v56,-102,56,-221,0,-323","w":106},"*":{"d":"55,-257r30,0r0,46r44,-14r9,28r-44,14r27,38r-24,17r-27,-38r-27,38r-24,-17r27,-38r-43,-14r9,-28r43,14r0,-46","w":140},"+":{"d":"86,0r0,-69r-69,0r0,-44r69,0r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0","w":216},",":{"d":"19,-56r48,0v0,56,8,112,-48,115r0,-25v15,-4,20,-17,19,-34r-19,0r0,-56","w":86,"k":{" ":13}},"-":{"d":"16,-125r101,0r0,42r-101,0r0,-42","w":133},".":{"d":"19,-56r48,0r0,56r-48,0r0,-56","w":86,"k":{" ":13}},"\/":{"d":"-1,5r81,-267r41,0r-82,267r-40,0","w":119},"0":{"d":"6,-119v0,-71,4,-136,80,-136v62,0,80,34,80,124v0,71,-4,136,-80,136v-62,0,-80,-34,-80,-124xm58,-135r0,27v0,64,6,79,28,79v23,0,28,-19,28,-85r0,-28v0,-64,-6,-79,-28,-79v-23,0,-28,20,-28,86"},"1":{"d":"117,0r-51,0r0,-180r-51,0r0,-34v36,1,59,-12,64,-41r38,0r0,255"},"2":{"d":"163,-40r0,40r-157,0v-4,-53,39,-98,78,-131v23,-20,26,-32,26,-58v0,-21,-8,-32,-25,-32v-26,0,-29,23,-29,50r-50,0v-3,-55,21,-83,80,-84v94,-2,94,106,36,151v-19,15,-50,44,-55,64r96,0"},"3":{"d":"7,-75r50,0v0,30,5,46,28,46v25,0,29,-19,29,-41v0,-30,-15,-48,-51,-43r0,-34v32,5,46,-13,46,-41v0,-24,-7,-33,-24,-33v-22,0,-27,17,-27,41r-47,0v0,-50,26,-75,75,-75v46,0,73,21,73,66v1,32,-17,50,-39,57v33,5,46,28,46,60v0,35,-14,77,-85,77v-50,0,-75,-30,-74,-80"},"4":{"d":"5,-53r0,-42r85,-160r53,0r0,162r25,0r0,40r-25,0r0,53r-47,0r0,-53r-91,0xm96,-93r-1,-97r-50,97r51,0"},"5":{"d":"153,-250r0,40r-94,0r-5,58v10,-13,25,-19,47,-19v49,0,62,42,62,82v0,56,-16,94,-81,94v-68,0,-77,-41,-76,-78r50,0v0,17,3,42,25,42v21,0,31,-17,31,-50v0,-42,-7,-54,-30,-54v-15,0,-23,10,-25,24r-46,0r9,-139r133,0"},"6":{"d":"59,-79v0,29,5,50,29,50v25,0,28,-21,28,-50v0,-35,-8,-48,-28,-48v-21,0,-29,13,-29,48xm162,-190r-50,0v0,-20,-6,-31,-23,-31v-30,0,-35,41,-31,77v9,-13,24,-22,47,-22v45,0,63,34,63,80v0,59,-26,91,-83,91v-71,0,-80,-57,-80,-119v0,-72,2,-141,86,-141v37,0,70,16,71,65"},"7":{"d":"8,-250r157,0r0,40v-42,59,-66,138,-75,210r-54,0v8,-62,29,-137,79,-205r-107,0r0,-45"},"8":{"d":"57,-73v0,24,6,44,29,44v23,0,30,-20,30,-44v0,-24,-7,-44,-30,-44v-23,0,-29,20,-29,44xm61,-186v0,24,10,36,25,36v15,0,26,-12,26,-36v0,-23,-9,-35,-26,-35v-17,0,-25,12,-25,35xm5,-72v-1,-33,16,-56,43,-64v-69,-24,-32,-132,38,-119v71,-12,107,93,39,119v27,9,43,31,43,64v0,29,-11,77,-82,77v-71,0,-81,-48,-81,-77"},"9":{"d":"57,-171v0,35,8,49,28,49v21,0,28,-14,28,-49v0,-29,-4,-50,-28,-50v-25,0,-28,21,-28,50xm11,-59r50,0v0,19,6,30,23,30v30,0,35,-41,31,-77v-9,13,-25,22,-48,22v-45,0,-62,-34,-62,-80v0,-59,25,-91,82,-91v71,0,81,57,81,119v0,72,-2,141,-86,141v-37,0,-70,-15,-71,-64"},":":{"d":"19,-131r0,-57r48,0r0,57r-48,0xm19,0r0,-56r48,0r0,56r-48,0","w":86},";":{"d":"19,-188r48,0r0,57r-48,0r0,-57xm19,-56r48,0v0,56,8,112,-48,115r0,-25v15,-4,20,-17,19,-34r-19,0r0,-56","w":86},"\u037e":{"d":"19,-188r48,0r0,57r-48,0r0,-57xm19,-56r48,0v0,56,8,112,-48,115r0,-25v15,-4,20,-17,19,-34r-19,0r0,-56","w":86},"<":{"d":"17,-72r0,-38r182,-75r0,45r-122,49r122,49r0,45","w":216},"=":{"d":"17,-30r0,-44r182,0r0,44r-182,0xm17,-108r0,-45r182,0r0,45r-182,0","w":216},">":{"d":"17,3r0,-45r122,-49r-122,-49r0,-45r182,75r0,38","w":216},"?":{"d":"58,-48r50,0r0,48r-50,0r0,-48xm60,-177r-47,0v-2,-50,20,-82,71,-83v77,-2,97,77,54,126v-15,17,-37,32,-33,63r-44,0v-4,-41,14,-65,36,-86v20,-19,21,-68,-11,-69v-21,0,-27,23,-26,49","w":173},"@":{"d":"188,-176r5,-19r31,0r-23,105v0,5,2,7,7,7v14,0,38,-24,38,-62v0,-48,-46,-83,-96,-83v-57,0,-99,48,-99,100v0,55,47,99,102,99v33,0,58,-11,78,-23r32,0v-26,36,-65,57,-119,57v-74,0,-134,-60,-134,-134v0,-74,60,-133,134,-133v72,0,134,43,134,109v0,76,-68,103,-91,103v-15,1,-20,-8,-24,-19v-31,34,-96,20,-96,-42v0,-63,79,-124,121,-65xm148,-162v-38,-2,-58,69,-15,74v40,3,61,-70,15,-74","w":288},"A":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"B":{"d":"70,-116r0,78v35,1,62,-1,62,-39v0,-39,-27,-40,-62,-39xm70,-219r0,67v33,2,56,-3,56,-33v0,-31,-23,-36,-56,-34xm18,0r0,-257v75,2,160,-18,160,65v0,29,-15,48,-39,57v29,4,47,25,47,60v0,40,-21,75,-81,75r-87,0","w":200},"C":{"d":"180,-170r-52,0v0,-37,-8,-54,-31,-54v-26,0,-33,26,-33,99v0,78,12,92,34,92v18,0,32,-9,32,-65r52,0v0,56,-14,103,-82,103v-78,0,-87,-56,-87,-134v0,-78,9,-133,87,-133v74,0,80,55,80,92","w":193,"k":{"\u0104":6,"\u0102":6,"\u0100":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"A":6}},"D":{"d":"72,-219r0,181v58,4,66,-10,67,-93v0,-69,-9,-94,-67,-88xm21,0r0,-257r84,0v72,0,85,49,85,125v0,91,-19,132,-88,132r-81,0","w":206,"k":{"\u0176":20,"\u0104":12,"\u0102":12,"\u0100":12,"\u0178":20,"\u00dd":20,"\u00c3":12,"\u00c5":12,"\u00c0":12,"\u00c4":12,"\u00c2":12,"\u00c1":12,"Y":20,"A":12,".":9,",":9}},"E":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257","w":173},"F":{"d":"18,0r0,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,112r-52,0","w":166,"k":{"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u011b":7,"\u0105":7,"\u0103":7,"\u0101":7,"\u0104":13,"\u0102":13,"\u0100":13,"\u00e8":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e3":7,"\u00e5":7,"\u00e0":7,"\u00e4":7,"\u00e2":7,"\u00e1":7,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"e":7,"a":7,"A":13,".":40,",":40}},"G":{"d":"182,-181r-50,0v0,-19,-8,-43,-29,-43v-25,0,-36,26,-36,90v0,62,6,101,36,101v21,0,38,-32,32,-67r-34,0r0,-39r84,0r0,139r-38,0v-1,-7,2,-18,-1,-24v-13,20,-30,29,-54,29v-64,0,-77,-47,-77,-136v0,-86,21,-131,87,-131v57,0,80,29,80,81","w":200},"H":{"d":"18,0r0,-257r52,0r0,98r60,0r0,-98r52,0r0,257r-52,0r0,-114r-60,0r0,114r-52,0","w":200},"I":{"d":"72,0r-51,0r0,-257r51,0r0,257","w":92},"J":{"d":"99,-257r52,0r0,185v0,55,-26,77,-78,77v-59,0,-69,-38,-68,-86r48,0v-1,27,1,48,23,48v19,0,23,-13,23,-40r0,-184","w":166},"K":{"d":"18,-257r52,0r1,103r65,-103r56,0r-70,110r78,147r-58,0r-53,-105r-19,29r0,76r-52,0r0,-257","w":193},"L":{"d":"162,0r-144,0r0,-257r52,0r0,215r92,0r0,42","w":166,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"M":{"d":"19,0r0,-257r77,0r38,181r37,-181r76,0r0,257r-47,0r-1,-205r-46,205r-40,0r-46,-205r0,205r-48,0","w":266},"N":{"d":"18,-257r60,0r63,176r0,-176r48,0r0,257r-59,0r-64,-180r0,180r-48,0r0,-257","w":206},"O":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"P":{"d":"70,-219r0,78v34,2,57,-2,57,-38v0,-35,-21,-43,-57,-40xm18,0r0,-257r91,0v53,0,70,38,70,77v0,64,-44,82,-109,77r0,103r-52,0","w":186,"k":{"\u0151":9,"\u014f":9,"\u014d":9,"\u0119":9,"\u0117":9,"\u0115":9,"\u0113":9,"\u011b":9,"\u0105":9,"\u0103":9,"\u0101":9,"\u0104":19,"\u0102":19,"\u0100":19,"\u00f5":9,"\u00f2":9,"\u00f6":9,"\u00f4":9,"\u00f3":9,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e3":9,"\u00e5":9,"\u00e0":9,"\u00e4":9,"\u00e2":9,"\u00e1":9,"\u00c3":19,"\u00c5":19,"\u00c0":19,"\u00c4":19,"\u00c2":19,"\u00c1":19,"o":9,"e":9,"a":9,"A":19,".":54,",":54}},"Q":{"d":"64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm134,0v-11,4,-20,5,-34,5v-78,0,-87,-56,-87,-134v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,44,-3,81,-20,105r27,28r-30,28","w":200},"R":{"d":"18,0r0,-257v76,1,164,-16,164,66v0,35,-14,58,-43,64v35,5,42,25,42,79v0,29,3,39,11,48r-56,0v-19,-30,13,-108,-38,-109r-28,0r0,109r-52,0xm70,-219r0,74v35,2,60,-1,60,-38v0,-34,-26,-38,-60,-36","w":200,"k":{"\u021a":6,"\u0176":6,"\u0174":-4,"\u0172":-4,"\u0170":-4,"\u016e":-4,"\u016c":-4,"\u016a":-4,"\u0168":-4,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-4,"\u00dc":-4,"\u00db":-4,"\u00da":-4,"Y":6,"W":-4,"U":-4,"T":6}},"S":{"d":"8,-80r52,0v-1,28,4,47,34,47v16,0,31,-10,31,-32v0,-23,-11,-32,-46,-44v-46,-15,-67,-35,-67,-77v0,-50,30,-76,79,-76v48,0,83,22,80,76r-50,0v0,-24,-8,-38,-28,-38v-42,0,-40,52,-3,65v40,14,89,37,89,85v0,54,-33,79,-89,79v-63,0,-84,-30,-82,-85","w":186},"T":{"d":"4,-257r164,0r0,42r-56,0r0,215r-52,0r0,-215r-56,0r0,-42","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179","w":193},"V":{"d":"1,-257r56,0r37,190r38,-190r54,0r-59,257r-67,0","w":186,"k":{"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0151":9,"\u014f":9,"\u014d":9,"\u012f":9,"\u0119":9,"\u0117":9,"\u0115":9,"\u0113":9,"\u011b":9,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":13,"\u0102":13,"\u0100":13,"\u00f9":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f5":9,"\u00f2":9,"\u00f6":9,"\u00f4":9,"\u00f3":9,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"u":11,"o":9,"i":9,"e":9,"a":6,"A":13,";":6,":":6,".":26,"-":6,",":33}},"W":{"d":"50,0r-47,-257r50,0r29,190r30,-190r50,0r31,190r28,-190r50,0r-47,257r-58,0r-30,-186r-28,186r-58,0","w":273,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":6,"\u0102":6,"\u0100":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"66,-130r-59,-127r57,0r34,83r32,-83r57,0r-60,127r64,130r-58,0r-37,-87r-37,87r-57,0","w":193},"Y":{"d":"1,-257r58,0r35,99r36,-99r56,0r-66,156r0,101r-52,0r0,-101","w":187,"k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":29,"\u014f":29,"\u014d":29,"\u012f":9,"\u0119":29,"\u0117":29,"\u0115":29,"\u0113":29,"\u011b":29,"\u0105":29,"\u0103":29,"\u0101":29,"\u0218":6,"\u015e":6,"\u015c":6,"\u015a":6,"\u0150":7,"\u014e":7,"\u014c":7,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":29,"\u00f2":29,"\u00f6":29,"\u00f4":29,"\u00f3":29,"\u00e8":29,"\u00eb":29,"\u00ea":29,"\u00e9":29,"\u00e3":29,"\u00e5":29,"\u00e0":29,"\u00e4":29,"\u00e2":29,"\u00e1":29,"\u0160":6,"\u00d5":7,"\u00d2":7,"\u00d6":7,"\u00d4":7,"\u00d3":7,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":29,"i":9,"e":29,"a":29,"S":6,"O":7,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"9,0r0,-38r94,-177r-88,0r0,-42r148,0r0,39r-96,176r98,0r0,42r-156,0","w":173},"[":{"d":"29,66r0,-323r82,0r0,36r-38,0r0,251r38,0r0,36r-82,0","w":113},"\\":{"d":"80,5r-81,-267r40,0r82,267r-41,0","w":119},"]":{"d":"2,66r0,-36r38,0r0,-251r-38,0r0,-36r83,0r0,323r-83,0","w":113},"^":{"d":"65,-111r-45,0r68,-139r40,0r68,139r-45,0r-43,-89","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"a":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38","w":173,"k":{"\u0175":-4,"w":-4}},"b":{"d":"17,0r0,-257r49,0v1,26,-2,57,1,81v10,-15,23,-23,42,-23v41,0,59,30,59,102v0,72,-18,102,-59,102v-21,1,-32,-10,-45,-26r0,21r-47,0xm66,-97v0,42,5,64,27,64v22,0,25,-22,25,-64v0,-42,-3,-64,-25,-64v-22,0,-27,22,-27,64","w":180},"c":{"d":"157,-124r-47,0v0,-19,-4,-39,-23,-39v-24,0,-28,22,-28,67v0,48,5,67,27,67v17,0,24,-13,24,-45r47,0v0,51,-20,79,-73,79v-50,0,-75,-24,-75,-102v0,-80,33,-102,79,-102v46,0,69,29,69,75","w":166,"k":{"\u0140":7,"\u0177":4,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":4,"\u00fd":4,"y":4,"l":7}},"d":{"d":"116,0v-1,-6,2,-16,-1,-21v-11,18,-24,26,-44,26v-41,0,-59,-30,-59,-102v0,-72,18,-102,59,-102v20,-1,31,10,43,23r0,-81r49,0r0,257r-47,0xm62,-97v0,42,3,64,25,64v22,0,27,-22,27,-64v0,-42,-5,-64,-27,-64v-22,0,-25,22,-25,64","w":180},"e":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46","w":166,"k":{"x":4}},"f":{"d":"27,0r0,-160r-25,0r0,-34r25,0v-7,-57,24,-75,79,-67r0,35v-25,-3,-33,7,-29,32r29,0r0,34r-29,0r0,160r-50,0","w":106,"k":{"\u0105":7,"\u0103":7,"\u0101":7,"\u00e3":7,"\u00e5":7,"\u00e0":7,"\u00e4":7,"\u00e2":7,"\u00e1":7,"a":7}},"g":{"d":"62,-91v0,27,4,51,25,51v21,0,27,-23,27,-56v0,-47,-6,-65,-26,-65v-22,0,-26,18,-26,70xm63,14v-1,12,12,21,24,21v29,2,30,-34,26,-61v-42,49,-100,23,-100,-74v0,-45,6,-99,60,-99v15,-1,29,9,41,27r0,-22r48,0r0,184v0,51,-23,76,-81,76v-42,0,-66,-19,-66,-52r48,0","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"h":{"d":"17,0r0,-257r49,0r1,83v23,-40,96,-35,96,30r0,144r-49,0r0,-134v0,-20,-6,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0","w":180},"i":{"d":"18,-217r0,-43r50,0r0,43r-50,0xm18,0r0,-194r50,0r0,194r-50,0","w":86},"j":{"d":"18,-217r0,-43r50,0r0,43r-50,0xm18,-4r0,-190r50,0r0,207v4,40,-28,54,-77,50r0,-36v23,2,27,-5,27,-31","w":86},"k":{"d":"18,-257r50,0r1,136r50,-73r55,0r-56,77r64,117r-55,0r-41,-80r-18,23r0,57r-50,0r0,-257","w":180},"l":{"d":"18,0r0,-257r50,0r0,257r-50,0","w":86},"m":{"d":"17,0r0,-194r47,0v1,6,-2,16,1,20v21,-36,83,-32,94,6v18,-49,97,-40,97,27r0,141r-49,0r0,-135v0,-16,-6,-26,-20,-26v-16,0,-26,11,-26,34r0,127r-49,0r0,-135v0,-16,-6,-26,-20,-26v-16,0,-26,11,-26,34r0,127r-49,0","w":272},"n":{"d":"17,0r0,-194r47,0v1,7,-2,18,1,23v22,-43,98,-40,98,27r0,144r-49,0r0,-134v0,-20,-6,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"o":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68","k":{"v":-4}},"p":{"d":"17,63r0,-257r47,0v1,6,-2,16,1,21v11,-18,24,-26,44,-26v41,0,59,30,59,102v0,72,-18,102,-59,102v-20,1,-31,-10,-43,-23r0,81r-49,0xm66,-97v0,42,5,64,27,64v22,0,25,-22,25,-64v0,-42,-3,-64,-25,-64v-22,0,-27,22,-27,64","w":180,"k":{".":6,",":6}},"q":{"d":"114,63v-1,-26,2,-57,-1,-81v-10,15,-23,23,-42,23v-41,0,-59,-30,-59,-102v0,-72,18,-102,59,-102v21,-1,32,10,45,26r0,-21r47,0r0,257r-49,0xm114,-97v0,-42,-5,-64,-27,-64v-22,0,-25,22,-25,64v0,42,3,64,25,64v22,0,27,-22,27,-64","w":180},"r":{"d":"17,0r0,-194r47,0v1,8,-2,20,1,26v11,-21,26,-35,53,-30r0,48v-27,-4,-52,2,-52,34r0,116r-49,0","w":119,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,"q":6,".":27,"-":13,",":27}},"s":{"d":"8,-63r45,0v-1,21,7,33,26,34v30,2,32,-39,7,-45v-35,-8,-76,-24,-76,-66v0,-32,20,-59,71,-59v48,1,68,21,66,63r-44,0v6,-37,-44,-37,-46,-8v-2,20,34,28,52,33v73,20,46,122,-29,116v-58,-4,-73,-26,-72,-68","w":159},"t":{"d":"27,-194r0,-55r50,0r0,55r29,0r0,34r-29,0r0,105v-2,20,12,23,29,20r0,35v-45,5,-79,6,-79,-49r0,-111r-25,0r0,-34r25,0","w":106},"u":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0","w":180},"v":{"d":"81,-55v12,-44,17,-94,27,-139r50,0r-49,194r-57,0r-50,-194r52,0","w":159,"k":{"\u0105":6,"\u0103":6,"\u0101":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"a":6,".":20,",":20}},"w":{"d":"45,0r-42,-194r49,0r24,138r24,-138r54,0r26,138r23,-138r48,0r-42,194r-56,0r-27,-138r-24,138r-57,0","w":253,"k":{".":13,",":13}},"x":{"d":"83,-135r27,-59r52,0r-51,94r53,100r-52,0r-29,-63r-29,63r-51,0r52,-100r-50,-94r52,0","w":166},"y":{"d":"17,63r0,-37v23,5,39,-4,39,-26r-54,-194r52,0r29,134r25,-134r50,0r-47,181v-19,76,-31,77,-94,76","w":159,"k":{"\u0105":6,"\u0103":6,"\u0101":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"a":6,".":20,",":20}},"z":{"d":"9,0r0,-38r77,-115r-74,0r0,-41r133,0r0,38r-78,116r78,0r0,40r-136,0","w":153},"{":{"d":"11,-81r0,-29v55,-5,-10,-150,61,-147r32,0r0,36v-57,-7,6,112,-51,126v33,5,26,60,26,99v-1,19,5,29,25,26r0,36v-43,3,-69,-2,-69,-48v0,-37,10,-97,-24,-99","w":113},"|":{"d":"18,5r0,-267r44,0r0,267r-44,0","w":79},"}":{"d":"9,66r0,-36v57,7,-5,-112,51,-126v-33,-4,-26,-60,-26,-99v0,-19,-5,-29,-25,-26r0,-36v43,-3,70,2,70,48v0,37,-11,97,24,99r0,29v-54,6,10,150,-62,147r-32,0","w":113},"~":{"d":"69,-126v24,0,61,25,77,25v14,0,28,-16,32,-25r13,39v-10,18,-23,30,-44,30v-25,0,-61,-24,-77,-24v-14,0,-28,15,-32,24r-13,-38v10,-18,23,-31,44,-31","w":216},"\u00a1":{"d":"28,-146r0,-48r50,0r0,48r-50,0xm28,63v-1,-65,2,-126,7,-185r36,0r7,102r0,83r-50,0","w":106},"\u00a2":{"d":"80,37r0,-32v-39,-2,-68,-20,-68,-100v0,-54,10,-99,68,-104r0,-27r19,0r0,27v31,2,62,16,62,74r-48,0v0,-15,-1,-33,-14,-38r0,132v14,-8,14,-29,14,-44r48,0v0,48,-18,75,-62,80r0,32r-19,0xm80,-31r0,-132v-26,7,-27,121,0,132"},"\u00a3":{"d":"3,-110r0,-30r24,0v-33,-57,-16,-115,61,-115v49,0,78,23,79,75r-48,0v0,-22,-7,-41,-28,-41v-51,0,-25,55,-11,81r60,0r0,30r-50,0v7,32,-9,47,-30,71v36,-10,60,25,95,-7r16,34v-47,42,-103,-15,-154,14r-15,-31v29,-20,51,-47,38,-81r-37,0"},"\u00a5":{"d":"64,0r0,-57r-51,0r0,-30r51,0v1,-10,0,-18,-4,-24r-47,0r0,-29r33,0r-52,-110r54,0r39,97r40,-97r52,0r-52,110r33,0r0,29r-47,0v-4,6,-5,14,-4,24r51,0r0,30r-51,0r0,57r-45,0"},"\u0192":{"d":"23,-125r6,-29r38,0v9,-66,27,-118,104,-102r-7,34v-40,-13,-41,34,-50,68r40,0r-6,29r-40,0r-23,124v-5,50,-40,72,-98,62r8,-33v26,6,37,-3,43,-34r23,-119r-38,0"},"\u00a7":{"d":"47,-117v0,28,45,31,62,48v48,-35,-16,-63,-42,-75v-14,8,-20,18,-20,27xm110,-204v-1,-17,-7,-24,-25,-24v-30,0,-28,32,1,45v36,16,82,26,82,79v0,18,-11,42,-28,51v41,36,15,114,-54,108v-51,-5,-73,-25,-72,-68r47,0v-8,40,53,44,49,10v-5,-49,-105,-46,-105,-107v0,-23,12,-42,32,-52v-48,-35,-11,-100,52,-100v49,0,69,24,69,58r-48,0","w":173},"\u00a4":{"d":"42,-125v0,29,17,47,44,47v27,0,45,-18,45,-47v0,-29,-18,-46,-45,-46v-27,0,-44,17,-44,46xm22,-39r-22,-22r18,-18v-18,-25,-19,-67,0,-92r-18,-18r22,-22r18,18v25,-18,67,-19,92,0r19,-18r22,22r-18,18v18,25,19,67,0,92r18,18r-22,22r-19,-18v-26,19,-66,21,-92,0"},"'":{"d":"24,-141r0,-116r45,0r0,116r-45,0","w":93},"\u00ab":{"d":"19,-75r0,-58r53,-43r0,47r-28,25r28,25r0,47xm81,-75r0,-58r54,-43r0,47r-29,25r29,25r0,47","w":153},"\u00b7":{"d":"8,-102v0,-20,15,-34,35,-34v20,0,35,14,35,34v0,20,-15,35,-35,35v-20,0,-35,-15,-35,-35","w":86},"\u00b6":{"d":"66,50r0,-171v-43,0,-66,-23,-66,-67v-2,-93,89,-64,168,-69r0,307r-38,0r0,-273r-26,0r0,273r-38,0"},"\u00bb":{"d":"81,-32r0,-47r28,-25r-28,-25r0,-47r54,43r0,58xm19,-32r0,-47r28,-25r-28,-25r0,-47r53,43r0,58","w":153},"\u00bf":{"d":"115,-146r-50,0r0,-48r50,0r0,48xm113,-16r47,0v2,49,-20,81,-71,82v-78,2,-96,-76,-53,-125v15,-17,36,-33,32,-63r44,0v11,60,-47,72,-49,124v0,18,8,30,24,30v21,0,27,-22,26,-48","w":173},"`":{"d":"63,-217r-33,0r-36,-52r50,0","w":79},"\u00b4":{"d":"17,-217r19,-52r50,0r-36,52r-33,0","w":79},"\u00af":{"d":"-13,-256r106,0r0,27r-106,0r0,-27","w":79},"\u00a8":{"d":"51,-221r0,-43r40,0r0,43r-40,0xm-11,-221r0,-43r40,0r0,43r-40,0","w":79},"\u00b8":{"d":"34,0r19,0r-14,21v20,-6,43,3,42,24v7,34,-58,39,-81,26r7,-16v10,6,43,9,43,-7v0,-18,-31,-3,-36,-16","w":79},"\u00c6":{"d":"84,-97r43,0r0,-120r-3,0xm-2,0r97,-257r167,0r0,42r-85,0r0,61r79,0r0,42r-79,0r0,70r88,0r0,42r-138,0r0,-54r-57,0r-18,54r-54,0","w":273},"\u00aa":{"d":"69,-193v-11,7,-29,7,-29,23v0,8,3,15,11,15v17,0,20,-19,18,-38xm57,-255v80,-3,33,64,52,120r-36,0v-3,-4,-3,-8,-4,-12v-14,29,-72,12,-65,-18v-3,-31,25,-37,53,-41v18,-3,15,-26,-1,-26v-11,0,-16,7,-15,17r-33,0v-2,-29,18,-40,49,-40","w":113},"\u0141":{"d":"18,0r0,-92r-18,11r0,-38r18,-11r0,-127r52,0r0,94r45,-28r0,38r-45,28r0,83r92,0r0,42r-144,0","w":166},"\u00d8":{"d":"30,11r11,-25v-24,-22,-28,-64,-28,-115v0,-78,9,-133,87,-133v18,0,32,3,44,9r9,-22r17,7r-11,25v24,22,29,63,29,114v0,78,-10,134,-88,134v-18,0,-32,-3,-43,-9r-10,22xm134,-182v-22,43,-39,91,-59,136v5,9,13,13,25,13v31,0,36,-27,36,-96v0,-22,0,-39,-2,-53xm125,-211v-5,-9,-13,-13,-25,-13v-31,0,-36,26,-36,95v0,23,1,41,3,54","w":200},"\u0152":{"d":"64,-129v0,68,4,96,36,96v31,0,32,-24,32,-96v0,-72,-1,-95,-32,-95v-32,0,-36,27,-36,95xm269,-257r0,42r-87,0r0,61r82,0r0,42r-82,0r0,70r90,0r0,42r-134,0v-1,-5,2,-12,-1,-15v-6,13,-27,20,-44,20v-75,0,-80,-68,-80,-136v0,-67,10,-131,77,-131v19,-1,37,7,48,19r0,-14r131,0","w":280},"\u00ba":{"d":"40,-193v0,22,3,38,17,38v12,0,16,-11,16,-38v0,-27,-4,-39,-16,-39v-14,0,-17,17,-17,39xm4,-193v0,-40,13,-62,53,-62v41,0,52,21,52,62v0,40,-12,61,-52,61v-41,0,-53,-20,-53,-61","w":113},"\u00e6":{"d":"60,-134r-44,0v-2,-48,29,-65,68,-65v26,0,40,5,50,23v7,-15,25,-23,46,-23v62,-1,71,47,70,110r-97,0v-1,28,2,60,24,60v16,0,23,-12,26,-36r44,0v-2,45,-24,70,-70,70v-36,0,-52,-16,-58,-33v-15,29,-31,33,-62,33v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-26,12,-24,31xm153,-119r50,0v-1,-30,-5,-46,-25,-46v-21,1,-26,24,-25,46xm107,-97v-19,13,-50,11,-50,41v0,15,6,27,19,27v13,0,31,-8,31,-30r0,-38","w":259},"\u0131":{"d":"18,0r0,-194r50,0r0,194r-50,0","w":86},"\u0142":{"d":"18,0r0,-102r-22,16r0,-32r22,-15r0,-124r50,0r0,91r23,-15r0,32r-23,15r0,134r-50,0","w":86},"\u00f8":{"d":"19,13r13,-26v-17,-16,-22,-44,-22,-84v0,-84,48,-119,116,-94r12,-24r16,9r-14,25v17,16,23,44,23,84v0,83,-49,119,-116,94r-12,24xm67,-41v4,8,10,12,19,12v20,0,27,-19,27,-68v0,-12,-1,-21,-1,-29xm60,-67v17,-27,29,-58,45,-86v-4,-8,-10,-12,-19,-12v-31,-3,-25,57,-26,98"},"\u0153":{"d":"158,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm87,-29v20,0,26,-19,26,-68v0,-49,-6,-68,-26,-68v-24,0,-27,28,-27,68v0,40,2,68,27,68xm256,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-23,70,-67,70v-30,0,-45,-14,-50,-28v-7,18,-29,28,-54,28v-56,0,-72,-35,-72,-102v0,-66,20,-102,77,-102v27,0,41,9,51,27v10,-18,28,-27,47,-27v62,-1,72,46,71,110","w":266},"\u00df":{"d":"64,0r-49,0r0,-190v0,-50,24,-72,76,-72v75,0,97,89,39,114v27,8,40,29,40,70v0,43,-24,91,-88,79r0,-34v30,5,39,-15,38,-51v0,-30,-9,-47,-38,-44r0,-34v23,2,30,-11,30,-34v0,-17,-4,-32,-23,-32v-20,0,-25,16,-25,39r0,189","w":180},"\u00b9":{"d":"41,-101r0,-104r-32,0r0,-25v23,1,39,-7,42,-25r31,0r0,154r-41,0","w":112},"\u00ac":{"d":"154,-35r0,-73r-137,0r0,-45r182,0r0,118r-45,0","w":216},"\u00b5":{"d":"114,-65r0,-129r49,0r0,194r-47,0v-1,-7,2,-18,-1,-23v-13,22,-29,33,-49,25r0,61r-49,0r0,-257r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32","w":180},"\u00d0":{"d":"72,-219r0,67r34,0r0,39r-34,0r0,75v58,4,66,-10,67,-93v0,-69,-9,-94,-67,-88xm21,0r0,-113r-21,0r0,-39r21,0r0,-105r84,0v72,0,85,49,85,125v0,91,-19,132,-88,132r-81,0","w":206},"\u00bd":{"d":"260,0r-113,0v-4,-34,28,-63,55,-81v14,-9,17,-18,17,-29v0,-10,-5,-17,-15,-17v-15,0,-19,15,-19,27r-38,0v-2,-36,13,-53,58,-54v67,-2,69,58,31,86v-12,8,-39,27,-40,38r64,0r0,30xm33,-101r0,-104r-33,0r0,-25v23,1,39,-7,42,-25r31,0r0,154r-40,0xm26,11r146,-272r32,0r-146,272r-32,0","w":259},"\u00b1":{"d":"17,0r0,-45r182,0r0,45r-182,0xm86,-143r0,-39r44,0r0,39r69,0r0,44r-69,0r0,39r-44,0r0,-39r-69,0r0,-44r69,0","w":216},"\u00de":{"d":"70,-173r0,78v34,2,57,-2,57,-38v0,-35,-21,-43,-57,-40xm18,0r0,-257r52,0r0,46r39,0v53,0,70,38,70,77v0,64,-44,82,-109,77r0,57r-52,0","w":186},"\u00bc":{"d":"33,-101r0,-104r-33,0r0,-25v23,1,39,-7,42,-25r31,0r0,154r-40,0xm35,11r146,-272r32,0r-146,272r-32,0xm144,-28r0,-32r55,-94r45,0r0,97r16,0r0,29r-16,0r0,28r-38,0r0,-28r-62,0xm206,-57v-1,-17,2,-37,-1,-52r-31,52r32,0","w":259},"\u00f7":{"d":"73,-15v0,-20,15,-35,35,-35v20,0,35,15,35,35v0,20,-15,35,-35,35v-20,0,-35,-15,-35,-35xm73,-167v0,-20,15,-35,35,-35v20,0,35,15,35,35v0,20,-15,35,-35,35v-20,0,-35,-15,-35,-35xm17,-69r0,-44r182,0r0,44r-182,0","w":216},"\u00a6":{"d":"18,-165r0,-97r44,0r0,97r-44,0xm18,5r0,-98r44,0r0,98r-44,0","w":79},"\u00b0":{"d":"46,-202v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-14,-12,-26,-26,-26v-14,0,-26,12,-26,26xm19,-202v0,-30,23,-53,53,-53v30,0,53,23,53,53v0,30,-23,54,-53,54v-30,0,-53,-24,-53,-54","w":144},"\u00fe":{"d":"17,63r0,-320r49,0r1,84v9,-18,22,-26,42,-26v41,0,59,30,59,102v0,72,-18,102,-59,102v-20,1,-31,-10,-43,-23r0,81r-49,0xm66,-97v0,42,5,64,27,64v22,0,25,-22,25,-64v0,-42,-3,-64,-25,-64v-22,0,-27,22,-27,64","w":180},"\u00be":{"d":"3,-206v-1,-34,18,-49,52,-49v60,0,69,62,28,74v22,4,29,17,29,36v0,21,-9,47,-61,47v-38,0,-52,-19,-51,-52r38,0v0,13,5,24,18,24v12,0,16,-9,16,-19v0,-14,-11,-25,-32,-22r0,-26v29,8,42,-35,15,-35v-13,0,-16,10,-16,22r-36,0xm49,11r146,-272r32,0r-146,272r-32,0xm174,-57r32,0v-1,-17,2,-37,-1,-52xm144,-28r0,-32r55,-94r45,0r0,97r16,0r0,29r-16,0r0,28r-38,0r0,-28r-62,0","w":259},"\u00b2":{"d":"112,-101r-112,0v-4,-34,27,-62,54,-80v14,-9,18,-19,18,-30v0,-10,-5,-17,-15,-17v-15,0,-19,15,-19,27r-38,0v-2,-36,13,-53,58,-54v66,-3,68,58,31,86v-12,9,-39,27,-40,39r63,0r0,29","w":112},"\u00ae":{"d":"51,-129v0,52,39,96,93,96v54,0,93,-44,93,-96v0,-52,-39,-95,-93,-95v-54,0,-93,43,-93,95xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm123,-175r0,35v22,-1,50,6,49,-18v-1,-23,-28,-16,-49,-17xm92,-57r0,-144v51,-1,111,-5,111,45v0,24,-15,37,-35,40r35,59r-34,0r-34,-57r-12,0r0,57r-31,0","w":288},"\u00f0":{"d":"38,-210r-14,-15r27,-16v-8,-8,-16,-16,-24,-23r38,-22v9,8,16,14,24,22r27,-16r15,15r-27,17v38,42,59,85,59,151v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102v0,-71,39,-113,89,-86v-9,-14,-20,-29,-33,-43xm60,-94v0,39,2,65,26,65v20,0,27,-19,27,-65v0,-45,-7,-64,-27,-64v-24,0,-26,28,-26,64"},"\u00d7":{"d":"21,-35r56,-56r-56,-56r31,-31r56,56r56,-56r31,31r-56,56r56,56r-31,31r-56,-56r-56,56","w":216},"\u00b3":{"d":"3,-206v-1,-34,18,-49,52,-49v60,0,69,62,28,74v22,4,29,17,29,36v0,21,-9,47,-61,47v-38,0,-52,-19,-51,-52r38,0v0,13,5,24,18,24v12,0,16,-9,16,-19v0,-14,-11,-25,-32,-22r0,-26v29,8,42,-35,15,-35v-13,0,-16,10,-16,22r-36,0","w":112},"\u00a9":{"d":"10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm51,-129v0,52,39,96,93,96v54,0,93,-44,93,-96v0,-52,-39,-95,-93,-95v-54,0,-93,43,-93,95xm178,-107r36,0v-16,93,-146,59,-139,-23v-10,-84,127,-110,138,-23r-35,0v-15,-44,-74,-22,-69,23v-7,47,59,66,69,23","w":288},"\u00c1":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm76,-272r20,-52r49,0r-35,52r-34,0","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u00c2":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm46,-272r28,-52r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u00c4":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm111,-278r0,-42r40,0r0,42r-40,0xm49,-278r0,-42r40,0r0,42r-40,0","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u00c0":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm122,-272r-33,0r-36,-52r50,0","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u00c5":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm80,-304v0,12,8,21,20,21v12,0,21,-9,21,-21v0,-12,-9,-20,-21,-20v-12,0,-20,8,-20,20xm60,-304v0,-23,18,-39,40,-39v22,0,41,16,41,39v0,24,-19,39,-41,39v-23,0,-40,-15,-40,-39","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u00c3":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm69,-275r-25,0v3,-45,35,-54,66,-35v10,6,22,-1,21,-11r26,0v-3,26,-16,45,-34,45v-21,0,-47,-28,-54,1","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u00c7":{"d":"88,4v-66,-5,-75,-60,-75,-133v0,-78,9,-133,87,-133v74,0,80,55,80,92r-52,0v0,-37,-8,-54,-31,-54v-26,0,-33,26,-33,99v0,78,12,92,34,92v18,0,32,-9,32,-65r52,0v1,55,-17,102,-76,103r-10,16v20,-6,43,3,42,24v7,34,-58,39,-81,26r6,-16v10,6,43,9,43,-7v0,-18,-31,-3,-36,-16","w":193,"k":{"\u0104":6,"\u0102":6,"\u0100":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"A":6}},"\u00c9":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257xm72,-272r19,-52r50,0r-36,52r-33,0","w":173},"\u00ca":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257xm36,-272r28,-52r52,0r28,52r-38,0r-16,-31r-18,31r-36,0","w":173},"\u00cb":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257xm100,-277r0,-42r40,0r0,42r-40,0xm38,-277r0,-42r40,0r0,42r-40,0","w":173},"\u00c8":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257xm115,-272r-34,0r-35,-52r49,0","w":173},"\u00cd":{"d":"72,0r-51,0r0,-257r51,0r0,257xm21,-272r19,-52r50,0r-35,52r-34,0","w":92},"\u00ce":{"d":"72,0r-51,0r0,-257r51,0r0,257xm-7,-272r28,-52r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":92},"\u00cf":{"d":"72,0r-51,0r0,-257r51,0r0,257xm58,-277r0,-42r40,0r0,42r-40,0xm-4,-277r0,-42r40,0r0,42r-40,0","w":92},"\u00cc":{"d":"72,0r-51,0r0,-257r51,0r0,257xm73,-272r-34,0r-35,-52r49,0","w":92},"\u00d1":{"d":"18,-257r60,0r63,176r0,-176r48,0r0,257r-59,0r-64,-180r0,180r-48,0r0,-257xm73,-275r-25,0v3,-45,35,-54,66,-35v10,5,22,-1,21,-11r26,0v-3,26,-16,45,-34,45v-21,0,-47,-28,-54,1","w":206},"\u00d3":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm82,-272r19,-52r50,0r-35,52r-34,0","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"\u00d4":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm47,-272r28,-52r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"\u00d6":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm111,-277r0,-42r41,0r0,42r-41,0xm49,-277r0,-42r41,0r0,42r-41,0","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"\u00d2":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm122,-272r-33,0r-36,-52r50,0","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"\u00d5":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm68,-275r-25,0v4,-44,35,-54,66,-35v10,6,22,-1,21,-11r26,0v-3,26,-15,45,-33,45v-21,1,-48,-28,-55,1","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"\u0160":{"d":"8,-80r52,0v-1,28,4,47,34,47v16,0,31,-10,31,-32v0,-23,-11,-32,-46,-44v-46,-15,-67,-35,-67,-77v0,-50,30,-76,79,-76v48,0,83,22,80,76r-50,0v0,-24,-8,-38,-28,-38v-42,0,-40,52,-3,65v40,14,89,37,89,85v0,54,-33,79,-89,79v-63,0,-84,-30,-82,-85xm67,-273r-28,-52r38,0r16,31r18,-31r36,0r-29,52r-51,0","w":186},"\u00da":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm79,-272r20,-52r49,0r-35,52r-34,0","w":193},"\u00db":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm43,-272r28,-52r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":193},"\u00dc":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm108,-277r0,-42r40,0r0,42r-40,0xm46,-277r0,-42r40,0r0,42r-40,0","w":193},"\u00d9":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm120,-272r-34,0r-35,-52r49,0","w":193},"\u00dd":{"d":"1,-257r58,0r35,99r36,-99r56,0r-66,156r0,101r-52,0r0,-101xm78,-273r19,-52r50,0r-35,52r-34,0","w":187,"k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":29,"\u014f":29,"\u014d":29,"\u012f":9,"\u0119":29,"\u0117":29,"\u0115":29,"\u0113":29,"\u011b":29,"\u0105":29,"\u0103":29,"\u0101":29,"\u0218":6,"\u015e":6,"\u015c":6,"\u015a":6,"\u0150":7,"\u014e":7,"\u014c":7,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":29,"\u00f2":29,"\u00f6":29,"\u00f4":29,"\u00f3":29,"\u00e8":29,"\u00eb":29,"\u00ea":29,"\u00e9":29,"\u00e3":29,"\u00e5":29,"\u00e0":29,"\u00e4":29,"\u00e2":29,"\u00e1":29,"\u0160":6,"\u00d5":7,"\u00d2":7,"\u00d6":7,"\u00d4":7,"\u00d3":7,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":29,"i":9,"e":29,"a":29,"S":6,"O":7,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u0178":{"d":"1,-257r58,0r35,99r36,-99r56,0r-66,156r0,101r-52,0r0,-101xm104,-277r0,-42r41,0r0,42r-41,0xm42,-277r0,-42r41,0r0,42r-41,0","w":187,"k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":29,"\u014f":29,"\u014d":29,"\u012f":9,"\u0119":29,"\u0117":29,"\u0115":29,"\u0113":29,"\u011b":29,"\u0105":29,"\u0103":29,"\u0101":29,"\u0218":6,"\u015e":6,"\u015c":6,"\u015a":6,"\u0150":7,"\u014e":7,"\u014c":7,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":29,"\u00f2":29,"\u00f6":29,"\u00f4":29,"\u00f3":29,"\u00e8":29,"\u00eb":29,"\u00ea":29,"\u00e9":29,"\u00e3":29,"\u00e5":29,"\u00e0":29,"\u00e4":29,"\u00e2":29,"\u00e1":29,"\u0160":6,"\u00d5":7,"\u00d2":7,"\u00d6":7,"\u00d4":7,"\u00d3":7,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":29,"i":9,"e":29,"a":29,"S":6,"O":7,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u017d":{"d":"9,0r0,-38r94,-177r-88,0r0,-42r148,0r0,39r-96,176r98,0r0,42r-156,0xm65,-273r-28,-52r38,0r16,31r18,-31r36,0r-28,52r-52,0","w":173},"\u00e1":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38xm68,-217r20,-52r50,0r-36,52r-34,0","w":173,"k":{"\u0175":-4,"w":-4}},"\u00e2":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38xm32,-217r28,-52r52,0r28,52r-38,0r-16,-30r-18,30r-36,0","w":173,"k":{"\u0175":-4,"w":-4}},"\u00e4":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38xm98,-221r0,-43r40,0r0,43r-40,0xm36,-221r0,-43r40,0r0,43r-40,0","w":173,"k":{"\u0175":-4,"w":-4}},"\u00e0":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38xm111,-217r-34,0r-35,-52r49,0","w":173,"k":{"\u0175":-4,"w":-4}},"\u00e5":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38xm65,-248v0,12,8,20,20,20v12,0,21,-8,21,-20v0,-12,-9,-21,-21,-21v-12,0,-20,9,-20,21xm45,-248v0,-23,18,-40,40,-40v22,0,41,17,41,40v0,24,-19,38,-41,38v-23,0,-40,-14,-40,-38","w":173,"k":{"\u0175":-4,"w":-4}},"\u00e3":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38xm56,-220r-25,0v4,-54,42,-49,77,-32v7,0,10,-8,10,-13r26,0v-3,26,-16,44,-34,44v-21,0,-47,-28,-54,1","w":173,"k":{"\u0175":-4,"w":-4}},"\u00e7":{"d":"75,5v-50,-5,-66,-32,-66,-102v0,-80,33,-102,79,-102v46,0,69,29,69,75r-47,0v0,-19,-4,-39,-23,-39v-24,0,-28,22,-28,67v0,48,5,67,27,67v17,0,24,-13,24,-45r47,0v0,48,-18,76,-63,79r-10,16v19,-6,42,3,42,24v6,34,-59,39,-82,26r7,-16v10,6,43,9,43,-7v0,-18,-31,-3,-36,-16","w":166,"k":{"\u0140":7,"\u0177":4,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":4,"\u00fd":4,"y":4,"l":7}},"\u00e9":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm68,-217r20,-52r50,0r-36,52r-34,0","w":166,"k":{"x":4}},"\u00ea":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm32,-217r28,-52r52,0r28,52r-38,0r-16,-30r-18,30r-36,0","w":166,"k":{"x":4}},"\u00eb":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm97,-221r0,-43r41,0r0,43r-41,0xm35,-221r0,-43r41,0r0,43r-41,0","w":166,"k":{"x":4}},"\u00e8":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm109,-217r-34,0r-35,-52r49,0","w":166,"k":{"x":4}},"\u00ed":{"d":"18,0r0,-194r50,0r0,194r-50,0xm18,-217r20,-52r49,0r-35,52r-34,0","w":86},"\u00ee":{"d":"18,0r0,-194r50,0r0,194r-50,0xm-10,-217r28,-52r51,0r29,52r-39,0r-16,-30r-17,30r-36,0","w":86},"\u00ef":{"d":"18,0r0,-194r50,0r0,194r-50,0xm54,-221r0,-43r40,0r0,43r-40,0xm-8,-221r0,-43r40,0r0,43r-40,0","w":86},"\u00ec":{"d":"18,0r0,-194r50,0r0,194r-50,0xm68,-217r-34,0r-35,-52r49,0","w":86},"\u00f1":{"d":"17,0r0,-194r47,0v1,7,-2,18,1,23v22,-43,98,-40,98,27r0,144r-49,0r0,-134v0,-20,-6,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0xm56,-220r-25,0v4,-54,42,-49,77,-32v7,0,10,-8,10,-13r26,0v-3,26,-15,44,-33,44v-21,1,-48,-28,-55,1","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u00f3":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68xm69,-217r19,-52r50,0r-35,52r-34,0","k":{"v":-4}},"\u00f4":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68xm32,-217r28,-52r52,0r28,52r-38,0r-16,-30r-18,30r-36,0","k":{"v":-4}},"\u00f6":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68xm97,-221r0,-43r41,0r0,43r-41,0xm35,-221r0,-43r41,0r0,43r-41,0","k":{"v":-4}},"\u00f2":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68xm108,-217r-34,0r-35,-52r49,0","k":{"v":-4}},"\u00f5":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68xm55,-220r-25,0v4,-54,42,-49,77,-32v7,0,10,-8,10,-13r26,0v-3,26,-16,44,-34,44v-21,1,-46,-28,-54,1","k":{"v":-4}},"\u0161":{"d":"8,-63r45,0v-1,21,7,33,26,34v30,2,32,-39,7,-45v-35,-8,-76,-24,-76,-66v0,-32,20,-59,71,-59v48,1,68,21,66,63r-44,0v6,-37,-44,-37,-46,-8v-2,20,34,28,52,33v73,20,46,122,-29,116v-58,-4,-73,-26,-72,-68xm54,-217r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":159},"\u00fa":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm72,-217r19,-52r50,0r-35,52r-34,0","w":180},"\u00fb":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm36,-217r28,-52r52,0r28,52r-38,0r-17,-30r-17,30r-36,0","w":180},"\u00fc":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm101,-221r0,-43r40,0r0,43r-40,0xm39,-221r0,-43r40,0r0,43r-40,0","w":180},"\u00f9":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm112,-217r-34,0r-35,-52r50,0","w":180},"\u00fd":{"d":"17,63r0,-37v23,5,39,-4,39,-26r-54,-194r52,0r29,134r25,-134r50,0r-47,181v-19,76,-31,77,-94,76xm64,-217r20,-52r49,0r-35,52r-34,0","w":159,"k":{"\u0105":6,"\u0103":6,"\u0101":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"a":6,".":20,",":20}},"\u00ff":{"d":"17,63r0,-37v23,5,39,-4,39,-26r-54,-194r52,0r29,134r25,-134r50,0r-47,181v-19,76,-31,77,-94,76xm94,-221r0,-43r40,0r0,43r-40,0xm32,-221r0,-43r40,0r0,43r-40,0","w":159,"k":{"\u0105":6,"\u0103":6,"\u0101":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"a":6,".":20,",":20}},"\u017e":{"d":"9,0r0,-38r77,-115r-74,0r0,-41r133,0r0,38r-78,116r78,0r0,40r-136,0xm53,-217r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":153},"\u0100":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm47,-312r106,0r0,28r-106,0r0,-28","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u0102":{"d":"75,-97r50,0r-25,-115xm0,0r68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm50,-324r23,0v1,31,53,31,54,0r23,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u0104":{"d":"167,48r10,18v-20,21,-82,13,-75,-16v0,-18,17,-37,44,-50r-12,-54r-68,0r-12,54r-54,0r68,-257r64,0r68,257r-30,0v-30,22,-36,33,-36,44v0,17,19,12,33,4xm75,-97r50,0r-25,-115","w":200,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":4,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"y":6,"w":6,"v":6,"Y":20,"W":4,"V":4,"T":20}},"\u0106":{"d":"180,-170r-52,0v0,-37,-8,-54,-31,-54v-26,0,-33,26,-33,99v0,78,12,92,34,92v18,0,32,-9,32,-65r52,0v0,56,-14,103,-82,103v-78,0,-87,-56,-87,-134v0,-78,9,-133,87,-133v74,0,80,55,80,92xm80,-272r19,-52r50,0r-35,52r-34,0","w":193,"k":{"\u0104":6,"\u0102":6,"\u0100":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"A":6}},"\u0108":{"d":"180,-170r-52,0v0,-37,-8,-54,-31,-54v-26,0,-33,26,-33,99v0,78,12,92,34,92v18,0,32,-9,32,-65r52,0v0,56,-14,103,-82,103v-78,0,-87,-56,-87,-134v0,-78,9,-133,87,-133v74,0,80,55,80,92xm45,-272r28,-52r52,0r28,52r-38,0r-16,-31r-18,31r-36,0","w":193,"k":{"\u0104":6,"\u0102":6,"\u0100":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"A":6}},"\u010c":{"d":"180,-170r-52,0v0,-37,-8,-54,-31,-54v-26,0,-33,26,-33,99v0,78,12,92,34,92v18,0,32,-9,32,-65r52,0v0,56,-14,103,-82,103v-78,0,-87,-56,-87,-134v0,-78,9,-133,87,-133v74,0,80,55,80,92xm73,-272r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":193,"k":{"\u0104":6,"\u0102":6,"\u0100":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"A":6}},"\u010a":{"d":"180,-170r-52,0v0,-37,-8,-54,-31,-54v-26,0,-33,26,-33,99v0,78,12,92,34,92v18,0,32,-9,32,-65r52,0v0,56,-14,103,-82,103v-78,0,-87,-56,-87,-134v0,-78,9,-133,87,-133v74,0,80,55,80,92xm79,-319r40,0r0,42r-40,0r0,-42","w":193,"k":{"\u0104":6,"\u0102":6,"\u0100":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"A":6}},"\u010e":{"d":"72,-219r0,181v58,4,66,-10,67,-93v0,-69,-9,-94,-67,-88xm21,0r0,-257r84,0v72,0,85,49,85,125v0,91,-19,132,-88,132r-81,0xm66,-272r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":206,"k":{"\u0176":20,"\u0104":12,"\u0102":12,"\u0100":12,"\u0178":20,"\u00dd":20,"\u00c3":12,"\u00c5":12,"\u00c0":12,"\u00c4":12,"\u00c2":12,"\u00c1":12,"Y":20,"A":12,".":9,",":9}},"\u011a":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257xm65,-272r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":173},"\u0112":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257xm37,-312r106,0r0,28r-106,0r0,-28","w":173},"\u0114":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257xm39,-324r23,0v1,31,53,31,54,0r23,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":173},"\u0116":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257xm71,-319r40,0r0,42r-40,0r0,-42","w":173},"\u0118":{"d":"154,48r11,18v-20,21,-82,13,-75,-16v0,-18,17,-37,44,-50r-116,0r0,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-7,0v-30,22,-36,33,-36,44v0,17,18,12,32,4","w":173},"\u011c":{"d":"182,-181r-50,0v0,-19,-8,-43,-29,-43v-25,0,-36,26,-36,90v0,62,6,101,36,101v21,0,38,-32,32,-67r-34,0r0,-39r84,0r0,139r-38,0v-1,-7,2,-18,-1,-24v-13,20,-30,29,-54,29v-64,0,-77,-47,-77,-136v0,-86,21,-131,87,-131v57,0,80,29,80,81xm49,-272r28,-52r52,0r28,52r-38,0r-16,-31r-18,31r-36,0","w":200},"\u011e":{"d":"182,-181r-50,0v0,-19,-8,-43,-29,-43v-25,0,-36,26,-36,90v0,62,6,101,36,101v21,0,38,-32,32,-67r-34,0r0,-39r84,0r0,139r-38,0v-1,-7,2,-18,-1,-24v-13,20,-30,29,-54,29v-64,0,-77,-47,-77,-136v0,-86,21,-131,87,-131v57,0,80,29,80,81xm52,-324r24,0v1,31,52,31,53,0r23,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":200},"\u0120":{"d":"182,-181r-50,0v0,-19,-8,-43,-29,-43v-25,0,-36,26,-36,90v0,62,6,101,36,101v21,0,38,-32,32,-67r-34,0r0,-39r84,0r0,139r-38,0v-1,-7,2,-18,-1,-24v-13,20,-30,29,-54,29v-64,0,-77,-47,-77,-136v0,-86,21,-131,87,-131v57,0,80,29,80,81xm83,-319r40,0r0,42r-40,0r0,-42","w":200},"\u0122":{"d":"182,-181r-50,0v0,-19,-8,-43,-29,-43v-25,0,-36,26,-36,90v0,62,6,101,36,101v21,0,38,-32,32,-67r-34,0r0,-39r84,0r0,139r-38,0v-1,-7,2,-18,-1,-24v-13,20,-30,29,-54,29v-64,0,-77,-47,-77,-136v0,-86,21,-131,87,-131v57,0,80,29,80,81xm81,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":200},"\u0124":{"d":"18,0r0,-257r52,0r0,98r60,0r0,-98r52,0r0,257r-52,0r0,-114r-60,0r0,114r-52,0xm46,-272r29,-52r51,0r28,52r-38,0r-16,-31r-18,31r-36,0","w":200},"\u0126":{"d":"18,0r0,-257r52,0r0,53r60,0r0,-53r52,0r0,257r-52,0r0,-108r-60,0r0,108r-52,0xm70,-151r60,0r0,-32r-60,0r0,32","w":200},"\u0128":{"d":"72,0r-51,0r0,-257r51,0r0,257xm15,-275r-25,0v4,-45,36,-54,67,-35v10,5,21,-1,20,-11r26,0v-3,26,-15,45,-33,45v-21,1,-48,-28,-55,1","w":92},"\u012a":{"d":"72,0r-51,0r0,-257r51,0r0,257xm-6,-312r106,0r0,28r-106,0r0,-28","w":92},"\u0130":{"d":"72,0r-51,0r0,-257r51,0r0,257xm26,-319r41,0r0,42r-41,0r0,-42","w":92},"\u012e":{"d":"69,48r11,18v-20,22,-82,13,-76,-16v0,-18,17,-37,44,-50r-27,0r0,-257r51,0r0,257v-30,22,-36,33,-36,44v0,17,19,12,33,4","w":92},"\u0134":{"d":"99,-257r52,0r0,185v0,55,-26,77,-78,77v-59,0,-69,-38,-68,-86r48,0v-1,27,1,48,23,48v19,0,23,-13,23,-40r0,-184xm71,-272r28,-52r51,0r29,52r-39,0r-16,-31r-17,31r-36,0","w":166},"\u0136":{"d":"18,-257r52,0r1,103r65,-103r56,0r-70,110r78,147r-58,0r-53,-105r-19,29r0,76r-52,0r0,-257xm84,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":193},"\u0139":{"d":"162,0r-144,0r0,-257r52,0r0,215r92,0r0,42xm25,-272r20,-52r49,0r-35,52r-34,0","w":166,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"\u013d":{"d":"162,0r-144,0r0,-257r52,0r0,215r92,0r0,42xm88,-205r12,-52r43,0r-22,52r-33,0","w":166,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"\u013b":{"d":"162,0r-144,0r0,-257r52,0r0,215r92,0r0,42xm71,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":166,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"\u0143":{"d":"18,-257r60,0r63,176r0,-176r48,0r0,257r-59,0r-64,-180r0,180r-48,0r0,-257xm86,-272r19,-52r50,0r-35,52r-34,0","w":206},"\u0147":{"d":"18,-257r60,0r63,176r0,-176r48,0r0,257r-59,0r-64,-180r0,180r-48,0r0,-257xm77,-272r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":206},"\u0145":{"d":"18,-257r60,0r63,176r0,-176r48,0r0,257r-59,0r-64,-180r0,180r-48,0r0,-257xm84,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":206},"\u014c":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm47,-312r106,0r0,28r-106,0r0,-28","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"\u014e":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm50,-324r23,0v1,30,53,32,53,0r24,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"\u0150":{"d":"13,-129v0,-78,9,-133,87,-133v78,0,88,55,88,133v0,78,-10,134,-88,134v-78,0,-87,-56,-87,-134xm64,-129v0,69,5,96,36,96v31,0,36,-27,36,-96v0,-69,-5,-95,-36,-95v-31,0,-36,26,-36,95xm112,-272r19,-52r50,0r-36,52r-33,0xm52,-272r19,-52r50,0r-35,52r-34,0","w":200,"k":{"\u021a":9,"\u0176":9,"\u0162":9,"\u0164":9,"\u0104":9,"\u0102":9,"\u0100":9,"\u0178":9,"\u00dd":9,"\u00c3":9,"\u00c5":9,"\u00c0":9,"\u00c4":9,"\u00c2":9,"\u00c1":9,"Y":9,"T":9,"A":9,".":9,",":9}},"\u0154":{"d":"18,0r0,-257v76,1,164,-16,164,66v0,35,-14,58,-43,64v35,5,42,25,42,79v0,29,3,39,11,48r-56,0v-19,-30,13,-108,-38,-109r-28,0r0,109r-52,0xm70,-219r0,74v35,2,60,-1,60,-38v0,-34,-26,-38,-60,-36xm70,-272r20,-52r49,0r-35,52r-34,0","w":200,"k":{"\u021a":6,"\u0176":6,"\u0174":-4,"\u0172":-4,"\u0170":-4,"\u016e":-4,"\u016c":-4,"\u016a":-4,"\u0168":-4,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-4,"\u00dc":-4,"\u00db":-4,"\u00da":-4,"Y":6,"W":-4,"U":-4,"T":6}},"\u0158":{"d":"18,0r0,-257v76,1,164,-16,164,66v0,35,-14,58,-43,64v35,5,42,25,42,79v0,29,3,39,11,48r-56,0v-19,-30,13,-108,-38,-109r-28,0r0,109r-52,0xm70,-219r0,74v35,2,60,-1,60,-38v0,-34,-26,-38,-60,-36xm67,-272r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":200,"k":{"\u021a":6,"\u0176":6,"\u0174":-4,"\u0172":-4,"\u0170":-4,"\u016e":-4,"\u016c":-4,"\u016a":-4,"\u0168":-4,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-4,"\u00dc":-4,"\u00db":-4,"\u00da":-4,"Y":6,"W":-4,"U":-4,"T":6}},"\u0156":{"d":"18,0r0,-257v76,1,164,-16,164,66v0,35,-14,58,-43,64v35,5,42,25,42,79v0,29,3,39,11,48r-56,0v-19,-30,13,-108,-38,-109r-28,0r0,109r-52,0xm70,-219r0,74v35,2,60,-1,60,-38v0,-34,-26,-38,-60,-36xm83,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":200,"k":{"\u021a":6,"\u0176":6,"\u0174":-4,"\u0172":-4,"\u0170":-4,"\u016e":-4,"\u016c":-4,"\u016a":-4,"\u0168":-4,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-4,"\u00dc":-4,"\u00db":-4,"\u00da":-4,"Y":6,"W":-4,"U":-4,"T":6}},"\u015a":{"d":"8,-80r52,0v-1,28,4,47,34,47v16,0,31,-10,31,-32v0,-23,-11,-32,-46,-44v-46,-15,-67,-35,-67,-77v0,-50,30,-76,79,-76v48,0,83,22,80,76r-50,0v0,-24,-8,-38,-28,-38v-42,0,-40,52,-3,65v40,14,89,37,89,85v0,54,-33,79,-89,79v-63,0,-84,-30,-82,-85xm75,-272r19,-52r50,0r-36,52r-33,0","w":186},"\u015c":{"d":"8,-80r52,0v-1,28,4,47,34,47v16,0,31,-10,31,-32v0,-23,-11,-32,-46,-44v-46,-15,-67,-35,-67,-77v0,-50,30,-76,79,-76v48,0,83,22,80,76r-50,0v0,-24,-8,-38,-28,-38v-42,0,-40,52,-3,65v40,14,89,37,89,85v0,54,-33,79,-89,79v-63,0,-84,-30,-82,-85xm39,-272r28,-52r52,0r28,52r-38,0r-16,-31r-18,31r-36,0","w":186},"\u015e":{"d":"77,5v-50,-3,-71,-32,-69,-85r52,0v-1,28,4,47,34,47v16,0,31,-10,31,-32v0,-23,-11,-32,-46,-44v-46,-15,-67,-35,-67,-77v0,-50,30,-76,79,-76v48,0,83,22,80,76r-50,0v0,-24,-8,-38,-28,-38v-42,0,-40,52,-3,65v40,14,89,37,89,85v0,53,-33,77,-84,79r-10,16v20,-6,43,3,42,24v7,34,-58,39,-81,26r7,-16v10,6,42,9,42,-7v1,-19,-31,-3,-36,-16","w":186},"\uf6c1":{"d":"77,5v-50,-3,-71,-32,-69,-85r52,0v-1,28,4,47,34,47v16,0,31,-10,31,-32v0,-23,-11,-32,-46,-44v-46,-15,-67,-35,-67,-77v0,-50,30,-76,79,-76v48,0,83,22,80,76r-50,0v0,-24,-8,-38,-28,-38v-42,0,-40,52,-3,65v40,14,89,37,89,85v0,53,-33,77,-84,79r-10,16v20,-6,43,3,42,24v7,34,-58,39,-81,26r7,-16v10,6,42,9,42,-7v1,-19,-31,-3,-36,-16","w":186},"\u0218":{"d":"8,-80r52,0v-1,28,4,47,34,47v16,0,31,-10,31,-32v0,-23,-11,-32,-46,-44v-46,-15,-67,-35,-67,-77v0,-50,30,-76,79,-76v48,0,83,22,80,76r-50,0v0,-24,-8,-38,-28,-38v-42,0,-40,52,-3,65v40,14,89,37,89,85v0,54,-33,79,-89,79v-63,0,-84,-30,-82,-85xm71,18r41,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-19,0r0,-42","w":186},"\u0164":{"d":"4,-257r164,0r0,42r-56,0r0,215r-52,0r0,-215r-56,0r0,-42xm61,-272r-28,-52r38,0r16,31r18,-31r36,0r-28,52r-52,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0162":{"d":"4,-257r164,0r0,42r-56,0r0,215r-52,0r0,-215r-56,0r0,-42xm67,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0166":{"d":"4,-257r164,0r0,42r-56,0r0,47r39,0r0,22r-39,0r0,146r-52,0r0,-146r-38,0r0,-22r38,0r0,-47r-56,0r0,-42"},"\u0168":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm67,-275r-26,0v4,-45,36,-54,67,-35v10,5,22,-1,21,-11r25,0v-3,26,-15,45,-33,45v-21,0,-47,-28,-54,1","w":193},"\u016a":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm44,-312r106,0r0,28r-106,0r0,-28","w":193},"\u016c":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm47,-324r24,0v1,31,52,31,53,0r23,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":193},"\u016e":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm77,-304v0,12,8,21,20,21v12,0,21,-9,21,-21v0,-12,-9,-20,-21,-20v-12,0,-20,8,-20,20xm57,-304v0,-23,18,-39,40,-39v22,0,41,16,41,39v0,24,-19,39,-41,39v-23,0,-40,-15,-40,-39","w":193},"\u0170":{"d":"15,-257r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,65,-40,83,-82,83v-42,0,-82,-14,-82,-83r0,-179xm109,-272r20,-52r50,0r-36,52r-34,0xm50,-272r19,-52r50,0r-35,52r-34,0","w":193},"\u0172":{"d":"91,5v-50,-2,-76,-21,-76,-83r0,-179r52,0r0,179v0,26,6,45,30,45v24,0,30,-19,30,-45r0,-179r52,0r0,179v0,53,-25,73,-58,81v-14,10,-34,28,-32,41v3,17,19,12,33,4r10,18v-20,21,-79,13,-75,-16v3,-19,19,-37,34,-45","w":193},"\u0174":{"d":"50,0r-47,-257r50,0r29,190r30,-190r50,0r31,190r28,-190r50,0r-47,257r-58,0r-30,-186r-28,186r-58,0xm83,-272r28,-52r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":273,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":6,"\u0102":6,"\u0100":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"\u0176":{"d":"1,-257r58,0r35,99r36,-99r56,0r-66,156r0,101r-52,0r0,-101xm41,-272r28,-52r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":187,"k":{"\u0173":22,"\u0171":22,"\u016f":22,"\u016d":22,"\u016b":22,"\u0169":22,"\u0151":29,"\u014f":29,"\u014d":29,"\u012f":9,"\u0119":29,"\u0117":29,"\u0115":29,"\u0113":29,"\u011b":29,"\u0105":29,"\u0103":29,"\u0101":29,"\u0218":6,"\u015e":6,"\u015c":6,"\u015a":6,"\u0150":7,"\u014e":7,"\u014c":7,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":29,"\u00f2":29,"\u00f6":29,"\u00f4":29,"\u00f3":29,"\u00e8":29,"\u00eb":29,"\u00ea":29,"\u00e9":29,"\u00e3":29,"\u00e5":29,"\u00e0":29,"\u00e4":29,"\u00e2":29,"\u00e1":29,"\u0160":6,"\u00d5":7,"\u00d2":7,"\u00d6":7,"\u00d4":7,"\u00d3":7,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":29,"i":9,"e":29,"a":29,"S":6,"O":7,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u0179":{"d":"9,0r0,-38r94,-177r-88,0r0,-42r148,0r0,39r-96,176r98,0r0,42r-156,0xm69,-272r20,-52r49,0r-35,52r-34,0","w":173},"\u017b":{"d":"9,0r0,-38r94,-177r-88,0r0,-42r148,0r0,39r-96,176r98,0r0,42r-156,0xm69,-319r40,0r0,42r-40,0r0,-42","w":173},"\u0101":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38xm35,-256r105,0r0,27r-105,0r0,-27","w":173,"k":{"\u0175":-4,"w":-4}},"\u0103":{"d":"61,-134r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199r-48,0v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38xm38,-268r23,0v1,30,53,31,53,0r24,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":173,"k":{"\u0175":-4,"w":-4}},"\u0105":{"d":"161,0v-35,-7,-49,27,-53,44v2,17,16,12,30,4r9,18v-20,22,-68,13,-68,-16v0,-18,16,-35,34,-50v-4,-5,-3,-15,-7,-20v-12,20,-25,25,-49,25v-35,0,-47,-29,-47,-55v0,-49,36,-61,77,-68v29,-5,27,-49,-3,-47v-17,0,-24,12,-23,31r-45,0v-2,-48,29,-65,68,-65v119,0,46,114,77,199xm107,-97v-19,14,-49,12,-49,41v0,15,5,27,18,27v13,0,31,-8,31,-30r0,-38","w":173,"k":{"\u0175":-4,"w":-4}},"\u0107":{"d":"157,-124r-47,0v0,-19,-4,-39,-23,-39v-24,0,-28,22,-28,67v0,48,5,67,27,67v17,0,24,-13,24,-45r47,0v0,51,-20,79,-73,79v-50,0,-75,-24,-75,-102v0,-80,33,-102,79,-102v46,0,69,29,69,75xm69,-217r19,-52r50,0r-35,52r-34,0","w":166,"k":{"\u0140":7,"\u0177":4,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":4,"\u00fd":4,"y":4,"l":7}},"\u0109":{"d":"157,-124r-47,0v0,-19,-4,-39,-23,-39v-24,0,-28,22,-28,67v0,48,5,67,27,67v17,0,24,-13,24,-45r47,0v0,51,-20,79,-73,79v-50,0,-75,-24,-75,-102v0,-80,33,-102,79,-102v46,0,69,29,69,75xm33,-217r28,-52r52,0r28,52r-38,0r-17,-30r-17,30r-36,0","w":166,"k":{"\u0140":7,"\u0177":4,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":4,"\u00fd":4,"y":4,"l":7}},"\u010d":{"d":"157,-124r-47,0v0,-19,-4,-39,-23,-39v-24,0,-28,22,-28,67v0,48,5,67,27,67v17,0,24,-13,24,-45r47,0v0,51,-20,79,-73,79v-50,0,-75,-24,-75,-102v0,-80,33,-102,79,-102v46,0,69,29,69,75xm62,-217r-29,-52r39,0r16,31r17,-31r36,0r-28,52r-51,0","w":166,"k":{"\u0140":7,"\u0177":4,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":4,"\u00fd":4,"y":4,"l":7}},"\u010b":{"d":"157,-124r-47,0v0,-19,-4,-39,-23,-39v-24,0,-28,22,-28,67v0,48,5,67,27,67v17,0,24,-13,24,-45r47,0v0,51,-20,79,-73,79v-50,0,-75,-24,-75,-102v0,-80,33,-102,79,-102v46,0,69,29,69,75xm66,-264r41,0r0,43r-41,0r0,-43","w":166,"k":{"\u0140":7,"\u0177":4,"\u013c":7,"\u013e":7,"\u013a":7,"\u00ff":4,"\u00fd":4,"y":4,"l":7}},"\u010f":{"d":"116,0v-1,-6,2,-16,-1,-21v-11,18,-24,26,-44,26v-41,0,-59,-30,-59,-102v0,-72,18,-102,59,-102v20,-1,31,10,43,23r0,-81r49,0r0,257r-47,0xm62,-97v0,42,3,64,25,64v22,0,27,-22,27,-64v0,-42,-5,-64,-27,-64v-22,0,-25,22,-25,64xm177,-205r12,-52r43,0r-22,52r-33,0","w":218},"\u0111":{"d":"116,0v-1,-6,2,-16,-1,-21v-11,18,-24,26,-44,26v-41,0,-59,-30,-59,-102v0,-72,18,-102,59,-102v20,-1,31,10,43,23r0,-35r-40,0r0,-22r40,0r0,-24r49,0r0,24r31,0r0,22r-31,0r0,211r-47,0xm62,-97v0,42,3,64,25,64v22,0,27,-22,27,-64v0,-42,-5,-64,-27,-64v-22,0,-25,22,-25,64","w":194},"\u011b":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm59,-217r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":166,"k":{"x":4}},"\u0113":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm32,-256r106,0r0,27r-106,0r0,-27","w":166,"k":{"x":4}},"\u0115":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm35,-268r24,0v1,30,52,30,53,0r23,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":166,"k":{"x":4}},"\u0117":{"d":"157,-89r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,45,-22,70,-70,70v-72,0,-75,-56,-75,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46xm66,-264r40,0r0,43r-40,0r0,-43","w":166,"k":{"x":4}},"\u0119":{"d":"78,5v-58,1,-69,-54,-69,-104v0,-52,10,-100,77,-100v62,-1,72,46,71,110r-98,0v-1,28,3,60,25,60v17,0,23,-12,26,-36r44,0v-2,37,-15,60,-46,68v-14,10,-34,28,-32,41v3,17,18,12,32,4r11,18v-20,21,-82,13,-75,-16v0,-20,18,-37,34,-45xm59,-119r51,0v-1,-30,-4,-46,-25,-46v-22,1,-27,24,-26,46","w":166,"k":{"x":4}},"\u011d":{"d":"62,-91v0,27,4,51,25,51v21,0,27,-23,27,-56v0,-47,-6,-65,-26,-65v-22,0,-26,18,-26,70xm63,14v-1,12,12,21,24,21v29,2,30,-34,26,-61v-42,49,-100,23,-100,-74v0,-45,6,-99,60,-99v15,-1,29,9,41,27r0,-22r48,0r0,184v0,51,-23,76,-81,76v-42,0,-66,-19,-66,-52r48,0xm40,-217r28,-52r52,0r28,52r-39,0r-16,-30r-17,30r-36,0","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u011f":{"d":"62,-91v0,27,4,51,25,51v21,0,27,-23,27,-56v0,-47,-6,-65,-26,-65v-22,0,-26,18,-26,70xm63,14v-1,12,12,21,24,21v29,2,30,-34,26,-61v-42,49,-100,23,-100,-74v0,-45,6,-99,60,-99v15,-1,29,9,41,27r0,-22r48,0r0,184v0,51,-23,76,-81,76v-42,0,-66,-19,-66,-52r48,0xm41,-268r23,0v1,30,53,30,54,0r23,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0121":{"d":"62,-91v0,27,4,51,25,51v21,0,27,-23,27,-56v0,-47,-6,-65,-26,-65v-22,0,-26,18,-26,70xm63,14v-1,12,12,21,24,21v29,2,30,-34,26,-61v-42,49,-100,23,-100,-74v0,-45,6,-99,60,-99v15,-1,29,9,41,27r0,-22r48,0r0,184v0,51,-23,76,-81,76v-42,0,-66,-19,-66,-52r48,0xm71,-264r41,0r0,43r-41,0r0,-43","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0123":{"d":"62,-91v0,27,4,51,25,51v21,0,27,-23,27,-56v0,-47,-6,-65,-26,-65v-22,0,-26,18,-26,70xm63,14v-1,12,12,21,24,21v29,2,30,-34,26,-61v-42,49,-100,23,-100,-74v0,-45,6,-99,60,-99v15,-1,29,9,41,27r0,-22r48,0r0,184v0,51,-23,76,-81,76v-42,0,-66,-19,-66,-52r48,0xm102,-420r-41,0r0,-35v0,-33,18,-36,35,-38r0,13v-8,3,-13,6,-13,17r19,0r0,43xm113,-215r-40,0r0,-34v0,-33,18,-37,35,-39r0,13v-8,3,-13,7,-13,18r18,0r0,42","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0125":{"d":"17,0r0,-257r49,0r1,83v23,-40,96,-35,96,30r0,144r-49,0r0,-134v0,-20,-6,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0xm36,-272r28,-52r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":180},"\u0127":{"d":"31,-233r0,-24r50,0r0,24r40,0r0,22r-40,0r0,37v23,-40,97,-35,97,30r0,144r-50,0r0,-134v0,-20,-6,-27,-21,-27v-18,0,-26,11,-26,32r0,129r-50,0r0,-211r-31,0r0,-22r31,0","w":194},"\u0129":{"d":"18,0r0,-194r50,0r0,194r-50,0xm12,-220r-25,0v4,-54,42,-49,77,-32v7,0,10,-8,10,-13r26,0v-3,26,-16,44,-34,44v-21,0,-47,-28,-54,1","w":86},"\u012b":{"d":"18,0r0,-194r50,0r0,194r-50,0xm-10,-256r106,0r0,27r-106,0r0,-27","w":86},"\u012f":{"d":"64,48r11,18v-20,22,-82,13,-76,-16v0,-18,18,-37,45,-50r-26,0r0,-194r50,0r0,194v-30,22,-37,33,-37,44v0,17,19,12,33,4xm18,-217r0,-43r50,0r0,43r-50,0","w":86},"\u0135":{"d":"18,-4r0,-190r50,0r0,207v4,40,-28,54,-77,50r0,-36v23,2,27,-5,27,-31xm-12,-217r28,-52r52,0r28,52r-38,0r-17,-30r-17,30r-36,0","w":86},"\u0137":{"d":"18,-257r50,0r1,136r50,-73r55,0r-56,77r64,117r-55,0r-41,-80r-18,23r0,57r-50,0r0,-257xm77,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":180},"\u013a":{"d":"18,0r0,-257r50,0r0,257r-50,0xm19,-272r19,-52r50,0r-35,52r-34,0","w":86},"\u013e":{"d":"18,0r0,-257r50,0r0,257r-50,0xm82,-205r12,-52r43,0r-23,52r-32,0","w":123},"\u013c":{"d":"18,0r0,-257r50,0r0,257r-50,0xm24,18r40,0r0,35v0,33,-17,36,-34,38r0,-13v8,-3,12,-7,12,-18r-18,0r0,-42","w":86},"\u0144":{"d":"17,0r0,-194r47,0v1,7,-2,18,1,23v22,-43,98,-40,98,27r0,144r-49,0r0,-134v0,-20,-6,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0xm70,-217r20,-52r49,0r-35,52r-34,0","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0148":{"d":"17,0r0,-194r47,0v1,7,-2,18,1,23v22,-43,98,-40,98,27r0,144r-49,0r0,-134v0,-20,-6,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0xm63,-217r-28,-52r38,0r17,31r17,-31r36,0r-28,52r-52,0","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u0146":{"d":"17,0r0,-194r47,0v1,7,-2,18,1,23v22,-43,98,-40,98,27r0,144r-49,0r0,-134v0,-20,-6,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0xm71,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":180,"k":{"\u0177":-4,"\u00ff":-4,"\u00fd":-4,"y":-4}},"\u014d":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68xm33,-256r106,0r0,27r-106,0r0,-27","k":{"v":-4}},"\u014f":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68xm36,-268r24,0v1,30,52,30,53,0r23,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","k":{"v":-4}},"\u0151":{"d":"10,-97v0,-66,19,-102,76,-102v59,0,77,34,77,102v0,66,-20,102,-77,102v-59,0,-76,-34,-76,-102xm60,-97v0,40,2,68,26,68v20,0,27,-19,27,-68v0,-49,-7,-68,-27,-68v-24,0,-26,28,-26,68xm98,-217r19,-52r50,0r-35,52r-34,0xm38,-217r20,-52r49,0r-35,52r-34,0","k":{"v":-4}},"\u0155":{"d":"17,0r0,-194r47,0v1,8,-2,20,1,26v11,-21,26,-35,53,-30r0,48v-27,-4,-52,2,-52,34r0,116r-49,0xm29,-217r20,-52r49,0r-35,52r-34,0","w":119,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,"q":6,".":27,"-":13,",":27}},"\u0157":{"d":"17,0r0,-194r47,0v1,8,-2,20,1,26v11,-21,26,-35,53,-30r0,48v-27,-4,-52,2,-52,34r0,116r-49,0xm22,18r41,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-19,0r0,-42","w":119,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,"q":6,".":27,"-":13,",":27}},"\u0159":{"d":"17,0r0,-194r47,0v1,8,-2,20,1,26v11,-21,26,-35,53,-30r0,48v-27,-4,-52,2,-52,34r0,116r-49,0xm42,-217r-28,-52r39,0r16,31r17,-31r36,0r-28,52r-52,0","w":119,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,"q":6,".":27,"-":13,",":27}},"\u015b":{"d":"8,-63r45,0v-1,21,7,33,26,34v30,2,32,-39,7,-45v-35,-8,-76,-24,-76,-66v0,-32,20,-59,71,-59v48,1,68,21,66,63r-44,0v6,-37,-44,-37,-46,-8v-2,20,34,28,52,33v73,20,46,122,-29,116v-58,-4,-73,-26,-72,-68xm62,-217r19,-52r50,0r-36,52r-33,0","w":159},"\u015d":{"d":"8,-63r45,0v-1,21,7,33,26,34v30,2,32,-39,7,-45v-35,-8,-76,-24,-76,-66v0,-32,20,-59,71,-59v48,1,68,21,66,63r-44,0v6,-37,-44,-37,-46,-8v-2,20,34,28,52,33v73,20,46,122,-29,116v-58,-4,-73,-26,-72,-68xm28,-217r28,-52r52,0r28,52r-38,0r-17,-30r-17,30r-36,0","w":159},"\u015f":{"d":"65,4v-41,-2,-60,-28,-57,-67r45,0v-1,21,7,33,26,34v30,2,32,-39,7,-45v-35,-8,-76,-24,-76,-66v0,-32,20,-59,71,-59v48,1,68,21,66,63r-44,0v6,-37,-44,-37,-46,-8v-2,20,35,26,52,33v31,10,43,26,43,55v0,39,-29,59,-68,61r-11,16v20,-6,43,3,42,24v7,34,-58,39,-81,26r7,-16v10,6,43,9,43,-7v0,-18,-32,-3,-36,-16","w":159},"\uf6c2":{"d":"65,4v-41,-2,-60,-28,-57,-67r45,0v-1,21,7,33,26,34v30,2,32,-39,7,-45v-35,-8,-76,-24,-76,-66v0,-32,20,-59,71,-59v48,1,68,21,66,63r-44,0v6,-37,-44,-37,-46,-8v-2,20,35,26,52,33v31,10,43,26,43,55v0,39,-29,59,-68,61r-11,16v20,-6,43,3,42,24v7,34,-58,39,-81,26r7,-16v10,6,43,9,43,-7v0,-18,-32,-3,-36,-16","w":159},"\u0219":{"d":"8,-63r45,0v-1,21,7,33,26,34v30,2,32,-39,7,-45v-35,-8,-76,-24,-76,-66v0,-32,20,-59,71,-59v48,1,68,21,66,63r-44,0v6,-37,-44,-37,-46,-8v-2,20,34,28,52,33v73,20,46,122,-29,116v-58,-4,-73,-26,-72,-68xm60,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":159},"\u0165":{"d":"103,-205r12,-52r43,0r-22,52r-33,0xm27,-194r0,-55r50,0r0,55r29,0r0,34r-29,0r0,105v-2,20,12,23,29,20r0,35v-45,5,-79,6,-79,-49r0,-111r-25,0r0,-34r25,0","w":147},"\u0163":{"d":"27,-194r0,-55r50,0r0,55r29,0r0,34r-29,0r0,105v-2,20,12,23,29,20r0,35v-45,5,-79,6,-79,-49r0,-111r-25,0r0,-34r25,0xm50,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":106},"\u0167":{"d":"27,-194r0,-55r50,0r0,55r29,0r0,34r-29,0r0,35r32,0r0,22r-32,0v3,29,-14,79,29,68r0,35v-45,5,-87,5,-79,-49r0,-54r-29,0r0,-22r29,0r0,-35r-25,0r0,-34r25,0","w":106},"\u0169":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm59,-220r-26,0v5,-53,43,-49,78,-32v7,0,10,-8,10,-13r26,0v-3,26,-16,44,-34,44v-21,0,-47,-28,-54,1","w":180},"\u016b":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm37,-256r106,0r0,27r-106,0r0,-27","w":180},"\u016d":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm40,-268r24,0v1,30,52,30,53,0r23,0v0,19,-11,51,-50,51v-39,0,-50,-32,-50,-51","w":180},"\u016f":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm69,-248v0,12,9,20,21,20v12,0,21,-8,21,-20v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21xm49,-248v0,-23,19,-40,41,-40v22,0,41,17,41,40v0,24,-19,38,-41,38v-23,0,-41,-14,-41,-38","w":180},"\u0171":{"d":"116,0v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0xm100,-217r20,-52r50,0r-36,52r-34,0xm41,-217r19,-52r50,0r-35,52r-34,0","w":180},"\u0173":{"d":"140,0v-17,18,-27,23,-29,46v4,14,16,10,29,2r10,18v-20,22,-68,13,-68,-16v0,-18,15,-36,34,-50v-1,-7,2,-18,-1,-23v-22,43,-98,40,-98,-27r0,-144r49,0r0,134v0,20,6,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-23,0","w":180},"\u0175":{"d":"45,0r-42,-194r49,0r24,138r24,-138r54,0r26,138r23,-138r48,0r-42,194r-56,0r-27,-138r-24,138r-57,0xm73,-217r28,-52r52,0r28,52r-38,0r-17,-30r-17,30r-36,0","w":253,"k":{".":13,",":13}},"\u0177":{"d":"17,63r0,-37v23,5,39,-4,39,-26r-54,-194r52,0r29,134r25,-134r50,0r-47,181v-19,76,-31,77,-94,76xm29,-217r28,-52r52,0r28,52r-38,0r-17,-30r-17,30r-36,0","w":159,"k":{"\u0105":6,"\u0103":6,"\u0101":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"a":6,".":20,",":20}},"\u017a":{"d":"9,0r0,-38r77,-115r-74,0r0,-41r133,0r0,38r-78,116r78,0r0,40r-136,0xm60,-217r20,-52r50,0r-36,52r-34,0","w":153},"\u017c":{"d":"9,0r0,-38r77,-115r-74,0r0,-41r133,0r0,38r-78,116r78,0r0,40r-136,0xm58,-264r41,0r0,43r-41,0r0,-43","w":153},"\u013f":{"d":"162,0r-144,0r0,-257r52,0r0,215r92,0r0,42xm96,-194r40,0r0,43r-40,0r0,-43","w":166,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"\u0140":{"d":"18,0r0,-257r50,0r0,257r-50,0xm88,-194r41,0r0,43r-41,0r0,-43","w":142},"\u00a0":{"w":86},"\u021a":{"d":"4,-257r164,0r0,42r-56,0r0,215r-52,0r0,-215r-56,0r0,-42xm67,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0110":{"d":"72,-219r0,67r34,0r0,39r-34,0r0,75v58,4,66,-10,67,-93v0,-69,-9,-94,-67,-88xm21,0r0,-113r-21,0r0,-39r21,0r0,-105r84,0v72,0,85,49,85,125v0,91,-19,132,-88,132r-81,0","w":206},"\u021b":{"d":"27,-194r0,-55r50,0r0,55r29,0r0,34r-29,0r0,105v-2,20,12,23,29,20r0,35v-45,5,-79,6,-79,-49r0,-111r-25,0r0,-34r25,0xm50,18r40,0r0,35v0,33,-18,36,-35,38r0,-13v8,-3,13,-7,13,-18r-18,0r0,-42","w":106},"\u00ad":{"d":"16,-125r101,0r0,42r-101,0r0,-42","w":133}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Trademark:
 * Helvetica, Neue Helvetica is a trademark of Heidelberger Druckmaschinen AG
 * which may be registered in certain jurisdictions, exclusively licensed through
 * Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen
 * AG.
 * 
 * Full name:
 * HelveticaNeueLTPro-LtCn
 * 
 * Description:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH
 * 
 * Designer:
 * Linotype Library GmbH
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.Linotype.com
 */
Cufon.registerFont({"w":159,"face":{"font-family":"Helvetica Neue LT Pro","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 6 2 2 2 3 2 4","ascent":"257","descent":"-103","x-height":"4","bbox":"-15 -334 277 73.1962","underline-thickness":"18","underline-position":"-18","stemh":"18","stemv":"22","unicode-range":"U+0020-U+021B"},"glyphs":{" ":{"w":86,"k":{"\u021a":13,"\u0176":13,"\u0174":13,"\u0162":13,"\u0164":13,"\u0104":13,"\u0102":13,"\u0100":13,"\u0178":13,"\u00dd":13,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"31,0r0,-37r24,0r0,37r-24,0xm35,-67r-4,-190r24,0r-4,190r-16,0","w":86},"\"":{"d":"80,-171r0,-86r21,0r0,86r-21,0xm26,-171r0,-86r21,0r0,86r-21,0","w":126},"#":{"d":"1,-81r0,-16r42,0r7,-56r-40,0r0,-16r42,0r11,-82r18,0r-11,82r44,0r11,-82r18,0r-11,82r40,0r0,16r-42,0r-7,56r39,0r0,16r-41,0r-11,81r-18,0r11,-81r-44,0r-11,81r-18,0r11,-81r-40,0xm68,-153r-7,56r44,0r7,-56r-44,0","w":172},"$":{"d":"79,4v-47,-3,-71,-29,-69,-81r23,0v-2,36,13,58,46,62r0,-106v-32,-10,-64,-22,-64,-68v0,-37,23,-63,64,-66r0,-25r16,0r0,25v42,3,61,27,61,69r-24,0v0,-28,-11,-46,-37,-49r0,98v33,10,67,21,67,68v0,45,-26,69,-67,73r0,30r-16,0r0,-30xm95,-116r0,101v26,-3,44,-19,44,-51v0,-30,-20,-41,-44,-50xm79,-143r0,-92v-27,3,-41,21,-41,44v0,28,18,40,41,48","w":172},"%":{"d":"150,-62v0,-52,16,-66,45,-66v29,0,46,14,46,66v0,52,-17,66,-46,66v-29,0,-45,-14,-45,-66xm19,-189v0,-52,16,-66,45,-66v29,0,46,14,46,66v0,52,-17,67,-46,67v-29,0,-45,-15,-45,-67xm170,-62v0,39,10,50,25,50v16,0,26,-11,26,-50v0,-38,-10,-50,-26,-50v-15,0,-25,12,-25,50xm66,4r110,-259r18,0r-110,259r-18,0xm39,-189v0,39,10,51,25,51v16,0,26,-12,26,-51v0,-38,-10,-50,-26,-50v-15,0,-25,12,-25,50","w":259},"&":{"d":"137,-48r-60,-84v-36,25,-46,46,-46,66v0,61,85,66,106,18xm88,-239v-45,0,-31,51,-6,81v28,-21,35,-38,35,-52v0,-17,-12,-29,-29,-29xm171,0r-23,-31v-14,22,-36,35,-68,35v-80,1,-94,-99,-35,-134r21,-16v-40,-40,-41,-109,23,-111v30,0,50,18,50,47v0,21,-10,41,-46,67r56,77v7,-16,9,-32,9,-48r22,0v0,23,-6,45,-18,66r33,48r-24,0","w":193},"(":{"d":"67,-257r16,0v-56,97,-56,226,0,323r-16,0v-66,-118,-65,-205,0,-323","w":79},")":{"d":"13,66r-16,0v56,-97,56,-226,0,-323r16,0v65,118,65,205,0,323","w":79},"*":{"d":"52,-257r16,0r0,40r38,-12r5,15r-38,12r23,32r-12,10r-24,-33r-23,33r-13,-10r23,-32r-38,-12r5,-15r38,12r0,-40","w":120},"+":{"d":"99,0r0,-82r-82,0r0,-18r82,0r0,-82r18,0r0,82r82,0r0,18r-82,0r0,82r-18,0","w":216},",":{"d":"31,0r0,-37r24,0v-1,39,7,73,-26,87r0,-15v10,-6,12,-15,12,-35r-10,0","w":86,"k":{" ":13}},"-":{"d":"21,-112r78,0r0,19r-78,0r0,-19","w":119},".":{"d":"31,0r0,-37r24,0r0,37r-24,0","w":86,"k":{" ":13}},"\/":{"d":"84,-261r20,0r-88,265r-20,0","w":100},"0":{"d":"15,-125v0,-75,13,-130,71,-130v58,0,72,55,72,130v0,75,-14,129,-72,129v-58,0,-71,-54,-71,-129xm38,-125v0,82,13,111,48,111v35,0,49,-29,49,-111v0,-82,-14,-112,-49,-112v-35,0,-48,30,-48,112","w":172},"1":{"d":"83,0r0,-195r-59,0r0,-16v43,0,63,-17,64,-44r16,0r0,255r-21,0","w":172},"2":{"d":"40,-175r-23,0v1,-49,24,-80,72,-80v35,0,66,20,66,69v0,73,-109,100,-115,167r117,0r0,19r-141,0v-4,-54,44,-91,80,-121v26,-22,36,-40,36,-64v0,-34,-19,-52,-45,-52v-29,0,-46,19,-47,62","w":172},"3":{"d":"67,-123r0,-18v38,3,60,-14,60,-48v0,-30,-14,-48,-42,-48v-26,0,-45,17,-45,53r-23,0v0,-43,23,-71,68,-71v72,0,90,106,24,121v77,16,59,138,-24,138v-44,0,-69,-24,-71,-72r23,0v0,30,15,54,48,54v26,0,50,-15,50,-58v0,-39,-27,-55,-68,-51","w":172},"4":{"d":"31,-85r79,0r-1,-133xm110,0r0,-66r-98,0r0,-21r98,-168r21,0r0,170r30,0r0,19r-30,0r0,66r-21,0","w":172},"5":{"d":"35,-251r111,0r0,20r-94,0r-11,90v39,-52,117,-25,117,58v0,51,-26,87,-76,87v-39,0,-67,-24,-67,-69r23,0v0,29,16,51,47,51v31,0,50,-25,50,-73v0,-61,-73,-86,-94,-33r-21,0","w":172},"6":{"d":"41,-79v0,33,13,65,48,65v35,0,47,-32,47,-65v0,-33,-12,-65,-47,-65v-35,0,-48,32,-48,65xm154,-195r-23,0v-1,-25,-15,-42,-41,-42v-36,-1,-52,33,-53,117v23,-73,122,-44,122,37v0,48,-22,87,-71,87v-58,0,-74,-42,-74,-122v0,-84,16,-137,77,-137v40,0,62,25,63,60","w":172},"7":{"d":"15,-231r0,-20r143,0r0,20v-55,67,-85,162,-91,231r-25,0v4,-69,44,-171,94,-231r-121,0","w":172},"8":{"d":"45,-191v0,27,14,46,41,46v28,0,41,-19,41,-46v0,-27,-13,-46,-41,-46v-27,0,-41,19,-41,46xm86,4v-76,0,-100,-127,-25,-139v-23,-9,-39,-32,-39,-57v0,-42,27,-63,64,-63v68,0,89,101,26,119v29,6,46,32,46,64v0,48,-29,76,-72,76xm38,-70v0,31,16,56,48,56v32,0,49,-25,49,-56v0,-31,-17,-57,-49,-57v-32,0,-48,26,-48,57","w":172},"9":{"d":"37,-172v0,33,12,65,47,65v35,0,48,-32,48,-65v0,-33,-13,-65,-48,-65v-35,0,-47,32,-47,65xm19,-55r23,0v1,25,14,41,40,41v35,0,55,-36,53,-116v-23,72,-121,42,-121,-38v0,-48,22,-87,71,-87v58,0,74,43,74,123v0,84,-17,136,-78,136v-40,0,-62,-24,-62,-59","w":172},":":{"d":"31,0r0,-37r24,0r0,37r-24,0xm31,-144r0,-36r24,0r0,36r-24,0","w":86,"k":{" ":13}},";":{"d":"31,-144r0,-36r24,0r0,36r-24,0xm31,0r0,-37r24,0v-1,39,7,73,-26,87r0,-15v10,-6,12,-15,12,-35r-10,0","w":86},"\u037e":{"d":"31,-144r0,-36r24,0r0,36r-24,0xm31,0r0,-37r24,0v-1,39,7,73,-26,87r0,-15v10,-6,12,-15,12,-35r-10,0","w":86},"<":{"d":"17,-81r0,-20r182,-84r0,19r-160,75r160,74r0,20","w":216},"=":{"d":"17,-47r0,-18r182,0r0,18r-182,0xm17,-117r0,-18r182,0r0,18r-182,0","w":216},">":{"d":"17,3r0,-20r160,-74r-160,-75r0,-19r182,84r0,20","w":216},"?":{"d":"59,0r0,-37r25,0r0,37r-25,0xm82,-67r-22,0v-13,-63,57,-79,58,-132v0,-26,-16,-44,-40,-44v-31,0,-46,21,-46,60r-23,0v0,-45,21,-78,67,-78v65,-1,86,75,42,119v-19,19,-41,37,-36,75","w":153},"@":{"d":"196,-177v5,-6,6,-17,10,-24r20,0r-41,127v0,6,4,9,10,9v32,0,64,-50,64,-87v0,-57,-52,-94,-108,-94v-71,0,-122,55,-122,117v0,65,54,117,122,117v39,0,80,-18,99,-49r22,0v-25,40,-72,65,-121,65v-80,0,-140,-60,-140,-133v0,-73,63,-132,140,-132v70,0,126,46,126,110v0,56,-46,102,-85,102v-15,0,-23,-9,-26,-24v-31,39,-99,31,-98,-29v0,-50,37,-105,88,-105v17,0,32,8,40,30xm87,-104v0,22,9,37,31,37v39,0,67,-54,67,-87v0,-23,-9,-35,-31,-35v-39,0,-67,50,-67,85","w":288},"A":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"B":{"d":"20,0r0,-257r71,0v83,-8,90,101,30,120v30,9,47,30,47,65v0,45,-28,72,-77,72r-71,0xm43,-125r0,106v54,3,102,-1,102,-53v0,-52,-48,-56,-102,-53xm43,-238r0,94v49,3,94,-3,94,-47v0,-51,-45,-48,-94,-47","w":180},"C":{"d":"153,-87r23,0v-3,59,-30,91,-76,91v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v52,0,74,37,74,79r-23,0v0,-35,-18,-60,-51,-60v-36,0,-59,29,-59,113v0,84,23,114,59,114v33,0,50,-27,53,-72","w":186},"D":{"d":"43,-238r0,219v80,4,109,-6,109,-109v0,-104,-28,-114,-109,-110xm20,0r0,-257r62,0v75,0,93,44,93,128v0,84,-18,129,-93,129r-62,0","w":193},"E":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0"},"F":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,125r-23,0","w":153,"k":{"\u0104":13,"\u0102":13,"\u0100":13,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"A":13,".":40,",":40}},"G":{"d":"154,-112r-61,0r0,-19r82,0r0,131r-18,0r0,-42v-8,29,-31,46,-57,46v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v49,0,71,32,74,76r-23,0v0,-31,-18,-57,-51,-57v-36,0,-59,29,-59,113v0,84,23,114,59,114v37,0,55,-37,54,-97","w":193},"H":{"d":"144,0r0,-128r-101,0r0,128r-23,0r0,-257r23,0r0,109r101,0r0,-109r23,0r0,257r-23,0","w":186},"I":{"d":"22,0r0,-257r23,0r0,257r-23,0","w":66},"J":{"d":"65,4v-40,0,-61,-26,-58,-79r23,0v-1,36,6,60,34,60v25,0,39,-11,39,-52r0,-190r23,0r0,193v0,45,-20,68,-61,68","w":146},"K":{"d":"20,0r0,-257r23,0r1,135r98,-135r25,0r-79,107r87,150r-24,0r-77,-130r-31,40r0,90r-23,0","w":172},"L":{"d":"20,0r0,-257r23,0r0,238r107,0r0,19r-130,0","w":153,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"M":{"d":"22,0r0,-257r40,0r63,228r62,-228r38,0r0,257r-23,0r-1,-235r-67,235r-21,0r-68,-235r0,235r-23,0","w":246},"N":{"d":"20,0r0,-257r31,0r99,224r0,-224r23,0r0,257r-31,0r-99,-224r0,224r-23,0","w":193},"O":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133","w":200},"P":{"d":"20,0r0,-257r70,0v49,0,70,29,70,73v0,40,-19,72,-78,72r-39,0r0,112r-23,0xm43,-238r0,107v51,1,92,3,94,-53v2,-55,-41,-56,-94,-54","w":172,"k":{"\u0104":13,"\u0102":13,"\u0100":13,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"A":13,".":46,",":46}},"Q":{"d":"132,-27r-29,-28r13,-13r28,27v10,-18,15,-47,15,-88v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113v0,102,36,134,91,102xm172,14r-25,-26v-69,42,-129,-1,-129,-117v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,49,-8,83,-23,104r26,25","w":200},"R":{"d":"43,-238r0,101v51,3,97,-1,97,-50v0,-49,-45,-55,-97,-51xm20,0r0,-257r77,0v80,-8,89,117,20,130v61,-3,32,88,55,127r-27,0v-8,-14,-7,-38,-7,-58v0,-65,-38,-60,-95,-59r0,117r-23,0","w":180,"k":{"\u021a":6,"\u0176":6,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"Y":6,"U":-2,"T":6}},"S":{"d":"156,-191r-23,0v0,-32,-14,-51,-46,-51v-31,0,-49,20,-49,46v0,76,125,35,125,125v0,50,-31,75,-78,75v-52,0,-77,-28,-75,-84r23,0v-2,39,13,65,51,65v33,0,56,-16,56,-52v0,-77,-125,-33,-125,-126v0,-40,26,-68,71,-68v48,0,70,24,70,70","w":172},"T":{"d":"68,0r0,-238r-66,0r0,-19r156,0r0,19r-67,0r0,238r-23,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76","w":180},"V":{"d":"69,0r-68,-257r25,0r58,233r57,-233r24,0r-67,257r-29,0","w":166,"k":{"\u0173":6,"\u0171":6,"\u016f":6,"\u016d":6,"\u016b":6,"\u0169":6,"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":13,"\u0102":13,"\u0100":13,"\u00f9":6,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"58,0r-54,-257r23,0r46,226r44,-226r26,0r45,226r45,-226r23,0r-54,257r-29,0r-43,-226r-43,226r-29,0","w":259,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":6,"\u0102":6,"\u0100":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"142,0r-60,-111r-59,111r-23,0r70,-131r-66,-126r25,0r55,104r55,-104r23,0r-66,126r71,131r-25,0","w":166},"Y":{"d":"68,0r0,-103r-69,-154r24,0r57,128r56,-128r25,0r-70,154r0,103r-23,0","k":{"\u0173":13,"\u0171":13,"\u016f":13,"\u016d":13,"\u016b":13,"\u0169":13,"\u0151":20,"\u014f":20,"\u014d":20,"\u012f":6,"\u0119":20,"\u0117":20,"\u0115":20,"\u0113":20,"\u011b":20,"\u0105":20,"\u0103":20,"\u0101":20,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":13,"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f5":20,"\u00f2":20,"\u00f6":20,"\u00f4":20,"\u00f3":20,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"\u00e1":20,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,0r0,-22r125,-216r-118,0r0,-19r142,0r0,22r-124,216r125,0r0,19r-150,0","w":166},"[":{"d":"30,66r0,-323r57,0r0,18r-36,0r0,287r36,0r0,18r-57,0","w":86},"\\":{"d":"-4,-261r20,0r88,265r-20,0","w":100},"]":{"d":"0,66r0,-18r35,0r0,-287r-35,0r0,-18r57,0r0,323r-57,0","w":86},"^":{"d":"181,-87r-73,-142r-73,142r-19,0r83,-164r18,0r83,164r-19,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"a":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"b":{"d":"40,-96v0,71,20,82,42,82v22,0,42,-11,42,-82v0,-71,-20,-81,-42,-81v-22,0,-42,10,-42,81xm19,0r0,-257r21,0r1,95v5,-20,21,-33,45,-33v42,0,61,33,61,99v0,67,-19,100,-61,100v-24,1,-40,-16,-48,-36r0,32r-19,0","k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"v":-1,"b":-1}},"c":{"d":"114,-63r22,0v-3,41,-25,67,-61,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v36,0,56,22,59,61r-22,0v-3,-30,-14,-43,-37,-43v-23,0,-43,14,-43,82v0,72,21,81,41,81v22,0,35,-16,39,-49","w":146},"d":{"d":"36,-96v0,71,20,82,42,82v22,0,42,-11,42,-82v0,-71,-20,-81,-42,-81v-22,0,-42,10,-42,81xm122,0v-1,-10,2,-24,-1,-32v-6,22,-24,36,-47,36v-42,0,-61,-33,-61,-100v0,-66,19,-99,61,-99v25,-1,39,15,46,33r0,-95r21,0r0,257r-19,0"},"e":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"f":{"d":"29,0r0,-173r-26,0r0,-18r26,0v-4,-43,3,-76,55,-68r0,18v-30,-9,-37,17,-34,50r34,0r0,18r-34,0r0,173r-21,0","w":86,"k":{"\u0140":-1,"\u0151":-1,"\u014f":-1,"\u014d":-1,"\u013c":-1,"\u013e":-1,"\u013a":-1,"\u00f5":-1,"\u00f2":-1,"\u00f6":-1,"\u00f4":-1,"\u00f3":-1,"o":-1,"l":-1,"f":-1}},"g":{"d":"36,-98v0,61,15,80,41,80v26,0,40,-19,40,-80v0,-60,-14,-79,-40,-79v-26,0,-41,19,-41,79xm119,-162v3,-7,0,-20,1,-29r19,0r0,177v0,53,-19,80,-63,80v-37,0,-57,-20,-57,-47r22,0v0,18,17,29,36,29v37,0,43,-40,40,-82v-7,23,-25,34,-45,34v-30,0,-59,-19,-59,-96v0,-66,19,-99,61,-99v21,0,38,11,45,33","k":{"\u0177":-1,"\u0159":-1,"\u0157":-1,"\u0155":-1,"\u012f":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"r":-1,"i":-1,"g":-1}},"h":{"d":"21,0r0,-257r21,0r1,92v5,-20,24,-30,47,-30v29,0,49,15,49,51r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-68,2,-36,113,-43,177r-21,0"},"i":{"d":"22,-220r0,-37r22,0r0,37r-22,0xm22,0r0,-191r22,0r0,191r-22,0","w":66},"j":{"d":"22,-220r0,-37r22,0r0,37r-22,0xm22,15r0,-206r22,0r0,213v-1,38,-23,47,-53,43r0,-18v20,3,31,-1,31,-32","w":66},"k":{"d":"19,0r0,-257r21,0r1,161r74,-95r27,0r-58,71r68,120r-26,0r-57,-101r-29,34r0,67r-21,0","w":146},"l":{"d":"22,0r0,-257r22,0r0,257r-22,0","w":66,"k":{"\u0177":-1,"\u0175":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1}},"m":{"d":"22,0r0,-191r20,0r0,26v15,-42,83,-38,90,3v14,-46,93,-48,93,16r0,146r-22,0r0,-143v0,-23,-10,-34,-30,-34v-62,0,-33,115,-39,177r-21,0r0,-143v0,-23,-10,-34,-30,-34v-62,0,-33,115,-39,177r-22,0","w":246,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"n":{"d":"21,0r0,-191r19,0v1,8,-2,20,1,26v21,-46,98,-41,98,21r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-68,2,-36,113,-43,177r-21,0","k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"o":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100","w":153},"p":{"d":"83,-177v-37,0,-43,33,-43,82v0,71,20,81,42,81v22,0,42,-10,42,-81v0,-69,-20,-82,-41,-82xm19,63r0,-254r19,0v1,8,-2,21,1,27v7,-18,23,-31,47,-31v43,0,61,33,61,100v0,66,-19,99,-61,99v-25,1,-39,-15,-46,-33r0,92r-21,0","k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"q":{"d":"120,-95v0,-50,-5,-82,-43,-82v-21,0,-41,13,-41,82v0,71,20,81,42,81v22,0,42,-10,42,-81xm120,63r-1,-92v-5,20,-21,33,-45,33v-42,0,-61,-33,-61,-99v0,-67,18,-100,61,-100v25,-1,39,15,48,31r0,-27r19,0r0,254r-21,0"},"r":{"d":"21,0r0,-191r21,0v1,9,-2,23,1,30v9,-24,29,-37,56,-33r0,21v-32,-5,-57,12,-57,53r0,120r-21,0","w":100,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"107,-48v0,-49,-93,-39,-93,-92v0,-39,24,-55,57,-55v38,0,54,20,53,58r-22,0v1,-27,-9,-41,-31,-40v-44,0,-49,52,-9,64v29,10,67,26,67,60v0,33,-19,57,-59,57v-41,1,-61,-19,-59,-65r22,0v-1,30,10,48,36,47v23,0,38,-12,38,-34","w":140},"t":{"d":"29,-31r0,-142r-26,0r0,-18r26,0r0,-53r21,0r0,53r34,0r0,18r-34,0r0,137v-1,20,17,22,34,18r0,18v-26,5,-55,1,-55,-31","w":86},"u":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20"},"v":{"d":"56,0r-53,-191r23,0r43,167r39,-167r23,0r-51,191r-24,0","w":133,"k":{".":20,",":20}},"w":{"d":"46,0r-42,-191r23,0r33,169r34,-169r27,0r33,169r32,-169r24,0r-43,191r-26,0r-35,-170r-34,170r-26,0","w":213,"k":{".":13,",":13}},"x":{"d":"107,0r-40,-82r-40,82r-25,0r52,-99r-50,-92r25,0r38,75r37,-75r25,0r-49,92r51,99r-24,0","w":133},"y":{"d":"58,2r-55,-193r23,0r43,165r39,-165r23,0r-56,206v-11,43,-24,50,-65,48r0,-18v32,7,41,-17,48,-43","w":133,"k":{".":20,",":20}},"z":{"d":"6,0r0,-18r91,-155r-86,0r0,-18r109,0r0,18r-90,155r90,0r0,18r-114,0","w":126},"{":{"d":"12,-104v56,-5,-30,-173,78,-153r0,18v-22,0,-36,-4,-36,24v-1,43,7,116,-24,120v32,2,24,78,24,119v0,28,14,24,36,24r0,18v-37,4,-57,-9,-57,-43v0,-34,10,-114,-21,-109r0,-18","w":86},"|":{"d":"31,4r0,-265r18,0r0,265r-18,0","w":79},"}":{"d":"75,-86v-56,5,29,172,-78,152r0,-18v22,0,36,4,35,-24v0,-43,-7,-116,25,-120v-33,-2,-25,-78,-25,-119v0,-28,-13,-24,-35,-24r0,-18v36,-3,57,10,57,43v0,35,-10,114,21,110r0,18","w":86},"~":{"d":"70,-112v14,-4,70,26,77,24v12,0,20,-8,31,-26r13,13v-15,21,-26,31,-45,31v-16,4,-61,-29,-78,-24v-16,0,-24,13,-30,26r-13,-13v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"31,-158r0,-37r24,0r0,37r-24,0xm31,62r4,-190r16,0r4,190r-24,0","w":86},"\u00a2":{"d":"84,34r0,-30v-38,-2,-60,-31,-60,-100v0,-63,21,-96,60,-99r0,-30r10,0r0,30v34,3,52,24,55,61r-22,0v-3,-27,-12,-40,-33,-43r0,163v19,-4,30,-20,33,-49r22,0v-3,39,-23,63,-55,67r0,30r-10,0xm84,-14r0,-163v-21,3,-37,20,-37,82v0,67,18,80,37,81","w":172},"\u00a3":{"d":"33,-19v25,-17,53,4,80,4v15,0,28,-8,43,-18r10,16v-26,30,-76,18,-113,8v-15,0,-29,8,-35,11r-11,-17v35,-27,57,-59,38,-102r-36,0r0,-16r30,0v-8,-16,-23,-36,-22,-58v0,-41,34,-64,73,-64v45,0,70,31,70,74r-22,0v6,-70,-96,-73,-98,-12v0,19,14,44,23,60r54,0r0,16r-48,0v17,41,-3,69,-36,98","w":172},"\u00a5":{"d":"75,0r0,-63r-51,0r0,-15r51,0v0,-12,1,-25,-4,-32r-47,0r0,-16r40,0r-59,-125r25,0r56,124r57,-124r24,0r-58,125r39,0r0,16r-46,0v-5,7,-4,20,-4,32r50,0r0,15r-50,0r0,63r-23,0","w":172},"\u0192":{"d":"40,-143r3,-16r38,0r9,-47v14,-52,38,-53,75,-50r-4,18v-32,-3,-41,-2,-53,52r-5,27r40,0r-3,16r-40,0r-27,138v-11,59,-29,74,-78,66r4,-18v35,5,43,2,54,-56r25,-130r-38,0","w":172},"\u00a7":{"d":"139,-94v0,-34,-53,-48,-76,-67v-42,24,-37,53,1,77r48,31v18,-9,27,-21,27,-41xm146,-208r-22,0v0,-22,-15,-35,-37,-35v-44,0,-51,48,-9,66v28,21,83,43,83,84v0,22,-15,40,-34,50v38,30,22,100,-38,97v-41,-2,-65,-25,-63,-62r22,0v0,26,12,44,40,44v48,0,49,-56,7,-74v-28,-21,-82,-43,-82,-83v0,-22,18,-42,37,-50v-44,-27,-18,-90,38,-90v37,0,58,21,58,53","w":173},"\u00a4":{"d":"27,-125v0,35,28,61,59,61v31,0,60,-26,60,-61v0,-35,-29,-61,-60,-61v-31,0,-59,26,-59,61xm21,-46r-13,-13r17,-17v-24,-28,-23,-71,0,-99r-17,-17r13,-12r16,16v26,-21,73,-22,99,1r17,-17r12,12r-17,17v23,25,23,74,1,99r16,17r-12,13r-17,-18v-27,23,-73,23,-99,1","w":172},"'":{"d":"32,-171r0,-86r22,0r0,86r-22,0","w":86},"\u00ab":{"d":"21,-91r0,-22r45,-50r0,24r-33,37r33,36r0,25xm68,-91r0,-22r45,-50r0,24r-32,37r32,36r0,25","w":133},"\u00b7":{"d":"23,-118v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":86},"\u00b6":{"d":"70,50r0,-170v-32,0,-59,-30,-59,-66v-1,-73,61,-75,133,-71r0,307r-18,0r0,-291r-38,0r0,291r-18,0","w":173},"\u00bb":{"d":"68,-41r0,-25r32,-36r-32,-37r0,-24r45,50r0,22xm21,-41r0,-25r32,-36r-32,-37r0,-24r45,50r0,22","w":133},"\u00bf":{"d":"70,-158r0,-37r24,0r0,37r-24,0xm71,-129r22,0v12,64,-57,79,-58,133v0,26,17,44,41,44v31,0,46,-21,46,-60r23,0v0,45,-22,78,-68,78v-66,1,-85,-75,-41,-119v19,-19,40,-38,35,-76","w":153},"`":{"d":"-4,-266r26,0r27,51r-17,0","w":66},"\u00b4":{"d":"45,-266r26,0r-36,51r-17,0","w":66},"\u00af":{"d":"-9,-233r0,-15r85,0r0,15r-85,0","w":66},"\u00a8":{"d":"50,-222r0,-37r21,0r0,37r-21,0xm-4,-222r0,-37r21,0r0,37r-21,0","w":66},"\u00b8":{"d":"12,29v11,-10,10,-32,34,-29v-4,6,-14,15,-15,20v18,-7,41,5,40,22v-1,33,-46,37,-70,24r4,-11v13,9,49,6,46,-11v1,-14,-25,-16,-34,-9","w":66},"\u00c6":{"d":"58,-94r62,0r0,-144r-4,0xm120,0r0,-75r-69,0r-29,75r-25,0r105,-257r142,0r0,19r-101,0r0,94r94,0r0,19r-94,0r0,106r104,0r0,19r-127,0","w":253},"\u00aa":{"d":"40,-148v23,2,34,-25,28,-50v-11,12,-47,7,-47,30v0,11,8,20,19,20xm23,-217r-18,0v0,-25,13,-38,43,-38v58,-2,34,52,39,97v0,8,3,11,11,10r0,14v-13,5,-32,3,-29,-18v-11,34,-73,21,-67,-14v-3,-29,30,-35,55,-41v10,-3,12,-5,12,-16v0,-11,-9,-16,-22,-16v-17,0,-24,9,-24,22","w":99},"\u0141":{"d":"20,0r0,-103r-25,17r0,-21r25,-18r0,-132r23,0r0,117r67,-46r0,21r-67,46r0,100r107,0r0,19r-130,0","w":153},"\u00d8":{"d":"48,15r-13,-6r11,-28v-19,-21,-28,-56,-28,-110v0,-114,51,-154,125,-120r9,-23r14,5r-12,28v19,21,28,56,28,110v2,113,-51,156,-124,121xm144,-214r-78,185v9,10,20,14,34,14v36,0,59,-30,59,-114v0,-40,-5,-67,-15,-85xm56,-43r79,-185v-54,-35,-96,-5,-94,99v0,39,5,68,15,86","w":200},"\u0152":{"d":"147,-236v3,-4,0,-15,1,-21r122,0r0,19r-99,0r0,94r92,0r0,19r-92,0r0,106r102,0r0,19r-125,0v-1,-7,2,-18,-1,-23v-8,18,-27,27,-50,27v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v27,0,41,9,50,25xm97,-15v67,0,51,-98,51,-162v0,-50,-16,-65,-51,-65v-36,0,-59,29,-59,113v0,84,23,114,59,114","w":280},"\u00ba":{"d":"23,-194v0,33,12,46,27,46v15,0,27,-13,27,-46v0,-33,-12,-45,-27,-45v-15,0,-27,12,-27,45xm3,-194v0,-41,16,-61,47,-61v31,0,46,20,46,61v0,41,-15,62,-46,62v-31,0,-47,-21,-47,-62","w":99},"\u00e6":{"d":"124,-113r75,0v0,-48,-15,-64,-37,-64v-22,0,-37,16,-38,64xm102,-103v-22,15,-68,12,-68,52v0,23,11,37,30,37v17,0,38,-13,38,-49r0,-40xm39,-134r-22,0v-11,-64,85,-84,102,-31v9,-19,25,-30,45,-30v43,0,58,32,58,100r-98,0v-2,48,13,81,37,81v21,0,38,-20,38,-49r22,0v3,75,-91,90,-108,28v-10,25,-27,39,-54,39v-33,0,-48,-21,-48,-54v0,-43,36,-52,73,-61v14,-4,18,-8,18,-28v0,-27,-8,-38,-29,-38v-23,0,-34,15,-34,43","w":233},"\u0131":{"d":"22,0r0,-191r22,0r0,191r-22,0","w":66},"\u0142":{"d":"22,0r0,-114r-22,24r0,-22r22,-23r0,-122r22,0r0,99r22,-24v4,26,-12,33,-22,45r0,137r-22,0","w":66},"\u00f8":{"d":"36,20r-13,-6r11,-27v-15,-16,-23,-44,-23,-83v-2,-81,39,-114,96,-92r10,-23r14,6r-12,27v15,16,24,43,24,82v2,81,-40,117,-97,92xm109,-155r-55,132v39,24,65,1,66,-73v0,-26,-4,-46,-11,-59xm44,-36r55,-133v-39,-22,-64,0,-65,73v0,27,3,47,10,60","w":153},"\u0153":{"d":"141,-113r76,0v0,-48,-16,-64,-38,-64v-22,0,-37,16,-38,64xm37,-96v0,62,18,82,41,82v23,0,42,-20,42,-82v0,-61,-19,-81,-42,-81v-23,0,-41,20,-41,81xm216,-63r22,0v1,72,-85,96,-108,28v-9,23,-25,39,-50,39v-42,0,-66,-33,-66,-100v0,-67,24,-99,66,-99v26,0,43,14,52,39v7,-26,23,-39,49,-39v43,0,59,32,59,100r-99,0v-3,48,14,81,38,81v21,0,37,-20,37,-49","w":253},"\u00df":{"d":"19,0r0,-194v0,-44,23,-66,60,-66v65,0,82,96,20,112v41,5,50,43,50,70v0,55,-33,88,-84,78r0,-18v35,8,60,-12,61,-61v0,-42,-19,-60,-59,-58r0,-18v30,1,47,-12,47,-44v0,-24,-12,-43,-36,-43v-22,0,-38,13,-38,50r0,192r-21,0"},"\u00b9":{"d":"52,-101r0,-115r-39,0r0,-13v29,0,41,-11,42,-26r16,0r0,154r-19,0","w":112},"\u00ac":{"d":"181,-39r0,-78r-164,0r0,-18r182,0r0,96r-18,0","w":216},"\u00b5":{"d":"21,63r0,-254r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-13,31,-51,39,-77,23r0,67r-21,0"},"\u00d0":{"d":"43,-144r58,0r0,19r-58,0r0,106v80,4,109,-6,109,-109v0,-104,-28,-114,-109,-110r0,94xm20,0r0,-125r-20,0r0,-19r20,0r0,-113r62,0v75,0,93,44,93,128v0,84,-18,129,-93,129r-62,0","w":193},"\u00bd":{"d":"161,-105r-20,0v0,-30,16,-49,50,-49v48,0,62,60,19,88v-18,11,-46,32,-48,50r75,0r0,16r-94,0v-7,-51,71,-66,73,-112v0,-18,-12,-26,-27,-26v-17,0,-27,11,-28,33xm52,-101r0,-115r-39,0r0,-13v29,0,41,-11,42,-26r16,0r0,154r-19,0xm22,11r162,-272r18,0r-162,272r-18,0","w":259},"\u00b1":{"d":"17,0r0,-18r182,0r0,18r-182,0xm99,-120r0,-62r18,0r0,62r82,0r0,18r-82,0r0,62r-18,0r0,-62r-82,0r0,-18r82,0","w":216},"\u00de":{"d":"20,0r0,-257r23,0r0,50r48,0v48,0,69,30,69,73v0,40,-19,73,-78,73r-39,0r0,61r-23,0xm43,-187r0,106v51,1,94,3,94,-53v0,-56,-43,-55,-94,-53","w":172},"\u00bc":{"d":"52,-101r0,-115r-39,0r0,-13v29,0,41,-11,42,-26r16,0r0,154r-19,0xm32,11r163,-272r18,0r-163,272r-18,0xm153,-53r51,0v-1,-25,2,-54,-1,-77xm204,0r0,-40r-67,0r0,-13r64,-101r21,0r0,101r20,0r0,13r-20,0r0,40r-18,0","w":259},"\u00f7":{"d":"88,-17v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm88,-165v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm17,-82r0,-18r182,0r0,18r-182,0","w":216},"\u00a6":{"d":"31,-164r0,-97r18,0r0,97r-18,0xm31,4r0,-97r18,0r0,97r-18,0","w":79},"\u00b0":{"d":"21,-203v0,-29,22,-52,51,-52v29,0,51,23,51,52v0,29,-22,51,-51,51v-29,0,-51,-22,-51,-51xm36,-203v0,20,16,35,36,35v20,0,36,-15,36,-35v0,-20,-16,-36,-36,-36v-20,0,-36,16,-36,36","w":144},"\u00fe":{"d":"40,-95v0,71,20,81,42,81v22,0,42,-10,42,-81v0,-71,-20,-82,-42,-82v-22,0,-42,11,-42,82xm19,63r0,-320r21,0r1,98v6,-22,24,-36,45,-36v42,0,61,33,61,100v0,66,-19,99,-61,99v-25,1,-39,-15,-46,-33r0,92r-21,0"},"\u00be":{"d":"43,-173v1,-6,-4,-17,6,-16v39,4,42,-49,6,-50v-14,0,-27,10,-27,27r-19,0v0,-26,14,-43,46,-43v50,0,61,63,18,73v50,11,39,84,-18,84v-30,0,-47,-15,-48,-44r20,0v0,13,10,28,28,28v14,0,31,-10,31,-31v0,-21,-18,-30,-43,-28xm43,11r163,-272r18,0r-163,272r-18,0xm153,-53r51,0v-1,-25,2,-54,-1,-77xm204,0r0,-40r-67,0r0,-13r64,-101r21,0r0,101r20,0r0,13r-20,0r0,40r-18,0","w":259},"\u00b2":{"d":"28,-206r-19,0v0,-30,15,-49,49,-49v48,0,63,62,19,89v-18,11,-46,31,-48,49r75,0r0,16r-94,0v-7,-51,74,-66,74,-112v0,-18,-12,-26,-27,-26v-17,0,-28,11,-29,33","w":112},"\u00ae":{"d":"29,-129v0,63,52,115,115,115v63,0,115,-52,115,-115v0,-63,-52,-114,-115,-114v-63,0,-115,51,-115,114xm11,-129v0,-73,60,-132,133,-132v73,0,133,59,133,132v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133xm112,-192r0,56v34,-1,76,8,76,-28v-1,-36,-42,-27,-76,-28xm192,-50r-47,-70r-33,0r0,70r-18,0r0,-158v50,-1,112,-7,112,44v0,28,-18,40,-39,44r46,70r-21,0","w":288},"\u00f0":{"d":"42,-215r-13,-12r26,-16v-8,-9,-16,-16,-26,-24r17,-12v10,8,18,16,27,26r26,-15r13,11r-27,16v33,37,58,79,58,145v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-98v0,-64,26,-97,62,-97v14,0,26,9,36,18v-13,-21,-27,-40,-42,-57xm34,-94v0,59,19,80,43,80v24,0,43,-21,43,-80v0,-59,-19,-79,-43,-79v-24,0,-43,20,-43,79","w":153},"\u00d7":{"d":"176,-10r-68,-68r-68,68r-13,-13r68,-68r-68,-69r13,-12r68,68r68,-68r13,12r-68,69r68,68","w":216},"\u00b3":{"d":"43,-173v1,-6,-4,-17,6,-16v39,4,42,-49,6,-50v-14,0,-27,10,-27,27r-19,0v0,-26,14,-43,46,-43v50,0,61,63,18,73v50,11,39,84,-18,84v-30,0,-47,-15,-48,-44r20,0v0,13,10,28,28,28v14,0,31,-10,31,-31v0,-21,-18,-30,-43,-28","w":112},"\u00a9":{"d":"29,-129v0,63,52,115,115,115v63,0,115,-52,115,-115v0,-63,-52,-114,-115,-114v-63,0,-115,51,-115,114xm11,-129v0,-73,60,-132,133,-132v73,0,133,59,133,132v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133xm196,-101r20,0v-8,33,-34,57,-68,57v-49,0,-80,-37,-80,-85v0,-91,135,-116,148,-28r-20,0v-19,-65,-109,-37,-109,28v0,34,22,67,61,67v26,0,44,-17,48,-39","w":288},"\u00c1":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145xm103,-329r26,0r-36,51r-17,0","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u00c2":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145xm66,-278r-22,0r35,-51r21,0r35,51r-22,0r-23,-36","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u00c4":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145xm106,-281r0,-37r22,0r0,37r-22,0xm52,-281r0,-37r22,0r0,37r-22,0","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u00c0":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145xm51,-325r26,0r27,51r-17,0","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u00c5":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145xm69,-300v0,13,8,22,21,22v13,0,21,-10,21,-22v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21xm56,-300v0,-19,15,-33,34,-33v19,0,34,14,34,33v0,19,-15,34,-34,34v-20,0,-34,-15,-34,-34","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u00c3":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145xm122,-318r16,0v2,32,-37,45,-59,22v-13,-7,-19,4,-21,15r-16,0v0,-31,34,-46,57,-24v11,10,24,-2,23,-13","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u00c7":{"d":"94,4v-61,-7,-76,-57,-76,-133v0,-92,29,-132,82,-132v52,0,74,37,74,79r-23,0v0,-35,-18,-60,-51,-60v-36,0,-59,29,-59,113v0,84,23,114,59,114v33,0,50,-27,53,-72r23,0v-3,51,-23,87,-69,91v-3,5,-11,12,-11,16v18,-7,41,5,40,22v-1,33,-46,37,-70,24r4,-11v13,9,49,5,46,-11v1,-15,-26,-16,-35,-9v-9,-10,9,-21,13,-31","w":186},"\u00c9":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm100,-325r26,0r-35,51r-18,0"},"\u00ca":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm60,-278r-21,0r34,-51r22,0r35,51r-22,0r-24,-36"},"\u00cb":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm99,-285r0,-36r22,0r0,36r-22,0xm45,-285r0,-36r22,0r0,36r-22,0"},"\u00c8":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm48,-329r25,0r27,51r-17,0"},"\u00cd":{"d":"22,0r0,-257r23,0r0,257r-23,0xm49,-329r26,0r-36,51r-17,0","w":66},"\u00ce":{"d":"22,0r0,-257r23,0r0,257r-23,0xm9,-278r-22,0r35,-51r22,0r34,51r-21,0r-24,-36","w":66},"\u00cf":{"d":"22,0r0,-257r23,0r0,257r-23,0xm49,-285r0,-36r22,0r0,36r-22,0xm-5,-285r0,-36r22,0r0,36r-22,0","w":66},"\u00cc":{"d":"22,0r0,-257r23,0r0,257r-23,0xm-9,-329r26,0r27,51r-17,0","w":66},"\u00d1":{"d":"20,0r0,-257r31,0r99,224r0,-224r23,0r0,257r-31,0r-99,-224r0,224r-23,0xm128,-318r16,0v2,32,-37,45,-59,22v-13,-7,-20,3,-22,15r-15,0v1,-31,33,-45,57,-24v11,10,24,-2,23,-13","w":193},"\u00d3":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133xm118,-329r26,0r-36,51r-17,0","w":200},"\u00d4":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133xm76,-278r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":200},"\u00d6":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133xm116,-281r0,-37r22,0r0,37r-22,0xm62,-281r0,-37r22,0r0,37r-22,0","w":200},"\u00d2":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133xm56,-329r26,0r27,51r-18,0","w":200},"\u00d5":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133xm133,-318r16,0v2,32,-37,45,-59,22v-13,-7,-20,3,-22,15r-15,0v1,-31,33,-45,57,-24v11,10,24,-2,23,-13","w":200},"\u0160":{"d":"156,-191r-23,0v0,-32,-14,-51,-46,-51v-31,0,-49,20,-49,46v0,76,125,35,125,125v0,50,-31,75,-78,75v-52,0,-77,-28,-75,-84r23,0v-2,39,13,65,51,65v33,0,56,-16,56,-52v0,-77,-125,-33,-125,-126v0,-40,26,-68,71,-68v48,0,70,24,70,70xm41,-325r22,0r24,36r24,-36r21,0r-35,51r-21,0","w":172},"\u00da":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm103,-329r25,0r-35,51r-17,0","w":180},"\u00db":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm67,-278r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":180},"\u00dc":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm106,-281r0,-37r21,0r0,37r-21,0xm52,-281r0,-37r21,0r0,37r-21,0","w":180},"\u00d9":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm48,-329r25,0r27,51r-17,0","w":180},"\u00dd":{"d":"68,0r0,-103r-69,-154r24,0r57,128r56,-128r25,0r-70,154r0,103r-23,0xm98,-325r25,0r-35,51r-17,0","k":{"\u0173":13,"\u0171":13,"\u016f":13,"\u016d":13,"\u016b":13,"\u0169":13,"\u0151":20,"\u014f":20,"\u014d":20,"\u012f":6,"\u0119":20,"\u0117":20,"\u0115":20,"\u0113":20,"\u011b":20,"\u0105":20,"\u0103":20,"\u0101":20,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":13,"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f5":20,"\u00f2":20,"\u00f6":20,"\u00f4":20,"\u00f3":20,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"\u00e1":20,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u0178":{"d":"68,0r0,-103r-69,-154r24,0r57,128r56,-128r25,0r-70,154r0,103r-23,0xm96,-281r0,-37r22,0r0,37r-22,0xm42,-281r0,-37r22,0r0,37r-22,0","k":{"\u0173":13,"\u0171":13,"\u016f":13,"\u016d":13,"\u016b":13,"\u0169":13,"\u0151":20,"\u014f":20,"\u014d":20,"\u012f":6,"\u0119":20,"\u0117":20,"\u0115":20,"\u0113":20,"\u011b":20,"\u0105":20,"\u0103":20,"\u0101":20,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":13,"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f5":20,"\u00f2":20,"\u00f6":20,"\u00f4":20,"\u00f3":20,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"\u00e1":20,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u017d":{"d":"8,0r0,-22r125,-216r-118,0r0,-19r142,0r0,22r-124,216r125,0r0,19r-150,0xm37,-325r22,0r24,36r24,-36r22,0r-35,51r-22,0","w":166},"\u00e1":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43xm94,-266r25,0r-35,51r-17,0","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u00e2":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43xm51,-215r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u00e4":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43xm91,-222r0,-37r22,0r0,37r-22,0xm37,-222r0,-37r22,0r0,37r-22,0","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u00e0":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43xm41,-266r26,0r27,51r-18,0","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u00e5":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43xm54,-246v0,13,8,21,21,21v13,0,21,-9,21,-21v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21xm41,-246v0,-19,15,-34,34,-34v19,0,34,15,34,34v0,19,-15,34,-34,34v-20,0,-34,-15,-34,-34","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u00e3":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43xm107,-259r15,0v2,32,-37,45,-59,22v-13,-7,-19,4,-21,15r-16,0v0,-31,34,-46,57,-24v11,11,24,-2,24,-13","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u00e7":{"d":"68,4v-45,-7,-57,-36,-57,-100v0,-67,24,-99,66,-99v36,0,56,22,59,61r-22,0v-3,-30,-14,-43,-37,-43v-23,0,-43,14,-43,82v0,72,21,81,41,81v22,0,35,-16,39,-49r22,0v-4,36,-21,63,-55,67v-3,5,-11,12,-11,16v18,-7,41,5,40,22v-1,33,-46,37,-70,24r4,-11v13,9,49,6,46,-11v1,-15,-26,-16,-35,-9v-9,-10,9,-21,13,-31","w":146},"\u00e9":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm95,-266r26,0r-35,51r-18,0","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u00ea":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm54,-215r-22,0r35,-51r22,0r34,51r-21,0r-24,-36","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u00eb":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm94,-222r0,-37r21,0r0,37r-21,0xm40,-222r0,-37r21,0r0,37r-21,0","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u00e8":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm42,-266r26,0r27,51r-17,0","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u00ed":{"d":"22,0r0,-191r22,0r0,191r-22,0xm49,-266r26,0r-35,51r-18,0","w":66},"\u00ee":{"d":"22,0r0,-191r22,0r0,191r-22,0xm9,-215r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":66},"\u00ef":{"d":"22,0r0,-191r22,0r0,191r-22,0xm49,-222r0,-37r22,0r0,37r-22,0xm-5,-222r0,-37r22,0r0,37r-22,0","w":66},"\u00ec":{"d":"22,0r0,-191r22,0r0,191r-22,0xm-9,-267r26,0r27,50r-18,0","w":66},"\u00f1":{"d":"21,0r0,-191r19,0v1,8,-2,20,1,26v21,-46,98,-41,98,21r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-68,2,-36,113,-43,177r-21,0xm112,-259r16,0v2,32,-37,46,-59,22v-13,-7,-20,3,-22,15r-16,0v1,-31,34,-46,58,-24v11,11,23,-2,23,-13","k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u00f3":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm92,-266r26,0r-36,51r-17,0","w":153},"\u00f4":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm53,-215r-22,0r35,-51r21,0r35,51r-22,0r-24,-36","w":153},"\u00f6":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm93,-222r0,-37r21,0r0,37r-21,0xm39,-222r0,-37r21,0r0,37r-21,0","w":153},"\u00f2":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm35,-266r25,0r27,51r-17,0","w":153},"\u00f5":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm109,-259r16,0v2,32,-37,46,-59,22v-13,-7,-20,3,-22,15r-16,0v0,-31,34,-46,57,-24v11,11,24,-2,24,-13","w":153},"\u0161":{"d":"107,-48v0,-49,-93,-39,-93,-92v0,-39,24,-55,57,-55v38,0,54,20,53,58r-22,0v1,-27,-9,-41,-31,-40v-44,0,-49,52,-9,64v29,10,67,26,67,60v0,33,-19,57,-59,57v-41,1,-61,-19,-59,-65r22,0v-1,30,10,48,36,47v23,0,38,-12,38,-34xm26,-266r21,0r24,36r24,-36r22,0r-35,51r-22,0","w":140},"\u00fa":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm97,-266r25,0r-35,51r-17,0"},"\u00fb":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm56,-215r-22,0r35,-51r21,0r35,51r-22,0r-23,-36"},"\u00fc":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm96,-222r0,-37r21,0r0,37r-21,0xm42,-222r0,-37r21,0r0,37r-21,0"},"\u00f9":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm39,-266r26,0r27,51r-17,0"},"\u00fd":{"d":"58,2r-55,-193r23,0r43,165r39,-165r23,0r-56,206v-11,43,-24,50,-65,48r0,-18v32,7,41,-17,48,-43xm85,-266r26,0r-35,51r-18,0","w":133,"k":{".":20,",":20}},"\u00ff":{"d":"58,2r-55,-193r23,0r43,165r39,-165r23,0r-56,206v-11,43,-24,50,-65,48r0,-18v32,7,41,-17,48,-43xm85,-222r0,-37r22,0r0,37r-22,0xm31,-222r0,-37r22,0r0,37r-22,0","w":133,"k":{".":20,",":20}},"\u017e":{"d":"6,0r0,-18r91,-155r-86,0r0,-18r109,0r0,18r-90,155r90,0r0,18r-114,0xm20,-266r21,0r25,36r24,-36r21,0r-35,51r-22,0","w":126},"\u0100":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145xm47,-295r0,-16r85,0r0,16r-85,0","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u0102":{"d":"0,0r76,-257r28,0r76,257r-24,0r-21,-75r-90,0r-21,75r-24,0xm50,-94r80,0r-40,-145xm63,-325v1,35,52,38,55,0r16,0v-2,27,-20,44,-44,44v-24,0,-41,-17,-43,-44r16,0","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u0104":{"d":"180,0r-8,0v-22,19,-32,31,-32,43v0,22,27,19,41,10r5,10v-19,16,-65,12,-65,-16v0,-16,14,-33,35,-47r-21,-75r-90,0r-21,75r-24,0r76,-257r28,0xm50,-94r80,0r-40,-145","w":180,"k":{"\u021a":20,"\u0177":6,"\u0175":6,"\u0176":20,"\u0174":10,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":20,"\u0164":20,"\u00ff":6,"\u00fd":6,"\u0178":20,"\u00dd":20,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"y":6,"w":6,"v":6,"Y":20,"W":10,"V":10,"U":-2,"T":20,"Q":-2}},"\u0106":{"d":"153,-87r23,0v-3,59,-30,91,-76,91v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v52,0,74,37,74,79r-23,0v0,-35,-18,-60,-51,-60v-36,0,-59,29,-59,113v0,84,23,114,59,114v33,0,50,-27,53,-72xm118,-329r25,0r-35,51r-17,0","w":186},"\u0108":{"d":"153,-87r23,0v-3,59,-30,91,-76,91v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v52,0,74,37,74,79r-23,0v0,-35,-18,-60,-51,-60v-36,0,-59,29,-59,113v0,84,23,114,59,114v33,0,50,-27,53,-72xm77,-278r-22,0r35,-51r22,0r34,51r-21,0r-24,-36","w":186},"\u010c":{"d":"153,-87r23,0v-3,59,-30,91,-76,91v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v52,0,74,37,74,79r-23,0v0,-35,-18,-60,-51,-60v-36,0,-59,29,-59,113v0,84,23,114,59,114v33,0,50,-27,53,-72xm55,-329r22,0r24,37r24,-37r22,0r-36,51r-21,0","w":186},"\u010a":{"d":"153,-87r23,0v-3,59,-30,91,-76,91v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v52,0,74,37,74,79r-23,0v0,-35,-18,-60,-51,-60v-36,0,-59,29,-59,113v0,84,23,114,59,114v33,0,50,-27,53,-72xm90,-285r0,-36r21,0r0,36r-21,0","w":186},"\u010e":{"d":"43,-238r0,219v80,4,109,-6,109,-109v0,-104,-28,-114,-109,-110xm20,0r0,-257r62,0v75,0,93,44,93,128v0,84,-18,129,-93,129r-62,0xm41,-329r22,0r24,37r24,-37r22,0r-35,51r-22,0","w":193},"\u011a":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm39,-329r21,0r24,37r24,-37r22,0r-35,51r-22,0"},"\u0112":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm42,-295r0,-16r86,0r0,16r-86,0"},"\u0114":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm56,-325v2,34,53,38,56,0r15,0v-2,27,-19,44,-43,44v-24,0,-42,-17,-44,-44r16,0"},"\u0116":{"d":"20,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19r-131,0xm74,-285r0,-36r21,0r0,36r-21,0"},"\u0118":{"d":"151,0r-14,0v-22,19,-32,31,-32,43v0,23,28,19,42,10r4,10v-19,16,-65,12,-65,-16v0,-16,14,-33,35,-47r-101,0r0,-257r128,0r0,19r-105,0r0,94r98,0r0,19r-98,0r0,106r108,0r0,19"},"\u011c":{"d":"154,-112r-61,0r0,-19r82,0r0,131r-18,0r0,-42v-8,29,-31,46,-57,46v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v49,0,71,32,74,76r-23,0v0,-31,-18,-57,-51,-57v-36,0,-59,29,-59,113v0,84,23,114,59,114v37,0,55,-37,54,-97xm77,-278r-21,0r34,-51r22,0r35,51r-22,0r-24,-36","w":193},"\u011e":{"d":"154,-112r-61,0r0,-19r82,0r0,131r-18,0r0,-42v-8,29,-31,46,-57,46v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v49,0,71,32,74,76r-23,0v0,-31,-18,-57,-51,-57v-36,0,-59,29,-59,113v0,84,23,114,59,114v37,0,55,-37,54,-97xm73,-325v2,34,53,38,56,0r16,0v-2,27,-20,44,-44,44v-24,0,-41,-17,-43,-44r15,0","w":193},"\u0120":{"d":"154,-112r-61,0r0,-19r82,0r0,131r-18,0r0,-42v-8,29,-31,46,-57,46v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v49,0,71,32,74,76r-23,0v0,-31,-18,-57,-51,-57v-36,0,-59,29,-59,113v0,84,23,114,59,114v37,0,55,-37,54,-97xm90,-285r0,-36r21,0r0,36r-21,0","w":193},"\u0122":{"d":"154,-112r-61,0r0,-19r82,0r0,131r-18,0r0,-42v-8,29,-31,46,-57,46v-53,0,-82,-41,-82,-133v0,-92,29,-132,82,-132v49,0,71,32,74,76r-23,0v0,-31,-18,-57,-51,-57v-36,0,-59,29,-59,113v0,84,23,114,59,114v37,0,55,-37,54,-97xm88,51r0,-33r23,0v2,26,1,58,-23,55v-2,-14,12,-8,10,-22r-10,0","w":193},"\u0124":{"d":"144,0r0,-128r-101,0r0,128r-23,0r0,-257r23,0r0,109r101,0r0,-109r23,0r0,257r-23,0xm70,-278r-22,0r35,-51r21,0r35,51r-22,0r-23,-36","w":186},"\u0126":{"d":"144,0r0,-125r-101,0r0,125r-23,0r0,-257r23,0r0,66r101,0r0,-66r23,0r0,257r-23,0xm43,-144r101,0r0,-31r-101,0r0,31","w":186},"\u0128":{"d":"22,0r0,-257r23,0r0,257r-23,0xm65,-321r16,0v1,22,-24,46,-45,29v-12,-10,-34,-17,-36,7r-15,0v0,-31,34,-46,57,-23v11,10,24,-2,23,-13","w":66},"\u012a":{"d":"22,0r0,-257r23,0r0,257r-23,0xm-10,-295r0,-16r86,0r0,16r-86,0","w":66},"\u0130":{"d":"22,0r0,-257r23,0r0,257r-23,0xm22,-285r0,-36r22,0r0,36r-22,0","w":66},"\u012e":{"d":"45,-257r0,257v-20,19,-29,31,-29,43v0,22,23,19,37,10r5,10v-18,16,-59,12,-59,-16v0,-16,12,-33,31,-47r-8,0r0,-257r23,0","w":66},"\u0134":{"d":"65,4v-40,0,-61,-26,-58,-79r23,0v-1,36,6,60,34,60v25,0,39,-11,39,-52r0,-190r23,0r0,193v0,45,-20,68,-61,68xm90,-278r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":146},"\u0136":{"d":"20,0r0,-257r23,0r1,135r98,-135r25,0r-79,107r87,150r-24,0r-77,-130r-31,40r0,90r-23,0xm77,51r0,-33r23,0v2,26,1,58,-23,55v-2,-13,11,-8,9,-22r-9,0","w":172},"\u0139":{"d":"20,0r0,-257r23,0r0,238r107,0r0,19r-130,0xm50,-329r25,0r-35,51r-17,0","w":153,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"\u013d":{"d":"20,0r0,-257r23,0r0,238r107,0r0,19r-130,0xm82,-257r25,0r-18,51r-16,0","w":153,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"\u013b":{"d":"20,0r0,-257r23,0r0,238r107,0r0,19r-130,0xm71,51r0,-33r23,0v2,26,1,58,-23,55v-2,-13,11,-8,9,-22r-9,0","w":153,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"\u0143":{"d":"20,0r0,-257r31,0r99,224r0,-224r23,0r0,257r-31,0r-99,-224r0,224r-23,0xm113,-329r25,0r-35,51r-17,0","w":193},"\u0147":{"d":"20,0r0,-257r31,0r99,224r0,-224r23,0r0,257r-31,0r-99,-224r0,224r-23,0xm51,-329r22,0r24,37r24,-37r22,0r-36,51r-21,0","w":193},"\u0145":{"d":"20,0r0,-257r31,0r99,224r0,-224r23,0r0,257r-31,0r-99,-224r0,224r-23,0xm83,51r0,-33r23,0v2,26,1,58,-23,55v-2,-14,12,-8,10,-22r-10,0","w":193},"\u014c":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133xm57,-295r0,-16r86,0r0,16r-86,0","w":200},"\u014e":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133xm72,-325v0,35,53,38,55,0r16,0v-2,27,-19,44,-43,44v-24,0,-42,-17,-44,-44r16,0","w":200},"\u0150":{"d":"41,-129v0,84,23,114,59,114v36,0,59,-30,59,-114v0,-84,-23,-113,-59,-113v-36,0,-59,29,-59,113xm18,-129v0,-92,29,-132,82,-132v52,0,82,40,82,132v0,92,-30,133,-82,133v-53,0,-82,-41,-82,-133xm145,-329r26,0r-35,51r-17,0xm91,-329r26,0r-36,51r-17,0","w":200},"\u0154":{"d":"43,-238r0,101v51,3,97,-1,97,-50v0,-49,-45,-55,-97,-51xm20,0r0,-257r77,0v80,-8,89,117,20,130v61,-3,32,88,55,127r-27,0v-8,-14,-7,-38,-7,-58v0,-65,-38,-60,-95,-59r0,117r-23,0xm98,-329r25,0r-35,51r-17,0","w":180,"k":{"\u021a":6,"\u0176":6,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"Y":6,"U":-2,"T":6}},"\u0158":{"d":"43,-238r0,101v51,3,97,-1,97,-50v0,-49,-45,-55,-97,-51xm20,0r0,-257r77,0v80,-8,89,117,20,130v61,-3,32,88,55,127r-27,0v-8,-14,-7,-38,-7,-58v0,-65,-38,-60,-95,-59r0,117r-23,0xm40,-329r22,0r24,37r24,-37r21,0r-35,51r-21,0","w":180,"k":{"\u021a":6,"\u0176":6,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"Y":6,"U":-2,"T":6}},"\u0156":{"d":"43,-238r0,101v51,3,97,-1,97,-50v0,-49,-45,-55,-97,-51xm20,0r0,-257r77,0v80,-8,89,117,20,130v61,-3,32,88,55,127r-27,0v-8,-14,-7,-38,-7,-58v0,-65,-38,-60,-95,-59r0,117r-23,0xm76,51r0,-33r23,0v2,26,1,58,-23,55v-2,-14,12,-8,10,-22r-10,0","w":180,"k":{"\u021a":6,"\u0176":6,"\u0172":-2,"\u0170":-2,"\u016e":-2,"\u016c":-2,"\u016a":-2,"\u0168":-2,"\u0162":6,"\u0164":6,"\u0178":6,"\u00dd":6,"\u00d9":-2,"\u00dc":-2,"\u00db":-2,"\u00da":-2,"Y":6,"U":-2,"T":6}},"\u015a":{"d":"156,-191r-23,0v0,-32,-14,-51,-46,-51v-31,0,-49,20,-49,46v0,76,125,35,125,125v0,50,-31,75,-78,75v-52,0,-77,-28,-75,-84r23,0v-2,39,13,65,51,65v33,0,56,-16,56,-52v0,-77,-125,-33,-125,-126v0,-40,26,-68,71,-68v48,0,70,24,70,70xm104,-329r26,0r-35,51r-18,0","w":172},"\u015c":{"d":"156,-191r-23,0v0,-32,-14,-51,-46,-51v-31,0,-49,20,-49,46v0,76,125,35,125,125v0,50,-31,75,-78,75v-52,0,-77,-28,-75,-84r23,0v-2,39,13,65,51,65v33,0,56,-16,56,-52v0,-77,-125,-33,-125,-126v0,-40,26,-68,71,-68v48,0,70,24,70,70xm63,-278r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":172},"\u015e":{"d":"79,4v-47,-2,-72,-31,-69,-84r23,0v-2,39,13,65,51,65v33,0,56,-16,56,-52v0,-77,-125,-33,-125,-126v0,-40,26,-68,71,-68v48,0,70,24,70,70r-23,0v0,-32,-14,-51,-46,-51v-31,0,-49,20,-49,46v0,76,125,35,125,125v0,46,-25,74,-71,75v-3,5,-11,12,-11,16v18,-7,41,5,40,22v-2,32,-47,37,-71,24r5,-11v13,9,49,5,46,-11v1,-15,-26,-16,-35,-9v-9,-10,9,-21,13,-31","w":172},"\uf6c1":{"d":"79,4v-47,-2,-72,-31,-69,-84r23,0v-2,39,13,65,51,65v33,0,56,-16,56,-52v0,-77,-125,-33,-125,-126v0,-40,26,-68,71,-68v48,0,70,24,70,70r-23,0v0,-32,-14,-51,-46,-51v-31,0,-49,20,-49,46v0,76,125,35,125,125v0,46,-25,74,-71,75v-3,5,-11,12,-11,16v18,-7,41,5,40,22v-2,32,-47,37,-71,24r5,-11v13,9,49,5,46,-11v1,-15,-26,-16,-35,-9v-9,-10,9,-21,13,-31","w":172},"\u0218":{"d":"156,-191r-23,0v0,-32,-14,-51,-46,-51v-31,0,-49,20,-49,46v0,76,125,35,125,125v0,50,-31,75,-78,75v-52,0,-77,-28,-75,-84r23,0v-2,39,13,65,51,65v33,0,56,-16,56,-52v0,-77,-125,-33,-125,-126v0,-40,26,-68,71,-68v48,0,70,24,70,70xm73,51r0,-33r23,0v2,26,1,58,-23,55v-2,-14,12,-8,10,-22r-10,0","w":172},"\u0164":{"d":"68,0r0,-238r-66,0r0,-19r156,0r0,19r-67,0r0,238r-23,0xm34,-329r22,0r24,37r24,-37r22,0r-36,51r-21,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0162":{"d":"68,0r0,-238r-66,0r0,-19r156,0r0,19r-67,0r0,238r-23,0xm68,51r0,-33r24,0v2,26,0,58,-24,55v-2,-14,12,-8,10,-22r-10,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u0166":{"d":"22,-159r0,-16r46,0r0,-63r-66,0r0,-19r156,0r0,19r-67,0r0,63r46,0r0,16r-46,0r0,159r-23,0r0,-159r-46,0"},"\u0168":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm122,-321r16,0v1,22,-24,46,-46,29v-12,-9,-33,-16,-35,7r-16,0v0,-31,34,-46,57,-23v11,11,24,-2,24,-13","w":180},"\u016a":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm47,-295r0,-16r86,0r0,16r-86,0","w":180},"\u016c":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm62,-325v1,35,52,38,55,0r16,0v-2,27,-20,44,-44,44v-24,0,-41,-17,-43,-44r16,0","w":180},"\u016e":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm69,-300v0,13,8,21,21,21v13,0,22,-9,22,-21v0,-12,-10,-21,-22,-21v-12,0,-21,9,-21,21xm56,-300v0,-19,15,-34,34,-34v19,0,35,15,35,34v0,19,-16,34,-35,34v-20,0,-34,-15,-34,-34","w":180},"\u0170":{"d":"17,-72r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,54,-25,76,-73,76v-48,0,-73,-22,-73,-76xm134,-329r26,0r-35,51r-17,0xm80,-329r25,0r-35,51r-17,0","w":180},"\u0172":{"d":"85,4v-46,-2,-68,-25,-68,-76r0,-185r23,0r0,185v0,38,17,57,50,57v33,0,50,-19,50,-57r0,-185r23,0r0,185v0,48,-19,72,-61,76v-14,13,-25,22,-27,39v-2,23,27,18,41,10r5,10v-19,16,-68,12,-65,-16v2,-19,15,-32,29,-43","w":180},"\u0174":{"d":"58,0r-54,-257r23,0r46,226r44,-226r26,0r45,226r45,-226r23,0r-54,257r-29,0r-43,-226r-43,226r-29,0xm106,-278r-22,0r35,-51r21,0r35,51r-22,0r-23,-36","w":259,"k":{"\u0151":6,"\u014f":6,"\u014d":6,"\u0119":6,"\u0117":6,"\u0115":6,"\u0113":6,"\u011b":6,"\u0105":6,"\u0103":6,"\u0101":6,"\u0104":6,"\u0102":6,"\u0100":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"\u0176":{"d":"68,0r0,-103r-69,-154r24,0r57,128r56,-128r25,0r-70,154r0,103r-23,0xm57,-278r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","k":{"\u0173":13,"\u0171":13,"\u016f":13,"\u016d":13,"\u016b":13,"\u0169":13,"\u0151":20,"\u014f":20,"\u014d":20,"\u012f":6,"\u0119":20,"\u0117":20,"\u0115":20,"\u0113":20,"\u011b":20,"\u0105":20,"\u0103":20,"\u0101":20,"\u0104":20,"\u0102":20,"\u0100":20,"\u00f9":13,"\u00fc":13,"\u00fb":13,"\u00fa":13,"\u00f5":20,"\u00f2":20,"\u00f6":20,"\u00f4":20,"\u00f3":20,"\u00e8":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"\u00e1":20,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":13,"o":20,"i":6,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"\u0179":{"d":"8,0r0,-22r125,-216r-118,0r0,-19r142,0r0,22r-124,216r125,0r0,19r-150,0xm102,-329r25,0r-35,51r-17,0","w":166},"\u017b":{"d":"8,0r0,-22r125,-216r-118,0r0,-19r142,0r0,22r-124,216r125,0r0,19r-150,0xm73,-285r0,-36r22,0r0,36r-22,0","w":166},"\u0101":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43xm33,-233r0,-15r86,0r0,15r-86,0","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u0103":{"d":"64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37xm39,-134r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-21,6,-41,0,-38,-28v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43xm48,-262v1,34,52,39,55,0r16,0v-2,27,-19,43,-43,43v-24,0,-42,-16,-44,-43r16,0","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u0105":{"d":"114,73v-53,0,-21,-61,6,-74v-10,-2,-11,-14,-11,-27v-9,25,-28,32,-50,32v-61,0,-65,-97,-10,-107v24,-12,59,0,59,-41v0,-24,-13,-33,-33,-33v-26,0,-36,15,-36,43r-22,0v0,-39,18,-61,59,-61v83,0,54,94,54,163v0,13,5,17,17,16r0,16v-6,2,-9,2,-16,2v-14,14,-26,22,-27,41v-1,23,25,18,39,10r4,10v-9,6,-20,10,-33,10xm64,-14v40,0,48,-47,44,-94v-19,22,-74,12,-74,57v0,23,11,37,30,37","w":153,"k":{"\u021b":-1,"\u0177":-1,"\u0175":-1,"\u0163":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1,"v":-1,"t":-1,"p":-1,"g":-1,"b":-1}},"\u0107":{"d":"114,-63r22,0v-3,41,-25,67,-61,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v36,0,56,22,59,61r-22,0v-3,-30,-14,-43,-37,-43v-23,0,-43,14,-43,82v0,72,21,81,41,81v22,0,35,-16,39,-49xm95,-266r26,0r-35,51r-18,0","w":146},"\u0109":{"d":"114,-63r22,0v-3,41,-25,67,-61,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v36,0,56,22,59,61r-22,0v-3,-30,-14,-43,-37,-43v-23,0,-43,14,-43,82v0,72,21,81,41,81v22,0,35,-16,39,-49xm53,-215r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":146},"\u010d":{"d":"114,-63r22,0v-3,41,-25,67,-61,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v36,0,56,22,59,61r-22,0v-3,-30,-14,-43,-37,-43v-23,0,-43,14,-43,82v0,72,21,81,41,81v22,0,35,-16,39,-49xm31,-266r22,0r24,36r24,-36r21,0r-35,51r-21,0","w":146},"\u010b":{"d":"114,-63r22,0v-3,41,-25,67,-61,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v36,0,56,22,59,61r-22,0v-3,-30,-14,-43,-37,-43v-23,0,-43,14,-43,82v0,72,21,81,41,81v22,0,35,-16,39,-49xm66,-222r0,-37r21,0r0,37r-21,0","w":146},"\u010f":{"d":"36,-96v0,71,20,82,42,82v22,0,42,-11,42,-82v0,-71,-20,-81,-42,-81v-22,0,-42,10,-42,81xm122,0v-1,-10,2,-24,-1,-32v-6,22,-24,36,-47,36v-42,0,-61,-33,-61,-100v0,-66,19,-99,61,-99v25,-1,39,15,46,33r0,-95r21,0r0,257r-19,0xm166,-257r24,0r-18,51r-15,0","w":185},"\u0111":{"d":"122,0v-1,-10,2,-24,-1,-32v-6,22,-24,36,-47,36v-42,0,-61,-33,-61,-100v0,-66,19,-99,61,-99v25,-1,39,15,46,33r0,-51r-40,0r0,-16r40,0r0,-28r21,0r0,28r28,0r0,16r-28,0r0,213r-19,0xm36,-96v0,71,20,82,42,82v22,0,42,-11,42,-82v0,-71,-20,-81,-42,-81v-22,0,-42,10,-42,81","w":167},"\u011b":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm31,-266r22,0r24,36r24,-36r22,0r-36,51r-21,0","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u0113":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm36,-233r0,-15r85,0r0,15r-85,0","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u0115":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm50,-262v1,34,52,38,55,0r16,0v-2,27,-20,43,-44,43v-24,0,-41,-16,-43,-43r16,0","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u0117":{"d":"36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64xm117,-63r22,0v-3,41,-26,67,-62,67v-40,0,-64,-28,-64,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49xm67,-222r0,-37r22,0r0,37r-22,0","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u0119":{"d":"71,4v-46,-6,-58,-36,-58,-100v0,-67,24,-99,66,-99v44,0,63,35,61,100r-104,0v-2,53,18,81,41,81v23,0,36,-16,40,-49r22,0v-3,34,-19,60,-50,66v-14,13,-26,22,-27,40v-2,23,27,18,41,10r4,10v-19,16,-68,12,-65,-16v2,-19,15,-32,29,-43xm36,-113r81,0v-1,-48,-14,-64,-40,-64v-27,0,-41,16,-41,64","w":153,"k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u011d":{"d":"36,-98v0,61,15,80,41,80v26,0,40,-19,40,-80v0,-60,-14,-79,-40,-79v-26,0,-41,19,-41,79xm119,-162v3,-7,0,-20,1,-29r19,0r0,177v0,53,-19,80,-63,80v-37,0,-57,-20,-57,-47r22,0v0,18,17,29,36,29v37,0,43,-40,40,-82v-7,23,-25,34,-45,34v-30,0,-59,-19,-59,-96v0,-66,19,-99,61,-99v21,0,38,11,45,33xm58,-215r-22,0r35,-51r21,0r35,51r-22,0r-24,-36","k":{"\u0177":-1,"\u0159":-1,"\u0157":-1,"\u0155":-1,"\u012f":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"r":-1,"i":-1,"g":-1}},"\u011f":{"d":"36,-98v0,61,15,80,41,80v26,0,40,-19,40,-80v0,-60,-14,-79,-40,-79v-26,0,-41,19,-41,79xm119,-162v3,-7,0,-20,1,-29r19,0r0,177v0,53,-19,80,-63,80v-37,0,-57,-20,-57,-47r22,0v0,18,17,29,36,29v37,0,43,-40,40,-82v-7,23,-25,34,-45,34v-30,0,-59,-19,-59,-96v0,-66,19,-99,61,-99v21,0,38,11,45,33xm53,-262v1,34,52,38,55,0r16,0v-2,27,-20,43,-44,43v-24,0,-41,-16,-43,-43r16,0","k":{"\u0177":-1,"\u0159":-1,"\u0157":-1,"\u0155":-1,"\u012f":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"r":-1,"i":-1,"g":-1}},"\u0121":{"d":"36,-98v0,61,15,80,41,80v26,0,40,-19,40,-80v0,-60,-14,-79,-40,-79v-26,0,-41,19,-41,79xm119,-162v3,-7,0,-20,1,-29r19,0r0,177v0,53,-19,80,-63,80v-37,0,-57,-20,-57,-47r22,0v0,18,17,29,36,29v37,0,43,-40,40,-82v-7,23,-25,34,-45,34v-30,0,-59,-19,-59,-96v0,-66,19,-99,61,-99v21,0,38,11,45,33xm68,-222r0,-37r22,0r0,37r-22,0","k":{"\u0177":-1,"\u0159":-1,"\u0157":-1,"\u0155":-1,"\u012f":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"r":-1,"i":-1,"g":-1}},"\u0123":{"d":"36,-98v0,61,15,80,41,80v26,0,40,-19,40,-80v0,-60,-14,-79,-40,-79v-26,0,-41,19,-41,79xm119,-162v3,-7,0,-20,1,-29r19,0r0,177v0,53,-19,80,-63,80v-37,0,-57,-20,-57,-47r22,0v0,18,17,29,36,29v37,0,43,-40,40,-82v-7,23,-25,34,-45,34v-30,0,-59,-19,-59,-96v0,-66,19,-99,61,-99v21,0,38,11,45,33xm91,-257r0,33r-23,0v-2,-26,-1,-58,23,-55v2,14,-12,8,-10,22r10,0","k":{"\u0177":-1,"\u0159":-1,"\u0157":-1,"\u0155":-1,"\u012f":-1,"\u0123":-1,"\u0121":-1,"\u011f":-1,"\u011d":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"r":-1,"i":-1,"g":-1}},"\u0125":{"d":"21,0r0,-257r21,0r1,92v5,-20,24,-30,47,-30v29,0,49,15,49,51r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-68,2,-36,113,-43,177r-21,0xm57,-278r-22,0r34,-51r22,0r35,51r-22,0r-24,-36"},"\u0127":{"d":"0,-213r0,-16r26,0r0,-28r22,0r0,28r40,0r0,16r-40,0r0,48v5,-20,24,-30,47,-30v29,0,49,15,49,51r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-67,2,-35,113,-42,177r-22,0r0,-213r-26,0","w":164},"\u0129":{"d":"22,0r0,-191r22,0r0,191r-22,0xm66,-259r16,0v2,32,-37,46,-59,22v-13,-7,-20,3,-22,15r-16,0v1,-30,34,-46,57,-24v11,11,24,-2,24,-13","w":66},"\u012b":{"d":"22,0r0,-191r22,0r0,191r-22,0xm-10,-233r0,-15r86,0r0,15r-86,0","w":66},"\u012f":{"d":"44,-191r0,191v-20,19,-29,31,-29,43v0,23,24,19,38,10r4,10v-18,17,-59,12,-59,-16v0,-16,13,-33,32,-47r-8,0r0,-191r22,0xm22,-220r0,-37r22,0r0,37r-22,0","w":66},"\u0135":{"d":"22,15r0,-206r22,0r0,213v-1,38,-23,47,-53,43r0,-18v20,3,31,-1,31,-32xm8,-215r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":66},"\u0137":{"d":"19,0r0,-257r21,0r1,161r74,-95r27,0r-58,71r68,120r-26,0r-57,-101r-29,34r0,67r-21,0xm66,51r0,-33r23,0v2,26,1,58,-23,55v-2,-14,12,-8,10,-22r-10,0","w":146},"\u013a":{"d":"22,0r0,-257r22,0r0,257r-22,0xm50,-329r26,0r-36,51r-17,0","w":66,"k":{"\u0177":-1,"\u0175":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1}},"\u013e":{"d":"22,0r0,-257r22,0r0,257r-22,0xm69,-257r24,0r-18,51r-15,0","w":87,"k":{"\u0177":-1,"\u0175":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1}},"\u013c":{"d":"22,0r0,-257r22,0r0,257r-22,0xm22,51r0,-33r23,0v2,26,1,58,-23,55v-2,-14,12,-8,10,-22r-10,0","w":66,"k":{"\u0177":-1,"\u0175":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1}},"\u0144":{"d":"21,0r0,-191r19,0v1,8,-2,20,1,26v21,-46,98,-41,98,21r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-68,2,-36,113,-43,177r-21,0xm94,-266r25,0r-35,51r-17,0","k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u0148":{"d":"21,0r0,-191r19,0v1,8,-2,20,1,26v21,-46,98,-41,98,21r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-68,2,-36,113,-43,177r-21,0xm35,-266r22,0r24,36r24,-36r21,0r-35,51r-22,0","k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u0146":{"d":"21,0r0,-191r19,0v1,8,-2,20,1,26v21,-46,98,-41,98,21r0,144r-22,0r0,-138v0,-26,-10,-39,-32,-39v-68,2,-36,113,-43,177r-21,0xm67,51r0,-33r23,0v2,26,1,58,-23,55v-2,-13,11,-8,9,-22r-9,0","k":{"\u0177":-1,"\u00ff":-1,"\u00fd":-1,"y":-1}},"\u014d":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm34,-233r0,-15r86,0r0,15r-86,0","w":153},"\u014f":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm49,-262v1,34,52,39,55,0r16,0v-2,27,-19,43,-43,43v-24,0,-42,-16,-44,-43r16,0","w":153},"\u0151":{"d":"34,-96v0,62,19,82,43,82v24,0,43,-20,43,-82v0,-61,-19,-81,-43,-81v-24,0,-43,20,-43,81xm11,-96v0,-67,24,-99,66,-99v42,0,66,32,66,99v0,67,-24,100,-66,100v-42,0,-66,-33,-66,-100xm121,-266r26,0r-36,51r-17,0xm67,-266r25,0r-35,51r-17,0","w":153},"\u0155":{"d":"21,0r0,-191r21,0v1,9,-2,23,1,30v9,-24,29,-37,56,-33r0,21v-32,-5,-57,12,-57,53r0,120r-21,0xm52,-266r26,0r-36,51r-17,0","w":100,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u0157":{"d":"21,0r0,-191r21,0v1,9,-2,23,1,30v9,-24,29,-37,56,-33r0,21v-32,-5,-57,12,-57,53r0,120r-21,0xm20,51r0,-33r24,0v2,26,0,58,-24,55v-2,-14,12,-8,10,-22r-10,0","w":100,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u0159":{"d":"21,0r0,-191r21,0v1,9,-2,23,1,30v9,-24,29,-37,56,-33r0,21v-32,-5,-57,12,-57,53r0,120r-21,0xm13,-266r21,0r24,36r24,-36r22,0r-35,51r-22,0","w":100,"k":{"\u0177":-6,"\u00ff":-6,"\u00fd":-6,"y":-6,"v":-6,".":27,"-":13,",":27}},"\u015b":{"d":"107,-48v0,-49,-93,-39,-93,-92v0,-39,24,-55,57,-55v38,0,54,20,53,58r-22,0v1,-27,-9,-41,-31,-40v-44,0,-49,52,-9,64v29,10,67,26,67,60v0,33,-19,57,-59,57v-41,1,-61,-19,-59,-65r22,0v-1,30,10,48,36,47v23,0,38,-12,38,-34xm89,-266r25,0r-35,51r-17,0","w":140},"\u015d":{"d":"107,-48v0,-49,-93,-39,-93,-92v0,-39,24,-55,57,-55v38,0,54,20,53,58r-22,0v1,-27,-9,-41,-31,-40v-44,0,-49,52,-9,64v29,10,67,26,67,60v0,33,-19,57,-59,57v-41,1,-61,-19,-59,-65r22,0v-1,30,10,48,36,47v23,0,38,-12,38,-34xm48,-215r-22,0r34,-51r22,0r35,51r-22,0r-24,-36","w":140},"\u015f":{"d":"60,4v-36,-3,-50,-23,-49,-65r22,0v-1,30,10,47,36,47v44,0,52,-57,12,-69v-28,-9,-67,-26,-67,-57v0,-39,24,-55,57,-55v38,0,54,20,53,58r-22,0v1,-27,-9,-41,-31,-40v-44,0,-49,52,-9,64v29,10,67,26,67,60v0,32,-20,57,-56,57v-3,5,-11,12,-11,16v18,-7,41,5,40,22v-2,32,-47,37,-71,24r5,-11v13,9,49,5,46,-11v1,-15,-26,-16,-35,-9v-11,-10,9,-21,13,-31","w":140},"\uf6c2":{"d":"60,4v-36,-3,-50,-23,-49,-65r22,0v-1,30,10,47,36,47v44,0,52,-57,12,-69v-28,-9,-67,-26,-67,-57v0,-39,24,-55,57,-55v38,0,54,20,53,58r-22,0v1,-27,-9,-41,-31,-40v-44,0,-49,52,-9,64v29,10,67,26,67,60v0,32,-20,57,-56,57v-3,5,-11,12,-11,16v18,-7,41,5,40,22v-2,32,-47,37,-71,24r5,-11v13,9,49,5,46,-11v1,-15,-26,-16,-35,-9v-11,-10,9,-21,13,-31","w":140},"\u0219":{"d":"107,-48v0,-49,-93,-39,-93,-92v0,-39,24,-55,57,-55v38,0,54,20,53,58r-22,0v1,-27,-9,-41,-31,-40v-44,0,-49,52,-9,64v29,10,67,26,67,60v0,33,-19,57,-59,57v-41,1,-61,-19,-59,-65r22,0v-1,30,10,48,36,47v23,0,38,-12,38,-34xm57,51r0,-33r24,0v2,26,0,58,-24,55v-2,-14,12,-8,10,-22r-10,0","w":140},"\u0165":{"d":"86,-257r24,0r-18,51r-15,0xm29,-31r0,-142r-26,0r0,-18r26,0r0,-53r21,0r0,53r34,0r0,18r-34,0r0,137v-1,20,17,22,34,18r0,18v-26,5,-55,1,-55,-31","w":110},"\u0163":{"d":"29,-31r0,-142r-26,0r0,-18r26,0r0,-53r21,0r0,53r34,0r0,18r-34,0r0,137v-1,20,17,22,34,18r0,18v-26,5,-55,1,-55,-31xm44,51r0,-33r24,0v2,26,0,58,-24,55v-2,-14,12,-8,10,-22r-10,0","w":86},"\u0167":{"d":"0,-115r0,-16r29,0r0,-42r-26,0r0,-18r26,0r0,-53r21,0r0,53r34,0r0,18r-34,0r0,42r37,0r0,16r-37,0r0,79v-1,20,17,22,34,18r0,18v-26,5,-55,1,-55,-31r0,-84r-29,0","w":86},"\u0169":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm113,-259r16,0v2,32,-37,45,-59,22v-13,-7,-20,3,-22,15r-16,0v1,-31,34,-46,58,-24v11,11,23,-2,23,-13"},"\u016b":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm36,-233r0,-15r86,0r0,15r-86,0"},"\u016d":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm52,-262v2,34,52,39,56,0r15,0v-2,27,-19,43,-43,43v-24,0,-42,-16,-44,-43r16,0"},"\u016f":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm59,-246v0,13,8,21,21,21v13,0,21,-9,21,-21v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21xm46,-246v0,-19,15,-34,34,-34v19,0,34,15,34,34v0,19,-15,34,-34,34v-20,0,-34,-15,-34,-34"},"\u0171":{"d":"21,-47r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191r-19,0v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20xm125,-266r25,0r-35,51r-17,0xm70,-266r26,0r-36,51r-16,0"},"\u0173":{"d":"139,0r-5,0v-20,19,-29,31,-29,43v0,23,24,19,38,10r4,10v-18,17,-59,12,-59,-16v0,-16,13,-33,32,-47v-1,-8,2,-21,-1,-27v-21,47,-98,43,-98,-20r0,-144r21,0r0,134v0,31,11,43,34,43v64,0,35,-114,41,-177r22,0r0,191"},"\u0175":{"d":"46,0r-42,-191r23,0r33,169r34,-169r27,0r33,169r32,-169r24,0r-43,191r-26,0r-35,-170r-34,170r-26,0xm83,-215r-21,0r34,-51r22,0r34,51r-21,0r-24,-36","w":213,"k":{".":13,",":13}},"\u0177":{"d":"58,2r-55,-193r23,0r43,165r39,-165r23,0r-56,206v-11,43,-24,50,-65,48r0,-18v32,7,41,-17,48,-43xm45,-215r-22,0r35,-51r22,0r34,51r-21,0r-24,-36","w":133,"k":{".":20,",":20}},"\u017a":{"d":"6,0r0,-18r91,-155r-86,0r0,-18r109,0r0,18r-90,155r90,0r0,18r-114,0xm83,-266r26,0r-36,51r-17,0","w":126},"\u017c":{"d":"6,0r0,-18r91,-155r-86,0r0,-18r109,0r0,18r-90,155r90,0r0,18r-114,0xm54,-222r0,-37r22,0r0,37r-22,0","w":126},"\u013f":{"d":"20,0r0,-257r23,0r0,238r107,0r0,19r-130,0xm78,-154r0,-37r22,0r0,37r-22,0","w":153,"k":{"\u021a":27,"\u0177":13,"\u0176":33,"\u0174":27,"\u0162":27,"\u0164":27,"\u00ff":13,"\u00fd":13,"\u0178":33,"\u00dd":33,"y":13,"Y":33,"W":27,"V":27,"T":27}},"\u0140":{"d":"22,0r0,-257r22,0r0,257r-22,0xm64,-154r0,-37r22,0r0,37r-22,0","w":90,"k":{"\u0177":-1,"\u0175":-1,"\u00ff":-1,"\u00fd":-1,"y":-1,"w":-1}},"\u00a0":{"w":86},"\u0110":{"d":"43,-144r58,0r0,19r-58,0r0,106v80,4,109,-6,109,-109v0,-104,-28,-114,-109,-110r0,94xm20,0r0,-125r-20,0r0,-19r20,0r0,-113r62,0v75,0,93,44,93,128v0,84,-18,129,-93,129r-62,0","w":193},"\u021a":{"d":"68,0r0,-238r-66,0r0,-19r156,0r0,19r-67,0r0,238r-23,0xm68,51r0,-33r24,0v2,26,0,58,-24,55v-2,-14,12,-8,10,-22r-10,0","k":{"\u0177":20,"\u0175":27,"\u0173":27,"\u0171":27,"\u016f":27,"\u016d":27,"\u016b":27,"\u0169":27,"\u0159":27,"\u0157":27,"\u0155":27,"\u0151":27,"\u014f":27,"\u014d":27,"\u012f":6,"\u0119":27,"\u0117":27,"\u0115":27,"\u0113":27,"\u011b":27,"\u0105":27,"\u0103":27,"\u0101":27,"\u0104":20,"\u0102":20,"\u0100":20,"\u00ff":20,"\u00fd":20,"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"\u021b":{"d":"29,-31r0,-142r-26,0r0,-18r26,0r0,-53r21,0r0,53r34,0r0,18r-34,0r0,137v-1,20,17,22,34,18r0,18v-26,5,-55,1,-55,-31xm44,51r0,-33r24,0v2,26,0,58,-24,55v-2,-14,12,-8,10,-22r-10,0","w":86},"\u00ad":{"d":"21,-112r78,0r0,19r-78,0r0,-19","w":119}}});
;

