/*
 * 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': { "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Den valda filen %filename kan inte laddas upp. Endast filer med fĂ¶ljande Ă¤ndelser Ă¤r tillĂ¥tna: %extensions.", "jQuery UI Tabs: Mismatching fragment identifier.": "jQuery UI Tabs: Identifieraren fĂ¶r fragment stĂ¤mmer inte Ă¶verens.", "jQuery UI Tabs: Not enough arguments to add tab.": "jQuery UI Tabs: Inte tillrĂ¤ckligt med argument fĂ¶r att lĂ¤gga till flik.", "Internal server error. Please see server or PHP logs for error information.": "Internt serverfel. Var vĂ¤nlig se loggar frĂ¥n server eller PHP fĂ¶r felmeddelande.", "Remove this item": "Ta bort detta alternativ", "Automatic alias": "Automatiskt alias", "An error occurred at @path.\n\nError Description: @error": "Ett fel uppstod pĂ¥ @path. Felbeskrivning: @error" } };;

(function($){$.fn.columnize=function(options){var defaults={width:400,columns:false,buildOnce:false,overflow:false,doneFunc:function(){},target:false,ignoreImageLoading:true,float:"left",lastNeverTallest:false};var options=$.extend(defaults,options);return this.each(function(){var $inBox=options.target?$(options.target):$(this);var maxHeight=$(this).height();var $cache=$('<div></div>');var lastWidth=0;var columnizing=false;$cache.append($(this).children().clone(true));if(!options.ignoreImageLoading&&!options.target){if(!$inBox.data("imageLoaded")){$inBox.data("imageLoaded",true);if($(this).find("img").length>0){var func=function($inBox,$cache){return function(){if(!$inBox.data("firstImageLoaded")){$inBox.data("firstImageLoaded","true");$inBox.empty().append($cache.children().clone(true));$inBox.columnize(options);}}}($(this),$cache);$(this).find("img").one("load",func);$(this).find("img").one("abort",func);return;}}}
$inBox.empty();columnizeIt();if(!options.buildOnce){$(window).resize(function(){if(!options.buildOnce&&$.browser.msie){if($inBox.data("timeout")){clearTimeout($inBox.data("timeout"));}
$inBox.data("timeout",setTimeout(columnizeIt,200));}else if(!options.buildOnce){columnizeIt();}else{}});}
function columnize($putInHere,$pullOutHere,$parentColumn,height){while($parentColumn.height()<height&&$pullOutHere[0].childNodes.length){$putInHere.append($pullOutHere[0].childNodes[0]);}
if($putInHere[0].childNodes.length==0)return;var kids=$putInHere[0].childNodes;var lastKid=kids[kids.length-1];$putInHere[0].removeChild(lastKid);var $item=$(lastKid);if($item[0].nodeType==3){var oText=$item[0].nodeValue;var counter2=options.width/18;if(options.accuracy)
counter2=options.accuracy;var columnText;var latestTextNode=null;while($parentColumn.height()<height&&oText.length){if(oText.indexOf(' ',counter2)!='-1'){columnText=oText.substring(0,oText.indexOf(' ',counter2));}else{columnText=oText;}
latestTextNode=document.createTextNode(columnText);$putInHere.append(latestTextNode);if(oText.length>counter2){oText=oText.substring(oText.indexOf(' ',counter2));}else{oText="";}}
if($parentColumn.height()>=height&&latestTextNode!=null){$putInHere[0].removeChild(latestTextNode);oText=latestTextNode.nodeValue+oText;}
if(oText.length){$item[0].nodeValue=oText;}else{return false;}}
if($pullOutHere.children().length){$pullOutHere.prepend($item);}else{$pullOutHere.append($item);}
return $item[0].nodeType==3;}
function split($putInHere,$pullOutHere,$parentColumn,height){if($pullOutHere.children().length){$cloneMe=$pullOutHere.children(":first");$clone=$cloneMe.clone(true);if($clone.attr("nodeType")==1&&!$clone.hasClass("dontend")){$putInHere.append($clone);if($clone.is("img")&&$parentColumn.height()<height+20){$cloneMe.remove();}else if(!$cloneMe.hasClass("dontsplit")&&$parentColumn.height()<height+20){$cloneMe.remove();}else if($clone.is("img")||$cloneMe.hasClass("dontsplit")){$clone.remove();}else{$clone.empty();if(!columnize($clone,$cloneMe,$parentColumn,height)){if($cloneMe.children().length){split($clone,$cloneMe,$parentColumn,height);}}
if($clone.get(0).childNodes.length==0){$clone.remove();}}}}}
function singleColumnizeIt(){if($inBox.data("columnized")&&$inBox.children().length==1){return;}
$inBox.data("columnized",true);$inBox.data("columnizing",true);$inBox.empty();$inBox.append($("<div class='first last column' style='width:98%; padding: 3px; float: "+options.float+";'></div>"));$col=$inBox.children().eq($inBox.children().length-1);$destroyable=$cache.clone(true);if(options.overflow){targetHeight=options.overflow.height;columnize($col,$destroyable,$col,targetHeight);if(!$destroyable.children().find(":first-child").hasClass("dontend")){split($col,$destroyable,$col,targetHeight);}
while(checkDontEndColumn($col.children(":last").length&&$col.children(":last").get(0))){var $lastKid=$col.children(":last");$lastKid.remove();$destroyable.prepend($lastKid);}
var html="";var div=document.createElement('DIV');while($destroyable[0].childNodes.length>0){var kid=$destroyable[0].childNodes[0];for(var i=0;i<kid.attributes.length;i++){if(kid.attributes[i].nodeName.indexOf("jQuery")==0){kid.removeAttribute(kid.attributes[i].nodeName);}}
div.innerHTML="";div.appendChild($destroyable[0].childNodes[0]);html+=div.innerHTML;}
var overflow=$(options.overflow.id)[0];overflow.innerHTML=html;}else{$col.append($destroyable);}
$inBox.data("columnizing",false);if(options.overflow){options.overflow.doneFunc();}}
function checkDontEndColumn(dom){if(dom.nodeType!=1)return false;if($(dom).hasClass("dontend"))return true;if(dom.childNodes.length==0)return false;return checkDontEndColumn(dom.childNodes[dom.childNodes.length-1]);}
function columnizeIt(){if(lastWidth==$inBox.width())return;lastWidth=$inBox.width();var numCols=Math.round($inBox.width()/options.width);if(options.columns)numCols=options.columns;if(numCols<=1){return singleColumnizeIt();}
if($inBox.data("columnizing"))return;$inBox.data("columnized",true);$inBox.data("columnizing",true);$inBox.empty();$inBox.append($("<div style='width:"+(Math.round(100/numCols)-2)+"%; padding: 3px; float: "+options.float+";'></div>"));$col=$inBox.children(":last");$col.append($cache.clone());maxHeight=$col.height();$inBox.empty();var targetHeight=maxHeight/numCols;var firstTime=true;var maxLoops=3;var scrollHorizontally=false;if(options.overflow){maxLoops=1;targetHeight=options.overflow.height;}else if(options.height&&options.width){maxLoops=1;targetHeight=options.height;scrollHorizontally=true;}
for(var loopCount=0;loopCount<maxLoops;loopCount++){$inBox.empty();var $destroyable;try{$destroyable=$cache.clone(true);}catch(e){$destroyable=$cache.clone();}
$destroyable.css("visibility","hidden");for(var i=0;i<numCols;i++){var className=(i==0)?"first column":"column";var className=(i==numCols-1)?("last "+className):className;$inBox.append($("<div class='"+className+"' style='width:"+(Math.round(100/numCols)-2)+"%; float: "+options.float+";'></div>"));}
var i=0;while(i<numCols-(options.overflow?0:1)||scrollHorizontally&&$destroyable.children().length){if($inBox.children().length<=i){$inBox.append($("<div class='"+className+"' style='width:"+(Math.round(100/numCols)-2)+"%; float: "+options.float+";'></div>"));}
var $col=$inBox.children().eq(i);columnize($col,$destroyable,$col,targetHeight);if(!$destroyable.children().find(":first-child").hasClass("dontend")){split($col,$destroyable,$col,targetHeight);}else{}
while(checkDontEndColumn($col.children(":last").length&&$col.children(":last").get(0))){var $lastKid=$col.children(":last");$lastKid.remove();$destroyable.prepend($lastKid);}
i++;}
if(options.overflow&&!scrollHorizontally){var IE6=false;var IE7=(document.all)&&(navigator.appVersion.indexOf("MSIE 7.")!=-1);if(IE6||IE7){var html="";var div=document.createElement('DIV');while($destroyable[0].childNodes.length>0){var kid=$destroyable[0].childNodes[0];for(var i=0;i<kid.attributes.length;i++){if(kid.attributes[i].nodeName.indexOf("jQuery")==0){kid.removeAttribute(kid.attributes[i].nodeName);}}
div.innerHTML="";div.appendChild($destroyable[0].childNodes[0]);html+=div.innerHTML;}
var overflow=$(options.overflow.id)[0];overflow.innerHTML=html;}else{$(options.overflow.id).empty().append($destroyable.children().clone(true));}}else if(!scrollHorizontally){$col=$inBox.children().eq($inBox.children().length-1);while($destroyable.children().length)$col.append($destroyable.children(":first"));var afterH=$col.height();var diff=afterH-targetHeight;var totalH=0;var min=10000000;var max=0;var lastIsMax=false;$inBox.children().each(function($inBox){return function($item){var h=$inBox.children().eq($item).height();lastIsMax=false;totalH+=h;if(h>max){max=h;lastIsMax=true;}
if(h<min)min=h;}}($inBox));var avgH=totalH/numCols;if(options.lastNeverTallest&&lastIsMax){targetHeight=targetHeight+30;if(loopCount==maxLoops-1)maxLoops++;}else if(max-min>30){targetHeight=avgH+30;}else if(Math.abs(avgH-targetHeight)>20){targetHeight=avgH;}else{loopCount=maxLoops;}}else{$inBox.children().each(function(i){$col=$inBox.children().eq(i);$col.width(options.width+"px");if(i==0){$col.addClass("first");}else if(i==$inBox.children().length-1){$col.addClass("last");}else{$col.removeClass("first");$col.removeClass("last");}});$inBox.width($inBox.children().length*options.width+"px");}
$inBox.append($("<br style='clear:both;'>"));}
$inBox.find('.column').find(':first.removeiffirst').remove();$inBox.find('.column').find(':last.removeiflast').remove();$inBox.data("columnizing",false);if(options.overflow){options.overflow.doneFunc();}
options.doneFunc();}});};})(jQuery);;
/**
 * jQuery custom selectboxes
 *
 * Copyright (c) 2008 Krzysztof Suszynski (suszynski.org)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * @version 0.6.1
 * @category visual
 * @package jquery
 * @subpakage ui.selectbox
 * @author Krzysztof Suszynski <k.suszynski@wit.edu.pl>
**/
jQuery.fn.selectbox = function(options){
	/* Default settings */
	var settings = {
		className: 'jquery-selectbox',
		animationSpeed: "normal",
		listboxMaxSize: 10,
		replaceInvisible: true
	};
	var commonClass = 'jquery-custom-selectboxes-replaced';
	var listOpen = false;
	var showList = function(listObj) {
		var selectbox = listObj.parents('.' + settings.className + '');
    selectbox.addClass(settings.className + '-animation');
		listObj.slideDown(settings.animationSpeed, function(){
			listOpen = true;
      selectbox.removeClass(settings.className + '-animation');
		});
		selectbox.addClass('selecthover');
		jQuery(document).bind('click', onBlurList);
		return listObj;
	}
	var hideList = function(listObj) {
		var selectbox = listObj.parents('.' + settings.className + '');
    selectbox.addClass(settings.className + '-animation');
		listObj.slideUp(settings.animationSpeed, function(){
			listOpen = false;
			selectbox.removeClass('selecthover');
      selectbox.removeClass(settings.className + '-animation');
		});
		jQuery(document).unbind('click', onBlurList);
		return listObj;
	}
	var onBlurList = function(e) {
		var trgt = e.target;
		var currentListElements = jQuery('.' + settings.className + '-list:visible').parent().find('*').andSelf();
		if(jQuery.inArray(trgt, currentListElements)<0 && listOpen) {
			hideList( jQuery('.' + commonClass + '-list') );
		}
		return false;
	}

	/* Processing settings */
	settings = jQuery.extend(settings, options || {});
	/* Wrapping all passed elements */
	return this.each(function() {
		var _this = jQuery(this);
		if(_this.filter(':visible').length == 0 && !settings.replaceInvisible)
			return;
		var replacement = jQuery(
			'<div class="' + settings.className + ' ' + commonClass + '">' +
				'<div class="' + settings.className + '-moreButton" />' +
				'<div class="' + settings.className + '-list ' + commonClass + '-list">' +
          '<div class="' + settings.className + '-list-holder ' + commonClass + '-list-holder" />' +
        '</div>' +
				'<span class="' + settings.className + '-currentItem" />' +
			'</div>'
		);
		jQuery('option', _this).each(function(k,v){
			var v = jQuery(v);
			var listElement = jQuery('<span class="' + settings.className + '-item value-'+v.val()+' item-'+k+'" />');
      listElement.text(v.text());
			listElement.click(function(){
				var thisListElement = jQuery(this);
				var thisReplacment = thisListElement.parents('.'+settings.className);
				var thisIndex = thisListElement[0].className.split(' ');
				for( k1 in thisIndex ) {
					if(/^item-[0-9]+$/.test(thisIndex[k1])) {
						thisIndex = parseInt(thisIndex[k1].replace('item-',''), 10);
						break;
					}
				};
				var thisValue = thisListElement[0].className.split(' ');
				for( k1 in thisValue ) {
					if(/^value-.+$/.test(thisValue[k1])) {
						thisValue = thisValue[k1].replace('value-','');
						break;
					}
				};
				thisReplacment
					.find('.' + settings.className + '-currentItem')
					.text(thisListElement.text());
				thisReplacment
					.find('select')
					.val(thisValue)
					.triggerHandler('change');
				var thisSublist = thisReplacment.find('.' + settings.className + '-list');
				if(thisSublist.filter(":visible").length > 0) {
					hideList( thisSublist );
				}else{
					showList( thisSublist );
				}
			}).bind('mouseenter',function(){
				jQuery(this).addClass('listelementhover');
			}).bind('mouseleave',function(){
				jQuery(this).removeClass('listelementhover');
			});
			jQuery('.' + settings.className + '-list-holder', replacement).append(listElement);
			if(v.filter(':selected').length > 0) {
				jQuery('.'+settings.className + '-currentItem', replacement).text(v.text());
			}
		});
		replacement.find('.' + settings.className + '-moreButton').click(function(){
			var thisMoreButton = jQuery(this);
			var otherLists = jQuery('.' + settings.className + '-list')
				.not(thisMoreButton.siblings('.' + settings.className + '-list'));
			hideList( otherLists );
			var thisList = thisMoreButton.siblings('.' + settings.className + '-list');
			if(thisList.filter(":visible").length > 0) {
				hideList( thisList );
			}else{
				showList( thisList );
			}
		}).bind('mouseenter',function(){
			jQuery(this).addClass('morebuttonhover');
		}).bind('mouseleave',function(){
			jQuery(this).removeClass('morebuttonhover');
		});
		replacement.find('.' + settings.className + '-currentItem').click(function(){
			var thisCurrentItem = jQuery(this);
			var otherLists = jQuery('.' + settings.className + '-list')
				.not(thisCurrentItem.siblings('.' + settings.className + '-list'));
			hideList( otherLists );
			var thisList = thisCurrentItem.siblings('.' + settings.className + '-list');
			if(thisList.filter(":visible").length > 0) {
				hideList( thisList );
			}else{
				showList( thisList );
			}
		});
		_this.hide().replaceWith(replacement).appendTo(replacement);
		var thisListBox = replacement.find('.' + settings.className + '-list-holder');
		var thisListBoxSize = thisListBox.find('.' + settings.className + '-item').length;
		if(thisListBoxSize > settings.listboxMaxSize)
			thisListBoxSize = settings.listboxMaxSize;
		if(thisListBoxSize == 0)
			thisListBoxSize = 1;
		var thisListBoxWidth = Math.round(_this.width() + 5);
		if(jQuery.browser.safari)
			thisListBoxWidth = thisListBoxWidth * 0.94;
		replacement.css('width', thisListBoxWidth + 'px');
		thisListBox.css({
			//width: Math.round(thisListBoxWidth-5) + 'px',
			height: thisListBoxSize + 'em'
		});
	});
}
jQuery.fn.unselectbox = function(){
	var commonClass = 'jquery-custom-selectboxes-replaced';
	return this.each(function() {
		var selectToRemove = jQuery(this).filter('.' + commonClass);
		selectToRemove.replaceWith(selectToRemove.find('select').show());
	});
};
/**
 * Create console object to avid JavaScript errors.
 */
if (typeof console == undefined) {
  var console = {
    log: function() {}
  };
}

Drupal.behaviors.segafredoFonts = function(context) {
  Cufon.replace('.view-front-banners .views-field-body .first-letter', {fontFamily: 'AntiQuasi Thin'});
  Cufon.replace('#brandpage-images .banner-text .first-letter', {fontFamily: 'AntiQuasi Thin'});

  Cufon.replace('input.form-submit', {fontFamily: 'Futura New Bold'});
  Cufon.replace('#primary-links li a', {fontFamily: 'Futura New Bold', hover: true});

  Cufon.replace('.submenu a', {fontFamily: 'Futura New Book', hover: true});

  Cufon.replace('.view-listing ul li.views-before .first-letter,'+
    '.node-type-coffee-machine .node .first-letter',
    {fontFamily: 'PF Din Text Comp Pro X Thin'});

  if(!jQuery.browser.safari) {
    Cufon.replace('.view-front-banners .views-field-title,'+
    '.view-front-banners .views-field-field-front-subtitle-value,'+
    '.view-front-machines .view-header,'+
    '.view-front-images ul li .views-field-title,'+
    '.node .add-to-cart .product-info,'+
    '.node .add-to-cart .form-text,'+
    '.node .group-machine-features .field-machine-feature-title,'+
    '.node .field-machine-demo-request .field-label,'+
    '.view-listing ul li.views-after h3,'+
    //'.view-listing .views-field-title a,'+
    '.node .field-brandpage-block-title,'+
    '.node .field-brandpage-wblock-title,'+
    '#brandpage-images h1',
    //'h2,'+
    //'h1.page-title',
    {fontFamily: 'Futura'});
  }
}

/**
 * Set default value in input[type=text]
 */
Drupal.behaviors.segafredoForms = function(context) {
  $('select', context).selectbox();

  var elem = $('#search-theme-form input[type=text]', context);
  if (elem.length < 1) return;

  elem.val(elem.attr('alt')).addClass('alt-processed');
  elem.focus(function() {
    if ($(this).val() == $(this).attr('alt')) {
      $(this).val('');
    }
    $(this).removeClass('alt-processed');
  });
  elem.blur(function(){
    if ($(this).val() == '') {
      $(this).val($(this).attr('alt'));
      $(this).addClass('alt-processed');
    }
  });

  elem.parents('form').submit(function(){
    if (elem.val() == elem.attr('alt')) {
      elem.val('');
    }
  })
}

/**
 * Show descriptions in blocks on front page when mouse hover on block
 */
Drupal.behaviors.segafredoFrontBlocks = function(context) {
  var blocks = $('.view-front-images ul > li', context);
  if (blocks.length < 1) return;

  blocks.children('.fields').each(function() {
    var $this = $(this);
    var processed = false;
    $this.hover(
      /**
       * When mouse over block - move up title and description texts
       */
      function() {
        if (processed) return;

        processed = true;
        // Find DOM objects
        var $block= $this.children('.images-description');
        var $title= $this.children('.images-description').children('.views-field-title');
        var $desc = $this.children('.images-description').children('.views-field-body');

        // Calculate objects height
        var titleHeight = $title.height() + parseInt($title.css('padding-top'), 10) +
                          parseInt($title.css('padding-bottom'), 10)
        var descHeight = $desc.height() + parseInt($desc.css('padding-top'), 10) +
                          parseInt($desc.css('padding-bottom'), 10)

        // Calculate description height
        if (descHeight > ($this.height() - titleHeight)) {
          descHeight = $this.height() - titleHeight;
        }

        // Stop previous ahimation if it hadn't stoped yet
        if ($block.is(':animated')) $block.stop();

        // Animate texts to new position
        $block.css({
          top: $this.height() - titleHeight,
          bottom: 'auto'
        })
        $desc.show();
        $block.animate({top: ($this.height() - titleHeight - descHeight) + 'px'}, 300);
      },

      /**
       * When mouse out from block - move down title and description and
       * hide description text
       */
      function () {
        processed = false;

        // Find DOM objects
        var $block= $this.children('.images-description');
        var $title= $this.children('.images-description').children('.views-field-title');
        var $desc = $this.children('.images-description').children('.views-field-body');

        // Calculate objects height
        var titleHeight = $title.height() + parseInt($title.css('padding-top'), 10) +
                          parseInt($title.css('padding-bottom'), 10)

        // Stop previous animation if it hadn't stoped yet
        $block.stop();

        // Animate texts to new position
        var blockTop = ($this.height() - titleHeight) + 'px';
        $block.animate({top: blockTop}, 300);
      }
    );
  });
}

/**
 * Set default value in input[type=text]
 */
Drupal.behaviors.segafredoMenu = function(context) {
  var $menu = $('#primary-links > ul', context);

  if ($menu.length < 1) return;

  var menuHeight   = $menu.height(); // Height of main menu
  var menuTimeout  = null;           // Menu hide timeout object
  var animatedMenu = null;           // Sub-menu that is being animated
  var $shadow      = $menu.nextAll('.menu-shadow-box');

  /**
   * Hide sub-menu function.
   */
  var menuShowProccess = function($menuItem) {
    var $subMenu = $menuItem.children('.menu');

    /**
     * Check if some menu `timeouted` and remove this timeout
     */
    if (menuTimeout != null) {
      clearTimeout(menuTimeout.timeout);
      menuHideProccess(menuTimeout.element, true);
      menuTimeout = null;
    }

    /**
     * Check if some sub-menu is being animated and hide it
     */
    else if (animatedMenu != null) {
      animatedMenu.stop(true).css('height', 0);
      $shadow.stop(true).css('top', menuHeight + 'px');
    }

    animatedMenu = $subMenu;
    /**
     * Aminate menu block.
     * Determine submenu block height.
     */
    var subMenuHeight = $menuItem.data('subMenuHeight');
    if (typeof subMenuHeight == 'undefined') {
      subMenuHeight = $subMenu.height();
      $menuItem.data('subMenuHeight', subMenuHeight);
      $subMenu.slideDown(500, function() {animatedMenu = null});
    }
    else {
      $subMenu.css({
        display: 'block',
        height : 0
      }).animate({height: subMenuHeight + 'px'}, 500, function() {animatedMenu = null});
    }

    // Animate shadow
    $shadow.animate({top: (menuHeight + subMenuHeight) + 'px'}, 500);
  }

  /**
   * Show sub-menu function.
   */
  var menuHideProccess = function($menuItem, hideNow) {
    var $subMenu = $menuItem.children('.menu');
    var duration = 300;
    if (hideNow) {
      duration = 0;
    }
    $menuItem.data('processed', false);

    animatedMenu = $subMenu;
    $shadow.stop(true).animate({top: menuHeight + 'px'}, duration);
    $subMenu.stop(true).animate({height: '0px'}, duration, function() {animatedMenu = null});
  }

  /**
   * Show/hide sub-menu when mousehover/mouseout on menu link item.
   */
  $menu.children('li').hover(
    function() {
      var $this = $(this);
      var $subMenu = $this.children('.menu');

      if ($subMenu.length < 1 || $this.hasClass('.active-trail')) return;

      if ($this.data('processed')) {
        if (menuTimeout != null &&
            menuTimeout.element.get(0) == $this.get(0)) {
          clearTimeout(menuTimeout.timeout);
        }
        return;
      }

      $this.data('processed', true);

      menuShowProccess($this);
    },
    function() {
      var $this = $(this);
      var $subMenu = $this.children('.menu');
      if ($subMenu.length < 1 || $this.hasClass('.active-trail')) return;

      var timeoutFunc = function () {
        menuHideProccess($this);
        menuTimeout = null;
      }
      menuTimeout = {
        timeout: setTimeout(timeoutFunc, 1000),
        element: $this
      }
    }
  );
}

/**
 * Slide banners on front page
 */
Drupal.behaviors.segafredoFrontBanners = function(context) {
  var $block = $('#content .view-front-banners', context);
  if ($block.length < 1 || $block.children('.views-row').length < 1) return;

  /**
   * Emulate column-count CSS3 property
   */
  $('.views-field-body', $block).each(function() {
    $(this).columnize({ columns: 2 });
  })

  // border-radius for IE
  if (jQuery.browser.msie) {
    $block.corner('bottom').corner('6px');
  }

  /**
   * We show all rows because columnize doesn;t work with hidden blocks
   * for some reason. When columns splitted we hide rows.
   */
  $block.children('.views-row:not(.views-row-first)')
  .css({
    'position': 'relative',
    'left' : 'auto',
    'top' : 'auto',
    'display' : 'none'
  });
  Cufon.refresh('.view-front-banners .views-field-body .first-letter');
  // Don't load images while they don't displayed
  $('img', $block).css('display', 'block');

  var timeOut = null;
  var timestamp = new Date();
  timestamp = timestamp.getTime();
  /**
   * Slide banner. First find next item, if it doesn't exist, show first
   */
  bannerSlide = function() {
    var $row = $block.children('.views-row:visible');

    var $nextRow = null;

    if ($row.hasClass('views-row-last')) {
       $nextRow = $block.children('.views-row-first');
    }
    else {
      $nextRow = $row.next('.views-row');
    }

    // Freeze block
    $block.css({
      overflow: 'hidden',
      height: $row.height()
    });

    var imgClass = '.views-field-field-front-banner-fid';
    var src = $(imgClass, $nextRow).children('img').attr('src');
    src+= '?' + timestamp;

    $('<img />').attr('src', src).bind('load', function() {
      $row.fadeOut(500, function() {
        $nextRow.children().css('opacity', 0);
        $nextRow.show();
        Cufon.refresh('.view-front-banners .views-field-body .first-letter');

        $block.animate({height: $nextRow.height() + 'px'}, 500);
        $(imgClass, $nextRow).animate({opacity: 1}, 500);

        $('div:not('+ imgClass +')', $nextRow).animate({opacity: 1}, 1000, function() {
          clearTimeout(timeOut);
          timeOut = setTimeout('bannerSlide()', 3000);
        });
      });
    })
  }
  timeOut = setTimeout('bannerSlide()', 3000);
}

/**
 * "Add to cart" quantity handler: allow to choose amount by Up/Dwon buttons
 */
Drupal.behaviors.segafredoAddToCart = function(context) {
  var $input = $('#edit-qty');
  if ($input.length < 1) return;

  $input.before('<div id="qty-add" class="button" />');
  $input.after('<div id="qty-remove" class="button" />');
  $input.siblings('.button').click(function() {
    var qty = parseInt($input.val(), 10);
    if (isNaN(qty)) qty = 0;

    if ($(this).attr('id') == 'qty-add') qty += 1;
    else qty -= 1;

    if (qty < 1) qty = 1;

    $input.val(qty);
    return false;
  });

  $input.keyup(function() {
    var qty = parseInt($(this).val(), 10);
    if (isNaN(qty)) qty = 0;

    if (qty < 1) qty = 1;

    $input.val(qty);
  });
}

/**
 * "Add to cart" quantity handler: allow to choose amount by Up/Dwon buttons
 */
Drupal.behaviors.segafredoBrandPageSlider = function(context) {
  var $block = $('#brandpage-images', context);
  if ($block.length < 1 || $block.children('.item').length < 1) return;

  var timeOut = null;
  var timestamp = new Date();
  timestamp = timestamp.getTime();

  // border-radius for IE
  if (jQuery.browser.msie) {
    $block.corner('bottom').corner('6px');
  }

  /**
   * Slide banner. First find next item, if it doesn't exist, show first
   */
  slide = function() {
    var $row = $block.children('.item:visible');

    var $nextRow = null;

    if ($row.next('.item').length < 1) {
       $nextRow = $block.children('.item-first');
    }
    else {
      $nextRow = $row.next('.item');
    }

    var src = $nextRow.attr('rel') + '?' + timestamp;

    $('<img />').attr('src', src).bind('load', function() {
      $row.fadeOut(500, function() {
        $nextRow.fadeIn(1000, function() {
          clearTimeout(timeOut);
          timeOut = setTimeout('slide()', 3000);
        });
      });
    })
  }
  timeOut = setTimeout('slide()', 3000);
}

/**
 * "Add to cart" quantity handler: allow to choose amount by Up/Dwon buttons
 */
Drupal.behaviors.segafredoCheckout = function(context) {
  if ($("#personknapp", context).length < 1) return;

  var $input = $("#edit-panes-personnummer-personnummer");

  // Clear input data
  $input.keyup(function() {
    var val = $(this).val();
    var filtered = '';
    for ($i = 0; $i < val.length; $i++) {
      if (parseInt(val[$i], 10) == val[$i]) {
        filtered += val[$i];
      }
    }
    $(this).val(filtered);
  });

  $("#personknapp").unbind('click').bind('click', function() {
    var personnummer = $input.val();
     if(!personnummer.length) {
       alert('Du mĂ¥ste ange ett personnummer');
       return;
     }

      $.getJSON("?q=/klarna/check/" + personnummer,
        function(data) {
          $.each(data, function(i,item) {
            switch (item.field) {
              case "fornamn" :
                $("#edit-panes-delivery-delivery-first-name").val(item.value);
                $("#edit-panes-billing-billing-first-name").val(item.value);
                break;
                case "efternamn" :
                  $("#edit-panes-delivery-delivery-last-name").val(item.value);
                  $("#edit-panes-billing-billing-last-name").val(item.value);
                  break;
                case "foretag" :
                  $("#edit-panes-delivery-delivery-company").val(item.value);
                  $("#edit-panes-billing-billing-company").val(item.value);
                  break;
                case "adress" :
                  $("#edit-panes-delivery-delivery-street1").val(item.value);
                  $("#edit-panes-billing-billing-street1").val(item.value);
                  break;
                case "ort" :
                  $("#edit-panes-delivery-delivery-city").val(item.value);
                  $("#edit-panes-billing-billing-city").val(item.value);
                  break;
                case "postkod" :
                  $("#edit-panes-delivery-delivery-postal-code").val(item.value);
                  $("#edit-panes-billing-billing-postal-code").val(item.value);
                  break;
           }
         });

         $('#delivery-pane').show();
         $('#billing-pane').show();
         $('#payment-pane').show();
         $('#checkout-form-bottom').show();
       }
     )
   });
};
/*!
 * jQuery corner plugin: simple corner rounding
 * Examples and documentation at: http://jquery.malsup.com/corner/
 * version 2.11 (15-JUN-2010)
 * Requires jQuery v1.3.2 or later
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Authors: Dave Methvin and Mike Alsup
 */

/**
 *  corner() takes a single string argument:  $('#myDiv').corner("effect corners width")
 *
 *  effect:  name of the effect to apply, such as round, bevel, notch, bite, etc (default is round). 
 *  corners: one or more of: top, bottom, tr, tl, br, or bl.  (default is all corners)
 *  width:   width of the effect; in the case of rounded corners this is the radius. 
 *           specify this value using the px suffix such as 10px (yes, it must be pixels).
 */
;(function($) { 

var style = document.createElement('div').style,
    moz = style['MozBorderRadius'] !== undefined,
    webkit = style['WebkitBorderRadius'] !== undefined,
    radius = style['borderRadius'] !== undefined || style['BorderRadius'] !== undefined,
    mode = document.documentMode || 0,
    noBottomFold = $.browser.msie && (($.browser.version < 8 && !mode) || mode < 8),

    expr = $.browser.msie && (function() {
        var div = document.createElement('div');
        try { div.style.setExpression('width','0+0'); div.style.removeExpression('width'); }
        catch(e) { return false; }
        return true;
    })();

$.support = $.support || {};
$.support.borderRadius = moz || webkit || radius; // so you can do:  if (!$.support.borderRadius) $('#myDiv').corner();

function sz(el, p) { 
    return parseInt($.css(el,p))||0; 
};
function hex2(s) {
    var s = parseInt(s).toString(16);
    return ( s.length < 2 ) ? '0'+s : s;
};
function gpc(node) {
    while(node) {
        var v = $.css(node,'backgroundColor'), rgb;
        if (v && v != 'transparent' && v != 'rgba(0, 0, 0, 0)') {
            if (v.indexOf('rgb') >= 0) { 
                rgb = v.match(/\d+/g); 
                return '#'+ hex2(rgb[0]) + hex2(rgb[1]) + hex2(rgb[2]);
            }
            return v;
        }
        if (node.nodeName.toLowerCase() == 'html')
            break;
        node = node.parentNode; // keep walking if transparent
    }
    return '#ffffff';
};

function getWidth(fx, i, width) {
    switch(fx) {
    case 'round':  return Math.round(width*(1-Math.cos(Math.asin(i/width))));
    case 'cool':   return Math.round(width*(1+Math.cos(Math.asin(i/width))));
    case 'sharp':  return Math.round(width*(1-Math.cos(Math.acos(i/width))));
    case 'bite':   return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));
    case 'slide':  return Math.round(width*(Math.atan2(i,width/i)));
    case 'jut':    return Math.round(width*(Math.atan2(width,(width-i-1))));
    case 'curl':   return Math.round(width*(Math.atan(i)));
    case 'tear':   return Math.round(width*(Math.cos(i)));
    case 'wicked': return Math.round(width*(Math.tan(i)));
    case 'long':   return Math.round(width*(Math.sqrt(i)));
    case 'sculpt': return Math.round(width*(Math.log((width-i-1),width)));
    case 'dogfold':
    case 'dog':    return (i&1) ? (i+1) : width;
    case 'dog2':   return (i&2) ? (i+1) : width;
    case 'dog3':   return (i&3) ? (i+1) : width;
    case 'fray':   return (i%2)*width;
    case 'notch':  return width; 
    case 'bevelfold':
    case 'bevel':  return i+1;
    }
};

$.fn.corner = function(options) {
    // in 1.3+ we can fix mistakes with the ready state
    if (this.length == 0) {
        if (!$.isReady && this.selector) {
            var s = this.selector, c = this.context;
            $(function() {
                $(s,c).corner(options);
            });
        }
        return this;
    }

    return this.each(function(index){
        var $this = $(this),
            // meta values override options
            o = [$this.attr($.fn.corner.defaults.metaAttr) || '', options || ''].join(' ').toLowerCase(),
            keep = /keep/.test(o),                       // keep borders?
            cc = ((o.match(/cc:(#[0-9a-f]+)/)||[])[1]),  // corner color
            sc = ((o.match(/sc:(#[0-9a-f]+)/)||[])[1]),  // strip color
            width = parseInt((o.match(/(\d+)px/)||[])[1]) || 10, // corner width
            re = /round|bevelfold|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dogfold|dog/,
            fx = ((o.match(re)||['round'])[0]),
            fold = /dogfold|bevelfold/.test(o),
            edges = { T:0, B:1 },
            opts = {
                TL:  /top|tl|left/.test(o),       TR:  /top|tr|right/.test(o),
                BL:  /bottom|bl|left/.test(o),    BR:  /bottom|br|right/.test(o)
            },
            // vars used in func later
            strip, pad, cssHeight, j, bot, d, ds, bw, i, w, e, c, common, $horz;
        
        if ( !opts.TL && !opts.TR && !opts.BL && !opts.BR )
            opts = { TL:1, TR:1, BL:1, BR:1 };
            
        // support native rounding
        if ($.fn.corner.defaults.useNative && fx == 'round' && (radius || moz || webkit) && !cc && !sc) {
            if (opts.TL)
                $this.css(radius ? 'border-top-left-radius' : moz ? '-moz-border-radius-topleft' : '-webkit-border-top-left-radius', width + 'px');
            if (opts.TR)
                $this.css(radius ? 'border-top-right-radius' : moz ? '-moz-border-radius-topright' : '-webkit-border-top-right-radius', width + 'px');
            if (opts.BL)
                $this.css(radius ? 'border-bottom-left-radius' : moz ? '-moz-border-radius-bottomleft' : '-webkit-border-bottom-left-radius', width + 'px');
            if (opts.BR)
                $this.css(radius ? 'border-bottom-right-radius' : moz ? '-moz-border-radius-bottomright' : '-webkit-border-bottom-right-radius', width + 'px');
            return;
        }
            
        strip = document.createElement('div');
        $(strip).css({
            overflow: 'hidden',
            height: '1px',
            minHeight: '1px',
            fontSize: '1px',
            backgroundColor: sc || 'transparent',
            borderStyle: 'solid'
        });
    
        pad = {
            T: parseInt($.css(this,'paddingTop'))||0,     R: parseInt($.css(this,'paddingRight'))||0,
            B: parseInt($.css(this,'paddingBottom'))||0,  L: parseInt($.css(this,'paddingLeft'))||0
        };

        if (typeof this.style.zoom != undefined) this.style.zoom = 1; // force 'hasLayout' in IE
        if (!keep) this.style.border = 'none';
        strip.style.borderColor = cc || gpc(this.parentNode);
        cssHeight = $(this).outerHeight();

        for (j in edges) {
            bot = edges[j];
            // only add stips if needed
            if ((bot && (opts.BL || opts.BR)) || (!bot && (opts.TL || opts.TR))) {
                strip.style.borderStyle = 'none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');
                d = document.createElement('div');
                $(d).addClass('jquery-corner');
                ds = d.style;

                bot ? this.appendChild(d) : this.insertBefore(d, this.firstChild);

                if (bot && cssHeight != 'auto') {
                    if ($.css(this,'position') == 'static')
                        this.style.position = 'relative';
                    ds.position = 'absolute';
                    ds.bottom = ds.left = ds.padding = ds.margin = '0';
                    if (expr)
                        ds.setExpression('width', 'this.parentNode.offsetWidth');
                    else
                        ds.width = '100%';
                }
                else if (!bot && $.browser.msie) {
                    if ($.css(this,'position') == 'static')
                        this.style.position = 'relative';
                    ds.position = 'absolute';
                    ds.top = ds.left = ds.right = ds.padding = ds.margin = '0';
                    
                    // fix ie6 problem when blocked element has a border width
                    if (expr) {
                        bw = sz(this,'borderLeftWidth') + sz(this,'borderRightWidth');
                        ds.setExpression('width', 'this.parentNode.offsetWidth - '+bw+'+ "px"');
                    }
                    else
                        ds.width = '100%';
                }
                else {
                    ds.position = 'relative';
                    ds.margin = !bot ? '-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px' : 
                                        (pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px';                
                }

                for (i=0; i < width; i++) {
                    w = Math.max(0,getWidth(fx,i, width));
                    e = strip.cloneNode(false);
                    e.style.borderWidth = '0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';
                    bot ? d.appendChild(e) : d.insertBefore(e, d.firstChild);
                }
                
                if (fold && $.support.boxModel) {
                    if (bot && noBottomFold) continue;
                    for (c in opts) {
                        if (!opts[c]) continue;
                        if (bot && (c == 'TL' || c == 'TR')) continue;
                        if (!bot && (c == 'BL' || c == 'BR')) continue;
                        
                        common = { position: 'absolute', border: 'none', margin: 0, padding: 0, overflow: 'hidden', backgroundColor: strip.style.borderColor };
                        $horz = $('<div/>').css(common).css({ width: width + 'px', height: '1px' });
                        switch(c) {
                        case 'TL': $horz.css({ bottom: 0, left: 0 }); break;
                        case 'TR': $horz.css({ bottom: 0, right: 0 }); break;
                        case 'BL': $horz.css({ top: 0, left: 0 }); break;
                        case 'BR': $horz.css({ top: 0, right: 0 }); break;
                        }
                        d.appendChild($horz[0]);
                        
                        var $vert = $('<div/>').css(common).css({ top: 0, bottom: 0, width: '1px', height: width + 'px' });
                        switch(c) {
                        case 'TL': $vert.css({ left: width }); break;
                        case 'TR': $vert.css({ right: width }); break;
                        case 'BL': $vert.css({ left: width }); break;
                        case 'BR': $vert.css({ right: width }); break;
                        }
                        d.appendChild($vert[0]);
                    }
                }
            }
        }
    });
};

$.fn.uncorner = function() { 
    if (radius || moz || webkit)
        this.css(radius ? 'border-radius' : moz ? '-moz-border-radius' : '-webkit-border-radius', 0);
    $('div.jquery-corner', this).remove();
    return this;
};

// expose options
$.fn.corner.defaults = {
    useNative: true, // true if plugin should attempt to use native browser support for border radius rounding
    metaAttr:  'data-corner' // name of meta attribute to use for options
};
    
})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2008 by Letterhead Studio. All rights reserved.
 */
Cufon.registerFont({"w":170,"face":{"font-family":"AntiQuasi Thin","font-weight":100,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 2 3 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"5","bbox":"-76.0883 -284 356 95","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"18","stemv":"22","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90},"a":{"d":"131,0v11,1,20,-23,26,-31v-7,17,-15,36,-29,36v-9,0,-12,-10,-12,-24v0,-18,5,-44,10,-63v-14,33,-47,87,-85,87v-23,0,-30,-32,-30,-47v0,-59,42,-143,109,-143v8,0,19,5,26,13v1,-3,4,-12,7,-13v-10,54,-28,104,-32,163v0,13,3,22,10,22xm43,0v65,0,91,-99,101,-167v-8,-9,-16,-13,-27,-13v-54,0,-102,72,-102,139v0,12,6,41,28,41","w":164},"n":{"d":"35,-86r-20,86r-4,0r40,-173r-28,-4v8,-5,21,0,36,-7r-22,88v17,-39,63,-89,93,-89v15,0,23,9,23,27v0,42,-35,104,-35,140v0,10,2,18,10,18v13,0,28,-25,37,-29v-10,17,-25,34,-39,34v-9,0,-13,-9,-13,-20v0,-35,35,-104,35,-143v0,-12,-4,-22,-19,-22v-25,0,-82,43,-94,94"},"e":{"d":"58,5v-37,0,-47,-33,-47,-60v0,-45,31,-130,98,-130v19,0,28,13,28,26v0,47,-69,73,-120,84v-7,37,3,75,43,75v18,0,36,-13,49,-31r2,1v-11,19,-34,35,-53,35xm108,-180v-43,0,-82,49,-91,102v42,-10,115,-36,115,-79v0,-10,-7,-23,-24,-23","w":133},"c":{"d":"58,5v-32,0,-47,-25,-47,-60v0,-65,36,-130,89,-130v30,1,44,30,26,43v0,-19,-6,-38,-27,-38v-48,0,-84,59,-84,123v0,65,69,73,94,26r2,1v-11,19,-34,35,-53,35","w":129},"s":{"d":"7,-33v9,50,99,43,99,-17v0,-44,-76,-35,-76,-83v0,-40,30,-52,56,-52v16,0,45,11,36,29v-15,-37,-88,-32,-88,23v0,45,77,35,77,82v0,69,-107,68,-107,27v0,-6,1,-8,3,-9","w":127},"m":{"d":"130,-185v39,0,18,58,9,86v19,-40,63,-86,91,-86v15,0,23,9,23,27v0,42,-34,104,-34,140v0,10,1,18,9,18v13,0,28,-25,37,-29v-10,17,-25,34,-39,34v-9,0,-13,-9,-13,-20v0,-35,35,-104,35,-143v0,-12,-4,-22,-19,-22v-25,0,-80,43,-92,94r-21,86r-5,0r21,-86v7,-28,16,-54,16,-72v0,-12,-4,-22,-19,-22v-25,0,-82,43,-94,94r-20,86r-4,0r40,-173r-28,-4v8,-5,21,0,36,-7r-22,88v17,-39,63,-89,93,-89","w":270},"o":{"d":"57,5v-33,0,-46,-29,-46,-62v0,-63,38,-128,91,-128v33,0,45,29,45,62v0,63,-37,128,-90,128xm58,0v46,0,85,-60,85,-123v0,-31,-12,-57,-43,-57v-47,0,-85,61,-85,123v0,31,12,57,43,57","w":158},"h":{"d":"128,0v13,0,28,-25,37,-29v-10,17,-25,34,-39,34v-9,0,-13,-9,-13,-20v0,-35,35,-104,35,-143v0,-12,-4,-22,-19,-22v-25,0,-82,43,-94,94r-20,86r-4,0r60,-259r-31,-4v9,-5,19,0,38,-7r-41,174v17,-39,63,-89,93,-89v15,0,23,9,23,27v0,42,-35,107,-35,140v0,10,2,18,10,18"},"r":{"d":"105,-185v9,0,17,4,12,13v-65,-27,-87,107,-102,172r-4,0r39,-173v-9,-3,-24,0,-30,-6v12,0,21,0,37,-5v-4,21,-13,44,-14,63v12,-34,39,-64,62,-64","w":99},"l":{"d":"79,-270r-50,215v-2,16,-15,52,4,55v13,2,26,-23,36,-31v-10,17,-24,36,-38,36v-22,0,-12,-41,-7,-60r48,-203r-31,-4v7,-6,21,0,38,-8","w":76},"b":{"d":"121,-180v-65,0,-91,100,-102,167v67,47,130,-49,129,-126v0,-12,-5,-41,-27,-41xm80,-270r-43,172v14,-33,47,-87,85,-87v23,0,31,32,31,47v4,70,-63,183,-139,128r57,-249v-9,-3,-24,0,-30,-6v14,0,20,0,39,-5","w":163},"d":{"d":"43,0v65,0,91,-99,101,-167v-8,-9,-16,-13,-27,-13v-54,0,-102,72,-102,139v0,12,6,41,28,41xm174,-270v-17,83,-53,158,-53,248v0,13,3,22,10,22v11,1,20,-23,26,-31v-7,17,-15,36,-29,36v-9,0,-12,-10,-12,-24v0,-18,5,-44,10,-63v-14,33,-47,87,-85,87v-23,0,-30,-32,-30,-47v0,-59,42,-143,109,-143v8,0,19,5,26,13r20,-87r-31,-4v9,-5,20,0,39,-7","w":164},"u":{"d":"133,-84v-17,39,-62,89,-92,89v-15,0,-23,-8,-23,-26v0,-21,13,-61,32,-152v-9,-3,-23,0,-28,-6v12,0,21,0,36,-5v-29,132,-36,138,-36,163v0,12,4,21,19,21v25,0,82,-43,94,-94r20,-86r5,0v-11,52,-33,101,-33,158v0,13,3,22,10,22v11,1,20,-23,26,-31v-7,17,-15,36,-29,36v-9,0,-12,-10,-12,-24v0,-18,6,-45,11,-65"},"t":{"d":"25,-26v-4,52,71,6,66,6v-7,16,-75,48,-71,-4v4,-54,23,-100,33,-151r-39,0r1,-5r39,0r11,-48r5,0r-11,48v22,0,45,0,69,-4r-5,9r-65,0","w":109},"q":{"d":"120,-185v6,0,16,3,23,9v8,-9,11,-27,16,-35r-68,296r34,2r-1,3r-66,0r0,-3r29,-2r39,-167v-14,33,-47,87,-85,87v-23,0,-30,-32,-30,-47v0,-59,42,-143,109,-143xm43,0v65,0,91,-99,101,-167v-8,-9,-16,-13,-27,-13v-54,0,-102,72,-102,139v0,12,6,41,28,41","w":160},"i":{"d":"18,-16v0,-68,11,-56,41,-157r-29,-4v8,-5,21,0,37,-7v-31,105,-44,98,-44,166v0,10,2,18,10,18v13,0,26,-23,36,-31v-10,17,-24,36,-38,36v-9,0,-13,-10,-13,-21xm83,-237v1,10,-16,15,-16,3v-1,-11,16,-16,16,-3","w":76},"k":{"d":"78,-270r-38,166r26,0v22,-39,56,-81,87,-81v9,0,15,6,13,14v-3,-4,-9,-7,-13,-7v-14,0,-39,4,-84,76v24,84,47,101,59,101v5,2,17,-9,22,-11v-5,10,-16,17,-25,17v-12,0,-37,-22,-60,-105r-26,0r-24,100r-4,0r60,-258r-29,-4v-1,-5,6,-2,7,-2v4,0,19,-2,29,-6","w":164},"f":{"d":"-50,89v54,6,80,-193,101,-264r-33,0r1,-5r34,0r3,-15v15,-71,44,-79,56,-79v16,-1,30,8,24,27v-6,-13,-12,-22,-25,-22v-10,0,-36,5,-51,74r-3,15r51,0r-2,5r-50,0r-32,134v-16,67,-35,136,-75,136v-27,-1,-32,-28,-16,-38v-4,16,-3,31,17,32","w":75},"g":{"d":"165,-201v0,24,-20,24,-42,24v46,42,-2,155,-73,128v-39,18,-64,47,18,47v39,0,51,15,51,33v0,39,-40,63,-78,63v-61,0,-70,-49,-31,-70v-29,27,-31,66,32,66v32,0,72,-21,72,-59v0,-15,-10,-28,-47,-28v-84,0,-60,-39,-20,-53v-52,-38,0,-161,70,-131v23,0,38,-8,48,-20xm70,-49v43,0,67,-47,67,-87v0,-26,-12,-44,-39,-44v-39,0,-68,41,-68,87v0,26,13,44,40,44","w":157},"j":{"d":"68,-184r-48,199v-17,71,-42,79,-57,79v-15,1,-31,-11,-23,-27v6,13,11,22,24,22v10,0,34,-5,51,-74r46,-188v-10,-3,-25,0,-31,-6v12,0,22,0,38,-5xm82,-237v1,10,-15,14,-15,3v-1,-10,16,-16,15,-3","w":77},"v":{"d":"59,0v47,0,86,-77,86,-134v0,-19,-6,-40,-22,-46v2,-3,5,-5,7,-5v16,0,19,36,19,51v0,45,-31,139,-90,139v-40,0,-38,-56,-30,-92r20,-86r-29,-4v7,-5,21,0,36,-7v-9,46,-28,90,-28,140v0,21,10,44,31,44","w":160},"w":{"d":"59,0v70,0,74,-113,91,-180r5,0v-8,45,-24,86,-26,136v0,21,9,44,30,44v47,0,87,-77,87,-134v0,-19,-6,-40,-22,-46v2,-3,5,-5,7,-5v16,0,19,36,19,51v0,45,-32,139,-91,139v-30,-1,-36,-32,-34,-65v-15,35,-32,65,-66,65v-40,-1,-38,-56,-30,-92r20,-86r-29,-4v7,-5,21,0,36,-7v-9,46,-28,90,-28,140v0,21,10,44,31,44","w":261},"x":{"d":"96,-93v11,45,20,93,37,93v13,0,27,-22,37,-30v-10,17,-25,35,-39,35v-18,0,-25,-40,-38,-94v-34,55,-55,94,-76,94v-11,-1,-20,-9,-16,-18v3,4,8,11,16,11v19,0,26,-18,74,-91v-10,-40,-13,-87,-30,-87v-13,0,-28,25,-37,29v10,-17,25,-34,39,-34v18,0,19,36,31,87v32,-54,52,-87,76,-87v7,0,14,5,13,14v-3,-4,-10,-6,-14,-6v-12,0,-23,2,-73,84","w":182},"y":{"d":"160,-180r-48,215v-10,45,-39,60,-66,60v-33,0,-53,-12,-43,-32v5,17,14,27,44,27v25,0,51,-13,60,-54r27,-120v-17,39,-63,89,-93,89v-15,0,-23,-8,-23,-26v0,-21,13,-61,32,-152v-9,-3,-23,0,-28,-6v12,0,21,0,36,-5v-29,132,-36,138,-36,163v0,12,4,21,19,21v25,0,82,-43,94,-94r20,-86r5,0","w":163},"z":{"d":"-7,0r148,-174v-28,14,-72,0,-92,-6v-22,-6,-26,33,-11,44v-7,1,-13,-18,-14,-27v13,-53,80,15,122,-17r6,0r-144,170v15,-8,24,-12,37,-12v20,0,35,26,55,26v32,0,33,-22,30,-45v17,21,-13,60,-31,52v-22,0,-34,-28,-61,-28v-18,0,-28,15,-45,17","w":145},"A":{"d":"-12,-8r139,-264r25,264v7,3,18,2,22,8v-18,-2,-43,4,-57,-2r31,-6r-10,-107r-90,0r-55,107r29,6v-13,4,-45,4,-58,0xm138,-120r-14,-140r-73,140r87,0","w":188},"B":{"d":"29,-8r53,-248r-30,-7v48,-3,123,-18,122,48v0,46,-25,71,-53,80v23,1,39,25,39,54v0,92,-77,83,-164,81v7,-6,23,-5,33,-8xm59,-131r-27,126v71,4,124,-1,124,-76v0,-56,-45,-52,-97,-50xm60,-136v65,3,110,1,110,-78v0,-49,-37,-48,-83,-46","w":184},"C":{"d":"195,-248v-6,15,-5,40,-11,52r0,-55v-97,-55,-169,79,-169,165v0,47,18,86,68,86v26,0,54,-16,73,-32r1,2v-19,21,-51,34,-75,34v-52,0,-71,-41,-71,-90v0,-75,44,-183,129,-183v24,0,43,8,55,21","w":194},"D":{"d":"29,-8r53,-248r-30,-7v23,-6,59,-2,86,-2v54,0,75,44,75,93v0,69,-46,172,-131,172r-86,0v7,-6,23,-5,33,-8xm87,-260r-55,256r50,0v80,0,126,-100,126,-168v0,-48,-20,-88,-71,-88r-50,0","w":223},"E":{"d":"149,-172v-3,25,-12,60,-19,85r1,-44r-72,0r-27,126r93,0v9,-17,12,-40,24,-54v-6,16,-13,43,-16,59r-137,0v7,-6,23,-5,33,-8r53,-248r-30,-7v37,-7,88,0,130,-2v-6,15,-4,41,-10,53r0,-48r-86,0r-26,124r72,0","w":178},"F":{"d":"143,-165v-11,26,-11,60,-20,85r1,-44r-66,0r-25,116v11,4,28,1,36,8r-73,0v7,-6,23,-5,33,-8r53,-248r-30,-7v37,-7,87,0,128,-2v-6,15,-4,41,-10,53r0,-48r-84,0r-28,131r67,0v7,-11,9,-27,18,-36"},"G":{"d":"86,4v-53,0,-75,-36,-75,-87v0,-77,41,-186,133,-186v24,0,43,8,55,21v-5,15,-8,38,-11,52r0,-55v-101,-54,-173,77,-173,168v0,50,22,83,72,83v23,0,48,-13,67,-28r14,-66v-15,-5,-36,-4,-48,-13v13,3,33,3,55,3r-17,78v-18,19,-49,30,-72,30","w":198},"H":{"d":"87,-256r-25,118r141,0r25,-118v-9,-4,-24,-2,-30,-9r68,0v-8,6,-23,5,-33,9r-53,248v9,3,24,1,30,8r-68,0v7,-6,23,-5,33,-8r27,-125r-142,0r-26,125r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":262},"I":{"d":"87,-256r-53,248r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":115},"J":{"d":"75,-256r-54,256v-13,60,-38,79,-53,79v-9,1,-19,-5,-13,-14v31,10,49,-7,61,-65r54,-256r-30,-7v16,-4,51,-4,67,0","w":88},"K":{"d":"87,-256r-25,118r23,0r110,-118r-29,-7v15,-4,49,-4,64,0v-9,0,-29,6,-46,25r-95,102v26,81,50,134,76,134v8,2,16,-6,22,-7v-8,12,-19,13,-27,13v-27,0,-52,-62,-75,-137r-25,0r-26,125r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":208},"L":{"d":"137,0r-141,0v7,-6,23,-5,33,-8r53,-248r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9r-54,251r96,0v9,-17,12,-40,24,-54v-7,17,-12,41,-16,59"},"M":{"d":"211,-8r53,-252r-145,268r-2,0r-30,-268r-53,252r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v8,-5,27,0,39,-2r29,261r142,-261v12,2,31,-3,39,2r-33,7r-53,248v9,3,24,1,30,8r-67,0v7,-6,23,-5,33,-8","w":297},"N":{"d":"29,-8r53,-248r-30,-7v7,-5,24,0,35,-2r89,255r53,-246v-9,-4,-24,-2,-30,-9r68,0v-8,7,-23,5,-34,9r-56,264r-91,-260r-52,244r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8","w":255},"O":{"d":"86,4v-53,0,-75,-36,-75,-88v0,-95,53,-185,133,-185v53,0,77,37,77,89v0,96,-57,184,-135,184xm15,-84v0,50,22,84,72,84v76,0,129,-86,129,-180v0,-50,-21,-85,-72,-85v-88,0,-129,112,-129,181","w":231},"P":{"d":"65,-130v56,22,111,-3,111,-81v0,-50,-40,-52,-89,-49r-53,252r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v52,-4,131,-15,129,52v-2,78,-64,113,-116,81","w":187},"Q":{"d":"84,4v-51,-1,-73,-37,-73,-88v0,-95,54,-185,134,-185v53,0,76,37,76,89v0,95,-54,182,-131,184v23,65,79,80,131,40v-50,50,-114,26,-137,-40xm144,-265v-86,0,-128,105,-128,181v0,50,22,84,72,84v76,0,128,-86,128,-180v0,-50,-21,-85,-72,-85","w":232},"R":{"d":"29,-8r53,-248r-30,-7v49,-4,123,-17,123,50v0,61,-43,90,-73,92v21,75,35,118,57,118v9,0,15,-5,21,-5v-8,10,-17,12,-25,12v-26,0,-37,-55,-58,-125r-39,0r-24,113r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8xm59,-126v66,5,111,-9,111,-87v0,-49,-37,-49,-83,-47","w":191},"S":{"d":"67,4v-48,0,-70,-40,-48,-75v-5,43,4,73,49,71v17,0,68,-19,68,-79v0,-53,-83,-55,-83,-122v0,-57,77,-89,118,-52v-6,15,-5,40,-11,52r0,-54v-43,-24,-103,3,-103,54v0,62,84,66,84,122v0,65,-56,83,-74,83","w":177},"T":{"d":"53,-8r53,-252r-68,0v-8,15,-11,36,-22,48v6,-16,12,-37,15,-53r158,0v-6,19,-4,43,-10,53r0,-48r-68,0r-54,252v9,3,24,1,30,8r-67,0v7,-6,23,-5,33,-8","w":169},"U":{"d":"220,-256r-36,169v-7,33,-25,91,-96,91v-65,0,-67,-44,-57,-91r36,-169r-30,-7v16,-4,52,-4,68,0r-33,7r-36,169v-7,44,-13,86,53,87v68,0,84,-56,90,-87r36,-169r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":238},"V":{"d":"203,-256r-139,264r-25,-264v-9,-4,-24,-2,-30,-9r67,0v-8,6,-23,5,-33,9r24,251r131,-251v-9,-4,-24,-2,-30,-9v21,2,50,-4,67,2","w":199},"W":{"d":"323,-256r-129,264r-13,-265r-124,265r-2,0r-16,-264v-9,-4,-24,-2,-30,-9v21,2,50,-4,67,2r-33,7r16,246r123,-262r4,0r13,261r117,-245r-28,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":323},"X":{"d":"242,-263r-32,7r-97,124r43,124v9,3,24,1,30,8v-21,-2,-49,4,-66,-2r32,-6r-42,-120r-93,120r30,6v-17,6,-46,0,-67,2v7,-6,23,-5,33,-8r96,-124r-43,-124v-9,-4,-24,-2,-30,-9r67,0v-8,6,-23,5,-33,9r42,120r93,-120r-30,-7v16,-4,51,-4,67,0","w":220},"Y":{"d":"64,-8r22,-103r-37,-145v-9,-4,-23,-2,-29,-9v21,2,49,-4,66,2r-32,7r36,140r95,-140v-9,-4,-23,-2,-29,-9v21,2,49,-4,66,2r-32,7r-99,146r-22,102v9,3,24,1,30,8v-21,-2,-50,4,-67,-2","w":186},"Z":{"d":"53,-265r140,0r-199,260r134,0v9,-17,12,-40,24,-54v-6,15,-12,38,-16,59r-150,0r198,-260r-124,0v-8,15,-11,36,-22,48v6,-16,12,-37,15,-53","w":178},"0":{"d":"118,-269v31,0,46,33,46,79v0,94,-52,194,-104,194v-31,0,-46,-32,-46,-78v0,-95,52,-195,104,-195xm62,0v48,0,97,-97,97,-190v0,-44,-13,-74,-41,-74v-46,0,-99,93,-99,189v0,44,15,75,43,75","w":178},"1":{"d":"103,-270r-57,265v11,3,28,-1,35,5r-74,0v8,-6,24,-2,35,-5r54,-252v-10,6,-36,16,-45,10v16,-1,38,-7,52,-23","w":110},"2":{"d":"7,0v72,-88,161,-141,159,-213v-2,-74,-94,-56,-103,-8r-4,0v1,-24,22,-48,62,-48v22,0,50,19,50,56v0,74,-82,124,-155,208v39,-1,90,3,120,-5r-5,10r-124,0","w":180},"3":{"d":"55,-265v37,2,81,-4,114,2r-103,111v37,1,69,34,69,70v0,39,-37,86,-87,86v-26,0,-47,-16,-47,-28v9,13,23,24,48,24v44,0,81,-43,81,-82v0,-36,-32,-66,-73,-66r104,-112v-38,0,-84,-1,-112,7","w":164},"4":{"d":"145,-273r-35,167v16,0,30,-3,40,-6v-2,15,-25,9,-41,10r-22,102r-3,0r21,-102r-100,0xm138,-257r-124,151r92,0","w":158},"5":{"d":"47,4v-29,0,-46,-12,-46,-24v42,45,125,8,124,-72v0,-39,-27,-69,-83,-69r50,-104v54,1,78,-11,91,-14v-13,12,-51,19,-89,19r-45,94v51,1,81,33,81,74v0,60,-47,96,-83,96","w":156},"6":{"d":"20,-109v32,-139,114,-167,155,-164v-43,6,-120,30,-150,164v-10,46,-8,110,38,109v35,0,68,-49,68,-96v0,-26,-11,-56,-41,-56v-11,0,-26,6,-45,18v18,-17,33,-23,46,-23v32,0,45,34,45,61v0,48,-34,100,-74,100v-48,0,-53,-64,-42,-113","w":160},"7":{"d":"158,-260v-42,0,-86,-2,-120,7r6,-12r122,0r-158,270r-4,-2","w":140},"8":{"d":"144,-72v0,45,-35,76,-79,76v-25,0,-51,-21,-51,-54v0,-53,40,-69,77,-86v-23,-12,-38,-35,-38,-61v0,-24,20,-72,70,-72v31,0,44,26,44,49v0,45,-33,68,-67,82v22,13,44,36,44,66xm66,0v27,0,73,-21,73,-71v0,-30,-23,-51,-46,-64v-36,18,-74,37,-74,85v0,31,24,50,47,50xm122,-264v-36,0,-64,32,-64,67v0,26,17,46,40,58v37,-17,65,-41,65,-81v0,-21,-11,-44,-41,-44","w":181},"9":{"d":"141,-154v-31,139,-114,166,-155,163v40,-6,122,-28,151,-163v11,-46,7,-110,-39,-110v-35,0,-68,51,-68,97v0,50,45,73,86,38v-18,17,-33,22,-46,22v-33,0,-45,-33,-45,-60v0,-47,34,-102,74,-102v48,0,53,66,42,115","w":160},"!":{"d":"39,-71r-2,0r38,-191v1,-2,6,-5,6,0xm33,-11v0,10,-16,18,-17,5v0,-11,16,-20,17,-5","w":99},"\"":{"d":"45,-220v12,-25,8,-37,19,-44v3,0,4,3,4,4v-2,1,-15,35,-23,40xm27,-220v12,-25,8,-37,19,-44v9,5,-12,35,-19,44","w":86},"#":{"d":"125,0r-4,0r26,-92r-62,0r-26,92r-4,0r26,-92r-54,0r1,-5r54,0r20,-71r-54,0r1,-5r54,0r27,-92r4,0r-26,92r62,0r26,-92r4,0r-26,92r59,0r-1,5r-59,0r-21,71r60,0r-1,5r-60,0xm106,-168r-20,71r62,0r20,-71r-62,0","w":259},"$":{"d":"80,4v-3,6,1,18,-8,18r4,-18v-48,2,-64,-37,-44,-75v-8,47,22,78,45,71r29,-135v-64,-23,-46,-128,28,-134v3,-5,0,-15,7,-15r-3,15v21,0,37,6,49,16v-5,14,-8,38,-11,52r0,-54v-10,-6,-23,-9,-38,-9r-27,126v21,13,43,28,43,59v0,65,-55,83,-74,83xm81,0v39,-1,68,-41,68,-79v0,-28,-20,-42,-40,-54xm133,-264v-36,3,-62,37,-62,77v0,24,17,35,36,47","w":180},"%":{"d":"181,-115v17,0,25,16,25,37v0,38,-22,82,-50,82v-18,0,-26,-16,-26,-37v0,-29,18,-82,51,-82xm135,-34v0,19,7,34,22,34v24,0,44,-41,44,-77v0,-19,-7,-34,-21,-34v-31,0,-45,55,-45,77xm106,-269v18,0,26,17,26,38v0,39,-23,82,-51,82v-18,0,-26,-17,-26,-38v0,-29,17,-82,51,-82xm60,-188v0,19,8,34,22,34v24,0,45,-40,45,-76v0,-19,-8,-35,-22,-35v-30,0,-45,55,-45,77xm23,0r-5,0r222,-265r5,0","w":262},"&":{"d":"219,-31v3,37,-86,48,-105,11v-32,39,-101,32,-101,-33v0,-52,34,-78,67,-99v-4,-56,27,-117,67,-117v15,0,25,11,25,27v0,44,-51,69,-88,92v0,47,9,93,32,123v26,-28,45,-74,56,-111v-10,-3,-25,-1,-32,-7r65,0v-6,6,-20,4,-29,7v-11,37,-31,85,-58,114v12,14,28,23,47,23v35,0,50,-18,54,-30xm80,-148v-31,19,-63,47,-63,95v0,59,66,66,95,30v-23,-30,-32,-78,-32,-125xm167,-240v0,-14,-8,-25,-21,-25v-45,0,-61,59,-62,110v37,-22,83,-48,83,-85","w":223},"'":{"d":"27,-220v12,-25,8,-37,19,-44v9,5,-12,35,-19,44","w":67},"(":{"d":"133,-267v-91,87,-138,217,-71,336r-3,3v-70,-117,-18,-262,72,-342","w":116},")":{"d":"85,-159v0,-36,-8,-76,-30,-108r3,-3v70,118,17,262,-73,342r-1,-3v67,-63,101,-141,101,-228","w":116},"*":{"d":"87,-197v-9,36,-7,70,-17,67r16,-67v-58,34,-53,39,-59,33v16,-15,40,-22,59,-34r-45,-34v0,-3,4,-4,6,-2r39,35v6,-23,6,-51,16,-70v3,9,-8,36,-15,70r57,-36v5,10,2,3,-56,37v14,11,31,20,44,33v0,2,-2,3,-4,3","w":173},"+":{"d":"80,-40r-4,0r16,-76r-65,0r1,-5r65,0r16,-77r4,0r-16,77r65,0r-1,5r-65,0","w":189},",":{"d":"37,1v0,25,-25,57,-42,58v17,-11,39,-34,37,-61v-5,7,-17,1,-17,-7v0,-6,6,-10,11,-10v9,0,11,10,11,20","w":73},"-":{"d":"109,-93r-91,0r1,-5r92,0","w":128},".":{"d":"33,-11v0,10,-16,18,-17,5v0,-11,16,-20,17,-5","w":70},"\/":{"d":"3,5r-4,0r144,-275r5,0","w":106},"@":{"d":"170,-29v-22,-7,-3,-48,-1,-68v-11,27,-37,69,-68,69v-18,0,-24,-26,-24,-38v0,-47,34,-113,87,-113v6,0,15,5,20,11v1,-3,5,-10,7,-11v-8,46,-24,86,-26,137v0,4,3,7,6,7v29,0,70,-39,70,-110v0,-52,-40,-74,-69,-74v-82,0,-142,66,-142,153v1,117,132,115,187,41v-19,35,-72,57,-108,57v-49,0,-84,-40,-84,-98v0,-87,61,-158,148,-158v31,0,73,25,73,79v0,79,-48,116,-76,116xm103,-33v51,0,71,-79,80,-132v-50,-34,-102,41,-101,99v0,10,3,33,21,33","w":271},"?":{"d":"84,-269v18,0,39,12,39,35v0,53,-82,76,-82,124v0,13,10,20,12,24v-9,0,-17,-9,-17,-24v0,-53,82,-72,82,-124v0,-21,-19,-30,-34,-30v-27,0,-37,20,-45,38v-4,-19,10,-43,45,-43xm33,-11v0,10,-16,18,-17,5v0,-11,16,-20,17,-5","w":124},";":{"d":"65,-162v1,12,-15,20,-16,5v-1,-12,15,-20,16,-5xm37,1v0,25,-25,57,-42,58v17,-11,39,-34,37,-61v-5,7,-17,1,-17,-7v0,-6,6,-10,11,-10v9,0,11,10,11,20","w":77},":":{"d":"65,-162v0,11,-16,20,-17,5v0,-11,16,-20,17,-5xm33,-11v0,10,-16,18,-17,5v0,-11,16,-20,17,-5","w":77},"|":{"d":"0,90r-4,0r76,-360r5,0","w":40},"=":{"d":"161,-92r-135,0r1,-5r135,0xm171,-140r-135,0r1,-5r135,0","w":198},"<":{"d":"144,-48r-120,-68r1,-5r149,-68r-1,6r-142,65r114,65","w":198},"\\":{"d":"96,5r-4,0r-64,-275r5,0","w":124},">":{"d":"173,-116r-149,68r1,-5r142,-65r-114,-65r1,-6r120,68","w":198},"[":{"d":"45,71r-45,0r72,-341r45,0r0,5r-40,0r-71,332r40,0","w":95},"{":{"d":"48,-99v39,31,1,89,0,135v0,18,11,33,25,33r-1,3v-72,-16,27,-134,-30,-171v71,-28,23,-155,103,-171r-1,3v-70,14,-30,142,-96,168","w":120},"]":{"d":"45,71r-45,0r1,-5r40,0r71,-331r-41,0r1,-5r45,0","w":131},"}":{"d":"96,-99v-39,-31,-1,-89,0,-135v0,-18,-11,-33,-25,-33r1,-3v72,16,-27,134,30,171v-71,28,-23,155,-103,171r1,-3v70,-14,30,-142,96,-168","w":120},"~":{"d":"126,-102v14,0,27,-6,39,-22r2,2v-14,17,-26,25,-41,25v-24,0,-32,-26,-53,-26v-14,0,-27,7,-39,23r-3,-3v14,-17,27,-25,42,-25v24,0,31,26,53,26","w":198},"_":{"d":"138,22r-143,0r1,-4r143,0","w":168},"^":{"d":"145,-156r-34,-64r-61,64r-6,0r66,-69r5,0r35,69r-5,0","w":159},"`":{"d":"77,-255v4,14,15,30,16,43r-27,-43r11,0","w":72},"p":{"d":"56,-181r-16,65v13,-40,50,-69,70,-69v27,0,38,22,38,54v0,76,-50,136,-100,136v-13,0,-22,-5,-31,-13r-22,93r28,2r0,3r-48,0v1,-6,11,-3,16,-5r59,-255r-29,-3v7,-6,20,0,35,-8xm18,-13v60,42,123,-31,125,-117v0,-31,-10,-50,-34,-50v-18,0,-59,28,-69,70","w":158},"\u00a0":{"w":90}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2008 by Letterhead Studio. All rights reserved.
 */
Cufon.registerFont({"w":170,"face":{"font-family":"AntiQuasi Thin","font-weight":100,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 2 3 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"5","bbox":"-76.0883 -284 356 95","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"18","stemv":"22","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90},"a":{"d":"131,0v11,1,20,-23,26,-31v-7,17,-15,36,-29,36v-9,0,-12,-10,-12,-24v0,-18,5,-44,10,-63v-14,33,-47,87,-85,87v-23,0,-30,-32,-30,-47v0,-59,42,-143,109,-143v8,0,19,5,26,13v1,-3,4,-12,7,-13v-10,54,-28,104,-32,163v0,13,3,22,10,22xm43,0v65,0,91,-99,101,-167v-8,-9,-16,-13,-27,-13v-54,0,-102,72,-102,139v0,12,6,41,28,41","w":164},"n":{"d":"35,-86r-20,86r-4,0r40,-173r-28,-4v8,-5,21,0,36,-7r-22,88v17,-39,63,-89,93,-89v15,0,23,9,23,27v0,42,-35,104,-35,140v0,10,2,18,10,18v13,0,28,-25,37,-29v-10,17,-25,34,-39,34v-9,0,-13,-9,-13,-20v0,-35,35,-104,35,-143v0,-12,-4,-22,-19,-22v-25,0,-82,43,-94,94"},"e":{"d":"58,5v-37,0,-47,-33,-47,-60v0,-45,31,-130,98,-130v19,0,28,13,28,26v0,47,-69,73,-120,84v-7,37,3,75,43,75v18,0,36,-13,49,-31r2,1v-11,19,-34,35,-53,35xm108,-180v-43,0,-82,49,-91,102v42,-10,115,-36,115,-79v0,-10,-7,-23,-24,-23","w":133},"c":{"d":"58,5v-32,0,-47,-25,-47,-60v0,-65,36,-130,89,-130v30,1,44,30,26,43v0,-19,-6,-38,-27,-38v-48,0,-84,59,-84,123v0,65,69,73,94,26r2,1v-11,19,-34,35,-53,35","w":129},"s":{"d":"7,-33v9,50,99,43,99,-17v0,-44,-76,-35,-76,-83v0,-40,30,-52,56,-52v16,0,45,11,36,29v-15,-37,-88,-32,-88,23v0,45,77,35,77,82v0,69,-107,68,-107,27v0,-6,1,-8,3,-9","w":127},"m":{"d":"130,-185v39,0,18,58,9,86v19,-40,63,-86,91,-86v15,0,23,9,23,27v0,42,-34,104,-34,140v0,10,1,18,9,18v13,0,28,-25,37,-29v-10,17,-25,34,-39,34v-9,0,-13,-9,-13,-20v0,-35,35,-104,35,-143v0,-12,-4,-22,-19,-22v-25,0,-80,43,-92,94r-21,86r-5,0r21,-86v7,-28,16,-54,16,-72v0,-12,-4,-22,-19,-22v-25,0,-82,43,-94,94r-20,86r-4,0r40,-173r-28,-4v8,-5,21,0,36,-7r-22,88v17,-39,63,-89,93,-89","w":270},"o":{"d":"57,5v-33,0,-46,-29,-46,-62v0,-63,38,-128,91,-128v33,0,45,29,45,62v0,63,-37,128,-90,128xm58,0v46,0,85,-60,85,-123v0,-31,-12,-57,-43,-57v-47,0,-85,61,-85,123v0,31,12,57,43,57","w":158},"h":{"d":"128,0v13,0,28,-25,37,-29v-10,17,-25,34,-39,34v-9,0,-13,-9,-13,-20v0,-35,35,-104,35,-143v0,-12,-4,-22,-19,-22v-25,0,-82,43,-94,94r-20,86r-4,0r60,-259r-31,-4v9,-5,19,0,38,-7r-41,174v17,-39,63,-89,93,-89v15,0,23,9,23,27v0,42,-35,107,-35,140v0,10,2,18,10,18"},"r":{"d":"105,-185v9,0,17,4,12,13v-65,-27,-87,107,-102,172r-4,0r39,-173v-9,-3,-24,0,-30,-6v12,0,21,0,37,-5v-4,21,-13,44,-14,63v12,-34,39,-64,62,-64","w":99},"l":{"d":"79,-270r-50,215v-2,16,-15,52,4,55v13,2,26,-23,36,-31v-10,17,-24,36,-38,36v-22,0,-12,-41,-7,-60r48,-203r-31,-4v7,-6,21,0,38,-8","w":76},"b":{"d":"121,-180v-65,0,-91,100,-102,167v67,47,130,-49,129,-126v0,-12,-5,-41,-27,-41xm80,-270r-43,172v14,-33,47,-87,85,-87v23,0,31,32,31,47v4,70,-63,183,-139,128r57,-249v-9,-3,-24,0,-30,-6v14,0,20,0,39,-5","w":163},"d":{"d":"43,0v65,0,91,-99,101,-167v-8,-9,-16,-13,-27,-13v-54,0,-102,72,-102,139v0,12,6,41,28,41xm174,-270v-17,83,-53,158,-53,248v0,13,3,22,10,22v11,1,20,-23,26,-31v-7,17,-15,36,-29,36v-9,0,-12,-10,-12,-24v0,-18,5,-44,10,-63v-14,33,-47,87,-85,87v-23,0,-30,-32,-30,-47v0,-59,42,-143,109,-143v8,0,19,5,26,13r20,-87r-31,-4v9,-5,20,0,39,-7","w":164},"u":{"d":"133,-84v-17,39,-62,89,-92,89v-15,0,-23,-8,-23,-26v0,-21,13,-61,32,-152v-9,-3,-23,0,-28,-6v12,0,21,0,36,-5v-29,132,-36,138,-36,163v0,12,4,21,19,21v25,0,82,-43,94,-94r20,-86r5,0v-11,52,-33,101,-33,158v0,13,3,22,10,22v11,1,20,-23,26,-31v-7,17,-15,36,-29,36v-9,0,-12,-10,-12,-24v0,-18,6,-45,11,-65"},"t":{"d":"25,-26v-4,52,71,6,66,6v-7,16,-75,48,-71,-4v4,-54,23,-100,33,-151r-39,0r1,-5r39,0r11,-48r5,0r-11,48v22,0,45,0,69,-4r-5,9r-65,0","w":109},"q":{"d":"120,-185v6,0,16,3,23,9v8,-9,11,-27,16,-35r-68,296r34,2r-1,3r-66,0r0,-3r29,-2r39,-167v-14,33,-47,87,-85,87v-23,0,-30,-32,-30,-47v0,-59,42,-143,109,-143xm43,0v65,0,91,-99,101,-167v-8,-9,-16,-13,-27,-13v-54,0,-102,72,-102,139v0,12,6,41,28,41","w":160},"i":{"d":"18,-16v0,-68,11,-56,41,-157r-29,-4v8,-5,21,0,37,-7v-31,105,-44,98,-44,166v0,10,2,18,10,18v13,0,26,-23,36,-31v-10,17,-24,36,-38,36v-9,0,-13,-10,-13,-21xm83,-237v1,10,-16,15,-16,3v-1,-11,16,-16,16,-3","w":76},"k":{"d":"78,-270r-38,166r26,0v22,-39,56,-81,87,-81v9,0,15,6,13,14v-3,-4,-9,-7,-13,-7v-14,0,-39,4,-84,76v24,84,47,101,59,101v5,2,17,-9,22,-11v-5,10,-16,17,-25,17v-12,0,-37,-22,-60,-105r-26,0r-24,100r-4,0r60,-258r-29,-4v-1,-5,6,-2,7,-2v4,0,19,-2,29,-6","w":164},"f":{"d":"-50,89v54,6,80,-193,101,-264r-33,0r1,-5r34,0r3,-15v15,-71,44,-79,56,-79v16,-1,30,8,24,27v-6,-13,-12,-22,-25,-22v-10,0,-36,5,-51,74r-3,15r51,0r-2,5r-50,0r-32,134v-16,67,-35,136,-75,136v-27,-1,-32,-28,-16,-38v-4,16,-3,31,17,32","w":75},"g":{"d":"165,-201v0,24,-20,24,-42,24v46,42,-2,155,-73,128v-39,18,-64,47,18,47v39,0,51,15,51,33v0,39,-40,63,-78,63v-61,0,-70,-49,-31,-70v-29,27,-31,66,32,66v32,0,72,-21,72,-59v0,-15,-10,-28,-47,-28v-84,0,-60,-39,-20,-53v-52,-38,0,-161,70,-131v23,0,38,-8,48,-20xm70,-49v43,0,67,-47,67,-87v0,-26,-12,-44,-39,-44v-39,0,-68,41,-68,87v0,26,13,44,40,44","w":157},"j":{"d":"68,-184r-48,199v-17,71,-42,79,-57,79v-15,1,-31,-11,-23,-27v6,13,11,22,24,22v10,0,34,-5,51,-74r46,-188v-10,-3,-25,0,-31,-6v12,0,22,0,38,-5xm82,-237v1,10,-15,14,-15,3v-1,-10,16,-16,15,-3","w":77},"v":{"d":"59,0v47,0,86,-77,86,-134v0,-19,-6,-40,-22,-46v2,-3,5,-5,7,-5v16,0,19,36,19,51v0,45,-31,139,-90,139v-40,0,-38,-56,-30,-92r20,-86r-29,-4v7,-5,21,0,36,-7v-9,46,-28,90,-28,140v0,21,10,44,31,44","w":160},"w":{"d":"59,0v70,0,74,-113,91,-180r5,0v-8,45,-24,86,-26,136v0,21,9,44,30,44v47,0,87,-77,87,-134v0,-19,-6,-40,-22,-46v2,-3,5,-5,7,-5v16,0,19,36,19,51v0,45,-32,139,-91,139v-30,-1,-36,-32,-34,-65v-15,35,-32,65,-66,65v-40,-1,-38,-56,-30,-92r20,-86r-29,-4v7,-5,21,0,36,-7v-9,46,-28,90,-28,140v0,21,10,44,31,44","w":261},"x":{"d":"96,-93v11,45,20,93,37,93v13,0,27,-22,37,-30v-10,17,-25,35,-39,35v-18,0,-25,-40,-38,-94v-34,55,-55,94,-76,94v-11,-1,-20,-9,-16,-18v3,4,8,11,16,11v19,0,26,-18,74,-91v-10,-40,-13,-87,-30,-87v-13,0,-28,25,-37,29v10,-17,25,-34,39,-34v18,0,19,36,31,87v32,-54,52,-87,76,-87v7,0,14,5,13,14v-3,-4,-10,-6,-14,-6v-12,0,-23,2,-73,84","w":182},"y":{"d":"160,-180r-48,215v-10,45,-39,60,-66,60v-33,0,-53,-12,-43,-32v5,17,14,27,44,27v25,0,51,-13,60,-54r27,-120v-17,39,-63,89,-93,89v-15,0,-23,-8,-23,-26v0,-21,13,-61,32,-152v-9,-3,-23,0,-28,-6v12,0,21,0,36,-5v-29,132,-36,138,-36,163v0,12,4,21,19,21v25,0,82,-43,94,-94r20,-86r5,0","w":163},"z":{"d":"-7,0r148,-174v-28,14,-72,0,-92,-6v-22,-6,-26,33,-11,44v-7,1,-13,-18,-14,-27v13,-53,80,15,122,-17r6,0r-144,170v15,-8,24,-12,37,-12v20,0,35,26,55,26v32,0,33,-22,30,-45v17,21,-13,60,-31,52v-22,0,-34,-28,-61,-28v-18,0,-28,15,-45,17","w":145},"A":{"d":"-12,-8r139,-264r25,264v7,3,18,2,22,8v-18,-2,-43,4,-57,-2r31,-6r-10,-107r-90,0r-55,107r29,6v-13,4,-45,4,-58,0xm138,-120r-14,-140r-73,140r87,0","w":188},"B":{"d":"29,-8r53,-248r-30,-7v48,-3,123,-18,122,48v0,46,-25,71,-53,80v23,1,39,25,39,54v0,92,-77,83,-164,81v7,-6,23,-5,33,-8xm59,-131r-27,126v71,4,124,-1,124,-76v0,-56,-45,-52,-97,-50xm60,-136v65,3,110,1,110,-78v0,-49,-37,-48,-83,-46","w":184},"C":{"d":"195,-248v-6,15,-5,40,-11,52r0,-55v-97,-55,-169,79,-169,165v0,47,18,86,68,86v26,0,54,-16,73,-32r1,2v-19,21,-51,34,-75,34v-52,0,-71,-41,-71,-90v0,-75,44,-183,129,-183v24,0,43,8,55,21","w":194},"D":{"d":"29,-8r53,-248r-30,-7v23,-6,59,-2,86,-2v54,0,75,44,75,93v0,69,-46,172,-131,172r-86,0v7,-6,23,-5,33,-8xm87,-260r-55,256r50,0v80,0,126,-100,126,-168v0,-48,-20,-88,-71,-88r-50,0","w":223},"E":{"d":"149,-172v-3,25,-12,60,-19,85r1,-44r-72,0r-27,126r93,0v9,-17,12,-40,24,-54v-6,16,-13,43,-16,59r-137,0v7,-6,23,-5,33,-8r53,-248r-30,-7v37,-7,88,0,130,-2v-6,15,-4,41,-10,53r0,-48r-86,0r-26,124r72,0","w":178},"F":{"d":"143,-165v-11,26,-11,60,-20,85r1,-44r-66,0r-25,116v11,4,28,1,36,8r-73,0v7,-6,23,-5,33,-8r53,-248r-30,-7v37,-7,87,0,128,-2v-6,15,-4,41,-10,53r0,-48r-84,0r-28,131r67,0v7,-11,9,-27,18,-36"},"G":{"d":"86,4v-53,0,-75,-36,-75,-87v0,-77,41,-186,133,-186v24,0,43,8,55,21v-5,15,-8,38,-11,52r0,-55v-101,-54,-173,77,-173,168v0,50,22,83,72,83v23,0,48,-13,67,-28r14,-66v-15,-5,-36,-4,-48,-13v13,3,33,3,55,3r-17,78v-18,19,-49,30,-72,30","w":198},"H":{"d":"87,-256r-25,118r141,0r25,-118v-9,-4,-24,-2,-30,-9r68,0v-8,6,-23,5,-33,9r-53,248v9,3,24,1,30,8r-68,0v7,-6,23,-5,33,-8r27,-125r-142,0r-26,125r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":262},"I":{"d":"87,-256r-53,248r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":115},"J":{"d":"75,-256r-54,256v-13,60,-38,79,-53,79v-9,1,-19,-5,-13,-14v31,10,49,-7,61,-65r54,-256r-30,-7v16,-4,51,-4,67,0","w":88},"K":{"d":"87,-256r-25,118r23,0r110,-118r-29,-7v15,-4,49,-4,64,0v-9,0,-29,6,-46,25r-95,102v26,81,50,134,76,134v8,2,16,-6,22,-7v-8,12,-19,13,-27,13v-27,0,-52,-62,-75,-137r-25,0r-26,125r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":208},"L":{"d":"137,0r-141,0v7,-6,23,-5,33,-8r53,-248r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9r-54,251r96,0v9,-17,12,-40,24,-54v-7,17,-12,41,-16,59"},"M":{"d":"211,-8r53,-252r-145,268r-2,0r-30,-268r-53,252r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v8,-5,27,0,39,-2r29,261r142,-261v12,2,31,-3,39,2r-33,7r-53,248v9,3,24,1,30,8r-67,0v7,-6,23,-5,33,-8","w":297},"N":{"d":"29,-8r53,-248r-30,-7v7,-5,24,0,35,-2r89,255r53,-246v-9,-4,-24,-2,-30,-9r68,0v-8,7,-23,5,-34,9r-56,264r-91,-260r-52,244r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8","w":255},"O":{"d":"86,4v-53,0,-75,-36,-75,-88v0,-95,53,-185,133,-185v53,0,77,37,77,89v0,96,-57,184,-135,184xm15,-84v0,50,22,84,72,84v76,0,129,-86,129,-180v0,-50,-21,-85,-72,-85v-88,0,-129,112,-129,181","w":231},"P":{"d":"65,-130v56,22,111,-3,111,-81v0,-50,-40,-52,-89,-49r-53,252r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8r53,-248r-30,-7v52,-4,131,-15,129,52v-2,78,-64,113,-116,81","w":187},"Q":{"d":"84,4v-51,-1,-73,-37,-73,-88v0,-95,54,-185,134,-185v53,0,76,37,76,89v0,95,-54,182,-131,184v23,65,79,80,131,40v-50,50,-114,26,-137,-40xm144,-265v-86,0,-128,105,-128,181v0,50,22,84,72,84v76,0,128,-86,128,-180v0,-50,-21,-85,-72,-85","w":232},"R":{"d":"29,-8r53,-248r-30,-7v49,-4,123,-17,123,50v0,61,-43,90,-73,92v21,75,35,118,57,118v9,0,15,-5,21,-5v-8,10,-17,12,-25,12v-26,0,-37,-55,-58,-125r-39,0r-24,113r30,6v-17,6,-47,0,-68,2v7,-6,23,-5,33,-8xm59,-126v66,5,111,-9,111,-87v0,-49,-37,-49,-83,-47","w":191},"S":{"d":"67,4v-48,0,-70,-40,-48,-75v-5,43,4,73,49,71v17,0,68,-19,68,-79v0,-53,-83,-55,-83,-122v0,-57,77,-89,118,-52v-6,15,-5,40,-11,52r0,-54v-43,-24,-103,3,-103,54v0,62,84,66,84,122v0,65,-56,83,-74,83","w":177},"T":{"d":"53,-8r53,-252r-68,0v-8,15,-11,36,-22,48v6,-16,12,-37,15,-53r158,0v-6,19,-4,43,-10,53r0,-48r-68,0r-54,252v9,3,24,1,30,8r-67,0v7,-6,23,-5,33,-8","w":169},"U":{"d":"220,-256r-36,169v-7,33,-25,91,-96,91v-65,0,-67,-44,-57,-91r36,-169r-30,-7v16,-4,52,-4,68,0r-33,7r-36,169v-7,44,-13,86,53,87v68,0,84,-56,90,-87r36,-169r-30,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":238},"V":{"d":"203,-256r-139,264r-25,-264v-9,-4,-24,-2,-30,-9r67,0v-8,6,-23,5,-33,9r24,251r131,-251v-9,-4,-24,-2,-30,-9v21,2,50,-4,67,2","w":199},"W":{"d":"323,-256r-129,264r-13,-265r-124,265r-2,0r-16,-264v-9,-4,-24,-2,-30,-9v21,2,50,-4,67,2r-33,7r16,246r123,-262r4,0r13,261r117,-245r-28,-7v17,-6,47,0,68,-2v-8,6,-23,5,-33,9","w":323},"X":{"d":"242,-263r-32,7r-97,124r43,124v9,3,24,1,30,8v-21,-2,-49,4,-66,-2r32,-6r-42,-120r-93,120r30,6v-17,6,-46,0,-67,2v7,-6,23,-5,33,-8r96,-124r-43,-124v-9,-4,-24,-2,-30,-9r67,0v-8,6,-23,5,-33,9r42,120r93,-120r-30,-7v16,-4,51,-4,67,0","w":220},"Y":{"d":"64,-8r22,-103r-37,-145v-9,-4,-23,-2,-29,-9v21,2,49,-4,66,2r-32,7r36,140r95,-140v-9,-4,-23,-2,-29,-9v21,2,49,-4,66,2r-32,7r-99,146r-22,102v9,3,24,1,30,8v-21,-2,-50,4,-67,-2","w":186},"Z":{"d":"53,-265r140,0r-199,260r134,0v9,-17,12,-40,24,-54v-6,15,-12,38,-16,59r-150,0r198,-260r-124,0v-8,15,-11,36,-22,48v6,-16,12,-37,15,-53","w":178},"0":{"d":"118,-269v31,0,46,33,46,79v0,94,-52,194,-104,194v-31,0,-46,-32,-46,-78v0,-95,52,-195,104,-195xm62,0v48,0,97,-97,97,-190v0,-44,-13,-74,-41,-74v-46,0,-99,93,-99,189v0,44,15,75,43,75","w":178},"1":{"d":"103,-270r-57,265v11,3,28,-1,35,5r-74,0v8,-6,24,-2,35,-5r54,-252v-10,6,-36,16,-45,10v16,-1,38,-7,52,-23","w":110},"2":{"d":"7,0v72,-88,161,-141,159,-213v-2,-74,-94,-56,-103,-8r-4,0v1,-24,22,-48,62,-48v22,0,50,19,50,56v0,74,-82,124,-155,208v39,-1,90,3,120,-5r-5,10r-124,0","w":180},"3":{"d":"55,-265v37,2,81,-4,114,2r-103,111v37,1,69,34,69,70v0,39,-37,86,-87,86v-26,0,-47,-16,-47,-28v9,13,23,24,48,24v44,0,81,-43,81,-82v0,-36,-32,-66,-73,-66r104,-112v-38,0,-84,-1,-112,7","w":164},"4":{"d":"145,-273r-35,167v16,0,30,-3,40,-6v-2,15,-25,9,-41,10r-22,102r-3,0r21,-102r-100,0xm138,-257r-124,151r92,0","w":158},"5":{"d":"47,4v-29,0,-46,-12,-46,-24v42,45,125,8,124,-72v0,-39,-27,-69,-83,-69r50,-104v54,1,78,-11,91,-14v-13,12,-51,19,-89,19r-45,94v51,1,81,33,81,74v0,60,-47,96,-83,96","w":156},"6":{"d":"20,-109v32,-139,114,-167,155,-164v-43,6,-120,30,-150,164v-10,46,-8,110,38,109v35,0,68,-49,68,-96v0,-26,-11,-56,-41,-56v-11,0,-26,6,-45,18v18,-17,33,-23,46,-23v32,0,45,34,45,61v0,48,-34,100,-74,100v-48,0,-53,-64,-42,-113","w":160},"7":{"d":"158,-260v-42,0,-86,-2,-120,7r6,-12r122,0r-158,270r-4,-2","w":140},"8":{"d":"144,-72v0,45,-35,76,-79,76v-25,0,-51,-21,-51,-54v0,-53,40,-69,77,-86v-23,-12,-38,-35,-38,-61v0,-24,20,-72,70,-72v31,0,44,26,44,49v0,45,-33,68,-67,82v22,13,44,36,44,66xm66,0v27,0,73,-21,73,-71v0,-30,-23,-51,-46,-64v-36,18,-74,37,-74,85v0,31,24,50,47,50xm122,-264v-36,0,-64,32,-64,67v0,26,17,46,40,58v37,-17,65,-41,65,-81v0,-21,-11,-44,-41,-44","w":181},"9":{"d":"141,-154v-31,139,-114,166,-155,163v40,-6,122,-28,151,-163v11,-46,7,-110,-39,-110v-35,0,-68,51,-68,97v0,50,45,73,86,38v-18,17,-33,22,-46,22v-33,0,-45,-33,-45,-60v0,-47,34,-102,74,-102v48,0,53,66,42,115","w":160},"!":{"d":"39,-71r-2,0r38,-191v1,-2,6,-5,6,0xm33,-11v0,10,-16,18,-17,5v0,-11,16,-20,17,-5","w":99},"\"":{"d":"45,-220v12,-25,8,-37,19,-44v3,0,4,3,4,4v-2,1,-15,35,-23,40xm27,-220v12,-25,8,-37,19,-44v9,5,-12,35,-19,44","w":86},"#":{"d":"125,0r-4,0r26,-92r-62,0r-26,92r-4,0r26,-92r-54,0r1,-5r54,0r20,-71r-54,0r1,-5r54,0r27,-92r4,0r-26,92r62,0r26,-92r4,0r-26,92r59,0r-1,5r-59,0r-21,71r60,0r-1,5r-60,0xm106,-168r-20,71r62,0r20,-71r-62,0","w":259},"$":{"d":"80,4v-3,6,1,18,-8,18r4,-18v-48,2,-64,-37,-44,-75v-8,47,22,78,45,71r29,-135v-64,-23,-46,-128,28,-134v3,-5,0,-15,7,-15r-3,15v21,0,37,6,49,16v-5,14,-8,38,-11,52r0,-54v-10,-6,-23,-9,-38,-9r-27,126v21,13,43,28,43,59v0,65,-55,83,-74,83xm81,0v39,-1,68,-41,68,-79v0,-28,-20,-42,-40,-54xm133,-264v-36,3,-62,37,-62,77v0,24,17,35,36,47","w":180},"%":{"d":"181,-115v17,0,25,16,25,37v0,38,-22,82,-50,82v-18,0,-26,-16,-26,-37v0,-29,18,-82,51,-82xm135,-34v0,19,7,34,22,34v24,0,44,-41,44,-77v0,-19,-7,-34,-21,-34v-31,0,-45,55,-45,77xm106,-269v18,0,26,17,26,38v0,39,-23,82,-51,82v-18,0,-26,-17,-26,-38v0,-29,17,-82,51,-82xm60,-188v0,19,8,34,22,34v24,0,45,-40,45,-76v0,-19,-8,-35,-22,-35v-30,0,-45,55,-45,77xm23,0r-5,0r222,-265r5,0","w":262},"&":{"d":"219,-31v3,37,-86,48,-105,11v-32,39,-101,32,-101,-33v0,-52,34,-78,67,-99v-4,-56,27,-117,67,-117v15,0,25,11,25,27v0,44,-51,69,-88,92v0,47,9,93,32,123v26,-28,45,-74,56,-111v-10,-3,-25,-1,-32,-7r65,0v-6,6,-20,4,-29,7v-11,37,-31,85,-58,114v12,14,28,23,47,23v35,0,50,-18,54,-30xm80,-148v-31,19,-63,47,-63,95v0,59,66,66,95,30v-23,-30,-32,-78,-32,-125xm167,-240v0,-14,-8,-25,-21,-25v-45,0,-61,59,-62,110v37,-22,83,-48,83,-85","w":223},"'":{"d":"27,-220v12,-25,8,-37,19,-44v9,5,-12,35,-19,44","w":67},"(":{"d":"133,-267v-91,87,-138,217,-71,336r-3,3v-70,-117,-18,-262,72,-342","w":116},")":{"d":"85,-159v0,-36,-8,-76,-30,-108r3,-3v70,118,17,262,-73,342r-1,-3v67,-63,101,-141,101,-228","w":116},"*":{"d":"87,-197v-9,36,-7,70,-17,67r16,-67v-58,34,-53,39,-59,33v16,-15,40,-22,59,-34r-45,-34v0,-3,4,-4,6,-2r39,35v6,-23,6,-51,16,-70v3,9,-8,36,-15,70r57,-36v5,10,2,3,-56,37v14,11,31,20,44,33v0,2,-2,3,-4,3","w":173},"+":{"d":"80,-40r-4,0r16,-76r-65,0r1,-5r65,0r16,-77r4,0r-16,77r65,0r-1,5r-65,0","w":189},",":{"d":"37,1v0,25,-25,57,-42,58v17,-11,39,-34,37,-61v-5,7,-17,1,-17,-7v0,-6,6,-10,11,-10v9,0,11,10,11,20","w":73},"-":{"d":"109,-93r-91,0r1,-5r92,0","w":128},".":{"d":"33,-11v0,10,-16,18,-17,5v0,-11,16,-20,17,-5","w":70},"\/":{"d":"3,5r-4,0r144,-275r5,0","w":106},"@":{"d":"170,-29v-22,-7,-3,-48,-1,-68v-11,27,-37,69,-68,69v-18,0,-24,-26,-24,-38v0,-47,34,-113,87,-113v6,0,15,5,20,11v1,-3,5,-10,7,-11v-8,46,-24,86,-26,137v0,4,3,7,6,7v29,0,70,-39,70,-110v0,-52,-40,-74,-69,-74v-82,0,-142,66,-142,153v1,117,132,115,187,41v-19,35,-72,57,-108,57v-49,0,-84,-40,-84,-98v0,-87,61,-158,148,-158v31,0,73,25,73,79v0,79,-48,116,-76,116xm103,-33v51,0,71,-79,80,-132v-50,-34,-102,41,-101,99v0,10,3,33,21,33","w":271},"?":{"d":"84,-269v18,0,39,12,39,35v0,53,-82,76,-82,124v0,13,10,20,12,24v-9,0,-17,-9,-17,-24v0,-53,82,-72,82,-124v0,-21,-19,-30,-34,-30v-27,0,-37,20,-45,38v-4,-19,10,-43,45,-43xm33,-11v0,10,-16,18,-17,5v0,-11,16,-20,17,-5","w":124},";":{"d":"65,-162v1,12,-15,20,-16,5v-1,-12,15,-20,16,-5xm37,1v0,25,-25,57,-42,58v17,-11,39,-34,37,-61v-5,7,-17,1,-17,-7v0,-6,6,-10,11,-10v9,0,11,10,11,20","w":77},":":{"d":"65,-162v0,11,-16,20,-17,5v0,-11,16,-20,17,-5xm33,-11v0,10,-16,18,-17,5v0,-11,16,-20,17,-5","w":77},"|":{"d":"0,90r-4,0r76,-360r5,0","w":40},"=":{"d":"161,-92r-135,0r1,-5r135,0xm171,-140r-135,0r1,-5r135,0","w":198},"<":{"d":"144,-48r-120,-68r1,-5r149,-68r-1,6r-142,65r114,65","w":198},"\\":{"d":"96,5r-4,0r-64,-275r5,0","w":124},">":{"d":"173,-116r-149,68r1,-5r142,-65r-114,-65r1,-6r120,68","w":198},"[":{"d":"45,71r-45,0r72,-341r45,0r0,5r-40,0r-71,332r40,0","w":95},"{":{"d":"48,-99v39,31,1,89,0,135v0,18,11,33,25,33r-1,3v-72,-16,27,-134,-30,-171v71,-28,23,-155,103,-171r-1,3v-70,14,-30,142,-96,168","w":120},"]":{"d":"45,71r-45,0r1,-5r40,0r71,-331r-41,0r1,-5r45,0","w":131},"}":{"d":"96,-99v-39,-31,-1,-89,0,-135v0,-18,-11,-33,-25,-33r1,-3v72,16,-27,134,30,171v-71,28,-23,155,-103,171r1,-3v70,-14,30,-142,96,-168","w":120},"~":{"d":"126,-102v14,0,27,-6,39,-22r2,2v-14,17,-26,25,-41,25v-24,0,-32,-26,-53,-26v-14,0,-27,7,-39,23r-3,-3v14,-17,27,-25,42,-25v24,0,31,26,53,26","w":198},"_":{"d":"138,22r-143,0r1,-4r143,0","w":168},"^":{"d":"145,-156r-34,-64r-61,64r-6,0r66,-69r5,0r35,69r-5,0","w":159},"`":{"d":"77,-255v4,14,15,30,16,43r-27,-43r11,0","w":72},"p":{"d":"56,-181r-16,65v13,-40,50,-69,70,-69v27,0,38,22,38,54v0,76,-50,136,-100,136v-13,0,-22,-5,-31,-13r-22,93r28,2r0,3r-48,0v1,-6,11,-3,16,-5r59,-255r-29,-3v7,-6,20,0,35,-8xm18,-13v60,42,123,-31,125,-117v0,-31,-10,-50,-34,-50v-18,0,-59,28,-69,70","w":158},"\u00a0":{"w":90}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Copyright 1998, Neufville Digital. ALL RIGHTS RESERVED. This font is
 * licensed, not sold, and may not be reproduced without the written consent of
 * Neufville Digital. Parts © Visualogik Technology & Design, 1998.
 */
Cufon.registerFont({"w":222,"face":{"font-family":"Futura","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-17 -373 1492 1582","underline-thickness":"28.125","underline-position":"-21.0938","unicode-range":"U+0020-U+03A9"},"glyphs":{" ":{"w":111},"!":{"d":"60,5v-14,0,-26,-11,-25,-25v0,-13,12,-24,25,-24v13,-1,24,11,24,24v0,13,-11,25,-24,25xm40,-60r0,-211r40,0r0,211r-40,0","w":119},"\"":{"d":"57,-162r-30,0r-8,-109r45,0xm121,-162r-30,0r-8,-109r45,0","w":147},"#":{"d":"216,-195r0,31r-43,0r-6,50r39,0r0,31r-43,0r-11,84r-31,-4r10,-80r-52,0r-10,84r-32,-4r10,-80r-40,0r0,-31r45,0r6,-50r-40,0r0,-31r44,0r10,-79r30,4r-9,75r52,0r10,-79r31,4r-10,75r40,0xm141,-164r-52,0r-6,50r52,0"},"$":{"d":"57,-161v-36,-42,-8,-109,43,-114r0,-35r31,0r0,35v32,5,44,20,59,45r-35,19v-10,-19,-23,-28,-40,-28v-29,0,-50,34,-28,53v34,29,111,41,109,105v-1,42,-29,75,-65,84r0,36r-31,0r0,-35v-49,-9,-68,-31,-79,-80r38,-8v9,30,19,46,51,49v38,3,61,-46,35,-72v-19,-18,-74,-37,-88,-54"},"%":{"d":"78,-146v-34,0,-64,-31,-64,-65v0,-34,32,-63,65,-63v34,0,65,30,65,64v0,36,-31,64,-66,64xm79,-245v-19,0,-35,16,-35,34v0,19,16,36,35,36v17,0,35,-16,35,-35v0,-18,-16,-35,-35,-35xm233,-276r19,11r-155,269r-19,-11xm250,2v-34,0,-65,-30,-65,-64v0,-34,32,-63,66,-63v34,0,65,30,65,64v0,36,-31,63,-66,63xm251,-96v-18,0,-35,16,-35,34v0,19,16,35,35,35v18,0,34,-16,34,-34v0,-19,-15,-35,-34,-35","w":329},"&":{"d":"185,-217v-1,36,-20,43,-46,66r49,59v10,-12,21,-22,30,-35r27,27v-8,13,-22,26,-32,38r50,62r-51,0r-27,-33v-50,66,-160,41,-163,-42v-1,-37,32,-65,60,-83v-48,-41,-28,-118,38,-118v36,0,66,24,65,59xm70,-98v-25,26,6,67,36,66v16,0,33,-10,54,-31r-53,-65v-16,11,-32,23,-37,30xm120,-242v-38,0,-25,49,-5,62v27,-8,48,-58,5,-62","w":263},"'":{"d":"57,-162r-30,0r-8,-109r45,0","w":83},"(":{"d":"107,-286v-45,99,-45,248,0,347r-36,14v-51,-102,-50,-273,0,-375","w":131},")":{"d":"24,61v47,-97,46,-250,0,-347r37,-14v50,103,51,273,0,375","w":131},"*":{"d":"96,-249r-3,-48r36,0r-3,48r44,-18r11,34r-46,12r30,37r-28,21r-26,-41r-26,41r-28,-21r30,-37r-46,-12r11,-34"},"+":{"d":"17,-125r0,-33r78,0r0,-75r32,0r0,75r78,0r0,33r-78,0r0,76r-32,0r0,-76r-78,0"},",":{"d":"49,-51r36,14r-51,100r-26,-11","w":111},"-":{"d":"0,-104r78,0r0,34r-78,0r0,-34","w":78},".":{"d":"56,5v-14,0,-25,-11,-25,-25v0,-13,12,-24,25,-24v13,0,24,11,24,24v0,13,-11,25,-24,25","w":111},"\/":{"d":"153,-300r32,15r-155,359r-32,-14","w":186},"0":{"d":"111,4v-127,0,-129,-280,0,-280v63,0,96,68,96,140v0,73,-34,140,-96,140xm111,-239v-75,6,-75,199,0,206v76,-7,76,-199,0,-206"},"1":{"d":"98,-233r-47,0r22,-38r66,0r0,271r-41,0r0,-233"},"2":{"d":"103,-276v63,0,112,67,76,125v-23,38,-60,77,-89,113r101,0r0,38r-182,0r118,-144v11,-15,23,-32,24,-50v0,-25,-22,-46,-47,-45v-27,0,-43,16,-47,49r-40,0v7,-57,35,-86,86,-86"},"3":{"d":"148,-80v-1,-31,-19,-46,-55,-46r0,-35v36,1,49,-10,51,-39v1,-24,-18,-39,-41,-39v-27,0,-35,13,-40,37r-41,0v8,-47,29,-71,81,-74v74,-5,110,94,52,133v64,38,28,154,-54,147v-48,-4,-81,-27,-86,-77r40,0v3,25,19,40,47,40v26,0,47,-20,46,-47"},"4":{"d":"178,-76r28,0r0,38r-28,0r0,38r-41,0r0,-38r-134,0r175,-254r0,216xm137,-76r0,-91r-63,91r63,0"},"5":{"d":"153,-93v0,-57,-73,-81,-105,-36r-14,0r43,-142r112,0r0,38r-83,0r-14,45v59,-8,101,37,101,94v0,100,-143,135,-186,48r31,-26v15,24,26,38,57,39v32,1,58,-27,58,-60"},"6":{"d":"112,4v-78,0,-116,-87,-66,-156r95,-129r30,23r-64,88v52,-12,95,36,95,84v0,48,-42,90,-90,90xm111,-33v27,0,51,-23,51,-50v0,-28,-23,-52,-51,-52v-27,0,-51,24,-51,51v0,27,24,51,51,51"},"7":{"d":"153,-233r-134,0r0,-38r202,0r-171,280r-33,-20"},"8":{"d":"112,4v-81,0,-119,-111,-49,-145v-59,-39,-23,-135,49,-135v70,0,109,95,49,135v21,10,35,33,35,63v0,48,-37,82,-84,82xm112,-239v-21,0,-41,19,-41,40v0,23,19,41,41,41v21,1,40,-19,40,-40v0,-21,-19,-41,-40,-41xm111,-123v-23,0,-45,21,-45,44v0,24,21,46,45,46v24,0,45,-21,45,-45v0,-24,-21,-45,-45,-45"},"9":{"d":"110,-276v79,0,117,88,66,157r-95,128r-30,-22r65,-88v-55,9,-95,-35,-96,-84v-1,-49,42,-91,90,-91xm111,-239v-27,0,-51,24,-51,51v0,29,23,52,51,52v28,0,51,-24,51,-52v0,-27,-24,-51,-51,-51"},":":{"d":"56,5v-14,0,-25,-11,-25,-25v0,-13,12,-24,25,-24v13,0,24,11,24,24v0,13,-11,25,-24,25xm56,-127v-14,0,-25,-11,-25,-25v0,-13,12,-24,25,-24v13,0,24,11,24,24v0,13,-11,25,-24,25","w":111},";":{"d":"49,-51r36,14r-51,100r-26,-11xm64,-127v-13,0,-24,-12,-24,-25v0,-13,11,-25,24,-24v13,0,25,12,25,24v0,13,-11,25,-25,25","w":111},"<":{"d":"199,-241r0,40r-133,63r133,63r0,41r-176,-87r0,-34"},"=":{"d":"17,-155r0,-30r188,0r0,30r-188,0xm17,-98r0,-30r188,0r0,30r-188,0"},">":{"d":"23,-34r0,-41r133,-63r-133,-63r0,-40r176,86r0,35"},"?":{"d":"67,-120v0,11,7,20,21,20v13,0,20,-9,21,-27r40,0v0,38,-27,64,-62,65v-46,2,-75,-56,-49,-94v15,-22,77,-20,77,-55v0,-16,-11,-27,-27,-26v-21,0,-31,19,-24,41r-41,0v-7,-46,23,-79,65,-79v58,0,90,73,48,111v-7,14,-69,19,-69,44xm89,5v-14,0,-25,-11,-25,-25v0,-13,11,-24,24,-24v13,0,25,11,25,24v0,13,-11,25,-24,25","w":176},"@":{"d":"82,-130v0,-66,82,-109,122,-57r3,-20r26,0r-12,111v0,9,4,13,11,13v24,-1,40,-41,40,-70v0,-59,-48,-99,-107,-99v-64,0,-115,52,-115,116v0,105,118,142,207,92r9,25v-105,57,-247,7,-247,-117v0,-79,66,-140,146,-140v72,0,133,51,133,121v0,47,-29,97,-70,98v-15,0,-25,-8,-30,-22v-41,49,-116,13,-116,-51xm151,-87v50,4,67,-91,8,-90v-47,-3,-57,88,-8,90","w":316},"A":{"d":"192,-66r-116,0r-30,66r-45,0r135,-288r129,288r-45,0xm175,-104r-40,-93r-42,93r82,0","w":266},"B":{"d":"147,-146v82,32,47,161,-52,146r-62,0r0,-271v77,-5,135,7,136,76v0,20,-7,35,-22,49xm130,-195v0,-32,-22,-42,-57,-39r0,79v35,2,57,-7,57,-40xm153,-79v0,-37,-36,-45,-80,-42r0,83v42,3,81,-4,80,-41","w":212},"C":{"d":"19,-134v0,-105,117,-182,214,-123r0,49v-65,-65,-173,-16,-173,73v0,54,45,102,100,102v35,0,52,-15,73,-31r0,49v-95,58,-214,-16,-214,-119","w":252},"D":{"d":"242,-136v0,84,-56,140,-153,136r-56,0r0,-271v124,-11,209,29,209,135xm201,-136v0,-67,-50,-103,-128,-97r0,195v79,6,128,-30,128,-98","w":261},"E":{"d":"182,-233r-109,0r0,65r106,0r0,39r-106,0r0,91r109,0r0,38r-149,0r0,-271r149,0r0,38","w":203},"F":{"d":"168,-233r-95,0r0,65r92,0r0,39r-92,0r0,129r-40,0r0,-271r135,0r0,38","w":182},"G":{"d":"60,-135v0,74,93,136,153,81v16,-14,25,-30,27,-49r-68,0r0,-38r112,0v6,90,-50,144,-127,146v-74,2,-138,-67,-138,-140v0,-97,104,-174,201,-129v18,9,35,23,52,43r-29,27v-52,-84,-183,-37,-183,59","w":303},"H":{"d":"73,-165r118,0r0,-106r41,0r0,271r-41,0r0,-127r-118,0r0,127r-40,0r0,-271r40,0r0,106","w":264},"I":{"d":"73,-271r0,271r-40,0r0,-271r40,0","w":106},"J":{"d":"13,-43v37,25,61,1,61,-53r0,-175r41,0r0,175v10,85,-57,122,-122,88","w":147},"K":{"d":"73,-163r106,-108r55,0r-123,122r123,149r-54,0r-98,-121r-9,9r0,112r-40,0r0,-271r40,0r0,108","w":238},"L":{"d":"73,-271r0,233r80,0r0,38r-120,0r0,-271r40,0","w":159},"M":{"d":"23,0r57,-292r93,211r97,-211r51,292r-42,0r-26,-164r-80,176r-78,-176r-30,164r-42,0","w":346},"N":{"d":"33,0r0,-290r197,207r0,-188r41,0r0,288r-198,-207r0,190r-40,0","w":303},"O":{"d":"159,5v-75,0,-140,-64,-140,-142v0,-75,68,-140,143,-140v75,0,141,67,141,142v0,77,-67,140,-144,140xm161,-238v-54,0,-101,46,-101,102v0,56,47,103,100,103v55,0,101,-47,101,-103v0,-55,-45,-102,-100,-102","w":321},"P":{"d":"185,-191v2,58,-47,87,-112,81r0,110r-40,0r0,-271r46,0v69,-5,104,25,106,80xm73,-148v43,3,72,-9,72,-44v0,-32,-29,-45,-72,-42r0,86","w":194},"Q":{"d":"161,-277v116,0,192,153,103,238r45,44r-52,0r-21,-22v-91,61,-217,-13,-217,-117v0,-78,66,-143,142,-143xm60,-134v0,73,81,127,147,88r-64,-61r53,0r39,39v59,-59,10,-170,-75,-170v-57,0,-100,47,-100,104","w":321},"R":{"d":"185,-192v0,39,-26,70,-61,76r84,116r-50,0r-77,-111r-8,0r0,111r-40,0r0,-271v82,-5,153,7,152,79xm73,-147v43,2,72,-10,72,-44v0,-33,-30,-45,-72,-42r0,86","w":216},"S":{"d":"31,-205v0,-41,39,-72,82,-72v31,0,55,16,73,46r-33,20v-11,-38,-80,-35,-80,7v0,41,85,45,105,75v37,57,-5,134,-72,134v-51,0,-80,-33,-87,-80r41,-9v3,34,17,49,47,51v44,4,61,-64,24,-83v-38,-19,-100,-41,-100,-89","w":209},"T":{"d":"107,-233r0,233r-41,0r0,-233r-62,0r0,-38r166,0r0,38r-63,0","w":173},"U":{"d":"133,5v-55,0,-100,-43,-100,-102r0,-174r40,0v8,89,-33,238,60,238v40,0,59,-26,59,-75r0,-163r41,0r0,174v2,59,-45,102,-100,102","w":265},"V":{"d":"46,-271r75,188r76,-188r45,0r-122,291r-119,-291r45,0","w":243},"W":{"d":"46,-271r71,181r73,-195r71,195r75,-181r45,0r-122,288r-70,-192r-72,192r-116,-288r45,0","w":381},"X":{"d":"89,-142r-74,-129r46,0r52,92r55,-92r46,0r-78,129r82,142r-46,0r-60,-104r-62,104r-46,0"},"Y":{"d":"87,-117r-88,-154r47,0r62,108r62,-108r47,0r-89,154r0,117r-41,0r0,-117","w":216},"Z":{"d":"79,-38r131,0r0,38r-198,0r133,-233r-111,0r0,-38r179,0","w":225},"[":{"d":"76,-260r0,295r34,0r0,37r-75,0r0,-369r75,0r0,37r-34,0","w":128},"\\":{"d":"34,-300r155,360r-32,14r-156,-359","w":186},"]":{"d":"53,35r0,-295r-34,0r0,-37r74,0r0,369r-74,0r0,-37r34,0","w":128},"^":{"d":"49,-143r-43,0r69,-130r53,0r69,130r-43,0r-52,-97","w":203},"_":{"d":"0,23r204,0r0,37r-204,0r0,-37","w":203},"`":{"d":"35,-256r37,-19r48,64r-22,13","w":203},"a":{"d":"17,-86v0,-73,85,-122,134,-65r0,-20r40,0r0,171r-40,0r0,-18v-51,54,-134,5,-134,-68xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55","w":215},"b":{"d":"199,-86v0,73,-83,122,-134,68r0,18r-40,0r0,-297r40,0r0,146v49,-57,134,-8,134,65xm111,-30v28,0,48,-25,48,-54v0,-30,-19,-56,-48,-56v-30,0,-49,24,-49,54v0,32,19,55,49,56","w":215},"c":{"d":"17,-85v0,-67,77,-115,141,-79r0,53v-15,-18,-23,-28,-49,-29v-30,-1,-53,24,-52,55v0,30,22,55,51,55v26,0,34,-12,50,-30r0,52v-63,37,-141,-9,-141,-77","w":171},"d":{"d":"17,-86v0,-73,84,-122,134,-65r0,-146r40,0r0,297r-40,0r0,-18v-51,53,-134,5,-134,-68xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55","w":215},"e":{"d":"99,-176v55,0,86,40,82,100r-123,0v2,26,18,46,45,46v26,0,31,-13,46,-33r33,18v-16,29,-38,49,-80,50v-51,0,-85,-38,-85,-90v0,-52,31,-92,82,-91xm140,-109v-6,-43,-75,-37,-79,0r79,0","w":199},"f":{"d":"109,-255v-25,-15,-43,-11,-43,27r0,57r43,0r0,37r-43,0r0,134r-40,0r0,-134r-14,0r0,-37r14,0v-1,-64,-8,-136,56,-131v7,0,16,3,27,7r0,40","w":106},"g":{"d":"17,-85v0,-74,85,-122,134,-67r0,-19r40,0r-1,188v2,71,-90,98,-139,58v-15,-13,-25,-31,-27,-53r40,0v4,23,19,36,44,36v38,0,46,-34,43,-77v-50,55,-134,9,-134,-66xm105,-30v29,0,48,-25,48,-55v0,-31,-19,-55,-48,-55v-30,-1,-48,24,-48,55v0,31,19,55,48,55","w":215},"h":{"d":"102,-140v-57,-1,-31,87,-37,140r-40,0r0,-297r40,0r0,140v41,-39,107,-16,107,52r0,105r-39,0r0,-101v0,-26,-7,-39,-31,-39","w":197},"i":{"d":"65,-171r0,171r-40,0r0,-171r40,0xm45,-216v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26","w":89},"j":{"d":"65,-171r0,264r-40,0r0,-264r40,0xm45,-216v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26","w":89},"k":{"d":"65,-297r0,181r55,-55r53,0r-74,72r80,99r-52,0r-56,-72r-6,6r0,66r-40,0r0,-297r40,0","w":179},"l":{"d":"65,-297r0,297r-40,0r0,-297r40,0","w":89},"m":{"d":"97,-140v-52,0,-26,90,-32,140r-40,0r0,-171r40,0r0,16v20,-30,68,-27,87,4v33,-45,108,-29,108,45r0,106r-40,0r0,-95v0,-27,-3,-45,-26,-45v-51,0,-24,91,-31,140r-40,0v-5,-46,16,-140,-26,-140","w":284},"n":{"d":"101,-140v-56,0,-30,88,-36,140r-40,0r0,-171r40,0r0,16v39,-42,107,-19,107,50r0,105r-39,0r0,-96v0,-30,-4,-44,-32,-44","w":197},"o":{"d":"107,5v-51,0,-90,-41,-90,-92v0,-50,43,-89,91,-89v49,0,92,41,92,91v0,51,-43,90,-93,90xm108,-140v-31,0,-51,23,-51,54v0,33,20,55,51,56v31,0,51,-23,51,-55v0,-32,-20,-55,-51,-55","w":216},"p":{"d":"199,-85v0,73,-84,121,-134,66r0,112r-40,0r0,-264r40,0r0,18v51,-54,134,-5,134,68xm111,-30v28,0,48,-26,48,-55v0,-30,-19,-55,-48,-55v-30,0,-49,25,-49,55v0,30,19,55,49,55","w":215},"q":{"d":"17,-85v0,-73,83,-122,134,-68r0,-18r40,0r0,264r-40,0r0,-112v-50,55,-134,7,-134,-66xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55","w":215},"r":{"d":"65,-156v16,-22,46,-26,72,-10r-18,36v-29,-19,-54,-4,-54,41r0,89r-40,0r0,-171r40,0r0,15","w":134},"s":{"d":"56,-80v-56,-16,-35,-96,20,-96v22,0,37,11,48,34r-32,17v-5,-18,-30,-21,-33,-3v14,30,77,28,77,76v0,32,-29,58,-62,57v-29,0,-49,-14,-61,-42r34,-16v6,24,48,34,48,4v0,-15,-26,-24,-39,-31","w":146},"t":{"d":"66,-134r0,134r-40,0r0,-134r-17,0r0,-37r17,0r0,-63r40,0r0,63r31,0r0,37r-31,0","w":98},"u":{"d":"98,5v-47,0,-73,-25,-73,-77r0,-99r40,0v5,50,-19,141,33,141v53,0,29,-91,34,-141r39,0r0,99v1,50,-26,77,-73,77","w":196},"v":{"d":"46,-171r45,96r44,-96r44,0r-89,183r-88,-183r44,0","w":180},"w":{"d":"46,-171r45,98r49,-114r48,114r45,-98r44,0r-90,184r-47,-110r-49,110r-89,-184r44,0","w":278},"x":{"d":"78,-93r-61,-78r47,0r38,50r39,-50r48,0r-63,78r73,93r-47,0r-50,-64r-52,64r-48,0","w":200},"y":{"d":"79,-32r-77,-139r46,0r52,98r49,-98r45,0r-137,264r-45,0","w":195},"z":{"d":"82,-37r102,0r0,37r-181,0r111,-134r-87,0r0,-37r165,0","w":195},"{":{"d":"40,-164v2,-67,-17,-153,70,-135r0,35v-70,-4,6,124,-54,152v38,19,21,71,24,119v1,27,4,33,30,32r0,36v-48,3,-70,-10,-70,-59v0,-42,15,-104,-23,-113r0,-34v16,-4,23,-13,23,-33","w":128},"|":{"d":"81,-271r41,0r0,339r-41,0r0,-339","w":203},"}":{"d":"89,-60v-3,67,21,151,-71,135r0,-36v71,6,-5,-124,55,-151v-38,-19,-24,-71,-24,-119v0,-28,-5,-33,-31,-33r0,-35v47,-6,71,9,71,59v0,41,-16,105,23,112r0,34v-16,5,-23,14,-23,34","w":128},"~":{"d":"173,-236v-24,2,-76,-43,-99,-16v-12,14,-22,30,-37,4v14,-27,24,-48,58,-51v28,-2,76,40,102,16v11,-15,23,-28,37,-3v-16,29,-26,47,-61,50","w":271},"\u00a0":{"w":111},"\u00a1":{"d":"60,-214v13,0,24,12,24,25v0,13,-11,24,-24,24v-14,0,-25,-12,-25,-25v-1,-13,12,-24,25,-24xm80,-149r0,211r-40,0r0,-211r40,0","w":119},"\u00a2":{"d":"103,-47v-41,-10,-70,-42,-70,-89v0,-45,23,-74,70,-89r0,-35r30,0v1,11,-2,25,1,34v14,2,28,6,39,12r0,52v-13,-13,-25,-27,-50,-27v-31,0,-51,23,-51,54v0,30,20,53,51,52v28,-1,34,-11,50,-29r0,55v-13,5,-25,9,-40,11r0,35r-30,0r0,-36"},"\u00a3":{"d":"119,-237v-55,0,-59,62,-28,103r53,0r0,29r-41,0v7,27,6,26,-1,53v15,4,41,16,53,16v16,-1,20,-14,28,-26r33,20v-15,28,-25,43,-60,46v-16,1,-73,-24,-87,-22v-18,2,-19,8,-28,24r-35,-18v19,-29,23,-39,56,-44v6,-18,7,-33,-2,-49r-46,0r0,-29r32,0v-43,-68,2,-141,74,-142v49,-1,87,37,86,88r-40,15v2,-44,-13,-64,-47,-64"},"\u00a4":{"d":"-9,-53r40,-40v-26,-36,-25,-78,0,-114r-40,-40r22,-23r40,41v36,-26,78,-27,115,-1r41,-39r22,22r-40,40v26,38,27,77,0,114r41,40r-22,22r-41,-40v-37,26,-77,27,-116,1r-40,39xm111,-87v33,0,62,-29,62,-62v0,-35,-28,-63,-62,-63v-33,0,-62,29,-62,62v0,34,29,63,62,63"},"\u00a5":{"d":"88,-124r-16,-29r-58,0r0,-29r42,0r-49,-89r45,0r59,108r60,-108r44,0r-49,89r42,0r0,29r-58,0r-17,29r75,0r0,29r-78,0r0,95r-38,0r0,-95r-78,0r0,-29r74,0"},"\u00a6":{"d":"81,-271r41,0r0,138r-41,0r0,-138xm81,-62r41,0r0,130r-41,0r0,-130","w":203},"\u00a7":{"d":"155,-52v58,32,22,135,-47,128v-48,-5,-78,-28,-79,-80r39,0v-2,54,80,56,77,5v-3,-61,-112,-35,-112,-114v0,-29,12,-51,38,-62v-63,-34,-21,-125,46,-125v45,0,77,36,76,83r-38,0v4,-59,-76,-57,-76,-8v1,39,86,42,99,68v27,32,14,91,-23,105xm113,-153v-22,0,-41,18,-41,39v0,22,19,40,41,40v22,0,41,-18,41,-40v0,-21,-19,-39,-41,-39"},"\u00a8":{"d":"65,-200v-13,0,-25,-12,-25,-26v0,-13,12,-24,25,-24v13,0,25,11,25,24v0,14,-12,26,-25,26xm139,-200v-13,0,-26,-13,-26,-26v0,-13,13,-25,26,-24v13,0,25,12,25,24v0,13,-12,26,-25,26","w":203},"\u00a9":{"d":"73,-135v0,-64,74,-107,135,-73r0,36v-34,-38,-104,-18,-104,37v0,54,70,74,104,35r0,36v-58,35,-135,-6,-135,-71xm153,-277v86,0,139,61,142,141v3,75,-64,141,-140,141v-76,0,-143,-65,-141,-141v2,-83,62,-141,139,-141xm272,-136v-2,-68,-51,-120,-119,-120v-63,0,-117,57,-117,120v0,64,54,121,119,121v65,0,119,-56,117,-121","w":308},"\u00aa":{"d":"17,-215v0,-44,52,-72,83,-40r0,-11r26,0r0,103r-26,0r0,-10v-33,31,-83,3,-83,-42xm72,-246v-17,0,-29,14,-29,31v0,19,11,33,29,33v18,0,29,-14,29,-32v0,-18,-11,-32,-29,-32","w":147},"\u00ab":{"d":"133,-87r53,67r-27,20r-67,-87r67,-89r26,19xm58,-87r52,67r-26,20r-68,-87r68,-89r26,19","w":207},"\u00ac":{"d":"149,0r0,-71r-135,0r0,-38r176,0r0,109r-41,0","w":203},"\u00ad":{"d":"0,-104r78,0r0,34r-78,0r0,-34","w":78},"\u00ae":{"d":"136,-217v73,-12,87,79,32,95r53,68r-38,0r-48,-65r0,65r-31,0r0,-163r32,0xm135,-145v23,1,38,-6,38,-23v0,-16,-15,-22,-38,-21r0,44xm153,-277v86,0,139,61,142,141v3,75,-64,141,-140,141v-76,0,-143,-65,-141,-141v2,-83,62,-141,139,-141xm272,-136v-2,-68,-51,-120,-119,-120v-63,0,-117,57,-117,120v0,64,54,121,119,121v65,0,119,-56,117,-121","w":308},"\u00af":{"d":"40,-236r123,0r0,32r-123,0r0,-32","w":203},"\u00b0":{"d":"61,-221v0,-30,25,-54,55,-54v28,0,54,26,54,54v0,29,-26,54,-55,54v-28,0,-54,-26,-54,-54xm144,-221v0,-16,-12,-27,-28,-27v-15,0,-29,11,-29,27v0,16,13,30,28,30v16,0,30,-14,29,-30","w":230},"\u00b1":{"d":"17,-125r0,-33r78,0r0,-75r32,0r0,75r78,0r0,33r-78,0r0,71r-32,0r0,-71r-78,0xm17,0r0,-33r188,0r0,33r-188,0"},"\u00b2":{"d":"20,-221v-1,-73,113,-66,109,-3v-3,41,-39,62,-60,90r60,0r0,25r-115,0r81,-98v15,-19,3,-43,-20,-43v-16,0,-26,10,-28,29r-27,0","w":157},"\u00b3":{"d":"99,-157v-1,-20,-11,-26,-33,-26r0,-23v22,1,31,-4,31,-22v0,-27,-46,-29,-47,0r-28,0v5,-30,18,-44,51,-46v45,-3,69,55,34,80v39,25,14,88,-36,88v-32,0,-50,-16,-53,-49r27,0v2,33,57,31,54,-2","w":157},"\u00b4":{"d":"169,-256r-64,58r-22,-13r49,-64","w":203},"\u00b6":{"d":"73,-136v-41,2,-66,-26,-66,-66v0,-92,120,-66,205,-69r-23,38r-10,0r0,272r-38,0r0,-272r-30,0r0,272r-38,0r0,-175"},"\u00b7":{"d":"56,-111v-14,0,-25,-11,-25,-25v0,-13,12,-24,25,-24v13,0,24,11,24,24v0,13,-11,25,-24,25","w":111},"\u00b8":{"d":"138,35r-42,54r-25,-13r35,-54","w":203},"\u00b9":{"d":"69,-246r-29,0r15,-25r42,0r0,162r-28,0r0,-137","w":157},"\u00ba":{"d":"73,-160v-31,0,-56,-24,-56,-55v0,-31,27,-54,57,-54v31,0,57,25,57,55v1,30,-27,54,-58,54xm74,-246v-20,0,-30,11,-31,31v0,20,12,33,31,33v18,0,31,-14,31,-32v-1,-20,-11,-32,-31,-32","w":147},"\u00bb":{"d":"75,-87r-53,-70r26,-19r68,89r-68,87r-26,-20xm150,-87r-53,-70r26,-19r68,89r-68,87r-26,-20","w":207},"\u00bc":{"d":"61,-246r-30,0r16,-25r42,0r0,162r-28,0r0,-137xm242,-276r20,11r-156,269r-19,-11xm320,-47r17,0r0,24r-17,0r0,23r-28,0r0,-23r-83,0r111,-155r0,131xm292,-47r0,-48r-34,48r34,0","w":348},"\u00bd":{"d":"61,-246r-30,0r16,-25r42,0r0,162r-28,0r0,-137xm242,-276r20,11r-156,269r-19,-11xm219,-112v-2,-73,109,-67,109,-4v0,42,-40,63,-60,91r60,0r0,25r-115,0r82,-99v14,-18,1,-43,-21,-42v-16,0,-26,10,-28,29r-27,0","w":348},"\u00be":{"d":"91,-157v-1,-20,-11,-26,-34,-26r0,-23v23,1,32,-5,32,-22v0,-27,-46,-29,-48,0r-27,0v5,-30,18,-44,51,-46v45,-3,69,55,34,80v39,25,13,88,-36,88v-32,0,-50,-16,-53,-49r27,0v2,33,55,30,54,-2xm242,-276r19,11r-155,269r-19,-11xm320,-47r17,0r0,24r-17,0r0,23r-28,0r0,-23r-83,0r111,-155r0,131xm292,-47r0,-48r-34,48r34,0","w":348},"\u00bf":{"d":"87,-67v30,-7,29,-40,2,-42v-13,0,-20,9,-21,27r-40,0v-1,-39,27,-63,62,-65v46,-2,74,56,48,94v-15,22,-76,20,-76,55v0,16,11,27,27,26v21,0,31,-18,24,-41r41,0v7,45,-23,79,-65,79v-57,0,-90,-73,-48,-111v8,-8,24,-17,46,-22xm88,-214v14,0,25,12,25,25v0,13,-12,24,-25,24v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":176},"\u00c0":{"d":"192,-66r-116,0r-30,66r-45,0r135,-288r129,288r-45,0xm175,-104r-40,-93r-42,93r82,0xm72,-344r34,-25r57,57r-20,16","w":266},"\u00c1":{"d":"192,-66r-116,0r-30,66r-45,0r135,-288r129,288r-45,0xm175,-104r-40,-93r-42,93r82,0xm198,-344r-72,48r-19,-16r56,-57","w":266},"\u00c2":{"d":"192,-66r-116,0r-30,66r-45,0r135,-288r129,288r-45,0xm175,-104r-40,-93r-42,93r82,0xm74,-317r62,-56r62,56r-27,21r-35,-33r-35,33","w":266},"\u00c3":{"d":"192,-66r-116,0r-30,66r-45,0r135,-288r129,288r-45,0xm175,-104r-40,-93r-42,93r82,0xm162,-299v-9,2,-45,-18,-56,-18v-7,0,-13,6,-20,18v-7,-9,-31,-16,-17,-26v9,-14,18,-24,39,-26v14,-2,47,18,56,19v7,0,13,-6,21,-19r23,18v-11,22,-27,34,-46,34","w":266},"\u00c4":{"d":"192,-66r-116,0r-30,66r-45,0r135,-288r129,288r-45,0xm175,-104r-40,-93r-42,93r82,0xm97,-299v-14,0,-26,-12,-26,-25v0,-13,11,-25,25,-25v14,0,25,11,25,25v0,13,-11,25,-24,25xm175,-299v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25v14,0,26,12,26,25v0,13,-12,25,-26,25","w":266},"\u00c5":{"d":"192,-66r-116,0r-30,66r-45,0r135,-288r129,288r-45,0xm175,-104r-40,-93r-42,93r82,0xm136,-296v-21,0,-38,-18,-38,-39v0,-20,18,-38,38,-38v21,0,38,18,38,38v0,21,-16,39,-38,39xm136,-352v-11,0,-17,7,-17,17v-1,9,7,18,17,18v10,0,17,-9,17,-18v0,-9,-8,-17,-17,-17","w":266},"\u00c6":{"d":"194,-65r-115,0r-30,65r-45,0r130,-271r121,0r17,38r-109,0r29,66r105,0r17,38r-105,0r39,91r108,0r17,38r-151,0xm178,-103r-39,-89r-42,89r81,0","w":377},"\u00c7":{"d":"19,-134v0,-105,117,-182,214,-123r0,49v-65,-65,-173,-16,-173,73v0,54,45,102,100,102v35,0,52,-15,73,-31r0,49v-95,58,-214,-16,-214,-119xm178,37r-47,54r-25,-13r37,-56","w":252},"\u00c8":{"d":"182,-233r-109,0r0,65r106,0r0,39r-106,0r0,91r109,0r0,38r-149,0r0,-271r149,0r0,38xm54,-344r35,-25r56,57r-19,16","w":203},"\u00c9":{"d":"182,-233r-109,0r0,65r106,0r0,39r-106,0r0,91r109,0r0,38r-149,0r0,-271r149,0r0,38xm169,-344r-72,48r-19,-16r56,-57","w":203},"\u00ca":{"d":"182,-233r-109,0r0,65r106,0r0,39r-106,0r0,91r109,0r0,38r-149,0r0,-271r149,0r0,38xm46,-317r61,-56r63,56r-27,21r-36,-33r-35,33","w":203},"\u00cb":{"d":"182,-233r-109,0r0,65r106,0r0,39r-106,0r0,91r109,0r0,38r-149,0r0,-271r149,0r0,38xm69,-299v-14,0,-26,-11,-25,-25v0,-13,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm148,-299v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25","w":203},"\u00d1":{"d":"33,0r0,-290r197,207r0,-188r41,0r0,288r-198,-207r0,190r-40,0xm178,-299v-10,3,-46,-18,-57,-18v-7,0,-12,6,-19,18v-6,-9,-28,-14,-18,-26v11,-13,19,-23,40,-26v14,-2,46,18,55,19v7,0,14,-6,22,-19r22,18v-11,22,-26,34,-45,34","w":303},"\u00d6":{"d":"159,5v-75,0,-140,-64,-140,-142v0,-75,68,-140,143,-140v75,0,141,67,141,142v0,77,-67,140,-144,140xm161,-238v-54,0,-101,46,-101,102v0,56,47,103,100,103v55,0,101,-47,101,-103v0,-55,-45,-102,-100,-102xm122,-299v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,12,25,25v0,13,-11,25,-25,25xm201,-299v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,12,25,25v0,13,-11,25,-25,25","w":321},"\u00dc":{"d":"133,5v-55,0,-100,-43,-100,-102r0,-174r40,0v8,89,-33,238,60,238v40,0,59,-26,59,-75r0,-163r41,0r0,174v2,59,-45,102,-100,102xm93,-299v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm172,-299v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25","w":265},"\u00e1":{"d":"17,-86v0,-73,85,-122,134,-65r0,-20r40,0r0,171r-40,0r0,-18v-51,54,-134,5,-134,-68xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55xm168,-256r-64,58r-22,-13r49,-64","w":215},"\u00e0":{"d":"17,-86v0,-73,85,-122,134,-65r0,-20r40,0r0,171r-40,0r0,-18v-51,54,-134,5,-134,-68xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55xm52,-256r37,-19r48,64r-22,13","w":215},"\u00e2":{"d":"49,-218r61,-57r63,57r-27,20r-36,-33r-35,33xm17,-86v0,-73,85,-122,134,-65r0,-20r40,0r0,171r-40,0r0,-18v-51,54,-134,5,-134,-68xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55","w":215},"\u00e4":{"d":"17,-86v0,-73,85,-122,134,-65r0,-20r40,0r0,171r-40,0r0,-18v-51,54,-134,5,-134,-68xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55xm72,-200v-13,0,-25,-12,-25,-26v0,-13,12,-24,25,-24v13,0,25,11,25,24v0,14,-12,26,-25,26xm146,-200v-13,0,-26,-13,-26,-26v0,-13,13,-25,26,-24v13,0,25,12,25,24v0,13,-12,26,-25,26","w":215},"\u00e3":{"d":"137,-201v-9,2,-45,-18,-56,-18v-7,0,-12,7,-19,19r-24,-20v12,-14,20,-31,45,-33v13,-1,46,19,56,19v7,0,13,-6,21,-19r23,19v-11,22,-27,33,-46,33xm17,-86v0,-73,85,-122,134,-65r0,-20r40,0r0,171r-40,0r0,-18v-51,54,-134,5,-134,-68xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55","w":215},"\u00e5":{"d":"109,-198v-21,0,-38,-18,-38,-38v0,-20,18,-38,38,-38v21,0,38,18,38,38v0,20,-17,38,-38,38xm109,-253v-10,0,-17,7,-17,17v0,10,8,18,17,18v9,0,18,-9,18,-18v0,-9,-8,-17,-18,-17xm17,-86v0,-73,85,-122,134,-65r0,-20r40,0r0,171r-40,0r0,-18v-51,54,-134,5,-134,-68xm105,-140v-29,0,-48,25,-48,54v0,31,19,56,48,56v30,0,49,-25,49,-55v0,-30,-20,-55,-49,-55","w":215},"\u00e7":{"d":"17,-85v0,-67,77,-115,141,-79r0,53v-15,-18,-23,-28,-49,-29v-30,-1,-53,24,-52,55v0,30,22,55,51,55v26,0,34,-12,50,-30r0,52v-63,37,-141,-9,-141,-77xm125,35r-42,54r-25,-13r35,-54","w":171},"\u00e9":{"d":"99,-176v55,0,86,40,82,100r-123,0v2,26,18,46,45,46v26,0,31,-13,46,-33r33,18v-16,29,-38,49,-80,50v-51,0,-85,-38,-85,-90v0,-52,31,-92,82,-91xm140,-109v-6,-43,-75,-37,-79,0r79,0xm159,-256r-64,58r-22,-13r49,-64","w":199},"\u00e8":{"d":"99,-176v55,0,86,40,82,100r-123,0v2,26,18,46,45,46v26,0,31,-13,46,-33r33,18v-16,29,-38,49,-80,50v-51,0,-85,-38,-85,-90v0,-52,31,-92,82,-91xm140,-109v-6,-43,-75,-37,-79,0r79,0xm44,-256r37,-19r48,64r-22,13","w":199},"\u00ea":{"d":"39,-218r62,-57r62,57r-27,20r-35,-33r-35,33xm99,-176v55,0,86,40,82,100r-123,0v2,26,18,46,45,46v26,0,31,-13,46,-33r33,18v-16,29,-38,49,-80,50v-51,0,-85,-38,-85,-90v0,-52,31,-92,82,-91xm140,-109v-6,-43,-75,-37,-79,0r79,0","w":199},"\u00eb":{"d":"99,-176v55,0,86,40,82,100r-123,0v2,26,18,46,45,46v26,0,31,-13,46,-33r33,18v-16,29,-38,49,-80,50v-51,0,-85,-38,-85,-90v0,-52,31,-92,82,-91xm140,-109v-6,-43,-75,-37,-79,0r79,0xm64,-200v-13,0,-25,-12,-25,-26v0,-13,12,-24,25,-24v13,0,25,11,25,24v0,14,-12,26,-25,26xm138,-200v-13,0,-26,-13,-26,-26v0,-13,13,-25,26,-24v13,0,25,12,25,24v0,13,-12,26,-25,26","w":199},"\u00ed":{"d":"65,-171r0,171r-40,0r0,-171r40,0xm107,-256r-59,58r-21,-13r44,-64","w":89},"\u00ec":{"d":"65,-171r0,171r-40,0r0,-171r40,0xm-17,-256r36,-19r44,64r-22,13","w":89},"\u00ee":{"d":"65,-171r0,171r-40,0r0,-171r40,0xm-14,-218r58,-57r60,57r-27,20r-33,-33r-32,33","w":89},"\u00ef":{"d":"65,-171r0,171r-40,0r0,-171r40,0xm13,-200v-13,0,-25,-12,-25,-26v0,-13,12,-24,25,-24v13,0,25,11,25,24v0,14,-12,26,-25,26xm77,-200v-13,0,-25,-12,-25,-26v0,-13,12,-24,25,-24v13,0,25,11,25,24v0,14,-12,26,-25,26","w":89},"\u00f1":{"d":"101,-140v-56,0,-30,88,-36,140r-40,0r0,-171r40,0r0,16v39,-42,107,-19,107,50r0,105r-39,0r0,-96v0,-30,-4,-44,-32,-44xm123,-201v-9,2,-45,-18,-56,-18v-7,0,-13,7,-20,19v-6,-9,-28,-15,-18,-27v11,-13,19,-24,40,-26v13,-1,45,19,55,19v7,0,14,-6,22,-19r22,19v-11,22,-26,33,-45,33","w":197},"\u00f3":{"d":"107,5v-51,0,-90,-41,-90,-92v0,-50,43,-89,91,-89v49,0,92,41,92,91v0,51,-43,90,-93,90xm108,-140v-31,0,-51,23,-51,54v0,33,20,55,51,56v31,0,51,-23,51,-55v0,-32,-20,-55,-51,-55xm167,-256r-64,58r-22,-13r49,-64","w":216},"\u00f2":{"d":"107,5v-51,0,-90,-41,-90,-92v0,-50,43,-89,91,-89v49,0,92,41,92,91v0,51,-43,90,-93,90xm108,-140v-31,0,-51,23,-51,54v0,33,20,55,51,56v31,0,51,-23,51,-55v0,-32,-20,-55,-51,-55xm52,-256r37,-19r48,64r-22,13","w":216},"\u00f4":{"d":"46,-218r62,-57r62,57r-27,20r-35,-33r-35,33xm107,5v-51,0,-90,-41,-90,-92v0,-50,43,-89,91,-89v49,0,92,41,92,91v0,51,-43,90,-93,90xm108,-140v-31,0,-51,23,-51,54v0,33,20,55,51,56v31,0,51,-23,51,-55v0,-32,-20,-55,-51,-55","w":216},"\u00f6":{"d":"107,5v-51,0,-90,-41,-90,-92v0,-50,43,-89,91,-89v49,0,92,41,92,91v0,51,-43,90,-93,90xm108,-140v-31,0,-51,23,-51,54v0,33,20,55,51,56v31,0,51,-23,51,-55v0,-32,-20,-55,-51,-55xm71,-200v-13,0,-25,-12,-25,-26v0,-13,12,-24,25,-24v13,0,25,11,25,24v0,14,-12,26,-25,26xm145,-200v-13,0,-26,-13,-26,-26v0,-13,13,-25,26,-24v13,0,25,12,25,24v0,13,-12,26,-25,26","w":216},"\u00f5":{"d":"139,-201v-9,2,-45,-18,-56,-18v-7,0,-13,7,-20,19v-6,-9,-28,-15,-18,-27v11,-13,19,-24,40,-26v13,-1,45,19,55,19v7,0,14,-6,22,-19r22,19v-11,22,-26,33,-45,33xm107,5v-51,0,-90,-41,-90,-92v0,-50,43,-89,91,-89v49,0,92,41,92,91v0,51,-43,90,-93,90xm108,-140v-31,0,-51,23,-51,54v0,33,20,55,51,56v31,0,51,-23,51,-55v0,-32,-20,-55,-51,-55","w":216},"\u00fa":{"d":"98,5v-47,0,-73,-25,-73,-77r0,-99r40,0v5,50,-19,141,33,141v53,0,29,-91,34,-141r39,0r0,99v1,50,-26,77,-73,77xm160,-256r-64,58r-22,-13r49,-64","w":196},"\u00f9":{"d":"98,5v-47,0,-73,-25,-73,-77r0,-99r40,0v5,50,-19,141,33,141v53,0,29,-91,34,-141r39,0r0,99v1,50,-26,77,-73,77xm39,-256r37,-19r48,64r-22,13","w":196},"\u00fb":{"d":"36,-218r62,-57r62,57r-27,20r-35,-33r-35,33xm98,5v-47,0,-73,-25,-73,-77r0,-99r40,0v5,50,-19,141,33,141v53,0,29,-91,34,-141r39,0r0,99v1,50,-26,77,-73,77","w":196},"\u00fc":{"d":"98,5v-47,0,-73,-25,-73,-77r0,-99r40,0v5,50,-19,141,33,141v53,0,29,-91,34,-141r39,0r0,99v1,50,-26,77,-73,77xm61,-200v-13,0,-25,-12,-25,-26v0,-13,12,-24,25,-24v13,0,25,11,25,24v0,14,-12,26,-25,26xm135,-200v-13,0,-26,-13,-26,-26v0,-13,13,-25,26,-24v13,0,25,12,25,24v0,13,-12,26,-25,26","w":196},"\u00df":{"d":"106,-266v-39,0,-41,31,-41,71r0,195r-40,0r0,-136r-14,0r0,-35r14,0v-6,-76,12,-131,81,-131v71,0,110,93,51,131v59,22,69,124,7,159v-19,11,-40,18,-65,18r0,-38v38,0,68,-23,68,-60v0,-38,-25,-54,-68,-57r0,-36v30,0,48,-13,48,-42v1,-23,-18,-39,-41,-39","w":223},"\u00d8":{"d":"47,-49v-72,-93,5,-228,115,-228v30,0,58,10,84,29r30,-30r23,23r-29,30v77,90,4,230,-109,230v-33,0,-63,-10,-90,-31r-29,29r-23,-23xm218,-221v-88,-60,-204,47,-141,143xm100,-54v89,71,211,-49,141,-144","w":321},"\u03a9":{"d":"66,0r0,208r368,0v-128,78,-221,167,-280,268v-59,101,-88,222,-88,364v0,212,67,388,202,529v135,142,303,213,505,213v200,0,368,-71,503,-213v135,-141,203,-317,203,-528v0,-143,-29,-264,-88,-365v-59,-101,-152,-190,-279,-268r366,0r0,-208r-614,0r0,186v249,141,373,352,373,635v0,135,-34,251,-103,348v-96,137,-216,205,-360,205v-133,0,-245,-54,-334,-161v-89,-107,-133,-241,-133,-402v0,-276,125,-484,375,-625r0,-186r-616,0","w":1544},"\u00e6":{"d":"150,-152v52,-53,159,-12,142,75r-123,0v1,26,19,47,45,47v18,0,33,-12,45,-35r34,19v-20,51,-102,71,-143,24v-30,45,-133,33,-133,-30v0,-52,66,-73,112,-47v6,-50,-50,-44,-88,-35r0,-37v46,-9,88,-8,109,19xm251,-109v-6,-42,-72,-41,-79,0r79,0xm127,-54v-4,-28,-70,-30,-72,1v2,33,72,31,72,-1","w":309},"\u00f8":{"d":"34,-32v-59,-80,42,-188,128,-127r27,-27r18,19r-26,26v47,59,0,149,-72,146v-22,0,-41,-6,-57,-18r-26,25r-18,-18xm133,-132v-45,-24,-94,24,-70,73xm81,-40v47,27,99,-23,71,-74","w":216},"\u0394":{"d":"51,0r592,1544r250,0r599,-1544r-1441,0xm382,216r774,0r-387,1046","w":1544},"\u00d5":{"d":"159,5v-75,0,-140,-64,-140,-142v0,-75,68,-140,143,-140v75,0,141,67,141,142v0,77,-67,140,-144,140xm161,-238v-54,0,-101,46,-101,102v0,56,47,103,100,103v55,0,101,-47,101,-103v0,-55,-45,-102,-100,-102xm183,-299v-9,2,-45,-18,-56,-18v-7,0,-13,6,-20,18v-6,-9,-28,-14,-18,-26v11,-13,19,-24,40,-26v14,-2,47,18,56,19v7,0,13,-6,21,-19r23,18v-11,22,-27,34,-46,34","w":321},"\u00f7":{"d":"17,-125r0,-33r188,0r0,33r-188,0xm111,-57v-13,0,-23,-12,-23,-24v0,-12,11,-22,23,-22v13,-1,23,11,23,23v0,12,-11,23,-23,23xm111,-179v-34,0,-26,-46,0,-46v12,0,23,11,23,23v0,12,-11,23,-23,23"},"\u00ff":{"d":"79,-32r-77,-139r46,0r52,98r49,-98r45,0r-137,264r-45,0xm61,-200v-13,0,-25,-12,-25,-26v0,-13,12,-24,25,-24v13,0,25,11,25,24v0,14,-12,26,-25,26xm135,-200v-13,0,-26,-13,-26,-26v0,-13,13,-25,26,-24v13,0,25,12,25,24v0,13,-12,26,-25,26","w":195},"\u00cd":{"d":"73,-271r0,271r-40,0r0,-271r40,0xm119,-344r-67,48r-20,-16r54,-57","w":106},"\u00ce":{"d":"73,-271r0,271r-40,0r0,-271r40,0xm-9,-317r62,-56r62,56r-27,21r-35,-33r-35,33","w":106},"\u00cf":{"d":"73,-271r0,271r-40,0r0,-271r40,0xm20,-299v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm86,-299v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25","w":106},"\u00cc":{"d":"73,-271r0,271r-40,0r0,-271r40,0xm-13,-344r34,-25r53,57r-19,16","w":106},"\u00d3":{"d":"159,5v-75,0,-140,-64,-140,-142v0,-75,68,-140,143,-140v75,0,141,67,141,142v0,77,-67,140,-144,140xm161,-238v-54,0,-101,46,-101,102v0,56,47,103,100,103v55,0,101,-47,101,-103v0,-55,-45,-102,-100,-102xm223,-344r-71,48r-20,-16r56,-57","w":321},"\u00d4":{"d":"159,5v-75,0,-140,-64,-140,-142v0,-75,68,-140,143,-140v75,0,141,67,141,142v0,77,-67,140,-144,140xm161,-238v-54,0,-101,46,-101,102v0,56,47,103,100,103v55,0,101,-47,101,-103v0,-55,-45,-102,-100,-102xm100,-317r62,-56r62,56r-27,21r-35,-33r-35,33","w":321},"\u00d2":{"d":"159,5v-75,0,-140,-64,-140,-142v0,-75,68,-140,143,-140v75,0,141,67,141,142v0,77,-67,140,-144,140xm161,-238v-54,0,-101,46,-101,102v0,56,47,103,100,103v55,0,101,-47,101,-103v0,-55,-45,-102,-100,-102xm102,-344r35,-25r56,57r-19,16","w":321},"\u00da":{"d":"133,5v-55,0,-100,-43,-100,-102r0,-174r40,0v8,89,-33,238,60,238v40,0,59,-26,59,-75r0,-163r41,0r0,174v2,59,-45,102,-100,102xm195,-344r-72,48r-19,-16r56,-57","w":265},"\u00db":{"d":"133,5v-55,0,-100,-43,-100,-102r0,-174r40,0v8,89,-33,238,60,238v40,0,59,-26,59,-75r0,-163r41,0r0,174v2,59,-45,102,-100,102xm71,-317r62,-56r62,56r-27,21r-35,-33r-35,33","w":265},"\u00d9":{"d":"133,5v-55,0,-100,-43,-100,-102r0,-174r40,0v8,89,-33,238,60,238v40,0,59,-26,59,-75r0,-163r41,0r0,174v2,59,-45,102,-100,102xm74,-344r34,-25r57,57r-20,16","w":265},"\u00d0":{"d":"242,-136v0,84,-56,140,-153,136r-56,0r0,-124r-25,0r0,-35r25,0r0,-112v124,-11,209,29,209,135xm201,-136v0,-67,-50,-103,-128,-97r0,74r59,0r0,35r-59,0r0,86v79,6,128,-30,128,-98","w":261},"\u00f0":{"d":"136,-172v-14,-25,-30,-46,-49,-64r-43,22r-12,-23r33,-17v-15,-7,-25,-16,-43,-21r16,-25v21,7,40,18,58,29r42,-22r14,23r-33,18v42,37,79,97,81,163v2,52,-38,94,-91,94v-50,0,-92,-40,-92,-90v0,-59,57,-105,119,-87xm108,-140v-31,0,-51,23,-51,54v0,33,20,55,51,56v31,0,51,-23,51,-55v0,-32,-20,-55,-51,-55","w":216},"\u00dd":{"d":"87,-117r-88,-154r47,0r62,108r62,-108r47,0r-89,154r0,117r-41,0r0,-117xm179,-344r-72,48r-19,-16r56,-57","w":216},"\u00fd":{"d":"79,-32r-77,-139r46,0r52,98r49,-98r45,0r-137,264r-45,0xm165,-256r-64,58r-22,-13r49,-64","w":195},"\u00de":{"d":"185,-153v2,58,-47,87,-112,81r0,72r-40,0r0,-271r40,0r0,38v72,-6,110,23,112,80xm73,-110v43,3,72,-9,72,-44v0,-32,-29,-45,-72,-42r0,86","w":194},"\u00fe":{"d":"199,-85v0,73,-84,121,-134,66r0,112r-40,0r0,-390r40,0r0,144v51,-54,134,-5,134,68xm111,-30v28,0,48,-26,48,-55v0,-30,-19,-55,-48,-55v-30,0,-49,25,-49,55v0,30,19,55,49,55","w":215},"\u00d7":{"d":"31,-199r22,-22r58,58r58,-58r22,22r-58,58r58,58r-22,22r-58,-58r-58,58r-22,-22r58,-58"}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990-2008 ParaType, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Futura is a registered trade mark of BauerTypes, S.L.
 * 
 * Description:
 * Futura was designed for Bauer company in 1927 by Paul Renner. This is a sans
 * serif face based on geometrical shapes, representative of the aesthetics of the
 * Bauhaus school of the 1920s-30s. Issued by the Bauer Foundry in a wide range of
 * weights and widths, Futura became a very popular choice for text and display
 * setting. Originally Cyrillic version of eight styles was developed at ParaType
 * (ParaGraph) in 1995 by Vladimir Yefimov. Additional Cyrillic styles were
 * developed for ParaType in 2007 by Isabella Chaeva. Simultaneously the old eight
 * styles were partly revised to match the whole family. Now the new Futura is an
 * uniform type system consisted of seven weights with corresponding obliques plus
 * eight condensed styles. All these fonts are coordinated in letterforms, metrics,
 * and weights to better working together.
 * 
 * Manufacturer:
 * ParaType, Inc.
 * 
 * Designer:
 * Paul Renner,Vladimir Yefimov, Isabella Chaeva
 * 
 * Vendor URL:
 * http://www.paratype.com
 * 
 * License information:
 * http://www.paratype.com/help/license/paratype.asp
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Futura New Bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 9 2 2 2 4 2 2 3","ascent":"288","descent":"-72","x-height":"5","bbox":"-23.0473 -340 365 90","underline-thickness":"18","underline-position":"-18","stemh":"53","stemv":"61","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":83},"!":{"d":"91,-82r-60,0r0,-158r60,0r0,158xm99,-31v0,23,-18,38,-37,38v-17,0,-39,-14,-38,-38v1,-49,75,-48,75,0","w":122},"\"":{"d":"67,-240r-9,96r-35,0r-8,-96r52,0xm134,-240r-9,96r-34,0r-9,-96r52,0","w":148},"#":{"d":"171,-108r36,0r-6,42r-36,0r-11,66r-48,0r11,-66r-31,0r-10,66r-48,0r11,-66r-37,0r7,-42r36,0r5,-30r-36,0r6,-41r37,0r9,-61r48,0r-10,61r30,0r10,-61r48,0r-10,61r36,0r-6,41r-36,0xm123,-108r5,-30r-31,0r-4,30r30,0","w":216},"$":{"d":"89,-101v-83,-18,-62,-132,7,-138r0,-40r36,0r0,40v12,1,30,4,54,18r-23,46v-12,-19,-86,-23,-63,15v34,18,97,27,95,82v-2,54,-26,64,-63,78r0,40r-36,0r0,-39v-33,-1,-53,-11,-75,-29r25,-48v18,22,79,45,88,3v-2,-19,-28,-24,-45,-28","w":216},"%":{"d":"143,-184v3,39,-36,59,-66,59v-30,0,-65,-24,-65,-58v0,-35,36,-63,65,-60v45,5,62,17,66,59xm76,0r139,-240r31,0r-139,240r-31,0xm105,-184v0,-13,-12,-27,-27,-27v-16,0,-27,12,-27,27v1,15,10,28,27,27v14,-1,27,-12,27,-27xm272,-56v0,-13,-12,-27,-27,-27v-16,0,-27,12,-27,27v1,15,11,27,27,27v14,0,27,-12,27,-27xm310,-56v3,39,-36,59,-66,59v-30,0,-65,-24,-65,-58v0,-35,36,-63,65,-60v45,5,62,17,66,59","w":322},"&":{"d":"199,-181v2,28,-23,50,-45,58r31,31v10,-10,21,-21,31,-34r35,34v-10,12,-20,24,-32,35r53,57r-78,0r-20,-22v-32,24,-63,27,-81,27v-34,0,-82,-24,-79,-67v3,-46,27,-56,58,-70v-10,-13,-22,-27,-23,-48v-2,-37,46,-68,75,-66v51,3,72,28,75,65xm79,-72v0,27,34,31,60,12r-37,-40v-3,1,-23,11,-23,28xm129,-203v-31,2,-19,40,-2,50v22,-4,34,-49,2,-50","w":272},"'":{"d":"67,-240r-9,96r-35,0r-8,-96r52,0","w":81,"k":{"\u00d8":-14,"\u00d6":-14,"\u00d5":-14,"\u00d4":-14,"\u00d3":-14,"\u00d2":-14,"\u00c7":-14,"S":-14,"Q":-18,"O":-14,"G":-14,"C":-14}},"(":{"d":"111,-241v-46,72,-51,214,0,287r-41,22v-61,-79,-58,-257,0,-330","w":127},")":{"d":"17,46v50,-75,47,-213,0,-287r41,-21v56,79,62,251,0,330","w":127},"*":{"d":"63,-238r37,16r-4,-40r40,0r-4,40r38,-16r12,37r-39,9r26,31r-31,23r-22,-34r-21,34r-31,-23r26,-30r-39,-10","w":232},"+":{"d":"12,-101r0,-43r55,0r0,-55r46,0r0,55r55,0r0,43r-55,0r0,55r-46,0r0,-55r-55,0"},",":{"d":"-3,54r45,-114r54,0r-62,114r-37,0","w":149},"-":{"d":"18,-73r0,-48r91,0r0,48r-91,0","w":127,"k":{"Y":13,"\u00dd":13,"A":-18,"\u00c0":-18,"\u00c1":-18,"\u00c2":-18,"\u00c3":-18,"\u00c4":-18,"\u00c5":-18,"\u00c6":-18}},".":{"d":"92,-31v0,23,-18,38,-37,38v-17,0,-39,-14,-38,-38v1,-49,75,-48,75,0","w":109},"\/":{"d":"-11,68r184,-330r47,0r-184,330r-47,0","w":241},"0":{"d":"148,-119v0,-29,-9,-71,-40,-71v-30,0,-40,40,-40,70v0,26,9,71,40,71v30,0,40,-41,40,-70xm108,-246v61,0,102,56,102,126v0,70,-40,125,-102,125v-61,0,-102,-55,-102,-125v0,-70,41,-126,102,-126","w":216,"k":{"7":9,"4":-9,"1":27}},"1":{"d":"84,0r0,-187r-34,0r0,-53r97,0r0,240r-63,0","w":216,"k":{"9":36,"8":31,"7":40,"6":31,"5":45,"4":40,"3":40,"2":45,"1":58,"0":31,".":22,",":45}},"2":{"d":"14,-153v4,-62,35,-93,94,-93v36,0,57,14,68,25v10,10,23,28,23,59v1,52,-47,81,-76,109r79,0r0,53r-193,0v35,-38,84,-85,111,-125v14,-20,21,-64,-12,-67v-23,-1,-29,22,-30,39r-64,0","w":216,"k":{"7":9,"1":31}},"3":{"d":"202,-73v2,81,-105,100,-162,54v-13,-10,-27,-32,-30,-63r64,0v1,18,13,34,34,33v21,0,32,-14,32,-30v0,-23,-22,-32,-43,-26r0,-43v21,4,32,-9,33,-23v0,-14,-9,-23,-24,-23v-17,0,-24,12,-25,27r-58,0v2,-51,41,-79,86,-79v34,0,83,27,80,68v-1,20,-9,41,-26,48v27,11,38,26,39,57","w":216,"k":{"7":18,"1":36}},"4":{"d":"178,-240r0,147r29,0r0,48r-29,0r0,45r-58,0r0,-45r-116,0r0,-40r92,-155r82,0xm64,-93r56,0r0,-98","w":216,"k":{"7":18,"4":-9,"1":27}},"5":{"d":"131,-83v0,-47,-66,-43,-99,-28r21,-129r125,0r0,53r-83,0r-4,26v69,-3,101,16,104,79v4,95,-120,104,-178,66r9,-59v25,21,33,26,65,28v23,1,40,-13,40,-36","w":216,"k":{"7":18,"1":41}},"6":{"d":"108,5v-69,-8,-101,-24,-101,-85v0,-70,58,-114,89,-160r71,0r-68,82v52,-28,113,20,110,72v7,49,-57,96,-101,91xm68,-84v0,22,21,42,39,40v25,-2,35,-16,38,-38v3,-17,-24,-40,-38,-37v-18,0,-39,18,-39,35","w":216,"k":{"7":18,"4":-14,"1":36}},"7":{"d":"21,0r109,-187r-100,0r0,-53r197,0r-137,240r-69,0","w":216,"k":{":":22,"8":22,"7":13,"6":27,"5":22,"4":22,"3":22,"2":13,"1":36,".":45,",":54}},"8":{"d":"190,-179v0,30,-18,45,-40,53v26,5,54,37,50,60v-7,45,-23,71,-92,71v-67,0,-92,-26,-92,-71v0,-30,23,-54,48,-60v-74,-32,-28,-127,46,-120v44,3,80,20,80,67xm134,-177v0,-12,-11,-27,-25,-27v-16,0,-27,13,-27,27v0,33,52,32,52,0xm108,-44v38,0,35,-57,0,-57v-14,0,-29,14,-29,28v0,14,13,30,29,29","w":216,"k":{"7":13,"1":31}},"9":{"d":"109,-246v76,0,92,34,101,88v-7,76,-57,109,-90,158r-71,0r68,-81v-54,31,-115,-26,-111,-72v5,-58,34,-93,103,-93xm149,-158v-1,-21,-16,-38,-39,-38v-18,0,-42,19,-40,39v1,21,19,36,40,36v19,0,40,-17,39,-37","w":216,"k":{"7":13,"1":22,"0":-9}},":":{"d":"92,-129v-1,48,-73,50,-75,0v1,-49,75,-48,75,0xm92,-32v0,47,-74,50,-75,0v1,-49,75,-48,75,0","w":109},";":{"d":"-3,54r45,-114r54,0r-62,114r-37,0xm104,-129v-1,48,-73,50,-75,0v1,-49,75,-48,75,0","w":141},"<":{"d":"12,-140r156,-79r0,46r-107,53r107,53r0,46r-156,-80r0,-39"},"=":{"d":"12,-133r0,-41r156,0r0,41r-156,0xm12,-71r0,-41r156,0r0,41r-156,0"},">":{"d":"168,-100r-156,79r0,-46r107,-53r-107,-53r0,-46r156,79r0,40"},"?":{"d":"183,-171v0,33,-26,63,-58,69r0,19r-59,0r0,-58v25,5,55,-6,55,-30v0,-13,-10,-24,-24,-24v-15,0,-21,11,-22,24r-63,0v6,-50,30,-75,84,-75v54,0,87,27,87,75xm134,-32v0,47,-73,50,-74,0v1,-49,75,-48,74,0","w":196},"@":{"d":"69,-109v0,-50,62,-100,98,-54r3,-14r32,0r-16,83v0,3,0,12,8,12v22,-2,29,-34,30,-56v1,-47,-37,-78,-84,-77v-48,1,-97,37,-97,98v0,80,85,114,162,82r7,29v-31,10,-58,10,-73,10v-60,0,-127,-53,-127,-122v0,-73,63,-126,127,-126v58,0,113,41,113,106v0,49,-54,116,-87,63v-27,43,-96,21,-96,-34xm129,-85v29,1,45,-60,8,-62v-32,-1,-46,60,-8,62","w":263},"A":{"d":"186,0r-14,-40r-87,0r-17,40r-65,0r92,-240r68,0r90,240r-67,0xm102,-88r53,0r-27,-78","w":255,"k":{"v":9,"J":-4,"*":45}},"B":{"d":"208,-70v0,86,-99,68,-183,70r0,-240v76,2,160,-18,160,64v0,21,-10,42,-26,48v31,4,49,23,49,58xm129,-169v0,-20,-18,-24,-42,-23r0,47v21,3,42,-4,42,-24xm145,-74v0,-28,-31,-25,-58,-25r0,50v28,0,58,4,58,-25","w":222,"k":{"\u00dd":18,"\u00c7":5,"Y":18,"X":18,"V":14,"T":14,"C":5}},"C":{"d":"79,-118v0,56,69,91,119,38r0,74v-97,38,-184,-27,-184,-112v0,-89,88,-154,184,-114r0,75v-49,-58,-119,-17,-119,39","w":212,"k":{"T":-9,"G":9}},"D":{"d":"202,-207v78,77,23,209,-90,207r-87,0r0,-240v77,4,125,-18,177,33xm171,-120v1,-48,-35,-74,-84,-67r0,134v46,2,83,-11,84,-67","w":250,"k":{"x":13,"X":13,"M":4,"J":22,"V":9,"Y":13,"\u00dd":13,"A":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00c6":13,"Z":13}},"E":{"d":"162,-240r0,53r-75,0r0,40r71,0r0,53r-71,0r0,41r75,0r0,53r-137,0r0,-240r137,0","w":176,"k":{"T":-9}},"F":{"d":"163,-240r0,53r-76,0r0,40r69,0r0,53r-69,0r0,94r-62,0r0,-240r138,0","w":174,"k":{"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00c6":14,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u00ad":-18,"z":9,"x":18,"t":-4,"s":14,"q":4,"f":-4,"e":7,"d":7,"c":7,"a":7,"S":9,"J":32,"A":14,"-":-18}},"G":{"d":"79,-120v0,54,52,89,98,59v6,-5,13,-13,15,-26r-52,0r0,-49r124,0v7,81,-49,138,-123,138v-43,0,-73,-15,-92,-35v-18,-18,-35,-47,-35,-87v0,-131,190,-170,237,-60r-59,24v-8,-22,-27,-36,-51,-36v-36,-1,-62,37,-62,72","w":278,"k":{"X":9,"J":13,"V":9,"Y":13,"\u00dd":13,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"Z":22}},"H":{"d":"87,-240r0,90r90,0r0,-90r63,0r0,240r-63,0r0,-97r-90,0r0,97r-62,0r0,-240r62,0","w":265},"I":{"d":"25,-240r62,0r0,240r-62,0r0,-240","w":112},"J":{"d":"64,-48v14,1,18,-16,17,-28r0,-164r62,0r0,165v13,72,-104,114,-140,45r40,-42v2,10,8,24,21,24","w":168,"k":{"x":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u00c6":9,"z":9}},"K":{"d":"87,-240r0,99r77,-99r77,0r-96,114r104,126r-80,0r-82,-104r0,104r-62,0r0,-240r62,0","w":252,"k":{"v":22,"q":18,"p":4,"Q":18,"J":9,"w":22,"y":18,"\u00fd":18,"\u00ff":18,"T":4,"C":22,"\u00c7":22,"S":18,"V":9,"G":22,"a":18,"\u00e0":18,"\u00e1":18,"\u00e2":18,"\u00e3":18,"\u00e4":18,"\u00e5":18,"\u00e6":18,"c":18,"\u00e7":18,"d":13,"e":13,"\u00e8":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"g":9,"o":13,"\u00f2":13,"\u00f3":13,"\u00f4":13,"\u00f5":13,"\u00f6":13,"\u00f8":13,"s":9,"t":13,"u":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"O":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13}},"L":{"d":"25,-240r62,0r0,187r75,0r0,53r-137,0r0,-240","w":169,"k":{"\u00bb":-13,"v":18,"Q":13,"*":27,"w":13,"y":18,"\u00fd":18,"\u00ff":18,"T":22,"C":13,"\u00c7":13,"S":9,"V":31,"Y":27,"\u00dd":27,"-":-18,"\u00ad":-18,"G":11,"O":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"W":18}},"M":{"d":"76,0r-62,0r41,-240r62,0r48,128r52,-128r62,0r36,240r-62,0r-18,-138r-58,138r-25,0r-55,-138","w":329,"k":{"\u00ff":9,"\u00fd":9,"\u00dd":14,"y":9,"w":9,"Y":14}},"N":{"d":"87,0r-62,0r0,-240r62,0r115,147r0,-147r63,0r0,240r-63,0r-115,-147r0,147","w":289},"O":{"d":"147,-246v72,0,132,57,132,126v0,68,-60,125,-132,125v-72,0,-133,-57,-133,-125v0,-68,61,-126,133,-126xm215,-120v0,-38,-33,-65,-68,-65v-35,0,-70,31,-68,66v3,42,28,64,68,64v41,0,68,-28,68,-65","w":293,"k":{"x":9,"X":18,"M":5,"J":14,"V":9,"Y":13,"\u00dd":13,"Z":9}},"P":{"d":"125,-240v68,-7,117,85,61,140v-28,28,-56,19,-99,20r0,80r-62,0r0,-240r100,0xm143,-159v0,-25,-25,-36,-56,-31r0,60v29,4,56,-4,56,-29","w":215,"k":{"\u00ff":-4,"\u00fd":-4,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00dd":9,"\u00c6":27,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"\u00ad":-18,"y":-4,"x":9,"w":-5,"v":-4,"t":-5,"s":9,"q":9,"o":9,"g":9,"e":4,"d":9,"c":4,"a":4,"Z":9,"Y":9,"X":18,"T":-5,"M":13,"J":36,"A":27,".":13,"-":-18,",":13}},"Q":{"d":"279,-119v0,32,-13,63,-32,81r42,42r-58,9r-20,-23v-21,12,-41,15,-63,15v-89,-1,-131,-55,-134,-126v-3,-72,61,-126,133,-125v71,1,133,48,132,127xm80,-117v1,44,41,71,86,59r-39,-38r59,-7r17,18v33,-44,-11,-100,-56,-100v-35,0,-68,32,-67,68","w":293,"k":{"\u00dd":5,"Y":5}},"R":{"d":"202,-165v0,36,-23,62,-53,67r76,98r-78,0r-60,-92r0,92r-62,0r0,-240r97,0v37,-6,80,33,80,75xm138,-162v0,-23,-21,-33,-51,-30r0,60v25,2,51,-5,51,-30","w":225,"k":{"x":-9,"J":9,"T":9,"V":13,"Y":18,"\u00dd":18}},"S":{"d":"176,-122v48,55,-14,136,-78,127v-35,-5,-51,-5,-84,-27r27,-50v16,30,106,34,79,-13v-21,-15,-65,-12,-82,-37v-38,-57,0,-124,70,-124v24,0,51,8,74,20r-25,49v-19,-15,-33,-17,-41,-17v-24,-1,-43,33,-3,42v25,6,45,10,63,30","w":205,"k":{"X":9,"J":9,"S":9,"Y":9,"\u00dd":9,"W":13}},"T":{"d":"167,-187r-51,0r0,187r-63,0r0,-187r-50,0r0,-53r164,0r0,53","w":169,"k":{"\u00ef":-4,"\u00ee":-4,"\u00ed":-4,"\u00ec":-4,"x":22,"v":18,"q":13,"k":-4,"j":-4,"J":18,"w":18,"y":13,"\u00fd":13,"\u00ff":13,"T":-16,"Y":-9,"\u00dd":-9,"A":11,"\u00c0":11,"\u00c1":11,"\u00c2":11,"\u00c3":11,"\u00c4":11,"\u00c5":11,"\u00c6":11,"z":18,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"c":9,"\u00e7":9,"d":18,"e":18,"\u00e8":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"g":13,"o":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"s":18,"i":-4,"l":-4}},"U":{"d":"128,5v-73,0,-103,-48,-103,-107r0,-138r62,0r0,142v-3,20,16,49,42,49v28,0,43,-31,43,-54r0,-137r62,0r0,138v7,53,-42,107,-106,107","w":259},"V":{"d":"0,-240r68,0r58,146r58,-146r68,0r-103,240r-48,0","w":251,"k":{"x":18,"v":13,"q":18,"m":13,"M":13,"J":27,"w":18,"y":13,"\u00fd":13,"\u00ff":13,"A":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c4":18,"\u00c5":18,"\u00c6":18,"z":18,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"c":18,"\u00e7":18,"d":18,"e":13,"\u00e8":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"g":13,"o":13,"\u00f2":13,"\u00f3":13,"\u00f4":13,"\u00f5":13,"\u00f6":13,"\u00f8":13,"s":27,"t":9,"u":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"O":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"\u00d6":9,"\u00d8":9,"h":4,"n":4,"\u00f1":4,"r":13,",":18,".":18}},"W":{"d":"0,-240r65,0r42,155r51,-155r49,0r48,155r45,-155r65,0r-77,240r-63,0r-44,-139r-46,139r-63,0","w":365,"k":{"x":18,"J":23,"-":-23,"\u00ad":-23,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"z":14,"a":14,"\u00e0":14,"\u00e1":14,"\u00e2":14,"\u00e3":14,"\u00e4":14,"\u00e5":14,"\u00e6":14,"c":14,"\u00e7":14,"d":14,"e":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"g":9,"o":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"s":9}},"X":{"d":"0,0r94,-128r-77,-112r77,0r36,62r37,-62r76,0r-78,112r91,128r-76,0r-51,-78r-54,78r-75,0","w":255,"k":{"\u00ff":14,"\u00fd":14,"\u00fc":5,"\u00fb":5,"\u00fa":5,"\u00f9":5,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":14,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00d8":14,"\u00d6":14,"\u00d5":14,"\u00d4":14,"\u00d3":14,"\u00d2":14,"\u00c7":18,"y":14,"x":-9,"w":18,"v":18,"u":5,"q":9,"p":9,"o":9,"g":5,"e":9,"d":14,"c":9,"a":14,"S":14,"Q":14,"O":14,"G":9,"C":18}},"Y":{"d":"82,0r0,-115r-86,-125r74,0r46,65r43,-65r76,0r-90,125r0,115r-63,0","w":230,"k":{"\u00ae":9,"\u00ab":23,"\u00a9":14,"x":32,"v":18,"q":32,"p":18,"m":23,"Q":13,"M":14,"J":41,".":31,"w":18,"y":23,"\u00fd":23,"\u00ff":23,"T":-13,"C":18,"\u00c7":18,"S":18,"V":-14,"-":13,"\u00ad":13,"G":9,"A":23,"\u00c0":23,"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c4":23,"\u00c5":23,"\u00c6":23,"z":27,"a":23,"\u00e0":23,"\u00e1":23,"\u00e2":23,"\u00e3":23,"\u00e4":23,"\u00e5":23,"\u00e6":23,"c":27,"\u00e7":27,"d":36,"e":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"g":32,"o":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"s":36,"t":9,"u":23,"\u00f9":23,"\u00fa":23,"\u00fb":23,"\u00fc":23,"O":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"W":-13,"h":18,"n":18,"\u00f1":18,"r":23,",":31,":":18,";":18}},"Z":{"d":"222,-240r-113,187r101,0r0,53r-205,0r113,-187r-94,0r0,-53r198,0","w":227,"k":{"v":18,"q":9,"Q":13,"M":4,"w":13,"y":13,"\u00fd":13,"\u00ff":13,"C":13,"\u00c7":13,"S":9,"G":9,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u00e5":9,"\u00e6":9,"c":13,"\u00e7":13,"d":9,"e":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"o":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"s":4,"t":13,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"O":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"\u00d6":9,"\u00d8":9}},"[":{"d":"107,-229r-32,0r0,263r32,0r0,34r-78,0r0,-330r78,0r0,33","w":121},"\\":{"d":"253,68r-47,0r-184,-330r47,0","w":241},"]":{"d":"47,-229r-33,0r0,-33r79,0r0,330r-79,0r0,-34r33,0r0,-263","w":121},"^":{"d":"90,-203r-40,84r-48,0r57,-121r62,0r58,121r-49,0"},"_":{"d":"0,64r0,-47r180,0r0,47r-180,0"},"`":{"d":"90,-187r-55,-49r36,-26r46,55"},"a":{"d":"13,-79v2,-56,32,-87,83,-87v26,0,41,13,48,21r0,-16r58,0r0,161r-58,0r0,-18v-48,57,-133,4,-131,-61xm146,-81v0,-17,-14,-37,-37,-36v-16,-3,-38,20,-37,36v2,18,16,38,37,37v19,-1,36,-13,37,-37","w":221,"k":{"Y":18,"\u00dd":18}},"b":{"d":"208,-81v0,68,-78,119,-131,63r0,18r-57,0r0,-262r57,0r0,117v43,-47,131,-8,131,64xm76,-81v-1,20,16,37,37,37v17,0,38,-20,36,-36v-2,-22,-12,-36,-36,-37v-22,-1,-37,16,-37,36","w":221,"k":{"x":9,"v":9,"J":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"T":13,"V":22,"Y":36,"\u00dd":36,"A":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00c6":13,"s":11,"W":13}},"c":{"d":"72,-80v0,33,41,53,69,28r0,48v-65,28,-128,-13,-128,-75v0,-62,65,-107,128,-78r0,48v-25,-22,-69,-4,-69,29","w":154,"k":{"f":-7,"V":14,"Y":18,"\u00dd":18,"t":-4}},"d":{"d":"13,-81v0,-71,88,-112,131,-64r0,-117r58,0r0,262r-58,0r0,-18v-53,58,-131,3,-131,-63xm72,-80v-2,16,20,36,37,36v21,0,38,-17,37,-37v-1,-19,-15,-37,-37,-36v-24,1,-34,16,-37,37","w":221},"e":{"d":"13,-80v0,-79,94,-114,152,-64v27,23,25,49,25,74r-119,0v-5,33,46,49,62,20r55,0v-10,30,-32,56,-85,55v-45,0,-90,-25,-90,-85xm138,-103v-6,-32,-62,-36,-66,0r66,0","w":203,"k":{"T":9,"V":13,"Y":27,"\u00dd":27,"-":-23,"\u00ad":-23}},"f":{"d":"122,-211v-34,-20,-45,12,-40,50r40,0r0,47r-40,0r0,114r-58,0r0,-114r-20,0r0,-47r20,0v-11,-71,35,-123,98,-100r0,50","w":124,"k":{"\u00ef":-4,"\u00ee":-4,"\u00ed":-4,"\u00ec":-4,"v":-7,"h":-4,"f":-11,"b":-4,"Q":-9,"J":13,"w":-7,"y":-7,"\u00fd":-7,"\u00ff":-7,"C":-5,"\u00c7":-5,"G":-7,"A":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00c6":13,"t":-7,"O":-7,"\u00d2":-7,"\u00d3":-7,"\u00d4":-7,"\u00d5":-7,"\u00d6":-7,"\u00d8":-7,"i":-4,"l":-4}},"g":{"d":"13,-78v0,-68,75,-121,130,-66r0,-17r58,0r0,151v0,24,-1,47,-22,67v-52,50,-150,24,-164,-36r64,0v13,34,72,8,64,-23r0,-16v-54,52,-130,3,-130,-60xm146,-81v0,-18,-16,-37,-37,-37v-19,0,-38,22,-37,37v0,18,19,37,37,37v19,0,38,-19,37,-37","w":220,"k":{"V":14,"Y":27,"\u00dd":27}},"h":{"d":"108,-120v-47,-2,-27,75,-31,120r-57,0r0,-262r57,0r0,121v8,-13,33,-24,52,-24v81,0,60,89,62,165r-57,0v-5,-44,16,-118,-26,-120","w":210,"k":{"\u00ef":9,"\u00ee":9,"\u00ed":9,"\u00ec":9,"Q":9,"T":9,"C":9,"\u00c7":9,"V":18,"Y":23,"\u00dd":23,"G":9,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"c":14,"\u00e7":14,"d":9,"g":9,"s":5,"u":9,"\u00f9":9,"\u00fa":9,"\u00fb":9,"\u00fc":9,"O":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"\u00d6":9,"\u00d8":9,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"W":9,"i":9,"r":9}},"i":{"d":"20,-161r57,0r0,161r-57,0r0,-161xm16,-228v0,-18,15,-32,33,-32v18,0,32,14,32,32v0,18,-14,33,-32,33v-18,0,-33,-15,-33,-33","w":96},"j":{"d":"20,-161r57,0r0,243r-57,0r0,-243xm16,-228v0,-18,15,-32,33,-32v18,0,32,14,32,32v0,18,-14,33,-32,33v-18,0,-33,-15,-33,-33","w":96},"k":{"d":"20,-262r57,0r0,159r55,-58r78,0r-76,74r82,87r-80,0r-59,-66r0,66r-57,0r0,-262","w":216,"k":{"\u00ef":9,"\u00ee":9,"\u00ed":9,"\u00ec":9,"Q":9,"T":9,"C":9,"\u00c7":9,"V":18,"Y":23,"\u00dd":23,"G":9,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"c":14,"\u00e7":14,"d":9,"g":9,"s":5,"u":9,"\u00f9":9,"\u00fa":9,"\u00fb":9,"\u00fc":9,"O":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"\u00d6":9,"\u00d8":9,"U":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"W":9,"i":9,"r":9}},"l":{"d":"20,-262r57,0r0,262r-57,0r0,-262","w":96},"m":{"d":"103,-121v-43,7,-21,74,-26,121r-57,0r0,-161r57,0r0,20v27,-37,88,-26,102,7v19,-33,66,-41,100,-15v30,37,9,93,15,149r-57,0v-5,-42,17,-115,-24,-120v-43,6,-23,72,-27,120r-58,0v-5,-43,17,-117,-25,-121","w":314,"k":{"\u00dd":27,"Y":27,"V":18,"T":9}},"n":{"d":"108,-120v-49,0,-26,75,-31,120r-57,0r0,-161r57,0r0,20v42,-51,114,-19,114,39r0,102r-57,0v-5,-47,16,-120,-26,-120","w":210,"k":{"T":14,"V":18,"Y":32,"\u00dd":32}},"o":{"d":"147,-81v0,-19,-17,-36,-37,-36v-20,0,-38,17,-37,36v1,21,17,37,37,37v19,1,37,-18,37,-37xm13,-81v7,-60,33,-85,97,-85v36,0,59,13,72,26v12,12,25,30,25,59v0,48,-50,92,-97,86v-43,6,-103,-38,-97,-86","w":219,"k":{"x":9,"T":9,"V":22,"Y":27,"\u00dd":27}},"p":{"d":"208,-81v0,68,-73,117,-131,66r0,97r-57,0r0,-243r57,0r0,18v10,-13,26,-23,50,-23v52,0,81,32,81,85xm149,-80v0,-18,-15,-37,-36,-37v-21,0,-37,18,-37,37v0,19,17,36,37,36v21,0,35,-16,36,-36","w":221,"k":{"\u00dd":22,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"Y":22,"X":22,"V":13,"T":13,"A":9}},"q":{"d":"13,-81v-4,-73,86,-112,131,-62r0,-18r58,0r0,243r-58,0r0,-97v-18,19,-40,20,-50,20v-41,-3,-79,-25,-81,-86xm146,-80v0,-19,-16,-37,-37,-37v-21,0,-37,19,-37,37v0,20,16,36,37,36v20,0,37,-17,37,-36","w":221,"k":{"\u00dd":22,"Y":22,"V":18}},"r":{"d":"117,-114v-49,-1,-41,60,-40,114r-57,0r0,-161r57,0r0,26v12,-22,32,-30,64,-28r0,55v-3,-1,-10,-6,-24,-6","w":147,"k":{"f":-9,"J":23,"y":-9,"\u00fd":-9,"\u00ff":-9,"T":14,"V":18,"Y":18,"\u00dd":18,"-":-31,"\u00ad":-31,"A":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c4":18,"\u00c5":18,"\u00c6":18,"t":-5}},"s":{"d":"150,-55v0,43,-49,60,-75,60v-14,0,-37,-1,-65,-18r20,-40v12,8,28,16,46,16v9,1,24,-10,14,-20v-26,-12,-65,-8,-68,-51v-4,-60,82,-68,124,-48r-20,37v-14,-13,-65,-8,-41,12v30,7,65,15,65,52","w":159,"k":{"T":13,"V":13,"Y":27,"\u00dd":27,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u00c6":9}},"t":{"d":"116,-114r-32,0r0,114r-58,0r0,-114r-18,0r0,-47r18,0r0,-53r58,0r0,53r32,0r0,47","w":118,"k":{"v":-4,"f":-14,"X":9,"Q":-5,"J":13,"w":-4,"y":-9,"\u00fd":-9,"\u00ff":-9,"V":9,"Y":13,"\u00dd":13,"G":-5,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u00c6":9,"t":-9,"O":-9,"\u00d2":-9,"\u00d3":-9,"\u00d4":-9,"\u00d5":-9,"\u00d6":-9,"\u00d8":-9}},"u":{"d":"108,5v-38,5,-88,-20,-88,-65r0,-101r57,0v5,48,-17,118,29,120v46,1,24,-73,29,-120r58,0r0,101v6,39,-50,73,-85,65","w":212,"k":{"X":14,"J":5,"V":9,"Y":18,"\u00dd":18,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u00c6":9}},"v":{"d":"0,-161r64,0r39,83r39,-83r64,0r-84,161r-39,0","w":206,"k":{"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00dd":18,"\u00c6":9,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"\u00ad":-18,"x":9,"e":9,"Y":18,"X":18,"V":13,"J":22,"A":9,"-":-18}},"w":{"d":"0,-161r64,0r39,85r40,-85r36,0r40,88r41,-88r64,0r-85,161r-38,0r-41,-89r-38,89r-39,0","w":323,"k":{"X":18,"J":18,"T":14,"V":9,"Y":18,"\u00dd":18,"A":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c4":18,"\u00c5":18,"\u00c6":18,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"O":-9,"\u00d2":-9,"\u00d3":-9,"\u00d4":-9,"\u00d5":-9,"\u00d6":-9,"\u00d8":-9}},"x":{"d":"0,0r80,-87r-65,-74r75,0r28,33r28,-33r75,0r-67,74r81,87r-77,0r-41,-48r-41,48r-76,0","w":234,"k":{"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00dd":27,"\u00d8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c7":9,"e":14,"a":5,"Y":27,"V":22,"T":18,"Q":9,"O":13,"G":13,"C":9}},"y":{"d":"24,82r54,-104r-78,-139r67,0r43,83r42,-83r65,0r-129,243r-64,0","w":217,"k":{"f":-5,"X":18,"J":27,"T":14,"C":9,"\u00c7":9,"V":14,"Y":23,"\u00dd":23,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"c":9,"\u00e7":9,"s":13,"t":-5}},"z":{"d":"179,-161r-75,114r67,0r0,47r-164,0r76,-114r-65,0r0,-47r161,0","w":186,"k":{"T":18,"V":18,"Y":27,"\u00dd":27}},"{":{"d":"88,-98v7,1,26,27,21,45v6,37,-22,86,36,79r0,41r-33,1v-77,-7,-49,-64,-49,-123v0,-8,-1,-22,-20,-25r0,-40v39,-10,13,-54,20,-90v0,-19,0,-52,49,-52r33,1r0,41v-75,-15,-7,101,-57,122"},"|":{"d":"67,90r0,-360r46,0r0,360r-46,0"},"}":{"d":"100,-98v-24,-8,-26,-62,-22,-102v2,-17,-10,-21,-35,-20r0,-41r33,-1v76,7,49,60,49,118v0,8,1,21,20,24r0,40v-39,11,-13,58,-20,95v0,19,0,53,-49,53r-33,-1r0,-41v73,14,5,-102,57,-124"},"~":{"d":"56,-137v18,-2,85,38,95,-1r27,16v-14,44,-55,59,-98,37v-24,-13,-44,-7,-52,15r-26,-17v8,-21,26,-53,54,-50"},"\u00a0":{"w":83},"\u00a1":{"d":"32,83r0,-159r59,0r0,159r-59,0xm99,-127v0,23,-18,38,-37,38v-17,0,-39,-14,-38,-38v1,-49,75,-48,75,0","w":122},"\u00a2":{"d":"44,-121v0,-48,31,-80,76,-86r0,-31r33,0r0,33v6,0,13,3,19,6r0,51v-18,-23,-72,-7,-68,28v4,33,40,52,68,26r0,52v-6,3,-13,5,-19,5r0,33r-33,0r0,-31v-47,-7,-76,-38,-76,-86","w":216},"\u00a3":{"d":"211,-57v3,56,-60,76,-108,51v-16,-8,-51,-9,-54,6r-42,0v7,-29,21,-51,51,-57v3,-10,3,-26,-2,-34r-45,0r0,-34r26,0v-42,-90,76,-162,151,-97v23,20,21,43,21,68r-63,0v4,-22,-6,-42,-28,-41v-37,2,-34,42,-21,70r55,0r0,34r-45,0v1,11,4,22,-1,38v25,5,63,27,66,-4r39,0","w":216},"\u00a4":{"d":"32,-24r-25,-25r37,-37v-18,-28,-25,-63,1,-99r-38,-38r25,-25r38,37v46,-23,53,-23,100,0r37,-37r25,25r-37,37v19,31,26,60,1,99r37,37r-25,26r-37,-37v-45,25,-59,21,-102,0xm120,-87v26,-1,48,-21,49,-49v1,-25,-24,-50,-49,-49v-26,1,-48,21,-49,49v-1,24,24,50,49,49","w":240},"\u00a5":{"d":"77,-115v-13,-8,-42,-1,-61,-3r0,-38r36,0r-51,-84r71,0r36,69r35,-69r72,0r-53,84r38,0r0,38r-62,0v-4,4,-1,15,-2,22r64,0r0,37r-64,0r0,59r-59,0r0,-59r-61,0r0,-37r61,0r0,-19","w":216},"\u00a6":{"d":"68,-122r0,-148r46,0r0,148r-46,0xm68,90r0,-148r46,0r0,148r-46,0"},"\u00a7":{"d":"40,-201v0,-64,76,-76,119,-46v22,15,22,43,22,52r-51,0v5,-28,-39,-38,-41,-8v12,39,58,30,83,59v29,33,12,87,-21,100v15,7,28,26,27,48v-1,59,-78,86,-123,45v-8,-8,-19,-24,-19,-52r50,0v-6,36,45,37,45,8v-1,-39,-59,-31,-82,-57v-28,-32,-20,-88,17,-103v-15,-9,-26,-25,-26,-46xm109,-73v11,0,27,-12,26,-26v-2,-19,-10,-24,-26,-26v-12,-1,-27,14,-26,26v1,13,11,26,26,26","w":216},"\u00a8":{"d":"131,-251v41,0,38,63,0,63v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31xm80,-220v0,16,-16,32,-31,32v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31v17,0,31,14,31,31"},"\u00a9":{"d":"64,-119v3,-57,55,-92,116,-68r0,51v-17,-30,-73,-23,-71,17v2,38,45,48,71,17r0,50v-51,25,-119,-14,-116,-67xm137,-246v71,0,125,62,125,126v0,63,-55,125,-125,125v-71,0,-125,-61,-125,-125v0,-64,54,-126,125,-126xm237,-120v0,-57,-46,-103,-100,-103v-54,0,-100,46,-100,103v0,57,46,103,100,103v54,0,100,-46,100,-103","w":273},"\u00aa":{"d":"8,-189v0,-40,44,-69,77,-39r0,-9r34,0r0,96r-34,0r0,-11v-31,34,-77,1,-77,-37xm10,-96r0,-27r109,0r0,27r-109,0xm86,-189v2,-9,-12,-24,-22,-22v-12,0,-21,10,-21,22v0,9,9,22,21,22v12,0,23,-12,22,-22","w":129},"\u00ab":{"d":"176,-138r-40,56r41,55r-33,23r-55,-78r55,-78xm96,-138r-39,56r41,55r-33,23r-55,-78r55,-78","w":191},"\u00ac":{"d":"168,0r-47,0r0,-54r-109,0r0,-42r156,0r0,96"},"\u00ad":{"d":"18,-73r0,-48r91,0r0,48r-91,0","w":127,"k":{"Y":13,"\u00dd":13,"A":-18,"\u00c0":-18,"\u00c1":-18,"\u00c2":-18,"\u00c3":-18,"\u00c4":-18,"\u00c5":-18,"\u00c6":-18}},"\u00ae":{"d":"12,-120v0,-69,57,-126,127,-126v70,0,127,57,127,126v0,69,-58,125,-127,125v-70,0,-127,-56,-127,-125xm240,-120v0,-57,-44,-103,-101,-103v-57,0,-102,46,-102,103v0,57,45,103,102,103v56,0,101,-46,101,-103xm139,-190v51,-7,65,68,22,81r43,55r-54,0r-26,-40r0,40r-42,0r0,-136r57,0xm124,-159r0,28v13,1,22,-4,22,-14v0,-10,-9,-15,-22,-14","w":277},"\u00af":{"d":"19,-194r0,-35r142,0r0,35r-142,0"},"\u00b0":{"d":"145,-186v2,23,-27,58,-54,55v-37,-4,-51,-19,-56,-55v-3,-23,29,-56,55,-54v30,3,53,22,55,54xm64,-185v0,14,11,25,26,25v15,0,26,-11,26,-25v0,-14,-11,-26,-26,-26v-15,0,-26,12,-26,26"},"\u00b1":{"d":"12,-129r0,-43r55,0r0,-55r46,0r0,55r55,0r0,43r-55,0r0,56r-46,0r0,-56r-55,0xm12,-18r0,-43r156,0r0,43r-156,0"},"\u00b2":{"d":"69,-246v25,-5,57,26,52,51v3,27,-25,50,-44,66r46,0r0,30r-111,0v24,-31,61,-53,71,-96v0,-8,-6,-19,-15,-18v-10,-1,-17,13,-16,21r-38,0v1,-30,26,-55,55,-54","w":134},"\u00b3":{"d":"123,-144v0,42,-59,63,-94,32v-7,-6,-15,-18,-17,-36r37,0v0,11,7,19,19,19v12,0,19,-8,19,-19v0,-14,-13,-19,-27,-16r0,-25v12,1,21,-4,21,-15v0,-7,-6,-15,-14,-14v-9,1,-14,8,-14,16r-34,0v2,-30,25,-46,51,-45v33,-9,63,49,30,68v12,6,23,12,23,35","w":134},"\u00b4":{"d":"109,-262r36,26r-55,49r-27,-20"},"\u00b5":{"d":"133,-20v-5,28,-50,30,-56,2r0,101r-57,0r0,-244r57,0v5,45,-16,114,28,119v44,-7,23,-74,28,-119r57,0r0,161r-57,0r0,-20","w":210},"\u00b6":{"d":"10,-176v3,-94,120,-56,204,-64r0,38r-26,0r0,236r-41,0r0,-236r-29,0r0,236r-41,0r0,-148v-39,3,-68,-29,-67,-62","w":240},"\u00b7":{"d":"89,-127v1,23,-22,45,-44,45v-22,0,-45,-22,-45,-45v0,-22,20,-47,45,-45v21,-4,48,27,44,45","w":89},"\u00b8":{"d":"104,17r38,15r-45,53r-30,-14"},"\u00b9":{"d":"32,-96r0,-114r-20,0r0,-30r56,0r0,144r-36,0","w":79},"\u00ba":{"d":"120,-190v-3,32,-17,51,-56,51v-35,0,-56,-17,-56,-50v0,-36,20,-51,56,-51v39,0,52,20,56,50xm9,-96r0,-27r109,0r0,27r-109,0xm85,-189v0,-12,-10,-22,-21,-22v-11,0,-22,10,-22,22v0,29,43,25,43,0","w":127},"\u00bb":{"d":"14,-27r41,-55r-40,-56r32,-22r55,78r-55,78xm94,-27r41,-55r-40,-56r31,-22r55,78r-55,78","w":192},"\u00bc":{"d":"43,0r139,-240r31,0r-139,240r-31,0xm32,-96r0,-114r-20,0r0,-30r56,0r0,144r-36,0xm253,-144r0,89r17,0r0,28r-17,0r0,27r-34,0r0,-27r-67,0r0,-23r54,-94r47,0xm189,-55r30,0r0,-56","w":279},"\u00bd":{"d":"37,0r139,-240r32,0r-140,240r-31,0xm32,-96r0,-114r-20,0r0,-30r56,0r0,144r-36,0xm217,-147v24,-5,57,26,52,50v3,26,-23,50,-43,66r45,0r0,31r-111,0v23,-32,60,-52,71,-96v0,-8,-5,-20,-15,-18v-10,-2,-16,14,-15,21r-39,0v1,-30,26,-55,55,-54","w":282},"\u00be":{"d":"85,0r139,-240r31,0r-139,240r-31,0xm123,-143v-1,41,-59,62,-94,31v-7,-6,-15,-18,-17,-36r37,0v0,11,7,19,19,19v12,0,19,-7,19,-19v0,-14,-13,-20,-27,-16r0,-25v11,2,21,-3,21,-15v0,-7,-6,-15,-14,-14v-9,1,-14,8,-14,16r-34,0v2,-30,25,-46,51,-45v33,-9,63,49,30,68v10,3,24,21,23,36xm225,-55r30,0r0,-56xm289,-144r0,89r17,0r0,28r-17,0r0,27r-34,0r0,-27r-67,0r0,-23r54,-94r47,0","w":320},"\u00bf":{"d":"36,65v-50,-46,-13,-105,36,-119r0,-23r59,0r0,62v-24,-10,-54,8,-55,29v0,12,10,24,23,23v13,0,23,-11,23,-24r63,0v-5,73,-97,100,-149,52xm63,-127v0,-23,19,-37,37,-37v17,0,37,13,37,37v-1,51,-74,49,-74,0","w":196},"\u00c0":{"d":"186,0r-14,-40r-87,0r-17,40r-65,0r92,-240r68,0r90,240r-67,0xm102,-88r53,0r-27,-78xm128,-259r-56,-49r37,-26r45,55","w":255,"k":{"v":9,"J":-4,"*":45}},"\u00c1":{"d":"186,0r-14,-40r-87,0r-17,40r-65,0r92,-240r68,0r90,240r-67,0xm102,-88r53,0r-27,-78xm147,-334r36,26r-55,49r-27,-20","w":255,"k":{"v":9,"J":-4,"*":45}},"\u00c2":{"d":"186,0r-14,-40r-87,0r-17,40r-65,0r92,-240r68,0r90,240r-67,0xm102,-88r53,0r-27,-78xm81,-259r-24,-28r70,-53r72,53r-26,28r-46,-35","w":255,"k":{"v":9,"J":-4,"*":45}},"\u00c3":{"d":"186,0r-14,-40r-87,0r-17,40r-65,0r92,-240r68,0r90,240r-67,0xm102,-88r53,0r-27,-78xm64,-277v5,-31,43,-41,71,-25v16,9,21,11,29,-10r28,16v-8,30,-45,47,-74,25v-17,-8,-18,-6,-26,11","w":255,"k":{"v":9,"J":-4,"*":45}},"\u00c4":{"d":"186,0r-14,-40r-87,0r-17,40r-65,0r92,-240r68,0r90,240r-67,0xm102,-88r53,0r-27,-78xm200,-292v0,16,-17,32,-32,32v-16,0,-31,-17,-30,-32v2,-21,9,-31,30,-31v17,0,32,15,32,31xm87,-323v41,0,38,63,0,63v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31","w":255,"k":{"v":9,"J":-4,"*":45}},"\u00c5":{"d":"186,0r-14,-40r-87,0r-17,40r-65,0r92,-240r68,0r90,240r-67,0xm102,-88r53,0r-27,-78xm78,-297v5,-25,9,-38,50,-38v41,0,44,12,49,38v-5,25,-9,33,-49,37v-41,-4,-44,-12,-50,-37xm147,-298v-1,-10,-9,-14,-19,-14v-11,0,-19,4,-19,14v0,10,8,15,19,15v11,0,18,-5,19,-15","w":255,"k":{"v":9,"J":-4,"*":45}},"\u00c6":{"d":"185,0r-15,-42r-87,0r-15,42r-65,0r92,-240r147,0r19,53r-79,0r15,40r79,0r20,53r-80,0r16,41r79,0r19,53r-145,0xm100,-90r53,0r-26,-71","w":332,"k":{"T":-9}},"\u00c7":{"d":"79,-118v0,56,69,91,119,38r0,74v-97,38,-184,-27,-184,-112v0,-89,88,-154,184,-114r0,75v-49,-58,-119,-17,-119,39xm120,17r40,15r-42,53r-33,-14","w":212,"k":{"T":-9,"G":9}},"\u00c8":{"d":"162,-240r0,53r-75,0r0,40r71,0r0,53r-71,0r0,41r75,0r0,53r-137,0r0,-240r137,0xm101,-259r-56,-49r37,-26r45,55","w":176,"k":{"T":-9}},"\u00c9":{"d":"162,-240r0,53r-75,0r0,40r71,0r0,53r-71,0r0,41r75,0r0,53r-137,0r0,-240r137,0xm104,-334r36,26r-55,49r-27,-20","w":176,"k":{"T":-9}},"\u00ca":{"d":"162,-240r0,53r-75,0r0,40r71,0r0,53r-71,0r0,41r75,0r0,53r-137,0r0,-240r137,0xm47,-259r-24,-28r70,-53r72,53r-26,28r-46,-35","w":176,"k":{"T":-9}},"\u00cb":{"d":"162,-240r0,53r-75,0r0,40r71,0r0,53r-71,0r0,41r75,0r0,53r-137,0r0,-240r137,0xm166,-292v0,16,-17,32,-32,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,32,15,32,31xm53,-323v41,0,38,63,0,63v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31","w":176,"k":{"T":-9}},"\u00cc":{"d":"25,-240r62,0r0,240r-62,0r0,-240xm61,-259r-55,-49r36,-26r46,55","w":112},"\u00cd":{"d":"25,-240r62,0r0,240r-62,0r0,-240xm73,-334r36,26r-55,49r-27,-20","w":112},"\u00ce":{"d":"25,-240r62,0r0,240r-62,0r0,-240xm10,-259r-24,-28r70,-53r71,53r-25,28r-46,-35","w":112},"\u00cf":{"d":"25,-240r62,0r0,240r-62,0r0,-240xm129,-292v0,16,-17,32,-32,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,32,15,32,31xm47,-292v0,16,-17,32,-32,32v-16,0,-31,-17,-30,-32v2,-21,9,-31,30,-31v17,0,32,15,32,31","w":112},"\u00d0":{"d":"217,-207v78,77,24,210,-90,207r-87,0r0,-107r-33,0r0,-43r33,0r0,-90v77,4,125,-18,177,33xm186,-120v1,-48,-34,-74,-83,-67r0,37r42,0r0,43r-42,0r0,54v46,2,82,-11,83,-67","w":265,"k":{"x":13,"X":13,"M":4,"J":22,"V":9,"Y":13,"\u00dd":13,"A":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00c6":13,"Z":13}},"\u00d1":{"d":"87,0r-62,0r0,-240r62,0r115,147r0,-147r63,0r0,240r-63,0r-115,-147r0,147xm81,-277v5,-31,43,-41,71,-25v16,9,21,11,29,-10r28,16v-8,30,-45,47,-74,25v-17,-8,-18,-6,-26,11","w":289},"\u00d2":{"d":"147,-246v72,0,132,57,132,126v0,68,-60,125,-132,125v-72,0,-133,-57,-133,-125v0,-68,61,-126,133,-126xm215,-120v0,-38,-33,-65,-68,-65v-35,0,-70,31,-68,66v3,42,28,64,68,64v41,0,68,-28,68,-65xm147,-259r-55,-49r37,-26r45,55","w":293,"k":{"x":9,"X":18,"M":5,"J":14,"V":9,"Y":13,"\u00dd":13,"Z":9}},"\u00d3":{"d":"147,-246v72,0,132,57,132,126v0,68,-60,125,-132,125v-72,0,-133,-57,-133,-125v0,-68,61,-126,133,-126xm215,-120v0,-38,-33,-65,-68,-65v-35,0,-70,31,-68,66v3,42,28,64,68,64v41,0,68,-28,68,-65xm166,-334r37,26r-56,49r-26,-20","w":293,"k":{"x":9,"X":18,"M":5,"J":14,"V":9,"Y":13,"\u00dd":13,"Z":9}},"\u00d4":{"d":"147,-246v72,0,132,57,132,126v0,68,-60,125,-132,125v-72,0,-133,-57,-133,-125v0,-68,61,-126,133,-126xm215,-120v0,-38,-33,-65,-68,-65v-35,0,-70,31,-68,66v3,42,28,64,68,64v41,0,68,-28,68,-65xm101,-259r-25,-28r71,-53r71,53r-25,28r-46,-35","w":293,"k":{"x":9,"X":18,"M":5,"J":14,"V":9,"Y":13,"\u00dd":13,"Z":9}},"\u00d5":{"d":"147,-246v72,0,132,57,132,126v0,68,-60,125,-132,125v-72,0,-133,-57,-133,-125v0,-68,61,-126,133,-126xm215,-120v0,-38,-33,-65,-68,-65v-35,0,-70,31,-68,66v3,42,28,64,68,64v41,0,68,-28,68,-65xm83,-277v7,-40,58,-38,87,-19v4,0,10,-4,14,-16r27,16v-8,29,-44,47,-73,25v-17,-8,-19,-6,-27,11","w":293,"k":{"x":9,"X":18,"M":5,"J":14,"V":9,"Y":13,"\u00dd":13,"Z":9}},"\u00d6":{"d":"147,-246v72,0,132,57,132,126v0,68,-60,125,-132,125v-72,0,-133,-57,-133,-125v0,-68,61,-126,133,-126xm215,-120v0,-38,-33,-65,-68,-65v-35,0,-70,31,-68,66v3,42,28,64,68,64v41,0,68,-28,68,-65xm219,-292v0,16,-16,32,-31,32v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31v17,0,31,14,31,31xm138,-292v0,16,-17,32,-32,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,32,15,32,31","w":293,"k":{"x":9,"X":18,"M":5,"J":14,"V":9,"Y":13,"\u00dd":13,"Z":9}},"\u00d7":{"d":"44,-45r-30,-31r44,-44r-44,-44r33,-33r44,44r44,-44r31,30r-44,45r44,44r-33,33r-44,-44"},"\u00d8":{"d":"17,-120v0,-107,120,-156,207,-105r31,-32r32,30r-31,31v66,91,0,202,-107,201v-32,0,-55,-8,-74,-20r-32,32r-32,-30r31,-31v-14,-17,-25,-41,-25,-76xm178,-178v-56,-28,-121,30,-89,89xm121,-62v55,28,119,-32,88,-88","w":298,"k":{"x":9,"X":18,"M":5,"J":14,"V":9,"Y":13,"\u00dd":13,"Z":9}},"\u00d9":{"d":"128,5v-73,0,-103,-48,-103,-107r0,-138r62,0r0,142v-3,20,16,49,42,49v28,0,43,-31,43,-54r0,-137r62,0r0,138v7,53,-42,107,-106,107xm130,-259r-56,-49r37,-26r45,55","w":259},"\u00da":{"d":"128,5v-73,0,-103,-48,-103,-107r0,-138r62,0r0,142v-3,20,16,49,42,49v28,0,43,-31,43,-54r0,-137r62,0r0,138v7,53,-42,107,-106,107xm149,-334r36,26r-55,49r-27,-20","w":259},"\u00db":{"d":"128,5v-73,0,-103,-48,-103,-107r0,-138r62,0r0,142v-3,20,16,49,42,49v28,0,43,-31,43,-54r0,-137r62,0r0,138v7,53,-42,107,-106,107xm83,-259r-24,-28r70,-53r72,53r-26,28r-46,-35","w":259},"\u00dc":{"d":"128,5v-73,0,-103,-48,-103,-107r0,-138r62,0r0,142v-3,20,16,49,42,49v28,0,43,-31,43,-54r0,-137r62,0r0,138v7,53,-42,107,-106,107xm202,-292v0,16,-17,32,-32,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,32,15,32,31xm89,-323v41,0,38,63,0,63v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31","w":259},"\u00dd":{"d":"82,0r0,-115r-86,-125r74,0r46,65r43,-65r76,0r-90,125r0,115r-63,0xm134,-334r37,26r-56,49r-26,-20","w":230,"k":{"\u00ae":9,"\u00ab":23,"\u00a9":14,"x":32,"v":18,"q":32,"p":18,"m":23,"Q":13,"M":14,"J":41,".":31,"w":18,"y":23,"\u00fd":23,"\u00ff":23,"T":-13,"C":18,"\u00c7":18,"S":18,"V":-14,"-":13,"\u00ad":13,"G":9,"A":23,"\u00c0":23,"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c4":23,"\u00c5":23,"\u00c6":23,"z":27,"a":23,"\u00e0":23,"\u00e1":23,"\u00e2":23,"\u00e3":23,"\u00e4":23,"\u00e5":23,"\u00e6":23,"c":27,"\u00e7":27,"d":36,"e":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"g":32,"o":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"s":36,"t":9,"u":23,"\u00f9":23,"\u00fa":23,"\u00fb":23,"\u00fc":23,"O":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"W":-13,"h":18,"n":18,"\u00f1":18,"r":23,",":31,":":18,";":18}},"\u00de":{"d":"87,-208v98,-19,160,71,99,140v-27,30,-55,20,-99,21r0,47r-62,0r0,-240r62,0r0,32xm143,-127v0,-25,-25,-35,-56,-30r0,59v30,4,56,-4,56,-29","w":215},"\u00df":{"d":"102,-217v-19,-1,-24,14,-25,29r0,188r-57,0r0,-191v0,-39,24,-79,80,-75v59,4,80,17,80,71v0,12,-3,36,-28,49v25,7,49,35,47,68v-3,66,-45,86,-105,83r0,-49v22,-2,42,-9,42,-37v0,-28,-12,-36,-42,-39r0,-46v22,1,32,-8,31,-27v-1,-16,-6,-23,-23,-24","w":212},"\u00e0":{"d":"13,-79v2,-56,32,-87,83,-87v26,0,41,13,48,21r0,-16r58,0r0,161r-58,0r0,-18v-48,57,-133,4,-131,-61xm146,-81v0,-17,-14,-37,-37,-36v-16,-3,-38,20,-37,36v2,18,16,38,37,37v19,-1,36,-13,37,-37xm126,-187r-55,-49r36,-26r46,55","w":221,"k":{"Y":18,"\u00dd":18}},"\u00e1":{"d":"13,-79v2,-56,32,-87,83,-87v26,0,41,13,48,21r0,-16r58,0r0,161r-58,0r0,-18v-48,57,-133,4,-131,-61xm146,-81v0,-17,-14,-37,-37,-36v-16,-3,-38,20,-37,36v2,18,16,38,37,37v19,-1,36,-13,37,-37xm132,-262r37,26r-56,49r-26,-20","w":221,"k":{"Y":18,"\u00dd":18}},"\u00e2":{"d":"13,-79v2,-56,32,-87,83,-87v26,0,41,13,48,21r0,-16r58,0r0,161r-58,0r0,-18v-48,57,-133,4,-131,-61xm146,-81v0,-17,-14,-37,-37,-36v-16,-3,-38,20,-37,36v2,18,16,38,37,37v19,-1,36,-13,37,-37xm71,-187r-25,-28r71,-53r71,53r-26,28r-45,-35","w":221,"k":{"Y":18,"\u00dd":18}},"\u00e3":{"d":"13,-79v2,-56,32,-87,83,-87v26,0,41,13,48,21r0,-16r58,0r0,161r-58,0r0,-18v-48,57,-133,4,-131,-61xm146,-81v0,-17,-14,-37,-37,-36v-16,-3,-38,20,-37,36v2,18,16,38,37,37v19,-1,36,-13,37,-37xm53,-205v6,-41,59,-37,87,-19v4,0,9,-4,13,-16r28,16v-7,29,-45,49,-73,25v-17,-8,-19,-6,-27,11","w":221,"k":{"Y":18,"\u00dd":18}},"\u00e4":{"d":"13,-79v2,-56,32,-87,83,-87v26,0,41,13,48,21r0,-16r58,0r0,161r-58,0r0,-18v-48,57,-133,4,-131,-61xm146,-81v0,-17,-14,-37,-37,-36v-16,-3,-38,20,-37,36v2,18,16,38,37,37v19,-1,36,-13,37,-37xm158,-251v41,0,38,63,0,63v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31xm107,-220v0,16,-16,32,-31,32v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31v17,0,31,14,31,31","w":221,"k":{"Y":18,"\u00dd":18}},"\u00e5":{"d":"13,-79v2,-56,32,-87,83,-87v26,0,41,13,48,21r0,-16r58,0r0,161r-58,0r0,-18v-48,57,-133,4,-131,-61xm146,-81v0,-17,-14,-37,-37,-36v-16,-3,-38,20,-37,36v2,18,16,38,37,37v19,-1,36,-13,37,-37xm68,-225v4,-26,9,-34,49,-38v41,4,44,12,49,38v-5,25,-9,33,-49,37v-40,-4,-44,-12,-49,-37xm136,-226v-1,-10,-9,-14,-19,-14v-11,0,-19,5,-19,14v0,19,38,20,38,0","w":221,"k":{"Y":18,"\u00dd":18}},"\u00e6":{"d":"293,-50v-13,65,-117,73,-147,24v-24,41,-132,46,-133,-21v-1,-49,62,-65,109,-45v5,-25,-25,-33,-39,-33v-10,0,-24,1,-44,9r0,-43v38,-13,91,-12,107,21v17,-17,22,-29,62,-29v27,0,50,9,64,23v24,25,24,53,24,73r-121,0v-3,37,50,49,63,21r55,0xm243,-104v-6,-35,-61,-31,-67,0r67,0xm123,-51v0,-11,-15,-18,-28,-17v-5,-1,-29,5,-26,17v2,26,54,21,54,0","w":308,"k":{"T":9,"V":13,"Y":27,"\u00dd":27,"-":-23,"\u00ad":-23}},"\u00e7":{"d":"72,-80v0,33,41,53,69,28r0,48v-65,28,-128,-13,-128,-75v0,-62,65,-107,128,-78r0,48v-25,-22,-69,-4,-69,29xm89,17r38,15r-44,53r-30,-14","w":154,"k":{"f":-7,"V":14,"Y":18,"\u00dd":18,"t":-4}},"\u00e8":{"d":"13,-80v0,-79,94,-114,152,-64v27,23,25,49,25,74r-119,0v-5,33,46,49,62,20r55,0v-10,30,-32,56,-85,55v-45,0,-90,-25,-90,-85xm138,-103v-6,-32,-62,-36,-66,0r66,0xm110,-187r-56,-49r37,-26r45,55","w":203,"k":{"T":9,"V":13,"Y":27,"\u00dd":27,"-":-23,"\u00ad":-23}},"\u00e9":{"d":"13,-80v0,-79,94,-114,152,-64v27,23,25,49,25,74r-119,0v-5,33,46,49,62,20r55,0v-10,30,-32,56,-85,55v-45,0,-90,-25,-90,-85xm138,-103v-6,-32,-62,-36,-66,0r66,0xm123,-262r37,26r-56,49r-26,-20","w":203,"k":{"T":9,"V":13,"Y":27,"\u00dd":27,"-":-23,"\u00ad":-23}},"\u00ea":{"d":"13,-80v0,-79,94,-114,152,-64v27,23,25,49,25,74r-119,0v-5,33,46,49,62,20r55,0v-10,30,-32,56,-85,55v-45,0,-90,-25,-90,-85xm138,-103v-6,-32,-62,-36,-66,0r66,0xm57,-187r-25,-28r71,-53r71,53r-26,28r-45,-35","w":203,"k":{"T":9,"V":13,"Y":27,"\u00dd":27,"-":-23,"\u00ad":-23}},"\u00eb":{"d":"13,-80v0,-79,94,-114,152,-64v27,23,25,49,25,74r-119,0v-5,33,46,49,62,20r55,0v-10,30,-32,56,-85,55v-45,0,-90,-25,-90,-85xm138,-103v-6,-32,-62,-36,-66,0r66,0xm144,-251v41,0,38,63,0,63v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31xm93,-220v0,16,-16,32,-31,32v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31v17,0,31,14,31,31","w":203,"k":{"T":9,"V":13,"Y":27,"\u00dd":27,"-":-23,"\u00ad":-23}},"\u00ec":{"d":"19,-161r58,0r0,161r-58,0r0,-161xm49,-187r-56,-49r37,-26r45,55","w":96},"\u00ed":{"d":"19,-161r58,0r0,161r-58,0r0,-161xm68,-262r37,26r-56,49r-26,-20","w":96},"\u00ee":{"d":"19,-161r58,0r0,161r-58,0r0,-161xm2,-187r-24,-28r70,-53r72,53r-26,28r-46,-35","w":96},"\u00ef":{"d":"19,-161r58,0r0,161r-58,0r0,-161xm121,-220v0,16,-17,32,-32,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,32,15,32,31xm8,-251v41,0,38,63,0,63v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31","w":96},"\u00f0":{"d":"11,-83v0,-67,91,-106,137,-64v-2,-24,-19,-46,-39,-54r-71,34r-14,-27r51,-23v-14,-3,-30,-4,-47,-4r11,-40v41,0,67,9,83,17r56,-27r15,28r-42,19v51,37,79,146,22,205v-55,57,-162,16,-162,-64xm142,-80v0,-18,-17,-36,-36,-36v-19,0,-35,18,-35,36v0,18,16,36,35,36v19,0,36,-18,36,-36","w":212},"\u00f1":{"d":"108,-120v-49,0,-26,75,-31,120r-57,0r0,-161r57,0r0,20v42,-51,114,-19,114,39r0,102r-57,0v-5,-47,16,-120,-26,-120xm41,-205v6,-30,43,-42,72,-25v16,9,21,11,29,-10r28,16v-8,30,-45,47,-74,25v-17,-8,-19,-6,-27,11","w":210,"k":{"T":14,"V":18,"Y":32,"\u00dd":32}},"\u00f2":{"d":"147,-81v0,-19,-17,-36,-37,-36v-20,0,-38,17,-37,36v1,21,17,37,37,37v19,1,37,-18,37,-37xm13,-81v7,-60,33,-85,97,-85v36,0,59,13,72,26v12,12,25,30,25,59v0,48,-50,92,-97,86v-43,6,-103,-38,-97,-86xm113,-187r-55,-49r37,-26r45,55","w":219,"k":{"x":9,"T":9,"V":22,"Y":27,"\u00dd":27}},"\u00f3":{"d":"147,-81v0,-19,-17,-36,-37,-36v-20,0,-38,17,-37,36v1,21,17,37,37,37v19,1,37,-18,37,-37xm13,-81v7,-60,33,-85,97,-85v36,0,59,13,72,26v12,12,25,30,25,59v0,48,-50,92,-97,86v-43,6,-103,-38,-97,-86xm127,-262r36,26r-55,49r-27,-20","w":219,"k":{"x":9,"T":9,"V":22,"Y":27,"\u00dd":27}},"\u00f4":{"d":"147,-81v0,-19,-17,-36,-37,-36v-20,0,-38,17,-37,36v1,21,17,37,37,37v19,1,37,-18,37,-37xm13,-81v7,-60,33,-85,97,-85v36,0,59,13,72,26v12,12,25,30,25,59v0,48,-50,92,-97,86v-43,6,-103,-38,-97,-86xm65,-187r-25,-28r71,-53r71,53r-25,28r-46,-35","w":219,"k":{"x":9,"T":9,"V":22,"Y":27,"\u00dd":27}},"\u00f5":{"d":"147,-81v0,-19,-17,-36,-37,-36v-20,0,-38,17,-37,36v1,21,17,37,37,37v19,1,37,-18,37,-37xm13,-81v7,-60,33,-85,97,-85v36,0,59,13,72,26v12,12,25,30,25,59v0,48,-50,92,-97,86v-43,6,-103,-38,-97,-86xm44,-205v6,-41,59,-37,87,-19v4,0,9,-4,13,-16r28,16v-7,29,-45,49,-73,25v-17,-8,-19,-6,-27,11","w":219,"k":{"x":9,"T":9,"V":22,"Y":27,"\u00dd":27}},"\u00f6":{"d":"147,-81v0,-19,-17,-36,-37,-36v-20,0,-38,17,-37,36v1,21,17,37,37,37v19,1,37,-18,37,-37xm13,-81v7,-60,33,-85,97,-85v36,0,59,13,72,26v12,12,25,30,25,59v0,48,-50,92,-97,86v-43,6,-103,-38,-97,-86xm183,-220v0,16,-16,32,-31,32v-17,0,-32,-17,-31,-32v2,-21,10,-31,31,-31v17,0,31,14,31,31xm102,-220v0,16,-17,32,-32,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,32,15,32,31","w":219,"k":{"x":9,"T":9,"V":22,"Y":27,"\u00dd":27}},"\u00f7":{"d":"90,-157v-15,0,-27,-12,-27,-27v0,-16,12,-26,27,-26v17,0,26,9,27,26v1,13,-13,28,-27,27xm12,-101r0,-43r156,0r0,43r-156,0xm90,-35v-16,0,-27,-11,-27,-26v0,-16,12,-27,27,-27v16,0,26,10,27,27v1,13,-12,26,-27,26"},"\u00f8":{"d":"125,-113v-30,-16,-66,15,-49,48xm94,-49v27,18,64,-17,47,-47xm205,-81v0,69,-88,110,-151,73r-26,26r-19,-18r25,-24v-28,-17,-28,-100,3,-116v19,-24,88,-38,125,-13r26,-25r19,18r-24,24v12,12,22,28,22,55","w":216,"k":{"x":9,"T":9,"V":22,"Y":27,"\u00dd":27}},"\u00f9":{"d":"108,5v-38,5,-88,-20,-88,-65r0,-101r57,0v5,48,-17,118,29,120v46,1,24,-73,29,-120r58,0r0,101v6,39,-50,73,-85,65xm107,-187r-56,-49r37,-26r45,55","w":212,"k":{"X":14,"J":5,"V":9,"Y":18,"\u00dd":18,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u00c6":9}},"\u00fa":{"d":"108,5v-38,5,-88,-20,-88,-65r0,-101r57,0v5,48,-17,118,29,120v46,1,24,-73,29,-120r58,0r0,101v6,39,-50,73,-85,65xm126,-262r36,26r-55,49r-27,-20","w":212,"k":{"X":14,"J":5,"V":9,"Y":18,"\u00dd":18,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u00c6":9}},"\u00fb":{"d":"108,5v-38,5,-88,-20,-88,-65r0,-101r57,0v5,48,-17,118,29,120v46,1,24,-73,29,-120r58,0r0,101v6,39,-50,73,-85,65xm60,-187r-24,-28r70,-53r71,53r-25,28r-46,-35","w":212,"k":{"X":14,"J":5,"V":9,"Y":18,"\u00dd":18,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u00c6":9}},"\u00fc":{"d":"108,5v-38,5,-88,-20,-88,-65r0,-101r57,0v5,48,-17,118,29,120v46,1,24,-73,29,-120r58,0r0,101v6,39,-50,73,-85,65xm179,-220v0,16,-17,32,-32,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,32,15,32,31xm66,-251v41,0,37,63,0,63v-17,1,-32,-17,-31,-32v2,-21,10,-31,31,-31","w":212,"k":{"X":14,"J":5,"V":9,"Y":18,"\u00dd":18,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u00c4":9,"\u00c5":9,"\u00c6":9}},"\u00fd":{"d":"24,82r54,-104r-78,-139r67,0r43,83r42,-83r65,0r-129,243r-64,0xm129,-262r36,26r-56,49r-26,-20","w":217,"k":{"f":-5,"X":18,"J":27,"T":14,"C":9,"\u00c7":9,"V":14,"Y":23,"\u00dd":23,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"c":9,"\u00e7":9,"s":13,"t":-5}},"\u00fe":{"d":"208,-81v0,68,-73,117,-131,66r0,97r-57,0r0,-344r57,0r0,119v10,-13,26,-23,50,-23v52,0,81,32,81,85xm149,-80v0,-18,-15,-37,-36,-37v-21,0,-37,18,-37,37v0,19,17,36,37,36v21,0,35,-16,36,-36","w":221,"k":{"x":9,"v":9,"J":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"T":13,"V":22,"Y":36,"\u00dd":36,"A":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00c6":13,"s":11,"W":13}},"\u00ff":{"d":"24,82r54,-104r-78,-139r67,0r43,83r42,-83r65,0r-129,243r-64,0xm181,-220v0,16,-16,32,-31,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,31,14,31,31xm100,-220v0,16,-17,32,-32,32v-17,0,-33,-17,-31,-32v2,-21,10,-31,31,-31v17,0,32,15,32,31","w":217,"k":{"f":-5,"X":18,"J":27,"T":14,"C":9,"\u00c7":9,"V":14,"Y":23,"\u00dd":23,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"a":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u00e6":13,"c":9,"\u00e7":9,"s":13,"t":-5}}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990-2008 ParaType, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Futura is a registered trade mark of BauerTypes, S.L.
 * 
 * Description:
 * Futura was designed for Bauer company in 1927 by Paul Renner. This is a sans
 * serif face based on geometrical shapes, representative of the aesthetics of the
 * Bauhaus school of the 1920s-30s. Issued by the Bauer Foundry in a wide range of
 * weights and widths, Futura became a very popular choice for text and display
 * setting. Originally Cyrillic version of eight styles was developed at ParaType
 * (ParaGraph) in 1995 by Vladimir Yefimov. Additional Cyrillic styles were
 * developed for ParaType in 2007 by Isabella Chaeva. Simultaneously the old eight
 * styles were partly revised to match the whole family. Now the new Futura is an
 * uniform type system consisted of seven weights with corresponding obliques plus
 * eight condensed styles. All these fonts are coordinated in letterforms, metrics,
 * and weights to better working together.
 * 
 * Manufacturer:
 * ParaType, Inc.
 * 
 * Designer:
 * Paul Renner,Vladimir Yefimov, Isabella Chaeva
 * 
 * Vendor URL:
 * http://www.paratype.com
 * 
 * License information:
 * http://www.paratype.com/help/license/paratype.asp
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Futura New Book","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 2 4 2 3 3","ascent":"288","descent":"-72","x-height":"4","bbox":"-17 -333 362 90","underline-thickness":"18","underline-position":"-18","stemh":"26","stemv":"26","unicode-range":"U+0020-U+0237"},"glyphs":{" ":{"w":83},"!":{"d":"63,-49r-26,0r0,-191r26,0r0,191xm32,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":100},"\"":{"d":"48,-240r-4,96r-20,0r-5,-96r29,0xm99,-240r-4,96r-20,0r-4,-96r28,0","w":118},"#":{"d":"142,0r-26,0r11,-75r-49,0r-11,75r-27,0r12,-75r-40,0r4,-23r39,0r8,-48r-40,0r4,-24r39,0r11,-70r26,0r-10,70r48,0r11,-70r27,0r-11,70r39,0r-3,24r-40,0r-7,48r40,0r-4,23r-40,0xm131,-98r7,-48r-49,0r-7,48r49,0","w":216},"$":{"d":"96,-120v-20,-6,-56,-31,-56,-62v0,-34,25,-58,56,-61r0,-32r22,0r0,32v18,1,43,19,50,36r-21,14v-5,-10,-17,-24,-29,-25r0,80v32,12,59,31,59,69v0,32,-20,66,-59,72r0,33r-22,0r0,-32v-40,-2,-61,-30,-68,-62r26,-7v1,23,23,44,42,44r0,-99xm118,-109r0,87v31,-6,40,-56,20,-75v-5,-5,-15,-10,-20,-12xm96,-148r0,-70v-27,4,-39,37,-20,57v5,5,13,10,20,13","w":204},"%":{"d":"64,-242v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52v0,-29,23,-52,52,-52xm64,-158v18,0,31,-14,31,-32v0,-18,-13,-32,-31,-32v-17,0,-31,14,-31,32v0,18,14,32,31,32xm51,-4r140,-241r14,8r-140,242xm192,-102v29,0,52,23,52,52v0,29,-23,53,-52,53v-29,0,-53,-24,-53,-53v0,-29,24,-52,53,-52xm192,-17v18,0,30,-15,30,-33v0,-18,-12,-32,-30,-32v-17,0,-31,14,-31,32v0,18,14,33,31,33","w":255},"&":{"d":"161,-196v0,20,-21,46,-42,59r50,65v13,-14,20,-23,27,-32r20,16v-6,9,-16,21,-31,36r40,52r-33,0r-26,-33v-40,53,-146,49,-147,-29v-1,-48,43,-65,62,-80v-16,-21,-23,-35,-23,-51v0,-25,17,-51,52,-51v33,0,51,24,51,48xm97,-122v-30,24,-51,18,-51,59v0,24,18,43,43,43v26,0,52,-24,61,-33xm109,-221v-39,2,-24,50,-6,65v12,-8,36,-27,32,-40v0,-17,-13,-25,-26,-25","w":228},"'":{"d":"48,-240r-4,96r-20,0r-5,-96r29,0","w":67,"k":{"\u0218":-11,"\u0160":-11,"\u015e":-11,"\u015c":-11,"\u015a":-11,"\u0152":-7,"\u0150":-7,"\u014e":-7,"\u014c":-7,"\u0122":-15,"\u0120":-15,"\u011e":-15,"\u011c":-15,"\u00d8":-7,"\u00d6":-7,"\u00d5":-7,"\u00d4":-7,"\u00d3":-7,"\u00d2":-7,"S":-11,"Q":-22,"O":-7,"G":-15}},"(":{"d":"60,61v-48,-112,-36,-222,0,-327r23,10v-36,82,-37,223,0,307","w":105},")":{"d":"23,51v36,-84,35,-224,0,-307r23,-10v37,102,46,218,0,327","w":105},"*":{"d":"50,-233r42,15r-2,-44r24,0r-1,44r41,-15r8,22r-43,13r28,35r-20,14r-25,-37r-25,37r-19,-14r28,-35r-44,-13","w":204},"+":{"d":"12,-108r0,-24r65,0r0,-62r26,0r0,62r65,0r0,24r-65,0r0,62r-26,0r0,-62r-65,0"},",":{"d":"9,48r29,-83r24,8r-36,82","w":98},"-":{"d":"18,-63r0,-27r79,0r0,27r-79,0","w":115,"k":{"T":12,"\u0162":12,"\u0164":12,"\u021a":12,"V":8,"W":8,"Y":15,"\u00dd":15,"\u0178":15}},".":{"d":"23,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":82},"\/":{"d":"0,61r185,-334r21,11r-185,333","w":213},"0":{"d":"188,-120v0,60,-38,124,-86,124v-47,0,-85,-64,-85,-124v0,-60,37,-124,85,-124v48,0,86,64,86,124xm161,-120v5,-41,-24,-100,-59,-100v-34,0,-64,60,-59,100v-4,41,25,100,59,100v34,0,65,-59,59,-100","w":204,"k":{"7":18,"4":9,"1":36}},"1":{"d":"96,0r0,-215r-41,0r14,-25r53,0r0,240r-26,0","w":204,"k":{"9":40,"8":45,"7":40,"6":36,"5":45,"4":45,"3":49,"2":54,"1":81,"0":23,".":18,",":27}},"2":{"d":"24,-170v7,-50,21,-74,75,-74v64,0,98,70,55,123r-82,97r101,0r0,24r-155,0r116,-136v29,-37,9,-84,-35,-84v-26,0,-48,20,-48,50r-27,0","w":204,"k":{"9":13,"8":14,"7":23,"6":13,"5":13,"4":18,"3":14,"2":14,"1":54,"0":9}},"3":{"d":"98,-220v-19,0,-40,16,-40,39r-27,0v-2,-37,43,-69,67,-63v71,1,93,84,37,118v8,3,34,17,34,58v2,78,-110,100,-141,31v-4,-9,-5,-16,-5,-25r27,0v1,25,21,42,45,42v27,0,48,-22,48,-49v0,-23,-22,-49,-52,-45r0,-24v27,0,48,-7,48,-41v0,-21,-11,-41,-41,-41","w":204,"k":{"9":9,"7":18,"5":14,"4":18,"3":18,"2":18,"1":54}},"4":{"d":"157,-253r0,183r29,0r0,25r-29,0r0,45r-27,0r0,-45r-123,0xm54,-70r76,0r0,-106","w":204,"k":{"9":9,"7":9,"2":18,"1":36}},"5":{"d":"33,-54v11,18,29,34,56,34v34,0,59,-28,59,-62v0,-55,-57,-79,-106,-42r35,-116r95,0r0,24r-77,0r-15,52v57,-8,92,30,94,82v3,93,-126,114,-162,43","w":204,"k":{"7":13,"4":9,"2":18,"1":49}},"6":{"d":"121,-246r20,15r-55,77v55,-14,100,25,99,76v0,48,-34,82,-82,82v-81,0,-109,-73,-64,-136xm102,-20v33,0,56,-25,56,-57v0,-32,-23,-56,-56,-56v-33,0,-56,25,-56,56v0,32,23,57,56,57","w":204,"k":{"7":9,"2":13,"1":41}},"7":{"d":"19,-8r136,-208r-131,0r0,-24r176,0r-160,246","w":204,"k":{":":18,"9":18,"8":23,"7":5,"6":27,"5":32,"4":50,"3":27,"2":18,"1":49,"0":18,".":36,",":49}},"8":{"d":"139,-125v61,28,44,129,-37,129v-81,0,-97,-101,-37,-129v-51,-29,-32,-119,37,-119v69,0,88,90,37,119xm102,-136v23,0,41,-17,41,-41v0,-26,-19,-43,-41,-43v-22,0,-41,17,-41,43v0,24,18,41,41,41xm102,-20v28,0,47,-20,47,-47v0,-27,-20,-46,-47,-46v-27,0,-47,19,-47,46v0,27,19,47,47,47","w":204,"k":{"9":9,"7":18,"5":14,"4":9,"2":14,"1":49}},"9":{"d":"84,6r-21,-15r55,-77v-53,17,-99,-25,-99,-76v0,-48,35,-82,83,-82v81,0,108,74,63,137xm102,-220v-33,0,-56,26,-56,58v0,32,24,55,57,55v33,0,55,-24,55,-55v0,-32,-23,-58,-56,-58","w":204,"k":{"8":5,"7":13,"6":9,"5":14,"4":18,"3":14,"2":13,"1":40}},":":{"d":"23,-135v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm23,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":82},";":{"d":"28,-135v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm9,48r29,-83r24,8r-36,82","w":98},"<":{"d":"40,-119r128,59r0,25r-156,-73r0,-22r156,-73r0,26"},"=":{"d":"12,-138r0,-24r156,0r0,24r-156,0xm12,-83r0,-24r156,0r0,24r-156,0"},">":{"d":"140,-119r-128,-58r0,-26r156,73r0,22r-156,73r0,-25"},"?":{"d":"78,-73v18,0,25,-15,26,-31r26,0v-3,34,-13,51,-52,55v-59,6,-66,-83,-21,-96v26,-7,56,-20,53,-42v-2,-14,-10,-33,-32,-33v-23,0,-39,24,-29,47r-27,0v-7,-41,13,-71,56,-71v48,0,75,54,46,93v-19,27,-63,11,-71,52v1,17,7,26,25,26xm60,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":156},"@":{"d":"173,-154r4,-23r19,0r-17,93v0,5,2,16,14,16v17,0,40,-25,40,-68v0,-54,-43,-90,-96,-90v-60,0,-107,47,-107,107v0,45,27,106,110,106v17,0,44,-1,76,-16r5,16v-98,48,-209,-2,-209,-106v0,-69,55,-124,125,-124v61,0,114,42,114,106v0,50,-31,85,-59,85v-15,0,-25,-10,-26,-24v-3,5,-18,26,-45,26v-31,0,-51,-26,-51,-58v0,-61,80,-102,103,-46xm125,-70v26,0,41,-28,41,-57v0,-25,-16,-35,-31,-35v-48,0,-61,94,-10,92","w":263},"A":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96","w":223,"k":{"v":8,"J":-23,"*":42}},"B":{"d":"173,-68v-3,68,-69,72,-142,68r0,-240v62,0,116,-5,120,65v0,12,-3,33,-24,47v33,8,46,37,46,60xm58,-215r0,80v33,0,60,6,67,-40v-9,-49,-37,-39,-67,-40xm146,-68v0,-46,-40,-43,-88,-43r0,86v45,3,88,-1,88,-43","w":190,"k":{"\u0178":7,"\u00dd":7,"Y":7}},"C":{"d":"45,-119v0,102,121,121,170,67r0,33v-89,61,-197,-4,-197,-100v0,-98,107,-164,197,-101r0,33v-15,-16,-43,-33,-73,-32v-55,0,-97,45,-97,100","w":232,"k":{"J":-11,"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"D":{"d":"31,-240v98,-10,179,24,179,120v0,50,-27,76,-43,92v-27,28,-78,29,-136,28r0,-240xm58,-25v67,7,124,-25,124,-95v0,-66,-49,-101,-124,-95r0,190","w":227,"k":{"Y":8,"\u00dd":8,"\u0178":8}},"E":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0","w":173},"F":{"d":"140,-240r0,25r-82,0r0,71r80,0r0,25r-80,0r0,119r-27,0r0,-240r109,0","w":156,"k":{"\u0219":8,"\u0218":12,"\u01fd":15,"\u01fc":12,"\u017e":12,"\u017c":12,"\u017a":12,"\u0173":8,"\u0171":8,"\u016f":8,"\u016d":8,"\u016b":8,"\u0169":8,"\u0161":8,"\u0160":12,"\u015f":8,"\u015e":12,"\u015d":8,"\u015c":12,"\u015b":8,"\u015a":12,"\u0159":8,"\u0157":8,"\u0155":8,"\u0153":15,"\u0151":15,"\u014f":15,"\u014d":15,"\u0123":15,"\u011f":15,"\u011d":15,"\u011b":15,"\u0119":15,"\u0117":15,"\u0113":15,"\u0111":15,"\u010f":15,"\u010d":15,"\u010b":15,"\u0109":15,"\u0107":15,"\u0105":15,"\u0104":12,"\u0103":15,"\u0102":12,"\u0101":15,"\u0100":12,"\u00fc":8,"\u00fb":8,"\u00fa":8,"\u00f9":8,"\u00f8":15,"\u00f6":15,"\u00f5":15,"\u00f4":15,"\u00f3":15,"\u00f2":15,"\u00eb":15,"\u00ea":15,"\u00e9":15,"\u00e8":15,"\u00e7":15,"\u00e6":15,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00c6":12,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"\u00ad":-11,"z":12,"x":8,"u":8,"s":8,"r":8,"q":15,"p":8,"o":15,"g":15,"e":15,"d":15,"c":15,"a":15,"S":12,"J":6,"A":12,".":37,"-":-11,",":19}},"G":{"d":"225,-174v-20,-26,-34,-45,-81,-45v-58,0,-99,43,-99,99v-2,120,171,132,181,25r-71,0r0,-26r100,0v1,32,-7,59,-23,82v-7,10,-34,43,-89,43v-71,0,-125,-54,-125,-124v0,-119,165,-168,226,-72","w":272,"k":{"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"H":{"d":"58,-240r0,97r123,0r0,-97r26,0r0,240r-26,0r0,-117r-123,0r0,117r-27,0r0,-240r27,0","w":238},"I":{"d":"31,-240r27,0r0,240r-27,0r0,-240","w":88},"J":{"d":"-2,-34v24,28,63,6,55,-33r0,-173r26,0r0,173v2,35,-12,73,-53,71v-17,0,-32,-5,-43,-17","w":110,"k":{"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"K":{"d":"58,-240r0,103r102,-103r36,0r-112,112r115,128r-36,0r-99,-110r-6,7r0,103r-27,0r0,-240r27,0","w":204,"k":{"v":22,"q":14,"p":14,"Q":19,"J":-19,"w":26,"y":22,"\u00fd":22,"\u00ff":22,"Y":8,"\u00dd":8,"\u0178":8,"C":30,"\u00c7":30,"\u0106":30,"\u0108":30,"\u010a":30,"\u010c":30,"S":15,"\u015a":15,"\u015c":15,"\u015e":15,"\u0160":15,"\u0218":15,"G":22,"\u011c":22,"\u011e":22,"\u0120":22,"\u0122":22,"O":19,"\u00d2":19,"\u00d3":19,"\u00d4":19,"\u00d5":19,"\u00d6":19,"\u00d8":19,"\u014c":19,"\u014e":19,"\u0150":19,"\u0152":19,"a":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u00e6":15,"\u0101":15,"\u0103":15,"\u0105":15,"\u01fd":15,"c":15,"\u00e7":15,"\u0107":15,"\u0109":15,"\u010b":15,"\u010d":15,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u0113":14,"\u0117":14,"\u0119":14,"\u011b":14,"g":14,"\u011d":14,"\u011f":14,"\u0123":14,"o":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014d":14,"\u014f":14,"\u0151":14,"\u0153":14,"s":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0161":14,"\u0219":14,"t":11,"\u0163":11,"\u0165":11,"\u021b":11,"u":19,"\u00f9":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u0169":19,"\u016b":19,"\u016d":19,"\u016f":19,"\u0171":19,"\u0173":19,"U":8,"\u00d9":8,"\u00da":8,"\u00db":8,"\u00dc":8,"\u0168":8,"\u016a":8,"\u016c":8,"\u016e":8,"\u0170":8,"\u0172":8}},"L":{"d":"31,-240r27,0r0,215r66,0r0,25r-93,0r0,-240","w":128,"k":{"v":11,"Q":12,"*":26,"w":11,"y":8,"\u00fd":8,"\u00ff":8,"T":6,"\u0162":6,"\u0164":6,"\u021a":6,"V":12,"W":12,"Y":12,"\u00dd":12,"\u0178":12,"C":12,"\u00c7":12,"\u0106":12,"\u0108":12,"\u010a":12,"\u010c":12,"G":11,"\u011c":11,"\u011e":11,"\u0120":11,"\u0122":11,"O":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"-":-11,"\u00ad":-11}},"M":{"d":"50,0r-27,0r40,-253r92,202r94,-203r37,254r-27,0r-23,-167r-82,177r-80,-177","w":310},"N":{"d":"58,0r-27,0r0,-250r187,196r0,-186r27,0r0,251r-187,-196r0,185","w":275},"O":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"P":{"d":"75,-240v45,-7,82,31,82,68v0,41,-36,75,-99,68r0,104r-27,0r0,-240r44,0xm58,-215r0,85v41,3,75,-7,72,-43v-4,-46,-39,-42,-72,-42","w":164,"k":{"\u01fd":7,"\u01fc":19,"\u017e":7,"\u017c":7,"\u017a":7,"\u0178":-8,"\u0153":3,"\u0151":3,"\u014f":3,"\u014d":3,"\u010d":3,"\u010b":3,"\u0109":3,"\u0107":3,"\u0105":7,"\u0104":19,"\u0103":7,"\u0102":19,"\u0101":7,"\u0100":19,"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00e7":3,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00dd":-8,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"z":7,"o":3,"c":3,"a":7,"Y":-8,"W":-12,"V":-12,"J":11,"A":19,".":30,",":42}},"Q":{"d":"235,3r-20,-21v-10,7,-34,22,-72,22v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,44,-20,71,-34,86r35,37r-34,0xm173,-96r42,43v9,-10,25,-32,25,-67v0,-55,-43,-99,-97,-99v-54,0,-98,44,-98,99v0,75,83,127,151,83r-58,-59r35,0","w":285,"k":{"\u0178":8,"\u00dd":8,"Y":8,"J":-15}},"R":{"d":"31,-240v63,-3,122,2,123,66v0,37,-24,64,-60,67r76,107r-32,0r-74,-105r-6,0r0,105r-27,0r0,-240xm127,-173v0,-29,-31,-48,-69,-42r0,86v40,3,69,-10,69,-44","k":{"v":8,"J":-11,"w":8,"Y":11,"\u00dd":11,"\u0178":11,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"\u01fd":4,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u0113":7,"\u0117":7,"\u0119":7,"\u011b":7,"g":8,"\u011d":8,"\u011f":8,"\u0123":8,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":8,"\u015b":8,"\u015d":8,"\u015f":8,"\u0161":8,"\u0219":8,"t":4,"\u0163":4,"\u0165":4,"\u021b":4,"u":8,"\u00f9":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u0169":8,"\u016b":8,"\u016d":8,"\u016f":8,"\u0171":8,"\u0173":8}},"S":{"d":"44,-65v2,26,24,44,49,44v45,0,63,-49,36,-75v-29,-28,-95,-29,-99,-86v-4,-68,106,-83,129,-25r-21,14v-9,-15,-15,-25,-41,-26v-33,-2,-54,38,-31,58v33,30,102,30,102,92v0,65,-79,97,-128,54v-13,-11,-19,-29,-22,-43","w":186,"k":{"X":11,"T":15,"\u0162":15,"\u0164":15,"\u021a":15,"W":8,"Y":11,"\u00dd":11,"\u0178":11,"S":8,"\u015a":8,"\u015c":8,"\u015e":8,"\u0160":8,"\u0218":8}},"T":{"d":"148,-215r-58,0r0,215r-27,0r0,-215r-58,0r0,-25r143,0r0,25","w":153,"k":{"x":20,"v":20,"q":30,"p":26,"m":26,"Q":13,":":8,".":8,"w":20,"y":20,"\u00fd":20,"\u00ff":20,"T":-8,"\u0162":-8,"\u0164":-8,"\u021a":-8,"Y":-8,"\u00dd":-8,"\u0178":-8,"C":13,"\u00c7":13,"\u0106":13,"\u0108":13,"\u010a":13,"\u010c":13,"S":10,"\u015a":10,"\u015c":10,"\u015e":10,"\u0160":10,"\u0218":10,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"O":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"a":30,"\u00e0":30,"\u00e1":30,"\u00e2":30,"\u00e3":30,"\u00e4":30,"\u00e5":30,"\u00e6":30,"\u0101":30,"\u0103":30,"\u0105":30,"\u01fd":30,"c":30,"\u00e7":30,"\u0107":30,"\u0109":30,"\u010b":30,"\u010d":30,"d":30,"\u010f":30,"\u0111":30,"e":30,"\u00e8":30,"\u00e9":30,"\u00ea":30,"\u00eb":30,"\u0113":30,"\u0117":30,"\u0119":30,"\u011b":30,"g":30,"\u011d":30,"\u011f":30,"\u0123":30,"o":30,"\u00f2":30,"\u00f3":30,"\u00f4":30,"\u00f5":30,"\u00f6":30,"\u00f8":30,"\u014d":30,"\u014f":30,"\u0151":30,"\u0153":30,"s":33,"\u015b":33,"\u015d":33,"\u015f":33,"\u0161":33,"\u0219":33,"t":11,"\u0163":11,"\u0165":11,"\u021b":11,"u":26,"\u00f9":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u0169":26,"\u016b":26,"\u016d":26,"\u016f":26,"\u0171":26,"\u0173":26,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u00c5":19,"\u00c6":19,"\u0100":19,"\u0102":19,"\u0104":19,"\u01fc":19,"h":26,"n":26,"\u00f1":26,"\u0125":26,"\u0127":26,"\u0144":26,"\u0146":26,"\u0148":26,"r":26,"\u0155":26,"\u0157":26,"\u0159":26,",":8,";":8}},"U":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"V":{"d":"3,-240r29,0r68,183r68,-183r29,0r-97,254","w":200,"k":{"\u00ae":-12,"\u00a9":-22,"x":12,"q":11,"p":17,"m":11,":":8,".":12,"w":8,"y":11,"\u00fd":11,"\u00ff":11,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"a":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u00e6":15,"\u0101":15,"\u0103":15,"\u0105":15,"\u01fd":15,"c":15,"\u00e7":15,"\u0107":15,"\u0109":15,"\u010b":15,"\u010d":15,"d":19,"\u010f":19,"\u0111":19,"e":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u0113":11,"\u0117":11,"\u0119":11,"\u011b":11,"g":15,"\u011d":15,"\u011f":15,"\u0123":15,"o":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u00f6":11,"\u00f8":11,"\u014d":11,"\u014f":11,"\u0151":11,"\u0153":11,"s":17,"\u015b":17,"\u015d":17,"\u015f":17,"\u0161":17,"\u0219":17,"u":17,"\u00f9":17,"\u00fa":17,"\u00fb":17,"\u00fc":17,"\u0169":17,"\u016b":17,"\u016d":17,"\u016f":17,"\u0171":17,"\u0173":17,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u00c5":19,"\u00c6":19,"\u0100":19,"\u0102":19,"\u0104":19,"\u01fc":19,"h":11,"n":11,"\u00f1":11,"\u0125":11,"\u0127":11,"\u0144":11,"\u0146":11,"\u0148":11,"r":17,"\u0155":17,"\u0157":17,"\u0159":17,",":12,";":8}},"W":{"d":"3,-240r29,0r64,180r75,-192r71,192r70,-180r30,0r-101,253r-70,-193r-76,193","w":344,"k":{"\u00ae":-11,"\u00a9":-15,"x":17,"v":15,"q":15,"p":21,"m":19,":":10,"w":15,"y":17,"\u00fd":17,"\u00ff":17,"z":21,"\u017a":21,"\u017c":21,"\u017e":21,"a":26,"\u00e0":26,"\u00e1":26,"\u00e2":26,"\u00e3":26,"\u00e4":26,"\u00e5":26,"\u00e6":26,"\u0101":26,"\u0103":26,"\u0105":26,"\u01fd":26,"c":19,"\u00e7":19,"\u0107":19,"\u0109":19,"\u010b":19,"\u010d":19,"d":19,"\u010f":19,"\u0111":19,"e":15,"\u00e8":15,"\u00e9":15,"\u00ea":15,"\u00eb":15,"\u0113":15,"\u0117":15,"\u0119":15,"\u011b":15,"g":15,"\u011d":15,"\u011f":15,"\u0123":15,"o":15,"\u00f2":15,"\u00f3":15,"\u00f4":15,"\u00f5":15,"\u00f6":15,"\u00f8":15,"\u014d":15,"\u014f":15,"\u0151":15,"\u0153":15,"s":11,"\u015b":11,"\u015d":11,"\u015f":11,"\u0161":11,"\u0219":11,"u":21,"\u00f9":21,"\u00fa":21,"\u00fb":21,"\u00fc":21,"\u0169":21,"\u016b":21,"\u016d":21,"\u016f":21,"\u0171":21,"\u0173":21,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u00c5":19,"\u00c6":19,"\u0100":19,"\u0102":19,"\u0104":19,"\u01fc":19,"h":21,"n":21,"\u00f1":21,"\u0125":21,"\u0127":21,"\u0144":21,"\u0146":21,"\u0148":21,"r":21,"\u0155":21,"\u0157":21,"\u0159":21,",":19,".":19,";":10}},"X":{"d":"5,0r71,-124r-64,-116r30,0r49,90r52,-90r30,0r-66,116r69,124r-30,0r-55,-99r-56,99r-30,0","w":181,"k":{"\u0152":9,"\u0150":9,"\u014e":9,"\u014c":9,"\u0122":9,"\u0120":9,"\u011e":9,"\u011c":9,"\u010c":9,"\u010a":9,"\u0108":9,"\u0106":9,"\u00ff":1,"\u00fd":1,"\u00d8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c7":9,"y":1,"w":1,"v":1,"Q":9,"O":9,"G":9,"C":9}},"Y":{"d":"82,0r0,-103r-79,-137r31,0r61,107r62,-107r31,0r-80,137r0,103r-26,0","w":190,"k":{"\u00ae":-7,"\u00ab":15,"\u00a9":-8,"x":20,"v":15,"q":36,"p":30,"m":30,"Q":9,"M":11,"J":7,":":27,".":22,"w":15,"y":19,"\u00fd":19,"\u00ff":19,"T":-8,"\u0162":-8,"\u0164":-8,"\u021a":-8,"V":-4,"C":9,"\u00c7":9,"\u0106":9,"\u0108":9,"\u010a":9,"\u010c":9,"S":11,"\u015a":11,"\u015c":11,"\u015e":11,"\u0160":11,"\u0218":11,"z":30,"\u017a":30,"\u017c":30,"\u017e":30,"G":9,"\u011c":9,"\u011e":9,"\u0120":9,"\u0122":9,"O":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"\u00d6":9,"\u00d8":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"a":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u00e6":36,"\u0101":36,"\u0103":36,"\u0105":36,"\u01fd":36,"c":36,"\u00e7":36,"\u0107":36,"\u0109":36,"\u010b":36,"\u010d":36,"d":36,"\u010f":36,"\u0111":36,"e":36,"\u00e8":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u0113":36,"\u0117":36,"\u0119":36,"\u011b":36,"g":36,"\u011d":36,"\u011f":36,"\u0123":36,"o":36,"\u00f2":36,"\u00f3":36,"\u00f4":36,"\u00f5":36,"\u00f6":36,"\u00f8":36,"\u014d":36,"\u014f":36,"\u0151":36,"\u0153":36,"s":31,"\u015b":31,"\u015d":31,"\u015f":31,"\u0161":31,"\u0219":31,"t":15,"\u0163":15,"\u0165":15,"\u021b":15,"u":33,"\u00f9":33,"\u00fa":33,"\u00fb":33,"\u00fc":33,"\u0169":33,"\u016b":33,"\u016d":33,"\u016f":33,"\u0171":33,"\u0173":33,"A":23,"\u00c0":23,"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c4":23,"\u00c5":23,"\u00c6":23,"\u0100":23,"\u0102":23,"\u0104":23,"\u01fc":23,"h":30,"n":30,"\u00f1":30,"\u0125":30,"\u0127":30,"\u0144":30,"\u0146":30,"\u0148":30,"r":30,"\u0155":30,"\u0157":30,"\u0159":30,",":22,";":27}},"Z":{"d":"184,-240r-131,215r128,0r0,25r-172,0r131,-215r-114,0r0,-25r158,0","w":192,"k":{"v":19,"q":11,"p":7,"Q":11,"w":15,"y":15,"\u00fd":15,"\u00ff":15,"C":11,"\u00c7":11,"\u0106":11,"\u0108":11,"\u010a":11,"\u010c":11,"S":7,"\u015a":7,"\u015c":7,"\u015e":7,"\u0160":7,"\u0218":7,"G":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"O":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":11,"\u00e0":11,"\u00e1":11,"\u00e2":11,"\u00e3":11,"\u00e4":11,"\u00e5":11,"\u00e6":11,"\u0101":11,"\u0103":11,"\u0105":11,"\u01fd":11,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u0113":11,"\u0117":11,"\u0119":11,"\u011b":11,"o":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":7,"\u015b":7,"\u015d":7,"\u015f":7,"\u0161":7,"\u0219":7,"u":11,"\u00f9":11,"\u00fa":11,"\u00fb":11,"\u00fc":11,"\u0169":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11}},"[":{"d":"89,-239r-34,0r0,276r34,0r0,24r-60,0r0,-323r60,0r0,23","w":104},"\\":{"d":"215,61r-21,10r-187,-333r21,-11","w":214},"]":{"d":"15,37r35,0r0,-276r-35,0r0,-23r61,0r0,323r-61,0r0,-24","w":104},"^":{"d":"90,-220r-53,89r-28,0r64,-109r34,0r64,109r-28,0"},"_":{"d":"0,48r0,-24r180,0r0,24r-180,0"},"`":{"d":"90,-179r-49,-49r27,-12r37,52"},"a":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"b":{"d":"50,-21r0,21r-26,0r0,-262r26,0r0,133v51,-57,124,-6,124,55v0,41,-26,78,-71,78v-24,0,-42,-11,-53,-25xm99,-19v30,0,49,-25,49,-55v-1,-75,-98,-73,-99,0v0,31,19,55,50,55","w":189,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"V":9,"Y":18,"\u00dd":18,"\u0178":18,"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"c":{"d":"141,-139r0,31v-35,-41,-99,-24,-99,34v0,60,67,72,101,32r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65","w":157,"k":{"J":-13,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18}},"d":{"d":"139,-128r0,-134r26,0r0,262r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56","w":189,"k":{"J":-14,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"e":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"f":{"d":"88,-238v-50,-21,-35,46,-37,89r37,0r0,23r-37,0r0,126r-26,0r0,-126r-14,0r0,-23r14,0v-2,-62,-8,-133,63,-114r0,25","w":86,"k":{"x":-4,"v":-11,"f":-7,"X":-13,"Q":-4,"w":-11,"y":-7,"\u00fd":-7,"\u00ff":-7,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"G":-4,"\u011c":-4,"\u011e":-4,"\u0120":-4,"\u0122":-4,"O":-9,"\u00d2":-9,"\u00d3":-9,"\u00d4":-9,"\u00d5":-9,"\u00d6":-9,"\u00d8":-9,"\u014c":-9,"\u014e":-9,"\u0150":-9,"\u0152":-9,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7}},"g":{"d":"15,-75v-5,-75,85,-101,124,-53r0,-21r26,0v-5,100,29,232,-74,232v-49,0,-69,-23,-73,-69r26,0v-1,28,24,46,47,46v39,0,53,-36,48,-81v-9,11,-25,25,-51,25v-48,0,-69,-25,-73,-79xm140,-75v0,-33,-18,-54,-49,-55v-33,-1,-49,31,-49,55v0,23,17,56,49,56v32,0,49,-25,49,-56","w":189,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"h":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-262r26,0r0,130v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130","w":169,"k":{"\u021a":13,"\u0178":22,"\u0164":13,"\u0162":13,"\u00dd":22,"Y":22,"V":13,"T":13,"W":9}},"i":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm19,-206v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":74},"j":{"d":"24,-149r26,0r0,232r-26,0r0,-232xm19,-206v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":74},"k":{"d":"24,-262r26,0r0,168r55,-55r34,0r-64,64r75,85r-33,0r-60,-68r-7,6r0,62r-26,0r0,-262","w":151,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"V":13,"W":9,"Y":22,"\u00dd":22,"\u0178":22}},"l":{"d":"24,-262r26,0r0,262r-26,0r0,-262","w":74},"m":{"d":"24,0r0,-149r26,0r0,15v8,-12,21,-19,37,-19v27,0,38,19,41,24v14,-23,35,-24,45,-24v79,0,40,87,49,153r-26,0r0,-91v0,-17,-3,-39,-27,-39v-56,0,-25,79,-33,130r-26,0r0,-89v0,-10,0,-41,-27,-41v-56,0,-26,79,-33,130r-26,0","w":246,"k":{"\u021a":23,"\u0178":23,"\u0164":23,"\u0162":23,"\u00dd":23,"Y":23,"T":23}},"n":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-149r26,0r0,17v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130","w":169,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"o":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"p":{"d":"50,-21r0,104r-26,0r0,-232r26,0r0,20v51,-57,124,-6,124,55v0,41,-26,78,-71,78v-24,0,-42,-11,-53,-25xm99,-19v30,0,49,-25,49,-55v-1,-75,-98,-73,-99,0v0,31,19,55,50,55","w":189,"k":{"\u021a":13,"\u017e":4,"\u017c":4,"\u017a":4,"\u0178":27,"\u0164":13,"\u0162":13,"\u00dd":27,"z":4,"Y":27,"T":13}},"q":{"d":"139,-128r0,-21r26,0r0,232r-26,0r0,-104v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56","w":189,"k":{"\u021a":9,"\u0178":22,"\u0164":9,"\u0162":9,"\u00dd":22,"Y":22,"T":9,"J":-14}},"r":{"d":"95,-123v-29,-14,-46,2,-45,44r0,79r-26,0r0,-149r26,0r0,16v1,-10,39,-29,57,-14","w":106,"k":{"v":-8,"q":9,"f":-8,"Q":-4,".":17,"w":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":13,"\u00dd":13,"\u0178":13,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"O":-4,"\u00d2":-4,"\u00d3":-4,"\u00d4":-4,"\u00d5":-4,"\u00d6":-4,"\u00d8":-4,"\u014c":-4,"\u014e":-4,"\u0150":-4,"\u0152":-4,"a":8,"\u00e0":8,"\u00e1":8,"\u00e2":8,"\u00e3":8,"\u00e4":8,"\u00e5":8,"\u00e6":8,"\u0101":8,"\u0103":8,"\u0105":8,"\u01fd":8,"c":9,"\u00e7":9,"\u0107":9,"\u0109":9,"\u010b":9,"\u010d":9,"d":9,"\u010f":9,"\u0111":9,"e":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u0113":9,"\u0117":9,"\u0119":9,"\u011b":9,"g":9,"\u011d":9,"\u011f":9,"\u0123":9,"o":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7}},"s":{"d":"90,-42v0,-36,-71,-27,-67,-69v4,-45,58,-63,84,-15r-21,11v-5,-18,-38,-22,-39,2v8,30,70,27,70,68v0,31,-23,49,-52,49v-6,0,-39,-1,-52,-38r22,-9v3,8,12,24,31,24v17,0,24,-12,24,-23","w":126,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"t":{"d":"77,-126r-26,0r0,126r-26,0r0,-126r-16,0r0,-23r16,0r0,-54r26,0r0,54r26,0r0,23","w":77,"k":{"v":-7,"f":-4,"Q":-4,"J":-9,"w":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,"T":9,"\u0162":9,"\u0164":9,"\u021a":9,"Y":9,"\u00dd":9,"\u0178":9,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7,":":-8,";":-8}},"u":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"v":{"d":"3,-149r29,0r44,100r45,-100r29,0r-74,159","w":152,"k":{"\u021a":18,"\u017e":8,"\u017c":8,"\u017a":8,"\u0178":18,"\u0164":18,"\u0162":18,"\u00dd":18,"\u00ad":-8,"z":8,"Y":18,"T":18,".":15,"-":-8,",":5}},"w":{"d":"3,-149r29,0r44,101r47,-113r46,113r45,-101r29,0r-75,159r-46,-111r-46,111","w":245,"k":{".":6,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,",":6}},"x":{"d":"3,0r64,-80r-55,-69r32,0r38,50r40,-50r31,0r-54,69r62,80r-32,0r-47,-61r-47,61r-32,0","w":163,"k":{"\u021a":18,"\u0178":27,"\u0164":18,"\u0162":18,"\u00dd":27,"Y":27,"V":9,"T":18}},"y":{"d":"24,83r48,-97r-69,-135r29,0r53,107r49,-107r29,0r-110,232r-29,0","w":165,"k":{".":8,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":23,"\u00dd":23,"\u0178":23,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"-":-11,"\u00ad":-11,",":8}},"z":{"d":"163,-149r-108,125r103,0r0,24r-155,0r108,-126r-87,0r0,-23r139,0","w":165,"k":{"q":4,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"\u01fd":4,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":8,"\u010f":8,"\u0111":8,"e":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u0113":4,"\u0117":4,"\u0119":4,"\u011b":4,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":7,"\u015b":7,"\u015d":7,"\u015f":7,"\u0161":7,"\u0219":7,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u0169":4,"\u016b":4,"\u016d":4,"\u016f":4,"\u0171":4,"\u0173":4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"\u01fc":-4}},"{":{"d":"134,-240v-70,-13,-4,117,-57,139v53,13,-17,147,57,140r0,22v-17,0,-31,2,-44,-7v-31,-22,-17,-68,-17,-112v0,-16,-9,-32,-20,-32r0,-21v55,-15,-32,-163,81,-151r0,22"},"|":{"d":"77,90r0,-360r26,0r0,360r-26,0"},"}":{"d":"103,-101v-53,-13,17,-147,-56,-139r0,-22v17,0,30,-2,43,7v31,22,17,68,17,112v0,17,9,33,21,32r0,21v-57,13,31,162,-81,151r0,-22v69,13,3,-118,56,-140"},"~":{"d":"127,-105v16,1,28,-14,34,-25r15,9v-9,19,-24,41,-52,41v-23,0,-54,-24,-73,-24v-17,0,-26,14,-32,26r-15,-9v9,-20,22,-42,48,-42v24,0,52,22,75,24"},"\u00a0":{"w":83},"\u00a1":{"d":"37,-109r26,0r0,192r-26,0r0,-192xm68,-143v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":100},"\u00a2":{"d":"35,-122v0,-53,21,-66,67,-78r0,-36r22,0r0,35v14,2,27,7,38,14r0,31v-7,-9,-20,-20,-38,-22r0,110v18,-2,32,-13,39,-22r0,31v-7,5,-20,13,-39,15r0,39r-22,0r0,-40v-38,-8,-67,-28,-67,-77xm102,-177v-57,4,-48,105,0,109r0,-109","w":204},"\u00a3":{"d":"110,-243v51,2,66,29,69,78r-26,0v2,-25,-11,-55,-44,-53v-60,3,-44,73,-19,105r46,0r0,20r-37,0v7,21,5,38,-6,56v13,4,35,15,46,16v14,1,26,-14,31,-25r22,13v-13,38,-59,45,-95,25v-30,-16,-45,-3,-57,13r-21,-14v9,-15,28,-32,47,-31v10,-20,15,-27,5,-53r-40,0r0,-20r31,0v-35,-45,-33,-133,48,-130","w":204},"\u00a4":{"d":"34,-229r34,34v39,-26,65,-25,104,0r35,-34r14,14r-34,35v26,40,25,62,0,102r34,34r-15,14r-34,-33v-39,26,-65,25,-104,0r-34,33r-14,-14r34,-34v-27,-40,-26,-62,0,-102r-35,-35xm120,-68v34,0,61,-25,61,-61v0,-36,-27,-61,-61,-61v-34,0,-60,25,-60,61v0,36,26,61,60,61","w":240},"\u00a5":{"d":"186,-138r-50,0r-19,31r69,0r0,21r-71,0r0,86r-26,0r0,-86r-71,0r0,-21r68,0r-18,-31r-50,0r0,-20r39,0r-48,-82r32,0r61,107r62,-107r31,0r-48,82r39,0r0,20","w":204},"\u00a6":{"d":"77,-140r0,-130r26,0r0,130r-26,0xm77,90r0,-130r26,0r0,130r-26,0"},"\u00a7":{"d":"105,-262v37,-3,68,37,62,68v-8,-1,-22,3,-26,-2v2,-24,-15,-44,-35,-43v-21,0,-38,14,-38,34v0,52,105,37,100,102v7,23,-26,57,-36,58v17,8,29,24,30,46v4,59,-78,77,-109,42v-16,-17,-15,-42,-16,-48r26,0v3,21,8,42,37,42v18,0,39,-14,36,-34v-8,-56,-100,-31,-100,-105v0,-25,17,-49,37,-55v-12,-5,-33,-26,-31,-45v3,-37,25,-57,63,-60xm141,-101v0,-21,-13,-39,-39,-39v-25,0,-39,12,-39,39v0,29,17,39,39,39v23,0,39,-15,39,-39","w":204},"\u00a8":{"d":"41,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm103,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18"},"\u00a9":{"d":"9,-120v0,-69,56,-124,124,-124v68,0,124,55,124,124v0,68,-56,124,-124,124v-68,0,-124,-56,-124,-124xm237,-120v0,-58,-46,-104,-104,-104v-58,0,-104,46,-104,104v0,57,46,104,104,104v58,0,104,-47,104,-104xm185,-179r0,29v-33,-38,-94,-24,-94,32v0,58,68,64,95,29r0,30v-53,37,-119,0,-119,-59v0,-59,67,-97,118,-61","w":266},"\u00aa":{"d":"14,-190v-4,-49,54,-63,81,-36r0,-12r18,0r0,96r-18,0r0,-12v-26,32,-88,5,-81,-36xm96,-190v0,-19,-13,-33,-32,-34v-18,-2,-32,17,-32,35v0,19,15,34,33,34v19,-1,31,-15,31,-35xm18,-120r95,0r0,15r-95,0r0,-15","w":134},"\u00ab":{"d":"40,-76r44,52r-17,13r-54,-65r54,-68r17,13xm94,-76r43,52r-17,13r-54,-65r54,-68r17,13","w":154},"\u00ac":{"d":"168,0r-25,0r0,-73r-131,0r0,-23r156,0r0,96"},"\u00ad":{"d":"18,-63r0,-27r79,0r0,27r-79,0","w":115,"k":{"T":12,"\u0162":12,"\u0164":12,"\u021a":12,"V":8,"W":8,"Y":15,"\u00dd":15,"\u0178":15}},"\u00ae":{"d":"10,-120v0,-71,52,-123,123,-123v71,0,124,52,124,123v0,71,-53,124,-124,124v-71,0,-123,-53,-123,-124xm237,-120v0,-59,-45,-103,-104,-103v-59,0,-103,44,-103,103v0,59,44,104,103,104v59,0,104,-45,104,-104xm183,-52r-24,0r-44,-57r0,57r-20,0r0,-135v35,1,77,-10,77,39v0,21,-14,35,-35,37xm115,-170r0,44v18,0,37,0,37,-22v0,-24,-20,-22,-37,-22","w":266},"\u00af":{"d":"36,-185r0,-21r108,0r0,21r-108,0"},"\u00b0":{"d":"39,-191v0,-28,22,-50,50,-50v28,0,49,22,49,50v0,28,-21,50,-49,50v-28,0,-50,-22,-50,-50xm57,-191v2,44,61,44,63,0v-2,-44,-61,-44,-63,0","w":177},"\u00b1":{"d":"12,-124r0,-24r65,0r0,-62r26,0r0,62r65,0r0,24r-65,0r0,61r-26,0r0,-61r-65,0xm12,-24r0,-24r156,0r0,24r-156,0"},"\u00b2":{"d":"15,-196v-2,-27,25,-46,46,-46v40,0,60,42,35,73v-16,21,-32,36,-48,56r59,0r0,17r-95,0r69,-82v14,-15,9,-48,-20,-48v-15,0,-28,14,-28,30r-18,0","w":126},"\u00b3":{"d":"60,-226v-17,0,-21,10,-23,23r-18,0v-2,-21,26,-44,41,-39v49,5,56,45,24,70v37,19,21,81,-25,78v-31,-2,-44,-15,-45,-41r18,0v1,15,10,25,26,25v17,0,28,-13,28,-28v0,-19,-13,-26,-31,-25r0,-17v16,0,28,-6,29,-23v0,-11,-7,-23,-24,-23","w":126},"\u00b4":{"d":"112,-240r27,12r-48,49r-16,-9"},"\u00b5":{"d":"61,-32v35,37,77,-7,77,-46r0,-71r26,0r0,149r-26,0r0,-31v-7,20,-23,35,-46,35v-27,0,-39,-21,-42,-26r0,105r-26,0r0,-232r26,0v3,45,-9,83,11,117","w":188},"\u00b6":{"d":"8,-175v0,-83,95,-63,176,-65r0,21r-22,0r0,253r-22,0r0,-253r-38,0r0,253r-23,0r0,-147v-42,-1,-71,-16,-71,-62","w":208},"\u00b7":{"d":"13,-122v0,-12,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23","w":72},"\u00b8":{"d":"96,19r24,9r-37,47r-17,-9"},"\u00b9":{"d":"60,-96r0,-128r-28,0r8,-16r38,0r0,144r-18,0","w":126},"\u00ba":{"d":"15,-190v0,-25,19,-50,52,-50v28,0,55,20,53,50v-2,36,-18,48,-53,50v-32,2,-52,-21,-52,-50xm19,-120r97,0r0,15r-97,0r0,-15xm102,-190v-1,-22,-10,-34,-35,-34v-25,0,-34,13,-34,34v0,23,13,34,34,34v19,0,36,-12,35,-34","w":134},"\u00bb":{"d":"61,-78r-43,-53r17,-13r54,66r-54,67r-17,-13xm114,-78r-43,-53r17,-13r54,66r-54,67r-17,-13","w":154},"\u00bc":{"d":"60,-96r0,-128r-28,0r8,-16r38,0r0,144r-18,0xm67,-4r140,-241r14,8r-140,242xm244,-152r0,108r18,0r0,17r-18,0r0,27r-18,0r0,-27r-73,0xm186,-44r40,0r0,-56","w":273},"\u00bd":{"d":"60,-96r0,-128r-28,0r8,-16r38,0r0,144r-18,0xm53,-4r140,-241r13,8r-139,242xm163,-100v-1,-26,25,-46,45,-46v40,0,60,42,35,73r-47,56r59,0r0,17r-96,0r69,-82v13,-15,9,-48,-19,-48v-15,0,-29,12,-28,30r-18,0","w":273},"\u00be":{"d":"61,-242v45,-5,52,57,23,70v38,16,17,85,-25,78v-20,1,-47,-15,-45,-41r18,0v2,35,54,32,54,-3v0,-18,-15,-26,-31,-25v1,-5,-3,-15,2,-17v12,1,27,-7,27,-23v0,-16,-13,-23,-24,-23v-16,0,-22,10,-23,23r-18,0v3,-26,12,-36,42,-39xm75,-4r139,-241r14,8r-140,242xm244,-152r0,108r18,0r0,17r-18,0r0,27r-18,0r0,-27r-73,0xm186,-44r40,0r0,-56","w":273},"\u00bf":{"d":"79,-84v-18,0,-25,15,-26,31r-26,0v3,-34,13,-51,52,-55v59,-6,66,83,21,96v-26,7,-56,20,-53,42v2,14,9,33,31,33v24,0,40,-24,30,-47r27,0v7,41,-13,71,-56,71v-64,0,-79,-93,-19,-111v19,-6,40,-5,44,-34v-1,-17,-7,-26,-25,-26xm96,-143v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":156},"\u00c0":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96xm116,-259r-56,-42r26,-17r45,47","w":223,"k":{"v":8,"J":-23,"*":42}},"\u00c1":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96xm141,-318r26,17r-55,42r-16,-12","w":223,"k":{"v":8,"J":-23,"*":42}},"\u00c2":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96xm113,-287r-32,27r-18,-14r50,-43r50,43r-18,14","w":223,"k":{"v":8,"J":-23,"*":42}},"\u00c3":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96xm90,-303v24,0,51,30,62,0r16,12v-4,13,-23,27,-35,26v-21,-1,-53,-31,-61,1r-16,-13v6,-14,16,-26,34,-26","w":223,"k":{"v":8,"J":-23,"*":42}},"\u00c4":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96xm60,-282v0,-10,9,-19,19,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18xm129,-282v0,-10,8,-19,18,-19v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":223,"k":{"v":8,"J":-23,"*":42}},"\u00c5":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96xm82,-294v0,-17,14,-32,31,-32v17,0,32,15,32,32v0,17,-15,31,-32,31v-17,0,-31,-14,-31,-31xm98,-295v0,8,7,15,15,15v8,0,16,-7,16,-15v0,-21,-31,-18,-31,0","w":223,"k":{"v":8,"J":-23,"*":42}},"\u00c6":{"d":"194,0r-29,-67r-102,0r-28,67r-30,0r107,-240r105,0r11,25r-97,0r30,71r95,0r10,26r-94,0r39,93r98,0r10,25r-125,0xm75,-93r80,0r-40,-93","w":324},"\u00c7":{"d":"45,-119v0,102,121,121,170,67r0,33v-89,61,-197,-4,-197,-100v0,-98,107,-164,197,-101r0,33v-15,-16,-43,-33,-73,-32v-55,0,-97,45,-97,100xm131,19r25,11r-37,46r-18,-10","w":232,"k":{"J":-11,"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u00c8":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm98,-259r-56,-42r26,-17r45,47","w":173},"\u00c9":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm120,-318r25,17r-55,42r-16,-12","w":173},"\u00ca":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm94,-287r-32,27r-19,-14r51,-43r50,43r-19,14","w":173},"\u00cb":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm41,-282v0,-10,8,-19,18,-19v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18xm109,-282v0,-10,9,-19,19,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18","w":173},"\u00cc":{"d":"31,-240r27,0r0,240r-27,0r0,-240xm45,-259r-55,-42r25,-17r45,47","w":88},"\u00cd":{"d":"31,-240r27,0r0,240r-27,0r0,-240xm77,-318r25,17r-55,42r-16,-12","w":88},"\u00ce":{"d":"31,-240r26,0r0,240r-26,0r0,-240xm44,-287r-31,27r-19,-14r50,-43r51,43r-19,14","w":88},"\u00cf":{"d":"31,-240r27,0r0,240r-27,0r0,-240xm5,-282v0,-10,8,-19,17,-19v9,0,16,9,16,19v0,10,-7,18,-16,18v-9,0,-17,-8,-17,-18xm51,-282v0,-10,7,-19,16,-19v9,0,16,9,16,19v0,10,-7,18,-16,18v-9,0,-16,-8,-16,-18","w":88},"\u00d0":{"d":"31,-240v98,-10,179,24,179,120v0,50,-27,76,-43,92v-27,28,-78,29,-136,28r0,-121r-31,0r0,-23r31,0r0,-96xm58,-25v67,7,124,-25,124,-95v0,-66,-49,-101,-124,-95r0,71r49,0r0,23r-49,0r0,96","w":227,"k":{"Y":8,"\u00dd":8,"\u0178":8}},"\u00d1":{"d":"58,0r-27,0r0,-250r187,196r0,-186r27,0r0,251r-187,-196r0,185xm116,-303v24,0,51,30,62,0r16,12v-4,13,-23,27,-35,26v-21,-1,-53,-31,-61,1r-16,-13v6,-14,16,-26,34,-26","w":275},"\u00d2":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99xm148,-259r-55,-42r25,-17r45,47","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"\u00d3":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99xm166,-318r26,17r-56,42r-15,-12","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"\u00d4":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99xm143,-287r-32,27r-18,-14r50,-43r50,43r-18,14","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"\u00d5":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99xm121,-303v24,0,51,30,62,0r16,12v-4,13,-23,27,-35,26v-21,-1,-53,-31,-61,1r-16,-13v6,-14,16,-26,34,-26","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"\u00d6":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99xm90,-282v0,-10,9,-19,19,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18xm159,-282v0,-10,8,-19,18,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"\u00d7":{"d":"22,-68r51,-52r-54,-54r17,-16r54,53r54,-53r17,16r-54,54r51,52r-17,17r-51,-52r-51,52"},"\u00d8":{"d":"268,-229r-29,29v9,11,29,37,29,80v0,71,-56,124,-125,124v-40,0,-65,-15,-80,-28r-29,29r-18,-18r29,-29v-89,-112,55,-266,176,-176r29,-29xm66,-60r135,-140v-8,-6,-28,-19,-58,-19v-54,0,-98,44,-98,99v0,31,13,50,21,60xm219,-182r-136,141v91,69,205,-48,136,-141","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"\u00d9":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm119,-259r-55,-42r25,-17r46,47","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u00da":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm143,-318r25,17r-55,42r-15,-12","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u00db":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm116,-287r-31,27r-19,-14r50,-43r51,43r-19,14","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u00dc":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm64,-282v0,-10,8,-19,18,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm132,-282v0,-10,8,-19,18,-19v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u00dd":{"d":"82,0r0,-103r-79,-137r31,0r61,107r62,-107r31,0r-80,137r0,103r-26,0xm125,-318r25,17r-55,42r-15,-12","w":190,"k":{"\u00ae":-7,"\u00ab":15,"\u00a9":-8,"x":20,"v":15,"q":36,"p":30,"m":30,"Q":9,"M":11,"J":7,":":27,".":22,"w":15,"y":19,"\u00fd":19,"\u00ff":19,"T":-8,"\u0162":-8,"\u0164":-8,"\u021a":-8,"V":-4,"C":9,"\u00c7":9,"\u0106":9,"\u0108":9,"\u010a":9,"\u010c":9,"S":11,"\u015a":11,"\u015c":11,"\u015e":11,"\u0160":11,"\u0218":11,"z":30,"\u017a":30,"\u017c":30,"\u017e":30,"G":9,"\u011c":9,"\u011e":9,"\u0120":9,"\u0122":9,"O":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"\u00d6":9,"\u00d8":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"a":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u00e6":36,"\u0101":36,"\u0103":36,"\u0105":36,"\u01fd":36,"c":36,"\u00e7":36,"\u0107":36,"\u0109":36,"\u010b":36,"\u010d":36,"d":36,"\u010f":36,"\u0111":36,"e":36,"\u00e8":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u0113":36,"\u0117":36,"\u0119":36,"\u011b":36,"g":36,"\u011d":36,"\u011f":36,"\u0123":36,"o":36,"\u00f2":36,"\u00f3":36,"\u00f4":36,"\u00f5":36,"\u00f6":36,"\u00f8":36,"\u014d":36,"\u014f":36,"\u0151":36,"\u0153":36,"s":31,"\u015b":31,"\u015d":31,"\u015f":31,"\u0161":31,"\u0219":31,"t":15,"\u0163":15,"\u0165":15,"\u021b":15,"u":33,"\u00f9":33,"\u00fa":33,"\u00fb":33,"\u00fc":33,"\u0169":33,"\u016b":33,"\u016d":33,"\u016f":33,"\u0171":33,"\u0173":33,"A":23,"\u00c0":23,"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c4":23,"\u00c5":23,"\u00c6":23,"\u0100":23,"\u0102":23,"\u0104":23,"\u01fc":23,"h":30,"n":30,"\u00f1":30,"\u0125":30,"\u0127":30,"\u0144":30,"\u0146":30,"\u0148":30,"r":30,"\u0155":30,"\u0157":30,"\u0159":30,",":22,";":27}},"\u00de":{"d":"58,-204v57,-9,99,25,99,68v0,41,-36,75,-99,68r0,68r-27,0r0,-240r27,0r0,36xm58,-179r0,85v41,3,75,-7,72,-43v-4,-46,-39,-42,-72,-42","w":164},"\u00df":{"d":"90,-244v-32,0,-37,27,-37,56r0,188r-26,0r0,-126r-25,0r0,-23r25,0v-3,-62,-1,-114,63,-118v32,-2,66,31,63,61v3,21,-15,46,-28,50v31,12,51,28,51,72v0,57,-31,81,-91,88r0,-25v37,-4,62,-23,64,-62v2,-39,-35,-60,-64,-60r0,-23v19,3,44,-19,41,-38v-4,-30,-8,-40,-36,-40","w":191},"\u00e0":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm90,-179r-49,-49r27,-12r37,52","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00e1":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm112,-240r27,12r-48,49r-16,-9","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00e2":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm92,-208r-33,29r-17,-13r50,-43r50,43r-17,13","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00e3":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm77,-216v24,1,53,29,63,-1r15,12v-3,10,-22,27,-33,25v-23,-4,-52,-27,-63,1r-15,-12v6,-11,18,-26,33,-25","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00e4":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm47,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm109,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00e5":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm66,-210v0,-17,13,-31,30,-31v17,0,31,14,31,31v0,17,-14,31,-31,31v-17,0,-30,-14,-30,-31xm81,-210v0,8,7,15,15,15v8,0,16,-7,16,-15v0,-21,-31,-18,-31,0","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00e6":{"d":"120,-81v2,-25,-15,-49,-42,-49v-17,0,-37,6,-46,9r0,-24v48,-11,74,-18,103,22v37,-58,139,-27,129,54r-117,0v-1,58,76,64,93,19r22,13v-18,37,-87,67,-126,11v-15,27,-41,30,-56,30v-35,0,-65,-15,-65,-48v0,-49,71,-63,105,-37xm149,-91r88,0v-5,-50,-83,-52,-88,0xm80,-71v-48,0,-57,51,-1,52v30,0,40,-14,40,-26v0,-10,-9,-26,-39,-26","w":278,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u00e7":{"d":"141,-139r0,31v-35,-41,-99,-24,-99,34v0,60,67,72,101,32r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65xm89,19r23,9r-36,47r-18,-9","w":157,"k":{"J":-13,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18}},"\u00e8":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0xm90,-179r-49,-49r27,-12r37,52","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u00e9":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0xm105,-240r27,12r-48,49r-17,-9","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u00ea":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0xm87,-208r-33,29r-17,-13r50,-43r50,43r-17,13","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u00eb":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0xm38,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm100,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u00ec":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm39,-177r-44,-53r28,-10r32,55","w":74},"\u00ed":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm52,-240r28,10r-44,53r-17,-8","w":74},"\u00ee":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm37,-206r-27,24r-15,-12r42,-39r43,39r-16,12","w":74},"\u00ef":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm3,-206v0,-10,7,-18,15,-18v8,0,15,8,15,18v0,10,-7,18,-15,18v-8,0,-15,-8,-15,-18xm41,-206v0,-25,31,-22,31,0v0,10,-7,18,-15,18v-8,0,-16,-8,-16,-18","w":74},"\u00f0":{"d":"141,-140v-6,-22,-22,-41,-37,-53r-64,22r-7,-20r49,-16v-12,-5,-29,-10,-52,-13r6,-22v37,3,63,17,76,25r46,-15r7,20r-34,11v56,39,68,210,-37,205v-56,-3,-73,-28,-79,-80v6,-54,22,-81,77,-81v28,0,43,11,49,17xm94,-19v37,-3,53,-28,53,-59v0,-34,-17,-56,-52,-56v-36,0,-50,23,-53,58v-2,25,23,59,52,57","w":188},"\u00f1":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-149r26,0r0,17v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130xm60,-216v24,1,53,29,63,-1r15,12v-3,11,-22,27,-33,25v-23,-4,-52,-27,-63,1r-15,-12v7,-10,18,-25,33,-25","w":169,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u00f2":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56xm94,-179r-49,-49r27,-12r38,52","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00f3":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56xm117,-240r26,12r-48,49r-16,-9","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00f4":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56xm94,-208r-33,29r-16,-13r49,-43r50,43r-17,13","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00f5":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56xm72,-216v24,1,53,29,63,-1r15,12v-3,10,-22,27,-33,25v-23,-4,-52,-27,-63,1r-15,-12v6,-11,18,-26,33,-25","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00f6":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56xm45,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm108,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00f7":{"d":"72,-185v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,17,-18,17v-10,0,-18,-7,-18,-17xm72,-54v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,17,-18,17v-10,0,-18,-7,-18,-17xm12,-108r0,-24r156,0r0,24r-156,0"},"\u00f8":{"d":"179,-144r-21,21v7,9,16,24,16,49v0,67,-85,98,-128,63r-22,22r-16,-16r22,-22v-5,-8,-15,-22,-15,-47v0,-66,82,-98,126,-65r22,-21xm49,-45r74,-77v-35,-20,-82,-1,-81,48v0,12,3,21,7,29xm139,-105r-75,77v33,21,84,4,83,-46v0,-12,-3,-22,-8,-31","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u00f9":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm86,-179r-49,-49r27,-12r38,52","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u00fa":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm103,-240r27,12r-49,49r-16,-9","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u00fb":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm84,-208r-33,29r-17,-13r50,-43r50,43r-17,13","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u00fc":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm35,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm97,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u00fd":{"d":"24,83r48,-97r-69,-135r29,0r53,107r49,-107r29,0r-110,232r-29,0xm105,-240r27,12r-48,49r-17,-9","w":165,"k":{".":8,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":23,"\u00dd":23,"\u0178":23,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"-":-11,"\u00ad":-11,",":8}},"\u00fe":{"d":"50,-21r0,104r-26,0r0,-345r26,0r0,133v51,-57,124,-6,124,55v0,41,-26,78,-71,78v-24,0,-42,-11,-53,-25xm99,-19v30,0,49,-25,49,-55v-1,-75,-98,-73,-99,0v0,31,19,55,50,55","w":189,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"V":9,"Y":18,"\u00dd":18,"\u0178":18,"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"\u00ff":{"d":"24,83r48,-97r-69,-135r29,0r53,107r49,-107r29,0r-110,232r-29,0xm37,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm100,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":165,"k":{".":8,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":23,"\u00dd":23,"\u0178":23,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"-":-11,"\u00ad":-11,",":8}},"\u0100":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96xm56,-264r0,-23r115,0r0,23r-115,0","w":223,"k":{"v":8,"J":-23,"*":42}},"\u0101":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm41,-185r0,-21r108,0r0,21r-108,0","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u0102":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96xm81,-303v5,26,59,26,64,0r24,0v-8,27,-18,43,-56,43v-37,0,-47,-17,-55,-43r23,0","w":223,"k":{"v":8,"J":-23,"*":42}},"\u0103":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm149,-222v-12,33,-15,36,-53,43v-38,-6,-40,-12,-52,-43r22,0v6,28,54,28,61,0r22,0","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u0104":{"d":"202,68v-45,3,-43,-58,-10,-68r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252v-25,-2,-48,44,-14,47v6,0,12,-2,18,-5r-3,21v-7,4,-14,5,-20,5xm72,-93r81,0r-40,-96","w":223,"k":{"v":8,"J":-23,"*":42}},"\u0105":{"d":"15,-75v-7,-71,86,-103,124,-53r0,-21r26,0r0,149v-16,3,-26,15,-30,32v1,18,20,18,36,10r-3,20v-26,12,-55,3,-55,-25v0,-16,12,-29,26,-37r0,-21v-10,14,-33,27,-51,25v-50,-6,-67,-18,-73,-79xm140,-75v0,-35,-17,-55,-49,-55v-33,0,-49,21,-49,57v0,41,16,54,49,54v31,0,49,-20,49,-56","w":189,"k":{"J":-9,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u0106":{"d":"45,-119v0,102,121,121,170,67r0,33v-89,61,-197,-4,-197,-100v0,-98,107,-164,197,-101r0,33v-15,-16,-43,-33,-73,-32v-55,0,-97,45,-97,100xm163,-318r25,17r-55,42r-16,-12","w":232,"k":{"J":-11,"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u0107":{"d":"141,-139r0,31v-35,-41,-99,-24,-99,34v0,60,67,72,101,32r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65xm105,-240r27,12r-48,49r-17,-9","w":157,"k":{"J":-13,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18}},"\u0108":{"d":"45,-119v0,102,121,121,170,67r0,33v-89,61,-197,-4,-197,-100v0,-98,107,-164,197,-101r0,33v-15,-16,-43,-33,-73,-32v-55,0,-97,45,-97,100xm144,-287r-32,27r-18,-14r50,-43r50,43r-18,14","w":232,"k":{"J":-11,"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u0109":{"d":"141,-139r0,31v-35,-41,-99,-24,-99,34v0,60,67,72,101,32r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65xm94,-208r-34,29r-16,-13r50,-43r49,43r-16,13","w":157,"k":{"J":-13,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18}},"\u010a":{"d":"45,-119v0,102,121,121,170,67r0,33v-89,61,-197,-4,-197,-100v0,-98,107,-164,197,-101r0,33v-15,-16,-43,-33,-73,-32v-55,0,-97,45,-97,100xm122,-282v0,-12,7,-20,19,-20v12,0,20,8,20,20v0,12,-8,20,-20,20v-12,0,-19,-8,-19,-20","w":232,"k":{"J":-11,"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u010b":{"d":"141,-139r0,31v-35,-41,-99,-24,-99,34v0,60,67,72,101,32r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65xm76,-199v0,-11,8,-19,19,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-19,-8,-19,-19","w":157,"k":{"J":-13,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18}},"\u010c":{"d":"45,-119v0,102,121,121,170,67r0,33v-89,61,-197,-4,-197,-100v0,-98,107,-164,197,-101r0,33v-15,-16,-43,-33,-73,-32v-55,0,-97,45,-97,100xm144,-290r32,-27r18,15r-50,42r-50,-42r18,-15","w":232,"k":{"J":-11,"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u010d":{"d":"141,-139r0,31v-35,-41,-99,-24,-99,34v0,60,67,72,101,32r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65xm94,-206r33,-29r16,13r-49,43r-50,-43r16,-13","w":157,"k":{"J":-13,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18}},"\u010e":{"d":"31,-240v98,-10,179,24,179,120v0,50,-27,76,-43,92v-27,28,-78,29,-136,28r0,-240xm58,-25v67,7,124,-25,124,-95v0,-66,-49,-101,-124,-95r0,190xm101,-290r31,-27r19,15r-50,42r-51,-42r19,-15","w":227,"k":{"Y":8,"\u00dd":8,"\u0178":8}},"\u010f":{"d":"139,-128r0,-134r26,0r0,262r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56xm180,-191r19,-57r23,8r-25,56","w":214,"k":{"J":-14,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u0110":{"d":"31,-240v98,-10,179,24,179,120v0,50,-27,76,-43,92v-27,28,-78,29,-136,28r0,-121r-31,0r0,-23r31,0r0,-96xm58,-25v67,7,124,-25,124,-95v0,-66,-49,-101,-124,-95r0,71r49,0r0,23r-49,0r0,96","w":227,"k":{"Y":8,"\u00dd":8,"\u0178":8}},"\u0111":{"d":"139,-128r0,-71r-72,0r0,-22r72,0r0,-41r26,0r0,41r24,0r0,22r-24,0r0,199r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm91,-130v-26,0,-49,19,-49,55v0,32,18,56,49,56v31,0,49,-26,49,-56v0,-39,-25,-55,-49,-55","w":189,"k":{"J":-14,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u0112":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm36,-264r0,-23r115,0r0,23r-115,0","w":173},"\u0113":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0xm33,-185r0,-21r108,0r0,21r-108,0","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u0116":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm74,-282v0,-12,8,-20,20,-20v12,0,19,8,19,20v0,12,-7,20,-19,20v-12,0,-20,-8,-20,-20","w":173},"\u0117":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0xm68,-199v0,-11,8,-19,19,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-19,-8,-19,-19","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u0118":{"d":"93,37v-1,-17,14,-30,24,-37r-86,0r0,-240r125,0r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25v-25,-1,-35,12,-40,32v1,18,23,17,36,10r-3,21v-24,12,-56,3,-56,-26","w":173},"\u0119":{"d":"90,-19v27,-1,36,-15,46,-31r21,12v-8,32,-63,38,-67,70v3,19,20,18,36,10r-3,20v-24,12,-55,2,-55,-25v0,-16,9,-25,19,-33v-50,-6,-72,-22,-72,-78v0,-47,22,-77,73,-79v21,0,39,7,50,19v20,21,20,54,20,65r-116,0v0,27,19,51,48,50xm132,-91v-4,-37,-52,-51,-75,-26v-7,7,-11,17,-13,26r88,0","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u011a":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm94,-290r31,-27r19,15r-50,42r-51,-42r19,-15","w":173},"\u011b":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0xm87,-206r33,-29r17,13r-50,43r-50,-43r17,-13","w":173,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u011c":{"d":"225,-174v-20,-26,-34,-45,-81,-45v-58,0,-99,43,-99,99v-2,120,171,132,181,25r-71,0r0,-26r100,0v1,32,-7,59,-23,82v-7,10,-34,43,-89,43v-71,0,-125,-54,-125,-124v0,-119,165,-168,226,-72xm143,-287r-32,27r-19,-14r51,-43r50,43r-19,14","w":272,"k":{"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u011d":{"d":"15,-75v-5,-75,85,-101,124,-53r0,-21r26,0v-5,100,29,232,-74,232v-49,0,-69,-23,-73,-69r26,0v-1,28,24,46,47,46v39,0,53,-36,48,-81v-9,11,-25,25,-51,25v-48,0,-69,-25,-73,-79xm140,-75v0,-33,-18,-54,-49,-55v-33,-1,-49,31,-49,55v0,23,17,56,49,56v32,0,49,-25,49,-56xm95,-208r-33,29r-17,-13r50,-43r49,43r-16,13","w":189,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"\u011e":{"d":"225,-174v-20,-26,-34,-45,-81,-45v-58,0,-99,43,-99,99v-2,120,171,132,181,25r-71,0r0,-26r100,0v1,32,-7,59,-23,82v-7,10,-34,43,-89,43v-71,0,-125,-54,-125,-124v0,-119,165,-168,226,-72xm111,-303v5,26,59,26,64,0r23,0v-8,26,-18,43,-55,43v-38,0,-48,-16,-56,-43r24,0","w":272,"k":{"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u011f":{"d":"15,-75v-5,-75,85,-101,124,-53r0,-21r26,0v-5,100,29,232,-74,232v-49,0,-69,-23,-73,-69r26,0v-1,28,24,46,47,46v39,0,53,-36,48,-81v-9,11,-25,25,-51,25v-48,0,-69,-25,-73,-79xm140,-75v0,-33,-18,-54,-49,-55v-33,-1,-49,31,-49,55v0,23,17,56,49,56v32,0,49,-25,49,-56xm147,-222v-12,32,-14,36,-52,43v-38,-6,-41,-11,-53,-43r22,0v7,28,55,28,61,0r22,0","w":189,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"\u0120":{"d":"225,-174v-20,-26,-34,-45,-81,-45v-58,0,-99,43,-99,99v-2,120,171,132,181,25r-71,0r0,-26r100,0v1,32,-7,59,-23,82v-7,10,-34,43,-89,43v-71,0,-125,-54,-125,-124v0,-119,165,-168,226,-72xm124,-282v0,-12,8,-20,20,-20v12,0,19,8,19,20v0,12,-7,20,-19,20v-12,0,-20,-8,-20,-20","w":272,"k":{"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u0121":{"d":"15,-75v-5,-75,85,-101,124,-53r0,-21r26,0v-5,100,29,232,-74,232v-49,0,-69,-23,-73,-69r26,0v-1,28,24,46,47,46v39,0,53,-36,48,-81v-9,11,-25,25,-51,25v-48,0,-69,-25,-73,-79xm140,-75v0,-33,-18,-54,-49,-55v-33,-1,-49,31,-49,55v0,23,17,56,49,56v32,0,49,-25,49,-56xm69,-199v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19","w":189},"\u0122":{"d":"225,-174v-20,-26,-34,-45,-81,-45v-58,0,-99,43,-99,99v-2,120,171,132,181,25r-71,0r0,-26r100,0v1,32,-7,59,-23,82v-7,10,-34,43,-89,43v-71,0,-125,-54,-125,-124v0,-119,165,-168,226,-72xm114,76r21,-58r23,9r-26,56","w":272,"k":{"Z":8,"\u0179":8,"\u017b":8,"\u017d":8}},"\u0123":{"d":"15,-75v-5,-75,85,-101,124,-53r0,-21r26,0v-5,100,29,232,-74,232v-49,0,-69,-23,-73,-69r26,0v-1,28,24,46,47,46v39,0,53,-36,48,-81v-9,11,-25,25,-51,25v-48,0,-69,-25,-73,-79xm140,-75v0,-33,-18,-54,-49,-55v-33,-1,-49,31,-49,55v0,23,17,56,49,56v32,0,49,-25,49,-56xm113,-234r-20,58r-23,-9r25,-56","w":189,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"\u0124":{"d":"58,-240r0,97r123,0r0,-97r26,0r0,240r-26,0r0,-117r-123,0r0,117r-27,0r0,-240r27,0xm119,-287r-32,27r-18,-14r50,-43r51,43r-19,14","w":238},"\u0125":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-262r26,0r0,130v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130xm38,-294r-33,29r-17,-13r50,-44r50,44r-17,13","w":169,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"V":13,"W":9,"Y":22,"\u00dd":22,"\u0178":22}},"\u0126":{"d":"58,-240r0,19r123,0r0,-19r26,0r0,19r22,0r0,22r-22,0r0,199r-26,0r0,-117r-123,0r0,117r-27,0r0,-199r-22,0r0,-22r22,0r0,-19r27,0xm181,-199r-123,0r0,56r123,0r0,-56","w":238},"\u0127":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-199r-24,0r0,-22r24,0r0,-41r26,0r0,41r72,0r0,22r-72,0r0,67v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130","w":169,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"V":13,"W":9,"Y":22,"\u00dd":22,"\u0178":22}},"\u012a":{"d":"31,-240r27,0r0,240r-27,0r0,-240xm0,-264r0,-23r89,0r0,23r-89,0","w":88},"\u012b":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm0,-185r0,-21r75,0r0,21r-75,0","w":74},"\u012e":{"d":"9,37v-1,-15,18,-34,26,-37r-4,0r0,-240r27,0r0,240v-11,9,-23,13,-26,32v-3,14,26,19,36,10r-2,21v-26,12,-55,2,-57,-26","w":88},"\u012f":{"d":"38,67v-41,1,-44,-56,-8,-67r-6,0r0,-149r26,0r0,149v-11,9,-22,13,-25,32v-3,14,26,19,36,10r-3,20v-8,4,-15,5,-20,5xm19,-206v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":74},"\u0130":{"d":"31,-240r27,0r0,240r-27,0r0,-240xm24,-282v0,-12,8,-20,20,-20v12,0,20,8,20,20v0,12,-8,20,-20,20v-12,0,-20,-8,-20,-20","w":88},"\u0131":{"d":"24,-149r26,0r0,149r-26,0r0,-149","w":74},"\u0134":{"d":"-2,-34v24,28,63,6,55,-33r0,-173r26,0r0,173v2,35,-12,73,-53,71v-17,0,-32,-5,-43,-17xm65,-287r-32,27r-19,-14r51,-43r50,43r-19,14","w":110,"k":{"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"\u0135":{"d":"24,-149r26,0r0,232r-26,0r0,-232xm37,-206r-27,24r-15,-12r42,-39r43,39r-16,12","w":74},"\u0136":{"d":"58,-240r0,103r102,-103r36,0r-112,112r115,128r-36,0r-99,-110r-6,7r0,103r-27,0r0,-240r27,0xm73,76r20,-58r23,9r-25,56","w":204,"k":{"v":22,"q":14,"p":14,"Q":19,"J":-19,"w":26,"y":22,"\u00fd":22,"\u00ff":22,"Y":8,"\u00dd":8,"\u0178":8,"C":30,"\u00c7":30,"\u0106":30,"\u0108":30,"\u010a":30,"\u010c":30,"S":15,"\u015a":15,"\u015c":15,"\u015e":15,"\u0160":15,"\u0218":15,"G":22,"\u011c":22,"\u011e":22,"\u0120":22,"\u0122":22,"O":19,"\u00d2":19,"\u00d3":19,"\u00d4":19,"\u00d5":19,"\u00d6":19,"\u00d8":19,"\u014c":19,"\u014e":19,"\u0150":19,"\u0152":19,"a":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u00e6":15,"\u0101":15,"\u0103":15,"\u0105":15,"\u01fd":15,"c":15,"\u00e7":15,"\u0107":15,"\u0109":15,"\u010b":15,"\u010d":15,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u0113":14,"\u0117":14,"\u0119":14,"\u011b":14,"g":14,"\u011d":14,"\u011f":14,"\u0123":14,"o":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014d":14,"\u014f":14,"\u0151":14,"\u0153":14,"s":14,"\u015b":14,"\u015d":14,"\u015f":14,"\u0161":14,"\u0219":14,"t":11,"\u0163":11,"\u0165":11,"\u021b":11,"u":19,"\u00f9":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u0169":19,"\u016b":19,"\u016d":19,"\u016f":19,"\u0171":19,"\u0173":19,"U":8,"\u00d9":8,"\u00da":8,"\u00db":8,"\u00dc":8,"\u0168":8,"\u016a":8,"\u016c":8,"\u016e":8,"\u0170":8,"\u0172":8}},"\u0137":{"d":"24,-262r26,0r0,168r55,-55r34,0r-64,64r75,85r-33,0r-60,-68r-7,6r0,62r-26,0r0,-262xm47,76r20,-58r23,9r-25,56","w":151,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"V":13,"W":9,"Y":22,"\u00dd":22,"\u0178":22}},"\u0139":{"d":"31,-240r27,0r0,215r66,0r0,25r-93,0r0,-240xm87,-318r25,17r-55,42r-15,-12","w":128,"k":{"v":11,"Q":12,"*":26,"w":11,"y":8,"\u00fd":8,"\u00ff":8,"T":6,"\u0162":6,"\u0164":6,"\u021a":6,"V":12,"W":12,"Y":12,"\u00dd":12,"\u0178":12,"C":12,"\u00c7":12,"\u0106":12,"\u0108":12,"\u010a":12,"\u010c":12,"G":11,"\u011c":11,"\u011e":11,"\u0120":11,"\u0122":11,"O":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"-":-11,"\u00ad":-11}},"\u013a":{"d":"24,-262r26,0r0,262r-26,0r0,-262xm62,-333r27,12r-49,48r-16,-8","w":74},"\u013b":{"d":"31,-240r27,0r0,215r66,0r0,25r-93,0r0,-240xm50,76r20,-58r23,9r-25,56","w":128,"k":{"v":11,"Q":12,"*":26,"w":11,"y":8,"\u00fd":8,"\u00ff":8,"T":6,"\u0162":6,"\u0164":6,"\u021a":6,"V":12,"W":12,"Y":12,"\u00dd":12,"\u0178":12,"C":12,"\u00c7":12,"\u0106":12,"\u0108":12,"\u010a":12,"\u010c":12,"G":11,"\u011c":11,"\u011e":11,"\u0120":11,"\u0122":11,"O":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"-":-11,"\u00ad":-11}},"\u013c":{"d":"24,-262r26,0r0,262r-26,0r0,-262xm9,76r20,-58r23,9r-25,56","w":74},"\u013d":{"d":"31,-240r27,0r0,215r66,0r0,25r-93,0r0,-240xm90,-187r19,-58r23,9r-25,56","w":128,"k":{"v":11,"Q":12,"*":26,"w":11,"y":8,"\u00fd":8,"\u00ff":8,"T":6,"\u0162":6,"\u0164":6,"\u021a":6,"V":12,"W":12,"Y":12,"\u00dd":12,"\u0178":12,"C":12,"\u00c7":12,"\u0106":12,"\u0108":12,"\u010a":12,"\u010c":12,"G":11,"\u011c":11,"\u011e":11,"\u0120":11,"\u0122":11,"O":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"-":-11,"\u00ad":-11}},"\u013e":{"d":"24,-262r26,0r0,262r-26,0r0,-262xm66,-191r18,-57r23,8r-25,56","w":100},"\u013f":{"d":"31,-240r27,0r0,215r66,0r0,25r-93,0r0,-240xm87,-120v0,-12,8,-20,20,-20v12,0,20,8,20,20v0,12,-8,20,-20,20v-12,0,-20,-8,-20,-20","w":128,"k":{"v":11,"Q":12,"*":26,"w":11,"y":8,"\u00fd":8,"\u00ff":8,"T":6,"\u0162":6,"\u0164":6,"\u021a":6,"V":12,"W":12,"Y":12,"\u00dd":12,"\u0178":12,"C":12,"\u00c7":12,"\u0106":12,"\u0108":12,"\u010a":12,"\u010c":12,"G":11,"\u011c":11,"\u011e":11,"\u0120":11,"\u0122":11,"O":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"-":-11,"\u00ad":-11}},"\u0140":{"d":"24,-262r26,0r0,262r-26,0r0,-262xm75,-131v0,-11,8,-19,19,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-19,-8,-19,-19","w":113},"\u0141":{"d":"31,-240r27,0r0,94r36,-23r0,23r-36,23r0,98r66,0r0,25r-93,0r0,-110r-31,20r0,-23r31,-20r0,-107","w":128,"k":{"v":11,"Q":12,"*":26,"w":11,"y":8,"\u00fd":8,"\u00ff":8,"T":6,"\u0162":6,"\u0164":6,"\u021a":6,"V":12,"W":12,"Y":12,"\u00dd":12,"\u0178":12,"C":12,"\u00c7":12,"\u0106":12,"\u0108":12,"\u010a":12,"\u010c":12,"G":11,"\u011c":11,"\u011e":11,"\u0120":11,"\u0122":11,"O":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u014c":12,"\u014e":12,"\u0150":12,"\u0152":12,"-":-11,"\u00ad":-11}},"\u0142":{"d":"24,-262r26,0r0,82r25,-19r0,22r-25,19r0,158r-26,0r0,-141r-24,19r0,-22r24,-19r0,-99","w":74},"\u0143":{"d":"58,0r-27,0r0,-250r187,196r0,-186r27,0r0,251r-187,-196r0,185xm167,-318r26,17r-55,42r-16,-12","w":275},"\u0144":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-149r26,0r0,17v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130xm112,-240r27,12r-48,49r-16,-9","w":169,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u0145":{"d":"58,0r-27,0r0,-250r187,196r0,-186r27,0r0,251r-187,-196r0,185xm111,76r20,-58r23,9r-25,56","w":275},"\u0146":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-149r26,0r0,17v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130xm56,76r20,-58r23,9r-25,56","w":169,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u0147":{"d":"58,0r-27,0r0,-250r187,196r0,-186r27,0r0,251r-187,-196r0,185xm138,-290r32,-27r18,15r-50,42r-51,-42r19,-15","w":275},"\u0148":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-149r26,0r0,17v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130xm90,-206r33,-29r17,13r-50,43r-50,-43r17,-13","w":169,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u014c":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99xm85,-264r0,-23r116,0r0,23r-116,0","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"\u014d":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56xm40,-185r0,-21r109,0r0,21r-109,0","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u014e":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99xm111,-303v5,26,59,26,64,0r24,0v-8,27,-18,43,-56,43v-38,0,-48,-16,-56,-43r24,0","w":285,"k":{"\u01fc":8,"\u0104":8,"\u0102":8,"\u0100":8,"\u00c6":8,"\u00c5":8,"\u00c4":8,"\u00c3":8,"\u00c2":8,"\u00c1":8,"\u00c0":8,"X":10,"W":8,"V":12,"A":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8}},"\u014f":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56xm147,-222v-12,33,-15,36,-53,43v-38,-6,-40,-12,-52,-43r22,0v6,28,54,28,61,0r22,0","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u0150":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99xm144,-318r26,15r-53,44r-16,-10xm198,-318r26,15r-53,44r-16,-10","w":285,"k":{"X":10,"V":12,"W":8,"Y":14,"\u00dd":14,"\u0178":14,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u00c4":8,"\u00c5":8,"\u00c6":8,"\u0100":8,"\u0102":8,"\u0104":8,"\u01fc":8}},"\u0151":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56xm94,-240r26,12r-49,49r-15,-9xm143,-240r25,12r-49,49r-15,-9","w":188,"k":{"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4}},"\u0152":{"d":"362,-240r0,25r-96,0r0,71r94,0r0,26r-94,0r0,93r96,0r0,25r-123,0r0,-46v-65,100,-221,36,-221,-74v0,-113,160,-172,221,-73r0,-47r123,0xm143,-219v-54,0,-98,45,-98,99v0,54,43,99,97,99v54,0,97,-44,97,-98v0,-55,-43,-100,-96,-100","w":380},"\u0153":{"d":"159,-117v47,-73,137,-31,133,47r-118,0v-2,55,79,68,94,19r22,13v-26,43,-87,69,-131,7v-34,62,-144,34,-144,-43v0,-45,35,-79,80,-79v32,0,52,17,64,36xm176,-91r89,0v-6,-49,-82,-52,-89,0xm94,-130v-33,0,-52,28,-52,56v0,29,20,55,52,55v26,0,52,-17,52,-54v0,-31,-19,-57,-52,-57","w":306,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u0154":{"d":"31,-240v63,-3,122,2,123,66v0,37,-24,64,-60,67r76,107r-32,0r-74,-105r-6,0r0,105r-27,0r0,-240xm127,-173v0,-29,-31,-48,-69,-42r0,86v40,3,69,-10,69,-44xm112,-318r26,17r-56,42r-15,-12","k":{"v":8,"J":-11,"w":8,"Y":11,"\u00dd":11,"\u0178":11,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"\u01fd":4,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u0113":7,"\u0117":7,"\u0119":7,"\u011b":7,"g":8,"\u011d":8,"\u011f":8,"\u0123":8,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":8,"\u015b":8,"\u015d":8,"\u015f":8,"\u0161":8,"\u0219":8,"t":4,"\u0163":4,"\u0165":4,"\u021b":4,"u":8,"\u00f9":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u0169":8,"\u016b":8,"\u016d":8,"\u016f":8,"\u0171":8,"\u0173":8}},"\u0155":{"d":"95,-123v-29,-14,-46,2,-45,44r0,79r-26,0r0,-149r26,0r0,16v1,-10,39,-29,57,-14xm91,-240r26,12r-48,49r-16,-9","w":106,"k":{"v":-8,"q":9,"f":-8,"Q":-4,".":17,"w":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":13,"\u00dd":13,"\u0178":13,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"O":-4,"\u00d2":-4,"\u00d3":-4,"\u00d4":-4,"\u00d5":-4,"\u00d6":-4,"\u00d8":-4,"\u014c":-4,"\u014e":-4,"\u0150":-4,"\u0152":-4,"a":8,"\u00e0":8,"\u00e1":8,"\u00e2":8,"\u00e3":8,"\u00e4":8,"\u00e5":8,"\u00e6":8,"\u0101":8,"\u0103":8,"\u0105":8,"\u01fd":8,"c":9,"\u00e7":9,"\u0107":9,"\u0109":9,"\u010b":9,"\u010d":9,"d":9,"\u010f":9,"\u0111":9,"e":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u0113":9,"\u0117":9,"\u0119":9,"\u011b":9,"g":9,"\u011d":9,"\u011f":9,"\u0123":9,"o":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7}},"\u0156":{"d":"31,-240v63,-3,122,2,123,66v0,37,-24,64,-60,67r76,107r-32,0r-74,-105r-6,0r0,105r-27,0r0,-240xm127,-173v0,-29,-31,-48,-69,-42r0,86v40,3,69,-10,69,-44xm64,76r20,-58r23,9r-25,56","k":{"v":8,"J":-11,"w":8,"Y":11,"\u00dd":11,"\u0178":11,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"\u01fd":4,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u0113":7,"\u0117":7,"\u0119":7,"\u011b":7,"g":8,"\u011d":8,"\u011f":8,"\u0123":8,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":8,"\u015b":8,"\u015d":8,"\u015f":8,"\u0161":8,"\u0219":8,"t":4,"\u0163":4,"\u0165":4,"\u021b":4,"u":8,"\u00f9":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u0169":8,"\u016b":8,"\u016d":8,"\u016f":8,"\u0171":8,"\u0173":8}},"\u0157":{"d":"95,-123v-29,-14,-46,2,-45,44r0,79r-26,0r0,-149r26,0r0,16v1,-10,39,-29,57,-14xm23,76r21,-58r23,9r-26,56","w":106,"k":{"v":-8,"q":9,"f":-8,"Q":-4,".":17,"w":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":13,"\u00dd":13,"\u0178":13,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"O":-4,"\u00d2":-4,"\u00d3":-4,"\u00d4":-4,"\u00d5":-4,"\u00d6":-4,"\u00d8":-4,"\u014c":-4,"\u014e":-4,"\u0150":-4,"\u0152":-4,"a":8,"\u00e0":8,"\u00e1":8,"\u00e2":8,"\u00e3":8,"\u00e4":8,"\u00e5":8,"\u00e6":8,"\u0101":8,"\u0103":8,"\u0105":8,"\u01fd":8,"c":9,"\u00e7":9,"\u0107":9,"\u0109":9,"\u010b":9,"\u010d":9,"d":9,"\u010f":9,"\u0111":9,"e":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u0113":9,"\u0117":9,"\u0119":9,"\u011b":9,"g":9,"\u011d":9,"\u011f":9,"\u0123":9,"o":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7}},"\u0158":{"d":"31,-240v63,-3,122,2,123,66v0,37,-24,64,-60,67r76,107r-32,0r-74,-105r-6,0r0,105r-27,0r0,-240xm127,-173v0,-29,-31,-48,-69,-42r0,86v40,3,69,-10,69,-44xm83,-290r31,-27r19,15r-50,42r-51,-42r19,-15","k":{"v":8,"J":-11,"w":8,"Y":11,"\u00dd":11,"\u0178":11,"z":8,"\u017a":8,"\u017c":8,"\u017e":8,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"\u01fd":4,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u0113":7,"\u0117":7,"\u0119":7,"\u011b":7,"g":8,"\u011d":8,"\u011f":8,"\u0123":8,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":8,"\u015b":8,"\u015d":8,"\u015f":8,"\u0161":8,"\u0219":8,"t":4,"\u0163":4,"\u0165":4,"\u021b":4,"u":8,"\u00f9":8,"\u00fa":8,"\u00fb":8,"\u00fc":8,"\u0169":8,"\u016b":8,"\u016d":8,"\u016f":8,"\u0171":8,"\u0173":8}},"\u0159":{"d":"95,-123v-29,-14,-46,2,-45,44r0,79r-26,0r0,-149r26,0r0,16v1,-10,39,-29,57,-14xm72,-206r33,-29r17,13r-50,43r-50,-43r17,-13","w":106,"k":{"v":-8,"q":9,"f":-8,"Q":-4,".":17,"w":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":13,"\u00dd":13,"\u0178":13,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"O":-4,"\u00d2":-4,"\u00d3":-4,"\u00d4":-4,"\u00d5":-4,"\u00d6":-4,"\u00d8":-4,"\u014c":-4,"\u014e":-4,"\u0150":-4,"\u0152":-4,"a":8,"\u00e0":8,"\u00e1":8,"\u00e2":8,"\u00e3":8,"\u00e4":8,"\u00e5":8,"\u00e6":8,"\u0101":8,"\u0103":8,"\u0105":8,"\u01fd":8,"c":9,"\u00e7":9,"\u0107":9,"\u0109":9,"\u010b":9,"\u010d":9,"d":9,"\u010f":9,"\u0111":9,"e":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u0113":9,"\u0117":9,"\u0119":9,"\u011b":9,"g":9,"\u011d":9,"\u011f":9,"\u0123":9,"o":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u00f6":9,"\u00f8":9,"\u014d":9,"\u014f":9,"\u0151":9,"\u0153":9,"s":4,"\u015b":4,"\u015d":4,"\u015f":4,"\u0161":4,"\u0219":4,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7}},"\u015a":{"d":"44,-65v2,26,24,44,49,44v45,0,63,-49,36,-75v-29,-28,-95,-29,-99,-86v-4,-68,106,-83,129,-25r-21,14v-9,-15,-15,-25,-41,-26v-33,-2,-54,38,-31,58v33,30,102,30,102,92v0,65,-79,97,-128,54v-13,-11,-19,-29,-22,-43xm123,-318r25,17r-55,42r-16,-12","w":186,"k":{"X":11,"T":15,"\u0162":15,"\u0164":15,"\u021a":15,"W":8,"Y":11,"\u00dd":11,"\u0178":11,"S":8,"\u015a":8,"\u015c":8,"\u015e":8,"\u0160":8,"\u0218":8}},"\u015b":{"d":"90,-42v0,-36,-71,-27,-67,-69v4,-45,58,-63,84,-15r-21,11v-5,-18,-38,-22,-39,2v8,30,70,27,70,68v0,31,-23,49,-52,49v-6,0,-39,-1,-52,-38r22,-9v3,8,12,24,31,24v17,0,24,-12,24,-23xm86,-240r26,12r-48,49r-16,-9","w":126,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u015c":{"d":"44,-65v2,26,24,44,49,44v45,0,63,-49,36,-75v-29,-28,-95,-29,-99,-86v-4,-68,106,-83,129,-25r-21,14v-9,-15,-15,-25,-41,-26v-33,-2,-54,38,-31,58v33,30,102,30,102,92v0,65,-79,97,-128,54v-13,-11,-19,-29,-22,-43xm99,-287r-32,27r-19,-14r51,-43r50,43r-19,14","w":186,"k":{"X":11,"T":15,"\u0162":15,"\u0164":15,"\u021a":15,"W":8,"Y":11,"\u00dd":11,"\u0178":11,"S":8,"\u015a":8,"\u015c":8,"\u015e":8,"\u0160":8,"\u0218":8}},"\u015d":{"d":"90,-42v0,-36,-71,-27,-67,-69v4,-45,58,-63,84,-15r-21,11v-5,-18,-38,-22,-39,2v8,30,70,27,70,68v0,31,-23,49,-52,49v-6,0,-39,-1,-52,-38r22,-9v3,8,12,24,31,24v17,0,24,-12,24,-23xm66,-208r-33,29r-16,-13r49,-43r50,43r-17,13","w":126,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u015e":{"d":"44,-65v2,26,24,44,49,44v45,0,63,-49,36,-75v-29,-28,-95,-29,-99,-86v-4,-68,106,-83,129,-25r-21,14v-9,-15,-15,-25,-41,-26v-33,-2,-54,38,-31,58v33,30,102,30,102,92v0,65,-79,97,-128,54v-13,-11,-19,-29,-22,-43xm91,19r26,11r-38,46r-18,-10","w":186,"k":{"X":11,"T":15,"\u0162":15,"\u0164":15,"\u021a":15,"W":8,"Y":11,"\u00dd":11,"\u0178":11,"S":8,"\u015a":8,"\u015c":8,"\u015e":8,"\u0160":8,"\u0218":8}},"\u015f":{"d":"90,-42v0,-36,-71,-27,-67,-69v4,-45,58,-63,84,-15r-21,11v-5,-18,-38,-22,-39,2v8,30,70,27,70,68v0,31,-23,49,-52,49v-6,0,-39,-1,-52,-38r22,-9v3,8,12,24,31,24v17,0,24,-12,24,-23xm63,19r24,9r-36,47r-18,-9","w":126,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u0160":{"d":"44,-65v2,26,24,44,49,44v45,0,63,-49,36,-75v-29,-28,-95,-29,-99,-86v-4,-68,106,-83,129,-25r-21,14v-9,-15,-15,-25,-41,-26v-33,-2,-54,38,-31,58v33,30,102,30,102,92v0,65,-79,97,-128,54v-13,-11,-19,-29,-22,-43xm99,-290r31,-27r19,15r-50,42r-51,-42r19,-15","w":186,"k":{"X":11,"T":15,"\u0162":15,"\u0164":15,"\u021a":15,"W":8,"Y":11,"\u00dd":11,"\u0178":11,"S":8,"\u015a":8,"\u015c":8,"\u015e":8,"\u0160":8,"\u0218":8}},"\u0161":{"d":"90,-42v0,-36,-71,-27,-67,-69v4,-45,58,-63,84,-15r-21,11v-5,-18,-38,-22,-39,2v8,30,70,27,70,68v0,31,-23,49,-52,49v-6,0,-39,-1,-52,-38r22,-9v3,8,12,24,31,24v17,0,24,-12,24,-23xm66,-206r33,-29r17,13r-50,43r-49,-43r16,-13","w":126,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u0162":{"d":"148,-215r-58,0r0,215r-27,0r0,-215r-58,0r0,-25r143,0r0,25xm46,76r20,-58r23,9r-25,56","w":153,"k":{"x":20,"v":20,"q":30,"p":26,"m":26,"Q":13,":":8,".":8,"w":20,"y":20,"\u00fd":20,"\u00ff":20,"T":-8,"\u0162":-8,"\u0164":-8,"\u021a":-8,"Y":-8,"\u00dd":-8,"\u0178":-8,"C":13,"\u00c7":13,"\u0106":13,"\u0108":13,"\u010a":13,"\u010c":13,"S":10,"\u015a":10,"\u015c":10,"\u015e":10,"\u0160":10,"\u0218":10,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"O":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"a":30,"\u00e0":30,"\u00e1":30,"\u00e2":30,"\u00e3":30,"\u00e4":30,"\u00e5":30,"\u00e6":30,"\u0101":30,"\u0103":30,"\u0105":30,"\u01fd":30,"c":30,"\u00e7":30,"\u0107":30,"\u0109":30,"\u010b":30,"\u010d":30,"d":30,"\u010f":30,"\u0111":30,"e":30,"\u00e8":30,"\u00e9":30,"\u00ea":30,"\u00eb":30,"\u0113":30,"\u0117":30,"\u0119":30,"\u011b":30,"g":30,"\u011d":30,"\u011f":30,"\u0123":30,"o":30,"\u00f2":30,"\u00f3":30,"\u00f4":30,"\u00f5":30,"\u00f6":30,"\u00f8":30,"\u014d":30,"\u014f":30,"\u0151":30,"\u0153":30,"s":33,"\u015b":33,"\u015d":33,"\u015f":33,"\u0161":33,"\u0219":33,"t":11,"\u0163":11,"\u0165":11,"\u021b":11,"u":26,"\u00f9":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u0169":26,"\u016b":26,"\u016d":26,"\u016f":26,"\u0171":26,"\u0173":26,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u00c5":19,"\u00c6":19,"\u0100":19,"\u0102":19,"\u0104":19,"\u01fc":19,"h":26,"n":26,"\u00f1":26,"\u0125":26,"\u0127":26,"\u0144":26,"\u0146":26,"\u0148":26,"r":26,"\u0155":26,"\u0157":26,"\u0159":26,",":8,";":8}},"\u0163":{"d":"77,-126r-26,0r0,126r-26,0r0,-126r-16,0r0,-23r16,0r0,-54r26,0r0,54r26,0r0,23xm11,76r20,-58r23,9r-25,56","w":77,"k":{"v":-7,"f":-4,"Q":-4,"J":-9,"w":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,"T":9,"\u0162":9,"\u0164":9,"\u021a":9,"Y":9,"\u00dd":9,"\u0178":9,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7,":":-8,";":-8}},"\u0164":{"d":"148,-215r-58,0r0,215r-27,0r0,-215r-58,0r0,-25r143,0r0,25xm77,-290r31,-27r19,15r-50,42r-51,-42r19,-15","w":153,"k":{"x":20,"v":20,"q":30,"p":26,"m":26,"Q":13,":":8,".":8,"w":20,"y":20,"\u00fd":20,"\u00ff":20,"T":-8,"\u0162":-8,"\u0164":-8,"\u021a":-8,"Y":-8,"\u00dd":-8,"\u0178":-8,"C":13,"\u00c7":13,"\u0106":13,"\u0108":13,"\u010a":13,"\u010c":13,"S":10,"\u015a":10,"\u015c":10,"\u015e":10,"\u0160":10,"\u0218":10,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"O":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"a":30,"\u00e0":30,"\u00e1":30,"\u00e2":30,"\u00e3":30,"\u00e4":30,"\u00e5":30,"\u00e6":30,"\u0101":30,"\u0103":30,"\u0105":30,"\u01fd":30,"c":30,"\u00e7":30,"\u0107":30,"\u0109":30,"\u010b":30,"\u010d":30,"d":30,"\u010f":30,"\u0111":30,"e":30,"\u00e8":30,"\u00e9":30,"\u00ea":30,"\u00eb":30,"\u0113":30,"\u0117":30,"\u0119":30,"\u011b":30,"g":30,"\u011d":30,"\u011f":30,"\u0123":30,"o":30,"\u00f2":30,"\u00f3":30,"\u00f4":30,"\u00f5":30,"\u00f6":30,"\u00f8":30,"\u014d":30,"\u014f":30,"\u0151":30,"\u0153":30,"s":33,"\u015b":33,"\u015d":33,"\u015f":33,"\u0161":33,"\u0219":33,"t":11,"\u0163":11,"\u0165":11,"\u021b":11,"u":26,"\u00f9":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u0169":26,"\u016b":26,"\u016d":26,"\u016f":26,"\u0171":26,"\u0173":26,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u00c5":19,"\u00c6":19,"\u0100":19,"\u0102":19,"\u0104":19,"\u01fc":19,"h":26,"n":26,"\u00f1":26,"\u0125":26,"\u0127":26,"\u0144":26,"\u0146":26,"\u0148":26,"r":26,"\u0155":26,"\u0157":26,"\u0159":26,",":8,";":8}},"\u0165":{"d":"77,-126r-26,0r0,126r-26,0r0,-126r-16,0r0,-23r16,0r0,-54r26,0r0,54r26,0r0,23xm65,-191r19,-57r23,8r-26,56","w":99,"k":{"v":-7,"f":-4,"Q":-4,"J":-9,"w":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,"T":9,"\u0162":9,"\u0164":9,"\u021a":9,"Y":9,"\u00dd":9,"\u0178":9,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7,":":-8,";":-8}},"\u0168":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm94,-303v25,0,51,30,63,0r15,12v-3,14,-22,27,-34,26v-21,-1,-54,-32,-62,1r-16,-13v6,-14,16,-26,34,-26","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u0169":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm61,-216v24,1,54,29,64,-1r14,12v-3,11,-22,27,-33,25v-23,-3,-52,-28,-62,1r-16,-12v7,-10,18,-25,33,-25","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u016a":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm59,-264r0,-23r115,0r0,23r-115,0","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u016b":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm30,-185r0,-21r108,0r0,21r-108,0","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u016c":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm84,-303v5,26,59,26,64,0r24,0v-8,27,-18,43,-56,43v-38,0,-47,-17,-56,-43r24,0","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u016d":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm136,-222v-11,33,-14,36,-52,43v-38,-6,-41,-11,-52,-43r22,0v6,28,54,27,60,0r22,0","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u016e":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm85,-294v0,-17,14,-32,31,-32v17,0,32,15,32,32v0,17,-15,31,-32,31v-17,0,-31,-14,-31,-31xm101,-295v0,8,7,15,15,15v8,0,15,-7,15,-15v0,-8,-7,-15,-15,-15v-8,0,-15,7,-15,15","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u016f":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm53,-210v0,-17,14,-31,31,-31v17,0,31,14,31,31v0,17,-14,31,-31,31v-17,0,-31,-14,-31,-31xm69,-210v0,8,7,15,15,15v8,0,15,-7,15,-15v0,-8,-7,-15,-15,-15v-8,0,-15,7,-15,15","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u0170":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90xm118,-318r25,15r-53,44r-15,-10xm172,-318r25,15r-53,44r-15,-10","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u0171":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63xm84,-240r26,12r-50,49r-14,-9xm132,-240r25,12r-48,49r-15,-9","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u0172":{"d":"116,4v-43,4,-85,-38,-85,-90r0,-154r27,0v7,88,-31,217,58,219v13,0,30,-6,40,-14v19,-16,19,-39,19,-54r0,-151r27,0r0,154v4,32,-20,77,-53,86v-12,6,-28,16,-28,32v0,17,22,18,36,10r-3,21v-25,13,-56,2,-56,-26v0,-14,10,-26,18,-33","w":232,"k":{"Z":11,"\u0179":11,"\u017b":11,"\u017d":11}},"\u0173":{"d":"80,4v-29,1,-56,-27,-56,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0v-4,59,18,130,-35,150v-22,8,-39,45,-6,46v6,0,12,-2,17,-5r-3,20v-26,12,-55,3,-55,-25v0,-17,5,-20,19,-33","w":167,"k":{"T":14,"\u0162":14,"\u0164":14,"\u021a":14,"Y":18,"\u00dd":18,"\u0178":18}},"\u0178":{"d":"82,0r0,-103r-79,-137r31,0r61,107r62,-107r31,0r-80,137r0,103r-26,0xm43,-282v0,-10,8,-19,18,-19v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18xm111,-282v0,-10,9,-19,19,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18","w":190,"k":{"\u00ae":-7,"\u00ab":15,"\u00a9":-8,"x":20,"v":15,"q":36,"p":30,"m":30,"Q":9,"M":11,"J":7,":":27,".":22,"w":15,"y":19,"\u00fd":19,"\u00ff":19,"T":-8,"\u0162":-8,"\u0164":-8,"\u021a":-8,"V":-4,"C":9,"\u00c7":9,"\u0106":9,"\u0108":9,"\u010a":9,"\u010c":9,"S":11,"\u015a":11,"\u015c":11,"\u015e":11,"\u0160":11,"\u0218":11,"z":30,"\u017a":30,"\u017c":30,"\u017e":30,"G":9,"\u011c":9,"\u011e":9,"\u0120":9,"\u0122":9,"O":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"\u00d6":9,"\u00d8":9,"\u014c":9,"\u014e":9,"\u0150":9,"\u0152":9,"a":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u00e6":36,"\u0101":36,"\u0103":36,"\u0105":36,"\u01fd":36,"c":36,"\u00e7":36,"\u0107":36,"\u0109":36,"\u010b":36,"\u010d":36,"d":36,"\u010f":36,"\u0111":36,"e":36,"\u00e8":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u0113":36,"\u0117":36,"\u0119":36,"\u011b":36,"g":36,"\u011d":36,"\u011f":36,"\u0123":36,"o":36,"\u00f2":36,"\u00f3":36,"\u00f4":36,"\u00f5":36,"\u00f6":36,"\u00f8":36,"\u014d":36,"\u014f":36,"\u0151":36,"\u0153":36,"s":31,"\u015b":31,"\u015d":31,"\u015f":31,"\u0161":31,"\u0219":31,"t":15,"\u0163":15,"\u0165":15,"\u021b":15,"u":33,"\u00f9":33,"\u00fa":33,"\u00fb":33,"\u00fc":33,"\u0169":33,"\u016b":33,"\u016d":33,"\u016f":33,"\u0171":33,"\u0173":33,"A":23,"\u00c0":23,"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c4":23,"\u00c5":23,"\u00c6":23,"\u0100":23,"\u0102":23,"\u0104":23,"\u01fc":23,"h":30,"n":30,"\u00f1":30,"\u0125":30,"\u0127":30,"\u0144":30,"\u0146":30,"\u0148":30,"r":30,"\u0155":30,"\u0157":30,"\u0159":30,",":22,";":27}},"\u0179":{"d":"184,-240r-131,215r128,0r0,25r-172,0r131,-215r-114,0r0,-25r158,0xm126,-318r25,17r-55,42r-15,-12","w":192,"k":{"v":19,"q":11,"p":7,"Q":11,"w":15,"y":15,"\u00fd":15,"\u00ff":15,"C":11,"\u00c7":11,"\u0106":11,"\u0108":11,"\u010a":11,"\u010c":11,"S":7,"\u015a":7,"\u015c":7,"\u015e":7,"\u0160":7,"\u0218":7,"G":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"O":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":11,"\u00e0":11,"\u00e1":11,"\u00e2":11,"\u00e3":11,"\u00e4":11,"\u00e5":11,"\u00e6":11,"\u0101":11,"\u0103":11,"\u0105":11,"\u01fd":11,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u0113":11,"\u0117":11,"\u0119":11,"\u011b":11,"o":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":7,"\u015b":7,"\u015d":7,"\u015f":7,"\u0161":7,"\u0219":7,"u":11,"\u00f9":11,"\u00fa":11,"\u00fb":11,"\u00fc":11,"\u0169":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11}},"\u017a":{"d":"163,-149r-108,125r103,0r0,24r-155,0r108,-126r-87,0r0,-23r139,0xm105,-240r27,12r-48,49r-17,-9","w":165,"k":{"q":4,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"\u01fd":4,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":8,"\u010f":8,"\u0111":8,"e":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u0113":4,"\u0117":4,"\u0119":4,"\u011b":4,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":7,"\u015b":7,"\u015d":7,"\u015f":7,"\u0161":7,"\u0219":7,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u0169":4,"\u016b":4,"\u016d":4,"\u016f":4,"\u0171":4,"\u0173":4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"\u01fc":-4}},"\u017b":{"d":"184,-240r-131,215r128,0r0,25r-172,0r131,-215r-114,0r0,-25r158,0xm81,-282v0,-12,8,-20,20,-20v12,0,20,8,20,20v0,12,-8,20,-20,20v-12,0,-20,-8,-20,-20","w":192,"k":{"v":19,"q":11,"p":7,"Q":11,"w":15,"y":15,"\u00fd":15,"\u00ff":15,"C":11,"\u00c7":11,"\u0106":11,"\u0108":11,"\u010a":11,"\u010c":11,"S":7,"\u015a":7,"\u015c":7,"\u015e":7,"\u0160":7,"\u0218":7,"G":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"O":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":11,"\u00e0":11,"\u00e1":11,"\u00e2":11,"\u00e3":11,"\u00e4":11,"\u00e5":11,"\u00e6":11,"\u0101":11,"\u0103":11,"\u0105":11,"\u01fd":11,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u0113":11,"\u0117":11,"\u0119":11,"\u011b":11,"o":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":7,"\u015b":7,"\u015d":7,"\u015f":7,"\u0161":7,"\u0219":7,"u":11,"\u00f9":11,"\u00fa":11,"\u00fb":11,"\u00fc":11,"\u0169":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11}},"\u017c":{"d":"163,-149r-108,125r103,0r0,24r-155,0r108,-126r-87,0r0,-23r139,0xm71,-199v0,-11,8,-19,19,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-19,-8,-19,-19","w":165,"k":{"q":4,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"\u01fd":4,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":8,"\u010f":8,"\u0111":8,"e":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u0113":4,"\u0117":4,"\u0119":4,"\u011b":4,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":7,"\u015b":7,"\u015d":7,"\u015f":7,"\u0161":7,"\u0219":7,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u0169":4,"\u016b":4,"\u016d":4,"\u016f":4,"\u0171":4,"\u0173":4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"\u01fc":-4}},"\u017d":{"d":"184,-240r-131,215r128,0r0,25r-172,0r131,-215r-114,0r0,-25r158,0xm101,-290r31,-27r19,15r-50,42r-51,-42r19,-15","w":192,"k":{"v":19,"q":11,"p":7,"Q":11,"w":15,"y":15,"\u00fd":15,"\u00ff":15,"C":11,"\u00c7":11,"\u0106":11,"\u0108":11,"\u010a":11,"\u010c":11,"S":7,"\u015a":7,"\u015c":7,"\u015e":7,"\u0160":7,"\u0218":7,"G":7,"\u011c":7,"\u011e":7,"\u0120":7,"\u0122":7,"O":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"\u014c":7,"\u014e":7,"\u0150":7,"\u0152":7,"a":11,"\u00e0":11,"\u00e1":11,"\u00e2":11,"\u00e3":11,"\u00e4":11,"\u00e5":11,"\u00e6":11,"\u0101":11,"\u0103":11,"\u0105":11,"\u01fd":11,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u0113":11,"\u0117":11,"\u0119":11,"\u011b":11,"o":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u0153":7,"s":7,"\u015b":7,"\u015d":7,"\u015f":7,"\u0161":7,"\u0219":7,"u":11,"\u00f9":11,"\u00fa":11,"\u00fb":11,"\u00fc":11,"\u0169":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11}},"\u017e":{"d":"163,-149r-108,125r103,0r0,24r-155,0r108,-126r-87,0r0,-23r139,0xm90,-206r33,-29r17,13r-50,43r-50,-43r17,-13","w":165,"k":{"q":4,"T":18,"\u0162":18,"\u0164":18,"\u021a":18,"Y":18,"\u00dd":18,"\u0178":18,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"\u0101":4,"\u0103":4,"\u0105":4,"\u01fd":4,"c":7,"\u00e7":7,"\u0107":7,"\u0109":7,"\u010b":7,"\u010d":7,"d":8,"\u010f":8,"\u0111":8,"e":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u0113":4,"\u0117":4,"\u0119":4,"\u011b":4,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u0153":4,"s":7,"\u015b":7,"\u015d":7,"\u015f":7,"\u0161":7,"\u0219":7,"u":4,"\u00f9":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u0169":4,"\u016b":4,"\u016d":4,"\u016f":4,"\u0171":4,"\u0173":4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"\u0100":-4,"\u0102":-4,"\u0104":-4,"\u01fc":-4}},"\u018f":{"d":"129,-219v-47,0,-61,19,-81,45r-20,-18v16,-27,65,-52,101,-52v72,0,125,54,125,124v0,70,-53,124,-124,124v-75,0,-112,-53,-112,-125r209,0v0,-54,-40,-98,-98,-98xm45,-95v4,49,39,74,84,74v46,0,85,-31,95,-74r-179,0","w":272,"k":{"S":8,"\u015a":8,"\u015c":8,"\u015e":8,"\u0160":8,"\u0218":8}},"\u0192":{"d":"154,-128r-39,0v-16,58,-10,130,-44,172v-13,16,-39,19,-66,16r5,-23v77,9,59,-107,79,-165r-26,0r3,-21r27,0v10,-56,11,-139,85,-114r-4,24v-51,-22,-44,54,-55,90r38,0","w":204},"\u01cf":{"d":"31,-240r26,0r0,240r-26,0r0,-240xm44,-290r32,-27r19,15r-51,42r-50,-42r19,-15","w":88},"\u01d0":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm37,-208r27,-25r16,13r-43,38r-42,-38r15,-13","w":74},"\u01dd":{"d":"132,-79v3,-60,-80,-65,-94,-20r-22,-12v28,-60,142,-61,142,36v0,45,-27,79,-72,79v-53,0,-71,-37,-71,-83r117,0xm130,-58r-88,0v5,51,82,50,88,0","w":173},"\u01e6":{"d":"225,-174v-20,-26,-34,-45,-81,-45v-58,0,-99,43,-99,99v-2,120,171,132,181,25r-71,0r0,-26r100,0v1,32,-7,59,-23,82v-7,10,-34,43,-89,43v-71,0,-125,-54,-125,-124v0,-119,165,-168,226,-72xm136,-290r32,-27r19,15r-51,42r-50,-42r19,-15","w":272},"\u01e7":{"d":"15,-75v-5,-75,85,-101,124,-53r0,-21r26,0v-5,100,29,232,-74,232v-49,0,-69,-23,-73,-69r26,0v-1,28,24,46,47,46v39,0,53,-36,48,-81v-9,11,-25,25,-51,25v-48,0,-69,-25,-73,-79xm140,-75v0,-33,-18,-54,-49,-55v-33,-1,-49,31,-49,55v0,23,17,56,49,56v32,0,49,-25,49,-56xm95,-206r33,-29r16,13r-49,43r-50,-43r17,-13","w":189},"\u01fc":{"d":"194,0r-29,-67r-102,0r-28,67r-30,0r107,-240r105,0r11,25r-97,0r30,71r95,0r10,26r-94,0r39,93r98,0r10,25r-125,0xm75,-93r80,0r-40,-93xm192,-318r25,17r-55,42r-16,-12","w":324},"\u01fd":{"d":"120,-81v2,-25,-15,-49,-42,-49v-17,0,-37,6,-46,9r0,-24v48,-11,74,-18,103,22v37,-58,139,-27,129,54r-117,0v-1,58,76,64,93,19r22,13v-18,37,-87,67,-126,11v-15,27,-41,30,-56,30v-35,0,-65,-15,-65,-48v0,-49,71,-63,105,-37xm149,-91r88,0v-5,-50,-83,-52,-88,0xm80,-71v-48,0,-57,51,-1,52v30,0,40,-14,40,-26v0,-10,-9,-26,-39,-26xm162,-240r26,12r-48,49r-16,-9","w":278,"k":{"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":18,"\u00dd":18,"\u0178":18,"z":4,"\u017a":4,"\u017c":4,"\u017e":4,"-":-19,"\u00ad":-19}},"\u0218":{"d":"44,-65v2,26,24,44,49,44v45,0,63,-49,36,-75v-29,-28,-95,-29,-99,-86v-4,-68,106,-83,129,-25r-21,14v-9,-15,-15,-25,-41,-26v-33,-2,-54,38,-31,58v33,30,102,30,102,92v0,65,-79,97,-128,54v-13,-11,-19,-29,-22,-43xm68,76r20,-58r23,9r-25,56","w":186,"k":{"X":11,"T":15,"\u0162":15,"\u0164":15,"\u021a":15,"W":8,"Y":11,"\u00dd":11,"\u0178":11,"S":8,"\u015a":8,"\u015c":8,"\u015e":8,"\u0160":8,"\u0218":8}},"\u0219":{"d":"90,-42v0,-36,-71,-27,-67,-69v4,-45,58,-63,84,-15r-21,11v-5,-18,-38,-22,-39,2v8,30,70,27,70,68v0,31,-23,49,-52,49v-6,0,-39,-1,-52,-38r22,-9v3,8,12,24,31,24v17,0,24,-12,24,-23xm40,76r20,-58r23,9r-25,56","w":126,"k":{"J":-14,"T":13,"\u0162":13,"\u0164":13,"\u021a":13,"Y":22,"\u00dd":22,"\u0178":22}},"\u021a":{"d":"148,-215r-58,0r0,215r-27,0r0,-215r-58,0r0,-25r143,0r0,25xm46,76r20,-58r23,9r-25,56","w":153,"k":{"x":20,"v":20,"q":30,"p":26,"m":26,"Q":13,":":8,".":8,"w":20,"y":20,"\u00fd":20,"\u00ff":20,"T":-8,"\u0162":-8,"\u0164":-8,"\u021a":-8,"Y":-8,"\u00dd":-8,"\u0178":-8,"C":13,"\u00c7":13,"\u0106":13,"\u0108":13,"\u010a":13,"\u010c":13,"S":10,"\u015a":10,"\u015c":10,"\u015e":10,"\u0160":10,"\u0218":10,"z":22,"\u017a":22,"\u017c":22,"\u017e":22,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"O":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"\u00d6":13,"\u00d8":13,"\u014c":13,"\u014e":13,"\u0150":13,"\u0152":13,"a":30,"\u00e0":30,"\u00e1":30,"\u00e2":30,"\u00e3":30,"\u00e4":30,"\u00e5":30,"\u00e6":30,"\u0101":30,"\u0103":30,"\u0105":30,"\u01fd":30,"c":30,"\u00e7":30,"\u0107":30,"\u0109":30,"\u010b":30,"\u010d":30,"d":30,"\u010f":30,"\u0111":30,"e":30,"\u00e8":30,"\u00e9":30,"\u00ea":30,"\u00eb":30,"\u0113":30,"\u0117":30,"\u0119":30,"\u011b":30,"g":30,"\u011d":30,"\u011f":30,"\u0123":30,"o":30,"\u00f2":30,"\u00f3":30,"\u00f4":30,"\u00f5":30,"\u00f6":30,"\u00f8":30,"\u014d":30,"\u014f":30,"\u0151":30,"\u0153":30,"s":33,"\u015b":33,"\u015d":33,"\u015f":33,"\u0161":33,"\u0219":33,"t":11,"\u0163":11,"\u0165":11,"\u021b":11,"u":26,"\u00f9":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u0169":26,"\u016b":26,"\u016d":26,"\u016f":26,"\u0171":26,"\u0173":26,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u00c5":19,"\u00c6":19,"\u0100":19,"\u0102":19,"\u0104":19,"\u01fc":19,"h":26,"n":26,"\u00f1":26,"\u0125":26,"\u0127":26,"\u0144":26,"\u0146":26,"\u0148":26,"r":26,"\u0155":26,"\u0157":26,"\u0159":26,",":8,";":8}},"\u021b":{"d":"77,-126r-26,0r0,126r-26,0r0,-126r-16,0r0,-23r16,0r0,-54r26,0r0,54r26,0r0,23xm11,76r20,-58r23,9r-25,56","w":77,"k":{"v":-7,"f":-4,"Q":-4,"J":-9,"w":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,"T":9,"\u0162":9,"\u0164":9,"\u021a":9,"Y":9,"\u00dd":9,"\u0178":9,"C":-4,"\u00c7":-4,"\u0106":-4,"\u0108":-4,"\u010a":-4,"\u010c":-4,"t":-7,"\u0163":-7,"\u0165":-7,"\u021b":-7,":":-8,";":-8}},"\u0228":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm92,19r25,11r-37,46r-18,-10","w":173},"\u0229":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0xm92,19r24,9r-36,47r-18,-9","w":173},"\u0237":{"d":"24,-149r26,0r0,232r-26,0r0,-232","w":74}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2002, 2005 Parachute¨, www.parachute.gr.  All rights reserved.
 */
Cufon.registerFont({"w":122,"face":{"font-family":"PF Din Text Comp Pro X Thin","font-weight":100,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 2 3 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"3","bbox":"-5 -287 246 73.2516","underline-thickness":"14.4","underline-position":"-32.4","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":57},"!":{"d":"30,-55r-2,-196r11,0r-2,196r-7,0xm27,0r0,-13r13,0r0,13r-13,0","w":66},"\"":{"d":"35,-251r9,0r0,57r-9,0r0,-57xm14,-251r9,0r0,57r-9,0r0,-57","w":57},"#":{"d":"0,-87r22,0r15,-78r-19,0r0,-7r20,0r16,-81r8,0r-16,81r47,0r16,-81r8,0r-15,81r20,0r0,7r-22,0r-15,78r18,0r0,7r-19,0r-15,80r-8,0r15,-80r-47,0r-15,80r-8,0r15,-80r-21,0r0,-7xm30,-87r47,0r15,-78r-47,0"},"$":{"d":"8,-192v0,-37,15,-58,49,-60r0,-35r8,0r0,34v31,2,50,18,51,51r-9,2v-2,-26,-13,-44,-42,-44r0,108v33,12,53,27,51,72v-1,39,-13,65,-51,67r0,36r-8,0r0,-36v-34,-1,-49,-21,-52,-52r10,-2v1,27,14,44,42,45r0,-124v-27,-14,-49,-23,-49,-62xm65,-6v51,4,53,-87,22,-108v-5,-4,-13,-8,-22,-12r0,120xm57,-244v-45,-2,-52,73,-20,92v6,3,12,8,20,12r0,-104"},"&":{"d":"59,-137v-27,-28,-40,-113,18,-115v21,-1,30,4,40,15r-8,6v-27,-32,-82,1,-62,48v21,50,52,93,77,139v7,-16,11,-33,13,-52r8,0v0,21,-9,44,-16,60r22,36v-21,2,-18,-19,-28,-28v-23,45,-112,40,-106,-29v3,-36,19,-61,42,-80xm26,-57v-5,58,69,68,92,22r-55,-95v-23,21,-35,40,-37,73","w":162},"(":{"d":"68,-255v-47,77,-47,218,0,296r-4,1v-52,-70,-53,-230,0,-299","w":78},")":{"d":"23,41v46,-77,47,-220,0,-296r4,-2v52,71,53,231,-1,299","w":78},"*":{"d":"91,-161r-9,6r-24,-40r-24,40r-9,-6r28,-37r-43,-13r3,-11r41,18r-2,-46r11,0r-2,46r42,-18r3,11r-43,13","w":114},"+":{"d":"65,-45r-8,0r0,-56r-50,0r0,-9r50,0r0,-55r8,0r0,55r49,0r0,9r-49,0r0,56"},",":{"d":"17,30r-6,0r6,-30v-6,1,-2,-9,-3,-13r13,0v1,19,-6,29,-10,43","w":38},"-":{"d":"18,-108r80,0r0,10r-80,0r0,-10","w":111},".":{"d":"13,0r0,-14r13,0r0,14r-13,0","w":38},"\/":{"d":"10,15r-8,0r67,-276r8,0","w":78},"0":{"d":"61,-6v20,0,36,-13,35,-33r0,-173v0,-19,-15,-32,-35,-32v-20,0,-35,13,-35,32r0,173v0,20,15,33,35,33xm105,-39v1,29,-18,42,-44,42v-26,0,-43,-15,-44,-42r0,-173v1,-27,18,-41,44,-41v26,0,44,13,44,41r0,173"},"1":{"d":"69,-240r-39,27r0,-11v17,-8,24,-26,48,-27r0,251r-9,0r0,-240"},"2":{"d":"62,-253v54,-3,52,70,33,107r-69,137r79,0r0,9r-88,0r0,-9v26,-56,58,-107,79,-167v4,-32,3,-68,-34,-68v-25,0,-36,15,-36,40r-9,-2v0,-29,17,-46,45,-47"},"3":{"d":"106,-207v0,33,3,68,-24,75v29,9,21,52,24,89v4,50,-68,62,-85,21v-2,-6,-4,-14,-4,-23r9,-2v1,25,9,41,35,41v39,0,38,-41,36,-81v-1,-27,-12,-42,-41,-40r0,-9v43,5,43,-34,41,-75v0,-21,-13,-33,-36,-33v-26,0,-34,18,-35,40r-9,-2v-1,-28,16,-47,45,-47v30,0,45,15,44,46"},"4":{"d":"93,0r-9,0r0,-46r-74,0v13,-73,36,-135,52,-205r9,0r-53,197r66,0r0,-71r9,0r0,71r21,0r0,8r-21,0r0,46"},"5":{"d":"63,-6v48,0,31,-63,35,-108v4,-41,-52,-46,-67,-21r-9,0r0,-116r83,0r0,8r-75,0r1,96v22,-23,76,-12,76,29v0,60,11,138,-61,118v-17,-5,-28,-20,-27,-45r9,-2v1,25,9,41,35,41"},"6":{"d":"61,2v-57,0,-56,-76,-39,-121r50,-132r9,0r-45,122v23,-20,69,-9,69,31v0,48,8,100,-44,100xm61,-6v44,0,35,-50,35,-92v1,-20,-15,-33,-35,-33v-41,1,-36,50,-35,92v0,20,15,33,35,33"},"7":{"d":"23,-243r0,32r-8,0r0,-40r93,0v-18,89,-48,166,-69,251r-9,0r69,-243r-76,0"},"8":{"d":"105,-93v2,48,4,96,-44,96v-48,0,-46,-48,-44,-96v0,-19,9,-31,23,-36v-27,-8,-23,-47,-23,-83v1,-27,18,-40,44,-41v44,-2,44,39,44,86v0,20,-9,31,-22,38v13,6,22,17,22,36xm61,-6v42,0,36,-46,35,-87v0,-20,-14,-32,-35,-32v-42,0,-35,46,-35,86v0,20,15,33,35,33xm61,-134v38,0,35,-39,35,-78v0,-19,-15,-32,-35,-32v-38,-2,-37,39,-35,77v0,20,15,33,35,33"},"9":{"d":"61,-253v56,0,56,76,39,121r-50,132r-9,0r45,-122v-21,22,-69,8,-69,-30v0,-49,-7,-101,44,-101xm61,-244v-43,0,-35,49,-35,91v-1,20,15,33,35,33v42,0,35,-50,35,-92v0,-20,-15,-32,-35,-32"},":":{"d":"13,-111r0,-14r13,0r0,14r-13,0xm13,0r0,-14r13,0r0,14r-13,0","w":38},";":{"d":"17,30r-6,0r6,-30v-6,1,-2,-9,-3,-13r13,0v1,19,-6,29,-10,43xm13,-111r0,-14r13,0r0,14r-13,0","w":38},"<":{"d":"114,-39r-107,-62r0,-9r107,-62r0,9r-99,58r99,57r0,9"},"=":{"d":"7,-132r107,0r0,8r-107,0r0,-8xm7,-82r107,0r0,8r-107,0r0,-8"},">":{"d":"7,-48r100,-57r-100,-58r0,-9r108,62r0,9r-108,62r0,-9"},"?":{"d":"9,-203v1,-29,21,-50,50,-50v77,-2,52,108,19,139v-8,14,-10,36,-9,59r-8,0v-9,-68,41,-79,41,-142v0,-30,-13,-48,-44,-47v-24,1,-39,17,-40,42xm59,0r0,-13r13,0r0,13r-13,0","w":118},"@":{"d":"93,-174v9,-30,72,-30,72,15v0,39,-12,95,28,95v37,0,45,-34,45,-74v0,-65,-36,-107,-100,-107v-75,0,-105,49,-110,124v-7,101,86,152,171,112r4,8v-18,7,-39,14,-62,14v-84,-1,-122,-51,-122,-134v0,-80,39,-132,118,-132v72,0,109,44,109,115v0,47,-14,85,-59,81v-13,-1,-23,-10,-27,-21v-13,30,-71,25,-71,-18v0,-37,26,-48,67,-44v1,-27,-1,-48,-29,-47v-19,-3,-20,21,-34,13xm126,-67v32,0,32,-32,30,-65v-34,-2,-58,2,-58,36v0,19,9,29,28,29","w":263},"A":{"d":"104,-71r-77,0r-15,71r-9,0r56,-251r13,0r57,251r-9,0xm66,-242v-15,52,-24,110,-37,163r73,0","w":132},"B":{"d":"120,-190v4,-53,-40,-56,-92,-53r0,107v52,2,100,4,92,-54xm123,-72v0,-33,-12,-57,-43,-57r-52,0r0,120r44,0v38,0,51,-25,51,-63xm102,-132v51,20,40,141,-29,132r-54,0r0,-251v61,-3,111,-1,111,61v0,29,-8,49,-28,58","w":146},"C":{"d":"26,-50v-1,29,17,45,45,44v29,0,45,-17,45,-46r9,2v-1,35,-21,52,-54,53v-34,1,-54,-18,-54,-53r0,-149v-8,-59,82,-72,103,-26v3,6,5,15,5,24r-9,2v-1,-28,-15,-45,-45,-45v-29,0,-45,16,-45,45r0,149","w":137},"D":{"d":"28,-9v52,2,96,2,90,-54v-8,-68,28,-179,-47,-180r-43,0r0,234xm128,-180v-4,83,24,187,-61,180r-49,0r0,-251r52,0v45,0,60,25,58,71","w":142},"E":{"d":"19,-251r99,0r0,9r-90,0r0,108r80,0r0,9r-80,0r0,116r90,0r0,9r-99,0r0,-251","w":126},"F":{"d":"19,-251r99,0r0,9r-90,0r0,108r80,0r0,9r-80,0r0,125r-9,0r0,-251","w":124},"G":{"d":"127,-51v-2,35,-23,53,-56,54v-34,1,-54,-18,-54,-53r0,-149v-8,-59,82,-72,103,-26v3,6,5,15,5,24r-9,2v-1,-28,-15,-45,-45,-45v-29,0,-45,16,-45,45r0,149v0,29,17,44,45,44v54,1,48,-58,47,-112r-32,0r0,-9r41,0r0,76","w":138},"H":{"d":"118,-124r-90,0r0,124r-9,0r0,-251r9,0r0,118r90,0r0,-118r9,0r0,251r-9,0r0,-124","w":145},"I":{"d":"25,-251r9,0r0,251r-9,0r0,-251","w":59},"J":{"d":"2,-13v31,16,75,4,75,-37r0,-201r9,0r0,202v3,46,-49,63,-88,44","w":111},"K":{"d":"27,-87r90,-164r10,0r-54,99r66,152r-11,0r-61,-142r-40,73r0,69r-9,0r0,-251r9,0r0,164","w":139},"L":{"d":"19,-251r9,0r0,242r87,0r0,9r-96,0r0,-251","w":118},"M":{"d":"159,-225v-23,53,-40,112,-62,167r-10,0r-60,-164r0,222r-9,0r0,-251r9,0r66,181r66,-181r9,0r0,251r-9,0r0,-225","w":185},"N":{"d":"28,-226r-1,226r-9,0r0,-251r9,0r98,226r0,-226r9,0r0,251r-9,0","w":151},"O":{"d":"72,-6v30,1,46,-16,46,-45r0,-150v0,-27,-20,-43,-46,-43v-27,0,-47,17,-47,45r0,150v-1,29,21,42,47,43xm127,-50v0,35,-22,53,-55,53v-34,0,-56,-18,-56,-53v0,-79,-31,-204,56,-203v34,0,55,17,55,52r0,151","w":143},"P":{"d":"130,-182v0,60,-37,79,-102,72r0,110r-9,0r0,-251v65,-5,111,5,111,69xm121,-182v0,-54,-37,-66,-93,-61r0,125v57,4,93,-5,93,-64","w":137},"Q":{"d":"112,-12v-30,29,-101,14,-96,-38v8,-78,-31,-204,56,-203v34,0,55,17,55,52r0,151v0,13,-3,23,-9,31v7,8,30,13,18,24xm25,-49v-5,42,54,55,80,32r-25,-19r5,-7r26,19v17,-45,4,-120,7,-177v2,-27,-20,-43,-46,-43v-27,0,-47,17,-47,45r0,150","w":142},"R":{"d":"64,-251v81,-13,85,120,23,131r40,120r-10,0r-39,-118r-50,1r0,117r-9,0r0,-251r45,0xm120,-186v0,-52,-37,-61,-92,-57r0,118v56,3,92,-4,92,-61","w":139},"S":{"d":"24,-192v0,73,110,39,98,128v15,70,-83,91,-107,35v-2,-6,-3,-12,-3,-20r10,-2v-1,29,16,45,45,45v36,0,44,-24,46,-58v6,-82,-103,-51,-99,-128v-10,-65,87,-83,106,-28v3,9,5,21,-7,20v0,-29,-16,-43,-45,-44v-31,0,-45,20,-44,52","w":133},"T":{"d":"62,0r-9,0r0,-242r-51,0r0,-9r110,0r0,9r-50,0r0,242","w":114},"U":{"d":"68,-6v30,1,46,-16,46,-45r0,-199r9,0r0,200v0,35,-22,53,-55,53v-33,0,-55,-17,-55,-53r0,-200r9,0r0,201v-1,29,20,42,46,43","w":136},"V":{"d":"120,-251r9,0r-57,251r-13,0r-56,-251r8,0r55,243","w":133},"W":{"d":"105,-228r-43,228r-14,0r-45,-251r9,0r43,244r45,-244r9,0r47,244r42,-244r9,0r-45,251r-14,0","w":209},"X":{"d":"1,0r53,-125r-52,-125r10,0r48,114r47,-114r10,0r-53,125r53,125r-10,0r-47,-114r-48,114r-11,0","w":119},"Y":{"d":"59,-117v18,-42,31,-90,48,-134r10,0r-53,146r0,105r-9,0r0,-105r-52,-146r9,0","w":121},"Z":{"d":"96,-9r0,9r-93,0r0,-8r90,-234r-81,0r0,-9r90,0r0,8r-90,234r84,0","w":106},"[":{"d":"22,-251r39,0r0,9r-29,0r0,274r29,0r0,8r-39,0r0,-291","w":68},"\\":{"d":"3,-261r8,0r67,276r-9,0","w":78},"]":{"d":"61,40r-39,0r0,-8r29,0r0,-274r-29,0r0,-9r39,0r0,291","w":68},"^":{"d":"2,-142r55,-108r9,0r55,108r-9,0r-51,-100r-50,100r-9,0"},"_":{"d":"0,32r180,0r0,9r-180,0r0,-9","w":180},"a":{"d":"56,-6v43,0,42,-43,40,-87v-45,-3,-78,1,-78,48v0,25,13,39,38,39xm96,-16v-23,30,-87,23,-87,-30v0,-50,34,-61,87,-56v1,-37,2,-68,-37,-68v-18,0,-30,9,-36,21r-9,-3v7,-15,23,-27,46,-26v31,1,46,13,45,46r0,132r-9,0r0,-16","w":120},"b":{"d":"23,-124v0,51,-11,119,41,118v52,0,35,-78,35,-129v0,-23,-13,-35,-33,-35v-27,0,-43,20,-43,46xm109,-140v3,59,17,143,-44,143v-21,1,-32,-11,-42,-21r0,18r-9,0r0,-261r9,0r1,108v7,-13,23,-25,42,-25v29,0,42,14,43,38","w":121},"c":{"d":"14,-39v0,-63,-17,-139,48,-139v27,0,46,15,45,43r-9,2v0,-25,-13,-36,-37,-37v-54,0,-39,79,-37,133v1,20,14,30,36,31v25,0,37,-12,38,-36r9,1v0,29,-18,44,-46,44v-29,0,-47,-15,-47,-42","w":117},"d":{"d":"59,-170v-48,0,-36,71,-36,118v0,30,9,45,35,46v51,1,41,-65,41,-116v0,-26,-13,-48,-40,-48xm13,-125v-6,-56,69,-69,85,-30v4,-32,0,-72,1,-106r9,0r0,261r-9,0v-1,-6,2,-14,-1,-18v-8,12,-21,21,-41,21v-57,1,-38,-72,-44,-128","w":121},"e":{"d":"14,-39v-1,-61,-18,-139,48,-139v47,0,47,43,45,90r-85,0v2,38,-6,84,37,82v24,0,36,-14,39,-35r8,2v-1,25,-21,42,-46,42v-28,0,-45,-14,-46,-42xm61,-170v-38,0,-41,34,-39,74r76,0v2,-38,2,-74,-37,-74","w":120},"f":{"d":"67,-253v-43,-6,-32,41,-33,78r31,0r0,8r-31,0r0,167r-9,0r0,-167r-21,0r0,-8r21,0v-1,-44,-7,-93,42,-86r0,8","w":62},"g":{"d":"15,-36v-3,-59,-17,-142,44,-142v20,0,33,8,41,20r0,-18r9,0r0,201v4,44,-49,61,-79,38v-9,-6,-13,-18,-13,-33r9,-2v1,24,13,36,37,37v43,1,38,-46,37,-88v-7,14,-22,26,-42,26v-28,-1,-42,-15,-43,-39xm100,-52v-1,-52,12,-120,-41,-118v-51,1,-35,77,-35,130v0,22,13,34,34,34v26,0,42,-19,42,-46","w":125},"h":{"d":"66,-169v-65,4,-34,106,-41,169r-9,0r0,-262r9,0r1,107v6,-14,22,-23,40,-23v32,-1,45,18,45,48r0,130r-9,0r0,-126v-1,-25,-8,-45,-36,-43","w":127},"i":{"d":"22,-175r9,0r0,175r-9,0r0,-175xm21,-229r10,0r0,12r-10,0r0,-12","w":52},"j":{"d":"-5,66v21,0,27,-9,26,-30r0,-211r9,0r0,214v1,25,-12,34,-35,34r0,-7xm21,-229r10,0r0,12r-10,0r0,-12","w":48},"k":{"d":"24,-62r73,-113r10,0r-41,63r52,112r-11,0r-47,-103r-36,56r0,47r-9,0r0,-262r9,0r0,200","w":119},"l":{"d":"56,3v-26,0,-40,-11,-39,-39r0,-225r9,0r0,222v1,21,6,36,30,34r0,8","w":53},"m":{"d":"25,-155v13,-29,76,-33,80,5v6,-15,23,-28,42,-28v31,0,42,19,43,48r0,130r-9,0r0,-126v0,-26,-7,-45,-34,-43v-65,4,-31,108,-39,169r-9,0r0,-126v-1,-26,-8,-45,-35,-43v-63,5,-32,107,-39,169r-9,0r0,-175r9,0r0,20","w":205},"n":{"d":"66,-169v-65,4,-34,106,-41,169r-9,0r0,-175r9,0v1,6,-2,16,1,20v7,-14,22,-22,40,-23v32,-1,45,18,45,48r0,130r-9,0r0,-126v-1,-25,-8,-45,-36,-43","w":127},"o":{"d":"14,-39v0,-64,-18,-139,48,-139v58,0,47,62,47,117v0,39,-12,63,-47,64v-31,0,-48,-15,-48,-42xm62,-170v-54,-3,-39,72,-39,123v0,27,12,41,39,41v53,1,38,-77,37,-129v-1,-23,-15,-34,-37,-35","w":123},"p":{"d":"99,-41v0,-53,16,-127,-35,-128v-51,-1,-41,65,-41,116v0,26,13,48,40,48v21,-1,36,-15,36,-36xm109,-50v6,56,-70,70,-85,30v-3,27,0,62,-1,91r-9,0r0,-246r9,0v1,6,-2,14,1,18v8,-12,21,-20,41,-20v58,0,38,71,44,127","w":123},"q":{"d":"100,-52v-1,-52,12,-120,-41,-118v-51,1,-35,77,-35,130v0,22,13,34,34,34v26,0,42,-19,42,-46xm15,-36v-3,-59,-17,-142,44,-142v20,0,33,8,41,20r0,-18r9,0r0,247r-9,0r0,-94v-7,14,-22,26,-42,26v-28,-1,-42,-15,-43,-39","w":125},"r":{"d":"30,-149v8,-17,23,-34,49,-28v0,6,1,11,-8,9v-64,2,-34,105,-41,168r-9,0r0,-175r9,0r0,26","w":80},"s":{"d":"103,-45v5,45,-52,60,-82,37v-8,-7,-13,-18,-13,-33r9,-1v0,24,15,36,39,36v27,0,36,-14,37,-38v3,-59,-82,-34,-82,-91v0,-42,53,-55,80,-32v9,7,13,18,13,32r-9,2v-1,-23,-14,-37,-38,-37v-22,0,-37,11,-36,35v2,53,88,28,82,90","w":113},"t":{"d":"69,0v-27,1,-40,-13,-40,-40r0,-127r-21,0r0,-8r21,0r0,-51r9,0r0,51r28,0r0,8r-28,0r0,129v0,19,10,31,31,30r0,8","w":76},"u":{"d":"102,-21v-7,14,-22,24,-41,24v-31,0,-44,-18,-44,-48r0,-130r9,0r0,126v-1,27,9,43,36,43v65,0,33,-107,40,-169r9,0r0,175r-9,0r0,-21","w":127},"v":{"d":"48,0r-46,-175r9,0r43,157r40,-157r10,0r-46,175r-10,0","w":106},"w":{"d":"94,-157v-15,50,-24,106,-38,157r-10,0r-42,-175r9,0r38,158r38,-158r9,0r38,158r38,-158r9,0r-42,175r-10,0","w":184},"x":{"d":"50,-84r-38,84r-10,0r41,-90r-38,-85r10,0r35,79r35,-79r10,0r-39,85r42,90r-11,0","w":99},"y":{"d":"98,-175r10,0r-60,214v-6,18,-16,35,-40,33v-4,-14,18,-5,22,-17v11,-12,13,-39,19,-57r-46,-173r9,0r42,158","w":109},"z":{"d":"4,-8r79,-159r-71,0r0,-8r81,0r0,8r-79,159r77,0r0,8r-87,0r0,-8","w":96},"{":{"d":"22,-106v49,21,-13,138,46,140v1,5,-1,7,-6,6v-58,-3,3,-127,-49,-143r0,-5v33,-12,23,-66,23,-107v0,-23,9,-38,32,-36v0,4,1,7,-4,6v-49,8,2,118,-42,139","w":73},"|":{"d":"26,-258r7,0r0,316r-7,0r0,-316","w":57},"}":{"d":"68,-103v-34,9,-23,66,-23,107v0,23,-9,38,-32,36v0,-4,-1,-7,4,-6v49,-7,-6,-119,42,-140v-26,-12,-21,-64,-21,-104v0,-19,-4,-37,-25,-35v-1,-5,1,-7,6,-6v56,5,-3,123,49,143r0,5","w":73},"~":{"d":"6,-84v28,-41,81,27,107,-10r6,4v-24,43,-81,-22,-108,11"},"'":{"d":"18,-251r8,0r0,57r-8,0r0,-57","w":44},"`":{"d":"85,-200r-30,-49r12,-5r23,52","w":120},"%":{"d":"146,-7v11,0,21,-6,21,-17r0,-101v0,-11,-10,-18,-21,-18v-11,0,-21,7,-21,18r0,101v0,11,10,17,21,17xm176,-24v1,17,-14,25,-30,25v-16,0,-31,-8,-30,-25r0,-101v-1,-18,14,-26,30,-26v16,0,31,8,30,26r0,101xm42,-108v11,0,21,-6,21,-17r0,-101v0,-11,-9,-17,-21,-17v-12,0,-21,6,-21,17r0,101v0,11,10,17,21,17xm72,-125v1,18,-14,26,-30,26v-16,0,-31,-9,-30,-26r0,-101v-1,-18,14,-26,30,-26v16,0,31,8,30,26r0,101xm37,6r-9,0r113,-263r9,0","w":188},"\u00a0":{"w":57}}});
;

