/*
 * 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>';
  }
};
;
/*!
 * Copyright (c) 2011 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		},

		strict: (function() {
			var doctype;
			// no doctype (doesn't always catch it though.. IE I'm looking at you)
			if (document.compatMode == 'BackCompat') return false;
			// WebKit, Gecko, Opera, IE9+
			doctype = document.doctype;
			if (doctype) {
				return !/frameset|transitional/i.test(doctype.publicId);
			}
			// IE<9, firstChild is the doctype even if there's an XML declaration
			doctype = document.firstChild;
			if (doctype.nodeType != 8 || /^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)) {
				return false;
			}
			return true;
		})()

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 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
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, ''); // @fixme too simple
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		var checkTypes = {
			'': 1,
			'text/css': 1
		};

		function isContainerReady(el) {
			if (!checkTypes[el.type.toLowerCase()]) return true;
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		// mouseover/mouseout (standards) mode
		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		// mouseenter/mouseleave (probably ie) mode
		function onEnterLeave(e) {
			if (!e) e = window.event;
			// ie model, we don't have access to "this", but
			// mouseenter/leave doesn't bubble so it's fine.
			trigger(e.target || e.srcElement, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				if (hoverState) {
					options = merge(options, options.hover);
					options._mediatorMode = 1;
				}
				api.replace(el, options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

		this.detach = function(el) {
			if (el.onmouseenter === undefined) {
				removeEvent(el, 'mouseover', onOverOut);
				removeEvent(el, 'mouseout', onOverOut);
			}
			else {
				removeEvent(el, 'mouseenter', onEnterLeave);
				removeEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			// we don't really need "this" right now, saves code
			el.attachEvent('on' + type, listener);
		}
	}

	function attach(el, options) {
		if (options._mediatorMode) return el;
		var storage = sharedStorage.get(el);
		var oldOptions = storage.options;
		if (oldOptions) {
			if (oldOptions === options) return el;
			if (oldOptions.hover) hoverHandler.detach(el);
		}
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function removeEvent(el, type, listener) {
		if (el.removeEventListener) {
			el.removeEventListener(type, listener, false);
		}
		else if (el.detachEvent) {
			el.detachEvent('on' + type, listener);
		}
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		if (options.ignoreClass && options.ignoreClass.test(el.className)) return;
		if (options.onBeforeReplace) options.onBeforeReplace(el, options);
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		var modifyText = options.modifyText;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				text = CSS.whiteSpace(text, style, anchor, lastElement, simple);
				// modify text only on the first replace
				if (modifyText) text = modifyText(text, anchor, el, options);
				el.replaceChild(process(font, text, style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
		if (options.onAfterReplace) options.onAfterReplace(el, options);
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		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,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		ignoreClass: null,
		modifyText: null,
		onAfterReplace: null,
		onBeforeReplace: null,
		printable: true,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'advanced'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.ignoreClass == 'string') {
			options.ignoreClass = new RegExp('(?:^|\\s)(?:' + options.ignoreClass.replace(/\s+/g, '|') + ')(?:\\s|$)');
		}
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (typeof elements == 'string') {
			if (!ignoreHistory) replaceHistory.add(elements, arguments);
			elements = [ elements ];
		}
		else if (elements.nodeType) elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (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:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;
		var pixelRatio = window.devicePixelRatio || 1;
		if (pixelRatio != 1) {
			canvas.width = canvasWidth * pixelRatio;
			canvas.height = canvasHeight * pixelRatio;
			g.scale(pixelRatio, pixelRatio);
		}

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					// the following moveTo is for Opera 9.2. if we don't
					// do this, it won't forget the previous path which
					// results in garbled text.
					g.moveTo(0, 0);
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1993, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-Lt
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":556,"face":{"font-family":"Helvetica Neue LT Std","font-weight":300,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 4 3 2 2 2 2 2 4","ascent":"714","descent":"-286","x-height":"15","bbox":"-166 -967 1050 214","underline-thickness":"50","underline-position":"-50","stemh":"53","stemv":"63","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":278},"!":{"d":"102,-178r-15,-323r0,-213r68,0r0,213r-15,323r-38,0xm163,0r-84,0r0,-106r84,0r0,106","w":241},"\"":{"d":"87,-471r0,-243r63,0r0,243r-63,0xm220,-471r0,-243r63,0r0,243r-63,0","w":370},"#":{"d":"497,-268r0,45r-111,0r-31,223r-50,0r31,-223r-141,0r-31,223r-50,0r31,-223r-110,0r0,-45r116,0r22,-156r-110,0r0,-45r116,0r31,-222r50,0r-31,222r141,0r31,-222r50,0r-31,222r105,0r0,45r-111,0r-22,156r105,0xm364,-424r-141,0r-22,156r141,0"},"$":{"d":"296,-326r0,288v85,0,168,-42,168,-146v0,-95,-90,-123,-168,-142xm257,-397r0,-279v-80,0,-147,44,-147,149v0,93,72,112,147,130xm29,-228r63,0v1,115,60,178,165,190r0,-296v-113,-25,-210,-60,-210,-200v0,-120,94,-195,210,-195r0,-78r39,0r0,78v116,0,215,86,212,217r-63,0v-1,-100,-62,-164,-149,-164r0,288v114,24,231,63,231,203v0,131,-114,201,-231,200r0,85r-39,0r0,-86v-156,-15,-222,-90,-228,-242"},"%":{"d":"228,-661v-84,0,-106,81,-106,145v0,63,22,143,106,143v84,0,106,-80,106,-143v0,-64,-22,-145,-106,-145xm228,-706v113,0,159,82,159,189v0,107,-46,189,-159,189v-113,0,-159,-82,-159,-189v0,-107,46,-189,159,-189xm667,-363v113,0,159,82,159,189v0,107,-46,189,-159,189v-113,0,-159,-82,-159,-189v0,-107,46,-189,159,-189xm667,-318v-84,0,-106,81,-106,145v0,63,22,143,106,143v84,0,106,-80,106,-143v0,-64,-22,-145,-106,-145xm190,34r453,-759r47,0r-452,759r-48,0","w":889},"&":{"d":"426,-140r-178,-216v-68,37,-146,91,-146,177v0,84,74,141,155,141v71,0,129,-45,169,-102xm541,0r-76,-93v-52,65,-126,108,-210,108v-123,0,-216,-71,-216,-200v0,-102,95,-169,175,-212v-39,-51,-88,-103,-88,-172v0,-87,71,-145,158,-145v87,0,158,58,158,145v0,89,-69,140,-140,185r156,188v17,-35,21,-66,21,-120r63,0v0,40,-9,110,-42,171r120,145r-79,0xm284,-661v-52,0,-95,33,-95,92v0,50,49,106,80,144v50,-31,110,-75,110,-144v0,-59,-43,-92,-95,-92","w":611},"\u2019":{"d":"99,-714r84,0v3,115,6,213,-89,243r0,-43v34,-12,49,-61,47,-94r-42,0r0,-106","w":278,"k":{"\u2019":119,"s":111,"\u0161":111,"t":18}},"(":{"d":"242,191r-50,0v-89,-147,-141,-283,-141,-457v0,-170,54,-328,141,-463r50,0v-169,271,-170,653,0,920","w":241},")":{"d":"-1,-729r50,0v89,147,141,283,141,457v0,170,-54,328,-141,463r-50,0v169,-271,170,-653,0,-920","w":241},"*":{"d":"142,-556r-115,-39r14,-37r115,41r0,-123r39,0r0,123r115,-41r15,37r-118,39r72,98r-32,23r-73,-100r-73,100r-32,-23","w":352},"+":{"d":"274,-278r0,-225r53,0r0,225r225,0r0,53r-225,0r0,225r-53,0r0,-225r-225,0r0,-53r225,0","w":600},",":{"d":"97,-106r84,0v3,114,6,213,-88,243r0,-43v33,-12,48,-61,46,-94r-42,0r0,-106","w":278},"-":{"d":"310,-246r-250,0r0,-58r250,0r0,58","w":370},".":{"d":"181,0r-84,0r0,-106r84,0r0,106","w":278},"\/":{"d":"41,15r-54,0r308,-744r51,0","w":333},"0":{"d":"278,-653v-160,0,-181,186,-181,307v0,122,21,308,181,308v160,0,181,-186,181,-308v0,-121,-21,-307,-181,-307xm278,-706v204,0,244,197,244,360v0,164,-40,361,-244,361v-204,0,-244,-197,-244,-360v0,-164,40,-361,244,-361"},"1":{"d":"97,-520r0,-45v110,-4,178,-6,197,-135r51,0r0,700r-63,0r0,-520r-185,0"},"2":{"d":"497,-58r0,58r-461,0v5,-208,218,-259,337,-378v38,-39,58,-76,58,-132v0,-91,-72,-143,-157,-143v-115,0,-160,92,-158,195r-63,0v-3,-144,72,-248,224,-248v122,0,217,67,217,197v0,117,-86,189,-176,249v-69,45,-193,108,-210,202r389,0"},"3":{"d":"33,-223r63,0v-4,111,62,185,175,185v92,0,179,-55,179,-155v0,-118,-96,-158,-221,-148r0,-53v104,8,195,-18,195,-127v0,-92,-69,-132,-153,-132v-105,0,-161,73,-159,177r-63,0v1,-132,85,-230,221,-230v110,0,217,54,217,178v0,78,-47,134,-118,157v91,15,144,81,144,173v0,137,-112,213,-241,213v-145,0,-249,-88,-239,-238"},"4":{"d":"30,-174r0,-61r324,-465r57,0r0,473r105,0r0,53r-105,0r0,174r-58,0r0,-174r-323,0xm87,-227r266,0r0,-381r-2,0"},"5":{"d":"36,-200r63,0v3,97,76,162,172,162v108,0,175,-89,175,-191v0,-103,-75,-182,-179,-182v-62,0,-122,30,-156,83r-54,0r68,-363r350,0r0,58r-306,0r-45,232r2,2v35,-41,94,-65,148,-65v144,0,235,101,235,242v0,137,-109,237,-243,237v-130,0,-227,-82,-230,-215"},"6":{"d":"290,-403v-110,0,-174,82,-174,185v0,99,53,180,175,180v100,0,168,-83,168,-180v0,-102,-62,-185,-169,-185xm505,-523r-63,0v-11,-77,-65,-130,-146,-130v-161,-2,-198,191,-191,313v33,-69,107,-116,186,-116v140,0,231,97,231,234v0,136,-99,237,-237,237v-170,0,-245,-99,-245,-372v0,-83,21,-349,250,-349v123,0,200,61,215,183"},"7":{"d":"51,-633r0,-58r450,0r0,58v-87,91,-267,307,-283,633r-68,0v17,-237,94,-412,288,-633r-387,0"},"8":{"d":"278,-38v98,0,178,-51,178,-158v0,-101,-84,-152,-178,-152v-96,0,-178,49,-178,152v0,105,80,158,178,158xm490,-531v0,78,-47,130,-114,156v90,18,143,85,143,179v0,141,-110,211,-241,211v-131,0,-241,-70,-241,-211v0,-94,60,-160,142,-181v-73,-22,-114,-77,-114,-154v0,-120,109,-175,212,-175v104,0,213,55,213,175xm278,-401v77,0,149,-40,149,-130v0,-80,-65,-122,-149,-122v-77,0,-150,42,-150,122v0,94,76,130,150,130"},"9":{"d":"266,-288v110,0,174,-82,174,-185v0,-99,-53,-180,-175,-180v-100,0,-168,83,-168,180v0,102,62,185,169,185xm51,-168r63,0v11,77,65,130,146,130v161,2,198,-191,191,-313v-33,69,-107,116,-186,116v-140,0,-231,-97,-231,-234v0,-136,99,-237,237,-237v170,0,245,99,245,372v0,83,-21,349,-250,349v-123,0,-200,-61,-215,-183"},":":{"d":"181,-394r-84,0r0,-106r84,0r0,106xm181,0r-84,0r0,-106r84,0r0,106","w":278},";":{"d":"97,-106r84,0v3,114,6,213,-88,243r0,-43v33,-12,48,-61,46,-94r-42,0r0,-106xm181,-394r-84,0r0,-106r84,0r0,106","w":278},"<":{"d":"554,-47r0,55r-508,-234r0,-54r508,-234r0,55r-446,206","w":600},"=":{"d":"552,-378r0,53r-503,0r0,-53r503,0xm552,-181r0,53r-503,0r0,-53r503,0","w":600},">":{"d":"46,-47r446,-206r-446,-206r0,-55r508,234r0,54r-508,234r0,-55","w":600},"?":{"d":"117,-494r-63,0v1,-142,82,-235,227,-235v111,0,203,69,203,185v0,74,-37,121,-87,170v-86,84,-90,73,-93,195r-63,0v-3,-123,31,-155,115,-233v37,-35,65,-77,65,-129v0,-80,-65,-135,-143,-135v-109,0,-163,79,-161,182xm231,0r0,-106r84,0r0,106r-84,0","w":537},"@":{"d":"426,-510v-102,0,-170,137,-170,231v0,60,35,97,83,97v93,0,166,-147,166,-235v0,-47,-40,-93,-79,-93xm614,-544r-96,288v-14,43,-20,83,13,83v89,0,169,-136,169,-248v0,-165,-130,-263,-284,-263v-187,0,-316,147,-316,331v0,182,136,323,318,323v98,0,200,-50,258,-133r51,0v-60,110,-184,178,-309,178v-215,0,-371,-164,-371,-375v0,-208,163,-369,367,-369v193,0,339,127,339,311v0,161,-120,290,-232,290v-37,0,-60,-28,-69,-67v-30,32,-76,66,-127,66v-82,0,-132,-66,-132,-145v0,-138,95,-289,237,-289v44,0,84,24,106,84r25,-65r53,0","w":800},"A":{"d":"-7,0r288,-714r76,0r280,714r-73,0r-87,-222r-325,0r-86,222r-73,0xm316,-646r-143,366r281,0","w":630},"B":{"d":"140,-343r0,285v184,-9,422,51,422,-147v0,-91,-69,-138,-188,-138r-234,0xm72,0r0,-714r302,0v120,0,229,42,229,175v0,77,-54,141,-124,162v92,12,151,81,151,174v0,68,-24,203,-256,203r-302,0xm140,-656r0,255r234,0v109,0,161,-54,161,-121v0,-89,-55,-134,-161,-134r-234,0","w":667},"C":{"d":"662,-498r-68,0v-24,-110,-115,-173,-219,-173v-189,0,-269,158,-269,314v0,156,80,314,269,314v132,0,216,-102,229,-229r68,0v-19,175,-130,287,-297,287v-225,0,-337,-177,-337,-372v0,-195,112,-372,337,-372v135,0,269,81,287,231","w":704},"D":{"d":"140,-656r0,598r145,0v205,1,294,-86,294,-299v0,-213,-89,-300,-294,-299r-145,0xm72,0r0,-714r247,0v215,5,328,123,328,357v0,234,-113,357,-328,357r-247,0","w":685},"E":{"d":"72,0r0,-714r493,0r0,58r-425,0r0,258r398,0r0,58r-398,0r0,282r430,0r0,58r-498,0","w":593},"F":{"d":"72,0r0,-714r453,0r0,58r-385,0r0,258r342,0r0,58r-342,0r0,340r-68,0","w":537,"k":{"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,",":129,".":129}},"G":{"d":"682,-363r0,363r-49,0v-5,-42,-2,-92,-11,-130v-48,102,-144,145,-247,145v-225,0,-337,-177,-337,-372v0,-195,112,-372,337,-372v150,0,272,81,298,237r-68,0v-9,-82,-94,-179,-230,-179v-189,0,-269,158,-269,314v0,156,80,314,269,314v158,0,250,-111,247,-262r-243,0r0,-58r303,0","w":741},"H":{"d":"72,0r0,-714r68,0r0,310r424,0r0,-310r68,0r0,714r-68,0r0,-346r-424,0r0,346r-68,0","w":704},"I":{"d":"77,0r0,-714r68,0r0,714r-68,0","w":222},"J":{"d":"360,-228r0,-486r68,0r0,515v0,145,-54,214,-208,214v-164,0,-200,-120,-199,-244r68,0v2,61,-4,186,137,186v106,0,134,-54,134,-185","w":500},"K":{"d":"72,0r0,-714r68,0r0,384r415,-384r92,0r-319,295r334,419r-88,0r-297,-372r-137,127r0,245r-68,0","w":648},"L":{"d":"72,0r0,-714r68,0r0,656r400,0r0,58r-468,0","w":537,"k":{"T":92,"V":92,"W":55,"y":37,"\u00fd":37,"\u00ff":37,"Y":111,"\u00dd":111,"\u0178":111,"\u2019":98}},"M":{"d":"70,0r0,-714r100,0r247,626r246,-626r100,0r0,714r-68,0r0,-617r-2,0r-244,617r-64,0r-245,-617r-2,0r0,617r-68,0","w":833},"N":{"d":"71,0r0,-714r76,0r416,604r2,0r0,-604r68,0r0,714r-76,0r-416,-604r-2,0r0,604r-68,0","w":704},"O":{"d":"34,-357v0,-195,112,-372,337,-372v224,0,336,177,336,372v0,195,-112,372,-336,372v-225,0,-337,-177,-337,-372xm102,-357v0,156,80,314,269,314v188,0,268,-158,268,-314v0,-156,-80,-314,-268,-314v-189,0,-269,158,-269,314","w":741},"P":{"d":"72,0r0,-714r317,0v128,0,212,75,212,204v0,129,-84,204,-212,204r-249,0r0,306r-68,0xm140,-656r0,292r234,0v94,0,159,-48,159,-146v0,-98,-65,-146,-159,-146r-234,0","w":630,"k":{"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":153,".":153}},"Q":{"d":"444,-192r104,79v164,-167,113,-558,-177,-558v-189,0,-269,158,-269,314v0,156,80,314,269,314v52,0,96,-12,132,-35r-94,-71xm701,4r-34,42r-111,-84v-49,34,-111,53,-185,53v-225,0,-337,-177,-337,-372v0,-195,112,-372,337,-372v346,0,430,453,228,655","w":741},"R":{"d":"72,0r0,-714r327,0v118,0,217,57,217,186v0,93,-51,161,-139,184v93,12,120,76,125,161v3,49,3,147,33,183r-75,0v-17,-28,-17,-81,-19,-111v-6,-100,-14,-206,-143,-206r-258,0r0,317r-68,0xm140,-656r0,281r254,0v83,0,154,-52,154,-139v0,-87,-52,-142,-154,-142r-254,0","w":667,"k":{"T":-6,"V":-6,"W":-6,"y":-24,"\u00fd":-24,"\u00ff":-24,"Y":13,"\u00dd":13,"\u0178":13}},"S":{"d":"36,-235r68,0v-3,147,103,192,233,192v75,0,189,-41,189,-145v0,-81,-82,-110,-147,-129v-137,-39,-320,-33,-320,-211v0,-70,45,-201,246,-201v141,0,265,76,264,222r-68,0v-4,-109,-94,-164,-195,-164v-93,0,-179,36,-179,142v0,67,51,93,108,109v149,42,358,46,359,231v0,49,-20,204,-273,204v-169,0,-293,-76,-285,-250","w":630},"T":{"d":"-5,-656r0,-58r566,0r0,58r-249,0r0,656r-68,0r0,-656r-249,0","k":{"\u00fc":92,"\u0161":111,"\u00f2":111,"\u00f6":111,"\u00e8":111,"\u00eb":111,"\u00ea":111,"\u00e3":111,"\u00e5":111,"\u00e0":111,"\u00e4":111,"\u00e2":111,"w":111,"y":111,"\u00fd":111,"\u00ff":111,"A":68,"\u00c6":68,"\u00c1":68,"\u00c2":68,"\u00c4":68,"\u00c0":68,"\u00c5":68,"\u00c3":68,",":111,".":111,"c":111,"\u00e7":111,"e":111,"\u00e9":111,"o":111,"\u00f8":111,"\u0153":111,"\u00f3":111,"\u00f4":111,"\u00f5":111,"-":129,"a":111,"\u00e6":111,"\u00e1":111,"i":-24,"\u0131":-24,"\u00ed":-24,"\u00ee":-24,"\u00ef":-24,"\u00ec":-24,"r":92,"s":111,"u":92,"\u00fa":92,"\u00fb":92,"\u00f9":92,":":111,";":111}},"U":{"d":"65,-257r0,-457r68,0r0,442v-1,166,78,229,209,229v132,0,210,-63,210,-229r0,-442r68,0r0,457v0,147,-79,272,-278,272v-198,0,-277,-125,-277,-272","w":685},"V":{"d":"258,0r-265,-714r73,0r232,639r2,0r230,-639r72,0r-265,714r-79,0","w":593,"k":{"\u00f6":55,"\u00f4":55,"\u00e8":55,"\u00eb":55,"\u00ea":55,"\u00e3":55,"\u00e5":55,"\u00e0":55,"\u00e4":55,"\u00e2":55,"y":18,"\u00fd":18,"\u00ff":18,"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,",":129,".":129,"e":55,"\u00e9":55,"o":55,"\u00f8":55,"\u0153":55,"\u00f3":55,"\u00f2":55,"\u00f5":55,"-":55,"a":55,"\u00e6":55,"\u00e1":55,"i":-6,"\u0131":-6,"\u00ed":-6,"\u00ee":-6,"\u00ef":-6,"\u00ec":-6,"r":37,"u":37,"\u00fa":37,"\u00fb":37,"\u00fc":37,"\u00f9":37,":":74,";":74}},"W":{"d":"198,0r-198,-714r73,0r162,625r2,0r174,-625r85,0r175,625r2,0r163,-625r68,0r-197,714r-72,0r-181,-639r-2,0r-180,639r-74,0","w":907,"k":{"\u00fc":18,"\u00f6":18,"\u00ea":18,"\u00e4":37,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,",":74,".":74,"e":18,"\u00e9":18,"\u00eb":18,"\u00e8":18,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f2":18,"\u00f5":18,"a":37,"\u00e6":37,"\u00e1":37,"\u00e2":37,"\u00e0":37,"\u00e5":37,"\u00e3":37,"i":-24,"\u0131":-24,"\u00ed":-24,"\u00ee":-24,"\u00ef":-24,"\u00ec":-24,"r":18,"u":18,"\u00fa":18,"\u00fb":18,"\u00f9":18,":":18,";":18}},"X":{"d":"245,-368r-242,-346r80,0r202,299r209,-299r76,0r-244,348r258,366r-82,0r-217,-315r-220,315r-77,0","w":574},"Y":{"d":"271,0r0,-294r-281,-420r81,0r235,362r234,-362r81,0r-282,420r0,294r-68,0","w":611,"k":{"\u00fc":74,"\u00f6":92,"v":55,"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":123,".":99,"e":92,"\u00e9":92,"\u00ea":92,"\u00eb":92,"\u00e8":92,"o":92,"\u00f8":92,"\u0153":92,"\u00f3":92,"\u00f4":92,"\u00f2":92,"\u00f5":92,"q":92,"-":111,"a":92,"\u00e6":92,"\u00e1":92,"\u00e2":92,"\u00e4":92,"\u00e0":92,"\u00e5":92,"\u00e3":92,"i":7,"\u0131":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"u":74,"\u00fa":74,"\u00fb":74,"\u00f9":74,":":92,";":92,"p":74}},"Z":{"d":"37,-656r0,-58r514,0r0,60r-470,596r480,0r0,58r-556,0r0,-60r470,-596r-438,0","w":574},"[":{"d":"237,191r-161,0r0,-920r161,0r0,53r-98,0r0,814r98,0r0,53","w":241},"\\":{"d":"346,15r-54,0r-305,-744r51,0","w":333},"]":{"d":"4,-729r161,0r0,920r-161,0r0,-53r98,0r0,-814r-98,0r0,-53","w":241},"^":{"d":"102,-238r-58,0r230,-453r52,0r230,453r-57,0r-200,-390","w":600},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50","w":500},"\u2018":{"d":"179,-471r-84,0v-3,-115,-6,-213,89,-243r0,43v-34,12,-49,61,-47,94r42,0r0,106","w":278,"k":{"\u2018":119}},"a":{"d":"390,-200v-1,-26,4,-60,-2,-82v-8,15,-36,20,-53,23v-107,19,-240,18,-240,119v0,63,56,102,115,102v96,0,182,-61,180,-162xm117,-358r-63,0v6,-121,91,-173,209,-173v91,0,190,28,190,166r0,274v-3,32,29,45,57,34r0,53v-14,3,-24,4,-41,4v-67,2,-70,-41,-76,-90v-44,67,-89,105,-188,105v-95,0,-173,-47,-173,-151v0,-145,141,-150,277,-166v52,-6,81,-13,81,-70v0,-85,-61,-106,-135,-106v-78,0,-136,36,-138,120","w":519},"b":{"d":"473,-258v0,-107,-49,-220,-169,-220v-134,0,-181,113,-181,220v0,107,47,220,181,220v120,0,169,-113,169,-220xm60,0r0,-714r63,0r0,296r2,0v27,-74,102,-113,179,-113v157,0,232,127,232,273v0,146,-75,273,-232,273v-85,0,-153,-47,-186,-113r0,98r-58,0","w":574},"c":{"d":"487,-354r-63,0v-17,-77,-64,-124,-146,-124v-242,0,-241,440,0,440v78,0,142,-61,150,-147r63,0v-17,124,-98,200,-213,200v-158,0,-244,-125,-244,-273v0,-148,86,-273,244,-273v110,0,195,59,209,177","w":519},"d":{"d":"101,-258v0,107,49,220,169,220v134,0,181,-113,181,-220v0,-107,-47,-220,-181,-220v-120,0,-169,113,-169,220xm514,-714r0,714r-58,0v-2,-31,4,-71,-2,-98v-27,67,-109,113,-184,113v-157,0,-232,-127,-232,-273v0,-146,75,-273,232,-273v79,0,150,43,181,113r0,-296r63,0","w":574},"e":{"d":"494,-241r-397,0v1,92,49,203,170,203v92,0,142,-54,162,-132r63,0v-27,117,-95,185,-225,185v-164,0,-233,-126,-233,-273v0,-136,69,-273,233,-273v166,0,232,145,227,290xm97,-294r334,0v-3,-95,-62,-184,-164,-184v-103,0,-160,90,-170,184","w":519},"f":{"d":"259,-516r0,53r-102,0r0,463r-63,0r0,-463r-88,0r0,-53r88,0v-4,-112,5,-199,125,-198v18,0,33,1,53,4r0,54v-17,-3,-31,-5,-46,-5v-87,-1,-65,72,-69,145r102,0","w":259,"k":{"\u2019":-18,"f":18,"\ufb01":18,"\ufb02":18,"\u00df":18}},"g":{"d":"267,-59v109,0,166,-100,166,-205v0,-101,-47,-214,-166,-214v-120,0,-170,107,-170,214v0,104,54,205,170,205xm496,-516r0,474v-1,154,-60,248,-229,248v-103,0,-205,-46,-214,-156r63,0v14,76,81,103,151,103v140,0,181,-116,164,-265v-29,63,-90,106,-164,106v-165,0,-233,-118,-233,-265v0,-142,84,-260,233,-260v77,0,137,51,166,104r0,-89r63,0"},"h":{"d":"59,0r0,-714r63,0r0,287r2,0v23,-62,92,-104,165,-104v145,0,189,76,189,199r0,332r-63,0r0,-322v0,-89,-29,-156,-131,-156v-100,0,-162,76,-162,177r0,301r-63,0","w":537},"i":{"d":"61,0r0,-516r63,0r0,516r-63,0xm61,-613r0,-101r63,0r0,101r-63,0","w":185},"j":{"d":"61,63r0,-579r63,0r0,564v0,77,-21,143,-110,143v-15,0,-29,-2,-44,-2r0,-52v10,1,24,1,34,1v49,0,57,-32,57,-75xm61,-613r0,-101r63,0r0,101r-63,0","w":185},"k":{"d":"60,0r0,-714r63,0r0,448r286,-250r84,0r-220,191r235,325r-79,0r-204,-281r-102,85r0,196r-63,0","w":500},"l":{"d":"61,0r0,-714r63,0r0,714r-63,0","w":185},"m":{"d":"60,0r0,-516r58,0r0,87r3,0v33,-62,87,-102,169,-102v68,0,129,33,148,101v31,-68,96,-101,164,-101v113,0,171,59,171,181r0,350r-63,0r0,-347v0,-85,-32,-131,-122,-131v-109,0,-140,90,-140,186r0,292r-63,0r0,-350v1,-70,-28,-128,-108,-128v-109,0,-154,82,-154,190r0,288r-63,0","w":833},"n":{"d":"59,0r0,-516r63,0v2,28,-4,65,2,89v23,-62,92,-104,165,-104v145,0,189,76,189,199r0,332r-63,0r0,-322v0,-89,-29,-156,-131,-156v-100,0,-162,76,-162,177r0,301r-63,0","w":537},"o":{"d":"278,-531v158,0,244,125,244,273v0,148,-86,273,-244,273v-158,0,-244,-125,-244,-273v0,-148,86,-273,244,-273xm278,-478v-242,0,-241,440,0,440v242,0,241,-440,0,-440"},"p":{"d":"473,-258v0,-107,-49,-220,-169,-220v-139,0,-181,103,-181,220v0,107,47,220,181,220v120,0,169,-113,169,-220xm60,191r0,-707r58,0v2,31,-4,71,2,98v29,-70,101,-113,184,-113v157,0,232,127,232,273v0,146,-75,273,-232,273v-79,0,-150,-43,-181,-113r0,289r-63,0","w":574},"q":{"d":"101,-258v0,107,49,220,169,220v134,0,181,-113,181,-220v0,-107,-47,-220,-181,-220v-120,0,-169,113,-169,220xm514,-516r0,707r-63,0r0,-289r-2,0v-27,74,-102,113,-179,113v-157,0,-232,-127,-232,-273v0,-146,75,-273,232,-273v77,0,155,50,186,113r0,-98r58,0","w":574},"r":{"d":"60,0r0,-516r58,0v2,39,-4,86,2,121v32,-83,102,-132,195,-128r0,63v-114,-6,-192,78,-192,185r0,275r-63,0","w":315,"k":{",":92,".":92,"c":18,"\u00e7":18,"d":18,"e":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00e8":18,"n":-18,"\u00f1":-18,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"q":18,"-":55}},"s":{"d":"432,-365r-63,0v-3,-78,-63,-113,-135,-113v-56,0,-122,22,-122,89v0,87,116,89,191,106v71,16,147,53,147,143v0,112,-111,155,-207,155v-120,0,-202,-56,-212,-182r63,0v5,85,68,129,152,129v59,0,141,-26,141,-98v0,-88,-117,-91,-194,-112v-82,-22,-144,-50,-144,-138v0,-105,103,-145,194,-145v103,0,185,54,189,166","w":481},"t":{"d":"160,-671r0,155r105,0r0,53r-105,0r0,348v0,41,6,68,51,68v18,0,36,-1,54,-3r0,54v-102,8,-168,-1,-168,-114r0,-353r-90,0r0,-53r90,0r0,-155r63,0","w":296},"u":{"d":"478,-516r0,516r-58,0v-2,-30,4,-67,-2,-93v-33,69,-101,108,-178,108v-130,0,-181,-76,-181,-196r0,-335r63,0r0,336v3,93,38,142,138,142v108,0,155,-102,155,-207r0,-271r63,0","w":537},"v":{"d":"201,0r-199,-516r70,0r162,453r2,0r160,-453r65,0r-193,516r-67,0","w":463,"k":{",":74,".":74}},"w":{"d":"174,0r-166,-516r67,0r132,442r2,0r126,-442r71,0r126,442r2,0r132,-442r67,0r-166,516r-69,0r-127,-434r-2,0r-126,434r-69,0","w":741,"k":{",":55,".":55}},"x":{"d":"1,0r200,-268r-185,-248r79,0r147,196r144,-196r79,0r-186,247r201,269r-80,0r-162,-217r-159,217r-78,0","w":481},"y":{"d":"208,-2r-206,-514r67,0r170,440r159,-440r63,0r-224,595v-35,105,-85,122,-184,107r0,-53v76,18,113,-13,133,-76","w":463,"k":{",":92,".":92}},"z":{"d":"432,-471r-341,418r355,0r0,53r-431,0r0,-51r337,-412r-314,0r0,-53r394,0r0,45","w":463},"{":{"d":"293,191v-95,10,-135,-26,-138,-125v-3,-113,24,-300,-72,-308r0,-53v96,-7,68,-197,72,-309v3,-98,43,-136,138,-125r0,53v-106,-13,-75,144,-75,244v0,112,-59,152,-70,164v13,7,70,53,70,162v0,94,-35,254,75,244r0,53","w":333},"|":{"d":"85,214r0,-1000r53,0r0,1000r-53,0","w":222},"}":{"d":"40,-729v95,-10,135,26,138,125v3,113,-24,300,72,308r0,53v-96,7,-68,197,-72,309v-3,98,-43,136,-138,125r0,-53v106,13,75,-144,75,-244v0,-112,59,-152,70,-164v-13,-7,-70,-53,-70,-162v0,-94,35,-254,-75,-244r0,-53","w":333},"~":{"d":"194,-311v68,0,156,65,213,65v40,0,65,-34,88,-69r36,36v-30,42,-63,86,-125,86v-78,1,-140,-65,-217,-65v-44,0,-68,34,-84,69r-36,-36v22,-42,58,-86,125,-86","w":600},"\u00a1":{"d":"140,-338r15,323r0,206r-68,0r0,-206r15,-323r38,0xm79,-516r84,0r0,106r-84,0r0,-106","w":241},"\u00a2":{"d":"270,-39r0,-437v-205,31,-204,405,0,437xm507,-354r-63,0v-16,-74,-60,-121,-135,-124r0,440v73,-4,131,-65,139,-147r63,0v-16,120,-93,196,-202,200r0,101r-39,0r0,-102v-140,-14,-216,-133,-216,-272v0,-139,76,-258,216,-271r0,-89r39,0r0,87v104,3,184,63,198,177"},"\u00a3":{"d":"396,15v-86,0,-125,-40,-207,-41v-50,0,-71,18,-110,41r-36,-54v90,-62,148,-176,84,-291r-81,0r0,-32r63,0v-30,-49,-55,-102,-55,-161v0,-143,113,-206,228,-206v147,0,235,90,232,237r-63,0v0,-107,-57,-184,-169,-184v-85,0,-165,50,-165,157v0,68,34,99,59,157r160,0r0,32r-142,0v60,110,-4,221,-86,279r2,2v29,-15,62,-30,97,-30v82,-2,116,41,188,41v42,0,87,-25,115,-56r32,48v-44,39,-87,61,-146,61"},"\u2044":{"d":"-166,34r453,-759r47,0r-452,759r-48,0","w":167},"\u00a5":{"d":"110,-304r0,-45r106,0r-210,-365r72,0r199,365r201,-365r69,0r-211,365r109,0r0,45r-131,0v-12,17,-3,56,-6,83r137,0r0,45r-137,0r0,176r-63,0r0,-176r-135,0r0,-45r135,0v-2,-27,6,-66,-6,-83r-129,0"},"\u0192":{"d":"7,168r9,-54v17,4,35,6,52,6v59,-2,82,-64,92,-112r75,-394r-100,0r9,-53r101,0v29,-126,26,-274,183,-275v21,0,41,2,62,5r-12,52v-15,-2,-31,-4,-46,-4v-110,0,-98,134,-124,222r113,0r-9,53r-113,0r-61,323v-23,120,-33,239,-186,236v-15,0,-30,-2,-45,-5"},"\u00a7":{"d":"448,-230v0,-106,-173,-158,-258,-217v-48,20,-82,53,-82,108v0,101,171,158,256,217v48,-20,84,-53,84,-108xm511,-231v0,66,-50,117,-109,140v33,29,50,66,50,109v0,92,-86,143,-169,143v-112,0,-185,-63,-185,-177r63,0v-3,68,46,124,116,124v56,0,112,-26,112,-89v0,-151,-344,-159,-344,-356v0,-66,50,-117,109,-140v-33,-29,-50,-66,-50,-109v0,-92,86,-143,169,-143v112,0,185,63,185,177r-63,0v3,-68,-46,-124,-116,-124v-56,0,-112,26,-112,89v0,151,344,159,344,356"},"\u00a4":{"d":"29,-136r57,-57v-73,-82,-72,-224,-1,-307r-56,-56r38,-38r56,56v80,-71,228,-75,309,-1r55,-55r38,38r-54,54v73,82,74,230,0,312r54,54r-38,38r-55,-55v-80,73,-229,72,-309,-1r-56,56xm94,-346v0,107,83,190,185,190v102,0,185,-83,185,-190v0,-107,-83,-190,-185,-190v-102,0,-185,83,-185,190"},"'":{"d":"108,-471r0,-243r63,0r0,243r-63,0","w":278},"\u201c":{"d":"302,-471r-84,0v-3,-115,-6,-213,89,-243r0,43v-34,12,-49,61,-47,94r42,0r0,106xm148,-471r-84,0v-3,-115,-6,-213,89,-243r0,43v-34,12,-49,61,-47,94r42,0r0,106","w":370},"\u00ab":{"d":"354,-119r-133,-125r0,-62r133,-125r0,67r-94,89r94,89r0,67xm193,-119r-133,-125r0,-62r133,-125r0,67r-94,89r94,89r0,67","w":426},"\u2039":{"d":"186,-119r-133,-125r0,-62r133,-125r0,67r-94,89r94,89r0,67","w":259},"\u203a":{"d":"73,-119r0,-67r94,-89r-94,-89r0,-67r133,125r0,62","w":259},"\ufb01":{"d":"320,0r0,-516r63,0r0,516r-63,0xm94,0r0,-463r-88,0r0,-53r88,0v-4,-112,5,-199,125,-198v18,0,33,1,53,4r0,54v-17,-3,-31,-5,-46,-5v-87,-1,-65,72,-69,145r102,0r0,53r-102,0r0,463r-63,0xm320,-613r0,-101r63,0r0,101r-63,0","w":444},"\ufb02":{"d":"94,0r0,-463r-88,0r0,-53r88,0v-4,-112,5,-199,125,-198v18,0,33,1,53,4r0,54v-17,-3,-31,-5,-46,-5v-87,-1,-65,72,-69,145r102,0r0,53r-102,0r0,463r-63,0xm320,0r0,-714r63,0r0,714r-63,0","w":444},"\u2013":{"d":"500,-246r-500,0r0,-58r500,0r0,58","w":500},"\u2020":{"d":"246,-440r-198,0r0,-53r198,0r0,-221r63,0r0,221r199,0r0,53r-199,0r0,591r-63,0r0,-591"},"\u2021":{"d":"246,-47r-198,0r0,-53r198,0r0,-363r-198,0r0,-53r198,0r0,-198r63,0r0,198r199,0r0,53r-199,0r0,363r199,0r0,53r-199,0r0,198r-63,0r0,-198"},"\u00b7":{"d":"139,-375v32,0,59,28,59,60v0,31,-28,58,-59,58v-32,0,-59,-28,-59,-60v0,-30,29,-58,59,-58","w":278},"\u00b6":{"d":"273,177r0,-505v-117,0,-207,-87,-207,-190v0,-126,83,-196,223,-196r230,0r0,891r-63,0r0,-838r-120,0r0,838r-63,0","w":600},"\u2022":{"d":"72,-357v0,-99,79,-178,178,-178v99,0,179,79,179,178v0,99,-80,179,-179,179v-99,0,-178,-80,-178,-179","w":500},"\u201a":{"d":"99,-106r84,0v3,115,6,213,-89,243r0,-43v34,-12,49,-61,47,-94r-42,0r0,-106","w":278},"\u201e":{"d":"222,-106r84,0v3,115,6,213,-89,243r0,-43v34,-12,49,-61,47,-94r-42,0r0,-106xm68,-106r84,0v3,115,6,213,-89,243r0,-43v34,-12,49,-61,47,-94r-42,0r0,-106","w":370},"\u201d":{"d":"222,-714r84,0v3,115,6,213,-89,243r0,-43v34,-12,49,-61,47,-94r-42,0r0,-106xm68,-714r84,0v3,115,6,213,-89,243r0,-43v34,-12,49,-61,47,-94r-42,0r0,-106","w":370},"\u00bb":{"d":"233,-119r0,-67r94,-89r-94,-89r0,-67r133,125r0,62xm72,-119r0,-67r94,-89r-94,-89r0,-67r133,125r0,62","w":426},"\u2026":{"d":"209,0r-84,0r0,-106r84,0r0,106xm542,0r-84,0r0,-106r84,0r0,106xm875,0r-84,0r0,-106r84,0r0,106","w":1000},"\u2030":{"d":"547,-323v107,0,149,72,149,169v0,97,-42,169,-149,169v-107,0,-149,-72,-149,-169v0,-97,42,-169,149,-169xm547,-278v-80,0,-96,65,-96,124v0,59,16,124,96,124v80,0,96,-65,96,-124v0,-59,-16,-124,-96,-124xm901,-323v107,0,149,72,149,169v0,97,-42,169,-149,169v-107,0,-149,-72,-149,-169v0,-97,42,-169,149,-169xm901,-278v-80,0,-96,65,-96,124v0,59,16,124,96,124v80,0,96,-65,96,-124v0,-59,-16,-124,-96,-124xm214,-706v107,0,149,72,149,169v0,97,-42,169,-149,169v-107,0,-149,-72,-149,-169v0,-97,42,-169,149,-169xm214,-661v-80,0,-96,65,-96,124v0,59,16,124,96,124v80,0,96,-65,96,-124v0,-59,-16,-124,-96,-124xm129,34r453,-759r47,0r-452,759r-48,0","w":1111},"\u00bf":{"d":"421,-29r63,0v-1,142,-82,235,-227,235v-111,0,-203,-69,-203,-185v0,-74,37,-121,87,-170v86,-84,90,-73,93,-195r63,0v3,123,-31,155,-115,233v-37,35,-65,77,-65,129v0,80,65,135,143,135v109,0,163,-79,161,-182xm307,-516r0,106r-84,0r0,-106r84,0","w":537},"`":{"d":"101,-588r-132,-141r78,0r105,141r-51,0","w":185},"\u00b4":{"d":"216,-729r-132,141r-51,0r105,-141r78,0","w":185},"\u02c6":{"d":"127,-729r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":185},"\u02dc":{"d":"24,-704v52,0,93,44,135,44v31,0,44,-22,52,-48r38,0v-7,46,-35,95,-87,95v-49,0,-96,-46,-135,-46v-30,0,-53,18,-53,51r-39,0v6,-47,36,-96,89,-96","w":185},"\u00af":{"d":"257,-634r-329,0r0,-45r329,0r0,45","w":185},"\u02d8":{"d":"-51,-722r39,0v8,111,198,107,209,0r39,0v-10,78,-66,127,-145,127v-81,0,-136,-46,-142,-127","w":185},"\u02d9":{"d":"127,-605r-68,0r0,-101r68,0r0,101","w":185},"\u00a8":{"d":"215,-605r-68,0r0,-101r68,0r0,101xm38,-605r-68,0r0,-101r68,0r0,101","w":185},"\u02da":{"d":"-14,-677v0,-59,48,-107,107,-107v59,0,107,48,107,107v0,59,-48,107,-107,107v-59,0,-107,-48,-107,-107xm25,-677v0,38,30,68,68,68v38,0,68,-30,68,-68v0,-38,-30,-68,-68,-68v-38,0,-68,30,-68,68","w":185},"\u00b8":{"d":"91,0r35,0r-44,58v47,-9,116,0,116,62v0,97,-130,102,-204,65r14,-32v36,14,132,33,132,-29v0,-44,-65,-44,-94,-30r-16,-15","w":185},"\u02dd":{"d":"18,-588r-51,0r101,-141r76,0xm174,-588r-51,0r101,-141r76,0","w":185},"\u02db":{"d":"151,-2r38,0v-73,58,-89,93,-89,127v0,32,21,47,44,47v25,0,45,-23,55,-41r29,13v-29,49,-60,67,-95,67v-71,0,-96,-34,-96,-82v0,-18,12,-70,114,-131","w":185},"\u02c7":{"d":"58,-588r-114,-141r65,0r86,102r88,-102r58,0r-114,141r-69,0","w":185},"\u2014":{"d":"870,-246r-740,0r0,-58r740,0r0,58","w":1000},"\u00c6":{"d":"513,-340r0,282r371,0r0,58r-439,0r0,-226r-259,0r-116,226r-77,0r374,-714r513,0r0,58r-367,0r0,258r344,0r0,58r-344,0xm216,-284r229,0r0,-372r-40,0","w":907},"\u00aa":{"d":"228,-502v-1,-15,4,-36,-2,-47v-4,9,-23,12,-34,14v-81,13,-150,13,-150,69v0,36,38,59,69,59v62,0,119,-36,117,-95xm54,-597r-47,0v4,-77,59,-109,140,-109v65,0,128,17,128,100r0,172v0,20,20,28,38,20r0,34v-43,10,-83,-5,-75,-53r-2,0v-42,90,-242,94,-241,-31v0,-93,92,-96,180,-105v34,-4,53,-8,53,-31v0,-54,-40,-67,-88,-67v-46,0,-85,22,-86,70","w":311},"\u0141":{"d":"72,-306r0,-408r68,0r0,361r243,-168r0,56r-243,167r0,240r400,0r0,58r-468,0r0,-251r-82,57r0,-56","w":537,"k":{"T":92,"V":92,"W":55,"y":37,"\u00fd":37,"\u00ff":37,"Y":111,"\u00dd":111,"\u0178":111,"\u2019":98}},"\u00d8":{"d":"580,-565r-397,443v44,49,106,79,188,79v270,0,330,-332,209,-522xm160,-150r398,-443v-43,-47,-105,-78,-187,-78v-271,0,-330,330,-211,521xm672,-719r26,23r-73,81v168,221,76,630,-254,630v-99,0,-176,-34,-231,-89r-76,86r-27,-25r79,-88v-168,-222,-75,-628,255,-628v98,0,175,34,230,88","w":741},"\u0152":{"d":"569,-509v16,-129,-105,-162,-194,-162v-174,0,-270,145,-270,314v0,169,96,314,270,314v73,0,129,-20,176,-79v13,-16,18,-35,18,-55r0,-332xm637,-656r0,258r368,0r0,58r-368,0r0,282r409,0r0,58r-477,0r0,-70v-47,56,-125,85,-194,85v-213,0,-338,-173,-338,-372v0,-199,125,-372,338,-372v75,0,148,22,194,74r0,-59r474,0r0,58r-406,0","w":1074},"\u00ba":{"d":"162,-368v-103,0,-159,-75,-159,-169v0,-94,56,-169,159,-169v113,0,169,75,169,169v0,94,-56,169,-169,169xm167,-407v155,-1,156,-259,0,-260v-155,1,-156,259,0,260","w":334},"\u00e6":{"d":"453,-294r325,0v0,-95,-63,-184,-163,-184v-105,0,-164,87,-162,184xm390,-200v-1,-26,4,-60,-2,-82v-8,15,-36,20,-53,23v-107,19,-240,18,-240,119v0,63,56,102,115,102v96,0,182,-61,180,-162xm841,-241r-388,0v-7,110,47,203,168,203v85,0,135,-48,153,-129r63,0v-26,115,-106,182,-225,182v-93,0,-156,-48,-191,-130v-15,86,-126,130,-216,130v-95,0,-173,-47,-173,-151v0,-145,141,-150,277,-166v52,-6,81,-13,81,-70v0,-85,-61,-106,-135,-106v-78,0,-136,36,-138,120r-63,0v6,-121,91,-173,209,-173v70,0,160,19,172,107r2,0v28,-72,106,-107,181,-107v170,0,223,140,223,290","w":870},"\u0131":{"d":"124,0r-63,0r0,-516r63,0r0,516","w":185},"\u0142":{"d":"61,-395r0,-319r63,0r0,267r67,-55r0,55r-67,55r0,392r-63,0r0,-340r-67,55r0,-55","w":185},"\u00f8":{"d":"133,-123r273,-295v-29,-36,-72,-60,-128,-60v-171,1,-225,222,-145,355xm424,-392r-273,295v28,35,71,59,127,59v171,0,224,-221,146,-354xm500,-519r22,20r-54,59v116,166,41,455,-190,455v-71,0,-128,-25,-168,-68r-59,64r-22,-20r61,-67v-119,-162,-43,-455,188,-455v72,0,130,26,170,68"},"\u0153":{"d":"265,-478v-131,0,-166,124,-166,232v0,103,46,208,165,208v128,0,152,-119,152,-224v0,-104,-27,-216,-151,-216xm799,-166r63,0v-28,115,-110,181,-228,181v-86,0,-160,-50,-186,-131v-25,88,-96,131,-185,131v-162,0,-227,-128,-227,-273v0,-143,73,-273,230,-273v90,0,155,45,186,127v28,-75,99,-127,190,-127v152,0,221,101,221,290r-384,0v0,101,49,203,161,203v87,0,136,-48,159,-128xm479,-294r321,0v0,-97,-56,-184,-160,-184v-106,0,-161,86,-161,184","w":889},"\u00df":{"d":"61,0r0,-535v0,-132,80,-194,199,-194v107,0,196,62,196,176v0,74,-45,132,-113,152v97,8,149,94,149,185v0,165,-113,237,-272,222r0,-55v113,18,209,-23,209,-156v0,-139,-86,-163,-209,-163r0,-53v88,0,173,-27,173,-130v0,-74,-61,-125,-132,-125v-99,0,-137,52,-137,146r0,530r-63,0","w":537},"\u00b9":{"d":"35,-584r0,-39v71,-2,115,-5,128,-74r40,0r0,423r-47,0r0,-310r-121,0","w":333},"\u00ac":{"d":"499,-111r0,-214r-450,0r0,-53r503,0r0,267r-53,0","w":600},"\u00b5":{"d":"478,-516r0,516r-58,0v-2,-30,4,-67,-2,-93v-46,105,-195,142,-295,73r0,211r-64,0r0,-707r63,0r0,336v3,93,38,142,138,142v108,0,155,-102,155,-207r0,-271r63,0","w":537},"\u2122":{"d":"269,-302r-53,0r0,-367r-134,0r0,-45r321,0r0,45r-134,0r0,367xm529,-302r-53,0r0,-412r85,0r133,334r129,-334r85,0r0,412r-53,0r0,-364r-2,0r-146,364r-30,0r-146,-364r-2,0r0,364","w":990},"\u00d0":{"d":"140,-656r0,263r236,0r0,45r-236,0r0,290r145,0v205,1,294,-86,294,-299v0,-213,-89,-300,-294,-299r-145,0xm72,-393r0,-321r247,0v215,5,328,123,328,357v0,234,-113,357,-328,357r-247,0r0,-348r-72,0r0,-45r72,0","w":685},"\u00bd":{"d":"133,34r453,-759r47,0r-452,759r-48,0xm48,-584r0,-39v71,-2,115,-5,128,-74r40,0r0,423r-47,0r0,-310r-121,0xm536,-279r-47,0v-2,-91,46,-153,150,-153v84,0,146,40,146,125v0,70,-56,113,-115,149v-44,27,-119,58,-136,119r248,0r0,39r-302,0v3,-129,142,-160,219,-231v25,-24,39,-46,39,-80v0,-51,-48,-82,-103,-82v-71,0,-100,55,-99,114","w":834},"\u00b1":{"d":"274,-323r0,-180r53,0r0,180r225,0r0,53r-225,0r0,180r-53,0r0,-180r-224,0r0,-53r224,0xm49,0r0,-53r503,0r0,53r-503,0","w":600},"\u00de":{"d":"72,0r0,-714r68,0r0,117r249,0v128,0,212,75,212,204v0,129,-84,204,-212,204r-249,0r0,189r-68,0xm140,-539r0,292r234,0v94,0,159,-48,159,-146v0,-98,-65,-146,-159,-146r-234,0","w":630},"\u00bc":{"d":"642,0r0,-100r-210,0r0,-39r213,-284r44,0r0,284r68,0r0,39r-68,0r0,100r-47,0xm640,-355r-162,216r164,0r0,-216r-2,0xm133,34r453,-759r47,0r-452,759r-48,0xm48,-584r0,-39v71,-2,115,-5,128,-74r40,0r0,423r-47,0r0,-310r-121,0","w":834},"\u00f7":{"d":"552,-225r-503,0r0,-53r503,0r0,53xm244,-453v0,-31,26,-56,56,-56v30,0,56,26,56,56v0,28,-26,56,-55,56v-31,0,-57,-26,-57,-56xm244,-50v0,-31,26,-56,56,-56v30,0,56,26,56,56v0,28,-26,56,-55,56v-31,0,-57,-26,-57,-56","w":600},"\u00a6":{"d":"85,89r0,-250r53,0r0,250r-53,0xm85,-411r0,-250r53,0r0,250r-53,0","w":222},"\u00b0":{"d":"56,-562v0,-80,64,-144,144,-144v80,0,144,64,144,144v0,80,-64,144,-144,144v-80,0,-144,-64,-144,-144xm95,-562v0,58,47,105,105,105v58,0,105,-47,105,-105v0,-58,-47,-105,-105,-105v-58,0,-105,47,-105,105","w":400},"\u00fe":{"d":"473,-258v0,-107,-49,-220,-169,-220v-134,0,-181,113,-181,220v0,107,47,220,181,220v120,0,169,-113,169,-220xm60,191r0,-905r63,0r0,296r2,0v27,-74,102,-113,179,-113v157,0,232,127,232,273v0,146,-75,273,-232,273v-79,0,-150,-43,-181,-113r0,289r-63,0","w":574},"\u00be":{"d":"642,0r0,-100r-210,0r0,-39r213,-284r44,0r0,284r68,0r0,39r-68,0r0,100r-47,0xm640,-355r-162,216r164,0r0,-216r-2,0xm135,-478r0,-39v65,5,128,-11,128,-74v0,-52,-46,-76,-98,-76v-65,0,-101,44,-100,103r-47,0v1,-83,54,-142,147,-142v75,0,145,33,145,111v0,48,-32,79,-77,95v59,8,94,48,94,103v0,86,-73,132,-161,132v-98,0,-165,-53,-158,-147r47,0v-3,64,40,108,110,108v57,0,115,-33,115,-90v-1,-66,-68,-90,-145,-84xm173,34r453,-759r47,0r-452,759r-48,0","w":834},"\u00b2":{"d":"71,-553r-47,0v-2,-91,46,-153,150,-153v84,0,146,40,146,125v0,70,-56,113,-115,149v-44,27,-119,58,-136,119r248,0r0,39r-302,0v3,-129,142,-160,219,-231v25,-24,39,-46,39,-80v0,-51,-48,-82,-103,-82v-71,0,-100,55,-99,114","w":333},"\u00ae":{"d":"400,-729v210,0,372,163,372,372v0,209,-162,372,-372,372v-210,0,-372,-163,-372,-372v0,-209,162,-372,372,-372xm400,-676v-180,0,-314,141,-314,319v0,178,134,319,314,319v180,0,314,-141,314,-319v0,-178,-134,-319,-314,-319xm318,-333r0,191r-53,0r0,-430r165,0v97,0,140,42,140,119v0,76,-50,110,-108,120r128,191r-62,0r-121,-191r-89,0xm318,-378v89,-4,199,22,199,-75v0,-94,-110,-71,-199,-74r0,149","w":800},"\u2212":{"d":"552,-278r0,53r-503,0r0,-53r503,0","w":600},"\u00f0":{"d":"276,-453v-129,0,-179,95,-179,205v0,109,52,210,177,210v118,0,179,-88,179,-212v0,-100,-50,-203,-177,-203xm135,-596r100,-56v-30,-20,-61,-39,-93,-55r36,-35v35,18,71,39,104,64r114,-64r33,32r-109,61v111,91,196,218,196,391v0,150,-78,273,-245,273v-161,0,-237,-115,-237,-264v0,-139,85,-257,237,-257v51,0,103,12,135,40v-33,-62,-79,-113,-133,-157r-105,59"},"\u00d7":{"d":"262,-251r-188,-189r37,-37r189,189r189,-189r37,37r-189,189r189,189r-37,37r-189,-188r-189,188r-37,-37","w":600},"\u00b3":{"d":"135,-478r0,-39v65,5,128,-11,128,-74v0,-52,-46,-76,-98,-76v-65,0,-101,44,-100,103r-47,0v1,-83,54,-142,147,-142v75,0,145,33,145,111v0,48,-32,79,-77,95v59,8,94,48,94,103v0,86,-73,132,-161,132v-98,0,-165,-53,-158,-147r47,0v-3,64,40,108,110,108v57,0,115,-33,115,-90v-1,-66,-68,-90,-145,-84","w":333},"\u00a9":{"d":"772,-357v0,209,-162,372,-372,372v-210,0,-372,-163,-372,-372v0,-209,162,-372,372,-372v210,0,372,163,372,372xm714,-357v0,-178,-134,-319,-314,-319v-180,0,-314,141,-314,319v0,178,134,319,314,319v180,0,314,-141,314,-319xm594,-435r-51,0v-12,-59,-60,-106,-133,-106v-108,0,-165,80,-165,184v0,104,57,184,165,184v73,0,121,-46,133,-106r51,0v-13,97,-91,151,-185,151v-136,0,-217,-97,-217,-229v0,-132,81,-229,217,-229v94,0,172,54,185,151","w":800},"\u00c1":{"d":"-7,0r288,-714r76,0r280,714r-73,0r-87,-222r-325,0r-86,222r-73,0xm316,-646r-143,366r281,0xm439,-912r-132,141r-51,0r105,-141r78,0","w":630},"\u00c2":{"d":"-7,0r288,-714r76,0r280,714r-73,0r-87,-222r-325,0r-86,222r-73,0xm316,-646r-143,366r281,0xm350,-912r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":630},"\u00c4":{"d":"-7,0r288,-714r76,0r280,714r-73,0r-87,-222r-325,0r-86,222r-73,0xm316,-646r-143,366r281,0xm438,-788r-68,0r0,-101r68,0r0,101xm261,-788r-68,0r0,-101r68,0r0,101","w":630},"\u00c0":{"d":"-7,0r288,-714r76,0r280,714r-73,0r-87,-222r-325,0r-86,222r-73,0xm316,-646r-143,366r281,0xm324,-771r-132,-141r78,0r105,141r-51,0","w":630},"\u00c5":{"d":"-7,0r288,-714r76,0r280,714r-73,0r-87,-222r-325,0r-86,222r-73,0xm316,-646r-143,366r281,0xm209,-860v0,-59,48,-107,107,-107v59,0,107,48,107,107v0,59,-48,107,-107,107v-59,0,-107,-48,-107,-107xm248,-860v0,38,30,68,68,68v38,0,68,-30,68,-68v0,-38,-30,-68,-68,-68v-38,0,-68,30,-68,68","w":630},"\u00c3":{"d":"-7,0r288,-714r76,0r280,714r-73,0r-87,-222r-325,0r-86,222r-73,0xm316,-646r-143,366r281,0xm247,-887v52,0,93,44,135,44v31,0,44,-22,52,-48r38,0v-7,46,-35,95,-87,95v-49,0,-96,-46,-135,-46v-30,0,-53,18,-53,51r-39,0v6,-47,36,-96,89,-96","w":630},"\u00c7":{"d":"604,-272r68,0v-19,175,-130,287,-298,287r-33,43v47,-9,116,0,116,62v0,97,-130,102,-204,65r14,-32v36,14,132,33,132,-29v0,-44,-65,-44,-94,-30r-16,-15r51,-66v-202,-17,-302,-185,-302,-370v0,-195,112,-372,337,-372v135,0,269,81,287,231r-68,0v-24,-110,-115,-173,-219,-173v-189,0,-269,158,-269,314v0,156,80,314,269,314v132,0,216,-102,229,-229","w":704},"\u00c9":{"d":"72,0r0,-714r493,0r0,58r-425,0r0,258r398,0r0,58r-398,0r0,282r430,0r0,58r-498,0xm420,-912r-132,141r-51,0r105,-141r78,0","w":593},"\u00ca":{"d":"72,0r0,-714r493,0r0,58r-425,0r0,258r398,0r0,58r-398,0r0,282r430,0r0,58r-498,0xm331,-912r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":593},"\u00cb":{"d":"72,0r0,-714r493,0r0,58r-425,0r0,258r398,0r0,58r-398,0r0,282r430,0r0,58r-498,0xm419,-788r-68,0r0,-101r68,0r0,101xm242,-788r-68,0r0,-101r68,0r0,101","w":593},"\u00c8":{"d":"72,0r0,-714r493,0r0,58r-425,0r0,258r398,0r0,58r-398,0r0,282r430,0r0,58r-498,0xm305,-771r-132,-141r78,0r105,141r-51,0","w":593},"\u00cd":{"d":"77,0r0,-714r68,0r0,714r-68,0xm235,-912r-132,141r-51,0r105,-141r78,0","w":222},"\u00ce":{"d":"77,0r0,-714r68,0r0,714r-68,0xm146,-912r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":222},"\u00cf":{"d":"77,0r0,-714r68,0r0,714r-68,0xm234,-788r-68,0r0,-101r68,0r0,101xm57,-788r-68,0r0,-101r68,0r0,101","w":222},"\u00cc":{"d":"77,0r0,-714r68,0r0,714r-68,0xm120,-771r-132,-141r78,0r105,141r-51,0","w":222},"\u00d1":{"d":"71,0r0,-714r76,0r416,604r2,0r0,-604r68,0r0,714r-76,0r-416,-604r-2,0r0,604r-68,0xm284,-887v52,0,93,44,135,44v31,0,44,-22,52,-48r38,0v-7,46,-35,95,-87,95v-49,0,-96,-46,-135,-46v-30,0,-53,18,-53,51r-39,0v6,-47,36,-96,89,-96","w":704},"\u00d3":{"d":"34,-357v0,-195,112,-372,337,-372v224,0,336,177,336,372v0,195,-112,372,-336,372v-225,0,-337,-177,-337,-372xm102,-357v0,156,80,314,269,314v188,0,268,-158,268,-314v0,-156,-80,-314,-268,-314v-189,0,-269,158,-269,314xm494,-912r-132,141r-51,0r105,-141r78,0","w":741},"\u00d4":{"d":"34,-357v0,-195,112,-372,337,-372v224,0,336,177,336,372v0,195,-112,372,-336,372v-225,0,-337,-177,-337,-372xm102,-357v0,156,80,314,269,314v188,0,268,-158,268,-314v0,-156,-80,-314,-268,-314v-189,0,-269,158,-269,314xm405,-912r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":741},"\u00d6":{"d":"34,-357v0,-195,112,-372,337,-372v224,0,336,177,336,372v0,195,-112,372,-336,372v-225,0,-337,-177,-337,-372xm102,-357v0,156,80,314,269,314v188,0,268,-158,268,-314v0,-156,-80,-314,-268,-314v-189,0,-269,158,-269,314xm493,-788r-68,0r0,-101r68,0r0,101xm316,-788r-68,0r0,-101r68,0r0,101","w":741},"\u00d2":{"d":"34,-357v0,-195,112,-372,337,-372v224,0,336,177,336,372v0,195,-112,372,-336,372v-225,0,-337,-177,-337,-372xm102,-357v0,156,80,314,269,314v188,0,268,-158,268,-314v0,-156,-80,-314,-268,-314v-189,0,-269,158,-269,314xm379,-771r-132,-141r78,0r105,141r-51,0","w":741},"\u00d5":{"d":"34,-357v0,-195,112,-372,337,-372v224,0,336,177,336,372v0,195,-112,372,-336,372v-225,0,-337,-177,-337,-372xm102,-357v0,156,80,314,269,314v188,0,268,-158,268,-314v0,-156,-80,-314,-268,-314v-189,0,-269,158,-269,314xm302,-887v52,0,93,44,135,44v31,0,44,-22,52,-48r38,0v-7,46,-35,95,-87,95v-49,0,-96,-46,-135,-46v-30,0,-53,18,-53,51r-39,0v6,-47,36,-96,89,-96","w":741},"\u0160":{"d":"36,-235r68,0v-3,147,103,192,233,192v75,0,189,-41,189,-145v0,-81,-82,-110,-147,-129v-137,-39,-320,-33,-320,-211v0,-70,45,-201,246,-201v141,0,265,76,264,222r-68,0v-4,-109,-94,-164,-195,-164v-93,0,-179,36,-179,142v0,67,51,93,108,109v149,42,358,46,359,231v0,49,-20,204,-273,204v-169,0,-293,-76,-285,-250xm281,-771r-114,-141r65,0r86,102r88,-102r58,0r-114,141r-69,0","w":630},"\u00da":{"d":"65,-257r0,-457r68,0r0,442v-1,166,78,229,209,229v132,0,210,-63,210,-229r0,-442r68,0r0,457v0,147,-79,272,-278,272v-198,0,-277,-125,-277,-272xm466,-912r-132,141r-51,0r105,-141r78,0","w":685},"\u00db":{"d":"65,-257r0,-457r68,0r0,442v-1,166,78,229,209,229v132,0,210,-63,210,-229r0,-442r68,0r0,457v0,147,-79,272,-278,272v-198,0,-277,-125,-277,-272xm377,-912r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":685},"\u00dc":{"d":"65,-257r0,-457r68,0r0,442v-1,166,78,229,209,229v132,0,210,-63,210,-229r0,-442r68,0r0,457v0,147,-79,272,-278,272v-198,0,-277,-125,-277,-272xm465,-788r-68,0r0,-101r68,0r0,101xm288,-788r-68,0r0,-101r68,0r0,101","w":685},"\u00d9":{"d":"65,-257r0,-457r68,0r0,442v-1,166,78,229,209,229v132,0,210,-63,210,-229r0,-442r68,0r0,457v0,147,-79,272,-278,272v-198,0,-277,-125,-277,-272xm351,-771r-132,-141r78,0r105,141r-51,0","w":685},"\u00dd":{"d":"271,0r0,-294r-281,-420r81,0r235,362r234,-362r81,0r-282,420r0,294r-68,0xm429,-912r-132,141r-51,0r105,-141r78,0","w":611,"k":{"v":55,"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":123,".":99,"e":92,"\u00e9":92,"\u00ea":92,"\u00eb":92,"\u00e8":92,"o":92,"\u00f8":92,"\u0153":92,"\u00f3":92,"\u00f4":92,"\u00f6":92,"\u00f2":92,"\u00f5":92,"q":92,"-":111,"a":92,"\u00e6":92,"\u00e1":92,"\u00e2":92,"\u00e4":92,"\u00e0":92,"\u00e5":92,"\u00e3":92,"i":7,"\u0131":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"u":74,"\u00fa":74,"\u00fb":74,"\u00fc":74,"\u00f9":74,":":92,";":92,"p":74}},"\u0178":{"d":"271,0r0,-294r-281,-420r81,0r235,362r234,-362r81,0r-282,420r0,294r-68,0xm428,-788r-68,0r0,-101r68,0r0,101xm251,-788r-68,0r0,-101r68,0r0,101","w":611,"k":{"v":55,"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":123,".":99,"e":92,"\u00e9":92,"\u00ea":92,"\u00eb":92,"\u00e8":92,"o":92,"\u00f8":92,"\u0153":92,"\u00f3":92,"\u00f4":92,"\u00f6":92,"\u00f2":92,"\u00f5":92,"q":92,"-":111,"a":92,"\u00e6":92,"\u00e1":92,"\u00e2":92,"\u00e4":92,"\u00e0":92,"\u00e5":92,"\u00e3":92,"i":7,"\u0131":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"u":74,"\u00fa":74,"\u00fb":74,"\u00fc":74,"\u00f9":74,":":92,";":92,"p":74}},"\u017d":{"d":"37,-656r0,-58r514,0r0,60r-470,596r480,0r0,58r-556,0r0,-60r470,-596r-438,0xm253,-771r-114,-141r65,0r86,102r88,-102r58,0r-114,141r-69,0","w":574},"\u00e1":{"d":"390,-200v-1,-26,4,-60,-2,-82v-8,15,-36,20,-53,23v-107,19,-240,18,-240,119v0,63,56,102,115,102v96,0,182,-61,180,-162xm117,-358r-63,0v6,-121,91,-173,209,-173v91,0,190,28,190,166r0,274v-3,32,29,45,57,34r0,53v-14,3,-24,4,-41,4v-67,2,-70,-41,-76,-90v-44,67,-89,105,-188,105v-95,0,-173,-47,-173,-151v0,-145,141,-150,277,-166v52,-6,81,-13,81,-70v0,-85,-61,-106,-135,-106v-78,0,-136,36,-138,120xm383,-729r-132,141r-51,0r105,-141r78,0","w":519},"\u00e2":{"d":"390,-200v-1,-26,4,-60,-2,-82v-8,15,-36,20,-53,23v-107,19,-240,18,-240,119v0,63,56,102,115,102v96,0,182,-61,180,-162xm117,-358r-63,0v6,-121,91,-173,209,-173v91,0,190,28,190,166r0,274v-3,32,29,45,57,34r0,53v-14,3,-24,4,-41,4v-67,2,-70,-41,-76,-90v-44,67,-89,105,-188,105v-95,0,-173,-47,-173,-151v0,-145,141,-150,277,-166v52,-6,81,-13,81,-70v0,-85,-61,-106,-135,-106v-78,0,-136,36,-138,120xm294,-729r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":519},"\u00e4":{"d":"390,-200v-1,-26,4,-60,-2,-82v-8,15,-36,20,-53,23v-107,19,-240,18,-240,119v0,63,56,102,115,102v96,0,182,-61,180,-162xm117,-358r-63,0v6,-121,91,-173,209,-173v91,0,190,28,190,166r0,274v-3,32,29,45,57,34r0,53v-14,3,-24,4,-41,4v-67,2,-70,-41,-76,-90v-44,67,-89,105,-188,105v-95,0,-173,-47,-173,-151v0,-145,141,-150,277,-166v52,-6,81,-13,81,-70v0,-85,-61,-106,-135,-106v-78,0,-136,36,-138,120xm382,-605r-68,0r0,-101r68,0r0,101xm205,-605r-68,0r0,-101r68,0r0,101","w":519},"\u00e0":{"d":"390,-200v-1,-26,4,-60,-2,-82v-8,15,-36,20,-53,23v-107,19,-240,18,-240,119v0,63,56,102,115,102v96,0,182,-61,180,-162xm117,-358r-63,0v6,-121,91,-173,209,-173v91,0,190,28,190,166r0,274v-3,32,29,45,57,34r0,53v-14,3,-24,4,-41,4v-67,2,-70,-41,-76,-90v-44,67,-89,105,-188,105v-95,0,-173,-47,-173,-151v0,-145,141,-150,277,-166v52,-6,81,-13,81,-70v0,-85,-61,-106,-135,-106v-78,0,-136,36,-138,120xm268,-588r-132,-141r78,0r105,141r-51,0","w":519},"\u00e5":{"d":"390,-200v-1,-26,4,-60,-2,-82v-8,15,-36,20,-53,23v-107,19,-240,18,-240,119v0,63,56,102,115,102v96,0,182,-61,180,-162xm117,-358r-63,0v6,-121,91,-173,209,-173v91,0,190,28,190,166r0,274v-3,32,29,45,57,34r0,53v-14,3,-24,4,-41,4v-67,2,-70,-41,-76,-90v-44,67,-89,105,-188,105v-95,0,-173,-47,-173,-151v0,-145,141,-150,277,-166v52,-6,81,-13,81,-70v0,-85,-61,-106,-135,-106v-78,0,-136,36,-138,120xm153,-677v0,-59,48,-107,107,-107v59,0,107,48,107,107v0,59,-48,107,-107,107v-59,0,-107,-48,-107,-107xm192,-677v0,38,30,68,68,68v38,0,68,-30,68,-68v0,-38,-30,-68,-68,-68v-38,0,-68,30,-68,68","w":519},"\u00e3":{"d":"390,-200v-1,-26,4,-60,-2,-82v-8,15,-36,20,-53,23v-107,19,-240,18,-240,119v0,63,56,102,115,102v96,0,182,-61,180,-162xm117,-358r-63,0v6,-121,91,-173,209,-173v91,0,190,28,190,166r0,274v-3,32,29,45,57,34r0,53v-14,3,-24,4,-41,4v-67,2,-70,-41,-76,-90v-44,67,-89,105,-188,105v-95,0,-173,-47,-173,-151v0,-145,141,-150,277,-166v52,-6,81,-13,81,-70v0,-85,-61,-106,-135,-106v-78,0,-136,36,-138,120xm191,-704v52,0,93,44,135,44v31,0,44,-22,52,-48r38,0v-7,46,-35,95,-87,95v-49,0,-96,-46,-135,-46v-30,0,-53,18,-53,51r-39,0v6,-47,36,-96,89,-96","w":519},"\u00e7":{"d":"428,-185r63,0v-17,123,-96,198,-209,200r-33,43v47,-9,116,0,116,62v0,97,-130,102,-204,65r14,-32v36,14,132,33,132,-29v0,-44,-65,-44,-94,-30r-16,-15r51,-66v-139,-15,-214,-133,-214,-271v0,-148,86,-273,244,-273v110,0,195,59,209,177r-63,0v-17,-77,-64,-124,-146,-124v-242,0,-241,440,0,440v78,0,142,-61,150,-147","w":519},"\u00e9":{"d":"494,-241r-397,0v1,92,49,203,170,203v92,0,142,-54,162,-132r63,0v-27,117,-95,185,-225,185v-164,0,-233,-126,-233,-273v0,-136,69,-273,233,-273v166,0,232,145,227,290xm97,-294r334,0v-3,-95,-62,-184,-164,-184v-103,0,-160,90,-170,184xm383,-729r-132,141r-51,0r105,-141r78,0","w":519},"\u00ea":{"d":"494,-241r-397,0v1,92,49,203,170,203v92,0,142,-54,162,-132r63,0v-27,117,-95,185,-225,185v-164,0,-233,-126,-233,-273v0,-136,69,-273,233,-273v166,0,232,145,227,290xm97,-294r334,0v-3,-95,-62,-184,-164,-184v-103,0,-160,90,-170,184xm294,-729r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":519},"\u00eb":{"d":"494,-241r-397,0v1,92,49,203,170,203v92,0,142,-54,162,-132r63,0v-27,117,-95,185,-225,185v-164,0,-233,-126,-233,-273v0,-136,69,-273,233,-273v166,0,232,145,227,290xm97,-294r334,0v-3,-95,-62,-184,-164,-184v-103,0,-160,90,-170,184xm382,-605r-68,0r0,-101r68,0r0,101xm205,-605r-68,0r0,-101r68,0r0,101","w":519},"\u00e8":{"d":"494,-241r-397,0v1,92,49,203,170,203v92,0,142,-54,162,-132r63,0v-27,117,-95,185,-225,185v-164,0,-233,-126,-233,-273v0,-136,69,-273,233,-273v166,0,232,145,227,290xm97,-294r334,0v-3,-95,-62,-184,-164,-184v-103,0,-160,90,-170,184xm268,-588r-132,-141r78,0r105,141r-51,0","w":519},"\u00ed":{"d":"124,0r-63,0r0,-516r63,0r0,516xm216,-729r-132,141r-51,0r105,-141r78,0","w":185},"\u00ee":{"d":"124,0r-63,0r0,-516r63,0r0,516xm127,-729r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":185},"\u00ef":{"d":"124,0r-63,0r0,-516r63,0r0,516xm215,-605r-68,0r0,-101r68,0r0,101xm38,-605r-68,0r0,-101r68,0r0,101","w":185},"\u00ec":{"d":"124,0r-63,0r0,-516r63,0r0,516xm101,-588r-132,-141r78,0r105,141r-51,0","w":185},"\u00f1":{"d":"59,0r0,-516r63,0v2,28,-4,65,2,89v23,-62,92,-104,165,-104v145,0,189,76,189,199r0,332r-63,0r0,-322v0,-89,-29,-156,-131,-156v-100,0,-162,76,-162,177r0,301r-63,0xm200,-704v52,0,93,44,135,44v31,0,44,-22,52,-48r38,0v-7,46,-35,95,-87,95v-49,0,-96,-46,-135,-46v-30,0,-53,18,-53,51r-39,0v6,-47,36,-96,89,-96","w":537},"\u00f3":{"d":"278,-531v158,0,244,125,244,273v0,148,-86,273,-244,273v-158,0,-244,-125,-244,-273v0,-148,86,-273,244,-273xm278,-478v-242,0,-241,440,0,440v242,0,241,-440,0,-440xm402,-729r-132,141r-51,0r105,-141r78,0"},"\u00f4":{"d":"278,-531v158,0,244,125,244,273v0,148,-86,273,-244,273v-158,0,-244,-125,-244,-273v0,-148,86,-273,244,-273xm278,-478v-242,0,-241,440,0,440v242,0,241,-440,0,-440xm313,-729r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0"},"\u00f6":{"d":"278,-531v158,0,244,125,244,273v0,148,-86,273,-244,273v-158,0,-244,-125,-244,-273v0,-148,86,-273,244,-273xm278,-478v-242,0,-241,440,0,440v242,0,241,-440,0,-440xm401,-605r-68,0r0,-101r68,0r0,101xm224,-605r-68,0r0,-101r68,0r0,101"},"\u00f2":{"d":"278,-531v158,0,244,125,244,273v0,148,-86,273,-244,273v-158,0,-244,-125,-244,-273v0,-148,86,-273,244,-273xm278,-478v-242,0,-241,440,0,440v242,0,241,-440,0,-440xm287,-588r-132,-141r78,0r105,141r-51,0"},"\u00f5":{"d":"278,-531v158,0,244,125,244,273v0,148,-86,273,-244,273v-158,0,-244,-125,-244,-273v0,-148,86,-273,244,-273xm278,-478v-242,0,-241,440,0,440v242,0,241,-440,0,-440xm210,-704v52,0,93,44,135,44v31,0,44,-22,52,-48r38,0v-7,46,-35,95,-87,95v-49,0,-96,-46,-135,-46v-30,0,-53,18,-53,51r-39,0v6,-47,36,-96,89,-96"},"\u0161":{"d":"432,-365r-63,0v-3,-78,-63,-113,-135,-113v-56,0,-122,22,-122,89v0,87,116,89,191,106v71,16,147,53,147,143v0,112,-111,155,-207,155v-120,0,-202,-56,-212,-182r63,0v5,85,68,129,152,129v59,0,141,-26,141,-98v0,-88,-117,-91,-194,-112v-82,-22,-144,-50,-144,-138v0,-105,103,-145,194,-145v103,0,185,54,189,166xm206,-588r-114,-141r65,0r86,102r88,-102r58,0r-114,141r-69,0","w":481},"\u00fa":{"d":"478,-516r0,516r-58,0v-2,-30,4,-67,-2,-93v-33,69,-101,108,-178,108v-130,0,-181,-76,-181,-196r0,-335r63,0r0,336v3,93,38,142,138,142v108,0,155,-102,155,-207r0,-271r63,0xm392,-729r-132,141r-51,0r105,-141r78,0","w":537},"\u00fb":{"d":"478,-516r0,516r-58,0v-2,-30,4,-67,-2,-93v-33,69,-101,108,-178,108v-130,0,-181,-76,-181,-196r0,-335r63,0r0,336v3,93,38,142,138,142v108,0,155,-102,155,-207r0,-271r63,0xm303,-729r114,141r-65,0r-86,-102r-88,102r-58,0r114,-141r69,0","w":537},"\u00fc":{"d":"478,-516r0,516r-58,0v-2,-30,4,-67,-2,-93v-33,69,-101,108,-178,108v-130,0,-181,-76,-181,-196r0,-335r63,0r0,336v3,93,38,142,138,142v108,0,155,-102,155,-207r0,-271r63,0xm391,-605r-68,0r0,-101r68,0r0,101xm214,-605r-68,0r0,-101r68,0r0,101","w":537},"\u00f9":{"d":"478,-516r0,516r-58,0v-2,-30,4,-67,-2,-93v-33,69,-101,108,-178,108v-130,0,-181,-76,-181,-196r0,-335r63,0r0,336v3,93,38,142,138,142v108,0,155,-102,155,-207r0,-271r63,0xm277,-588r-132,-141r78,0r105,141r-51,0","w":537},"\u00fd":{"d":"208,-2r-206,-514r67,0r170,440r159,-440r63,0r-224,595v-35,105,-85,122,-184,107r0,-53v76,18,113,-13,133,-76xm355,-729r-132,141r-51,0r105,-141r78,0","w":463,"k":{",":92,".":92}},"\u00ff":{"d":"208,-2r-206,-514r67,0r170,440r159,-440r63,0r-224,595v-35,105,-85,122,-184,107r0,-53v76,18,113,-13,133,-76xm354,-605r-68,0r0,-101r68,0r0,101xm177,-605r-68,0r0,-101r68,0r0,101","w":463,"k":{",":92,".":92}},"\u017e":{"d":"432,-471r-341,418r355,0r0,53r-431,0r0,-51r337,-412r-314,0r0,-53r394,0r0,45xm197,-588r-114,-141r65,0r86,102r88,-102r58,0r-114,141r-69,0","w":463},"\u2206":{"d":"33,0r0,-43r259,-671r64,0r257,671r0,43r-580,0xm90,-47r461,0r-228,-599r-4,0v-10,37,-43,119,-63,171","w":645},"\u2126":{"d":"208,-47r0,-3v-75,-65,-141,-175,-141,-319v0,-203,132,-337,299,-337v175,0,292,153,292,333v0,151,-72,266,-142,323r0,3r156,0r0,47r-233,0r0,-35v82,-53,162,-169,162,-329v0,-133,-80,-294,-236,-294v-147,0,-241,133,-241,296v0,151,81,276,161,327r0,35r-232,0r0,-47r155,0","w":726},"\u03bc":{"d":"478,-516r0,516r-58,0v-2,-30,4,-67,-2,-93v-46,105,-195,142,-295,73r0,211r-64,0r0,-707r63,0r0,336v3,93,38,142,138,142v108,0,155,-102,155,-207r0,-271r63,0","w":537},"\u03c0":{"d":"532,-466r-84,0v4,137,-11,369,15,466r-55,0v-9,-15,-16,-53,-16,-139r0,-327r-197,0v-7,136,-39,375,-77,466r-56,0v39,-104,70,-324,76,-466v-68,0,-96,5,-116,13r-11,-37v25,-15,63,-25,136,-25r392,0","w":560},"\u20ac":{"d":"84,-434v26,-152,122,-277,287,-278v83,0,145,26,186,77r-27,59v-76,-100,-230,-106,-310,-12v-34,39,-57,90,-69,154r333,0r-18,45r-321,0v-2,24,-4,38,-2,59r304,0r-19,45r-282,0v15,133,87,244,221,244v86,0,122,-35,174,-86r0,77v-51,43,-109,65,-176,65v-170,0,-268,-133,-284,-300r-66,0r19,-45r44,0v-2,-19,0,-35,1,-59r-64,0r18,-45r51,0"},"\u2113":{"d":"420,-134r30,23v-41,78,-102,121,-179,121v-117,0,-162,-93,-161,-204v-18,14,-39,32,-59,49r-20,-36v28,-23,55,-45,79,-68r0,-280v0,-183,78,-234,145,-234v80,0,118,69,118,156v0,128,-84,250,-210,372v-8,126,49,200,118,200v66,0,115,-54,139,-99xm163,-536r0,243v94,-101,168,-203,168,-311v0,-68,-21,-115,-78,-115v-40,0,-90,46,-90,183","w":475},"\u212e":{"d":"835,-335r-649,0v-3,0,-5,1,-5,4r0,196v0,9,2,17,8,23v62,66,150,106,246,106v103,0,195,-47,258,-119r57,0v-71,84,-187,139,-316,139v-221,0,-400,-161,-400,-359v0,-199,179,-361,400,-361v224,0,406,162,401,371xm687,-361r0,-197v0,-9,-3,-17,-9,-24v-63,-62,-148,-102,-243,-102v-95,0,-182,41,-245,105v-6,7,-9,15,-9,25r0,193v0,2,2,6,5,6r497,0v3,0,4,-4,4,-6","w":869},"\u2202":{"d":"101,-679r-22,-41v33,-26,84,-54,161,-54v124,0,245,118,245,375v0,227,-84,410,-254,410v-127,0,-187,-113,-187,-228v0,-154,101,-251,211,-251v98,0,155,71,174,102v16,-201,-79,-361,-194,-361v-62,0,-106,25,-134,48xm101,-219v0,106,52,183,135,183v103,0,170,-125,184,-268v-16,-48,-74,-118,-157,-118v-88,0,-162,90,-162,203","w":536},"\u220f":{"d":"664,-643r-112,0r0,739r-55,0r0,-739r-303,0r0,739r-55,0r0,-739r-113,0r0,-51r638,0r0,51","w":692},"\u2211":{"d":"528,96r-505,0r0,-39r278,-355r-265,-357r0,-39r477,0r0,49r-397,0r0,4r251,336r-270,344r0,3r431,0r0,54","w":552},"\u2219":{"d":"139,-375v32,0,59,28,59,60v0,31,-28,58,-59,58v-32,0,-59,-28,-59,-60v0,-30,29,-58,59,-58","w":278},"\u221a":{"d":"561,-823r-221,975r-53,0r-164,-471r-75,28r-13,-36r124,-48r136,390v7,22,11,51,18,67r12,-65r192,-840r44,0","w":563},"\u221e":{"d":"581,-439v87,0,142,62,142,151v0,93,-72,153,-150,153v-64,0,-113,-44,-184,-121v-54,60,-109,121,-191,121v-80,0,-146,-66,-146,-150v0,-88,65,-154,153,-154v75,0,134,61,187,123v55,-61,107,-123,189,-123xm94,-284v0,61,44,110,111,110v67,0,119,-67,161,-110v-45,-54,-95,-117,-169,-117v-66,0,-103,56,-103,117xm681,-286v0,-74,-45,-115,-106,-115v-69,0,-126,78,-162,113v69,73,109,114,164,114v66,0,104,-56,104,-112","w":775},"\u222b":{"d":"329,-831r-12,40v-27,-17,-65,-15,-88,12v-26,32,-37,84,-37,182v0,153,14,351,14,508v0,111,-24,166,-46,201v-29,46,-106,55,-149,27r12,-41v22,14,74,18,93,-11v18,-28,37,-71,37,-178v0,-157,-13,-359,-13,-512v0,-106,14,-166,51,-206v35,-38,95,-45,138,-22","w":343},"\u2248":{"d":"184,-423v90,0,130,77,211,77v42,0,69,-25,98,-76r25,22v-25,50,-63,92,-126,92v-67,0,-142,-76,-215,-77v-48,0,-76,35,-102,75r-27,-21v31,-58,79,-92,136,-92xm183,-259v93,0,129,77,213,77v42,0,68,-25,97,-75r25,22v-25,49,-63,91,-126,91v-66,0,-143,-76,-215,-77v-48,0,-77,36,-102,76r-27,-21v31,-59,79,-93,135,-93","w":568},"\u2260":{"d":"398,-499r-47,102r164,0r0,39r-181,0r-70,151r251,0r0,39r-268,0r-56,120r-32,-16r49,-104r-156,0r0,-39r173,0r70,-151r-243,0r0,-39r260,0r54,-118","w":568},"\u2264":{"d":"513,-94r-455,-226r0,-41r455,-225r0,48r-410,196r0,2r410,198r0,48xm515,-11r-463,0r0,-41r463,0r0,41","w":568},"\u2265":{"d":"58,-586r455,225r0,41r-454,226r0,-48r409,-197r0,-2r-410,-197r0,-48xm515,-11r-462,0r0,-41r462,0r0,41","w":568},"\u25ca":{"d":"508,-347r-204,391r-46,0r-202,-391r204,-391r46,0xm455,-345r-154,-295v-9,-14,-12,-40,-21,-49v-47,121,-116,227,-171,341r154,296v9,20,15,37,18,48r3,0v46,-122,116,-227,171,-341","w":565},"\u00a0":{"w":278},"\u00ad":{"d":"310,-246r-250,0r0,-58r250,0r0,58","w":370},"\u02c9":{"d":"257,-634r-329,0r0,-45r329,0r0,45","w":185},"\u03a9":{"d":"208,-47r0,-3v-75,-65,-141,-175,-141,-319v0,-203,132,-337,299,-337v175,0,292,153,292,333v0,151,-72,266,-142,323r0,3r156,0r0,47r-233,0r0,-35v82,-53,162,-169,162,-329v0,-133,-80,-294,-236,-294v-147,0,-241,133,-241,296v0,151,81,276,161,327r0,35r-232,0r0,-47r155,0","w":726},"\u2215":{"d":"-166,34r453,-759r47,0r-452,759r-48,0","w":167},"\u2010":{"d":"310,-246r-250,0r0,-58r250,0r0,58","w":370}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1993, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-Bd
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":556,"face":{"font-family":"Helvetica Neue LT Std","font-weight":700,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 8 4 2 2 2 2 2 4","ascent":"714","descent":"-286","x-height":"14","bbox":"-166 -975 1078 218.226","underline-thickness":"50","underline-position":"-50","stemh":"107","stemv":"142","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":278},"!":{"d":"213,-714r0,192r-39,308r-71,0r-38,-308r0,-192r148,0xm61,0r0,-154r157,0r0,154r-157,0","w":278},"\"":{"d":"271,-393r0,-321r107,0r0,321r-107,0xm85,-393r0,-321r107,0r0,321r-107,0","w":463},"#":{"d":"88,0r28,-198r-83,0r0,-90r95,0r18,-124r-83,0r0,-90r95,0r28,-198r97,0r-28,198r97,0r27,-198r97,0r-27,198r74,0r0,90r-87,0r-17,124r74,0r0,90r-87,0r-27,198r-97,0r27,-198r-96,0r-28,198r-97,0xm339,-412r-96,0r-18,124r97,0"},"$":{"d":"248,-451r0,-163v-45,0,-90,28,-90,83v0,44,26,65,90,80xm307,-292r0,192v49,-5,108,-34,108,-98v0,-53,-29,-72,-108,-94xm248,-309v-111,-30,-232,-61,-232,-208v0,-137,112,-207,232,-214r0,-77r59,0r0,77v119,13,217,75,225,213r-142,0v-1,-53,-38,-96,-83,-96r0,177v16,4,33,8,51,13v195,54,199,165,199,232v0,57,-51,196,-250,209r0,85r-59,0r0,-85v-148,-11,-234,-92,-249,-249r142,0v-1,74,46,120,107,132r0,-209"},"%":{"d":"75,-516v0,-109,53,-198,170,-198v124,0,164,92,164,202v0,109,-52,188,-169,188v-123,0,-165,-82,-165,-192xm177,-514v0,43,0,115,64,115v62,0,66,-72,66,-114v0,-39,-3,-126,-62,-126v-64,0,-68,79,-68,125xm591,-183v0,-109,53,-193,170,-193v124,0,164,87,164,197v0,109,-52,193,-169,193v-123,0,-165,-87,-165,-197xm693,-182v0,43,0,121,64,121v62,0,66,-78,66,-120v0,-39,-3,-120,-62,-120v-64,0,-68,73,-68,119xm254,22r414,-744r85,0r-412,744r-87,0","w":1000},"&":{"d":"382,-559v0,-37,-30,-68,-65,-68v-34,0,-64,26,-64,63v0,45,29,74,56,107v40,-26,73,-50,73,-102xm389,-166r-122,-149v-50,22,-100,60,-100,118v0,52,48,94,102,94v51,0,87,-26,120,-63xm522,0r-58,-71v-57,56,-120,85,-201,85v-129,0,-231,-79,-231,-214v0,-100,76,-168,160,-207v-38,-47,-68,-90,-68,-152v0,-99,91,-163,186,-163v108,0,196,58,196,171v0,83,-55,140,-127,178r92,113v14,-26,22,-56,26,-85r123,0v-7,64,-29,126,-69,176r145,169r-174,0","w":685},"\u2019":{"d":"68,-560r0,-154r142,0r0,153v3,89,-59,157,-142,168r0,-66v51,-17,66,-52,66,-101r-66,0","w":278,"k":{"\u2019":65,"s":74,"\u0161":74,"t":18}},"(":{"d":"184,-731r119,0v-147,284,-145,626,-1,913r-118,0v-172,-273,-177,-638,0,-913","w":296},")":{"d":"112,182r-119,0v147,-284,145,-626,1,-913r118,0v172,274,177,638,0,913","w":296},"*":{"d":"242,-714r0,125r116,-44r27,77r-118,39r74,98r-66,49r-74,-103r-70,103r-67,-49r74,-98r-116,-39r27,-77r113,44r0,-125r80,0","w":407},"+":{"d":"354,-505r0,199r199,0r0,107r-199,0r0,199r-107,0r0,-199r-199,0r0,-107r199,0r0,-199r107,0","w":600},",":{"d":"61,0r0,-154r157,0r0,154v0,92,-70,153,-156,166r0,-72v42,-7,73,-50,71,-94r-72,0","w":278},"-":{"d":"53,-212r0,-122r301,0r0,122r-301,0","w":407},".":{"d":"60,0r0,-154r157,0r0,154r-157,0","w":278},"\/":{"d":"-11,17r279,-748r114,0r-279,748r-114,0","w":371},"0":{"d":"21,-353v0,-273,118,-361,256,-361v140,0,258,88,258,361v0,279,-118,367,-258,367v-138,0,-256,-88,-256,-367xm163,-353v0,79,0,250,114,250v116,0,116,-171,116,-250v0,-73,0,-244,-116,-244v-114,0,-114,171,-114,244"},"1":{"d":"392,-700r0,700r-142,0r0,-454r-176,0r0,-107v99,2,190,-32,205,-139r113,0"},"2":{"d":"531,-495v0,219,-234,234,-327,373r331,0r0,122r-514,0v1,-162,100,-231,221,-313v62,-42,146,-85,147,-171v0,-66,-44,-108,-105,-108v-84,0,-111,87,-111,161r-136,0v-5,-160,86,-283,254,-283v128,0,240,82,240,219"},"3":{"d":"228,-317r0,-100v61,5,149,-7,149,-87v0,-59,-47,-93,-99,-93v-71,0,-109,53,-108,125r-135,0v5,-143,98,-242,242,-242v112,0,235,69,235,194v0,68,-37,123,-98,145v77,17,124,81,124,159v0,147,-123,230,-260,230v-157,0,-263,-94,-260,-255r135,0v3,76,41,138,123,138v64,0,114,-44,114,-110v0,-106,-93,-104,-162,-104"},"4":{"d":"312,0r0,-162r-296,0r0,-130r304,-408r127,0r0,421r93,0r0,117r-93,0r0,162r-135,0xm312,-279r0,-243r-3,0r-181,243r184,0"},"5":{"d":"500,-700r0,117r-289,0r-28,159r2,2v38,-39,82,-54,137,-54v138,0,216,107,216,238v0,144,-119,252,-260,252v-136,0,-258,-75,-260,-222r142,0v7,62,53,105,115,105v74,0,121,-65,121,-135v0,-73,-45,-131,-121,-131v-51,0,-79,18,-107,56r-128,0r69,-387r391,0"},"6":{"d":"523,-520r-135,0v-9,-47,-45,-87,-94,-87v-102,-1,-135,140,-132,215v70,-109,241,-99,319,-6v129,154,17,412,-191,412v-212,0,-269,-185,-269,-362v0,-171,76,-366,275,-366v121,0,211,71,227,194xm286,-363v-76,0,-113,61,-113,130v0,65,42,130,113,130v140,-1,144,-260,0,-260"},"7":{"d":"517,-700r0,122v-147,128,-227,391,-229,578r-152,0v16,-207,102,-408,235,-568r-332,0r0,-132r478,0"},"8":{"d":"156,-212v0,72,56,119,124,119v68,0,120,-48,120,-118v0,-67,-54,-112,-120,-112v-69,0,-124,39,-124,111xm43,-523v0,-126,122,-191,236,-191v174,0,234,120,234,188v0,71,-40,123,-102,149v83,19,131,83,131,171v0,293,-528,296,-528,1v0,-91,54,-149,132,-174v-68,-19,-103,-75,-103,-144xm172,-510v0,61,50,92,107,92v58,0,105,-32,105,-92v0,-36,-17,-97,-105,-97v-57,0,-107,35,-107,97"},"9":{"d":"33,-180r135,0v9,47,45,87,94,87v102,1,135,-140,132,-215v-70,109,-241,99,-319,6v-129,-154,-17,-412,191,-412v212,0,269,185,269,362v0,171,-76,366,-275,366v-121,0,-211,-71,-227,-194xm270,-337v76,0,113,-61,113,-130v0,-65,-42,-130,-113,-130v-140,1,-144,260,0,260"},":":{"d":"61,0r0,-154r157,0r0,154r-157,0xm218,-508r0,154r-157,0r0,-154r157,0","w":278},";":{"d":"61,0r0,-154r157,0r0,154v-1,92,-70,153,-156,166r0,-72v42,-7,73,-50,71,-94r-72,0xm218,-508r0,154r-157,0r0,-154r157,0","w":278},"<":{"d":"554,-514r0,115r-367,146r367,146r0,115r-508,-202r0,-118","w":600},"=":{"d":"553,-413r0,107r-505,0r0,-107r505,0xm553,-199r0,107r-505,0r0,-107r505,0","w":600},">":{"d":"46,8r0,-115r367,-146r-367,-146r0,-115r508,202r0,118","w":600},"?":{"d":"524,-538v0,179,-151,158,-182,286r0,38r-135,0v-8,-106,40,-168,87,-202v40,-29,73,-54,73,-108v0,-61,-32,-90,-85,-90v-72,0,-102,59,-103,130r-147,0v3,-143,97,-247,243,-247v189,0,249,116,249,193xm193,0r0,-154r157,0r0,154r-157,0"},"@":{"d":"291,-319v0,53,32,89,78,89v72,0,123,-82,123,-151v0,-49,-34,-85,-77,-85v-72,0,-124,81,-124,147xm622,-545r-63,258v-8,27,-16,66,9,66v57,0,118,-77,118,-184v0,-159,-119,-246,-271,-246v-172,0,-283,127,-283,296v0,175,123,292,295,292v84,0,163,-30,215,-82r84,0v-68,103,-180,162,-305,162v-213,0,-385,-160,-385,-374v0,-211,172,-374,380,-374v182,0,348,121,348,305v0,206,-171,290,-235,290v-45,0,-68,-28,-75,-57v-80,123,-265,31,-265,-113v0,-126,86,-255,218,-255v43,0,94,18,117,70r16,-54r82,0","w":800},"A":{"d":"-7,0r271,-714r161,0r267,714r-163,0r-54,-159r-267,0r-56,159r-159,0xm342,-538r-93,262r185,0r-90,-262r-2,0","w":685},"B":{"d":"226,-318r0,196v121,-9,281,39,284,-94v3,-137,-160,-96,-284,-102xm69,0r0,-714r336,0v136,0,228,44,228,177v0,70,-35,119,-97,149v87,25,131,92,131,181v0,145,-123,207,-252,207r-346,0xm226,-592r0,167v108,-6,257,33,255,-85v-2,-119,-148,-73,-255,-82","w":704},"C":{"d":"697,-474r-152,0v-10,-71,-78,-125,-156,-125v-141,0,-194,120,-194,245v0,119,53,239,194,239v96,0,150,-66,162,-160r152,0v-16,178,-139,292,-314,292v-221,0,-351,-165,-351,-371v0,-212,130,-377,351,-377v157,0,289,92,308,257","w":741},"D":{"d":"69,0r0,-714r308,0v185,0,324,116,324,353v0,207,-106,361,-324,361r-308,0xm226,-582r0,450v189,7,318,9,318,-214v0,-144,-50,-236,-206,-236r-112,0","w":741},"E":{"d":"69,0r0,-714r534,0r0,132r-377,0r0,153r346,0r0,122r-346,0r0,175r385,0r0,132r-542,0","w":648},"F":{"d":"69,0r0,-714r502,0r0,132r-345,0r0,165r299,0r0,122r-299,0r0,295r-157,0","w":593,"k":{"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,",":129,".":129}},"G":{"d":"601,0r-16,-81v-55,71,-127,98,-196,98v-221,0,-351,-165,-351,-371v0,-212,130,-377,351,-377v146,0,284,90,301,252r-150,0v-18,-79,-77,-120,-151,-120v-141,0,-194,120,-194,245v0,119,53,239,194,239v102,0,161,-55,170,-154r-158,0r0,-117r300,0r0,386r-100,0","w":759},"H":{"d":"69,0r0,-714r157,0r0,274r289,0r0,-274r157,0r0,714r-157,0r0,-308r-289,0r0,308r-157,0","w":741},"I":{"d":"69,0r0,-714r157,0r0,714r-157,0","w":295},"J":{"d":"487,-714r0,489v0,92,-25,242,-238,242v-119,0,-235,-65,-235,-221r0,-62r142,0v-2,83,5,152,91,151v83,0,83,-67,83,-117r0,-482r157,0"},"K":{"d":"69,0r0,-714r157,0r0,296r279,-296r196,0r-279,282r306,432r-197,0r-215,-321r-90,91r0,230r-157,0","w":722},"L":{"d":"69,0r0,-714r157,0r0,582r348,0r0,132r-505,0","w":593,"k":{"T":111,"V":92,"W":55,"y":37,"\u00fd":37,"\u00ff":37,"Y":111,"\u00dd":111,"\u0178":111,"\u2019":74}},"M":{"d":"69,0r0,-714r221,0r167,491r2,0r158,-491r221,0r0,714r-147,0r0,-506r-2,0r-175,506r-121,0r-175,-501r-2,0r0,501r-147,0","w":907},"N":{"d":"69,0r0,-714r156,0r298,479r2,0r0,-479r147,0r0,714r-157,0r-297,-478r-2,0r0,478r-147,0","w":741},"O":{"d":"38,-354v0,-212,130,-377,351,-377v221,0,351,165,351,377v0,206,-130,371,-351,371v-221,0,-351,-165,-351,-371xm195,-354v0,119,53,239,194,239v141,0,194,-120,194,-239v0,-125,-53,-245,-194,-245v-141,0,-194,120,-194,245","w":778},"P":{"d":"69,0r0,-714r322,0v178,0,247,113,247,229v0,116,-69,229,-247,229r-165,0r0,256r-157,0xm226,-592r0,214v122,-5,260,30,260,-107v0,-137,-138,-102,-260,-107","w":667,"k":{"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":129,".":129}},"Q":{"d":"736,-10r-73,77r-101,-92v-47,27,-106,42,-173,42v-221,0,-351,-165,-351,-371v0,-212,130,-377,351,-377v221,0,351,165,351,377v0,103,-33,195,-93,263xm385,-186r73,-78r81,74v26,-36,44,-90,44,-164v0,-125,-53,-245,-194,-245v-141,0,-194,120,-194,245v0,119,53,239,194,239v23,0,52,0,63,-10","w":778},"R":{"d":"69,0r0,-714r385,0v128,0,209,89,209,197v0,86,-38,145,-113,181v77,20,99,95,104,167v3,45,2,129,30,169r-157,0v-19,-45,-17,-114,-25,-171v-11,-75,-40,-108,-119,-108r-157,0r0,279r-157,0xm226,-592r0,201v122,-6,280,36,280,-102v0,-69,-38,-99,-108,-99r-172,0","w":722,"k":{"T":18,"V":-6,"W":-6,"Y":37,"\u00dd":37,"\u0178":37}},"S":{"d":"24,-237r152,0v0,95,74,132,158,132v55,0,139,-16,139,-89v0,-77,-107,-90,-212,-118v-106,-28,-213,-69,-213,-203v0,-146,138,-216,267,-216v149,0,286,65,286,230r-152,0v-5,-86,-66,-108,-141,-108v-50,0,-108,21,-108,81v0,55,34,62,213,108v52,13,212,46,212,208v0,131,-103,229,-297,229v-158,0,-306,-78,-304,-254","w":649},"T":{"d":"227,0r0,-582r-214,0r0,-132r585,0r0,132r-214,0r0,582r-157,0","w":611,"k":{"\u00fc":92,"\u0161":111,"\u00f2":111,"\u00f6":111,"\u00e8":111,"\u00eb":111,"\u00ea":111,"\u00e3":111,"\u00e5":111,"\u00e0":111,"\u00e4":111,"\u00e2":111,"w":111,"y":92,"\u00fd":92,"\u00ff":92,"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":111,".":111,"c":111,"\u00e7":111,"e":111,"\u00e9":111,"o":111,"\u00f8":111,"\u0153":111,"\u00f3":111,"\u00f4":111,"\u00f5":111,"-":129,"a":111,"\u00e6":111,"\u00e1":111,"r":92,"s":111,"u":92,"\u00fa":92,"\u00fb":92,"\u00f9":92,":":87,";":87}},"U":{"d":"675,-714r0,444v0,193,-114,287,-305,287v-192,0,-304,-93,-304,-287r0,-444r157,0r0,444v0,78,20,155,147,155v112,0,148,-49,148,-155r0,-444r157,0","w":741},"V":{"d":"638,-714r-237,714r-177,0r-232,-714r162,0r159,502r2,0r161,-502r162,0","w":630,"k":{"\u00f6":55,"\u00f4":55,"\u00ee":18,"\u00e8":55,"\u00eb":55,"\u00ea":55,"\u00e3":55,"\u00e5":55,"\u00e0":55,"\u00e4":55,"\u00e2":55,"y":18,"\u00fd":18,"\u00ff":18,"A":46,"\u00c6":46,"\u00c1":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,"\u00c5":46,"\u00c3":46,",":129,".":129,"e":55,"\u00e9":55,"o":55,"\u00f8":55,"\u0153":55,"\u00f3":55,"\u00f2":55,"\u00f5":55,"-":55,"a":55,"\u00e6":55,"\u00e1":55,"r":37,"u":37,"\u00fa":37,"\u00fb":37,"\u00fc":37,"\u00f9":37,":":50,";":50,"i":18,"\u0131":18,"\u00ed":18,"\u00ef":18,"\u00ec":18}},"W":{"d":"941,-714r-192,714r-156,0r-121,-486r-2,0r-119,486r-159,0r-189,-714r157,0r113,486r2,0r124,-486r147,0r122,492r2,0r117,-492r154,0","w":944,"k":{"\u00fc":18,"\u00f6":37,"\u00ea":37,"\u00e4":37,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,",":74,".":74,"e":37,"\u00e9":37,"\u00eb":37,"\u00e8":37,"o":37,"\u00f8":37,"\u0153":37,"\u00f3":37,"\u00f4":37,"\u00f2":37,"\u00f5":37,"a":37,"\u00e6":37,"\u00e1":37,"\u00e2":37,"\u00e0":37,"\u00e5":37,"\u00e3":37,"r":18,"u":18,"\u00fa":18,"\u00fb":18,"\u00f9":18,":":18,";":18}},"X":{"d":"-6,0r250,-374r-230,-340r182,0r140,228r145,-228r172,0r-229,341r249,373r-187,0r-156,-247r-159,247r-177,0","w":667},"Y":{"d":"254,0r0,-278r-263,-436r177,0r167,282r166,-282r175,0r-265,440r0,274r-157,0","w":667,"k":{"\u00fc":74,"\u00f6":92,"v":55,"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":111,".":111,"e":92,"\u00e9":92,"\u00ea":92,"\u00eb":92,"\u00e8":92,"o":92,"\u00f8":92,"\u0153":92,"\u00f3":92,"\u00f4":92,"\u00f2":92,"\u00f5":92,"q":92,"-":111,"a":92,"\u00e6":92,"\u00e1":92,"\u00e2":92,"\u00e4":92,"\u00e0":92,"\u00e5":92,"\u00e3":92,"u":74,"\u00fa":74,"\u00fb":74,"\u00f9":74,":":80,";":68,"i":13,"\u0131":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"p":74}},"Z":{"d":"23,0r0,-124r383,-458r-353,0r0,-132r562,0r0,124r-383,458r393,0r0,132r-602,0","w":648},"[":{"d":"68,182r0,-913r264,0r0,112r-122,0r0,689r122,0r0,112r-264,0","w":333},"\\":{"d":"103,-731r279,748r-114,0r-279,-748r114,0","w":371},"]":{"d":"265,-731r0,913r-264,0r0,-112r122,0r0,-689r-122,0r0,-112r264,0","w":333},"^":{"d":"61,-315r172,-385r134,0r172,385r-117,0r-122,-275r-122,275r-117,0","w":600},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"\u2018":{"d":"210,-547r0,154r-142,0r0,-153v-3,-89,59,-157,142,-168r0,66v-51,17,-66,52,-66,101r66,0","w":278,"k":{"\u2018":65}},"a":{"d":"376,-253v-53,42,-204,6,-202,106v0,53,41,66,87,66v111,0,115,-88,115,-119r0,-53xm190,-358r-142,0v8,-133,127,-173,243,-173v103,0,227,23,227,147r0,269v0,47,5,94,18,115r-144,0v-5,-16,-9,-33,-10,-50v-102,104,-350,90,-350,-91v0,-117,88,-144,176,-157v87,-12,168,-10,168,-68v0,-61,-42,-70,-92,-70v-54,0,-89,22,-94,78","w":574},"b":{"d":"54,0r0,-714r142,0r0,260r2,0v35,-53,99,-77,163,-77v103,0,214,83,214,272v0,190,-111,273,-214,273v-78,0,-137,-26,-172,-80r0,66r-135,0xm433,-258v0,-87,-37,-166,-121,-166v-84,0,-121,79,-121,166v0,86,37,165,121,165v84,0,121,-79,121,-165","w":611},"c":{"d":"545,-335r-139,0v-9,-58,-46,-89,-105,-89v-91,0,-121,92,-121,168v0,74,29,163,118,163v66,0,104,-42,113,-105r137,0v-18,137,-113,212,-249,212v-156,0,-261,-110,-261,-265v0,-161,96,-280,264,-280v122,0,234,64,243,196","w":574},"d":{"d":"423,0v-2,-21,4,-49,-2,-66v-33,56,-91,80,-157,80v-156,0,-232,-134,-232,-277v0,-139,77,-268,229,-268v63,0,119,29,155,77r0,-260r142,0r0,714r-135,0xm421,-260v0,-84,-30,-164,-122,-164v-93,0,-125,80,-125,165v0,81,37,166,125,166v94,0,122,-82,122,-167","w":611},"e":{"d":"544,-224r-373,0v4,90,48,131,127,131v57,0,103,-35,112,-67r125,0v-40,122,-125,174,-242,174v-163,0,-264,-112,-264,-272v0,-155,107,-273,264,-273v176,0,261,148,251,307xm171,-314r231,0v-13,-72,-44,-110,-113,-110v-90,0,-116,70,-118,110","w":574},"f":{"d":"85,0r0,-422r-85,0r0,-95r85,0v-9,-122,41,-193,173,-197v25,0,51,3,75,4r0,106v-54,-6,-112,-10,-106,56r0,31r98,0r0,95r-98,0r0,422r-142,0","w":333,"k":{"\u2019":-18,"f":18,"\ufb01":18,"\ufb02":18,"\u00df":18}},"g":{"d":"551,-517r0,484v0,85,-30,229,-268,229v-102,0,-221,-48,-228,-166r141,0v13,53,56,71,106,71v104,0,126,-93,112,-196v-31,54,-93,80,-155,80v-155,0,-221,-118,-221,-260v0,-134,77,-256,222,-256v70,0,118,27,156,83r0,-69r135,0xm295,-122v81,0,121,-69,121,-143v0,-84,-29,-159,-121,-159v-80,0,-115,70,-115,147v0,74,28,155,115,155","w":611},"h":{"d":"54,0r0,-714r142,0r0,269r3,0v36,-58,98,-86,151,-86v151,0,189,85,189,213r0,318r-142,0r0,-292v0,-85,-25,-127,-91,-127v-77,0,-110,43,-110,148r0,271r-142,0","w":593},"i":{"d":"58,0r0,-517r142,0r0,517r-142,0xm200,-714r0,117r-142,0r0,-117r142,0","w":258},"j":{"d":"-19,178r0,-117v38,8,87,9,86,-42r0,-536r142,0r0,543v0,106,-39,156,-182,156v-15,0,-31,-2,-46,-4xm209,-714r0,117r-142,0r0,-117r142,0","w":278},"k":{"d":"67,0r0,-714r142,0r0,383r179,-186r168,0r-195,190r217,327r-172,0r-142,-231r-55,53r0,178r-142,0","w":574},"l":{"d":"58,0r0,-714r142,0r0,714r-142,0","w":258},"m":{"d":"58,0r0,-517r134,0v2,22,-4,52,2,70v63,-105,253,-120,309,2v30,-45,84,-86,156,-86v110,0,189,51,189,185r0,346r-142,0r0,-293v0,-69,-6,-126,-87,-126v-80,0,-95,66,-95,131r0,288r-142,0r0,-290v0,-60,4,-129,-86,-129v-28,0,-96,18,-96,119r0,300r-142,0","w":906},"n":{"d":"54,0r0,-517r135,0r0,72r3,0v36,-58,98,-86,158,-86v151,0,189,85,189,213r0,318r-142,0r0,-292v0,-85,-25,-127,-91,-127v-77,0,-110,43,-110,148r0,271r-142,0","w":593},"o":{"d":"38,-258v0,-165,105,-273,267,-273v163,0,268,108,268,273v0,164,-105,272,-268,272v-162,0,-267,-108,-267,-272xm180,-258v0,82,29,165,125,165v97,0,126,-83,126,-165v0,-83,-29,-166,-126,-166v-96,0,-125,83,-125,166","w":611},"p":{"d":"54,182r0,-699r135,0v2,21,-4,49,2,66v34,-55,90,-80,154,-80v162,0,235,131,235,278v0,138,-76,267,-227,267v-64,0,-120,-30,-157,-78r0,246r-142,0xm315,-93v93,0,123,-80,123,-164v0,-82,-33,-167,-124,-167v-93,0,-123,83,-123,167v0,84,32,164,124,164","w":611},"q":{"d":"558,-517r0,699r-142,0r0,-247r-2,0v-33,56,-101,79,-163,79v-95,0,-219,-69,-219,-269v0,-142,75,-276,232,-276v66,0,123,27,159,80r0,-66r135,0xm174,-258v0,83,30,165,123,165v92,0,124,-78,124,-163v0,-81,-32,-168,-121,-168v-92,0,-126,82,-126,166","w":611},"r":{"d":"54,0r0,-517r135,0v2,31,-4,69,2,96v32,-72,110,-125,196,-105r0,132v-13,-3,-34,-5,-51,-5v-189,1,-131,225,-140,399r-142,0","w":389,"k":{",":92,".":92,"c":18,"\u00e7":18,"d":18,"e":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00e8":18,"n":-18,"\u00f1":-18,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"q":18,"-":55}},"s":{"d":"29,-168r135,0v1,62,53,87,109,87v41,0,93,-16,93,-66v0,-43,-59,-58,-161,-80v-82,-18,-164,-47,-164,-138v0,-132,114,-166,225,-166v113,0,217,38,228,165r-135,0v-4,-55,-46,-70,-97,-70v-32,0,-79,6,-79,48v0,51,80,58,161,77v83,19,164,49,164,145v0,136,-118,180,-236,180v-120,0,-237,-45,-243,-182","w":537},"t":{"d":"234,-672r0,155r104,0r0,95r-104,0r0,256v-9,67,50,64,104,56r0,111v-115,12,-246,16,-246,-118r0,-305r-86,0r0,-95r86,0r0,-155r142,0","w":352},"u":{"d":"539,-517r0,517r-135,0r0,-72r-3,0v-36,58,-98,86,-158,86v-151,0,-189,-85,-189,-213r0,-318r142,0r0,292v0,85,25,127,91,127v77,0,110,-43,110,-148r0,-271r142,0","w":593},"v":{"d":"515,-517r-175,517r-158,0r-177,-517r149,0r109,353r2,0r109,-353r141,0","w":520,"k":{",":55,".":55}},"w":{"d":"808,-517r-163,517r-146,0r-92,-347r-2,0r-88,347r-147,0r-164,-517r150,0r95,351r2,0r86,-351r138,0r88,350r2,0r95,-350r146,0","w":814,"k":{",":55,".":55}},"x":{"d":"0,0r186,-272r-170,-245r162,0r91,135r90,-135r157,0r-170,242r191,275r-162,0r-108,-163r-108,163r-159,0","w":537},"y":{"d":"525,-517r-216,582v-33,111,-133,128,-265,112r0,-117v27,2,55,7,83,5v49,-4,65,-56,49,-97r-182,-485r152,0r117,354r2,0r113,-354r147,0","w":519,"k":{",":55,".":55}},"z":{"d":"22,0r0,-107r269,-303r-249,0r0,-107r436,0r0,107r-269,303r288,0r0,107r-475,0","w":519},"{":{"d":"333,-731r0,112r-54,0v-48,0,-54,41,-54,73r0,152v0,98,-69,114,-99,118r0,3v30,3,99,26,99,110r0,160v0,33,6,73,54,73r54,0r0,112r-127,0v-45,0,-123,-44,-123,-135r0,-195v0,-61,-60,-83,-92,-83r0,-87v32,0,92,-23,92,-90r0,-188v0,-91,78,-135,123,-135r127,0","w":333},"|":{"d":"58,214r0,-1000r107,0r0,1000r-107,0","w":223},"}":{"d":"0,182r0,-112r54,0v48,0,54,-40,54,-73r0,-160v0,-84,69,-107,99,-110r0,-3v-30,-4,-99,-20,-99,-118r0,-152v0,-32,-6,-73,-54,-73r-54,0r0,-112r127,0v45,0,123,44,123,135r0,188v0,67,60,90,92,90r0,87v-32,0,-92,22,-92,83r0,195v0,91,-78,135,-123,135r-127,0","w":333},"~":{"d":"192,-340v66,0,155,68,213,68v40,0,65,-37,88,-72r40,93v-30,42,-63,86,-125,86v-80,0,-130,-68,-217,-68v-44,0,-68,37,-84,72r-40,-93v22,-42,58,-86,125,-86","w":600},"\u00a1":{"d":"218,-531r0,154r-157,0r0,-154r157,0xm65,183r0,-192r39,-308r71,0r38,308r0,192r-148,0","w":278},"\u00a2":{"d":"260,-93r0,-330v-71,19,-97,90,-97,159v0,71,22,148,97,171xm260,115r0,-101v-143,-9,-239,-122,-239,-264v0,-152,84,-268,239,-281r0,-85r59,0r0,85v110,1,220,77,224,197r-139,0v-4,-48,-40,-86,-85,-90r0,331v49,-9,86,-59,87,-110r139,0v-11,127,-104,207,-226,217r0,101r-59,0"},"\u00a3":{"d":"411,17v-98,0,-118,-37,-208,-38v-36,0,-76,8,-115,38r-62,-93v73,-45,148,-135,94,-233r-99,0r0,-85r64,0v-20,-25,-45,-79,-45,-138v0,-106,88,-199,256,-199v151,0,244,88,243,250r-135,0v-3,-39,-7,-133,-109,-133v-58,0,-98,36,-98,92v0,31,1,56,41,128r133,0r0,85r-105,0v27,91,-14,159,-74,202r2,2v104,-77,224,68,313,-43r60,101v-48,46,-105,64,-156,64"},"\u2044":{"d":"-166,22r414,-744r85,0r-412,744r-87,0","w":167},"\u00a5":{"d":"359,0r-152,0r0,-138r-157,0r0,-95r157,0r0,-46r-14,-29r-143,0r0,-95r95,0r-154,-311r163,0r132,311r129,-311r162,0r-155,311r95,0r0,95r-143,0r-15,29r0,46r158,0r0,95r-158,0r0,138"},"\u0192":{"d":"-5,167r19,-107v65,12,100,-7,112,-68r63,-329r-92,0r18,-95r91,0r24,-127v24,-126,75,-172,206,-172v25,0,50,2,75,7r-18,107v-57,-19,-105,-1,-116,55r-25,130r98,0r-16,95r-100,0r-56,310v-25,134,-61,197,-209,197v-25,0,-46,-1,-74,-3"},"\u00a7":{"d":"377,-287r-165,-93v-36,-30,-80,18,-78,57v0,19,10,37,32,49r180,98v35,22,76,-13,76,-48v0,-30,-21,-50,-45,-63xm494,-538r-124,0v0,-49,-32,-86,-85,-86v-36,0,-76,24,-76,64v0,56,87,86,170,126v84,40,167,89,167,184v0,66,-42,124,-104,146v38,29,55,70,55,118v0,113,-112,168,-213,168v-127,0,-226,-58,-225,-194r124,0v3,58,38,87,98,87v41,0,74,-22,74,-66v0,-59,-82,-89,-170,-130v-87,-41,-175,-92,-175,-190v0,-72,40,-122,107,-146v-28,-30,-43,-59,-43,-101v0,-113,107,-173,209,-173v118,0,211,69,211,193"},"\u00a4":{"d":"20,-149r57,-58v-63,-69,-65,-218,0,-286r-57,-58r57,-57r57,56v64,-58,220,-62,283,-1r58,-57r61,61r-56,55v60,68,60,219,-1,289r55,56r-55,55r-57,-58v-66,66,-223,66,-290,1r-56,58xm280,-491v-84,0,-127,68,-127,142v0,73,44,140,126,140v82,0,122,-70,122,-142v0,-70,-40,-140,-121,-140"},"'":{"d":"86,-393r0,-321r107,0r0,321r-107,0","w":278},"\u201c":{"d":"409,-547r0,154r-142,0r0,-153v-3,-89,59,-157,142,-168r0,66v-51,17,-66,52,-66,101r66,0xm196,-547r0,154r-142,0r0,-153v-3,-89,59,-157,142,-168r0,66v-51,17,-66,52,-66,101r66,0","w":463},"\u00ab":{"d":"402,-80r-157,-125r0,-135r157,-123r0,120r-90,71r90,72r0,120xm199,-80r-157,-125r0,-135r157,-123r0,120r-90,71r90,72r0,120","w":444},"\u2039":{"d":"199,-80r-157,-125r0,-135r157,-123r0,120r-90,71r90,72r0,120","w":241},"\u203a":{"d":"42,-463r157,123r0,135r-157,125r0,-120r90,-72r-90,-71r0,-120","w":241},"\ufb01":{"d":"553,-714r0,117r-142,0r0,-117r142,0xm411,0r0,-517r142,0r0,517r-142,0xm85,0r0,-422r-85,0r0,-95r85,0v-9,-122,41,-193,173,-197v25,0,51,3,75,4r0,106v-54,-6,-112,-10,-106,56r0,31r98,0r0,95r-98,0r0,422r-142,0","w":611},"\ufb02":{"d":"411,0r0,-714r142,0r0,714r-142,0xm85,0r0,-422r-85,0r0,-95r85,0v-9,-122,41,-193,173,-197v25,0,51,3,75,4r0,106v-54,-6,-112,-10,-106,56r0,31r98,0r0,95r-98,0r0,422r-142,0","w":611},"\u2013":{"d":"0,-212r0,-122r500,0r0,122r-500,0","w":500},"\u2020":{"d":"210,166r0,-566r-186,0r0,-117r186,0r0,-197r135,0r0,197r187,0r0,117r-187,0r0,566r-135,0"},"\u2021":{"d":"210,166r0,-193r-186,0r0,-117r186,0r0,-256r-186,0r0,-117r186,0r0,-197r135,0r0,197r187,0r0,117r-187,0r0,256r187,0r0,117r-187,0r0,193r-135,0"},"\u00b7":{"d":"55,-287v0,-47,39,-85,85,-85v45,0,84,39,84,85v0,42,-39,84,-83,84v-47,0,-86,-38,-86,-84","w":278},"\u00b6":{"d":"221,166r0,-523v-139,0,-219,-69,-219,-175v0,-243,306,-171,533,-182r0,880r-102,0r0,-800r-110,0r0,800r-102,0","w":620},"\u2022":{"d":"72,-357v0,-99,79,-178,178,-178v99,0,179,79,179,178v0,99,-80,179,-179,179v-99,0,-178,-80,-178,-179","w":501},"\u201a":{"d":"68,0r0,-154r142,0r0,153v3,89,-59,157,-142,168r0,-66v51,-17,66,-52,66,-101r-66,0","w":278},"\u201e":{"d":"267,0r0,-154r142,0r0,153v3,89,-59,157,-142,168r0,-66v51,-17,66,-52,66,-101r-66,0xm54,0r0,-154r142,0r0,153v3,89,-59,157,-142,168r0,-66v51,-17,66,-52,66,-101r-66,0","w":463},"\u201d":{"d":"267,-560r0,-154r142,0r0,153v3,89,-59,157,-142,168r0,-66v51,-17,66,-52,66,-101r-66,0xm54,-560r0,-154r142,0r0,153v3,89,-59,157,-142,168r0,-66v51,-17,66,-52,66,-101r-66,0","w":463},"\u00bb":{"d":"245,-463r157,123r0,135r-157,125r0,-120r90,-72r-90,-71r0,-120xm42,-463r157,123r0,135r-157,125r0,-120r90,-72r-90,-71r0,-120","w":444},"\u2026":{"d":"88,0r0,-154r157,0r0,154r-157,0xm421,0r0,-154r157,0r0,154r-157,0xm754,0r0,-154r157,0r0,154r-157,0","w":1000},"\u2030":{"d":"530,-172v0,57,3,121,56,121v57,0,56,-59,56,-107v0,-52,-1,-107,-54,-107v-56,0,-58,55,-58,93xm440,-155v0,-94,43,-175,147,-175v109,0,145,77,145,174v0,97,-43,170,-146,170v-93,0,-146,-69,-146,-169xm786,-155v0,-94,43,-175,147,-175v109,0,145,77,145,174v0,97,-43,170,-146,170v-93,0,-146,-69,-146,-169xm876,-172v0,57,3,121,56,121v57,0,56,-59,56,-107v0,-52,-1,-107,-54,-107v-56,0,-58,55,-58,93xm69,-539v0,-94,43,-175,147,-175v109,0,145,77,145,174v0,97,-43,170,-146,170v-93,0,-146,-69,-146,-169xm159,-556v0,57,3,121,56,121v57,0,56,-59,56,-107v0,-52,-1,-107,-54,-107v-56,0,-58,55,-58,93xm150,22r414,-744r85,0r-412,744r-87,0","w":1147},"\u00bf":{"d":"32,3v0,-179,151,-158,182,-286r0,-38r135,0v8,106,-40,168,-87,202v-40,29,-73,54,-73,108v0,61,32,90,85,90v70,0,100,-59,101,-130r147,0v-3,143,-97,247,-241,247v-189,0,-249,-116,-249,-193xm363,-531r0,154r-157,0r0,-154r157,0"},"`":{"d":"106,-581r-154,-142r157,0r96,142r-99,0","w":259},"\u00b4":{"d":"307,-723r-154,142r-99,0r96,-142r157,0","w":259},"\u02c6":{"d":"-46,-581r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":259},"\u02dc":{"d":"72,-714v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":259},"\u00af":{"d":"-57,-616r0,-75r373,0r0,75r-373,0","w":259},"\u02d8":{"d":"-39,-727r65,0v19,104,194,91,209,0r63,0v-13,102,-80,146,-178,146v-96,0,-151,-50,-159,-146","w":259},"\u02d9":{"d":"62,-597r0,-117r135,0r0,117r-135,0","w":259},"\u00a8":{"d":"165,-597r0,-117r135,0r0,117r-135,0xm-41,-597r0,-117r135,0r0,117r-135,0","w":259},"\u02da":{"d":"66,-656v0,39,25,70,63,70v38,0,64,-31,64,-70v0,-39,-26,-70,-64,-70v-38,0,-63,31,-63,70xm7,-656v0,-67,55,-122,122,-122v68,0,123,55,123,122v0,67,-55,122,-123,122v-67,0,-122,-55,-122,-122","w":259},"\u00b8":{"d":"12,196r21,-48v29,13,122,41,124,-16v1,-41,-52,-34,-80,-25r-21,-24r59,-85r49,0r-39,55v52,-15,128,4,128,65v0,129,-165,107,-241,78","w":259},"\u02dd":{"d":"192,-723r-149,142r-99,0r91,-142r157,0xm399,-723r-149,142r-99,0r91,-142r157,0","w":259},"\u02db":{"d":"202,128r48,22v-40,51,-89,68,-134,68v-25,0,-107,-6,-107,-90v0,-18,2,-64,114,-131r65,0v-64,58,-83,93,-83,127v0,47,72,45,97,4","w":259},"\u02c7":{"d":"305,-723r-110,142r-130,0r-111,-142r112,0r64,81r65,-81r110,0","w":259},"\u2014":{"d":"130,-212r0,-122r740,0r0,122r-740,0","w":1000},"\u00c6":{"d":"418,-582r-138,306r172,0r0,-306r-34,0xm-11,0r341,-714r606,0r0,132r-332,0r0,153r312,0r0,122r-312,0r0,175r340,0r0,132r-492,0r0,-159r-224,0r-72,159r-167,0","w":981},"\u00aa":{"d":"230,-535v-33,25,-117,8,-118,58v0,29,26,37,45,37v75,0,73,-46,73,-95xm20,-605v10,-81,72,-108,156,-109v70,0,150,14,150,89v0,77,-10,186,12,241r-101,0v-4,-11,-6,-21,-7,-31v-68,66,-220,58,-220,-60v0,-73,57,-90,114,-97v60,-7,107,-6,107,-38v0,-34,-27,-39,-60,-39v-23,0,-46,13,-49,44r-102,0","w":344},"\u0141":{"d":"69,0r0,-214r-80,56r0,-112r80,-56r0,-388r157,0r0,278r211,-148r0,112r-211,148r0,192r348,0r0,132r-505,0","w":593,"k":{"T":111,"V":92,"W":55,"y":37,"\u00fd":37,"\u00ff":37,"Y":111,"\u00dd":111,"\u0178":111,"\u2019":74}},"\u00d8":{"d":"34,-10r86,-95v-54,-66,-82,-153,-82,-249v0,-212,130,-377,351,-377v92,0,168,28,225,77r80,-89r50,44r-84,93v52,66,80,154,80,252v0,206,-130,371,-351,371v-92,0,-168,-29,-223,-76r-83,92xm223,-219r296,-329v-30,-31,-73,-51,-130,-51v-190,0,-230,227,-166,380xm556,-490r-295,326v30,30,72,49,128,49v191,-1,228,-222,167,-375","w":778},"\u0152":{"d":"544,0v-2,-17,4,-41,-2,-54v-42,46,-110,71,-172,71v-211,0,-332,-172,-332,-370v0,-198,124,-378,335,-378v62,0,130,18,169,68r2,0r0,-51r500,0r0,132r-354,0r0,153r324,0r0,122r-324,0r0,175r361,0r0,132r-507,0xm538,-278r0,-170v0,-90,-65,-151,-154,-151v-139,0,-189,125,-189,244v0,117,52,240,186,240v96,0,157,-66,157,-163","w":1093},"\u00ba":{"d":"12,-544v0,-105,68,-170,171,-170v104,0,172,65,172,170v0,105,-68,169,-172,169v-103,0,-171,-64,-171,-169xm183,-639v-86,2,-87,186,0,189v89,-3,87,-187,0,-189","w":367},"\u00e6":{"d":"385,-252v-55,45,-205,5,-205,104v0,52,45,67,88,67v52,0,117,-31,117,-107r0,-64xm878,-224r-369,0v-2,68,44,143,123,143v62,0,94,-30,103,-81r138,0v-39,186,-316,240,-431,88v-48,63,-134,88,-211,88v-98,0,-193,-40,-193,-154v0,-118,87,-145,173,-158v121,-18,174,-19,174,-72v0,-54,-46,-66,-92,-66v-54,0,-97,20,-99,80r-142,0v5,-130,123,-175,244,-175v60,0,135,16,171,70v40,-47,91,-70,173,-70v173,0,238,146,238,307xm509,-314r227,0v1,-63,-40,-122,-111,-122v-73,0,-115,59,-116,122","w":907},"\u0131":{"d":"58,0r0,-517r142,0r0,517r-142,0","w":258},"\u0142":{"d":"58,0r0,-286r-67,53r0,-102r67,-53r0,-326r142,0r0,214r67,-53r0,102r-67,53r0,398r-142,0","w":258},"\u00f8":{"d":"195,-172r193,-220v-19,-20,-46,-32,-83,-32v-127,0,-144,149,-110,252xm415,-349r-195,222v19,21,47,34,85,34v130,-1,145,-152,110,-256xm44,-1r60,-68v-43,-47,-66,-112,-66,-189v0,-165,105,-273,267,-273v64,0,119,17,163,48r53,-61r37,32r-54,61v44,47,69,114,69,193v0,164,-105,272,-268,272v-65,0,-120,-17,-165,-50r-59,67","w":611},"\u0153":{"d":"528,-314r227,0v-3,-66,-40,-110,-115,-110v-71,0,-109,49,-112,110xm290,-93v95,0,114,-92,114,-167v0,-69,-16,-164,-111,-164v-87,0,-113,89,-113,168v0,71,25,163,110,163xm897,-224r-369,0v0,74,40,131,123,131v52,0,85,-24,104,-71r138,0v-33,112,-125,178,-242,178v-72,0,-147,-24,-187,-88v-36,63,-114,88,-183,88v-160,0,-243,-128,-243,-275v0,-152,100,-270,254,-270v67,0,141,22,178,82v36,-53,111,-82,173,-82v183,0,254,142,254,307","w":926},"\u00df":{"d":"56,0r0,-491v-1,-112,36,-240,235,-240v119,0,227,60,227,192v0,64,-41,120,-93,141v87,19,130,93,130,179v0,124,-90,233,-217,233v-27,0,-55,-2,-82,-6r0,-116v87,24,157,-35,157,-116v0,-83,-59,-135,-157,-120r0,-94v66,9,127,-18,127,-87v0,-84,-66,-89,-96,-89v-57,0,-89,39,-89,98r0,516r-142,0","w":611},"\u00b9":{"d":"289,-705r0,432r-102,0r0,-274r-110,0r0,-75v64,2,119,-19,128,-83r84,0","w":392},"\u00ac":{"d":"552,-406r0,307r-107,0r0,-200r-397,0r0,-107r504,0","w":600},"\u00b5":{"d":"539,-517r0,517r-135,0r0,-72r-3,0v-36,58,-98,86,-130,86v-40,0,-63,-11,-75,-24r0,192r-142,0r0,-699r142,0r0,292v0,85,25,127,91,127v77,0,110,-43,110,-148r0,-271r142,0","w":593},"\u2122":{"d":"928,-714r0,412r-96,0r0,-292r-2,0r-106,292r-69,0r-106,-292r-2,0r0,292r-96,0r0,-412r136,0r103,271r103,-271r135,0xm398,-714r0,80r-117,0r0,332r-102,0r0,-332r-117,0r0,-80r336,0","w":1000},"\u00d0":{"d":"69,0r0,-311r-66,0r0,-116r66,0r0,-287r308,0v185,0,324,116,324,353v0,207,-106,361,-324,361r-308,0xm226,-582r0,155r160,0r0,117r-160,0r0,178v189,7,318,9,318,-214v0,-144,-50,-236,-206,-236r-112,0","w":741},"\u00bd":{"d":"152,22r414,-744r85,0r-412,744r-87,0xm236,-705r0,432r-102,0r0,-274r-110,0r0,-75v64,2,119,-19,128,-83r84,0xm846,-306v0,134,-153,140,-213,226r209,0r0,80r-334,0v1,-106,62,-147,140,-196v40,-26,95,-51,96,-103v0,-35,-24,-62,-61,-62v-56,0,-74,54,-72,94r-102,0v-1,-103,58,-174,181,-174v83,0,156,46,156,135","w":889},"\u00b1":{"d":"354,-506r0,131r199,0r0,107r-199,0r0,131r-107,0r0,-131r-199,0r0,-107r199,0r0,-131r107,0xm48,0r0,-107r505,0r0,107r-505,0","w":600},"\u00de":{"d":"69,0r0,-714r157,0r0,97r165,0v178,0,247,113,247,229v0,116,-69,229,-247,229r-165,0r0,159r-157,0xm226,-495r0,214v122,-5,260,30,260,-107v0,-137,-138,-102,-260,-107","w":667},"\u00bc":{"d":"689,0r0,-89r-192,0r0,-93r188,-238r100,0r0,251r57,0r0,80r-57,0r0,89r-96,0xm689,-169v-2,-46,4,-102,-2,-144r-114,144r116,0xm152,22r414,-744r85,0r-412,744r-87,0xm236,-705r0,432r-102,0r0,-274r-110,0r0,-75v64,2,119,-19,128,-83r84,0","w":892},"\u00f7":{"d":"48,-199r0,-107r505,0r0,107r-505,0xm216,-460v0,-47,39,-85,85,-85v45,0,84,39,84,85v0,42,-39,84,-83,84v-47,0,-86,-38,-86,-84xm216,-45v0,-47,39,-84,85,-84v45,0,84,38,84,84v0,42,-39,85,-83,85v-47,0,-86,-39,-86,-85","w":600},"\u00a6":{"d":"58,89r0,-250r107,0r0,250r-107,0xm165,-661r0,250r-107,0r0,-250r107,0","w":223},"\u00b0":{"d":"52,-566v0,-82,66,-148,148,-148v82,0,148,66,148,148v0,82,-66,148,-148,148v-82,0,-148,-66,-148,-148xm117,-566v0,48,40,88,83,88v43,0,83,-40,83,-88v0,-48,-40,-88,-83,-88v-43,0,-83,40,-83,88","w":400},"\u00fe":{"d":"54,182r0,-896r142,0r0,263r2,0v34,-55,90,-80,147,-80v162,0,235,131,235,278v0,138,-76,267,-227,267v-64,0,-120,-30,-157,-78r0,246r-142,0xm438,-257v0,-82,-33,-167,-124,-167v-93,0,-123,83,-123,167v0,84,32,164,124,164v93,0,123,-80,123,-164","w":611},"\u00be":{"d":"709,0r0,-89r-192,0r0,-93r188,-238r100,0r0,251r57,0r0,80r-57,0r0,89r-96,0xm709,-169v-2,-46,4,-102,-2,-144r-114,144r116,0xm239,22r414,-744r85,0r-412,744r-87,0xm181,-464r0,-70v38,0,95,0,95,-47v0,-33,-30,-53,-62,-53v-43,0,-68,32,-67,72r-96,0v3,-93,63,-152,162,-152v79,0,159,41,159,123v0,42,-26,73,-66,88v50,9,81,48,81,94v0,96,-80,145,-173,145v-108,0,-177,-56,-175,-160r96,0v2,43,27,80,77,80v40,0,73,-26,73,-63v0,-57,-61,-57,-104,-57","w":889},"\u00b2":{"d":"365,-579v0,134,-153,140,-213,226r209,0r0,80r-334,0v1,-106,62,-147,140,-196v40,-26,95,-51,96,-103v0,-35,-24,-62,-61,-62v-56,0,-74,54,-72,94r-102,0v-1,-103,58,-174,181,-174v83,0,156,46,156,135","w":392},"\u00ae":{"d":"16,-358v0,-227,181,-373,384,-373v203,0,384,146,384,373v0,228,-181,375,-384,375v-203,0,-384,-147,-384,-375xm118,-358v0,171,125,295,282,295v155,0,282,-124,282,-295v0,-170,-127,-293,-282,-293v-157,0,-282,123,-282,293xm251,-149r0,-419r158,0v105,0,164,33,164,124v0,77,-48,107,-110,112r112,183r-87,0r-102,-179r-52,0r0,179r-83,0xm334,-503r0,110v69,-4,160,19,156,-58v-3,-68,-90,-49,-156,-52","w":800},"\u2212":{"d":"48,-199r0,-107r505,0r0,107r-505,0","w":600},"\u00f0":{"d":"305,-93v97,0,126,-83,126,-165v0,-74,-35,-153,-127,-153v-93,0,-124,80,-124,153v0,82,29,165,125,165xm133,-593r107,-54v-28,-20,-56,-37,-84,-50r92,-69v36,20,69,42,99,66r123,-62r52,59r-114,57v106,102,165,219,165,373v0,164,-105,287,-268,287v-162,0,-267,-108,-267,-261v0,-123,70,-259,230,-259v39,0,89,11,137,40v-24,-56,-69,-98,-102,-127r-112,56","w":611},"\u00d7":{"d":"140,-17r-76,-76r161,-160r-159,-160r76,-76r159,160r160,-160r76,76r-161,160r161,160r-76,76r-160,-161","w":600},"\u00b3":{"d":"164,-464r0,-70v38,0,95,0,95,-47v0,-33,-30,-53,-62,-53v-43,0,-68,32,-67,72r-96,0v3,-93,63,-152,162,-152v79,0,159,41,159,123v0,42,-26,73,-66,88v50,9,81,48,81,94v0,96,-80,145,-173,145v-108,0,-177,-56,-175,-160r96,0v2,43,27,80,77,80v40,0,73,-26,73,-63v0,-57,-61,-57,-104,-57","w":392},"\u00a9":{"d":"16,-357v0,-228,181,-374,384,-374v203,0,384,146,384,374v0,227,-181,374,-384,374v-203,0,-384,-147,-384,-374xm118,-357v0,170,125,294,282,294v155,0,282,-124,282,-294v0,-171,-127,-294,-282,-294v-157,0,-282,123,-282,294xm515,-295r81,0v-16,100,-93,158,-182,158v-130,0,-215,-97,-215,-222v0,-129,80,-224,213,-224v92,0,167,54,181,155r-78,0v-10,-47,-51,-75,-103,-75v-76,0,-117,60,-117,142v0,78,46,144,119,144v55,0,95,-30,101,-78","w":800},"\u00c1":{"d":"-7,0r271,-714r161,0r267,714r-163,0r-54,-159r-267,0r-56,159r-159,0xm342,-538r-93,262r185,0r-90,-262r-2,0xm520,-920r-154,142r-99,0r96,-142r157,0","w":685},"\u00c2":{"d":"-7,0r271,-714r161,0r267,714r-163,0r-54,-159r-267,0r-56,159r-159,0xm342,-538r-93,262r185,0r-90,-262r-2,0xm167,-778r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":685},"\u00c4":{"d":"-7,0r271,-714r161,0r267,714r-163,0r-54,-159r-267,0r-56,159r-159,0xm342,-538r-93,262r185,0r-90,-262r-2,0xm378,-794r0,-117r135,0r0,117r-135,0xm172,-794r0,-117r135,0r0,117r-135,0","w":685},"\u00c0":{"d":"-7,0r271,-714r161,0r267,714r-163,0r-54,-159r-267,0r-56,159r-159,0xm342,-538r-93,262r185,0r-90,-262r-2,0xm319,-778r-154,-142r157,0r96,142r-99,0","w":685},"\u00c5":{"d":"-7,0r271,-714r161,0r267,714r-163,0r-54,-159r-267,0r-56,159r-159,0xm342,-538r-93,262r185,0r-90,-262r-2,0xm279,-853v0,39,25,70,63,70v38,0,64,-31,64,-70v0,-39,-26,-70,-64,-70v-38,0,-63,31,-63,70xm220,-853v0,-67,55,-122,122,-122v68,0,123,55,123,122v0,67,-55,122,-123,122v-67,0,-122,-55,-122,-122","w":685},"\u00c3":{"d":"-7,0r271,-714r161,0r267,714r-163,0r-54,-159r-267,0r-56,159r-159,0xm342,-538r-93,262r185,0r-90,-262r-2,0xm285,-911v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":685},"\u00c7":{"d":"697,-474r-152,0v-10,-71,-78,-125,-156,-125v-141,0,-194,120,-194,245v0,119,53,239,194,239v96,0,150,-66,162,-160r152,0v-16,177,-137,290,-311,292r-26,36v52,-15,128,4,128,65v0,129,-165,107,-241,78r21,-48v29,13,122,41,124,-16v1,-41,-52,-34,-80,-25r-21,-24r48,-69v-194,-20,-307,-176,-307,-368v0,-212,130,-377,351,-377v157,0,289,92,308,257","w":741},"\u00c9":{"d":"69,0r0,-714r534,0r0,132r-377,0r0,153r346,0r0,122r-346,0r0,175r385,0r0,132r-542,0xm502,-920r-154,142r-99,0r96,-142r157,0","w":648},"\u00ca":{"d":"69,0r0,-714r534,0r0,132r-377,0r0,153r346,0r0,122r-346,0r0,175r385,0r0,132r-542,0xm149,-778r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":648},"\u00cb":{"d":"69,0r0,-714r534,0r0,132r-377,0r0,153r346,0r0,122r-346,0r0,175r385,0r0,132r-542,0xm360,-794r0,-117r135,0r0,117r-135,0xm154,-794r0,-117r135,0r0,117r-135,0","w":648},"\u00c8":{"d":"69,0r0,-714r534,0r0,132r-377,0r0,153r346,0r0,122r-346,0r0,175r385,0r0,132r-542,0xm301,-778r-154,-142r157,0r96,142r-99,0","w":648},"\u00cd":{"d":"69,0r0,-714r157,0r0,714r-157,0xm325,-920r-154,142r-99,0r96,-142r157,0","w":295},"\u00ce":{"d":"69,0r0,-714r157,0r0,714r-157,0xm-28,-778r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":295},"\u00cf":{"d":"69,0r0,-714r157,0r0,714r-157,0xm183,-794r0,-117r135,0r0,117r-135,0xm-23,-794r0,-117r135,0r0,117r-135,0","w":295},"\u00cc":{"d":"69,0r0,-714r157,0r0,714r-157,0xm124,-778r-154,-142r157,0r96,142r-99,0","w":295},"\u00d1":{"d":"69,0r0,-714r156,0r298,479r2,0r0,-479r147,0r0,714r-157,0r-297,-478r-2,0r0,478r-147,0xm313,-911v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":741},"\u00d3":{"d":"38,-354v0,-212,130,-377,351,-377v221,0,351,165,351,377v0,206,-130,371,-351,371v-221,0,-351,-165,-351,-371xm195,-354v0,119,53,239,194,239v141,0,194,-120,194,-239v0,-125,-53,-245,-194,-245v-141,0,-194,120,-194,245xm567,-920r-154,142r-99,0r96,-142r157,0","w":778},"\u00d4":{"d":"38,-354v0,-212,130,-377,351,-377v221,0,351,165,351,377v0,206,-130,371,-351,371v-221,0,-351,-165,-351,-371xm195,-354v0,119,53,239,194,239v141,0,194,-120,194,-239v0,-125,-53,-245,-194,-245v-141,0,-194,120,-194,245xm214,-778r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":778},"\u00d6":{"d":"38,-354v0,-212,130,-377,351,-377v221,0,351,165,351,377v0,206,-130,371,-351,371v-221,0,-351,-165,-351,-371xm195,-354v0,119,53,239,194,239v141,0,194,-120,194,-239v0,-125,-53,-245,-194,-245v-141,0,-194,120,-194,245xm425,-794r0,-117r135,0r0,117r-135,0xm219,-794r0,-117r135,0r0,117r-135,0","w":778},"\u00d2":{"d":"38,-354v0,-212,130,-377,351,-377v221,0,351,165,351,377v0,206,-130,371,-351,371v-221,0,-351,-165,-351,-371xm195,-354v0,119,53,239,194,239v141,0,194,-120,194,-239v0,-125,-53,-245,-194,-245v-141,0,-194,120,-194,245xm366,-778r-154,-142r157,0r96,142r-99,0","w":778},"\u00d5":{"d":"38,-354v0,-212,130,-377,351,-377v221,0,351,165,351,377v0,206,-130,371,-351,371v-221,0,-351,-165,-351,-371xm195,-354v0,119,53,239,194,239v141,0,194,-120,194,-239v0,-125,-53,-245,-194,-245v-141,0,-194,120,-194,245xm332,-911v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":778},"\u0160":{"d":"24,-237r152,0v0,95,74,132,158,132v55,0,139,-16,139,-89v0,-77,-107,-90,-212,-118v-106,-28,-213,-69,-213,-203v0,-146,138,-216,267,-216v149,0,286,65,286,230r-152,0v-5,-86,-66,-108,-141,-108v-50,0,-108,21,-108,81v0,55,34,62,213,108v52,13,212,46,212,208v0,131,-103,229,-297,229v-158,0,-306,-78,-304,-254xm500,-920r-110,142r-130,0r-111,-142r112,0r64,81r65,-81r110,0","w":649},"\u00da":{"d":"675,-714r0,444v0,193,-114,287,-305,287v-192,0,-304,-93,-304,-287r0,-444r157,0r0,444v0,78,20,155,147,155v112,0,148,-49,148,-155r0,-444r157,0xm548,-920r-154,142r-99,0r96,-142r157,0","w":741},"\u00db":{"d":"675,-714r0,444v0,193,-114,287,-305,287v-192,0,-304,-93,-304,-287r0,-444r157,0r0,444v0,78,20,155,147,155v112,0,148,-49,148,-155r0,-444r157,0xm195,-778r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":741},"\u00dc":{"d":"675,-714r0,444v0,193,-114,287,-305,287v-192,0,-304,-93,-304,-287r0,-444r157,0r0,444v0,78,20,155,147,155v112,0,148,-49,148,-155r0,-444r157,0xm406,-794r0,-117r135,0r0,117r-135,0xm200,-794r0,-117r135,0r0,117r-135,0","w":741},"\u00d9":{"d":"675,-714r0,444v0,193,-114,287,-305,287v-192,0,-304,-93,-304,-287r0,-444r157,0r0,444v0,78,20,155,147,155v112,0,148,-49,148,-155r0,-444r157,0xm347,-778r-154,-142r157,0r96,142r-99,0","w":741},"\u00dd":{"d":"254,0r0,-278r-263,-436r177,0r167,282r166,-282r175,0r-265,440r0,274r-157,0xm511,-920r-154,142r-99,0r96,-142r157,0","w":667,"k":{"v":55,"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":111,".":111,"e":92,"\u00e9":92,"\u00ea":92,"\u00eb":92,"\u00e8":92,"o":92,"\u00f8":92,"\u0153":92,"\u00f3":92,"\u00f4":92,"\u00f6":92,"\u00f2":92,"\u00f5":92,"q":92,"-":111,"a":92,"\u00e6":92,"\u00e1":92,"\u00e2":92,"\u00e4":92,"\u00e0":92,"\u00e5":92,"\u00e3":92,"u":74,"\u00fa":74,"\u00fb":74,"\u00fc":74,"\u00f9":74,":":80,";":68,"i":13,"\u0131":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"p":74}},"\u0178":{"d":"254,0r0,-278r-263,-436r177,0r167,282r166,-282r175,0r-265,440r0,274r-157,0xm369,-794r0,-117r135,0r0,117r-135,0xm163,-794r0,-117r135,0r0,117r-135,0","w":667,"k":{"v":55,"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":111,".":111,"e":92,"\u00e9":92,"\u00ea":92,"\u00eb":92,"\u00e8":92,"o":92,"\u00f8":92,"\u0153":92,"\u00f3":92,"\u00f4":92,"\u00f6":92,"\u00f2":92,"\u00f5":92,"q":92,"-":111,"a":92,"\u00e6":92,"\u00e1":92,"\u00e2":92,"\u00e4":92,"\u00e0":92,"\u00e5":92,"\u00e3":92,"u":74,"\u00fa":74,"\u00fb":74,"\u00fc":74,"\u00f9":74,":":80,";":68,"i":13,"\u0131":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"p":74}},"\u017d":{"d":"23,0r0,-124r383,-458r-353,0r0,-132r562,0r0,124r-383,458r393,0r0,132r-602,0xm500,-920r-110,142r-130,0r-111,-142r112,0r64,81r65,-81r110,0","w":648},"\u00e1":{"d":"376,-253v-53,42,-204,6,-202,106v0,53,41,66,87,66v111,0,115,-88,115,-119r0,-53xm190,-358r-142,0v8,-133,127,-173,243,-173v103,0,227,23,227,147r0,269v0,47,5,94,18,115r-144,0v-5,-16,-9,-33,-10,-50v-102,104,-350,90,-350,-91v0,-117,88,-144,176,-157v87,-12,168,-10,168,-68v0,-61,-42,-70,-92,-70v-54,0,-89,22,-94,78xm465,-723r-154,142r-99,0r96,-142r157,0","w":574},"\u00e2":{"d":"376,-253v-53,42,-204,6,-202,106v0,53,41,66,87,66v111,0,115,-88,115,-119r0,-53xm190,-358r-142,0v8,-133,127,-173,243,-173v103,0,227,23,227,147r0,269v0,47,5,94,18,115r-144,0v-5,-16,-9,-33,-10,-50v-102,104,-350,90,-350,-91v0,-117,88,-144,176,-157v87,-12,168,-10,168,-68v0,-61,-42,-70,-92,-70v-54,0,-89,22,-94,78xm112,-581r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":574},"\u00e4":{"d":"376,-253v-53,42,-204,6,-202,106v0,53,41,66,87,66v111,0,115,-88,115,-119r0,-53xm190,-358r-142,0v8,-133,127,-173,243,-173v103,0,227,23,227,147r0,269v0,47,5,94,18,115r-144,0v-5,-16,-9,-33,-10,-50v-102,104,-350,90,-350,-91v0,-117,88,-144,176,-157v87,-12,168,-10,168,-68v0,-61,-42,-70,-92,-70v-54,0,-89,22,-94,78xm323,-597r0,-117r135,0r0,117r-135,0xm117,-597r0,-117r135,0r0,117r-135,0","w":574},"\u00e0":{"d":"376,-253v-53,42,-204,6,-202,106v0,53,41,66,87,66v111,0,115,-88,115,-119r0,-53xm190,-358r-142,0v8,-133,127,-173,243,-173v103,0,227,23,227,147r0,269v0,47,5,94,18,115r-144,0v-5,-16,-9,-33,-10,-50v-102,104,-350,90,-350,-91v0,-117,88,-144,176,-157v87,-12,168,-10,168,-68v0,-61,-42,-70,-92,-70v-54,0,-89,22,-94,78xm264,-581r-154,-142r157,0r96,142r-99,0","w":574},"\u00e5":{"d":"376,-253v-53,42,-204,6,-202,106v0,53,41,66,87,66v111,0,115,-88,115,-119r0,-53xm190,-358r-142,0v8,-133,127,-173,243,-173v103,0,227,23,227,147r0,269v0,47,5,94,18,115r-144,0v-5,-16,-9,-33,-10,-50v-102,104,-350,90,-350,-91v0,-117,88,-144,176,-157v87,-12,168,-10,168,-68v0,-61,-42,-70,-92,-70v-54,0,-89,22,-94,78xm224,-656v0,39,25,70,63,70v38,0,64,-31,64,-70v0,-39,-26,-70,-64,-70v-38,0,-63,31,-63,70xm165,-656v0,-67,55,-122,122,-122v68,0,123,55,123,122v0,67,-55,122,-123,122v-67,0,-122,-55,-122,-122","w":574},"\u00e3":{"d":"376,-253v-53,42,-204,6,-202,106v0,53,41,66,87,66v111,0,115,-88,115,-119r0,-53xm190,-358r-142,0v8,-133,127,-173,243,-173v103,0,227,23,227,147r0,269v0,47,5,94,18,115r-144,0v-5,-16,-9,-33,-10,-50v-102,104,-350,90,-350,-91v0,-117,88,-144,176,-157v87,-12,168,-10,168,-68v0,-61,-42,-70,-92,-70v-54,0,-89,22,-94,78xm230,-714v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":574},"\u00e7":{"d":"545,-335r-139,0v-9,-58,-46,-89,-105,-89v-91,0,-121,92,-121,168v0,74,29,163,118,163v66,0,104,-42,113,-105r137,0v-17,133,-107,207,-237,211r-28,40v52,-15,128,4,128,65v0,129,-165,107,-241,78r21,-48v29,13,122,41,124,-16v1,-41,-52,-34,-80,-25r-21,-24r50,-72v-136,-14,-226,-119,-226,-262v0,-161,96,-280,264,-280v122,0,234,64,243,196","w":574},"\u00e9":{"d":"544,-224r-373,0v4,90,48,131,127,131v57,0,103,-35,112,-67r125,0v-40,122,-125,174,-242,174v-163,0,-264,-112,-264,-272v0,-155,107,-273,264,-273v176,0,261,148,251,307xm171,-314r231,0v-13,-72,-44,-110,-113,-110v-90,0,-116,70,-118,110xm465,-723r-154,142r-99,0r96,-142r157,0","w":574},"\u00ea":{"d":"544,-224r-373,0v4,90,48,131,127,131v57,0,103,-35,112,-67r125,0v-40,122,-125,174,-242,174v-163,0,-264,-112,-264,-272v0,-155,107,-273,264,-273v176,0,261,148,251,307xm171,-314r231,0v-13,-72,-44,-110,-113,-110v-90,0,-116,70,-118,110xm112,-581r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":574},"\u00eb":{"d":"544,-224r-373,0v4,90,48,131,127,131v57,0,103,-35,112,-67r125,0v-40,122,-125,174,-242,174v-163,0,-264,-112,-264,-272v0,-155,107,-273,264,-273v176,0,261,148,251,307xm171,-314r231,0v-13,-72,-44,-110,-113,-110v-90,0,-116,70,-118,110xm323,-597r0,-117r135,0r0,117r-135,0xm117,-597r0,-117r135,0r0,117r-135,0","w":574},"\u00e8":{"d":"544,-224r-373,0v4,90,48,131,127,131v57,0,103,-35,112,-67r125,0v-40,122,-125,174,-242,174v-163,0,-264,-112,-264,-272v0,-155,107,-273,264,-273v176,0,261,148,251,307xm171,-314r231,0v-13,-72,-44,-110,-113,-110v-90,0,-116,70,-118,110xm264,-581r-154,-142r157,0r96,142r-99,0","w":574},"\u00ed":{"d":"58,0r0,-517r142,0r0,517r-142,0xm307,-723r-154,142r-99,0r96,-142r157,0","w":258},"\u00ee":{"d":"58,0r0,-517r142,0r0,517r-142,0xm-46,-581r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":258},"\u00ef":{"d":"58,0r0,-517r142,0r0,517r-142,0xm165,-597r0,-117r135,0r0,117r-135,0xm-41,-597r0,-117r135,0r0,117r-135,0","w":258},"\u00ec":{"d":"58,0r0,-517r142,0r0,517r-142,0xm106,-581r-154,-142r157,0r96,142r-99,0","w":258},"\u00f1":{"d":"54,0r0,-517r135,0r0,72r3,0v36,-58,98,-86,158,-86v151,0,189,85,189,213r0,318r-142,0r0,-292v0,-85,-25,-127,-91,-127v-77,0,-110,43,-110,148r0,271r-142,0xm239,-714v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":593},"\u00f3":{"d":"38,-258v0,-165,105,-273,267,-273v163,0,268,108,268,273v0,164,-105,272,-268,272v-162,0,-267,-108,-267,-272xm180,-258v0,82,29,165,125,165v97,0,126,-83,126,-165v0,-83,-29,-166,-126,-166v-96,0,-125,83,-125,166xm483,-723r-154,142r-99,0r96,-142r157,0","w":611},"\u00f4":{"d":"38,-258v0,-165,105,-273,267,-273v163,0,268,108,268,273v0,164,-105,272,-268,272v-162,0,-267,-108,-267,-272xm180,-258v0,82,29,165,125,165v97,0,126,-83,126,-165v0,-83,-29,-166,-126,-166v-96,0,-125,83,-125,166xm130,-581r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":611},"\u00f6":{"d":"38,-258v0,-165,105,-273,267,-273v163,0,268,108,268,273v0,164,-105,272,-268,272v-162,0,-267,-108,-267,-272xm180,-258v0,82,29,165,125,165v97,0,126,-83,126,-165v0,-83,-29,-166,-126,-166v-96,0,-125,83,-125,166xm341,-597r0,-117r135,0r0,117r-135,0xm135,-597r0,-117r135,0r0,117r-135,0","w":611},"\u00f2":{"d":"38,-258v0,-165,105,-273,267,-273v163,0,268,108,268,273v0,164,-105,272,-268,272v-162,0,-267,-108,-267,-272xm180,-258v0,82,29,165,125,165v97,0,126,-83,126,-165v0,-83,-29,-166,-126,-166v-96,0,-125,83,-125,166xm282,-581r-154,-142r157,0r96,142r-99,0","w":611},"\u00f5":{"d":"38,-258v0,-165,105,-273,267,-273v163,0,268,108,268,273v0,164,-105,272,-268,272v-162,0,-267,-108,-267,-272xm180,-258v0,82,29,165,125,165v97,0,126,-83,126,-165v0,-83,-29,-166,-126,-166v-96,0,-125,83,-125,166xm248,-714v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":611},"\u0161":{"d":"29,-168r135,0v1,62,53,87,109,87v41,0,93,-16,93,-66v0,-43,-59,-58,-161,-80v-82,-18,-164,-47,-164,-138v0,-132,114,-166,225,-166v113,0,217,38,228,165r-135,0v-4,-55,-46,-70,-97,-70v-32,0,-79,6,-79,48v0,51,80,58,161,77v83,19,164,49,164,145v0,136,-118,180,-236,180v-120,0,-237,-45,-243,-182xm444,-723r-110,142r-130,0r-111,-142r112,0r64,81r65,-81r110,0","w":537},"\u00fa":{"d":"539,-517r0,517r-135,0r0,-72r-3,0v-36,58,-98,86,-158,86v-151,0,-189,-85,-189,-213r0,-318r142,0r0,292v0,85,25,127,91,127v77,0,110,-43,110,-148r0,-271r142,0xm474,-723r-154,142r-99,0r96,-142r157,0","w":593},"\u00fb":{"d":"539,-517r0,517r-135,0r0,-72r-3,0v-36,58,-98,86,-158,86v-151,0,-189,-85,-189,-213r0,-318r142,0r0,292v0,85,25,127,91,127v77,0,110,-43,110,-148r0,-271r142,0xm121,-581r111,-142r130,0r110,142r-117,0r-62,-81r-64,81r-108,0","w":593},"\u00fc":{"d":"539,-517r0,517r-135,0r0,-72r-3,0v-36,58,-98,86,-158,86v-151,0,-189,-85,-189,-213r0,-318r142,0r0,292v0,85,25,127,91,127v77,0,110,-43,110,-148r0,-271r142,0xm332,-597r0,-117r135,0r0,117r-135,0xm126,-597r0,-117r135,0r0,117r-135,0","w":593},"\u00f9":{"d":"539,-517r0,517r-135,0r0,-72r-3,0v-36,58,-98,86,-158,86v-151,0,-189,-85,-189,-213r0,-318r142,0r0,292v0,85,25,127,91,127v77,0,110,-43,110,-148r0,-271r142,0xm273,-581r-154,-142r157,0r96,142r-99,0","w":593},"\u00fd":{"d":"525,-517r-216,582v-33,111,-133,128,-265,112r0,-117v27,2,55,7,83,5v49,-4,65,-56,49,-97r-182,-485r152,0r117,354r2,0r113,-354r147,0xm437,-723r-154,142r-99,0r96,-142r157,0","w":519,"k":{",":55,".":55}},"\u00ff":{"d":"525,-517r-216,582v-33,111,-133,128,-265,112r0,-117v27,2,55,7,83,5v49,-4,65,-56,49,-97r-182,-485r152,0r117,354r2,0r113,-354r147,0xm295,-597r0,-117r135,0r0,117r-135,0xm89,-597r0,-117r135,0r0,117r-135,0","w":519,"k":{",":55,".":55}},"\u017e":{"d":"22,0r0,-107r269,-303r-249,0r0,-107r436,0r0,107r-269,303r288,0r0,107r-475,0xm435,-723r-110,142r-130,0r-111,-142r112,0r64,81r65,-81r110,0","w":519},"\u2206":{"d":"27,0r0,-73r229,-644r148,0r222,642r0,75r-599,0xm155,-101r337,0r-109,-298v-16,-54,-46,-137,-57,-181r-3,0v-42,151,-114,331,-168,479","w":654},"\u2126":{"d":"173,-101r0,-3v-61,-58,-122,-156,-122,-284v0,-178,123,-324,303,-324v193,0,296,167,296,317v0,131,-61,234,-123,291r0,3r137,0r0,101r-261,0r0,-75v62,-41,121,-133,121,-293v0,-125,-59,-240,-170,-240v-107,0,-176,104,-176,245v0,145,58,249,122,288r0,75r-263,0r0,-101r136,0","w":704},"\u03bc":{"d":"539,-517r0,517r-135,0r0,-72r-3,0v-36,58,-98,86,-130,86v-40,0,-63,-11,-75,-24r0,192r-142,0r0,-699r142,0r0,292v0,85,25,127,91,127v77,0,110,-43,110,-148r0,-271r142,0","w":593},"\u03c0":{"d":"574,-420r-70,0v2,129,-8,322,13,420r-121,0v-31,-86,-12,-295,-17,-420r-139,0v-5,109,-29,315,-64,420r-122,0v34,-117,61,-309,63,-420v-48,0,-77,3,-98,10r-14,-84v25,-19,77,-33,162,-33r417,0","w":598},"\u20ac":{"d":"97,-455v28,-150,132,-266,297,-267v57,0,118,17,182,50r-61,125v-116,-77,-238,-59,-271,92r244,0r-31,72r-224,0r-1,42r213,0r-31,72r-174,0v30,183,180,196,302,95r-1,151v-46,27,-97,40,-154,40v-175,0,-270,-124,-294,-286r-77,0r31,-72r40,0v0,-21,0,-35,1,-42r-73,0r31,-72r51,0"},"\u2113":{"d":"441,-181r51,52v-52,102,-127,139,-206,139v-124,-1,-173,-78,-180,-177r-51,41r-32,-67v30,-25,57,-45,82,-69r0,-254v0,-178,81,-254,178,-254v96,0,138,79,138,177v0,119,-76,232,-196,349v-6,85,26,155,90,155v54,0,99,-47,126,-92xm225,-518r0,159v69,-79,118,-166,118,-238v0,-52,-14,-84,-55,-84v-30,0,-63,36,-63,163","w":510},"\u212e":{"d":"843,-340r-655,0v-3,0,-5,1,-5,4r0,199v0,8,3,16,8,22v64,66,151,108,248,108v104,0,197,-47,261,-121r58,0v-72,85,-190,141,-320,141v-223,0,-404,-162,-404,-363v0,-201,181,-364,404,-364v227,0,410,163,405,374xm694,-366r0,-199v0,-9,-3,-17,-10,-24v-63,-62,-149,-103,-245,-103v-96,0,-183,42,-247,107v-6,6,-9,15,-9,24r0,195v0,2,2,7,5,7r502,0v3,0,4,-5,4,-7","w":878},"\u2202":{"d":"103,-639r-35,-94v31,-23,89,-57,182,-57v145,0,273,127,273,382v0,250,-102,417,-279,417v-140,0,-206,-128,-206,-237v0,-162,97,-263,215,-263v83,0,131,55,148,80v11,-143,-57,-275,-167,-276v-61,0,-105,26,-131,48xm161,-224v0,72,37,130,96,129v75,0,122,-112,132,-211v-9,-32,-49,-85,-111,-85v-69,0,-117,79,-117,167","w":572},"\u220f":{"d":"692,-588r-101,0r0,685r-123,0r0,-685r-219,0r0,685r-123,0r0,-685r-101,0r0,-113r667,0r0,113","w":718},"\u2211":{"d":"536,97r-513,0r0,-80r242,-320r-233,-311r0,-87r488,0r0,105r-321,0r0,4r206,269r-229,301r0,3r360,0r0,116"},"\u2219":{"d":"55,-287v0,-47,39,-85,85,-85v45,0,84,39,84,85v0,42,-39,84,-83,84v-47,0,-86,-38,-86,-84","w":278},"\u221a":{"d":"598,-841r-224,983r-99,0r-149,-442r-74,29r-20,-70r168,-68r104,321v9,32,12,68,22,88v3,-22,7,-58,15,-94r171,-747r86,0","w":590},"\u221e":{"d":"575,-455v87,0,154,65,154,166v0,108,-78,172,-160,172v-58,0,-112,-26,-179,-113v-52,63,-104,113,-185,113v-83,0,-157,-68,-157,-167v0,-101,71,-171,165,-171v75,0,129,45,180,111v43,-48,93,-112,182,-111xm118,-284v0,54,41,99,97,99v56,0,99,-51,137,-96v-41,-56,-77,-108,-142,-108v-57,0,-92,46,-92,105xm659,-284v0,-61,-37,-105,-92,-105v-61,0,-107,65,-139,101v61,75,93,103,143,103v57,0,88,-55,88,-99","w":778},"\u222b":{"d":"323,-778v-79,0,-77,80,-77,195v0,163,14,304,14,483v0,96,-16,161,-36,201v-39,75,-133,86,-204,56r16,-89v22,11,69,17,87,-10v16,-25,27,-66,27,-157v0,-182,-15,-325,-15,-496v0,-117,19,-180,60,-226v39,-44,120,-57,177,-34r-14,85v-9,-4,-21,-8,-35,-8","w":394},"\u2248":{"d":"182,-453v87,0,125,73,193,73v38,0,63,-29,90,-72r44,40v-31,60,-78,103,-135,103v-66,0,-131,-72,-198,-73v-44,0,-69,36,-93,72r-45,-41v29,-58,83,-102,144,-102xm182,-267v90,0,121,73,193,73v39,0,62,-29,90,-72r44,40v-31,59,-77,103,-135,103v-66,0,-132,-73,-198,-74v-45,0,-69,36,-93,73r-45,-41v29,-58,83,-102,144,-102","w":549},"\u2260":{"d":"403,-514r-39,89r136,0r0,72r-163,0r-60,136r223,0r0,72r-250,0r-50,114r-57,-23r40,-91r-135,0r0,-72r163,0r59,-136r-222,0r0,-72r249,0r49,-112","w":549},"\u2264":{"d":"498,-100r-445,-223r0,-78r445,-223r0,84r-373,176r0,3r373,177r0,84xm502,12r-453,0r0,-74r453,0r0,74","w":549},"\u2265":{"d":"55,-624r445,223r0,78r-445,223r0,-84r372,-177r0,-2r-372,-177r0,-84xm500,12r-450,0r0,-74r450,0r0,74","w":549},"\u25ca":{"d":"540,-350r-198,399r-100,0r-192,-399r198,-400r99,0xm430,-347v-43,-101,-100,-190,-133,-301r-3,0v-31,109,-91,197,-134,295v43,101,100,191,132,302r4,0v34,-111,90,-196,134,-296","w":590},"\u00a0":{"w":278},"\u00ad":{"d":"53,-212r0,-122r301,0r0,122r-301,0","w":407},"\u02c9":{"d":"-57,-616r0,-75r373,0r0,75r-373,0","w":259},"\u03a9":{"d":"173,-101r0,-3v-61,-58,-122,-156,-122,-284v0,-178,123,-324,303,-324v193,0,296,167,296,317v0,131,-61,234,-123,291r0,3r137,0r0,101r-261,0r0,-75v62,-41,121,-133,121,-293v0,-125,-59,-240,-170,-240v-107,0,-176,104,-176,245v0,145,58,249,122,288r0,75r-263,0r0,-101r136,0","w":704},"\u2215":{"d":"-166,22r414,-744r85,0r-412,744r-87,0","w":167},"\u2010":{"d":"53,-212r0,-122r301,0r0,122r-301,0","w":407}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1993, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-LtIt
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":556,"face":{"font-family":"Helvetica Neue LT Std","font-weight":300,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 4 3 2 2 2 9 2 4","ascent":"714","descent":"-286","x-height":"15","bbox":"-165 -951 1099 214","underline-thickness":"50","underline-position":"-50","slope":"-12","stemh":"53","stemv":"63","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":278},"!":{"d":"107,0r-84,0r23,-106r85,0xm122,-178r-38,0r53,-314r48,-222r67,0r-48,223","w":278},"\"":{"d":"137,-471r0,-243r58,0r0,243r-58,0xm262,-471r0,-243r58,0r0,243r-58,0","w":370},"#":{"d":"497,-268r-10,45r-101,0r-31,223r-50,0r31,-223r-141,0r-31,223r-50,0r31,-223r-110,0r10,-45r106,0r22,-156r-110,0r10,-45r106,0r31,-222r50,0r-31,222r141,0r31,-222r50,0r-31,222r105,0r-10,45r-101,0r-22,156r105,0xm364,-424r-141,0r-22,156r141,0"},"$":{"d":"268,-406r56,-265v-92,0,-190,37,-190,143v0,82,69,103,134,122xm297,-332r-61,288v103,6,218,-41,218,-152v0,-93,-83,-116,-157,-136xm573,-506r-68,0v-1,-106,-48,-150,-137,-161r-58,274v104,32,212,60,212,188v0,70,-44,220,-276,220v-8,0,-16,0,-23,-1r-18,86r-45,0r20,-91v-125,-18,-210,-96,-203,-244r68,0v-6,117,52,172,147,186r63,-296v-99,-23,-189,-68,-189,-180v0,-153,136,-204,270,-204r11,-52r45,0r-12,56v116,15,200,78,193,219"},"%":{"d":"202,-327v-88,0,-135,-59,-135,-141v0,-111,60,-238,186,-238v82,0,134,58,134,139v0,111,-58,240,-185,240xm203,-372v94,0,131,-114,131,-192v0,-56,-23,-97,-84,-97v-91,0,-130,121,-130,195v0,49,27,94,83,94xm581,15v-88,0,-135,-59,-135,-141v0,-111,60,-238,186,-238v82,0,134,58,134,139v0,111,-58,240,-185,240xm581,-30v94,0,131,-114,131,-192v0,-56,-23,-97,-84,-97v-91,0,-130,121,-130,195v0,49,27,94,83,94xm104,32r570,-755r55,0r-571,755r-54,0","w":833},"&":{"d":"278,-420v56,-31,147,-77,147,-152v0,-59,-43,-89,-96,-89v-57,0,-107,42,-107,102v0,48,33,99,56,139xm396,-130r-141,-221v-78,38,-175,87,-175,187v0,70,60,126,133,126v77,0,132,-30,183,-92xm489,-315r63,0v-15,67,-40,129,-85,187r83,128r-71,0r-54,-84v-51,62,-124,99,-207,99v-117,0,-201,-64,-201,-183v0,-124,109,-179,210,-227v-36,-54,-68,-99,-68,-166v0,-93,76,-153,172,-153v80,0,157,45,157,130v0,105,-101,161,-182,206r128,199v28,-35,45,-88,55,-136","w":611},"\u2019":{"d":"110,-471r8,-40v47,-14,58,-54,69,-97r-42,0r24,-106r84,0r-33,140v-15,64,-45,86,-110,103","w":278,"k":{"\u2019":125,"s":55,"\u0161":55}},"(":{"d":"156,191r-43,0v-44,-123,-71,-248,-64,-379v11,-212,108,-395,244,-541r52,0v-213,244,-300,564,-189,920","w":259},")":{"d":"87,-729r43,0v44,123,71,248,64,379v-11,212,-108,395,-244,541r-52,0v213,-244,300,-564,189,-920","w":259},"*":{"d":"173,-561r-101,-55r21,-35r102,57r26,-120r39,0r-25,124r116,-24r5,38r-115,25r60,102r-38,19r-59,-106r-86,92r-28,-27","w":352},"+":{"d":"274,-278r0,-225r53,0r0,225r225,0r0,53r-225,0r0,225r-53,0r0,-225r-225,0r0,-53r225,0","w":600},",":{"d":"-12,137r8,-40v47,-14,58,-54,69,-97r-42,0r24,-106r84,0r-33,140v-15,64,-45,86,-110,103","w":278},"-":{"d":"38,-246r12,-58r251,0r-12,58r-251,0","w":370},".":{"d":"107,0r-84,0r23,-106r85,0","w":278},"\/":{"d":"391,-729r-411,744r-59,0r411,-744r59,0","w":333},"0":{"d":"216,15v-150,0,-191,-131,-191,-259v0,-176,91,-462,308,-462v149,0,198,113,198,245v0,188,-85,476,-315,476xm468,-468v0,-95,-28,-185,-142,-185v-170,0,-238,297,-238,429v0,96,31,186,143,186v174,0,237,-296,237,-430"},"1":{"d":"134,-525r13,-50v86,-13,175,-49,222,-125r48,0r-150,700r-63,0r124,-581v-61,32,-127,45,-194,56"},"2":{"d":"523,-526v0,258,-393,266,-461,468r391,0r-11,58r-453,0v8,-149,126,-221,241,-285v116,-64,230,-121,230,-243v0,-85,-68,-125,-144,-125v-107,0,-168,86,-173,187r-63,0v6,-138,104,-240,242,-240v110,0,201,63,201,180"},"3":{"d":"9,-222r63,0v-6,109,44,184,154,184v103,0,189,-70,189,-174v0,-108,-86,-134,-190,-129r11,-53v113,2,222,-5,222,-137v0,-80,-65,-122,-136,-122v-102,0,-159,65,-175,166r-63,0v24,-134,100,-219,240,-219v104,0,197,58,197,173v0,90,-66,151,-147,170v69,17,104,76,104,147v0,147,-120,231,-247,231v-165,0,-226,-98,-222,-237"},"4":{"d":"407,-592r-335,365r258,0r79,-363xm10,-233r429,-467r56,0r-102,473r106,0r-12,53r-105,0r-38,174r-63,0r38,-174r-320,0"},"5":{"d":"60,-335r115,-356r357,0r-14,58r-306,0r-75,224v42,-36,97,-55,156,-55v121,0,194,90,194,206v0,159,-107,273,-267,273v-130,0,-213,-82,-205,-213r63,0v-9,101,49,160,149,160v119,0,197,-98,197,-209v0,-97,-51,-164,-153,-164v-62,0,-122,22,-155,81"},"6":{"d":"436,-252v0,-93,-68,-151,-159,-151v-108,0,-178,99,-178,200v0,91,57,165,153,165v121,0,184,-104,184,-214xm36,-221v1,-205,95,-485,316,-485v119,0,194,60,194,183r-63,0v-3,-88,-47,-130,-135,-130v-151,0,-206,181,-235,296r2,0v38,-64,108,-99,184,-99v123,0,200,94,200,212v0,151,-103,259,-255,259v-142,0,-208,-102,-208,-236"},"7":{"d":"110,-633r14,-58r447,0r-13,54v-175,170,-314,401,-387,637r-70,0v80,-259,223,-457,390,-633r-381,0"},"8":{"d":"81,-183v0,100,73,145,165,145v102,0,181,-63,181,-167v0,-104,-76,-140,-172,-140v-97,0,-174,62,-174,162xm490,-202v0,265,-472,305,-472,18v0,-115,86,-182,185,-198v-62,-20,-100,-77,-100,-140v0,-117,101,-184,210,-184v106,0,209,47,209,169v1,89,-65,153,-148,169v77,22,116,89,116,166xm317,-653v-79,0,-151,48,-151,134v0,83,65,121,142,121v83,0,151,-47,151,-135v0,-84,-64,-120,-142,-120"},"9":{"d":"302,-653v-121,0,-184,104,-184,214v0,93,68,151,159,151v108,0,178,-99,178,-200v0,-91,-57,-165,-153,-165xm518,-470v-1,205,-95,485,-316,485v-119,0,-194,-60,-194,-183r63,0v3,88,47,130,135,130v151,0,206,-181,235,-296r-2,0v-38,64,-108,99,-184,99v-123,0,-200,-94,-200,-212v0,-151,103,-259,255,-259v142,0,208,102,208,236"},":":{"d":"107,0r-84,0r23,-106r85,0xm197,-394r-84,0r23,-106r85,0","w":278},";":{"d":"-12,137r8,-40v47,-14,58,-54,69,-97r-42,0r24,-106r84,0r-33,140v-15,64,-45,86,-110,103xm197,-394r-84,0r23,-106r85,0","w":278},"<":{"d":"554,-47r0,55r-508,-234r0,-54r508,-234r0,55r-446,206","w":600},"=":{"d":"552,-378r0,53r-503,0r0,-53r503,0xm552,-181r0,53r-503,0r0,-53r503,0","w":600},">":{"d":"46,-47r446,-206r-446,-206r0,-55r508,234r0,54r-508,234r0,-55","w":600},"?":{"d":"258,-182r-63,0v16,-116,59,-149,148,-211v55,-38,114,-90,114,-159v0,-81,-55,-124,-134,-124v-105,0,-165,80,-173,183r-63,0v6,-144,95,-236,239,-236v101,0,194,56,194,168v0,109,-76,168,-160,222v-68,44,-86,81,-102,157xm147,0r23,-106r85,0r-24,106r-84,0","w":537},"@":{"d":"426,-510v-102,0,-170,137,-170,231v0,60,35,97,83,97v93,0,166,-147,166,-235v0,-47,-40,-93,-79,-93xm561,-544r53,0r-96,288v-14,43,-20,83,13,83v89,0,169,-136,169,-248v0,-165,-130,-263,-284,-263v-187,0,-316,147,-316,331v0,182,136,323,318,323v98,0,200,-50,258,-133r51,0v-60,110,-184,178,-309,178v-215,0,-371,-164,-371,-375v0,-208,163,-369,367,-369v193,0,339,127,339,311v0,161,-120,290,-232,290v-37,0,-60,-28,-69,-67v-30,32,-76,66,-127,66v-82,0,-132,-66,-132,-145v0,-138,95,-289,237,-289v44,0,84,24,106,84","w":800},"A":{"d":"-75,0r437,-714r74,0r130,714r-71,0r-36,-222r-326,0r-132,222r-76,0xm386,-656r-219,376r282,0r-61,-376r-2,0","w":630},"B":{"d":"148,-343r-62,285r242,0v99,0,204,-46,204,-158v0,-179,-221,-115,-384,-127xm5,0r155,-714r277,0v107,0,196,44,196,163v0,96,-67,160,-155,180v74,9,122,73,122,147v0,168,-138,224,-287,224r-308,0xm216,-656r-55,255r225,0v92,-2,179,-46,179,-143v-1,-160,-204,-101,-349,-112","w":667},"C":{"d":"688,-488r-68,0v-2,-120,-81,-183,-199,-183v-215,0,-319,194,-319,388v0,146,88,240,236,240v114,0,207,-76,242,-201r68,0v-33,146,-138,259,-321,259v-186,0,-293,-124,-293,-304v0,-228,143,-440,388,-440v150,0,264,82,266,241","w":704},"D":{"d":"216,-656r-130,598r172,0v237,2,336,-185,336,-383v0,-143,-72,-215,-215,-215r-163,0xm5,0r155,-714r230,0v205,0,272,114,272,286v0,225,-135,428,-391,428r-266,0","w":685},"E":{"d":"5,0r152,-714r479,0r-13,58r-410,0r-55,258r383,0r-13,58r-382,0r-60,282r420,0r-13,58r-488,0","w":574},"F":{"d":"5,0r153,-714r457,0r-12,58r-389,0r-55,258r345,0r-11,58r-347,0r-73,340r-68,0","w":537,"k":{"A":50,"\u00c6":50,"\u00c1":50,"\u00c2":50,"\u00c4":50,"\u00c0":50,"\u00c5":50,"\u00c3":50,",":129,".":129}},"G":{"d":"706,-494r-68,0v-4,-119,-91,-177,-221,-177v-188,0,-315,191,-315,383v0,146,78,245,231,245v157,0,261,-113,285,-262r-246,0r14,-58r305,0r-75,363r-46,0v2,-39,13,-85,10,-120v-60,94,-148,135,-259,135v-185,0,-287,-116,-287,-299v0,-230,134,-445,389,-445v179,0,278,87,283,235","w":741},"H":{"d":"5,0r152,-714r68,0r-66,310r413,0r66,-310r68,0r-152,714r-68,0r74,-346r-413,0r-74,346r-68,0","w":704},"I":{"d":"5,0r151,-714r68,0r-151,714r-68,0","w":222},"J":{"d":"-11,-229r68,0v-5,29,-9,59,-9,88v0,73,57,98,124,98v103,0,135,-78,153,-162r109,-509r68,0r-114,534v-27,124,-85,195,-221,195v-106,0,-187,-46,-187,-163v0,-27,3,-55,9,-81","w":500},"K":{"d":"5,0r152,-714r68,0r-82,381r2,2r461,-383r95,0r-366,298r255,416r-78,0r-227,-374r-159,127r-53,247r-68,0","w":648},"L":{"d":"5,0r154,-714r68,0r-141,656r395,0r-14,58r-462,0","w":537,"k":{"T":74,"V":74,"W":55,"y":37,"\u00fd":37,"\u00ff":37,"Y":92,"\u00dd":92,"\u0178":92,"\u2019":116}},"M":{"d":"2,0r155,-714r99,0r111,641r392,-641r99,0r-153,714r-67,0r147,-646r-2,0r-395,646r-68,0r-115,-656r-2,0r-135,656r-66,0","w":852},"N":{"d":"0,0r154,-714r77,0r285,638r2,0r132,-638r66,0r-156,714r-75,0r-285,-638r-2,0r-133,638r-65,0","w":704},"O":{"d":"650,-413v0,-148,-72,-258,-229,-258v-215,0,-319,194,-319,388v0,146,88,240,236,240v194,0,312,-193,312,-370xm327,15v-186,0,-293,-124,-293,-304v0,-228,143,-440,388,-440v182,0,296,119,296,299v0,233,-139,445,-391,445","w":741},"P":{"d":"5,0r154,-714r288,0v107,0,190,66,190,176v0,148,-103,232,-246,232r-252,0r-66,306r-68,0xm215,-656r-63,292r241,0v99,0,176,-61,176,-164v0,-173,-199,-120,-354,-128","w":630,"k":{"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":165,".":165}},"Q":{"d":"558,-62r91,85r-40,41r-100,-94v-51,29,-112,45,-182,45v-186,0,-293,-124,-293,-304v0,-228,143,-440,388,-440v182,0,296,119,296,299v0,147,-56,286,-160,368xm382,-149r39,-41r90,84v89,-69,139,-191,139,-307v0,-148,-72,-258,-229,-258v-215,0,-319,194,-319,388v0,146,88,240,236,240v46,0,88,-12,124,-32","w":741},"R":{"d":"5,0r152,-714r304,0v119,0,187,61,187,178v0,108,-81,185,-181,197v121,21,87,162,81,277v0,17,2,48,12,62r-70,0v-22,-59,0,-136,0,-201v0,-68,-25,-116,-98,-116r-252,0r-67,317r-68,0xm213,-656r-60,281r241,0v103,0,186,-50,186,-156v0,-84,-35,-125,-122,-125r-245,0","w":648,"k":{"T":18,"y":-24,"\u00fd":-24,"\u00ff":-24}},"S":{"d":"607,-506r-68,0v-1,-125,-67,-165,-189,-165v-88,0,-182,41,-182,143v0,107,114,114,196,141v97,32,192,62,192,182v0,70,-44,220,-276,220v-160,0,-277,-77,-269,-250r68,0v-7,139,76,192,206,192v93,0,203,-46,203,-153v0,-129,-150,-129,-247,-163v-82,-28,-141,-74,-141,-166v0,-143,126,-204,253,-204v145,0,262,58,254,223","w":630},"T":{"d":"69,-656r12,-58r558,0r-12,58r-245,0r-143,656r-68,0r143,-656r-245,0","k":{"\u00fc":92,"\u0161":92,"\u00f2":92,"\u00f6":92,"\u00ec":5,"\u00ee":5,"\u00ed":5,"\u00e8":92,"\u00eb":92,"\u00ea":92,"\u00e3":92,"\u00e5":92,"\u00e0":92,"\u00e4":92,"\u00e2":92,"w":92,"y":92,"\u00fd":92,"\u00ff":92,"A":68,"\u00c6":68,"\u00c1":68,"\u00c2":68,"\u00c4":68,"\u00c0":68,"\u00c5":68,"\u00c3":68,",":111,".":111,"-":98,"a":92,"\u00e6":92,"\u00e1":92,"c":92,"\u00e7":92,"e":92,"\u00e9":92,"i":5,"\u00ef":5,"o":92,"\u00f8":92,"\u0153":92,"\u00f3":92,"\u00f4":92,"\u00f5":92,"r":92,"s":92,"u":92,"\u00fa":92,"\u00fb":92,"\u00f9":92,":":92,";":92}},"U":{"d":"54,-248r96,-466r68,0r-95,454v-34,137,44,217,188,217v128,0,206,-68,231,-188r101,-483r68,0r-102,488v-35,168,-144,241,-307,241v-144,0,-285,-84,-248,-263","w":704},"V":{"d":"176,0r-112,-714r70,0r91,656r2,0r366,-656r74,0r-412,714r-79,0","w":593,"k":{"\u00f6":37,"\u00f4":37,"\u00ee":18,"\u00e8":37,"\u00eb":37,"\u00ea":37,"\u00e3":37,"\u00e5":37,"\u00e0":37,"\u00e4":37,"\u00e2":37,"y":18,"\u00fd":18,"\u00ff":18,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37,",":111,".":111,"-":55,"a":37,"\u00e6":37,"\u00e1":37,"e":37,"\u00e9":37,"i":18,"\u00ed":18,"\u00ef":18,"\u00ec":18,"o":37,"\u00f8":37,"\u0153":37,"\u00f3":37,"\u00f2":37,"\u00f5":37,"r":18,"u":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":55,";":55}},"W":{"d":"124,0r-53,-714r68,0r37,635r2,0r304,-635r82,0r49,629r2,0r292,-629r71,0r-344,714r-74,0r-47,-649r-2,0r-312,649r-75,0","w":907,"k":{"\u00f6":18,"\u00ea":18,"\u00e4":18,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,"\u00c3":25,",":74,".":74,"-":18,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"e":18,"\u00e9":18,"\u00eb":18,"\u00e8":18,"i":-12,"\u00ed":-12,"\u00ee":-12,"\u00ef":-12,"\u00ec":-12,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f2":18,"\u00f5":18,":":37,";":37}},"X":{"d":"-68,0r328,-372r-176,-342r75,0r148,300r259,-300r81,0r-310,353r186,361r-72,0r-159,-318r-280,318r-80,0","w":574},"Y":{"d":"299,-352r299,-362r83,0r-358,426r-63,288r-69,0r65,-295r-190,-419r72,0","w":574,"k":{"\u00fc":55,"\u00f6":74,"v":37,"A":50,"\u00c6":50,"\u00c1":50,"\u00c2":50,"\u00c4":50,"\u00c0":50,"\u00c5":50,"\u00c3":50,",":111,".":111,"-":74,"a":74,"\u00e6":74,"\u00e1":74,"\u00e2":74,"\u00e4":74,"\u00e0":74,"\u00e5":74,"\u00e3":74,"e":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00e8":74,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":74,"\u00f8":74,"\u0153":74,"\u00f3":74,"\u00f4":74,"\u00f2":74,"\u00f5":74,"u":55,"\u00fa":55,"\u00fb":55,"\u00f9":55,":":74,";":74,"p":55,"q":74}},"Z":{"d":"98,-656r13,-58r515,0r-12,57r-571,599r476,0r-13,58r-556,0r13,-60r569,-596r-434,0","w":574},"[":{"d":"133,191r-161,0r195,-920r163,0r-11,53r-98,0r-175,814r97,0","w":241},"\\":{"d":"353,15r-411,-744r59,0r411,744r-59,0","w":333},"]":{"d":"123,-729r161,0r-195,920r-163,0r11,-53r98,0r175,-814r-97,0","w":241},"^":{"d":"102,-238r-58,0r230,-453r52,0r230,453r-57,0r-200,-390","w":600},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50","w":500},"\u2018":{"d":"271,-714r-8,40v-47,14,-58,54,-69,97r42,0r-24,105r-84,0r33,-139v15,-64,45,-86,110,-103","w":278,"k":{"\u2018":125}},"a":{"d":"354,-189v6,-29,19,-63,18,-89v-20,25,-82,27,-114,29v-77,6,-204,10,-204,118v0,66,55,93,115,93v101,0,166,-61,185,-151xm459,-416v0,89,-69,305,-66,348v2,27,35,21,58,19r-9,50v-49,12,-111,5,-107,-51v-1,-9,4,-24,0,-30v-65,127,-344,142,-344,-48v0,-169,211,-156,343,-175v42,-6,62,-33,62,-101v0,-61,-61,-74,-109,-74v-80,0,-149,30,-162,116r-63,0v17,-117,107,-169,218,-169v70,0,179,24,179,115","w":519},"b":{"d":"238,-38v143,0,218,-154,218,-280v0,-96,-46,-160,-148,-160v-138,0,-211,166,-211,283v0,87,46,157,141,157xm-11,0r152,-714r63,0r-61,289r2,0v36,-62,100,-106,178,-106v131,0,196,92,196,215v0,157,-97,331,-273,331v-89,0,-153,-52,-175,-133r-25,118r-57,0","w":574},"c":{"d":"487,-355r-63,0v5,-77,-50,-123,-124,-123v-151,0,-223,146,-223,280v0,92,46,160,144,160v83,0,143,-54,170,-129r63,0v-38,118,-116,182,-241,182v-128,0,-199,-86,-199,-213v0,-161,103,-333,280,-333v112,0,197,56,193,176","w":519},"d":{"d":"216,-38v145,0,225,-163,225,-291v0,-90,-52,-149,-144,-149v-145,0,-220,160,-220,286v0,88,44,154,139,154xm591,-714r-153,714r-61,0r23,-93r-2,0v-44,68,-97,108,-188,108v-132,0,-196,-85,-196,-211v0,-158,109,-335,282,-335v83,0,143,35,170,112r62,-295r63,0","w":574},"e":{"d":"484,-241r-404,0v-16,113,31,203,147,203v82,0,145,-53,169,-128r63,0v-34,115,-113,181,-235,181v-136,0,-210,-85,-210,-219v0,-163,102,-327,279,-327v157,0,218,127,191,290xm88,-294r337,0v12,-110,-38,-183,-140,-184v-104,0,-175,88,-197,184","w":519},"f":{"d":"296,-516r-12,53r-101,0r-102,463r-63,0r102,-463r-90,0r12,-53r89,0v19,-99,36,-203,154,-198v22,0,44,1,65,7r-11,52v-66,-16,-117,3,-130,67r-15,72r102,0","w":259,"k":{"\u2019":-18}},"g":{"d":"84,-226v0,87,43,162,139,162v128,0,206,-140,206,-256v0,-92,-39,-158,-141,-158v-129,0,-204,137,-204,252xm536,-516r-98,462v-38,180,-99,260,-259,260v-105,0,-197,-44,-199,-167r63,0v1,88,71,114,145,114v160,0,180,-169,202,-257r-2,-2v-35,60,-106,95,-176,95v-125,0,-191,-91,-191,-210v0,-152,99,-310,264,-310v81,0,152,44,171,121r22,-106r58,0"},"h":{"d":"-11,0r154,-714r63,0r-63,292r2,0v36,-61,104,-109,181,-109v90,0,156,40,156,139v0,137,-55,262,-79,392r-63,0r72,-333v4,-16,7,-35,7,-52v0,-68,-52,-93,-108,-93v-91,0,-174,82,-202,213r-57,265r-63,0","w":537},"i":{"d":"-11,0r111,-516r63,0r-111,516r-63,0xm121,-613r22,-101r63,0r-22,101r-63,0","w":185},"j":{"d":"-28,86r128,-602r63,0r-129,604v-13,83,-78,116,-171,98r12,-52v49,13,88,-7,97,-48xm121,-613r21,-101r64,0r-22,101r-63,0","w":185},"k":{"d":"-11,0r152,-714r63,0r-96,448r2,2r302,-252r84,0r-244,199r156,317r-69,0r-137,-279r-110,92r-40,187r-63,0","w":463},"l":{"d":"-11,0r154,-714r63,0r-154,714r-63,0","w":185},"m":{"d":"-11,0r111,-516r58,0v-4,30,-19,65,-18,92v37,-60,105,-107,182,-107v75,0,115,42,127,110v40,-63,104,-110,181,-110v123,0,159,87,136,195r-72,336r-63,0r73,-338v19,-77,-4,-140,-92,-140v-186,0,-192,306,-239,478r-63,0r72,-336v17,-71,0,-141,-81,-142v-91,0,-167,96,-193,216r-56,262r-63,0","w":833},"n":{"d":"-11,0r111,-516r58,0v-4,30,-17,67,-16,94v39,-61,107,-109,184,-109v90,0,156,40,156,139v0,137,-55,262,-79,392r-63,0r72,-333v4,-16,7,-35,7,-52v0,-68,-52,-93,-108,-93v-91,0,-174,82,-202,213r-57,265r-63,0","w":537},"o":{"d":"302,-531v120,0,204,75,204,202v0,174,-95,344,-286,344v-133,0,-206,-86,-206,-215v0,-169,104,-331,288,-331xm232,-38v138,0,211,-158,211,-278v0,-96,-51,-162,-152,-162v-138,0,-214,151,-214,272v0,100,50,168,155,168"},"p":{"d":"327,-478v-145,0,-225,163,-225,291v0,90,52,149,144,149v145,0,220,-160,220,-286v0,-88,-44,-154,-139,-154xm-46,191r152,-707r57,0v-4,30,-18,67,-18,93v44,-68,97,-108,188,-108v132,0,196,85,196,211v0,158,-109,335,-282,335v-84,0,-148,-38,-167,-118r-63,294r-63,0","w":574},"q":{"d":"303,-478v-143,0,-218,154,-218,280v0,96,46,160,148,160v138,0,211,-166,211,-283v0,-87,-46,-157,-141,-157xm554,-516r-152,707r-63,0r61,-282r-2,0v-38,62,-102,106,-180,106v-131,0,-196,-92,-196,-215v0,-157,97,-331,273,-331v88,0,153,52,179,118r22,-103r58,0","w":574},"r":{"d":"-11,0r111,-516r57,0r-26,119r2,0v46,-83,105,-137,221,-125r-14,63v-140,-15,-207,81,-230,189r-58,270r-63,0","w":315,"k":{"v":-18,"y":-18,"\u00fd":-18,"\u00ff":-18,",":92,".":92,"-":55}},"s":{"d":"-1,-168r63,0v-1,100,73,130,146,130v56,0,130,-29,130,-95v0,-67,-71,-88,-139,-114v-69,-27,-138,-58,-138,-143v0,-100,108,-141,191,-141v108,0,186,47,184,166r-63,0v5,-79,-50,-113,-121,-113v-55,0,-128,17,-128,88v0,48,51,72,109,95v71,28,168,57,168,152v0,116,-110,158,-208,158v-99,0,-200,-54,-194,-183","w":481},"t":{"d":"31,-463r12,-53r93,0r33,-156r63,0r-33,156r103,0r-10,53r-105,0r-71,331v-9,42,-18,85,26,85v25,0,49,-2,74,-6r-11,55v-73,6,-159,17,-159,-70v0,-135,54,-265,78,-395r-93,0","w":296},"u":{"d":"513,-516r-111,516r-58,0v4,-30,17,-67,16,-94v-39,61,-107,109,-184,109v-90,0,-156,-40,-156,-139v0,-137,55,-262,79,-392r63,0r-72,333v-4,16,-7,35,-7,52v0,68,52,93,108,93v91,0,174,-82,202,-213r57,-265r63,0","w":537},"v":{"d":"116,0r-81,-516r66,0r61,445r2,0r242,-445r69,0r-291,516r-68,0","w":463,"k":{",":92,".":92}},"w":{"d":"90,0r-60,-516r66,0r41,440r2,0r213,-440r74,0r35,436r2,0r219,-436r67,0r-271,516r-68,0r-37,-433r-2,0r-212,433r-69,0","w":741,"k":{",":74,".":74}},"x":{"d":"-58,0r246,-272r-121,-244r72,0r94,203r178,-203r76,0r-227,250r137,266r-72,0r-110,-225r-198,225r-75,0","w":463},"y":{"d":"-55,186r12,-51v66,13,111,-11,135,-53r47,-82r-95,-516r66,0r74,438r2,0r238,-438r68,0r-367,638v-34,62,-99,78,-180,64","w":463,"k":{",":92,".":92}},"z":{"d":"44,-463r11,-53r388,0r-11,50r-401,413r331,0r-11,53r-409,0r11,-51r399,-412r-308,0","w":426},"{":{"d":"178,191v-83,14,-130,-39,-112,-125v16,-73,42,-152,42,-232v0,-44,-13,-76,-50,-76r11,-53v100,-8,110,-204,137,-309v23,-95,63,-137,164,-125r-11,53v-62,-1,-73,-4,-95,103r-29,141v-22,112,-93,152,-106,164v9,6,42,37,42,105v0,82,-47,183,-47,257v0,17,3,44,39,44r26,0","w":333},"|":{"d":"85,214r0,-1000r53,0r0,1000r-53,0","w":222},"}":{"d":"131,-729v83,-14,130,39,112,125v-16,73,-42,152,-42,232v0,44,13,76,50,76r-11,53v-100,8,-110,204,-137,309v-23,95,-63,137,-164,125r11,-53v62,1,73,4,95,-103r29,-141v22,-112,93,-152,106,-164v-9,-6,-42,-37,-42,-105v0,-82,47,-183,47,-257v0,-17,-3,-44,-39,-44r-26,0","w":333},"~":{"d":"194,-311v68,0,156,65,213,65v40,0,65,-34,88,-69r36,36v-30,42,-63,86,-125,86v-78,1,-140,-65,-217,-65v-44,0,-68,34,-84,69r-36,-36v22,-42,58,-86,125,-86","w":600},"\u00a1":{"d":"203,-410r-84,0r23,-106r85,0xm128,-345r37,0r-54,313r-46,223r-67,0v34,-188,82,-362,130,-536","w":278},"\u00a2":{"d":"206,-42r94,-436v-136,14,-201,153,-201,280v0,80,35,141,107,156xm233,15r-22,102r-39,0r23,-106v-103,-15,-159,-96,-159,-209v0,-160,101,-330,276,-333r19,-87r38,0r-19,89v95,11,163,67,159,174r-63,0v5,-71,-42,-117,-107,-123r-94,440v82,-1,141,-55,168,-129r63,0v-38,119,-116,183,-243,182"},"\u00a3":{"d":"324,15v-57,0,-119,-41,-181,-41v-48,0,-83,16,-123,39r-24,-55v84,-66,169,-152,127,-286r-87,0r7,-34r70,0v-15,-42,-26,-85,-26,-130v0,-152,108,-237,239,-237v135,0,226,95,214,231r-63,0v7,-101,-44,-178,-147,-178v-97,0,-180,55,-180,179v0,46,9,93,26,135r158,0r-6,34r-143,0v44,127,-39,207,-117,270r2,2v32,-14,68,-23,105,-23v50,0,114,42,165,41v51,0,83,-22,122,-59r24,50v-49,46,-95,62,-162,62"},"\u2044":{"d":"-165,34r444,-759r53,0r-444,759r-53,0","w":167},"\u00a5":{"d":"558,-714r75,0r-281,365r111,0r-10,45r-136,0v-18,18,-19,55,-27,83r146,0r-10,45r-146,0r-38,176r-63,0r39,-176r-132,0r10,-45r132,0v3,-28,18,-57,13,-83r-128,0r10,-45r100,0r-139,-365r64,0r136,365"},"\u0192":{"d":"140,-386r14,-53r100,0v36,-118,43,-273,194,-275v23,0,45,1,68,5r-14,52v-84,-16,-129,15,-150,93r-34,125r118,0r-14,53r-119,0r-117,429v-23,93,-91,148,-205,126r14,-53v79,20,115,-31,132,-92r112,-410r-99,0"},"\u00a7":{"d":"417,-209v0,-92,-163,-206,-204,-256v-45,0,-105,46,-105,109v0,86,143,188,202,254v57,-8,107,-45,107,-107xm306,30v-2,-129,-261,-241,-261,-386v0,-82,65,-140,144,-150v-72,-103,20,-223,146,-223v106,0,176,52,174,175r-63,0v1,-70,-31,-122,-109,-122v-49,0,-111,23,-111,96v0,117,254,223,254,360v0,87,-58,145,-143,156v19,25,32,54,32,86v0,102,-93,148,-183,148v-108,0,-184,-76,-176,-183r63,0v-9,77,45,130,122,130v52,0,111,-31,111,-87"},"\u00a4":{"d":"30,-136r56,-56v-75,-81,-72,-227,-1,-309r-55,-55r38,-38r55,55v84,-72,227,-73,310,0r55,-55r38,38r-55,55v72,82,73,227,0,310r55,55r-38,38r-56,-56v-80,75,-228,72,-309,1r-55,55xm93,-346v0,102,83,185,185,185v102,0,185,-83,185,-185v0,-102,-83,-185,-185,-185v-102,0,-185,83,-185,185"},"'":{"d":"153,-471r0,-243r58,0r0,243r-58,0","w":278},"\u201c":{"d":"238,-714r-8,40v-47,14,-58,54,-69,97r42,0r-24,105r-84,0r33,-139v15,-64,45,-86,110,-103xm391,-714r-8,40v-47,14,-58,54,-69,97r42,0r-24,105r-84,0r33,-139v15,-64,45,-86,110,-103","w":370},"\u00ab":{"d":"156,-117r-106,-140r15,-64r159,-113r-15,68r-116,84r75,102xm316,-117r-106,-140r15,-64r159,-113r-15,68r-116,84r75,102","w":426},"\u2039":{"d":"157,-117r-106,-140r15,-64r159,-113r-15,68r-116,84r75,102","w":259},"\u203a":{"d":"78,-434r106,140r-15,64r-159,113r15,-68r116,-84r-75,-102","w":259},"\ufb01":{"d":"248,0r111,-516r63,0r-111,516r-63,0xm380,-613r22,-101r63,0r-22,101r-63,0xm296,-516r-12,53r-101,0r-102,463r-63,0r102,-463r-90,0r12,-53r89,0v19,-99,36,-203,154,-198v22,0,44,1,65,7r-11,52v-66,-16,-117,3,-130,67r-15,72r102,0","w":444},"\ufb02":{"d":"296,-516r-12,53r-101,0r-102,463r-63,0r102,-463r-90,0r12,-53r89,0v19,-99,36,-203,154,-198v22,0,44,1,65,7r-11,52v-66,-16,-117,3,-130,67r-15,72r102,0xm248,0r154,-714r63,0r-154,714r-63,0","w":444},"\u2013":{"d":"476,-246r-500,0r12,-58r500,0","w":500},"\u2020":{"d":"330,-440r-125,589r-63,0r125,-589r-200,0r12,-53r200,0r47,-221r63,0r-47,221r197,0r-11,53r-198,0"},"\u2021":{"d":"186,-47r-199,0r12,-53r198,0r77,-363r-199,0r11,-53r200,0r42,-198r63,0r-42,198r196,0r-10,53r-198,0r-77,363r197,0r-10,53r-198,0r-42,196r-63,0"},"\u00b7":{"d":"71,-312v0,-31,26,-56,56,-56v30,0,56,26,56,56v0,28,-26,56,-55,56v-31,0,-57,-26,-57,-56","w":278},"\u00b6":{"d":"136,177r105,-505v-117,0,-189,-87,-167,-190v26,-126,123,-196,263,-196r217,0r-185,891r-53,0r176,-847r-127,0r-176,847r-53,0","w":600},"\u2022":{"d":"72,-357v0,-99,79,-178,178,-178v99,0,179,79,179,178v0,99,-80,179,-179,179v-99,0,-178,-80,-178,-179","w":500},"\u201a":{"d":"-12,137r8,-40v47,-14,58,-54,69,-97r-42,0r24,-106r84,0r-33,140v-15,64,-45,86,-110,103","w":278},"\u201e":{"d":"-35,137r8,-40v47,-14,58,-54,69,-97r-42,0r24,-106r84,0r-33,140v-15,64,-45,86,-110,103xm118,137r8,-40v47,-14,58,-54,69,-97r-42,0r24,-106r84,0r-33,140v-15,64,-45,86,-110,103","w":370},"\u201d":{"d":"67,-471r8,-40v47,-14,58,-54,69,-97r-42,0r24,-106r84,0r-33,140v-15,64,-45,86,-110,103xm220,-471r8,-40v47,-14,58,-54,69,-97r-42,0r24,-106r84,0r-33,140v-15,64,-45,86,-110,103","w":370},"\u00bb":{"d":"243,-434r106,140r-15,64r-159,113r15,-68r116,-84r-75,-102xm83,-434r106,140r-15,64r-159,113r15,-68r116,-84r-75,-102","w":426},"\u2026":{"d":"470,0r-84,0r23,-106r85,0xm136,0r-84,0r23,-106r85,0xm804,0r-84,0r23,-106r85,0","w":1000},"\u2030":{"d":"839,15v-89,0,-131,-47,-131,-133v0,-102,59,-205,174,-205v84,0,126,54,126,135v0,95,-61,203,-169,203xm839,-30v83,0,116,-98,116,-166v0,-52,-27,-82,-82,-82v-82,0,-112,103,-112,169v0,43,26,79,78,79xm486,15v-89,0,-131,-47,-131,-133v0,-102,59,-205,174,-205v84,0,126,54,126,135v0,95,-61,203,-169,203xm486,-30v83,0,116,-98,116,-166v0,-52,-27,-82,-82,-82v-82,0,-112,103,-112,169v0,43,26,79,78,79xm197,-413v83,0,116,-98,116,-166v0,-52,-27,-82,-82,-82v-82,0,-112,103,-112,169v0,43,26,79,78,79xm197,-368v-89,0,-131,-47,-131,-133v0,-102,59,-205,174,-205v84,0,126,54,126,135v0,95,-61,203,-169,203xm48,32r570,-755r55,0r-571,755r-54,0","w":1056},"\u00bf":{"d":"243,-341r63,0v-16,116,-59,149,-148,211v-55,38,-114,90,-114,159v0,81,55,124,134,124v105,0,165,-80,173,-183r63,0v-6,144,-95,236,-239,236v-101,0,-194,-56,-194,-168v0,-109,76,-168,160,-222v68,-44,86,-81,102,-157xm246,-410r23,-106r85,0r-24,106r-84,0","w":537},"`":{"d":"67,-729r74,0r82,144r-50,0","w":185},"\u00b4":{"d":"84,-585r116,-144r81,0r-144,144r-53,0","w":185},"\u02c6":{"d":"159,-691r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":185},"\u02dc":{"d":"89,-701v51,-1,93,54,140,56v21,0,40,-36,45,-56r40,0v-10,44,-37,100,-89,101v-48,1,-100,-56,-140,-56v-25,0,-43,33,-48,56r-41,0v13,-45,36,-101,93,-101","w":185},"\u00af":{"d":"284,-627r-256,0r8,-45r256,0","w":185},"\u02d8":{"d":"26,-726r38,0v3,55,34,85,90,85v60,0,99,-28,118,-85r37,0v-13,78,-79,130,-158,130v-78,0,-127,-53,-125,-130","w":185},"\u02d9":{"d":"117,-601r19,-102r64,0r-20,102r-63,0","w":185},"\u00a8":{"d":"196,-601r19,-102r64,0r-20,102r-63,0xm37,-601r19,-102r64,0r-20,102r-63,0","w":185},"\u02da":{"d":"159,-608v35,0,66,-31,66,-66v0,-34,-31,-65,-66,-65v-34,0,-65,31,-65,65v0,35,31,66,65,66xm159,-574v-54,0,-99,-46,-99,-100v0,-53,46,-99,99,-99v54,0,100,45,100,99v0,55,-45,100,-100,100","w":185},"\u00b8":{"d":"-85,182r14,-29v30,12,46,17,78,17v27,0,56,-9,56,-41v0,-43,-59,-49,-93,-32r-16,-18r73,-85r37,0r-58,62v44,-5,116,0,112,67v-5,93,-137,96,-203,59","w":185},"\u02dd":{"d":"12,-585r116,-144r81,0r-144,144r-53,0xm160,-585r116,-144r81,0r-144,144r-53,0","w":185},"\u02db":{"d":"117,0r58,0v-80,53,-114,100,-114,132v0,7,0,27,25,27v30,0,53,-23,72,-45r29,25v-31,43,-70,65,-114,65v-60,0,-80,-27,-80,-56v0,-74,80,-123,124,-148","w":185},"\u02c7":{"d":"154,-620r101,-109r61,0r-136,144r-63,0r-86,-144r57,0","w":185},"\u2014":{"d":"858,-304r-12,58r-740,0r12,-58r740,0","w":1000},"\u00c6":{"d":"-81,0r534,-714r498,0r-13,58r-357,0r-56,258r335,0r-13,58r-334,0r-61,282r369,0r-13,58r-437,0r49,-226r-255,0r-166,226r-80,0xm483,-656r-275,372r224,0r81,-372r-30,0","w":889},"\u00aa":{"d":"274,-547v-57,40,-203,-7,-203,88v0,36,36,52,73,52v89,2,119,-64,133,-139v-1,2,-2,0,-3,-1xm334,-632v0,72,-42,163,-42,203v0,18,21,13,37,12r-6,37v-39,11,-84,-5,-67,-49r-3,0v-41,84,-229,90,-229,-30v0,-109,137,-99,223,-111v27,-4,40,-21,40,-54v0,-35,-39,-43,-66,-43v-54,0,-99,18,-108,68r-43,0v11,-75,70,-107,148,-107v46,0,116,15,116,74","w":311},"\u0141":{"d":"71,-307r88,-407r68,0r-77,359r252,-153r-9,54r-255,155r-52,241r395,0r-14,58r-462,0r54,-251r-94,57r12,-56","w":537,"k":{"T":74,"V":74,"W":55,"y":37,"\u00fd":37,"\u00ff":37,"Y":92,"\u00dd":92,"\u0178":92,"\u2019":116}},"\u00d8":{"d":"140,-140r446,-466v-37,-40,-92,-65,-165,-65v-215,0,-319,194,-319,388v0,57,13,106,38,143xm715,-741r25,29r-83,86v39,50,61,117,61,196v0,233,-139,445,-391,445v-90,0,-160,-28,-210,-79r-88,91r-24,-27r88,-91v-39,-51,-59,-119,-59,-198v0,-228,143,-440,388,-440v86,0,157,27,209,76xm609,-576r-446,464v40,43,100,69,175,69v194,0,312,-193,312,-370v0,-63,-13,-119,-41,-163","w":741},"\u0152":{"d":"543,-210r68,-331v0,-87,-105,-130,-192,-130v-193,0,-305,193,-305,375v0,134,66,253,214,253v104,0,194,-66,215,-167xm706,-656r-54,258r350,0r-13,58r-350,0r-59,282r389,0r-13,58r-455,0v3,-21,15,-47,12,-66v-43,58,-118,81,-188,81v-193,0,-279,-133,-279,-313v0,-214,140,-431,379,-431v81,0,165,30,211,103r19,-88r444,0r-13,58r-380,0","w":1037},"\u00ba":{"d":"174,-368v-90,0,-138,-52,-138,-134v0,-107,68,-204,192,-204v82,0,136,45,136,126v0,110,-62,212,-190,212xm220,-667v-87,0,-137,91,-137,161v0,58,33,99,99,99v88,0,135,-95,135,-165v0,-55,-33,-95,-97,-95","w":334},"\u00e6":{"d":"435,-294r321,0v14,-105,-29,-183,-130,-184v-108,0,-170,82,-191,184xm125,-362r-63,0v17,-117,107,-169,218,-169v63,0,149,19,167,105v40,-70,108,-105,185,-105v153,0,215,139,179,290r-385,0v-31,108,26,203,132,203v83,0,150,-48,171,-128r63,0v-40,121,-116,181,-247,181v-92,0,-160,-47,-176,-137v-33,93,-109,137,-213,137v-94,0,-165,-42,-165,-143v0,-169,211,-156,343,-175v42,-6,62,-33,62,-101v0,-61,-61,-74,-109,-74v-80,0,-149,30,-162,116xm354,-189v6,-29,19,-63,18,-89v-20,25,-82,27,-114,29v-77,6,-204,10,-204,118v0,66,55,93,115,93v101,0,166,-61,185,-151","w":852},"\u0131":{"d":"52,0r-63,0r111,-516r63,0","w":185},"\u0142":{"d":"74,-393r69,-321r63,0r-58,268r78,-56r-11,55r-79,56r-84,391r-63,0r73,-338r-75,53r12,-55","w":185},"\u00f8":{"d":"426,-400r-312,313v25,31,64,49,118,49v138,0,211,-158,211,-278v0,-32,-6,-60,-17,-84xm454,-472r58,-58r22,21r-60,61v21,33,32,72,32,119v0,174,-95,344,-286,344v-65,0,-115,-21,-150,-57r-64,64r-20,-22r65,-65v-24,-36,-37,-82,-37,-135v0,-169,104,-331,288,-331v63,0,116,21,152,59xm97,-112r312,-315v-26,-33,-65,-51,-118,-51v-167,0,-255,215,-194,366"},"\u0153":{"d":"858,-241r-387,0v-32,108,26,203,134,203v83,0,145,-49,169,-128r63,0v-35,111,-118,181,-236,181v-95,0,-157,-45,-184,-134v-37,81,-112,134,-203,134v-125,0,-192,-83,-192,-208v0,-164,103,-338,282,-338v86,0,152,49,168,131v41,-81,120,-131,213,-131v159,0,208,147,173,290xm295,-478v-142,0,-210,162,-210,283v0,87,41,157,136,157v153,0,205,-185,205,-308v0,-80,-50,-132,-131,-132xm481,-294r322,0v15,-103,-27,-184,-133,-184v-108,0,-167,83,-189,184","w":907},"\u00df":{"d":"-11,0r118,-545v25,-117,90,-184,211,-184v98,0,176,45,176,155v0,93,-70,160,-153,177v75,16,118,70,118,147v0,159,-133,285,-315,252r11,-52v134,22,241,-67,241,-189v0,-107,-78,-129,-171,-129r12,-53v86,3,194,-41,194,-148v0,-67,-46,-107,-111,-107v-96,0,-133,57,-153,147r-115,529r-63,0","w":519},"\u00b9":{"d":"108,-583r9,-39v53,-7,109,-25,143,-75r38,0r-97,423r-48,0r79,-343v-39,23,-94,32,-124,34","w":333},"\u00ac":{"d":"499,-111r0,-214r-450,0r0,-53r503,0r0,267r-53,0","w":600},"\u00b5":{"d":"513,-516r-111,516r-58,0v4,-30,17,-67,16,-94v-39,61,-107,109,-184,109v-51,0,-95,-13,-121,-41r-45,217r-61,0r150,-707r63,0r-72,333v-4,16,-7,35,-7,52v0,68,52,93,108,93v91,0,174,-82,202,-213r57,-265r63,0","w":537},"\u2122":{"d":"269,-302r-53,0r0,-367r-134,0r0,-45r321,0r0,45r-134,0r0,367xm529,-302r-53,0r0,-412r85,0r133,334r129,-334r85,0r0,412r-53,0r0,-364r-2,0r-146,364r-30,0r-146,-364r-2,0r0,364","w":990},"\u00d0":{"d":"2,-348r10,-45r79,0r69,-321r230,0v205,0,272,114,272,286v0,225,-135,428,-391,428r-266,0r76,-348r-79,0xm216,-656r-57,263r213,0r-10,45r-213,0r-63,290r172,0v237,2,336,-185,336,-383v0,-143,-72,-215,-215,-215r-163,0","w":685},"\u00bd":{"d":"130,34r444,-759r53,0r-444,759r-53,0xm83,-583r9,-39v53,-7,109,-25,143,-75r38,0r-97,423r-48,0r79,-343v-39,23,-94,32,-124,34xm799,-319v8,158,-265,168,-296,280r246,0r-7,39r-294,0v5,-93,81,-136,156,-174v76,-39,148,-73,148,-146v0,-49,-44,-73,-92,-73v-67,0,-107,51,-110,110r-47,0v4,-88,67,-149,160,-149v72,0,132,38,136,113","w":834},"\u00b1":{"d":"274,-323r0,-180r53,0r0,180r225,0r0,53r-225,0r0,180r-53,0r0,-180r-224,0r0,-53r224,0xm49,0r0,-53r503,0r0,53r-503,0","w":600},"\u00de":{"d":"5,0r154,-714r68,0r-26,117r220,0v107,0,190,66,190,176v0,148,-103,232,-246,232r-252,0r-40,189r-68,0xm189,-539r-63,292r241,0v99,0,176,-61,176,-164v0,-173,-199,-120,-354,-128","w":630},"\u00bc":{"d":"452,-142r275,-278r45,0r-65,282r63,0r-7,39r-65,0r-23,99r-47,0r23,-99r-206,0xm706,-350r-204,212r157,0r49,-210xm154,34r444,-759r53,0r-444,759r-53,0xm108,-583r9,-39v53,-7,109,-25,143,-75r38,0r-97,423r-48,0r79,-343v-39,23,-94,32,-124,34","w":834},"\u00f7":{"d":"552,-225r-503,0r0,-53r503,0r0,53xm244,-453v0,-31,26,-56,56,-56v30,0,56,26,56,56v0,28,-26,56,-55,56v-31,0,-57,-26,-57,-56xm244,-50v0,-31,26,-56,56,-56v30,0,56,26,56,56v0,28,-26,56,-55,56v-31,0,-57,-26,-57,-56","w":600},"\u00a6":{"d":"85,89r0,-250r53,0r0,250r-53,0xm85,-411r0,-250r53,0r0,250r-53,0","w":222},"\u00b0":{"d":"117,-562v0,-80,64,-144,144,-144v80,0,144,64,144,144v0,80,-64,144,-144,144v-80,0,-144,-64,-144,-144xm156,-562v0,58,47,105,105,105v58,0,105,-47,105,-105v0,-58,-47,-105,-105,-105v-58,0,-105,47,-105,105","w":400},"\u00fe":{"d":"327,-478v-145,0,-225,163,-225,291v0,90,52,149,144,149v145,0,220,-160,220,-286v0,-88,-44,-154,-139,-154xm-46,191r195,-905r63,0r-62,289r2,0v37,-66,90,-106,181,-106v132,0,196,85,196,211v0,158,-109,335,-282,335v-84,0,-148,-38,-167,-118r-63,294r-63,0","w":574},"\u00be":{"d":"452,-142r275,-278r45,0r-65,282r63,0r-7,39r-65,0r-23,99r-47,0r23,-99r-206,0xm706,-350r-204,212r157,0r49,-210xm114,-570r-41,0v16,-85,65,-136,155,-136v73,0,133,35,133,109v0,56,-45,90,-95,103v44,10,67,45,67,87v0,91,-78,142,-172,142v-106,0,-139,-57,-137,-148r41,0v-4,66,22,109,98,109v67,0,123,-42,123,-101v-1,-60,-58,-75,-123,-72r7,-39v71,2,144,-4,144,-80v0,-46,-42,-71,-88,-71v-65,0,-102,39,-112,97xm189,34r444,-759r53,0r-444,759r-53,0","w":834},"\u00b2":{"d":"362,-593v8,158,-265,168,-296,280r246,0r-7,39r-294,0v5,-93,81,-136,156,-174v76,-39,148,-73,148,-146v0,-49,-44,-73,-92,-73v-67,0,-107,51,-110,110r-47,0v4,-88,67,-149,160,-149v72,0,132,38,136,113","w":333},"\u00ae":{"d":"400,-729v210,0,372,163,372,372v0,209,-162,372,-372,372v-210,0,-372,-163,-372,-372v0,-209,162,-372,372,-372xm400,-676v-180,0,-314,141,-314,319v0,178,134,319,314,319v180,0,314,-141,314,-319v0,-178,-134,-319,-314,-319xm318,-333r0,191r-53,0r0,-430r165,0v97,0,140,42,140,119v0,76,-50,110,-108,120r128,191r-62,0r-121,-191r-89,0xm318,-378v89,-4,199,22,199,-75v0,-94,-110,-71,-199,-74r0,149","w":800},"\u2212":{"d":"552,-278r0,53r-503,0r0,-53r503,0","w":600},"\u00f0":{"d":"291,-453v-138,0,-214,144,-214,257v0,94,50,158,155,158v141,0,214,-150,214,-263v0,-89,-51,-152,-155,-152xm222,-599r104,-53v-26,-24,-55,-42,-84,-55r46,-35v34,17,64,38,90,63r117,-59r26,31r-115,58v71,79,106,188,103,301v-4,183,-87,363,-289,363v-133,0,-206,-82,-206,-205v0,-161,104,-316,288,-316v45,0,107,11,143,66r2,0v-12,-67,-44,-136,-91,-183r-108,55"},"\u00d7":{"d":"262,-251r-188,-189r37,-37r189,189r189,-189r37,37r-189,189r189,189r-37,37r-189,-188r-189,188r-37,-37","w":600},"\u00b3":{"d":"114,-570r-41,0v16,-85,65,-136,155,-136v73,0,133,35,133,109v0,56,-45,90,-95,103v44,10,67,45,67,87v0,91,-78,142,-172,142v-106,0,-139,-57,-137,-148r41,0v-4,66,22,109,98,109v67,0,123,-42,123,-101v-1,-60,-58,-75,-123,-72r7,-39v71,2,144,-4,144,-80v0,-46,-42,-71,-88,-71v-65,0,-102,39,-112,97","w":333},"\u00a9":{"d":"772,-357v0,209,-162,372,-372,372v-210,0,-372,-163,-372,-372v0,-209,162,-372,372,-372v210,0,372,163,372,372xm714,-357v0,-178,-134,-319,-314,-319v-180,0,-314,141,-314,319v0,178,134,319,314,319v180,0,314,-141,314,-319xm594,-435r-51,0v-12,-59,-60,-106,-133,-106v-108,0,-165,80,-165,184v0,104,57,184,165,184v73,0,121,-46,133,-106r51,0v-13,97,-91,151,-185,151v-136,0,-217,-97,-217,-229v0,-132,81,-229,217,-229v94,0,172,54,185,151","w":800},"\u00c1":{"d":"-75,0r437,-714r74,0r130,714r-71,0r-36,-222r-326,0r-132,222r-76,0xm386,-656r-219,376r282,0r-61,-376r-2,0xm325,-763r116,-144r81,0r-144,144r-53,0","w":630},"\u00c2":{"d":"-75,0r437,-714r74,0r130,714r-71,0r-36,-222r-326,0r-132,222r-76,0xm386,-656r-219,376r282,0r-61,-376r-2,0xm400,-869r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":630},"\u00c4":{"d":"-75,0r437,-714r74,0r130,714r-71,0r-36,-222r-326,0r-132,222r-76,0xm386,-656r-219,376r282,0r-61,-376r-2,0xm437,-779r19,-102r64,0r-20,102r-63,0xm278,-779r19,-102r64,0r-20,102r-63,0","w":630},"\u00c0":{"d":"-75,0r437,-714r74,0r130,714r-71,0r-36,-222r-326,0r-132,222r-76,0xm386,-656r-219,376r282,0r-61,-376r-2,0xm290,-907r74,0r82,144r-50,0","w":630},"\u00c5":{"d":"-75,0r437,-714r74,0r130,714r-71,0r-36,-222r-326,0r-132,222r-76,0xm386,-656r-219,376r282,0r-61,-376r-2,0xm400,-786v35,0,66,-31,66,-66v0,-34,-31,-65,-66,-65v-34,0,-65,31,-65,65v0,35,31,66,65,66xm400,-752v-54,0,-99,-46,-99,-100v0,-53,46,-99,99,-99v54,0,100,45,100,99v0,55,-45,100,-100,100","w":630},"\u00c3":{"d":"-75,0r437,-714r74,0r130,714r-71,0r-36,-222r-326,0r-132,222r-76,0xm386,-656r-219,376r282,0r-61,-376r-2,0xm330,-879v51,-1,93,54,140,56v21,0,40,-36,45,-56r40,0v-10,44,-37,100,-89,101v-48,1,-100,-56,-140,-56v-25,0,-43,33,-48,56r-41,0v13,-45,36,-101,93,-101","w":630},"\u00c7":{"d":"580,-244r68,0v-34,152,-147,269,-344,258r-39,42v44,-5,116,0,112,67v-5,93,-137,96,-203,59r14,-29v30,12,46,17,78,17v27,0,56,-9,56,-41v0,-43,-59,-49,-93,-32r-16,-18r60,-70v-153,-20,-239,-137,-239,-298v0,-228,143,-440,388,-440v150,0,264,82,266,241r-68,0v-2,-120,-81,-183,-199,-183v-215,0,-319,194,-319,388v0,146,88,240,236,240v114,0,207,-76,242,-201","w":704},"\u00c9":{"d":"5,0r152,-714r479,0r-13,58r-410,0r-55,258r383,0r-13,58r-382,0r-60,282r420,0r-13,58r-488,0xm324,-763r116,-144r81,0r-144,144r-53,0","w":574},"\u00ca":{"d":"5,0r152,-714r479,0r-13,58r-410,0r-55,258r383,0r-13,58r-382,0r-60,282r420,0r-13,58r-488,0xm399,-869r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":574},"\u00cb":{"d":"5,0r152,-714r479,0r-13,58r-410,0r-55,258r383,0r-13,58r-382,0r-60,282r420,0r-13,58r-488,0xm436,-779r19,-102r64,0r-20,102r-63,0xm277,-779r19,-102r64,0r-20,102r-63,0","w":574},"\u00c8":{"d":"5,0r152,-714r479,0r-13,58r-410,0r-55,258r383,0r-13,58r-382,0r-60,282r420,0r-13,58r-488,0xm307,-907r74,0r82,144r-50,0","w":574},"\u00cd":{"d":"5,0r151,-714r68,0r-151,714r-68,0xm121,-763r116,-144r81,0r-144,144r-53,0","w":222},"\u00ce":{"d":"5,0r151,-714r68,0r-151,714r-68,0xm196,-869r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":222},"\u00cf":{"d":"5,0r151,-714r68,0r-151,714r-68,0xm233,-779r19,-102r64,0r-20,102r-63,0xm74,-779r19,-102r64,0r-20,102r-63,0","w":222},"\u00cc":{"d":"5,0r151,-714r68,0r-151,714r-68,0xm104,-907r74,0r82,144r-50,0","w":222},"\u00d1":{"d":"0,0r154,-714r77,0r285,638r2,0r132,-638r66,0r-156,714r-75,0r-285,-638r-2,0r-133,638r-65,0xm385,-879v51,-1,93,54,140,56v21,0,40,-36,45,-56r40,0v-10,44,-37,100,-89,101v-48,1,-100,-56,-140,-56v-25,0,-43,33,-48,56r-41,0v13,-45,36,-101,93,-101","w":704},"\u00d3":{"d":"650,-413v0,-148,-72,-258,-229,-258v-215,0,-319,194,-319,388v0,146,88,240,236,240v194,0,312,-193,312,-370xm327,15v-186,0,-293,-124,-293,-304v0,-228,143,-440,388,-440v182,0,296,119,296,299v0,233,-139,445,-391,445xm362,-763r116,-144r81,0r-144,144r-53,0","w":741},"\u00d4":{"d":"650,-413v0,-148,-72,-258,-229,-258v-215,0,-319,194,-319,388v0,146,88,240,236,240v194,0,312,-193,312,-370xm327,15v-186,0,-293,-124,-293,-304v0,-228,143,-440,388,-440v182,0,296,119,296,299v0,233,-139,445,-391,445xm437,-869r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":741},"\u00d6":{"d":"650,-413v0,-148,-72,-258,-229,-258v-215,0,-319,194,-319,388v0,146,88,240,236,240v194,0,312,-193,312,-370xm327,15v-186,0,-293,-124,-293,-304v0,-228,143,-440,388,-440v182,0,296,119,296,299v0,233,-139,445,-391,445xm474,-779r19,-102r64,0r-20,102r-63,0xm315,-779r19,-102r64,0r-20,102r-63,0","w":741},"\u00d2":{"d":"650,-413v0,-148,-72,-258,-229,-258v-215,0,-319,194,-319,388v0,146,88,240,236,240v194,0,312,-193,312,-370xm327,15v-186,0,-293,-124,-293,-304v0,-228,143,-440,388,-440v182,0,296,119,296,299v0,233,-139,445,-391,445xm345,-907r74,0r82,144r-50,0","w":741},"\u00d5":{"d":"650,-413v0,-148,-72,-258,-229,-258v-215,0,-319,194,-319,388v0,146,88,240,236,240v194,0,312,-193,312,-370xm327,15v-186,0,-293,-124,-293,-304v0,-228,143,-440,388,-440v182,0,296,119,296,299v0,233,-139,445,-391,445xm367,-879v51,-1,93,54,140,56v21,0,40,-36,45,-56r40,0v-10,44,-37,100,-89,101v-48,1,-100,-56,-140,-56v-25,0,-43,33,-48,56r-41,0v13,-45,36,-101,93,-101","w":741},"\u0160":{"d":"607,-506r-68,0v-1,-125,-67,-165,-189,-165v-88,0,-182,41,-182,143v0,107,114,114,196,141v97,32,192,62,192,182v0,70,-44,220,-276,220v-160,0,-277,-77,-269,-250r68,0v-7,139,76,192,206,192v93,0,203,-46,203,-153v0,-129,-150,-129,-247,-163v-82,-28,-141,-74,-141,-166v0,-143,126,-204,253,-204v145,0,262,58,254,223xm377,-798r101,-109r61,0r-136,144r-63,0r-86,-144r57,0","w":630},"\u00da":{"d":"54,-248r96,-466r68,0r-95,454v-34,137,44,217,188,217v128,0,206,-68,231,-188r101,-483r68,0r-102,488v-35,168,-144,241,-307,241v-144,0,-285,-84,-248,-263xm380,-763r116,-144r81,0r-144,144r-53,0","w":704},"\u00db":{"d":"54,-248r96,-466r68,0r-95,454v-34,137,44,217,188,217v128,0,206,-68,231,-188r101,-483r68,0r-102,488v-35,168,-144,241,-307,241v-144,0,-285,-84,-248,-263xm455,-869r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":704},"\u00dc":{"d":"54,-248r96,-466r68,0r-95,454v-34,137,44,217,188,217v128,0,206,-68,231,-188r101,-483r68,0r-102,488v-35,168,-144,241,-307,241v-144,0,-285,-84,-248,-263xm492,-779r19,-102r64,0r-20,102r-63,0xm333,-779r19,-102r64,0r-20,102r-63,0","w":704},"\u00d9":{"d":"54,-248r96,-466r68,0r-95,454v-34,137,44,217,188,217v128,0,206,-68,231,-188r101,-483r68,0r-102,488v-35,168,-144,241,-307,241v-144,0,-285,-84,-248,-263xm327,-907r74,0r82,144r-50,0","w":704},"\u00dd":{"d":"299,-352r299,-362r83,0r-358,426r-63,288r-69,0r65,-295r-190,-419r72,0xm279,-763r116,-144r81,0r-144,144r-53,0","w":574,"k":{"v":37,"A":50,"\u00c6":50,"\u00c1":50,"\u00c2":50,"\u00c4":50,"\u00c0":50,"\u00c5":50,"\u00c3":50,",":111,".":111,"-":74,"a":74,"\u00e6":74,"\u00e1":74,"\u00e2":74,"\u00e4":74,"\u00e0":74,"\u00e5":74,"\u00e3":74,"e":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00e8":74,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":74,"\u00f8":74,"\u0153":74,"\u00f3":74,"\u00f4":74,"\u00f6":74,"\u00f2":74,"\u00f5":74,"u":55,"\u00fa":55,"\u00fb":55,"\u00fc":55,"\u00f9":55,":":74,";":74,"p":55,"q":74}},"\u0178":{"d":"299,-352r299,-362r83,0r-358,426r-63,288r-69,0r65,-295r-190,-419r72,0xm391,-779r19,-102r64,0r-20,102r-63,0xm232,-779r19,-102r64,0r-20,102r-63,0","w":574,"k":{"v":37,"A":50,"\u00c6":50,"\u00c1":50,"\u00c2":50,"\u00c4":50,"\u00c0":50,"\u00c5":50,"\u00c3":50,",":111,".":111,"-":74,"a":74,"\u00e6":74,"\u00e1":74,"\u00e2":74,"\u00e4":74,"\u00e0":74,"\u00e5":74,"\u00e3":74,"e":74,"\u00e9":74,"\u00ea":74,"\u00eb":74,"\u00e8":74,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":74,"\u00f8":74,"\u0153":74,"\u00f3":74,"\u00f4":74,"\u00f6":74,"\u00f2":74,"\u00f5":74,"u":55,"\u00fa":55,"\u00fb":55,"\u00fc":55,"\u00f9":55,":":74,";":74,"p":55,"q":74}},"\u017d":{"d":"98,-656r13,-58r515,0r-12,57r-571,599r476,0r-13,58r-556,0r13,-60r569,-596r-434,0xm349,-798r101,-109r61,0r-136,144r-63,0r-86,-144r57,0","w":574},"\u00e1":{"d":"354,-189v6,-29,19,-63,18,-89v-20,25,-82,27,-114,29v-77,6,-204,10,-204,118v0,66,55,93,115,93v101,0,166,-61,185,-151xm459,-416v0,89,-69,305,-66,348v2,27,35,21,58,19r-9,50v-49,12,-111,5,-107,-51v-1,-9,4,-24,0,-30v-65,127,-344,142,-344,-48v0,-169,211,-156,343,-175v42,-6,62,-33,62,-101v0,-61,-61,-74,-109,-74v-80,0,-149,30,-162,116r-63,0v17,-117,107,-169,218,-169v70,0,179,24,179,115xm251,-585r116,-144r81,0r-144,144r-53,0","w":519},"\u00e2":{"d":"354,-189v6,-29,19,-63,18,-89v-20,25,-82,27,-114,29v-77,6,-204,10,-204,118v0,66,55,93,115,93v101,0,166,-61,185,-151xm459,-416v0,89,-69,305,-66,348v2,27,35,21,58,19r-9,50v-49,12,-111,5,-107,-51v-1,-9,4,-24,0,-30v-65,127,-344,142,-344,-48v0,-169,211,-156,343,-175v42,-6,62,-33,62,-101v0,-61,-61,-74,-109,-74v-80,0,-149,30,-162,116r-63,0v17,-117,107,-169,218,-169v70,0,179,24,179,115xm326,-691r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":519},"\u00e4":{"d":"354,-189v6,-29,19,-63,18,-89v-20,25,-82,27,-114,29v-77,6,-204,10,-204,118v0,66,55,93,115,93v101,0,166,-61,185,-151xm459,-416v0,89,-69,305,-66,348v2,27,35,21,58,19r-9,50v-49,12,-111,5,-107,-51v-1,-9,4,-24,0,-30v-65,127,-344,142,-344,-48v0,-169,211,-156,343,-175v42,-6,62,-33,62,-101v0,-61,-61,-74,-109,-74v-80,0,-149,30,-162,116r-63,0v17,-117,107,-169,218,-169v70,0,179,24,179,115xm363,-601r19,-102r64,0r-20,102r-63,0xm204,-601r19,-102r64,0r-20,102r-63,0","w":519},"\u00e0":{"d":"354,-189v6,-29,19,-63,18,-89v-20,25,-82,27,-114,29v-77,6,-204,10,-204,118v0,66,55,93,115,93v101,0,166,-61,185,-151xm459,-416v0,89,-69,305,-66,348v2,27,35,21,58,19r-9,50v-49,12,-111,5,-107,-51v-1,-9,4,-24,0,-30v-65,127,-344,142,-344,-48v0,-169,211,-156,343,-175v42,-6,62,-33,62,-101v0,-61,-61,-74,-109,-74v-80,0,-149,30,-162,116r-63,0v17,-117,107,-169,218,-169v70,0,179,24,179,115xm204,-729r74,0r82,144r-50,0","w":519},"\u00e5":{"d":"354,-189v6,-29,19,-63,18,-89v-20,25,-82,27,-114,29v-77,6,-204,10,-204,118v0,66,55,93,115,93v101,0,166,-61,185,-151xm459,-416v0,89,-69,305,-66,348v2,27,35,21,58,19r-9,50v-49,12,-111,5,-107,-51v-1,-9,4,-24,0,-30v-65,127,-344,142,-344,-48v0,-169,211,-156,343,-175v42,-6,62,-33,62,-101v0,-61,-61,-74,-109,-74v-80,0,-149,30,-162,116r-63,0v17,-117,107,-169,218,-169v70,0,179,24,179,115xm326,-608v35,0,66,-31,66,-66v0,-34,-31,-65,-66,-65v-34,0,-65,31,-65,65v0,35,31,66,65,66xm326,-574v-54,0,-99,-46,-99,-100v0,-53,46,-99,99,-99v54,0,100,45,100,99v0,55,-45,100,-100,100","w":519},"\u00e3":{"d":"354,-189v6,-29,19,-63,18,-89v-20,25,-82,27,-114,29v-77,6,-204,10,-204,118v0,66,55,93,115,93v101,0,166,-61,185,-151xm459,-416v0,89,-69,305,-66,348v2,27,35,21,58,19r-9,50v-49,12,-111,5,-107,-51v-1,-9,4,-24,0,-30v-65,127,-344,142,-344,-48v0,-169,211,-156,343,-175v42,-6,62,-33,62,-101v0,-61,-61,-74,-109,-74v-80,0,-149,30,-162,116r-63,0v17,-117,107,-169,218,-169v70,0,179,24,179,115xm256,-701v51,-1,93,54,140,56v21,0,40,-36,45,-56r40,0v-10,44,-37,100,-89,101v-48,1,-100,-56,-140,-56v-25,0,-43,33,-48,56r-41,0v13,-45,36,-101,93,-101","w":519},"\u00e7":{"d":"391,-167r63,0v-38,119,-116,183,-243,182r-39,41v44,-5,116,0,112,67v-5,93,-137,96,-203,59r14,-29v30,12,46,17,78,17v27,0,56,-9,56,-41v0,-43,-59,-49,-93,-32r-16,-18r58,-67v-106,-14,-164,-95,-164,-210v0,-161,103,-333,280,-333v112,0,197,56,193,176r-63,0v5,-77,-50,-123,-124,-123v-151,0,-223,146,-223,280v0,92,46,160,144,160v83,0,143,-54,170,-129","w":519},"\u00e9":{"d":"484,-241r-404,0v-16,113,31,203,147,203v82,0,145,-53,169,-128r63,0v-34,115,-113,181,-235,181v-136,0,-210,-85,-210,-219v0,-163,102,-327,279,-327v157,0,218,127,191,290xm88,-294r337,0v12,-110,-38,-183,-140,-184v-104,0,-175,88,-197,184xm251,-585r116,-144r81,0r-144,144r-53,0","w":519},"\u00ea":{"d":"484,-241r-404,0v-16,113,31,203,147,203v82,0,145,-53,169,-128r63,0v-34,115,-113,181,-235,181v-136,0,-210,-85,-210,-219v0,-163,102,-327,279,-327v157,0,218,127,191,290xm88,-294r337,0v12,-110,-38,-183,-140,-184v-104,0,-175,88,-197,184xm326,-691r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":519},"\u00eb":{"d":"484,-241r-404,0v-16,113,31,203,147,203v82,0,145,-53,169,-128r63,0v-34,115,-113,181,-235,181v-136,0,-210,-85,-210,-219v0,-163,102,-327,279,-327v157,0,218,127,191,290xm88,-294r337,0v12,-110,-38,-183,-140,-184v-104,0,-175,88,-197,184xm363,-601r19,-102r64,0r-20,102r-63,0xm204,-601r19,-102r64,0r-20,102r-63,0","w":519},"\u00e8":{"d":"484,-241r-404,0v-16,113,31,203,147,203v82,0,145,-53,169,-128r63,0v-34,115,-113,181,-235,181v-136,0,-210,-85,-210,-219v0,-163,102,-327,279,-327v157,0,218,127,191,290xm88,-294r337,0v12,-110,-38,-183,-140,-184v-104,0,-175,88,-197,184xm204,-729r74,0r82,144r-50,0","w":519},"\u00ed":{"d":"52,0r-63,0r111,-516r63,0xm84,-585r116,-144r81,0r-144,144r-53,0","w":185},"\u00ee":{"d":"52,0r-63,0r111,-516r63,0xm159,-691r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":185},"\u00ef":{"d":"52,0r-63,0r111,-516r63,0xm196,-601r19,-102r64,0r-20,102r-63,0xm37,-601r19,-102r64,0r-20,102r-63,0","w":185},"\u00ec":{"d":"52,0r-63,0r111,-516r63,0xm67,-729r74,0r82,144r-50,0","w":185},"\u00f1":{"d":"-11,0r111,-516r58,0v-4,30,-17,67,-16,94v39,-61,107,-109,184,-109v90,0,156,40,156,139v0,137,-55,262,-79,392r-63,0r72,-333v4,-16,7,-35,7,-52v0,-68,-52,-93,-108,-93v-91,0,-174,82,-202,213r-57,265r-63,0xm265,-701v51,-1,93,54,140,56v21,0,40,-36,45,-56r40,0v-10,44,-37,100,-89,101v-48,1,-100,-56,-140,-56v-25,0,-43,33,-48,56r-41,0v13,-45,36,-101,93,-101","w":537},"\u00f3":{"d":"302,-531v120,0,204,75,204,202v0,174,-95,344,-286,344v-133,0,-206,-86,-206,-215v0,-169,104,-331,288,-331xm232,-38v138,0,211,-158,211,-278v0,-96,-51,-162,-152,-162v-138,0,-214,151,-214,272v0,100,50,168,155,168xm270,-585r116,-144r81,0r-144,144r-53,0"},"\u00f4":{"d":"302,-531v120,0,204,75,204,202v0,174,-95,344,-286,344v-133,0,-206,-86,-206,-215v0,-169,104,-331,288,-331xm232,-38v138,0,211,-158,211,-278v0,-96,-51,-162,-152,-162v-138,0,-214,151,-214,272v0,100,50,168,155,168xm345,-691r-101,106r-61,0r136,-144r63,0r86,144r-57,0"},"\u00f6":{"d":"302,-531v120,0,204,75,204,202v0,174,-95,344,-286,344v-133,0,-206,-86,-206,-215v0,-169,104,-331,288,-331xm232,-38v138,0,211,-158,211,-278v0,-96,-51,-162,-152,-162v-138,0,-214,151,-214,272v0,100,50,168,155,168xm382,-601r19,-102r64,0r-20,102r-63,0xm223,-601r19,-102r64,0r-20,102r-63,0"},"\u00f2":{"d":"302,-531v120,0,204,75,204,202v0,174,-95,344,-286,344v-133,0,-206,-86,-206,-215v0,-169,104,-331,288,-331xm232,-38v138,0,211,-158,211,-278v0,-96,-51,-162,-152,-162v-138,0,-214,151,-214,272v0,100,50,168,155,168xm223,-729r74,0r82,144r-50,0"},"\u00f5":{"d":"302,-531v120,0,204,75,204,202v0,174,-95,344,-286,344v-133,0,-206,-86,-206,-215v0,-169,104,-331,288,-331xm232,-38v138,0,211,-158,211,-278v0,-96,-51,-162,-152,-162v-138,0,-214,151,-214,272v0,100,50,168,155,168xm275,-701v51,-1,93,54,140,56v21,0,40,-36,45,-56r40,0v-10,44,-37,100,-89,101v-48,1,-100,-56,-140,-56v-25,0,-43,33,-48,56r-41,0v13,-45,36,-101,93,-101"},"\u0161":{"d":"-1,-168r63,0v-1,100,73,130,146,130v56,0,130,-29,130,-95v0,-67,-71,-88,-139,-114v-69,-27,-138,-58,-138,-143v0,-100,108,-141,191,-141v108,0,186,47,184,166r-63,0v5,-79,-50,-113,-121,-113v-55,0,-128,17,-128,88v0,48,51,72,109,95v71,28,168,57,168,152v0,116,-110,158,-208,158v-99,0,-200,-54,-194,-183xm292,-620r101,-109r61,0r-136,144r-63,0r-86,-144r57,0","w":481},"\u00fa":{"d":"513,-516r-111,516r-58,0v4,-30,17,-67,16,-94v-39,61,-107,109,-184,109v-90,0,-156,-40,-156,-139v0,-137,55,-262,79,-392r63,0r-72,333v-4,16,-7,35,-7,52v0,68,52,93,108,93v91,0,174,-82,202,-213r57,-265r63,0xm260,-585r116,-144r81,0r-144,144r-53,0","w":537},"\u00fb":{"d":"513,-516r-111,516r-58,0v4,-30,17,-67,16,-94v-39,61,-107,109,-184,109v-90,0,-156,-40,-156,-139v0,-137,55,-262,79,-392r63,0r-72,333v-4,16,-7,35,-7,52v0,68,52,93,108,93v91,0,174,-82,202,-213r57,-265r63,0xm325,-691r-101,106r-61,0r136,-144r63,0r86,144r-57,0","w":537},"\u00fc":{"d":"513,-516r-111,516r-58,0v4,-30,17,-67,16,-94v-39,61,-107,109,-184,109v-90,0,-156,-40,-156,-139v0,-137,55,-262,79,-392r63,0r-72,333v-4,16,-7,35,-7,52v0,68,52,93,108,93v91,0,174,-82,202,-213r57,-265r63,0xm362,-601r19,-102r64,0r-20,102r-63,0xm203,-601r19,-102r64,0r-20,102r-63,0","w":537},"\u00f9":{"d":"513,-516r-111,516r-58,0v4,-30,17,-67,16,-94v-39,61,-107,109,-184,109v-90,0,-156,-40,-156,-139v0,-137,55,-262,79,-392r63,0r-72,333v-4,16,-7,35,-7,52v0,68,52,93,108,93v91,0,174,-82,202,-213r57,-265r63,0xm213,-729r74,0r82,144r-50,0","w":537},"\u00fd":{"d":"-55,186r12,-51v66,13,111,-11,135,-53r47,-82r-95,-516r66,0r74,438r2,0r238,-438r68,0r-367,638v-34,62,-99,78,-180,64xm223,-585r116,-144r81,0r-144,144r-53,0","w":463,"k":{",":92,".":92}},"\u00ff":{"d":"-55,186r12,-51v66,13,111,-11,135,-53r47,-82r-95,-516r66,0r74,438r2,0r238,-438r68,0r-367,638v-34,62,-99,78,-180,64xm335,-601r19,-102r64,0r-20,102r-63,0xm176,-601r19,-102r64,0r-20,102r-63,0","w":463,"k":{",":92,".":92}},"\u017e":{"d":"44,-463r11,-53r388,0r-11,50r-401,413r331,0r-11,53r-409,0r11,-51r399,-412r-308,0xm265,-620r101,-109r61,0r-136,144r-63,0r-86,-144r57,0","w":426},"\u2206":{"d":"-40,0r9,-43r400,-671r65,0r114,670r-9,44r-579,0xm26,-47r461,0r-70,-411v-7,-54,-27,-141,-30,-188r-4,0v-18,38,-68,120,-99,171","w":645},"\u2126":{"d":"144,-47r0,-3v-61,-65,-103,-175,-72,-319v43,-202,204,-337,370,-337v175,0,260,153,221,333v-32,150,-128,266,-210,323r-1,3r156,0r-10,47r-233,0r8,-35v93,-53,197,-169,231,-329v28,-133,-17,-294,-173,-294v-147,0,-269,133,-303,296v-32,150,22,275,91,327r-7,35r-232,0r10,-47r154,0","w":725},"\u03bc":{"d":"513,-516r-111,516r-58,0v4,-30,17,-67,16,-94v-39,61,-107,109,-184,109v-51,0,-95,-13,-121,-41r-45,217r-61,0r150,-707r63,0r-72,333v-4,16,-7,35,-7,52v0,68,52,93,108,93v91,0,174,-82,202,-213r57,-265r63,0","w":537},"\u03c0":{"d":"558,-466r-84,0r-68,319v-19,87,-19,122,-16,147r-56,0v-5,-15,-5,-54,13,-140r70,-326r-197,0v-35,136,-118,375,-175,466r-56,0v61,-104,138,-324,174,-466v-67,0,-97,6,-119,14r-3,-38v28,-15,69,-25,142,-25r392,0","w":560},"\u20ac":{"d":"566,-634r-34,53v-43,-45,-83,-70,-147,-70v-125,0,-187,114,-219,218r312,0r-26,44r-297,0r-8,60r278,0r-27,44r-254,0v0,115,36,245,173,245v79,0,131,-42,193,-85r-19,83v-57,39,-109,58,-178,58v-179,0,-237,-145,-237,-301r-79,0r26,-44r55,0r8,-60r-63,0r27,-44r46,0v35,-141,129,-277,289,-277v77,0,125,24,181,76"},"\u2113":{"d":"375,-135r25,24v-58,78,-128,121,-205,121v-119,1,-141,-102,-117,-204r-70,49r-11,-36v32,-24,64,-45,92,-68r60,-280v39,-183,127,-234,194,-234v81,0,104,69,86,156v-27,128,-138,250,-289,372r-6,30v-26,123,21,169,81,169v66,0,126,-53,160,-99xm204,-536r-52,242v115,-100,211,-202,234,-310v14,-68,3,-115,-53,-115v-41,0,-100,46,-129,183","w":476},"\u212e":{"d":"911,-335r-649,0v-3,0,-5,1,-5,4r0,196v0,9,3,16,9,23v63,65,149,106,245,106v103,0,195,-47,258,-119r58,0v-72,84,-188,139,-317,139v-221,0,-400,-161,-400,-359v0,-199,179,-361,400,-361v225,0,405,162,401,371xm764,-361r0,-197v0,-9,-3,-17,-10,-24v-63,-62,-148,-102,-243,-102v-95,0,-181,41,-244,105v-7,7,-10,15,-10,25r0,193v0,2,2,6,5,6r497,0v4,0,5,-4,5,-6","w":945},"\u2202":{"d":"172,-679r-14,-41v39,-26,95,-54,173,-54v124,0,220,118,165,375v-48,227,-172,410,-341,410v-127,0,-163,-113,-139,-228v32,-154,155,-251,265,-251v97,0,139,71,152,101v4,-13,8,-34,11,-47v41,-193,-26,-313,-128,-313v-62,0,-111,25,-144,48xm74,-219v-23,106,14,182,97,182v102,0,195,-124,240,-267v-6,-48,-49,-118,-132,-118v-88,0,-181,90,-205,203","w":536},"\u220f":{"d":"738,-643r-112,0r0,739r-56,0r0,-739r-302,0r0,739r-56,0r0,-739r-112,0r0,-51r638,0r0,51","w":765},"\u2211":{"d":"602,96r-506,0r0,-39r279,-355r-266,-357r0,-39r478,0r0,49r-397,0r0,4r251,336r-269,343r0,4r430,0r0,54","w":625},"\u2219":{"d":"71,-312v0,-31,26,-56,56,-56v30,0,56,26,56,56v0,28,-26,56,-55,56v-31,0,-57,-26,-57,-56","w":278},"\u221a":{"d":"638,-823r-221,975r-54,0r-164,-470r-75,27r-13,-36r124,-48r137,389v7,22,10,51,17,68r204,-905r45,0","w":639},"\u221e":{"d":"601,-439v86,0,142,62,142,151v0,93,-72,153,-150,153v-65,0,-114,-44,-185,-120v-53,59,-108,120,-190,120v-80,0,-147,-66,-147,-150v0,-88,65,-154,153,-154v76,0,134,61,188,122v55,-60,106,-122,189,-122xm114,-284v0,61,43,110,111,110v66,0,118,-67,161,-110v-46,-54,-95,-117,-169,-117v-66,0,-103,56,-103,117xm700,-286v0,-74,-45,-115,-105,-115v-70,0,-126,78,-162,113v68,73,109,114,164,114v66,0,103,-57,103,-112","w":794},"\u222b":{"d":"405,-831r-12,40v-27,-16,-65,-15,-88,12v-26,31,-36,84,-36,182v0,153,13,351,13,508v0,111,-24,167,-45,201v-29,46,-106,55,-150,27r12,-41v24,14,73,18,93,-12v18,-28,37,-71,37,-177v0,-157,-13,-359,-13,-512v0,-106,14,-166,51,-206v35,-38,96,-46,138,-22","w":419},"\u2248":{"d":"200,-423v91,0,129,74,211,76v42,0,69,-24,98,-75r25,22v-25,50,-63,92,-126,92v-67,0,-142,-76,-215,-77v-48,0,-76,35,-102,75r-27,-21v31,-58,79,-92,136,-92xm199,-259v93,0,129,77,213,77v42,0,68,-25,97,-75r25,22v-25,50,-63,91,-126,91v-67,0,-144,-76,-215,-77v-48,0,-77,37,-102,76r-27,-21v31,-59,79,-93,135,-93","w":583},"\u2260":{"d":"434,-499r-47,102r164,0r0,40r-181,0r-71,150r252,0r0,39r-268,0r-56,120r-32,-16r48,-104r-155,0r0,-39r173,0r69,-150r-242,0r0,-40r259,0r55,-118","w":603},"\u2264":{"d":"564,-94r-455,-226r0,-41r454,-226r0,49r-409,196r0,2r410,197r0,49xm566,-11r-463,0r0,-41r463,0r0,41","w":618},"\u2265":{"d":"109,-587r455,226r0,41r-454,226r0,-49r408,-196r0,-2r-409,-197r0,-49xm566,-11r-462,0r0,-41r462,0r0,41","w":619},"\u25ca":{"d":"584,-347r-203,391r-47,0r-202,-391r204,-391r46,0xm531,-345r-153,-294v-8,-16,-15,-37,-19,-50r-3,0v-46,122,-116,227,-171,341r154,295v10,20,16,37,18,49r3,0v47,-123,116,-226,171,-341","w":641},"\u00a0":{"w":278},"\u00ad":{"d":"38,-246r12,-58r251,0r-12,58r-251,0","w":370},"\u02c9":{"d":"284,-627r-256,0r8,-45r256,0","w":185},"\u03a9":{"d":"144,-47r0,-3v-61,-65,-103,-175,-72,-319v43,-202,204,-337,370,-337v175,0,260,153,221,333v-32,150,-128,266,-210,323r-1,3r156,0r-10,47r-233,0r8,-35v93,-53,197,-169,231,-329v28,-133,-17,-294,-173,-294v-147,0,-269,133,-303,296v-32,150,22,275,91,327r-7,35r-232,0r10,-47r154,0","w":725},"\u2215":{"d":"-165,34r444,-759r53,0r-444,759r-53,0","w":167},"\u2010":{"d":"38,-246r12,-58r251,0r-12,58r-251,0","w":370}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1993, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-BdIt
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":259,"face":{"font-family":"Helvetica Neue LT Std","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 8 4 2 2 2 9 2 4","ascent":"714","descent":"-286","x-height":"14","bbox":"-166 -975 1129 218.226","underline-thickness":"50","underline-position":"-50","slope":"-12","stemh":"107","stemv":"142","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":278},"!":{"d":"-4,0r33,-154r158,0r-33,154r-158,0xm301,-714r-42,194r-105,306r-70,0r25,-306r41,-194r151,0","w":296},"\"":{"d":"313,-393r0,-321r107,0r0,321r-107,0xm127,-393r0,-321r107,0r0,321r-107,0","w":481},"#":{"d":"81,0r28,-198r-83,0r10,-90r85,0r18,-124r-83,0r10,-90r85,0r28,-198r97,0r-28,198r97,0r27,-198r97,0r-27,198r84,0r-10,90r-87,0r-17,124r84,0r-10,90r-87,0r-27,198r-97,0r27,-198r-96,0r-28,198r-97,0xm332,-412r-96,0r-18,124r97,0","w":556},"$":{"d":"312,-296r-38,196v52,0,117,-28,117,-104v0,-54,-41,-77,-79,-92xm291,-444r32,-170v-54,-2,-113,26,-113,88v0,45,36,68,81,82xm186,104r18,-90v-131,-15,-201,-92,-198,-254r137,0v-2,89,30,126,83,135r40,-206v-103,-36,-194,-66,-193,-204v0,-151,131,-217,273,-216r16,-79r48,0r-17,86v101,21,180,90,170,218r-137,0v3,-54,-23,-85,-57,-99r-33,177v102,31,192,65,192,205v0,171,-143,240,-276,240r-17,87r-49,0","w":556},"%":{"d":"73,-482v0,-118,64,-232,193,-232v100,0,158,51,158,152v0,122,-73,238,-204,238v-97,0,-147,-66,-147,-158xm175,-464v0,37,14,65,52,65v71,0,95,-128,95,-184v0,-28,-18,-56,-48,-56v-78,0,-99,114,-99,175xm644,-126v0,37,14,65,52,65v71,0,95,-128,95,-184v0,-28,-18,-56,-48,-56v-78,0,-99,114,-99,175xm542,-144v0,-118,64,-232,193,-232v100,0,158,51,158,152v0,122,-73,238,-204,238v-97,0,-147,-66,-147,-158xm175,22r538,-744r85,0r-537,744r-86,0","w":963},"&":{"d":"365,-156r-98,-159v-56,33,-114,58,-114,132v0,49,48,80,94,80v44,0,85,-27,118,-53xm459,0r-32,-56v-130,125,-411,81,-411,-127v0,-120,91,-186,193,-227v-23,-38,-48,-81,-48,-126v0,-118,83,-186,197,-186v99,0,187,54,187,162v0,98,-88,153,-164,194r77,124v27,-28,43,-64,52,-101r127,0v-14,77,-55,150,-113,203r91,140r-156,0xm288,-554v0,38,19,69,38,100v39,-19,102,-56,102,-105v0,-41,-27,-68,-63,-68v-40,0,-77,24,-77,73","w":685},"\u2019":{"d":"110,-560r32,-154r158,0v-37,152,-26,314,-225,321r15,-70v59,-11,78,-40,89,-97r-69,0","w":278,"k":{"\u2019":39,"s":37,"\u0161":37}},"(":{"d":"262,-731r125,0v-174,229,-229,413,-229,650v0,88,18,177,38,263r-108,0v-36,-83,-62,-236,-62,-320v0,-248,88,-405,236,-593","w":296},")":{"d":"13,182r-125,0v174,-229,229,-413,229,-650v0,-88,-18,-177,-38,-263r108,0v36,83,62,236,62,320v0,248,-88,405,-236,593","w":296},"*":{"d":"313,-710r-24,128r121,-23r14,79r-120,18r57,105r-72,39r-55,-109r-86,97r-58,-56r89,-92r-108,-52r34,-73r109,55r17,-120","w":407},"+":{"d":"48,-199r0,-107r199,0r0,-199r107,0r0,199r199,0r0,107r-199,0r0,199r-107,0r0,-199r-199,0","w":600},",":{"d":"-13,0r32,-154r158,0v-36,144,-28,314,-225,321r15,-71v59,-10,78,-39,89,-96r-69,0","w":278},"-":{"d":"27,-212r26,-122r301,0r-26,122r-301,0","w":407},".":{"d":"-13,0r33,-154r158,0r-33,154r-158,0","w":278},"\/":{"d":"-2,17r279,-748r114,0r-279,748r-114,0","w":389},"0":{"d":"-4,-255v0,-198,108,-459,331,-459v158,0,234,108,234,265v0,204,-108,463,-343,463v-160,0,-222,-126,-222,-269xm138,-226v0,67,20,123,98,123v143,0,183,-273,183,-368v0,-70,-29,-126,-102,-126v-141,0,-179,273,-179,371","w":556},"1":{"d":"471,-700r-148,700r-151,0r96,-454r-171,0r23,-107v105,-5,184,-30,235,-139r116,0","w":556},"2":{"d":"179,-448r-135,0v14,-168,120,-266,281,-266v127,0,233,66,233,211v0,205,-289,266,-398,381r345,0r-28,122r-519,0v12,-175,146,-245,282,-319v69,-38,176,-82,176,-175v0,-70,-48,-98,-108,-98v-77,0,-126,67,-129,144","w":556},"3":{"d":"216,-317r19,-100v86,3,177,-4,177,-93v0,-60,-45,-87,-96,-87v-80,0,-117,41,-134,120r-135,0v21,-153,124,-237,271,-237v112,0,231,47,231,183v0,85,-59,142,-132,163v71,22,98,73,98,143v0,165,-133,239,-288,239v-170,0,-255,-89,-245,-254r135,0v-9,82,31,137,114,137v76,0,135,-46,135,-127v-1,-80,-68,-92,-150,-87","w":556},"4":{"d":"106,-279r208,0r57,-269r-2,0xm538,-700r-89,421r93,0r-25,117r-93,0r-35,162r-135,0r35,-162r-325,0r26,-129r410,-409r138,0","w":556},"5":{"d":"556,-700r-25,117r-298,0r-46,149r2,2v31,-27,64,-44,137,-44v103,0,195,79,195,209v0,174,-125,281,-292,281v-147,0,-241,-68,-246,-218r137,0v1,69,51,101,119,101v77,0,140,-61,140,-147v0,-135,-177,-156,-231,-60r-128,0r122,-390r414,0","w":556},"6":{"d":"150,-221v0,68,45,118,107,118v82,0,132,-61,132,-142v0,-78,-45,-118,-111,-118v-79,0,-128,66,-128,142xm577,-519r-137,0v-1,-53,-37,-88,-89,-88v-110,0,-154,119,-183,209r2,2v36,-52,95,-74,154,-74v126,0,207,84,207,214v0,150,-117,270,-270,270v-178,0,-248,-120,-248,-285v0,-245,127,-443,343,-443v122,0,215,59,221,195","w":556},"7":{"d":"591,-700r-26,122v-160,134,-294,377,-346,578r-151,0v49,-193,194,-433,342,-568r-344,0r28,-132r497,0","w":556},"8":{"d":"122,-201v0,67,59,108,123,108v83,0,137,-45,137,-118v0,-76,-65,-112,-124,-112v-75,0,-136,41,-136,122xm68,-509v0,-128,116,-205,264,-205v133,0,218,84,218,188v0,69,-59,137,-135,158v60,12,109,87,109,157v0,143,-140,225,-284,225v-151,0,-260,-86,-260,-206v0,-110,82,-159,175,-187v-48,-23,-87,-71,-87,-130xm195,-509v0,132,227,113,228,-3v0,-66,-53,-95,-111,-95v-73,0,-117,37,-117,98","w":556},"9":{"d":"415,-479v0,-68,-45,-118,-107,-118v-82,0,-132,61,-132,142v0,78,45,118,111,118v79,0,128,-66,128,-142xm-12,-181r137,0v1,53,37,88,89,88v110,0,154,-119,183,-209r-2,-2v-36,52,-95,74,-154,74v-126,0,-207,-84,-207,-214v0,-150,117,-270,270,-270v178,0,248,120,248,285v0,245,-127,443,-343,443v-122,0,-215,-59,-221,-195","w":556},":":{"d":"-13,0r33,-154r158,0r-33,154r-158,0xm252,-508r-33,154r-158,0r33,-154r158,0","w":278},";":{"d":"-13,0r32,-154r158,0v-36,144,-28,314,-225,321r15,-71v59,-10,78,-39,89,-96r-69,0xm61,-354r33,-154r158,0r-33,154r-158,0","w":278},"<":{"d":"554,-514r0,115r-367,146r367,146r0,115r-508,-202r0,-118","w":600},"=":{"d":"553,-413r0,107r-505,0r0,-107r505,0xm553,-199r0,107r-505,0r0,-107r505,0","w":600},">":{"d":"46,8r0,-115r367,-146r-367,-146r0,-115r508,202r0,118","w":600},"?":{"d":"216,-491r-142,0v8,-159,127,-240,278,-240v115,0,218,57,218,185v0,95,-65,148,-139,190v-60,33,-105,63,-114,136r-132,0v19,-131,69,-164,165,-216v39,-21,71,-53,71,-100v0,-53,-40,-78,-87,-78v-71,0,-110,58,-118,123xm123,0r33,-154r158,0r-33,154r-158,0","w":574},"@":{"d":"291,-319v0,53,32,89,78,89v72,0,123,-82,123,-151v0,-49,-34,-85,-77,-85v-72,0,-124,81,-124,147xm622,-545r-63,258v-8,27,-16,66,9,66v55,0,116,-77,116,-184v0,-159,-119,-246,-269,-246v-172,0,-283,127,-283,296v0,175,123,292,295,292v84,0,163,-30,215,-82r84,0v-68,103,-180,162,-305,162v-213,0,-385,-160,-385,-374v0,-211,172,-374,380,-374v182,0,348,121,348,305v0,206,-171,290,-235,290v-45,0,-68,-28,-75,-57v-80,123,-265,31,-265,-113v0,-126,86,-255,218,-255v43,0,94,18,117,70r16,-54r82,0","w":800},"A":{"d":"395,-560r-154,284r191,0r-35,-284r-2,0xm-77,0r422,-714r161,0r119,714r-156,0r-23,-159r-267,0r-90,159r-166,0","w":685},"B":{"d":"215,-318r-42,196r197,0v71,0,123,-39,123,-115v0,-75,-67,-81,-124,-81r-154,0xm-4,0r150,-714r300,0v143,0,232,31,232,167v0,84,-54,153,-134,168v68,18,106,76,106,145v0,155,-130,234,-273,234r-381,0xm272,-592r-35,167v121,-5,282,33,284,-94v2,-112,-151,-62,-249,-73","w":722},"C":{"d":"713,-466r-157,0v0,-88,-53,-133,-128,-133v-161,0,-234,163,-234,300v0,98,48,184,162,184v87,0,154,-67,168,-142r157,0v-64,199,-172,274,-327,274v-200,0,-317,-115,-317,-316v0,-231,149,-432,390,-432v165,0,290,91,286,265","w":741},"D":{"d":"-4,0r151,-714r258,0v199,0,303,103,303,278v0,249,-138,436,-413,436r-299,0xm277,-582r-96,450r121,0v160,0,249,-126,249,-277v0,-103,-44,-173,-156,-173r-118,0","w":741},"E":{"d":"-4,0r150,-714r545,0r-27,132r-388,0r-32,153r359,0r-26,122r-359,0r-37,175r394,0r-28,132r-551,0","w":667},"F":{"d":"-4,0r151,-714r508,0r-29,132r-350,0r-35,165r306,0r-26,122r-305,0r-63,295r-157,0","w":593,"k":{"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,",":129,".":129}},"G":{"d":"536,0v-2,-23,4,-54,-2,-73v-47,64,-114,90,-180,90v-200,0,-317,-115,-317,-316v0,-231,149,-432,390,-432v167,0,303,78,303,253r-157,0v-4,-86,-58,-121,-145,-121v-161,0,-234,163,-234,300v0,98,48,184,162,184v119,0,171,-63,198,-154r-165,0r25,-117r303,0r-82,386r-99,0","w":759},"H":{"d":"-4,0r151,-714r158,0r-58,274r289,0r58,-274r158,0r-151,714r-158,0r65,-308r-289,0r-65,308r-158,0","w":741},"I":{"d":"-4,0r151,-714r158,0r-151,714r-158,0","w":296},"J":{"d":"565,-714r-106,511v-32,140,-106,220,-261,220v-112,0,-217,-48,-217,-173v0,-38,7,-73,13,-110r143,0v-7,31,-14,61,-14,84v0,44,37,67,77,67v81,0,94,-56,108,-122r99,-477r158,0","w":556},"K":{"d":"-4,0r149,-714r157,0r-62,299r326,-299r208,0r-343,294r219,420r-177,0r-163,-321r-109,95r-47,226r-158,0","w":722},"L":{"d":"-4,0r150,-714r158,0r-122,582r345,0r-28,132r-503,0","w":574,"k":{"T":92,"V":74,"W":55,"Y":92,"\u00dd":92,"\u0178":92,"\u2019":111,"y":18,"\u00fd":18,"\u00ff":18}},"M":{"d":"-4,0r151,-714r217,0r55,517r2,0r275,-517r219,0r-151,714r-147,0r130,-568r-2,0r-302,568r-120,0r-69,-568r-2,0r-107,568r-149,0","w":907},"N":{"d":"-4,0r151,-714r162,0r194,508r2,0r102,-508r144,0r-151,714r-157,0r-196,-501r-2,0r-102,501r-147,0","w":741},"O":{"d":"194,-299v0,98,48,184,162,184v154,0,231,-164,231,-299v0,-100,-44,-185,-159,-185v-161,0,-234,163,-234,300xm37,-299v0,-231,149,-432,390,-432v193,0,317,106,317,306v0,235,-140,442,-390,442v-200,0,-317,-115,-317,-316","w":778},"P":{"d":"277,-592r-44,214r160,0v79,0,129,-40,129,-125v0,-121,-136,-82,-245,-89xm-4,0r149,-714r286,0v144,1,248,50,248,208v0,158,-130,250,-278,250r-194,0r-54,256r-157,0","w":667,"k":{"A":74,"\u00c6":74,"\u00c1":74,"\u00c2":74,"\u00c4":74,"\u00c0":74,"\u00c5":74,"\u00c3":74,",":153,".":153}},"Q":{"d":"362,-189r84,-69r63,71v52,-60,78,-149,78,-227v0,-100,-44,-185,-159,-185v-161,0,-234,163,-234,300v0,98,48,184,162,184v22,0,43,-4,62,-11xm682,9r-84,70r-84,-96v-47,22,-100,34,-160,34v-200,0,-317,-115,-317,-316v0,-231,149,-432,390,-432v193,0,317,106,317,306v0,137,-48,265,-138,348","w":778},"R":{"d":"-4,0r150,-714r341,0v129,-2,213,49,213,187v0,100,-72,175,-164,194v126,38,44,207,79,333r-153,0v-17,-59,1,-128,1,-193v0,-123,-144,-77,-251,-86r-59,279r-157,0xm278,-592r-42,201v137,1,307,16,307,-113v0,-130,-153,-77,-265,-88","w":722,"k":{"T":18,"V":18,"W":18,"Y":18,"\u00dd":18,"\u0178":18}},"S":{"d":"5,-237r149,0v-5,101,64,132,154,132v63,0,136,-30,136,-101v0,-70,-92,-84,-181,-111v-90,-28,-180,-69,-180,-192v0,-159,145,-222,283,-222v146,0,268,65,268,230r-149,0v3,-80,-55,-108,-128,-108v-60,0,-125,23,-125,89v0,71,121,89,170,101v112,29,191,72,191,200v0,171,-155,236,-291,236v-197,0,-297,-82,-297,-254","w":648},"T":{"d":"156,0r122,-582r-224,0r28,-132r596,0r-28,132r-214,0r-122,582r-158,0","w":611,"k":{"\u00fc":74,"\u0161":74,"\u00f2":74,"\u00f6":74,"\u00ec":25,"\u00ee":25,"\u00ed":25,"\u00e8":74,"\u00eb":74,"\u00ea":74,"\u00e3":74,"\u00e5":74,"\u00e0":74,"\u00e4":74,"\u00e2":74,"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,",":92,".":92,"y":55,"\u00fd":55,"\u00ff":55,"-":98,"a":74,"\u00e6":74,"\u00e1":74,"c":74,"\u00e7":74,"e":74,"\u00e9":74,"i":25,"\u00ef":25,"o":74,"\u00f8":74,"\u0153":74,"\u00f3":74,"\u00f4":74,"\u00f5":74,"r":74,"s":74,"u":74,"\u00fa":74,"\u00fb":74,"\u00f9":74,"w":74,":":50,";":50}},"U":{"d":"750,-714r-87,415v-43,205,-122,316,-344,316v-139,0,-281,-56,-281,-212v0,-185,70,-345,102,-519r157,0r-87,413v-5,23,-15,67,-15,90v0,36,26,96,134,96v128,0,152,-68,175,-176r89,-423r157,0","w":741},"V":{"d":"712,-714r-381,714r-177,0r-82,-714r157,0r47,536r2,0r271,-536r163,0","w":630,"k":{"\u00f6":37,"\u00f4":37,"\u00ee":6,"\u00e8":25,"\u00eb":25,"\u00ea":25,"\u00e3":37,"\u00e5":37,"\u00e0":37,"\u00e4":37,"\u00e2":37,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37,",":92,".":92,"-":37,"a":37,"\u00e6":37,"\u00e1":37,"e":25,"\u00e9":25,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":37,"\u00f8":37,"\u0153":37,"\u00f3":37,"\u00f2":37,"\u00f5":37,"r":18,"u":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":31,";":31}},"W":{"d":"1013,-714r-335,714r-156,0r-18,-510r-2,0r-222,510r-158,0r-49,-714r157,0r10,523r2,0r226,-523r150,0r18,521r2,0r218,-521r157,0","w":944,"k":{"\u00fc":18,"\u00f6":37,"\u00ea":37,"\u00e4":37,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,",":74,".":74,"-":37,"a":37,"\u00e6":37,"\u00e1":37,"\u00e2":37,"\u00e0":37,"\u00e5":37,"\u00e3":37,"e":37,"\u00e9":37,"\u00eb":37,"\u00e8":37,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":37,"\u00f8":37,"\u0153":37,"\u00f3":37,"\u00f4":37,"\u00f2":37,"\u00f5":37,"r":18,"u":18,"\u00fa":18,"\u00fb":18,"\u00f9":18,":":31,";":43}},"X":{"d":"-70,0r325,-376r-167,-338r171,0r101,236r183,-236r186,0r-297,345r177,369r-173,0r-112,-255r-204,255r-190,0","w":667},"Y":{"d":"175,0r57,-277r-171,-437r161,0r107,304r222,-304r185,0r-348,444r-55,270r-158,0","w":648,"k":{"\u00fc":37,"\u00f6":55,"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,",":98,".":98,"v":18,"-":61,"a":55,"\u00e6":55,"\u00e1":55,"\u00e2":55,"\u00e4":55,"\u00e0":55,"\u00e5":55,"\u00e3":55,"e":55,"\u00e9":55,"\u00ea":55,"\u00eb":55,"\u00e8":55,"i":18,"\u00ed":18,"\u00ee":18,"\u00ef":18,"\u00ec":18,"o":55,"\u00f8":55,"\u0153":55,"\u00f3":55,"\u00f4":55,"\u00f2":55,"\u00f5":55,"u":37,"\u00fa":37,"\u00fb":37,"\u00f9":37,":":37,";":37,"p":37,"q":55}},"Z":{"d":"-43,0r27,-130r477,-452r-366,0r29,-132r564,0r-26,126r-481,456r403,0r-26,132r-601,0","w":648},"[":{"d":"-37,182r192,-913r258,0r-24,112r-125,0r-145,689r126,0r-24,112r-258,0","w":333},"\\":{"d":"112,-731r279,748r-114,0r-279,-748r114,0","w":389},"]":{"d":"338,-731r-192,913r-258,0r24,-112r125,0r145,-689r-126,0r24,-112r258,0","w":333},"^":{"d":"61,-315r172,-385r134,0r172,385r-117,0r-122,-275r-122,275r-117,0","w":600},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"\u2018":{"d":"268,-547r-32,154r-158,0v37,-152,26,-314,225,-321r-15,70v-59,11,-78,40,-89,97r69,0","w":278,"k":{"\u2018":39}},"a":{"d":"360,-248v-78,47,-225,-8,-225,109v0,39,37,58,78,58v112,0,124,-87,147,-167xm193,-360r-133,0v18,-130,128,-171,245,-171v92,0,219,20,215,136v-4,127,-58,234,-64,365v0,9,2,21,5,30r-142,0r0,-51v-39,44,-100,65,-158,65v-113,0,-168,-64,-168,-136v0,-99,75,-161,198,-176v134,-16,197,-9,197,-75v0,-51,-54,-63,-90,-63v-51,0,-96,24,-105,76","w":574},"b":{"d":"325,-424v-111,0,-154,130,-154,222v0,63,38,109,103,109v107,0,152,-127,152,-216v0,-65,-28,-115,-101,-115xm-12,0r150,-714r142,0r-53,252v47,-44,85,-69,155,-69v131,0,186,100,186,220v0,160,-92,325,-268,325v-71,0,-137,-23,-162,-95r-2,0r-17,81r-131,0","w":611},"c":{"d":"534,-338r-142,0v0,-61,-33,-86,-95,-86v-108,0,-145,130,-145,219v0,62,26,112,98,112v63,0,99,-45,115,-96r142,0v-43,129,-133,203,-267,203v-144,0,-230,-71,-230,-222v0,-176,106,-323,292,-323v126,0,229,56,232,193","w":556},"d":{"d":"350,0v3,-21,15,-47,12,-66v-32,56,-92,80,-155,80v-124,0,-197,-80,-197,-204v0,-170,91,-341,282,-341v62,0,121,30,147,83r57,-266r142,0r-151,714r-137,0xm307,-424v-107,0,-155,125,-155,216v0,62,34,115,101,115v106,0,156,-130,156,-219v0,-66,-33,-112,-102,-112","w":611},"e":{"d":"528,-224r-381,0v-9,83,24,131,113,131v57,0,85,-38,106,-71r142,0v-45,116,-119,178,-268,178v-138,0,-230,-79,-230,-226v0,-165,109,-319,285,-319v173,0,273,123,233,307xm162,-314r237,0v0,-53,-13,-110,-96,-110v-80,0,-120,52,-141,110","w":574},"f":{"d":"17,0r89,-422r-84,0r20,-95r85,0v28,-132,52,-203,201,-203v31,0,62,3,93,8r-22,102v-15,-1,-31,-3,-46,-3v-70,0,-69,36,-84,96r101,0r-20,95r-102,0r-89,422r-142,0","w":352},"g":{"d":"304,-424v-95,0,-145,112,-145,195v0,61,30,114,96,114v102,0,151,-109,151,-197v0,-65,-33,-112,-102,-112xm590,-517r-103,490v-35,157,-114,223,-285,223v-105,0,-221,-45,-221,-169r142,0v-2,52,47,74,93,74v90,0,116,-79,144,-180r-2,-2v-37,49,-84,73,-142,73v-123,0,-199,-84,-199,-211v0,-151,95,-312,261,-312v73,0,127,29,160,93r16,-79r136,0","w":611},"h":{"d":"-12,0r149,-714r142,0r-53,257r2,0v22,-30,78,-74,171,-74v98,0,151,49,151,139v0,138,-54,261,-79,392r-142,0r63,-303v4,-15,9,-49,9,-63v0,-31,-35,-53,-68,-53v-86,0,-130,72,-145,144r-58,275r-142,0","w":611},"i":{"d":"-12,0r110,-517r143,0r-110,517r-143,0xm283,-714r-26,117r-143,0r26,-117r143,0"},"j":{"d":"-132,177r24,-114v17,1,34,2,51,2v38,0,48,-65,54,-93r103,-489r142,0r-113,536v-24,110,-64,163,-192,163v-23,0,-46,-4,-69,-5xm283,-714r-26,117r-143,0r26,-117r143,0"},"k":{"d":"-12,0r150,-714r142,0r-82,388r2,2r204,-193r175,0r-232,196r133,321r-156,0r-85,-231r-74,63r-35,168r-142,0","w":556},"l":{"d":"-12,0r152,-714r142,0r-152,714r-142,0"},"m":{"d":"-12,0r108,-517r136,0v-3,23,-16,53,-14,73v43,-58,107,-87,181,-87v62,0,113,28,125,90v35,-53,109,-90,175,-90v81,0,157,42,157,131v0,141,-55,267,-79,400r-142,0r68,-327v14,-52,-6,-92,-58,-92v-76,0,-119,79,-133,142r-58,277r-143,0r68,-327v14,-52,-6,-92,-58,-92v-76,0,-119,79,-133,142r-58,277r-142,0","w":907},"n":{"d":"-12,0r108,-517r136,0v-3,23,-16,52,-14,72v46,-57,107,-86,181,-86v98,0,151,49,151,139v0,138,-54,261,-79,392r-142,0r63,-303v4,-15,9,-49,9,-63v0,-31,-35,-53,-68,-53v-86,0,-130,72,-145,144r-58,275r-142,0","w":611},"o":{"d":"10,-209v0,-175,113,-322,297,-322v142,0,241,70,241,219v0,182,-113,326,-301,326v-144,0,-237,-75,-237,-223xm152,-209v0,61,35,116,102,116v106,0,152,-130,152,-217v0,-69,-30,-114,-104,-114v-104,0,-150,128,-150,215","w":593},"p":{"d":"323,-424v-106,0,-156,130,-156,219v0,66,33,112,102,112v107,0,155,-125,155,-216v0,-62,-34,-115,-101,-115xm-59,182r149,-699r137,0v-3,21,-15,47,-12,66v32,-56,92,-80,155,-80v124,0,196,80,196,204v0,170,-90,341,-281,341v-60,0,-123,-26,-145,-83r-3,0r-54,251r-142,0","w":611},"q":{"d":"590,-517r-147,699r-142,0r47,-223v-35,30,-75,55,-148,55v-133,0,-190,-100,-190,-220v0,-160,92,-325,268,-325v73,0,135,27,164,95r17,-81r131,0xm308,-424v-111,0,-156,127,-156,216v0,65,28,115,105,115v102,0,154,-130,154,-222v0,-63,-38,-109,-103,-109","w":611},"r":{"d":"-12,0r108,-517r135,0v-5,31,-20,67,-19,95v40,-83,118,-120,222,-106r-29,138v-20,-4,-40,-9,-60,-9v-109,0,-148,82,-167,170r-48,229r-142,0","w":389,"k":{",":74,".":74,"y":-18,"\u00fd":-18,"\u00ff":-18,"v":-18,"-":37}},"s":{"d":"484,-366r-132,0v-1,-44,-26,-70,-80,-70v-50,0,-87,14,-87,51v0,42,94,61,136,75v76,26,136,61,136,148v0,128,-127,176,-246,176v-107,0,-231,-44,-220,-182r132,0v-8,63,47,87,102,87v43,0,90,-15,90,-62v0,-36,-20,-46,-51,-57v-93,-34,-221,-41,-221,-167v0,-122,129,-164,229,-164v113,0,214,32,212,165","w":519},"t":{"d":"310,-674r-32,157r102,0r-22,95r-101,0r-57,281v4,57,56,35,99,35r-24,110v-104,10,-224,17,-224,-100v0,-113,45,-218,65,-326r-93,0r22,-95r91,0r32,-157r142,0","w":370},"u":{"d":"586,-517r-108,517r-136,0v3,-23,16,-52,14,-72v-46,57,-107,86,-181,86v-98,0,-151,-49,-151,-139v0,-138,54,-261,79,-392r142,0r-63,303v-4,15,-9,49,-9,63v0,31,35,53,68,53v86,0,130,-72,145,-144r58,-275r142,0","w":611},"v":{"d":"543,-517r-283,517r-162,0r-68,-517r146,0r32,368r2,0r183,-368r150,0","w":519,"k":{",":55,".":55}},"w":{"d":"834,-517r-270,517r-148,0r-18,-363r-2,0r-160,363r-149,0r-57,-517r145,0r20,364r2,0r159,-364r144,0r16,361r2,0r166,-361r150,0","w":815,"k":{",":37,".":37}},"x":{"d":"531,-517r-215,248r131,269r-150,0r-75,-170r-138,170r-161,0r240,-277r-117,-240r152,0r57,149r117,-149r159,0","w":519},"y":{"d":"543,-517r-329,590v-53,112,-141,116,-277,104r24,-118v19,0,39,6,58,6v67,0,75,-43,94,-70r-92,-512r146,0r45,370r2,0r179,-370r150,0","w":519,"k":{",":55,".":55}},"z":{"d":"-51,0r22,-105r324,-305r-249,0r23,-107r434,0r-22,105r-325,305r285,0r-23,107r-469,0","w":500},"{":{"d":"411,-731r-23,112r-54,0v-44,0,-61,34,-69,73r-32,152v-20,98,-93,114,-124,118r0,3v25,3,79,20,79,79v0,82,-33,147,-40,229v-3,38,55,37,96,35r-23,112r-127,0v-47,4,-111,-55,-95,-135r43,-211v0,-49,-48,-67,-77,-67r18,-87v32,0,97,-23,111,-90r39,-188v19,-91,106,-135,151,-135r127,0","w":333},"|":{"d":"58,214r0,-1000r107,0r0,1000r-107,0","w":222},"}":{"d":"-110,182r23,-112r54,0v44,0,61,-34,69,-73r32,-152v20,-98,93,-114,124,-118r0,-3v-25,-3,-79,-20,-79,-79v0,-82,33,-147,40,-229v3,-38,-55,-37,-96,-35r23,-112r127,0v47,-4,111,55,95,135r-43,211v0,49,48,67,77,67r-18,87v-32,0,-97,23,-111,90r-39,188v-19,91,-106,135,-151,135r-127,0","w":333},"~":{"d":"192,-340v66,0,155,68,213,68v40,0,65,-37,88,-72r40,93v-30,42,-63,86,-125,86v-80,0,-130,-68,-217,-68v-44,0,-68,37,-84,72r-40,-93v22,-42,58,-86,125,-86","w":600},"\u00a1":{"d":"-37,183r42,-194r105,-306r70,0r-25,306r-41,194r-151,0xm269,-531r-33,154r-158,0r33,-154r158,0","w":296},"\u00a2":{"d":"216,-99r68,-325v-97,11,-131,134,-131,219v0,51,17,93,63,106xm171,117r22,-107v-116,-15,-182,-86,-182,-218v0,-177,107,-325,296,-323r18,-86r49,0r-19,90v101,14,177,71,180,189r-142,0v0,-48,-20,-74,-60,-82r-68,327v55,-7,86,-49,101,-96r142,0v-40,139,-121,204,-266,203r-22,103r-49,0","w":556},"\u00a3":{"d":"31,17r-42,-97v74,-54,148,-109,122,-231r-97,0r18,-85r64,0v-11,-29,-22,-85,-22,-111v0,-145,127,-224,262,-224v150,0,239,85,232,255r-137,0v3,-82,-21,-138,-95,-138v-71,0,-113,48,-113,117v0,33,9,78,18,101r141,0r-17,85r-114,0v8,97,-27,149,-94,197r2,2v70,-35,147,7,222,7v33,0,70,-16,96,-36r41,107v-56,36,-100,51,-166,51v-62,0,-136,-38,-203,-38v-48,0,-77,13,-118,38","w":556},"\u2044":{"d":"-166,22r414,-744r85,0r-412,744r-87,0","w":167},"\u00a5":{"d":"130,0r29,-138r-155,0r20,-95r155,0v6,-26,12,-51,1,-75r-141,0r20,-95r94,0r-88,-311r165,0r59,311r2,0r189,-311r165,0r-217,311r93,0r-20,95r-139,0v-17,19,-27,45,-33,75r157,0r-20,95r-155,0r-29,138r-152,0","w":556},"\u0192":{"d":"-31,166r28,-104v12,0,24,1,36,1v58,0,70,-61,82,-104r81,-296r-96,0r28,-95r95,0r39,-147v26,-130,145,-171,288,-144r-28,103v-14,-1,-28,-4,-42,-4v-58,0,-73,36,-84,78r-30,114r104,0r-26,95r-106,0r-85,314v-32,144,-114,213,-284,189","w":556},"\u00a7":{"d":"213,-256r72,59v18,15,42,43,69,43v36,0,69,-25,69,-64v0,-47,-39,-71,-71,-98r-63,-53v-30,-25,-33,-35,-69,-35v-31,0,-64,29,-64,63v0,44,26,60,57,85xm8,-17r127,0v-4,50,29,92,83,92v46,0,89,-16,89,-70v0,-41,-57,-82,-87,-104v-73,-54,-190,-108,-191,-221v0,-83,59,-147,143,-157v-23,-31,-32,-47,-32,-84v0,-113,123,-170,223,-170v116,0,214,61,198,190r-127,0v3,-47,-22,-83,-75,-83v-44,0,-77,25,-77,68v0,36,53,74,78,93v74,55,190,108,190,222v0,89,-70,142,-131,157v20,22,30,57,30,87v0,117,-112,179,-227,179v-124,0,-220,-67,-214,-199","w":593},"\u00a4":{"d":"20,-149r57,-58v-63,-69,-65,-218,0,-286r-57,-58r57,-57r57,56v64,-58,220,-62,283,-1r58,-57r61,61r-56,55v60,68,60,219,-1,289r55,56r-55,55r-57,-58v-66,66,-223,66,-290,1r-56,58xm280,-491v-81,0,-124,68,-124,142v0,73,44,140,123,140v79,0,119,-70,119,-142v0,-70,-40,-140,-118,-140","w":556},"'":{"d":"110,-393r0,-321r107,0r0,321r-107,0","w":278},"\u201c":{"d":"256,-547r-32,154r-158,0v37,-152,26,-314,225,-321r-15,70v-59,11,-78,40,-89,97r69,0xm467,-547r-32,154r-158,0v37,-152,26,-314,225,-321r-15,70v-59,11,-78,40,-89,97r69,0","w":481},"\u00ab":{"d":"345,-80r-128,-138r28,-130r181,-115r-26,123r-110,68r77,85xm149,-80r-128,-138r28,-130r181,-115r-26,123r-110,68r77,85","w":463},"\u2039":{"d":"145,-80r-128,-138r28,-130r181,-115r-26,123r-110,68r77,85"},"\u203a":{"d":"76,-463r128,138r-28,130r-181,115r26,-123r110,-68r-77,-85"},"\ufb01":{"d":"635,-714r-26,117r-142,0r26,-117r142,0xm341,0r110,-517r142,0r-110,517r-142,0xm17,0r89,-422r-84,0r20,-95r85,0v28,-132,52,-203,201,-203v31,0,62,3,93,8r-22,102v-15,-1,-31,-3,-46,-3v-70,0,-69,36,-84,96r101,0r-20,95r-102,0r-89,422r-142,0","w":611},"\ufb02":{"d":"340,0r152,-714r142,0r-152,714r-142,0xm17,0r89,-422r-84,0r20,-95r85,0v28,-132,52,-203,201,-203v31,0,62,3,93,8r-22,102v-15,-1,-31,-3,-46,-3v-70,0,-69,36,-84,96r101,0r-20,95r-102,0r-89,422r-142,0","w":611},"\u2013":{"d":"-29,-212r26,-122r500,0r-26,122r-500,0","w":500},"\u2020":{"d":"124,166r118,-566r-188,0r25,-117r188,0r41,-197r132,0r-41,197r188,0r-25,117r-188,0r-118,566r-132,0","w":593},"\u2021":{"d":"124,166r41,-193r-188,0r24,-117r188,0r54,-256r-186,0r23,-117r188,0r41,-197r132,0r-41,197r188,0r-25,117r-188,0r-54,256r188,0r-24,117r-188,0r-41,193r-132,0","w":593},"\u00b7":{"d":"43,-287v0,-47,39,-85,85,-85v45,0,84,39,84,85v0,42,-39,84,-83,84v-47,0,-86,-38,-86,-84","w":278},"\u00b6":{"d":"146,166r110,-519v-135,0,-202,-71,-180,-177v29,-138,137,-184,276,-184r282,0r-185,880r-96,0r169,-800r-111,0r-169,800r-96,0","w":600},"\u2022":{"d":"72,-357v0,-99,79,-178,178,-178v99,0,179,79,179,178v0,99,-80,179,-179,179v-99,0,-178,-80,-178,-179","w":500},"\u201a":{"d":"-13,0r32,-154r158,0v-37,152,-26,314,-225,321r15,-70v59,-11,78,-40,89,-97r-69,0","w":278},"\u201e":{"d":"-11,0r32,-154r158,0v-37,152,-26,314,-225,321r15,-70v59,-11,78,-40,89,-97r-69,0xm200,0r32,-154r158,0v-37,152,-26,314,-225,321r15,-70v59,-11,78,-40,89,-97r-69,0","w":481},"\u201d":{"d":"309,-560r32,-154r158,0v-37,152,-26,314,-225,321r15,-70v59,-11,78,-40,89,-97r-69,0xm98,-560r32,-154r158,0v-37,152,-26,314,-225,321r15,-70v59,-11,78,-40,89,-97r-69,0","w":481},"\u00bb":{"d":"87,-463r128,138r-28,130r-181,115r26,-123r110,-68r-77,-85xm283,-463r128,138r-28,130r-181,115r26,-123r110,-68r-77,-85","w":463},"\u2026":{"d":"349,0r33,-154r158,0r-33,154r-158,0xm682,0r33,-154r158,0r-33,154r-158,0xm16,0r33,-154r158,0r-33,154r-158,0","w":1000},"\u2030":{"d":"404,-120v0,-104,58,-210,172,-210v81,0,130,44,130,125v0,109,-54,219,-177,219v-83,0,-125,-55,-125,-134xm494,-113v0,27,9,62,42,62v60,0,80,-114,80,-160v0,-26,-13,-54,-42,-54v-58,0,-80,108,-80,152xm755,-120v0,-104,58,-210,172,-210v81,0,130,44,130,125v0,109,-54,219,-177,219v-83,0,-125,-55,-125,-134xm845,-113v0,27,9,62,42,62v60,0,80,-114,80,-160v0,-26,-13,-54,-42,-54v-58,0,-80,108,-80,152xm70,-504v0,-104,58,-210,172,-210v81,0,130,44,130,125v0,109,-54,219,-177,219v-83,0,-125,-55,-125,-134xm160,-497v0,27,9,62,42,62v60,0,80,-114,80,-160v0,-26,-13,-54,-42,-54v-58,0,-80,108,-80,152xm76,22r538,-744r85,0r-537,744r-86,0","w":1130},"\u00bf":{"d":"323,-44r142,0v-8,159,-127,240,-278,240v-115,0,-218,-57,-218,-185v0,-95,65,-148,139,-190v60,-33,105,-63,114,-136r132,0v-19,131,-69,164,-165,216v-39,21,-71,53,-71,100v0,53,40,78,87,78v71,0,110,-58,118,-123xm416,-531r-33,154r-158,0r33,-154r158,0","w":574},"`":{"d":"176,-723r88,142r-100,0r-140,-142r152,0"},"\u00b4":{"d":"374,-723r-140,142r-100,0r88,-142r152,0"},"\u02c6":{"d":"9,-581r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0"},"\u02dc":{"d":"139,-714v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122"},"\u00af":{"d":"35,-616r14,-75r305,0r-14,75r-305,0"},"\u02d8":{"d":"38,-727r65,0v4,49,43,71,94,71v59,0,90,-26,114,-71r66,0v-27,93,-88,146,-189,146v-91,0,-150,-57,-150,-146"},"\u02d9":{"d":"115,-597r24,-117r131,0r-24,117r-131,0"},"\u00a8":{"d":"213,-597r24,-117r131,0r-24,117r-131,0xm17,-597r24,-117r131,0r-24,117r-131,0"},"\u02da":{"d":"131,-656v0,39,25,70,63,70v38,0,64,-31,64,-70v0,-39,-26,-70,-64,-70v-38,0,-63,31,-63,70xm72,-656v0,-67,55,-122,122,-122v68,0,123,55,123,122v0,67,-55,122,-123,122v-67,0,-122,-55,-122,-122"},"\u00b8":{"d":"12,196r21,-48v29,13,122,41,124,-16v1,-41,-52,-34,-80,-25r-21,-24r59,-85r49,0r-39,55v52,-15,128,4,128,65v0,129,-165,107,-241,78"},"\u02dd":{"d":"234,-723r-140,142r-100,0r88,-142r152,0xm434,-723r-140,142r-100,0r88,-142r152,0"},"\u02db":{"d":"202,128r48,22v-40,51,-89,68,-134,68v-25,0,-107,-6,-107,-90v0,-28,15,-80,149,-131r65,0v-97,57,-118,93,-118,127v0,47,72,45,97,4"},"\u02c7":{"d":"377,-723r-137,142r-126,0r-83,-142r100,0r50,83r87,-83r109,0"},"\u2014":{"d":"101,-212r26,-122r740,0r-26,122r-740,0","w":1000},"\u00c6":{"d":"439,-271r67,-311r-20,0r-219,311r172,0xm-91,0r501,-714r611,0r-28,132r-329,0r-33,153r308,0r-26,122r-308,0r-38,175r339,0r-28,132r-497,0r33,-154r-220,0r-109,154r-176,0","w":981},"\u00aa":{"d":"273,-536v-45,25,-140,-2,-142,63v0,21,24,33,47,33v72,-3,81,-48,95,-96xm244,-415v-21,23,-58,40,-99,40v-80,0,-116,-38,-116,-82v0,-73,49,-110,129,-119v64,-7,128,-5,128,-38v0,-28,-35,-35,-52,-35v-30,0,-60,13,-66,40r-95,0v10,-78,83,-105,165,-105v70,0,151,12,150,87v-2,84,-51,157,-38,243r-106,0r0,-31","w":344},"\u0141":{"d":"-4,0r42,-200r-82,56r21,-111r85,-58r84,-401r158,0r-58,274r204,-140r-26,115r-202,139r-41,194r346,0r-28,132r-503,0","w":574,"k":{"T":92,"V":74,"W":55,"Y":92,"\u00dd":92,"\u0178":92,"\u2019":111,"y":18,"\u00fd":18,"\u00ff":18}},"\u00d8":{"d":"205,-224r345,-321v-26,-34,-66,-54,-122,-54v-184,0,-262,206,-223,375xm577,-489r-344,319v26,34,67,55,123,55v176,0,259,-205,221,-374xm801,-696r-102,94v29,47,45,106,45,177v0,235,-140,442,-390,442v-100,0,-179,-29,-232,-83r-101,94r-40,-44r103,-96v-31,-48,-47,-112,-47,-187v0,-231,149,-432,390,-432v99,0,179,27,234,82r99,-92","w":778},"\u0152":{"d":"482,0v2,-19,13,-42,10,-58v-43,50,-115,75,-182,75v-180,0,-273,-136,-273,-305v0,-231,143,-443,390,-443v70,0,139,23,181,82r14,-65r507,0r-28,132r-361,0r-33,153r330,0r-26,122r-329,0r-38,175r368,0r-28,132r-502,0xm425,-599v-161,0,-231,173,-231,310v0,97,41,174,146,174v88,0,152,-50,179,-124v19,-52,47,-192,47,-243v0,-82,-67,-117,-141,-117","w":1111},"\u00ba":{"d":"37,-514v0,-111,73,-200,200,-200v99,0,163,42,163,138v0,115,-73,201,-202,201v-101,0,-161,-45,-161,-139xm139,-514v0,31,23,64,63,64v66,0,96,-78,96,-125v0,-37,-20,-64,-65,-64v-64,0,-94,76,-94,125","w":356},"\u00e6":{"d":"510,-314r236,0v0,-69,-18,-122,-99,-122v-73,0,-125,54,-137,122xm209,-360r-137,0v27,-134,130,-171,254,-171v56,0,139,16,167,68v41,-50,107,-68,171,-68v178,-2,226,137,204,307r-372,0v-20,79,18,143,105,143v50,0,91,-22,109,-79r142,0v-50,130,-147,174,-261,174v-89,0,-153,-34,-188,-96v-43,66,-122,96,-212,96v-139,0,-187,-64,-187,-139v0,-99,61,-162,212,-174v100,-8,186,-4,186,-71v0,-55,-44,-66,-80,-66v-54,0,-106,15,-113,76xm378,-249v-68,42,-230,4,-232,106v0,50,42,62,83,62v109,-1,137,-77,149,-168","w":907},"\u0131":{"d":"241,-517r-110,517r-143,0r110,-517r143,0"},"\u0142":{"d":"130,0r-142,0r59,-278r-71,54r26,-122r71,-54r67,-314r142,0r-39,186r83,-63r-26,121r-83,63"},"\u00f8":{"d":"156,-177r229,-211v-15,-23,-43,-36,-83,-36v-113,0,-162,144,-146,247xm403,-344r-229,210v17,25,44,41,80,41v116,0,163,-144,149,-251xm549,-539r30,33r-68,62v24,35,37,78,37,132v0,182,-113,326,-301,326v-72,0,-132,-19,-172,-57r-73,67r-29,-33r73,-67v-23,-34,-36,-78,-36,-133v0,-175,113,-322,297,-322v72,0,132,18,174,54","w":593},"\u0153":{"d":"519,-314r234,0v11,-59,-23,-110,-92,-110v-83,0,-119,49,-142,110xm718,-161r142,0v-36,117,-142,175,-259,175v-78,0,-141,-17,-184,-86v-42,61,-115,86,-186,86v-170,0,-221,-120,-221,-234v0,-153,125,-311,301,-311v67,0,139,24,174,84v34,-51,115,-84,177,-84v174,0,261,133,220,307r-377,0v-15,78,23,131,99,131v54,0,98,-23,114,-68xm152,-201v0,58,30,108,97,108v107,0,146,-148,146,-238v0,-47,-26,-93,-90,-93v-110,0,-153,146,-153,223","w":926},"\u00df":{"d":"-12,0r110,-521v28,-141,112,-210,251,-210v101,0,215,47,215,171v0,89,-62,144,-139,167v73,17,110,72,110,146v-1,182,-161,292,-349,253r23,-111v107,17,184,-43,184,-140v0,-81,-51,-106,-131,-101r19,-90v85,5,141,-26,141,-109v0,-42,-37,-69,-75,-69v-81,0,-99,55,-113,121r-104,493r-142,0","w":593},"\u00b9":{"d":"347,-705r-97,432r-104,0r62,-274r-110,0r17,-75v63,-3,113,-18,147,-83r85,0","w":392},"\u00ac":{"d":"552,-406r0,307r-107,0r0,-200r-397,0r0,-107r504,0","w":600},"\u00b5":{"d":"586,-517r-108,517r-136,0v3,-23,16,-52,14,-72v-55,66,-128,98,-225,81r-36,173r-142,0r150,-699r142,0r-63,303v-4,15,-9,49,-9,63v0,31,35,53,68,53v86,0,130,-72,145,-144r58,-275r142,0","w":611},"\u2122":{"d":"928,-714r0,412r-96,0r0,-292r-2,0r-106,292r-69,0r-106,-292r-2,0r0,292r-96,0r0,-412r136,0r103,271r103,-271r135,0xm398,-714r0,80r-117,0r0,332r-102,0r0,-332r-117,0r0,-80r336,0","w":990},"\u00d0":{"d":"-4,0r65,-310r-82,0r25,-117r83,0r60,-287r258,0v199,0,303,103,303,278v0,249,-138,436,-413,436r-299,0xm277,-582r-33,155r168,0r-25,117r-169,0r-37,178r121,0v160,0,249,-126,249,-277v0,-103,-44,-173,-156,-173r-118,0","w":741},"\u00bd":{"d":"202,22r414,-744r85,0r-412,744r-87,0xm166,-273r62,-274r-110,0r17,-75v63,-3,113,-18,147,-83r85,0r-97,432r-104,0xm905,-309v0,126,-193,162,-259,229r217,0r-18,80r-339,0v8,-112,83,-155,172,-198v71,-34,125,-66,125,-105v0,-41,-31,-58,-68,-58v-46,0,-78,40,-80,85r-102,0v9,-107,78,-165,193,-165v90,0,159,39,159,132","w":889},"\u00b1":{"d":"48,-268r0,-107r199,0r0,-131r107,0r0,131r199,0r0,107r-199,0r0,131r-107,0r0,-131r-199,0xm48,0r0,-107r505,0r0,107r-505,0","w":600},"\u00de":{"d":"257,-495r-44,213r161,0v79,0,129,-40,129,-124v0,-121,-137,-82,-246,-89xm-4,0r149,-714r157,0r-20,97v203,-7,378,0,378,208v0,157,-130,249,-278,249r-195,0r-34,160r-157,0","w":667},"\u00bc":{"d":"634,0r20,-89r-208,0r20,-87r261,-244r106,0r-58,251r59,0r-16,80r-62,0r-20,89r-102,0xm549,-169r124,0r34,-147r-2,-2xm204,22r414,-744r85,0r-412,744r-87,0xm366,-705r-97,432r-104,0r62,-274r-110,0r17,-75v63,-3,113,-18,147,-83r85,0","w":889},"\u00f7":{"d":"48,-199r0,-107r505,0r0,107r-505,0xm216,-460v0,-47,39,-85,85,-85v45,0,84,39,84,85v0,42,-39,84,-83,84v-47,0,-86,-38,-86,-84xm216,-45v0,-47,39,-84,85,-84v45,0,84,38,84,84v0,42,-39,85,-83,85v-47,0,-86,-39,-86,-85","w":600},"\u00a6":{"d":"58,89r0,-250r107,0r0,250r-107,0xm165,-661r0,250r-107,0r0,-250r107,0","w":222},"\u00b0":{"d":"82,-566v0,-82,66,-148,148,-148v82,0,148,66,148,148v0,82,-66,148,-148,148v-82,0,-148,-66,-148,-148xm147,-566v0,48,40,88,83,88v43,0,83,-40,83,-88v0,-48,-40,-88,-83,-88v-43,0,-83,40,-83,88","w":400},"\u00fe":{"d":"-59,182r189,-896r142,0r-57,262r2,0v29,-55,89,-79,153,-79v124,0,196,80,196,204v0,170,-90,341,-281,341v-62,0,-121,-30,-148,-83r-54,251r-142,0xm323,-424v-106,0,-156,130,-156,219v0,66,33,112,102,112v107,0,155,-125,155,-216v0,-62,-34,-115,-101,-115","w":611},"\u00be":{"d":"634,0r20,-89r-208,0r20,-87r261,-244r106,0r-58,251r59,0r-16,80r-62,0r-20,89r-102,0xm549,-169r124,0r34,-147r-2,-2xm204,22r414,-744r85,0r-412,744r-87,0xm159,-464r13,-70v52,2,114,-3,114,-51v0,-33,-29,-49,-62,-49v-50,0,-74,24,-85,69r-96,0v13,-99,80,-149,183,-149v79,0,156,28,156,116v0,52,-40,84,-86,99v48,12,66,43,66,85v0,106,-87,150,-195,150v-117,-1,-172,-51,-166,-159r96,0v-4,50,21,79,72,79v48,0,86,-27,86,-73v0,-43,-48,-50,-96,-47","w":889},"\u00b2":{"d":"415,-582v0,126,-193,162,-259,229r217,0r-18,80r-339,0v8,-112,83,-155,172,-198v71,-34,125,-66,125,-105v0,-41,-31,-58,-68,-58v-46,0,-78,40,-80,85r-102,0v9,-107,78,-165,193,-165v90,0,159,39,159,132","w":392},"\u00ae":{"d":"16,-358v0,-227,181,-373,384,-373v203,0,384,146,384,373v0,228,-181,375,-384,375v-203,0,-384,-147,-384,-375xm118,-358v0,171,125,295,282,295v155,0,282,-124,282,-295v0,-170,-127,-293,-282,-293v-157,0,-282,123,-282,293xm251,-149r0,-419r158,0v105,0,164,33,164,124v0,77,-48,107,-110,112r112,183r-87,0r-102,-179r-50,0r0,179r-85,0xm336,-503r0,110v69,-4,156,19,152,-58v-3,-68,-87,-49,-152,-52","w":800},"\u2212":{"d":"48,-199r0,-107r505,0r0,107r-505,0","w":600},"\u00f0":{"d":"254,-93v103,0,152,-130,152,-217v0,-56,-30,-101,-104,-101v-104,0,-150,128,-150,202v0,61,35,116,102,116xm178,-607r125,-61v-30,-25,-60,-44,-89,-56r93,-56v35,20,65,42,91,66r121,-59r63,61r-124,61v61,79,90,174,90,291v0,112,-46,374,-301,374v-144,0,-237,-75,-237,-223v0,-150,113,-297,297,-297v38,0,82,11,111,45v1,-51,-28,-104,-55,-143r-121,59","w":593},"\u00d7":{"d":"140,-17r-76,-76r161,-160r-159,-160r76,-76r159,160r160,-160r76,76r-161,160r161,160r-76,76r-160,-161","w":600},"\u00b3":{"d":"181,-464r13,-70v52,2,114,-3,114,-51v0,-33,-29,-49,-62,-49v-50,0,-74,24,-85,69r-96,0v13,-99,80,-149,183,-149v79,0,156,28,156,116v0,52,-40,84,-86,99v48,12,66,43,66,85v0,106,-87,150,-195,150v-117,-1,-172,-51,-166,-159r96,0v-4,50,21,79,72,79v48,0,86,-27,86,-73v0,-43,-48,-50,-96,-47","w":392},"\u00a9":{"d":"16,-357v0,-228,181,-374,384,-374v203,0,384,146,384,374v0,227,-181,374,-384,374v-203,0,-384,-147,-384,-374xm118,-357v0,170,125,294,282,294v155,0,282,-124,282,-294v0,-171,-127,-294,-282,-294v-157,0,-282,123,-282,294xm515,-295r81,0v-16,100,-93,158,-182,158v-130,0,-215,-97,-215,-222v0,-129,80,-224,213,-224v92,0,167,54,181,155r-78,0v-10,-47,-51,-75,-103,-75v-76,0,-117,60,-117,142v0,78,46,144,119,144v55,0,95,-30,101,-78","w":800},"\u00c1":{"d":"395,-560r-154,284r191,0r-35,-284r-2,0xm-77,0r422,-714r161,0r119,714r-156,0r-23,-159r-267,0r-90,159r-166,0xm614,-920r-140,142r-100,0r88,-142r152,0","w":685},"\u00c2":{"d":"395,-560r-154,284r191,0r-35,-284r-2,0xm-77,0r422,-714r161,0r119,714r-156,0r-23,-159r-267,0r-90,159r-166,0xm249,-778r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":685},"\u00c4":{"d":"395,-560r-154,284r191,0r-35,-284r-2,0xm-77,0r422,-714r161,0r119,714r-156,0r-23,-159r-267,0r-90,159r-166,0xm453,-794r24,-117r131,0r-24,117r-131,0xm257,-794r24,-117r131,0r-24,117r-131,0","w":685},"\u00c0":{"d":"395,-560r-154,284r191,0r-35,-284r-2,0xm-77,0r422,-714r161,0r119,714r-156,0r-23,-159r-267,0r-90,159r-166,0xm416,-920r88,142r-100,0r-140,-142r152,0","w":685},"\u00c5":{"d":"395,-560r-154,284r191,0r-35,-284r-2,0xm-77,0r422,-714r161,0r119,714r-156,0r-23,-159r-267,0r-90,159r-166,0xm371,-853v0,39,25,70,63,70v38,0,64,-31,64,-70v0,-39,-26,-70,-64,-70v-38,0,-63,31,-63,70xm312,-853v0,-67,55,-122,122,-122v68,0,123,55,123,122v0,67,-55,122,-123,122v-67,0,-122,-55,-122,-122","w":685},"\u00c3":{"d":"395,-560r-154,284r191,0r-35,-284r-2,0xm-77,0r422,-714r161,0r119,714r-156,0r-23,-159r-267,0r-90,159r-166,0xm379,-911v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":685},"\u00c7":{"d":"713,-466r-157,0v0,-88,-53,-133,-128,-133v-161,0,-234,163,-234,300v0,98,48,184,162,184v87,0,154,-67,168,-142r157,0v-65,200,-172,274,-329,274r-26,36v52,-15,128,4,128,65v0,129,-165,107,-241,78r21,-48v29,13,122,41,124,-16v1,-41,-52,-34,-80,-25r-21,-24r49,-70v-171,-16,-269,-128,-269,-312v0,-231,149,-432,390,-432v165,0,290,91,286,265","w":741},"\u00c9":{"d":"-4,0r150,-714r545,0r-27,132r-388,0r-32,153r359,0r-26,122r-359,0r-37,175r394,0r-28,132r-551,0xm605,-920r-140,142r-100,0r88,-142r152,0","w":667},"\u00ca":{"d":"-4,0r150,-714r545,0r-27,132r-388,0r-32,153r359,0r-26,122r-359,0r-37,175r394,0r-28,132r-551,0xm240,-778r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":667},"\u00cb":{"d":"-4,0r150,-714r545,0r-27,132r-388,0r-32,153r359,0r-26,122r-359,0r-37,175r394,0r-28,132r-551,0xm444,-794r24,-117r131,0r-24,117r-131,0xm248,-794r24,-117r131,0r-24,117r-131,0","w":667},"\u00c8":{"d":"-4,0r150,-714r545,0r-27,132r-388,0r-32,153r359,0r-26,122r-359,0r-37,175r394,0r-28,132r-551,0xm407,-920r88,142r-100,0r-140,-142r152,0","w":667},"\u00cd":{"d":"-4,0r151,-714r158,0r-151,714r-158,0xm420,-920r-140,142r-100,0r88,-142r152,0","w":296},"\u00ce":{"d":"-4,0r151,-714r158,0r-151,714r-158,0xm52,-778r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":296},"\u00cf":{"d":"-4,0r151,-714r158,0r-151,714r-158,0xm259,-794r24,-117r131,0r-24,117r-131,0xm63,-794r24,-117r131,0r-24,117r-131,0","w":296},"\u00cc":{"d":"-4,0r151,-714r158,0r-151,714r-158,0xm222,-920r88,142r-100,0r-140,-142r152,0","w":296},"\u00d1":{"d":"-4,0r151,-714r162,0r194,508r2,0r102,-508r144,0r-151,714r-157,0r-196,-501r-2,0r-102,501r-147,0xm407,-911v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":741},"\u00d3":{"d":"194,-299v0,98,48,184,162,184v154,0,231,-164,231,-299v0,-100,-44,-185,-159,-185v-161,0,-234,163,-234,300xm37,-299v0,-231,149,-432,390,-432v193,0,317,106,317,306v0,235,-140,442,-390,442v-200,0,-317,-115,-317,-316xm634,-920r-140,142r-100,0r88,-142r152,0","w":778},"\u00d4":{"d":"194,-299v0,98,48,184,162,184v154,0,231,-164,231,-299v0,-100,-44,-185,-159,-185v-161,0,-234,163,-234,300xm37,-299v0,-231,149,-432,390,-432v193,0,317,106,317,306v0,235,-140,442,-390,442v-200,0,-317,-115,-317,-316xm269,-778r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":778},"\u00d6":{"d":"194,-299v0,98,48,184,162,184v154,0,231,-164,231,-299v0,-100,-44,-185,-159,-185v-161,0,-234,163,-234,300xm37,-299v0,-231,149,-432,390,-432v193,0,317,106,317,306v0,235,-140,442,-390,442v-200,0,-317,-115,-317,-316xm473,-794r24,-117r131,0r-24,117r-131,0xm277,-794r24,-117r131,0r-24,117r-131,0","w":778},"\u00d2":{"d":"194,-299v0,98,48,184,162,184v154,0,231,-164,231,-299v0,-100,-44,-185,-159,-185v-161,0,-234,163,-234,300xm37,-299v0,-231,149,-432,390,-432v193,0,317,106,317,306v0,235,-140,442,-390,442v-200,0,-317,-115,-317,-316xm436,-920r88,142r-100,0r-140,-142r152,0","w":778},"\u00d5":{"d":"194,-299v0,98,48,184,162,184v154,0,231,-164,231,-299v0,-100,-44,-185,-159,-185v-161,0,-234,163,-234,300xm37,-299v0,-231,149,-432,390,-432v193,0,317,106,317,306v0,235,-140,442,-390,442v-200,0,-317,-115,-317,-316xm399,-911v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":778},"\u0160":{"d":"5,-237r149,0v-5,101,64,132,154,132v63,0,136,-30,136,-101v0,-70,-92,-84,-181,-111v-90,-28,-180,-69,-180,-192v0,-159,145,-222,283,-222v146,0,268,65,268,230r-149,0v3,-80,-55,-108,-128,-108v-60,0,-125,23,-125,89v0,71,121,89,170,101v112,29,191,72,191,200v0,171,-155,236,-291,236v-197,0,-297,-82,-297,-254xm572,-920r-137,142r-126,0r-83,-142r100,0r50,83r87,-83r109,0","w":648},"\u00da":{"d":"750,-714r-87,415v-43,205,-122,316,-344,316v-139,0,-281,-56,-281,-212v0,-185,70,-345,102,-519r157,0r-87,413v-5,23,-15,67,-15,90v0,36,26,96,134,96v128,0,152,-68,175,-176r89,-423r157,0xm615,-920r-140,142r-100,0r88,-142r152,0","w":741},"\u00db":{"d":"750,-714r-87,415v-43,205,-122,316,-344,316v-139,0,-281,-56,-281,-212v0,-185,70,-345,102,-519r157,0r-87,413v-5,23,-15,67,-15,90v0,36,26,96,134,96v128,0,152,-68,175,-176r89,-423r157,0xm277,-778r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":741},"\u00dc":{"d":"750,-714r-87,415v-43,205,-122,316,-344,316v-139,0,-281,-56,-281,-212v0,-185,70,-345,102,-519r157,0r-87,413v-5,23,-15,67,-15,90v0,36,26,96,134,96v128,0,152,-68,175,-176r89,-423r157,0xm481,-794r24,-117r131,0r-24,117r-131,0xm285,-794r24,-117r131,0r-24,117r-131,0","w":741},"\u00d9":{"d":"750,-714r-87,415v-43,205,-122,316,-344,316v-139,0,-281,-56,-281,-212v0,-185,70,-345,102,-519r157,0r-87,413v-5,23,-15,67,-15,90v0,36,26,96,134,96v128,0,152,-68,175,-176r89,-423r157,0xm444,-920r88,142r-100,0r-140,-142r152,0","w":741},"\u00dd":{"d":"175,0r57,-277r-171,-437r161,0r107,304r222,-304r185,0r-348,444r-55,270r-158,0xm569,-920r-140,142r-100,0r88,-142r152,0","w":648,"k":{"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,",":98,".":98,"v":18,"-":61,"a":55,"\u00e6":55,"\u00e1":55,"\u00e2":55,"\u00e4":55,"\u00e0":55,"\u00e5":55,"\u00e3":55,"e":55,"\u00e9":55,"\u00ea":55,"\u00eb":55,"\u00e8":55,"i":18,"\u00ed":18,"\u00ee":18,"\u00ef":18,"\u00ec":18,"o":55,"\u00f8":55,"\u0153":55,"\u00f3":55,"\u00f4":55,"\u00f6":55,"\u00f2":55,"\u00f5":55,"u":37,"\u00fa":37,"\u00fb":37,"\u00fc":37,"\u00f9":37,":":37,";":37,"p":37,"q":55}},"\u0178":{"d":"175,0r57,-277r-171,-437r161,0r107,304r222,-304r185,0r-348,444r-55,270r-158,0xm408,-794r24,-117r131,0r-24,117r-131,0xm212,-794r24,-117r131,0r-24,117r-131,0","w":648,"k":{"A":55,"\u00c6":55,"\u00c1":55,"\u00c2":55,"\u00c4":55,"\u00c0":55,"\u00c5":55,"\u00c3":55,",":98,".":98,"v":18,"-":61,"a":55,"\u00e6":55,"\u00e1":55,"\u00e2":55,"\u00e4":55,"\u00e0":55,"\u00e5":55,"\u00e3":55,"e":55,"\u00e9":55,"\u00ea":55,"\u00eb":55,"\u00e8":55,"i":18,"\u00ed":18,"\u00ee":18,"\u00ef":18,"\u00ec":18,"o":55,"\u00f8":55,"\u0153":55,"\u00f3":55,"\u00f4":55,"\u00f6":55,"\u00f2":55,"\u00f5":55,"u":37,"\u00fa":37,"\u00fb":37,"\u00fc":37,"\u00f9":37,":":37,";":37,"p":37,"q":55}},"\u017d":{"d":"-43,0r27,-130r477,-452r-366,0r29,-132r564,0r-26,126r-481,456r403,0r-26,132r-601,0xm572,-920r-137,142r-126,0r-83,-142r100,0r50,83r87,-83r109,0","w":648},"\u00e1":{"d":"360,-248v-78,47,-225,-8,-225,109v0,39,37,58,78,58v112,0,124,-87,147,-167xm193,-360r-133,0v18,-130,128,-171,245,-171v92,0,219,20,215,136v-4,127,-58,234,-64,365v0,9,2,21,5,30r-142,0r0,-51v-39,44,-100,65,-158,65v-113,0,-168,-64,-168,-136v0,-99,75,-161,198,-176v134,-16,197,-9,197,-75v0,-51,-54,-63,-90,-63v-51,0,-96,24,-105,76xm532,-723r-140,142r-100,0r88,-142r152,0","w":574},"\u00e2":{"d":"360,-248v-78,47,-225,-8,-225,109v0,39,37,58,78,58v112,0,124,-87,147,-167xm193,-360r-133,0v18,-130,128,-171,245,-171v92,0,219,20,215,136v-4,127,-58,234,-64,365v0,9,2,21,5,30r-142,0r0,-51v-39,44,-100,65,-158,65v-113,0,-168,-64,-168,-136v0,-99,75,-161,198,-176v134,-16,197,-9,197,-75v0,-51,-54,-63,-90,-63v-51,0,-96,24,-105,76xm167,-581r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":574},"\u00e4":{"d":"360,-248v-78,47,-225,-8,-225,109v0,39,37,58,78,58v112,0,124,-87,147,-167xm193,-360r-133,0v18,-130,128,-171,245,-171v92,0,219,20,215,136v-4,127,-58,234,-64,365v0,9,2,21,5,30r-142,0r0,-51v-39,44,-100,65,-158,65v-113,0,-168,-64,-168,-136v0,-99,75,-161,198,-176v134,-16,197,-9,197,-75v0,-51,-54,-63,-90,-63v-51,0,-96,24,-105,76xm371,-597r24,-117r131,0r-24,117r-131,0xm175,-597r24,-117r131,0r-24,117r-131,0","w":574},"\u00e0":{"d":"360,-248v-78,47,-225,-8,-225,109v0,39,37,58,78,58v112,0,124,-87,147,-167xm193,-360r-133,0v18,-130,128,-171,245,-171v92,0,219,20,215,136v-4,127,-58,234,-64,365v0,9,2,21,5,30r-142,0r0,-51v-39,44,-100,65,-158,65v-113,0,-168,-64,-168,-136v0,-99,75,-161,198,-176v134,-16,197,-9,197,-75v0,-51,-54,-63,-90,-63v-51,0,-96,24,-105,76xm334,-723r88,142r-100,0r-140,-142r152,0","w":574},"\u00e5":{"d":"360,-248v-78,47,-225,-8,-225,109v0,39,37,58,78,58v112,0,124,-87,147,-167xm193,-360r-133,0v18,-130,128,-171,245,-171v92,0,219,20,215,136v-4,127,-58,234,-64,365v0,9,2,21,5,30r-142,0r0,-51v-39,44,-100,65,-158,65v-113,0,-168,-64,-168,-136v0,-99,75,-161,198,-176v134,-16,197,-9,197,-75v0,-51,-54,-63,-90,-63v-51,0,-96,24,-105,76xm289,-656v0,39,25,70,63,70v38,0,64,-31,64,-70v0,-39,-26,-70,-64,-70v-38,0,-63,31,-63,70xm230,-656v0,-67,55,-122,122,-122v68,0,123,55,123,122v0,67,-55,122,-123,122v-67,0,-122,-55,-122,-122","w":574},"\u00e3":{"d":"360,-248v-78,47,-225,-8,-225,109v0,39,37,58,78,58v112,0,124,-87,147,-167xm193,-360r-133,0v18,-130,128,-171,245,-171v92,0,219,20,215,136v-4,127,-58,234,-64,365v0,9,2,21,5,30r-142,0r0,-51v-39,44,-100,65,-158,65v-113,0,-168,-64,-168,-136v0,-99,75,-161,198,-176v134,-16,197,-9,197,-75v0,-51,-54,-63,-90,-63v-51,0,-96,24,-105,76xm297,-714v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":574},"\u00e7":{"d":"534,-338r-142,0v0,-61,-33,-86,-95,-86v-108,0,-145,130,-145,219v0,62,26,112,98,112v63,0,99,-45,115,-96r142,0v-41,122,-123,194,-245,201r-28,41v52,-15,128,4,128,65v0,129,-165,107,-241,78r21,-48v29,13,122,41,124,-16v1,-41,-52,-34,-80,-25r-21,-24r49,-71v-128,-7,-204,-78,-204,-220v0,-176,106,-323,292,-323v126,0,229,56,232,193","w":556},"\u00e9":{"d":"528,-224r-381,0v-9,83,24,131,113,131v57,0,85,-38,106,-71r142,0v-45,116,-119,178,-268,178v-138,0,-230,-79,-230,-226v0,-165,109,-319,285,-319v173,0,273,123,233,307xm162,-314r237,0v0,-53,-13,-110,-96,-110v-80,0,-120,52,-141,110xm532,-723r-140,142r-100,0r88,-142r152,0","w":574},"\u00ea":{"d":"528,-224r-381,0v-9,83,24,131,113,131v57,0,85,-38,106,-71r142,0v-45,116,-119,178,-268,178v-138,0,-230,-79,-230,-226v0,-165,109,-319,285,-319v173,0,273,123,233,307xm162,-314r237,0v0,-53,-13,-110,-96,-110v-80,0,-120,52,-141,110xm167,-581r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":574},"\u00eb":{"d":"528,-224r-381,0v-9,83,24,131,113,131v57,0,85,-38,106,-71r142,0v-45,116,-119,178,-268,178v-138,0,-230,-79,-230,-226v0,-165,109,-319,285,-319v173,0,273,123,233,307xm162,-314r237,0v0,-53,-13,-110,-96,-110v-80,0,-120,52,-141,110xm371,-597r24,-117r131,0r-24,117r-131,0xm175,-597r24,-117r131,0r-24,117r-131,0","w":574},"\u00e8":{"d":"528,-224r-381,0v-9,83,24,131,113,131v57,0,85,-38,106,-71r142,0v-45,116,-119,178,-268,178v-138,0,-230,-79,-230,-226v0,-165,109,-319,285,-319v173,0,273,123,233,307xm162,-314r237,0v0,-53,-13,-110,-96,-110v-80,0,-120,52,-141,110xm334,-723r88,142r-100,0r-140,-142r152,0","w":574},"\u00ed":{"d":"241,-517r-110,517r-143,0r110,-517r143,0xm374,-723r-140,142r-100,0r88,-142r152,0"},"\u00ee":{"d":"241,-517r-110,517r-143,0r110,-517r143,0xm9,-581r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0"},"\u00ef":{"d":"241,-517r-110,517r-143,0r110,-517r143,0xm213,-597r24,-117r131,0r-24,117r-131,0xm17,-597r24,-117r131,0r-24,117r-131,0"},"\u00ec":{"d":"241,-517r-110,517r-143,0r110,-517r143,0xm176,-723r88,142r-100,0r-140,-142r152,0"},"\u00f1":{"d":"-12,0r108,-517r136,0v-3,23,-16,52,-14,72v46,-57,107,-86,181,-86v98,0,151,49,151,139v0,138,-54,261,-79,392r-142,0r63,-303v4,-15,9,-49,9,-63v0,-31,-35,-53,-68,-53v-86,0,-130,72,-145,144r-58,275r-142,0xm293,-714v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":611},"\u00f3":{"d":"10,-209v0,-175,113,-322,297,-322v142,0,241,70,241,219v0,182,-113,326,-301,326v-144,0,-237,-75,-237,-223xm152,-209v0,61,35,116,102,116v106,0,152,-130,152,-217v0,-69,-30,-114,-104,-114v-104,0,-150,128,-150,215xm541,-723r-140,142r-100,0r88,-142r152,0","w":593},"\u00f4":{"d":"10,-209v0,-175,113,-322,297,-322v142,0,241,70,241,219v0,182,-113,326,-301,326v-144,0,-237,-75,-237,-223xm152,-209v0,61,35,116,102,116v106,0,152,-130,152,-217v0,-69,-30,-114,-104,-114v-104,0,-150,128,-150,215xm176,-581r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":593},"\u00f6":{"d":"10,-209v0,-175,113,-322,297,-322v142,0,241,70,241,219v0,182,-113,326,-301,326v-144,0,-237,-75,-237,-223xm152,-209v0,61,35,116,102,116v106,0,152,-130,152,-217v0,-69,-30,-114,-104,-114v-104,0,-150,128,-150,215xm380,-597r24,-117r131,0r-24,117r-131,0xm184,-597r24,-117r131,0r-24,117r-131,0","w":593},"\u00f2":{"d":"10,-209v0,-175,113,-322,297,-322v142,0,241,70,241,219v0,182,-113,326,-301,326v-144,0,-237,-75,-237,-223xm152,-209v0,61,35,116,102,116v106,0,152,-130,152,-217v0,-69,-30,-114,-104,-114v-104,0,-150,128,-150,215xm343,-723r88,142r-100,0r-140,-142r152,0","w":593},"\u00f5":{"d":"10,-209v0,-175,113,-322,297,-322v142,0,241,70,241,219v0,182,-113,326,-301,326v-144,0,-237,-75,-237,-223xm152,-209v0,61,35,116,102,116v106,0,152,-130,152,-217v0,-69,-30,-114,-104,-114v-104,0,-150,128,-150,215xm306,-714v46,0,84,35,130,35v30,0,43,-16,42,-35r69,0v-16,52,-37,114,-112,114v-56,0,-102,-33,-152,-34v-27,0,-36,17,-42,42r-61,0v13,-58,38,-122,126,-122","w":593},"\u0161":{"d":"484,-366r-132,0v-1,-44,-26,-70,-80,-70v-50,0,-87,14,-87,51v0,42,94,61,136,75v76,26,136,61,136,148v0,128,-127,176,-246,176v-107,0,-231,-44,-220,-182r132,0v-8,63,47,87,102,87v43,0,90,-15,90,-62v0,-36,-20,-46,-51,-57v-93,-34,-221,-41,-221,-167v0,-122,129,-164,229,-164v113,0,214,32,212,165xm507,-723r-137,142r-126,0r-83,-142r100,0r50,83r87,-83r109,0","w":519},"\u00fa":{"d":"586,-517r-108,517r-136,0v3,-23,16,-52,14,-72v-46,57,-107,86,-181,86v-98,0,-151,-49,-151,-139v0,-138,54,-261,79,-392r142,0r-63,303v-4,15,-9,49,-9,63v0,31,35,53,68,53v86,0,130,-72,145,-144r58,-275r142,0xm526,-723r-140,142r-100,0r88,-142r152,0","w":611},"\u00fb":{"d":"586,-517r-108,517r-136,0v3,-23,16,-52,14,-72v-46,57,-107,86,-181,86v-98,0,-151,-49,-151,-139v0,-138,54,-261,79,-392r142,0r-63,303v-4,15,-9,49,-9,63v0,31,35,53,68,53v86,0,130,-72,145,-144r58,-275r142,0xm185,-581r137,-142r126,0r83,142r-100,0r-50,-81r-87,81r-109,0","w":611},"\u00fc":{"d":"586,-517r-108,517r-136,0v3,-23,16,-52,14,-72v-46,57,-107,86,-181,86v-98,0,-151,-49,-151,-139v0,-138,54,-261,79,-392r142,0r-63,303v-4,15,-9,49,-9,63v0,31,35,53,68,53v86,0,130,-72,145,-144r58,-275r142,0xm402,-597r24,-117r131,0r-24,117r-131,0xm206,-597r24,-117r131,0r-24,117r-131,0","w":611},"\u00f9":{"d":"586,-517r-108,517r-136,0v3,-23,16,-52,14,-72v-46,57,-107,86,-181,86v-98,0,-151,-49,-151,-139v0,-138,54,-261,79,-392r142,0r-63,303v-4,15,-9,49,-9,63v0,31,35,53,68,53v86,0,130,-72,145,-144r58,-275r142,0xm352,-723r88,142r-100,0r-140,-142r152,0","w":611},"\u00fd":{"d":"543,-517r-329,590v-53,112,-141,116,-277,104r24,-118v19,0,39,6,58,6v67,0,75,-43,94,-70r-92,-512r146,0r45,370r2,0r179,-370r150,0xm488,-723r-140,142r-100,0r88,-142r152,0","w":519,"k":{",":55,".":55}},"\u00ff":{"d":"543,-517r-329,590v-53,112,-141,116,-277,104r24,-118v19,0,39,6,58,6v67,0,75,-43,94,-70r-92,-512r146,0r45,370r2,0r179,-370r150,0xm308,-597r24,-117r131,0r-24,117r-131,0xm112,-597r24,-117r131,0r-24,117r-131,0","w":519,"k":{",":55,".":55}},"\u017e":{"d":"-51,0r22,-105r324,-305r-249,0r23,-107r434,0r-22,105r-325,305r285,0r-23,107r-469,0xm498,-723r-137,142r-126,0r-83,-142r100,0r50,83r87,-83r109,0","w":500},"\u2206":{"d":"-47,0r16,-74r364,-643r150,0r85,641r-16,76r-599,0xm104,-102r334,0r-45,-295v-4,-54,-16,-137,-18,-181r-3,0v-74,149,-182,329,-268,476","w":654},"\u2126":{"d":"120,-103r1,-3v-49,-57,-88,-155,-61,-283v38,-177,191,-323,371,-323v193,0,261,167,229,317v-27,130,-110,232,-184,289r-1,3r137,0r-22,103r-262,0r16,-76v70,-40,148,-132,182,-292v27,-124,-7,-239,-118,-239v-105,0,-197,104,-226,244v-31,145,5,249,60,287r-16,76r-262,0r22,-103r134,0","w":704},"\u03bc":{"d":"586,-517r-108,517r-136,0v3,-23,16,-52,14,-72v-55,66,-128,98,-225,81r-36,173r-142,0r150,-699r142,0r-63,303v-4,15,-9,49,-9,63v0,31,35,53,68,53v86,0,130,-72,145,-144r58,-275r142,0","w":611},"\u03c0":{"d":"590,-419r-70,0v-22,121,-73,299,-76,419r-122,0v-8,-21,-2,-72,13,-143r58,-276r-137,0v-28,108,-95,314,-153,419r-122,0v58,-117,125,-309,150,-419v-47,0,-76,3,-99,10r3,-85v30,-19,85,-33,171,-33r417,0","w":599},"\u20ac":{"d":"106,-455v38,-142,139,-265,299,-267v64,0,124,21,180,64r-61,113v-105,-104,-227,-61,-277,90r244,0r-35,71r-227,0r-5,45r213,0r-35,71r-178,0v8,110,53,165,136,165v44,0,99,-22,165,-67r-26,148v-53,25,-106,38,-159,38v-166,0,-246,-117,-256,-284r-75,0r35,-71r41,0r6,-45r-57,0r35,-71r37,0","w":556},"\u2113":{"d":"407,-182r40,53v-74,102,-158,139,-237,139v-125,-1,-156,-80,-143,-176r-60,41r-16,-68v34,-25,66,-45,96,-69r53,-253v38,-179,136,-255,233,-255v96,0,122,79,101,178v-25,118,-125,231,-270,348r-8,43v-14,73,16,110,65,110v54,0,108,-46,146,-91xm263,-517r-34,157v85,-79,152,-165,167,-237v11,-51,4,-83,-36,-83v-30,0,-70,36,-97,163","w":512},"\u212e":{"d":"920,-340r-654,0v-4,0,-6,1,-6,4r0,199v0,8,3,16,9,22v63,66,151,108,248,108v104,0,197,-47,260,-121r58,0v-72,85,-189,141,-320,141v-222,0,-403,-162,-403,-363v0,-201,181,-364,403,-364v227,0,410,163,405,374xm772,-366r0,-199v0,-9,-3,-17,-10,-24v-63,-62,-150,-103,-245,-103v-96,0,-184,42,-247,107v-7,6,-10,15,-10,24r0,195v0,2,2,7,6,7r501,0v4,0,5,-5,5,-7","w":954},"\u2202":{"d":"165,-638r-16,-95v36,-23,102,-58,195,-58v145,0,247,128,193,383v-53,250,-192,417,-369,417v-140,0,-178,-129,-156,-237v34,-162,153,-264,271,-264v83,0,118,55,131,80v36,-124,5,-274,-109,-274v-61,0,-109,26,-140,48xm136,-224v-15,71,10,129,68,128v75,0,145,-113,176,-210v-3,-32,-32,-84,-93,-84v-68,0,-133,79,-151,166","w":573},"\u220f":{"d":"768,-587r-101,0r0,684r-125,0r0,-684r-216,0r0,684r-125,0r0,-684r-102,0r0,-114r669,0r0,114","w":792},"\u2211":{"d":"612,97r-514,0r0,-81r241,-319r-232,-310r0,-88r488,0r0,107r-319,0r0,3r205,267r-228,301r0,3r359,0r0,117","w":630},"\u2219":{"d":"43,-287v0,-47,39,-85,85,-85v45,0,84,39,84,85v0,42,-39,84,-83,84v-47,0,-86,-38,-86,-84","w":278},"\u221a":{"d":"677,-842r-224,982r-101,0r-148,-439r-74,29r-20,-71r169,-69r103,319v8,29,11,63,22,89v3,-22,8,-59,15,-94r170,-746r88,0","w":668},"\u221e":{"d":"597,-456v88,0,155,66,155,167v0,108,-78,173,-160,173v-58,0,-112,-26,-179,-114v-52,64,-104,114,-185,114v-83,0,-158,-69,-158,-168v0,-101,72,-172,166,-172v75,0,129,45,180,111v42,-47,92,-111,181,-111xm142,-283v0,53,40,98,96,98v56,0,98,-51,137,-96v-41,-56,-77,-107,-142,-107v-57,0,-92,45,-91,105xm681,-284v0,-61,-36,-104,-92,-104v-60,0,-106,64,-138,100v61,75,93,103,143,103v56,0,87,-55,87,-99","w":799},"\u222b":{"d":"402,-777v-79,0,-77,81,-77,194v0,164,14,303,14,483v0,96,-15,160,-36,201v-38,75,-134,86,-205,56r16,-90v22,11,69,17,87,-10v16,-25,27,-66,27,-156v0,-183,-15,-325,-15,-496v0,-117,19,-180,60,-226v40,-45,120,-56,177,-35r-13,87v-9,-4,-21,-8,-35,-8","w":472},"\u2248":{"d":"205,-453v86,-1,125,70,192,72v38,0,62,-28,89,-72r45,41v-31,60,-78,103,-135,103v-66,0,-132,-72,-198,-73v-44,0,-68,36,-93,72r-45,-41v29,-58,83,-102,145,-102xm204,-267v89,0,120,72,192,72v40,0,62,-28,90,-71r45,41v-31,59,-78,103,-136,103v-65,0,-131,-73,-197,-74v-44,0,-68,36,-93,72r-45,-41v29,-58,83,-102,144,-102","w":570},"\u2260":{"d":"443,-514r-39,88r136,0r0,74r-163,0r-59,135r222,0r0,73r-250,0r-50,114r-57,-24r40,-90r-135,0r0,-73r163,0r58,-135r-221,0r0,-74r249,0r48,-111","w":587},"\u2264":{"d":"556,-100r-444,-223r0,-79r444,-223r0,85r-372,176r0,2r372,177r0,85xm560,12r-452,0r0,-74r452,0r0,74","w":606},"\u2265":{"d":"114,-625r444,223r0,79r-444,223r0,-85r371,-177r0,-2r-371,-176r0,-85xm558,12r-449,0r0,-74r449,0r0,74","w":605},"\u25ca":{"d":"618,-350r-198,399r-100,0r-192,-399r197,-400r101,0xm507,-347v-43,-100,-100,-189,-132,-300r-3,0v-31,109,-90,196,-133,294r114,243v7,20,14,44,17,58r4,0v33,-110,90,-195,133,-295","w":666},"\u00a0":{"w":278},"\u00ad":{"d":"27,-212r26,-122r301,0r-26,122r-301,0","w":407},"\u02c9":{"d":"35,-616r14,-75r305,0r-14,75r-305,0"},"\u03a9":{"d":"120,-103r1,-3v-49,-57,-88,-155,-61,-283v38,-177,191,-323,371,-323v193,0,261,167,229,317v-27,130,-110,232,-184,289r-1,3r137,0r-22,103r-262,0r16,-76v70,-40,148,-132,182,-292v27,-124,-7,-239,-118,-239v-105,0,-197,104,-226,244v-31,145,5,249,60,287r-16,76r-262,0r22,-103r134,0","w":704},"\u2215":{"d":"-166,22r414,-744r85,0r-412,744r-87,0","w":167},"\u2010":{"d":"27,-212r26,-122r301,0r-26,122r-301,0","w":407}}});
;
// ColorBox v1.3.9 - a full featured, light-weight, customizable lightbox based on jQuery 1.3
// c) 2009 Jack Moore - www.colorpowered.com - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function ($, window) {
	
	var
	// ColorBox Default Settings.	
	// See http://colorpowered.com/colorbox for details.
	defaults = {
		transition: "elastic",
		speed: 300,
		width: false,
		initialWidth: "600",
		innerWidth: false,
		maxWidth: false,
		height: false,
		initialHeight: "450",
		innerHeight: false,
		maxHeight: false,
		scalePhotos: true,
		scrolling: true,
		inline: false,
		html: false,
		iframe: false,
		photo: false,
		href: false,
		title: false,
		rel: false,
		opacity: 0.9,
		preloading: true,
		current: "image {current} of {total}",
		previous: "previous",
		next: "next",
		close: "close",
		open: false,
		loop: true,
		slideshow: false,
		slideshowAuto: true,
		slideshowSpeed: 2500,
		slideshowStart: "start slideshow",
		slideshowStop: "stop slideshow",
		onOpen: false,
		onLoad: false,
		onComplete: false,
		onCleanup: false,
		onClosed: false,
		overlayClose: true,		
		escKey: true,
		arrowKey: true
	},
	
	// Abstracting the HTML and event identifiers for easy rebranding
	colorbox = 'colorbox',
	prefix = 'cbox',
	
	// Events	
	event_open = prefix + '_open',
	event_load = prefix + '_load',
	event_complete = prefix + '_complete',
	event_cleanup = prefix + '_cleanup',
	event_closed = prefix + '_closed',
	
	// Special Handling for IE
	isIE = $.browser.msie && !$.support.opacity, // feature detection alone gave a false positive on at least one phone browser and on some development versions of Chrome.
	isIE6 = isIE && $.browser.version < 7,
	event_ie6 = prefix + '_IE6',

	// Cached jQuery Object Variables
	$overlay,
	$box,
	$wrap,
	$content,
	$topBorder,
	$leftBorder,
	$rightBorder,
	$bottomBorder,
	$related,
	$window,
	$loaded,
	$loadingBay,
	$loadingOverlay,
	$title,
	$current,
	$slideshow,
	$next,
	$prev,
	$close,

	// Variables for cached values or use across multiple functions
	interfaceHeight,
	interfaceWidth,
	loadedHeight,
	loadedWidth,
	element,
	bookmark,
	index,
	settings,
	open,
	active,
	
	publicMethod,
	boxElement = prefix + 'Element';
	
	// ****************
	// HELPER FUNCTIONS
	// ****************

	// jQuery object generator to reduce code size
	function $div(id, css) { 
		id = id ? ' id="' + prefix + id + '"' : '';
		css = css ? ' style="' + css + '"' : '';
		return $('<div' + id + css + '/>');
	}

	// Convert % values to pixels
	function setSize(size, dimension) {
		dimension = dimension === 'x' ? $window.width() : $window.height();
		return (typeof size === 'string') ? Math.round((size.match(/%/) ? (dimension / 100) * parseInt(size, 10) : parseInt(size, 10))) : size;
	}

	// Checks an href to see if it is a photo.
	// There is a force photo option (photo: true) for hrefs that cannot be matched by this regex.
	function isImage(url) {
		url = $.isFunction(url) ? url.call(element) : url;
		return settings.photo || url.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i);
	}
	
	// Assigns functions results to their respective settings.  This allows functions to be used to set ColorBox options.
	function process() {
		for (var i in settings) {
			if ($.isFunction(settings[i]) && i.substring(0, 2) !== 'on') { // checks to make sure the function isn't one of the callbacks, they will be handled at the appropriate time.
			    settings[i] = settings[i].call(element);
			}
		}
		settings.rel = settings.rel || element.rel || 'nofollow';
		settings.href = settings.href || $(element).attr('href');
		settings.title = settings.title || element.title;
	}

	function launch(elem) {
		
		element = elem;
		
		settings = $.extend({}, $(element).data(colorbox));
		
		process(); // Convert functions to their returned values.
		
		if (settings.rel !== 'nofollow') {
			$related = $('.' + boxElement).filter(function () {
				var relRelated = $(this).data(colorbox).rel || this.rel;
				return (relRelated === settings.rel);
			});
			index = $related.index(element);
			
			// Check direct calls to ColorBox.
			if (index === -1) {
				$related = $related.add(element);
				index = $related.length - 1;
			}
		} else {
			$related = $(element);
			index = 0;
		}
		
		if (!open) {
			open = active = true; // Prevents the page-change action from queuing up if the visitor holds down the left or right keys.
			
			bookmark = element;
			
			try {
				bookmark.blur(); // Remove the focus from the calling element.
			}catch (e) {}
			
			$.event.trigger(event_open);
			if (settings.onOpen) {
				settings.onOpen.call(element);
			}
			
			// +settings.opacity avoids a problem in IE when using non-zero-prefixed-string-values, like '.5'
			$overlay.css({"opacity": +settings.opacity, "cursor": settings.overlayClose ? "pointer" : "auto"}).show();
			
			// Opens inital empty ColorBox prior to content being loaded.
			settings.w = setSize(settings.initialWidth, 'x');
			settings.h = setSize(settings.initialHeight, 'y');
			publicMethod.position(0);
			
			if (isIE6) {
				$window.bind('resize.' + event_ie6 + ' scroll.' + event_ie6, function () {
					$overlay.css({width: $window.width(), height: $window.height(), top: $window.scrollTop(), left: $window.scrollLeft()});
				}).trigger('scroll.' + event_ie6);
			}
		}
		
		$current.add($prev).add($next).add($slideshow).add($title).hide();
		
		$close.html(settings.close).show();
		
		publicMethod.slideshow();
		
		publicMethod.load();
	}

	// ****************
	// PUBLIC FUNCTIONS
	// Usage format: $.fn.colorbox.close();
	// Usage from within an iframe: parent.$.fn.colorbox.close();
	// ****************
	
	publicMethod = $.fn[colorbox] = $[colorbox] = function (options, callback) {
		var $this = this;
		
		if (!$this[0] && $this.selector) { // if a selector was given and it didn't match any elements, go ahead and exit.
			return $this;
		}
		
		options = options || {};
		
		if (callback) {
			options.onComplete = callback;
		}
		
		if (!$this[0] || $this.selector === undefined) { // detects $.colorbox() and $.fn.colorbox()
			$this = $('<a/>');
			options.open = true; // assume an immediate open
		}
		
		$this.each(function () {
			$(this).data(colorbox, $.extend({}, $(this).data(colorbox) || defaults, options)).addClass(boxElement);
		});
		
		if (options.open) {
			launch($this[0]);
		}
		
		return $this;
	};

	// Initialize ColorBox: store common calculations, preload the interface graphics, append the html.
	// This preps colorbox for a speedy open when clicked, and lightens the burdon on the browser by only
	// having to run once, instead of each time colorbox is opened.
	publicMethod.init = function () {
		// Create & Append jQuery Objects
		$window = $(window);
		$box = $div().attr({id: colorbox, 'class': isIE ? prefix + 'IE' : ''});
		$overlay = $div("Overlay", isIE6 ? 'position:absolute' : '').hide();
		
		$wrap = $div("Wrapper");
		$content = $div("Content").append(
			$loaded = $div("LoadedContent", 'width:0; height:0'),
			$loadingOverlay = $div("LoadingOverlay").add($div("LoadingGraphic")),
			$title = $div("Title"),
			$current = $div("Current"),
			$next = $div("Next"),
			$prev = $div("Previous"),
			$slideshow = $div("Slideshow"),
			$close = $div("Close")
		);
		$wrap.append( // The 3x3 Grid that makes up ColorBox
			$div().append(
				$div("TopLeft"),
				$topBorder = $div("TopCenter"),
				$div("TopRight")
			),
			$div().append(
				$leftBorder = $div("MiddleLeft"),
				$content,
				$rightBorder = $div("MiddleRight")
			),
			$div().append(
				$div("BottomLeft"),
				$bottomBorder = $div("BottomCenter"),
				$div("BottomRight")
			)
		).children().children().css({'float': 'left'});
		
		$loadingBay = $div(false, 'position:absolute; width:9999px; visibility:hidden; display:none');
		
		$('body').prepend($overlay, $box.append($wrap, $loadingBay));
		
		$content.children()
		.hover(function () {
			$(this).addClass('hover');
		}, function () {
			$(this).removeClass('hover');
		}).addClass('hover');
		
		// Cache values needed for size calculations
		interfaceHeight = $topBorder.height() + $bottomBorder.height() + $content.outerHeight(true) - $content.height();//Subtraction needed for IE6
		interfaceWidth = $leftBorder.width() + $rightBorder.width() + $content.outerWidth(true) - $content.width();
		loadedHeight = $loaded.outerHeight(true);
		loadedWidth = $loaded.outerWidth(true);
		
		// Setting padding to remove the need to do size conversions during the animation step.
		$box.css({"padding-bottom": interfaceHeight, "padding-right": interfaceWidth}).hide();
		
		// Setup button events.
		$next.click(publicMethod.next);
		$prev.click(publicMethod.prev);
		$close.click(publicMethod.close);
		
		// Adding the 'hover' class allowed the browser to load the hover-state
		// background graphics.  The class can now can be removed.
		$content.children().removeClass('hover');
		
		$('.' + boxElement).live('click', function (e) {
			// checks to see if it was a non-left mouse-click and for clicks modified with ctrl, shift, or alt.
			if ((e.button !== 0 && typeof e.button !== 'undefined') || e.ctrlKey || e.shiftKey || e.altKey) {
				return true;
			} else {
				launch(this);			
				return false;
			}
		});
		
		$overlay.click(function () {
			if (settings.overlayClose) {
				publicMethod.close();
			}
		});
		
		// Set Navigation Key Bindings
		$(document).bind("keydown", function (e) {
			if (open && settings.escKey && e.keyCode === 27) {
				e.preventDefault();
				publicMethod.close();
			}
			if (open && settings.arrowKey && !active && $related[1]) {
				if (e.keyCode === 37 && (index || settings.loop)) {
					e.preventDefault();
					$prev.click();
				} else if (e.keyCode === 39 && (index < $related.length - 1 || settings.loop)) {
					e.preventDefault();
					$next.click();
				}
			}
		});
	};
	
	publicMethod.remove = function () {
		$box.add($overlay).remove();
		$('.' + boxElement).die('click').removeData(colorbox).removeClass(boxElement);
	};

	publicMethod.position = function (speed, loadedCallback) {
		var
		animate_speed,
		// keeps the top and left positions within the browser's viewport.
		posTop = Math.max($window.height() - settings.h - loadedHeight - interfaceHeight, 0) / 2 + $window.scrollTop(),
		posLeft = Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2 + $window.scrollLeft();
		
		// setting the speed to 0 to reduce the delay between same-sized content.
		animate_speed = ($box.width() === settings.w + loadedWidth && $box.height() === settings.h + loadedHeight) ? 0 : speed;
		
		// this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
		// but it has to be shrank down around the size of div#colorbox when it's done.  If not,
		// it can invoke an obscure IE bug when using iframes.
		$wrap[0].style.width = $wrap[0].style.height = "9999px";
		
		function modalDimensions(that) {
			// loading overlay height has to be explicitly set for IE6.
			$topBorder[0].style.width = $bottomBorder[0].style.width = $content[0].style.width = that.style.width;
			$loadingOverlay[0].style.height = $loadingOverlay[1].style.height = $content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = that.style.height;
		}
		
		$box.dequeue().animate({width: settings.w + loadedWidth, height: settings.h + loadedHeight, top: posTop, left: posLeft}, {
			duration: animate_speed,
			complete: function () {
				modalDimensions(this);
				
				active = false;
				
				// shrink the wrapper down to exactly the size of colorbox to avoid a bug in IE's iframe implementation.
				$wrap[0].style.width = (settings.w + loadedWidth + interfaceWidth) + "px";
				$wrap[0].style.height = (settings.h + loadedHeight + interfaceHeight) + "px";
				
				if (loadedCallback) {
					loadedCallback();
				}
			},
			step: function () {
				modalDimensions(this);
			}
		});
	};

	publicMethod.resize = function (options) {
		if (open) {
			options = options || {};
			
			if (options.width) {
				settings.w = setSize(options.width, 'x') - loadedWidth - interfaceWidth;
			}
			if (options.innerWidth) {
				settings.w = setSize(options.innerWidth, 'x');
			}
			$loaded.css({width: settings.w});
			
			if (options.height) {
				settings.h = setSize(options.height, 'y') - loadedHeight - interfaceHeight;
			}
			if (options.innerHeight) {
				settings.h = setSize(options.innerHeight, 'y');
			}
			if (!options.innerHeight && !options.height) {				
				var $child = $loaded.wrapInner("<div style='overflow:auto'></div>").children(); // temporary wrapper to get an accurate estimate of just how high the total content should be.
				settings.h = $child.height();
				$child.replaceWith($child.children()); // ditch the temporary wrapper div used in height calculation
			}
			$loaded.css({height: settings.h});
			
			publicMethod.position(settings.transition === "none" ? 0 : settings.speed);
		}
	};

	publicMethod.prep = function (object) {
		if (!open) {
			return;
		}
		
		var photo,
		speed = settings.transition === "none" ? 0 : settings.speed;
		
		$window.unbind('resize.' + prefix);
		$loaded.remove();
		$loaded = $div('LoadedContent').html(object);
		
		function getWidth() {
			settings.w = settings.w || $loaded.width();
			settings.w = settings.mw && settings.mw < settings.w ? settings.mw : settings.w;
			return settings.w;
		}
		function getHeight() {
			settings.h = settings.h || $loaded.height();
			settings.h = settings.mh && settings.mh < settings.h ? settings.mh : settings.h;
			return settings.h;
		}
		
		$loaded.hide()
		.appendTo($loadingBay.show())// content has to be appended to the DOM for accurate size calculations.
		.css({width: getWidth(), overflow: settings.scrolling ? 'auto' : 'hidden'})
		.css({height: getHeight()})// sets the height independently from the width in case the new width influences the value of height.
		.prependTo($content);
		
		$loadingBay.hide();
		
		$('#' + prefix + 'Photo').css({cssFloat: 'none'});// floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.
		
		// Hides SELECT elements in IE6 because they would otherwise sit on top of the overlay.
		if (isIE6) {
			$('select').not($box.find('select')).filter(function () {
				return this.style.visibility !== 'hidden';
			}).css({'visibility': 'hidden'}).one(event_cleanup, function () {
				this.style.visibility = 'inherit';
			});
		}
				
		function setPosition(s) {
			var prev, prevSrc, next, nextSrc, total = $related.length, loop = settings.loop;
			publicMethod.position(s, function () {
				function defilter() {
					if (isIE) {
						//IE adds a filter when ColorBox fades in and out that can cause problems if the loaded content contains transparent pngs.
						$box[0].style.removeAttribute("filter");
					}
				}
				
				if (!open) {
					return;
				}
				
				if (isIE) {
					//This fadeIn helps the bicubic resampling to kick-in.
					if (photo) {
						$loaded.fadeIn(100);
					}
				}
				
				//Waited until the iframe is added to the DOM & it is visible before setting the src.
				//This increases compatability with pages using DOM dependent JavaScript.
				if (settings.iframe) {
					$("<iframe frameborder=0" + (settings.scrolling ? "" : " scrolling='no'") + (isIE ? " allowtransparency='true'" : '') + "/>")
					.attr({src: settings.href, name: new Date().getTime()})
					.appendTo($loaded);
				}
				
				$loaded.show();
				
				$title.show().html(settings.title);
				
				if (total > 1) { // handle grouping
					$current.html(settings.current.replace(/\{current\}/, index + 1).replace(/\{total\}/, total)).show();
					
					$next[(loop || index < total - 1) ? "show" : "hide"]().html(settings.next);
					$prev[(loop || index) ? "show" : "hide"]().html(settings.previous);
					
					prev = index ? $related[index - 1] : $related[total - 1];
					next = index < total - 1 ? $related[index + 1] : $related[0];
					
					if (settings.slideshow) {
						$slideshow.show();
						if (index === total - 1 && !loop && $box.is('.' + prefix + 'Slideshow_on')) {
							$slideshow.click();
						}
					}
					
					// Preloads images within a rel group
					if (settings.preloading) {
						nextSrc = $(next).data(colorbox).href || next.href;
						prevSrc = $(prev).data(colorbox).href || prev.href;
						
						if (isImage(nextSrc)) {
							$('<img/>')[0].src = nextSrc;
						}
						
						if (isImage(prevSrc)) {
							$('<img/>')[0].src = prevSrc;
						}
					}
				}
				
				$loadingOverlay.hide();
				
				if (settings.transition === 'fade') {
					$box.fadeTo(speed, 1, function () {
						defilter();
					});
				} else {
					defilter();
				}
				
				$window.bind('resize.' + prefix, function () {
					publicMethod.position(0);
				});
				
				$.event.trigger(event_complete);
				if (settings.onComplete) {
					settings.onComplete.call(element);
				}
			});
		}
		
		if (settings.transition === 'fade') {
			$box.fadeTo(speed, 0, function () {
				setPosition(0);
			});
		} else {
			setPosition(speed);
		}
	};

	publicMethod.load = function () {
		var href, img, setResize, prep = publicMethod.prep;
		
		active = true;
		
		element = $related[index];
		
		settings = $.extend({}, $(element).data(colorbox));
		
		//convert functions to static values
		process();
		
		$.event.trigger(event_load);
		if (settings.onLoad) {
			settings.onLoad.call(element);
		}
		
		settings.h = settings.height ?
				setSize(settings.height, 'y') - loadedHeight - interfaceHeight :
				settings.innerHeight && setSize(settings.innerHeight, 'y');
		
		settings.w = settings.width ?
				setSize(settings.width, 'x') - loadedWidth - interfaceWidth :
				settings.innerWidth && setSize(settings.innerWidth, 'x');
		
		// Sets the minimum dimensions for use in image scaling
		settings.mw = settings.w;
		settings.mh = settings.h;
		
		// Re-evaluate the minimum width and height based on maxWidth and maxHeight values.
		// If the width or height exceed the maxWidth or maxHeight, use the maximum values instead.
		if (settings.maxWidth) {
			settings.mw = setSize(settings.maxWidth, 'x') - loadedWidth - interfaceWidth;
			settings.mw = settings.w && settings.w < settings.mw ? settings.w : settings.mw;
		}
		if (settings.maxHeight) {
			settings.mh = setSize(settings.maxHeight, 'y') - loadedHeight - interfaceHeight;
			settings.mh = settings.h && settings.h < settings.mh ? settings.h : settings.mh;
		}
		
		href = settings.href;
		
		$loadingOverlay.show();
		
		if (settings.inline) {
			// Inserts an empty placeholder where inline content is being pulled from.
			// An event is bound to put inline content back when ColorBox closes or loads new content.
			$div('InlineTemp').hide().insertBefore($(href)[0]).bind(event_load + ' ' + event_cleanup, function () {
				$(this).replaceWith($loaded.children());
			});
			prep($(href));
		} else if (settings.iframe) {
			// IFrame element won't be added to the DOM until it is ready to be displayed,
			// to avoid problems with DOM-ready JS that might be trying to run in that iframe.
			prep(" ");
		} else if (settings.html) {
			prep(settings.html);
		} else if (isImage(href)) {
			img = new Image();
			img.onload = function () {
				var percent;
				
				img.onload = null;
				img.id = prefix + 'Photo';
				$(img).css({margin: 'auto', border: 'none', display: 'block', cssFloat: 'left'});
				
				if (settings.scalePhotos) {
					setResize = function () {
						img.height -= img.height * percent;
						img.width -= img.width * percent;	
					};
					if (settings.mw && img.width > settings.mw) {
						percent = (img.width - settings.mw) / img.width;
						setResize();
					}
					if (settings.mh && img.height > settings.mh) {
						percent = (img.height - settings.mh) / img.height;
						setResize();
					}
				}
				
				if (settings.h) {
					img.style.marginTop = Math.max(settings.h - img.height, 0) / 2 + 'px';
				}
				
				setTimeout(function () { // Chrome will sometimes report a 0 by 0 size if there isn't pause in execution
					prep(img);
				}, 1);
				
				if ($related[1] && (index < $related.length - 1 || settings.loop)) {
					$(img).css({cursor: 'pointer'}).click(publicMethod.next);
				}
				
				if (isIE) {
					img.style.msInterpolationMode = 'bicubic';
				}
			};
			img.src = href;
		} else {
			$div().appendTo($loadingBay).load(href, function (data, status, xhr) {
				prep(status === 'error' ? 'Request unsuccessful: ' + xhr.statusText : this);
			});
		}
	};

	// Navigates to the next page/image in a set.
	publicMethod.next = function () {
		if (!active) {
			index = index < $related.length - 1 ? index + 1 : 0;
			publicMethod.load();
		}
	};
	
	publicMethod.prev = function () {
		if (!active) {
			index = index ? index - 1 : $related.length - 1;
			publicMethod.load();
		}
	};

	publicMethod.slideshow = function () {
		var stop, timeOut, className = prefix + 'Slideshow_';
		
		$slideshow.bind(event_closed, function () {
			$slideshow.unbind();
			clearTimeout(timeOut);
			$box.removeClass(className + "off " + className + "on");
		});
		
		function start() {
			$slideshow
			.text(settings.slideshowStop)
			.bind(event_complete, function () {
				timeOut = setTimeout(publicMethod.next, settings.slideshowSpeed);
			})
			.bind(event_load, function () {
				clearTimeout(timeOut);	
			}).one("click", function () {
				stop();
			});
			$box.removeClass(className + "off").addClass(className + "on");
		}
		
		stop = function () {
			clearTimeout(timeOut);
			$slideshow
			.text(settings.slideshowStart)
			.unbind(event_complete + ' ' + event_load)
			.one("click", function () {
				start();
				timeOut = setTimeout(publicMethod.next, settings.slideshowSpeed);
			});
			$box.removeClass(className + "on").addClass(className + "off");
		};
		
		if (settings.slideshow && $related[1]) {
			if (settings.slideshowAuto) {
				start();
			} else {
				stop();
			}
		}
	};

	// Note: to use this within an iframe use the following format: parent.$.fn.colorbox.close();
	publicMethod.close = function () {
		if (open) {
			open = false;
			
			$.event.trigger(event_cleanup);
			
			if (settings.onCleanup) {
				settings.onCleanup.call(element);
			}
			
			$window.unbind('.' + prefix + ' .' + event_ie6);
			
			$overlay.fadeTo('fast', 0);
			
			$box.stop().fadeTo('fast', 0, function () {
				$box.find('iframe').attr('src', 'about:blank'); // change the location of the iframe to avoid a problem in IE with flash objects not clearing.
				
				$loaded.remove();
				
				$box.add($overlay).css({'opacity': 1, cursor: 'auto'}).hide();
				
				try {
					bookmark.focus();
				} catch (e) {
					// do nothing
				}
				
				setTimeout(function () {
					$.event.trigger(event_closed);
					if (settings.onClosed) {
						settings.onClosed.call(element);
					}
				}, 1);
			});
		}
	};

	// A method for fetching the current element ColorBox is referencing.
	// returns a jQuery object.
	publicMethod.element = function () {
		return $(element);
	};

	publicMethod.settings = defaults;

	// Initializes ColorBox when the DOM has loaded
	$(publicMethod.init);

}(jQuery, this));
;
/*
 * 	Easy Slider 1.7 - jQuery plugin
 *	written by Alen Grakalic	
 *	http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding
 *
 *	Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */
 
/*
 *	markup example for $("#slider").easySlider();
 *	
 * 	<div id="slider">
 *		<ul>
 *			<li><img src="images/01.jpg" alt="" /></li>
 *			<li><img src="images/02.jpg" alt="" /></li>
 *			<li><img src="images/03.jpg" alt="" /></li>
 *			<li><img src="images/04.jpg" alt="" /></li>
 *			<li><img src="images/05.jpg" alt="" /></li>
 *		</ul>
 *	</div>
 *
 */

(function($) {

	$.fn.easySlider = function(options){
	  
		// default configuration properties
		var defaults = {			
			prevId: 		'prevBtn',
			prevText: 		'Previous',
			nextId: 		'nextBtn',	
			nextText: 		'Next',
			controlsShow:	true,
			controlsBefore:	'',
			controlsAfter:	'',	
			controlsFade:	true,
			firstId: 		'firstBtn',
			firstText: 		'First',
			firstShow:		false,
			lastId: 		'lastBtn',	
			lastText: 		'Last',
			lastShow:		false,				
			vertical:		false,
			speed: 			800,
			auto:			false,
			pause:			2000,
			continuous:		false, 
			numeric: 		false,
			numericId: 		'controls'
		}; 
		
		var options = $.extend(defaults, options);  
				
		this.each(function() {  
			var obj = $(this); 				
			var s = $("li", obj).length;
			var w = $("li", obj).width(); 
			var h = $("li", obj).height(); 
			var clickable = true;
			obj.width(w); 
			obj.height(h); 
			obj.css("overflow","hidden");
			var ts = s-1;
			var t = 0;
			$("ul", obj).css('width',s*w);			
			
			if(options.continuous){
				$("ul", obj).prepend($("ul li:last-child", obj).clone().css("margin-left","-"+ w +"px"));
				$("ul", obj).append($("ul li:nth-child(2)", obj).clone());
				$("ul", obj).css('width',(s+1)*w);
			};				
			
			if(!options.vertical) $("li", obj).css('float','left');
								
			if(options.controlsShow){
				var html = options.controlsBefore;				
				if(options.numeric){
					html += '<ol id="'+ options.numericId +'"></ol>';
				} else {
					if(options.firstShow) html += '<span id="'+ options.firstId +'"><a href=\"javascript:void(0);\">'+ options.firstText +'</a></span>';
					html += ' <span id="'+ options.prevId +'"><a href=\"javascript:void(0);\">'+ options.prevText +'</a></span>';
					html += ' <span id="'+ options.nextId +'"><a href=\"javascript:void(0);\">'+ options.nextText +'</a></span>';
					if(options.lastShow) html += ' <span id="'+ options.lastId +'"><a href=\"javascript:void(0);\">'+ options.lastText +'</a></span>';				
				};
				
				html += options.controlsAfter;						
				$(obj).after(html);										
			};
			
			if(options.numeric){									
				for(var i=0;i<s;i++){						
					$(document.createElement("li"))
						.attr('id',options.numericId + (i+1))
						.html('<a rel='+ i +' href=\"javascript:void(0);\">'+ (i+1) +'</a>')
						.appendTo($("#"+ options.numericId))
						.click(function(){							
							animate($("a",$(this)).attr('rel'),true);
						}); 												
				};							
			} else {
				$("a","#"+options.nextId).click(function(){		
					animate("next",true);
				});
				$("a","#"+options.prevId).click(function(){		
					animate("prev",true);				
				});	
				$("a","#"+options.firstId).click(function(){		
					animate("first",true);
				});				
				$("a","#"+options.lastId).click(function(){		
					animate("last",true);				
				});				
			};
			
			function setCurrent(i){
				i = parseInt(i)+1;
				$("li", "#" + options.numericId).removeClass("current");
				$("li#" + options.numericId + i).addClass("current");
			};
			
			function adjust(){
				if(t>ts) t=0;		
				if(t<0) t=ts;	
				if(!options.vertical) {
					$("ul",obj).css("margin-left",(t*w*-1));
				} else {
					$("ul",obj).css("margin-left",(t*h*-1));
				}
				clickable = true;
				if(options.numeric) setCurrent(t);
			};
			
			function animate(dir,clicked){
				if (clickable){
					clickable = false;
					var ot = t;				
					switch(dir){
						case "next":
							t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1;						
							break; 
						case "prev":
							t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1;
							break; 
						case "first":
							t = 0;
							break; 
						case "last":
							t = ts;
							break; 
						default:
							t = dir;
							break; 
					};	
					var diff = Math.abs(ot-t);
					var speed = diff*options.speed;						
					if(!options.vertical) {
						p = (t*w*-1);
						$("ul",obj).animate(
							{ marginLeft: p }, 
							{ queue:false, duration:speed, complete:adjust }
						);				
					} else {
						p = (t*h*-1);
						$("ul",obj).animate(
							{ marginTop: p }, 
							{ queue:false, duration:speed, complete:adjust }
						);					
					};
					
					if(!options.continuous && options.controlsFade){					
						if(t==ts){
							$("a","#"+options.nextId).hide();
							$("a","#"+options.lastId).hide();
						} else {
							$("a","#"+options.nextId).show();
							$("a","#"+options.lastId).show();					
						};
						if(t==0){
							$("a","#"+options.prevId).hide();
							$("a","#"+options.firstId).hide();
						} else {
							$("a","#"+options.prevId).show();
							$("a","#"+options.firstId).show();
						};					
					};				
					
					if(clicked) clearTimeout(timeout);
					if(options.auto && dir=="next" && !clicked){;
						timeout = setTimeout(function(){
							animate("next",false);
						},diff*options.speed+options.pause);
					};
			
				};
				
			};
			// init
			var timeout;
			if(options.auto){;
				timeout = setTimeout(function(){
					animate("next",false);
				},options.pause);
			};		
			
			if(options.numeric) setCurrent(0);
		
			if(!options.continuous && options.controlsFade){					
				$("a","#"+options.prevId).hide();
				$("a","#"+options.firstId).hide();				
			};				
			
		});
	  
	};

})(jQuery);



;
// generic JS fixes

// various JavaScript object.
var Blueprint = {};

// jump to the value in a select drop down
Blueprint.go = function(e) {
  var destination = e.options[e.selectedIndex].value;
  if (destination && destination != 0) location.href = destination;
};

// prevent users from clicking a submit button twice
Blueprint.formCheck = function() {
  // only apply this to node and comment and new user registration forms
  var forms = $("#node-form>div>div>#edit-submit,#comment-form>div>#edit-submit,#user-register>div>#edit-submit");

  // insert the saving div now to cache it for better performance and to show the loading image
  $('<div id="saving"><p class="saving">Saving&hellip;</p></div>').insertAfter(forms);

  forms.click(function() {
    $(this).siblings("input:submit").hide();
    $(this).hide();
    $("#saving").show();

    var notice = function() {
      $('<p id="saving-notice">Not saving? Wait a few seconds, reload this page, and try again. Every now and then the internet hiccups too :-)</p>').appendTo("#saving").fadeIn();
    };

    // append notice if form saving isn't work, perhaps a timeout issue
    setTimeout(notice, 24000);
  });
};

// Global Killswitch.
if (Drupal.jsEnabled) {
  $(document).ready(function() {
    // initialize form double submit prevention
    Blueprint.formCheck;
    
    // define Cufon
    Cufon.replace('h1, h2, ul.menu a, #block-locale-0 a, footer p, footer li, .quote', { fontFamily: 'Helvetica Neue LT Std' });
		Cufon.replace('ul.menu a', { hover: true });

    /*
    **********
      initialize colorbox
    **********
    */
  	// image gallery colorbox
  	$('article.node .item-list a').colorbox({
/*
      innerWidth: '640px',
      innerHeight: '480px',
*/
      rel: 'group',
      title: '',
      transition:'none',
      next:'next',
      previous:'previous',
      close: "close",
      current:"{current}/{total}"
    });    

    // add an onClick action to the back button
    $(".almighty-back-button").click(function () {
        parent.history.back();
        return false;
    });
    
    // activate 
    $('body.node-type-speaker').find('nav > ul > li > a[href*=speakers]').parent().addClass('active active-trail').find('ul li a[href*=portfolio]').addClass('active active-trail').parent().addClass('active active-trail');
    //
    $('body.node-type-event').find('nav > ul > li > a[href*=premium-productions]').parent().addClass('active active-trail').find('ul li a[href*=portfolio]').addClass('active active-trail').parent().addClass('active active-trail');
    //
    $('body.node-type-service').find('nav > ul > li > a[href*=operational-services]').parent().addClass('active active-trail').find('ul li a[href*=portfolio]').addClass('active active-trail').parent().addClass('active active-trail');

    // open links with target_blank class in a new window
    $('.target_blank').click(function() { window.open(this.getAttribute('href'), '_blank'); return false; });

    $("#headerSlider").easySlider({
  		auto: true,
  		pause: 4000,
  		continuous: true,
  		controlsShow: false
  	});

  });
};

