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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var d="undefined",R="object",s="Shockwave Flash",w="ShockwaveFlash.ShockwaveFlash",Q="application/x-shockwave-flash",r="SWFObjectExprInst",X="onreadystatechange",o=window,J=document,T=navigator,t=false,u=[H],O=[],n=[],i=[],L,q,e,b,j=false,A=false,N,g,M=true,m=function(){var AA=typeof J.getElementById!=d&&typeof J.getElementsByTagName!=d&&typeof J.createElement!=d,AH=T.userAgent.toLowerCase(),y=T.platform.toLowerCase(),AE=y?/win/.test(y):/win/.test(AH),AC=y?/mac/.test(y):/mac/.test(AH),AF=/webkit/.test(AH)?parseFloat(AH.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,x=!+"\v1",AG=[0,0,0],AB=null;if(typeof T.plugins!=d&&typeof T.plugins[s]==R){AB=T.plugins[s].description;if(AB&&!(typeof T.mimeTypes!=d&&T.mimeTypes[Q]&&!T.mimeTypes[Q].enabledPlugin)){t=true;x=false;AB=AB.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AG[0]=parseInt(AB.replace(/^(.*)\..*$/,"$1"),10);AG[1]=parseInt(AB.replace(/^.*\.(.*)\s.*$/,"$1"),10);AG[2]=/[a-zA-Z]/.test(AB)?parseInt(AB.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof o.ActiveXObject!=d){try{var AD=new ActiveXObject(w);if(AD){AB=AD.GetVariable("$version");if(AB){x=true;AB=AB.split(" ")[1].split(",");AG=[parseInt(AB[0],10),parseInt(AB[1],10),parseInt(AB[2],10)]}}}catch(z){}}}return{w3:AA,pv:AG,wk:AF,ie:x,win:AE,mac:AC}}(),K=function(){if(!m.w3){return }if((typeof J.readyState!=d&&J.readyState=="complete")||(typeof J.readyState==d&&(J.getElementsByTagName("body")[0]||J.body))){F()}if(!j){if(typeof J.addEventListener!=d){J.addEventListener("DOMContentLoaded",F,false)}if(m.ie&&m.win){J.attachEvent(X,function(){if(J.readyState=="complete"){J.detachEvent(X,arguments.callee);F()}});if(o==top){(function(){if(j){return }try{J.documentElement.doScroll("left")}catch(x){setTimeout(arguments.callee,0);return }F()})()}}if(m.wk){(function(){if(j){return }if(!/loaded|complete/.test(J.readyState)){setTimeout(arguments.callee,0);return }F()})()}S(F)}}();function F(){if(j){return }try{var z=J.getElementsByTagName("body")[0].appendChild(c("span"));z.parentNode.removeChild(z)}catch(AA){return }j=true;var x=u.length;for(var y=0;y<x;y++){u[y]()}}function k(x){if(j){x()}else{u[u.length]=x}}function S(y){if(typeof o.addEventListener!=d){o.addEventListener("load",y,false)}else{if(typeof J.addEventListener!=d){J.addEventListener("load",y,false)}else{if(typeof o.attachEvent!=d){I(o,"onload",y)}else{if(typeof o.onload=="function"){var x=o.onload;o.onload=function(){x();y()}}else{o.onload=y}}}}}function H(){if(t){v()}else{h()}}function v(){var x=J.getElementsByTagName("body")[0];var AA=c(R);AA.setAttribute("type",Q);var z=x.appendChild(AA);if(z){var y=0;(function(){if(typeof z.GetVariable!=d){var AB=z.GetVariable("$version");if(AB){AB=AB.split(" ")[1].split(",");m.pv=[parseInt(AB[0],10),parseInt(AB[1],10),parseInt(AB[2],10)]}}else{if(y<10){y++;setTimeout(arguments.callee,10);return }}x.removeChild(AA);z=null;h()})()}else{h()}}function h(){var AG=O.length;if(AG>0){for(var AF=0;AF<AG;AF++){var y=O[AF].id;var AB=O[AF].callbackFn;var AA={success:false,id:y};if(m.pv[0]>0){var AE=C(y);if(AE){if(f(O[AF].swfVersion)&&!(m.wk&&m.wk<312)){W(y,true);if(AB){AA.success=true;AA.ref=Z(y);AB(AA)}}else{if(O[AF].expressInstall&&a()){var AI={};AI.data=O[AF].expressInstall;AI.width=AE.getAttribute("width")||"0";AI.height=AE.getAttribute("height")||"0";if(AE.getAttribute("class")){AI.styleclass=AE.getAttribute("class")}if(AE.getAttribute("align")){AI.align=AE.getAttribute("align")}var AH={};var x=AE.getElementsByTagName("param");var AC=x.length;for(var AD=0;AD<AC;AD++){if(x[AD].getAttribute("name").toLowerCase()!="movie"){AH[x[AD].getAttribute("name")]=x[AD].getAttribute("value")}}p(AI,AH,y,AB)}else{P(AE);if(AB){AB(AA)}}}}}else{W(y,true);if(AB){var z=Z(y);if(z&&typeof z.SetVariable!=d){AA.success=true;AA.ref=z}AB(AA)}}}}}function Z(AA){var x=null;var y=C(AA);if(y&&y.nodeName=="OBJECT"){if(typeof y.SetVariable!=d){x=y}else{var z=y.getElementsByTagName(R)[0];if(z){x=z}}}return x}function a(){return !A&&f("6.0.65")&&(m.win||m.mac)&&!(m.wk&&m.wk<312)}function p(AA,AB,x,z){A=true;e=z||null;b={success:false,id:x};var AE=C(x);if(AE){if(AE.nodeName=="OBJECT"){L=G(AE);q=null}else{L=AE;q=x}AA.id=r;if(typeof AA.width==d||(!/%$/.test(AA.width)&&parseInt(AA.width,10)<310)){AA.width="310"}if(typeof AA.height==d||(!/%$/.test(AA.height)&&parseInt(AA.height,10)<137)){AA.height="137"}J.title=J.title.slice(0,47)+" - Flash Player Installation";var AD=m.ie&&m.win?"ActiveX":"PlugIn",AC="MMredirectURL="+o.location.toString().replace(/&/g,"%26")+"&MMplayerType="+AD+"&MMdoctitle="+J.title;if(typeof AB.flashvars!=d){AB.flashvars+="&"+AC}else{AB.flashvars=AC}if(m.ie&&m.win&&AE.readyState!=4){var y=c("div");x+="SWFObjectNew";y.setAttribute("id",x);AE.parentNode.insertBefore(y,AE);AE.style.display="none";(function(){if(AE.readyState==4){AE.parentNode.removeChild(AE)}else{setTimeout(arguments.callee,10)}})()}U(AA,AB,x)}}function P(y){if(m.ie&&m.win&&y.readyState!=4){var x=c("div");y.parentNode.insertBefore(x,y);x.parentNode.replaceChild(G(y),x);y.style.display="none";(function(){if(y.readyState==4){y.parentNode.removeChild(y)}else{setTimeout(arguments.callee,10)}})()}else{y.parentNode.replaceChild(G(y),y)}}function G(AB){var AA=c("div");if(m.win&&m.ie){AA.innerHTML=AB.innerHTML}else{var y=AB.getElementsByTagName(R)[0];if(y){var AC=y.childNodes;if(AC){var x=AC.length;for(var z=0;z<x;z++){if(!(AC[z].nodeType==1&&AC[z].nodeName=="PARAM")&&!(AC[z].nodeType==8)){AA.appendChild(AC[z].cloneNode(true))}}}}}return AA}function U(AI,AG,y){var x,AA=C(y);if(m.wk&&m.wk<312){return x}if(AA){if(typeof AI.id==d){AI.id=y}if(m.ie&&m.win){var AH="";for(var AE in AI){if(AI[AE]!=Object.prototype[AE]){if(AE.toLowerCase()=="data"){AG.movie=AI[AE]}else{if(AE.toLowerCase()=="styleclass"){AH+=' class="'+AI[AE]+'"'}else{if(AE.toLowerCase()!="classid"){AH+=" "+AE+'="'+AI[AE]+'"'}}}}}var AF="";for(var AD in AG){if(AG[AD]!=Object.prototype[AD]){AF+='<param name="'+AD+'" value="'+AG[AD]+'" />'}}AA.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AH+">"+AF+"</object>";n[n.length]=AI.id;x=C(AI.id)}else{var z=c(R);z.setAttribute("type",Q);for(var AC in AI){if(AI[AC]!=Object.prototype[AC]){if(AC.toLowerCase()=="styleclass"){z.setAttribute("class",AI[AC])}else{if(AC.toLowerCase()!="classid"){z.setAttribute(AC,AI[AC])}}}}for(var AB in AG){if(AG[AB]!=Object.prototype[AB]&&AB.toLowerCase()!="movie"){E(z,AB,AG[AB])}}AA.parentNode.replaceChild(z,AA);x=z}}return x}function E(z,x,y){var AA=c("param");AA.setAttribute("name",x);AA.setAttribute("value",y);z.appendChild(AA)}function Y(y){var x=C(y);if(x&&x.nodeName=="OBJECT"){if(m.ie&&m.win){x.style.display="none";(function(){if(x.readyState==4){B(y)}else{setTimeout(arguments.callee,10)}})()}else{x.parentNode.removeChild(x)}}}function B(z){var y=C(z);if(y){for(var x in y){if(typeof y[x]=="function"){y[x]=null}}y.parentNode.removeChild(y)}}function C(z){var x=null;try{x=J.getElementById(z)}catch(y){}return x}function c(x){return J.createElement(x)}function I(z,x,y){z.attachEvent(x,y);i[i.length]=[z,x,y]}function f(z){var y=m.pv,x=z.split(".");x[0]=parseInt(x[0],10);x[1]=parseInt(x[1],10)||0;x[2]=parseInt(x[2],10)||0;return(y[0]>x[0]||(y[0]==x[0]&&y[1]>x[1])||(y[0]==x[0]&&y[1]==x[1]&&y[2]>=x[2]))?true:false}function V(AC,y,AD,AB){if(m.ie&&m.mac){return }var AA=J.getElementsByTagName("head")[0];if(!AA){return }var x=(AD&&typeof AD=="string")?AD:"screen";if(AB){N=null;g=null}if(!N||g!=x){var z=c("style");z.setAttribute("type","text/css");z.setAttribute("media",x);N=AA.appendChild(z);if(m.ie&&m.win&&typeof J.styleSheets!=d&&J.styleSheets.length>0){N=J.styleSheets[J.styleSheets.length-1]}g=x}if(m.ie&&m.win){if(N&&typeof N.addRule==R){N.addRule(AC,y)}}else{if(N&&typeof J.createTextNode!=d){N.appendChild(J.createTextNode(AC+" {"+y+"}"))}}}function W(z,x){if(!M){return }var y=x?"visible":"hidden";if(j&&C(z)){C(z).style.visibility=y}else{V("#"+z,"visibility:"+y)}}function l(y){var z=/[\\\"<>\.;]/;var x=z.exec(y)!=null;return x&&typeof encodeURIComponent!=d?encodeURIComponent(y):y}var D=function(){if(m.ie&&m.win){window.attachEvent("onunload",function(){var AC=i.length;for(var AB=0;AB<AC;AB++){i[AB][0].detachEvent(i[AB][1],i[AB][2])}var z=n.length;for(var AA=0;AA<z;AA++){Y(n[AA])}for(var y in m){m[y]=null}m=null;for(var x in swfobject){swfobject[x]=null}swfobject=null})}}();return{registerObject:function(AB,x,AA,z){if(m.w3&&AB&&x){var y={};y.id=AB;y.swfVersion=x;y.expressInstall=AA;y.callbackFn=z;O[O.length]=y;W(AB,false)}else{if(z){z({success:false,id:AB})}}},getObjectById:function(x){if(m.w3){return Z(x)}},embedSWF:function(AB,AH,AE,AG,y,AA,z,AD,AF,AC){var x={success:false,id:AH};if(m.w3&&!(m.wk&&m.wk<312)&&AB&&AH&&AE&&AG&&y){W(AH,false);k(function(){AE+="";AG+="";var AJ={};if(AF&&typeof AF===R){for(var AL in AF){AJ[AL]=AF[AL]}}AJ.data=AB;AJ.width=AE;AJ.height=AG;var AM={};if(AD&&typeof AD===R){for(var AK in AD){AM[AK]=AD[AK]}}if(z&&typeof z===R){for(var AI in z){if(typeof AM.flashvars!=d){AM.flashvars+="&"+AI+"="+z[AI]}else{AM.flashvars=AI+"="+z[AI]}}}if(f(y)){var AN=U(AJ,AM,AH);if(AJ.id==AH){W(AH,true)}x.success=true;x.ref=AN}else{if(AA&&a()){AJ.data=AA;p(AJ,AM,AH,AC);return }else{W(AH,true)}}if(AC){AC(x)}})}else{if(AC){AC(x)}}},switchOffAutoHideShow:function(){M=false},ua:m,getFlashPlayerVersion:function(){return{major:m.pv[0],minor:m.pv[1],release:m.pv[2]}},hasFlashPlayerVersion:f,createSWF:function(z,y,x){if(m.w3){return U(z,y,x)}else{return undefined}},showExpressInstall:function(z,AA,x,y){if(m.w3&&a()){p(z,AA,x,y)}},removeSWF:function(x){if(m.w3){Y(x)}},createCSS:function(AA,z,y,x){if(m.w3){V(AA,z,y,x)}},addDomLoadEvent:k,addLoadEvent:S,getQueryParamValue:function(AA){var z=J.location.search||J.location.hash;if(z){if(/\?/.test(z)){z=z.split("?")[1]}if(AA==null){return l(z)}var y=z.split("&");for(var x=0;x<y.length;x++){if(y[x].substring(0,y[x].indexOf("="))==AA){return l(y[x].substring((y[x].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A){var x=C(r);if(x&&L){x.parentNode.replaceChild(L,x);if(q){W(q,true);if(m.ie&&m.win){L.style.display="block"}}if(e){e(b)}}A=false}}}}();var AudioPlayer=function(){var H=[];var D;var F="";var A={};var E=-1;var G="9";function B(I){if(document.all&&!window[I]){for(var J=0;J<document.forms.length;J++){if(document.forms[J][I]){return document.forms[J][I];break}}}return document.all?window[I]:document[I]}function C(I,J,K){B(I).addListener(J,K)}return{setup:function(J,I){F=J;A=I;if(swfobject.hasFlashPlayerVersion(G)){swfobject.switchOffAutoHideShow();swfobject.createCSS("p.audioplayer_container span","visibility:hidden;height:24px;overflow:hidden;padding:0;border:none;")}},getPlayer:function(I){return B(I)},addListener:function(I,J,K){C(I,J,K)},embed:function(I,K){var N={};var L;var J={};var O={};var M={};for(L in A){N[L]=A[L]}for(L in K){N[L]=K[L]}if(N.transparentpagebg=="yes"){J.bgcolor="#FFFFFF";J.wmode="transparent"}else{if(N.pagebg){J.bgcolor="#"+N.pagebg}J.wmode="opaque"}J.menu="false";for(L in N){if(L=="pagebg"||L=="width"||L=="transparentpagebg"){continue}O[L]=N[L]}M.name=I;M.style="outline: none";O.playerID=I;swfobject.embedSWF(F,I,N.width.toString(),"24",G,false,O,J,M);H.push(I)},syncVolumes:function(I,K){E=K;for(var J=0;J<H.length;J++){if(H[J]!=I){B(H[J]).setVolume(E)}}},activate:function(I,J){if(D&&D!=I){B(D).close()}D=I},load:function(K,I,L,J){B(K).load(I,L,J)},close:function(I){B(I).close();if(I==D){D=null}},open:function(I,J){if(J==undefined){J=1}B(I).open(J==undefined?0:J-1)},getVolume:function(I){return E}}}();;
/* $Id: jquery.hoverIntent.minified.js,v 1.1 2010/02/12 12:53:13 mehrpadin Exp $ */
/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
*
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;
/* $Id: jquery.bgiframe.min.js,v 1.1 2010/02/15 13:38:03 mehrpadin Exp $ */
/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;
/* $Id: superfish.js,v 1.1 2010/02/12 12:53:13 mehrpadin Exp $ */
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

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

    var sf = $.fn.superfish,
      c = sf.c,
      $arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
      over = function(){
        var $$ = $(this), menu = getMenu($$);
        clearTimeout(menu.sfTimer);
        $$.showSuperfishUl().siblings().hideSuperfishUl();
      },
      out = function(){
        var $$ = $(this), menu = getMenu($$), o = sf.op;
        clearTimeout(menu.sfTimer);
        menu.sfTimer=setTimeout(function(){
          o.retainPath=($.inArray($$[0],o.$path)>-1);
          $$.hideSuperfishUl();
          if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
        },o.delay);
      },
      getMenu = function($menu){
        var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
        sf.op = sf.o[menu.serial];
        return menu;
      },
      addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };

    return this.each(function() {
      var s = this.serial = sf.o.length;
      var o = $.extend({},sf.defaults,op);
      o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
        $(this).addClass([o.hoverClass,c.bcClass].join(' '))
          .filter('li:has(ul)').removeClass(o.pathClass);
      });
      sf.o[s] = sf.op = o;

      $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
        if (o.autoArrows) addArrow( $('>a:first-child',this) );
      })
      .not('.'+c.bcClass)
        .hideSuperfishUl();

      var $a = $('a',this);
      $a.each(function(i){
        var $li = $a.eq(i).parents('li');
        $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
      });
      o.onInit.call(this);

    }).each(function() {
      var menuClasses = [c.menuClass];
      if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
      $(this).addClass(menuClasses.join(' '));
    });
  };

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

})(jQuery);
;
/* $Id: supersubs.js,v 1.1 2010/02/12 12:53:13 mehrpadin Exp $ */
/*
 * Supersubs v0.2b - jQuery plugin
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 *
 * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of
 * their longest list item children. If you use this, please expect bugs and report them
 * to the jQuery Google Group with the word 'Superfish' in the subject line.
 *
 */

;(function($){ // $ will refer to jQuery within this closure

  $.fn.supersubs = function(options){
    var opts = $.extend({}, $.fn.supersubs.defaults, options);
    // return original object to support chaining
    return this.each(function() {
      // cache selections
      var $$ = $(this);
      // support metadata
      var o = $.meta ? $.extend({}, opts, $$.data()) : opts;
      // get the font size of menu.
      // .css('fontSize') returns various results cross-browser, so measure an em dash instead
      var fontsize = $('<li id="menu-fontsize">&#8212;</li>').css({
        'padding' : 0,
        'position' : 'absolute',
        'top' : '-999em',
        'width' : 'auto'
      }).appendTo($$).width(); //clientWidth is faster, but was incorrect here
      // remove em dash
      $('#menu-fontsize').remove();
      // cache all ul elements
      $ULs = $$.find('ul');
      // loop through each ul in menu
      $ULs.each(function(i) {
        // cache this ul
        var $ul = $ULs.eq(i);
        // get all (li) children of this ul
        var $LIs = $ul.children();
        // get all anchor grand-children
        var $As = $LIs.children('a');
        // force content to one line and save current float property
        var liFloat = $LIs.css('white-space','nowrap').css('float');
        // remove width restrictions and floats so elements remain vertically stacked
        var emWidth = $ul.add($LIs).add($As).css({
          'float' : 'none',
          'width'  : 'auto'
        })
        // this ul will now be shrink-wrapped to longest li due to position:absolute
        // so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer
        .end().end()[0].clientWidth / fontsize;
        // add more width to ensure lines don't turn over at certain sizes in various browsers
        emWidth += o.extraWidth;
        // restrict to at least minWidth and at most maxWidth
        if (emWidth > o.maxWidth)    { emWidth = o.maxWidth; }
        else if (emWidth < o.minWidth)  { emWidth = o.minWidth; }
        emWidth += 'em';
        // set ul to width in ems
        $ul.css('width',emWidth);
        // restore li floats to avoid IE bugs
        // set li width to full width of this ul
        // revert white-space to normal
        $LIs.css({
          'float' : liFloat,
          'width' : '100%',
          'white-space' : 'normal'
        })
        // update offset position of descendant ul to reflect new width of parent
        .each(function(){
          var $childUl = $('>ul',this);
          var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right';
          $childUl.css(offsetDirection,emWidth);
        });
      });

    });
  };
  // expose defaults
  $.fn.supersubs.defaults = {
    minWidth: 9, // requires em unit.
    maxWidth: 25, // requires em unit.
    extraWidth: 0 // extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values
  };

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

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

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

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

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

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

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

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

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

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

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

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

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }

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

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

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

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

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

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

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

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

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

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

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

function eraseCookie(name) {
  createCookie(name,"",-1);
}
;
// $Id: views_slideshow.js,v 1.1.2.2.2.34 2010/06/17 03:18:02 redndahead Exp $

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

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

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

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

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

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

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

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

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

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }

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

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

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

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

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

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

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

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

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

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

;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Courier New is a trademark of The Monotype Corporation in the United States
 * and/or other countries.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Howard Kettler
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Courier New","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 7 3 9 2 2 5 2 4 4","ascent":"288","descent":"-72","x-height":"6","bbox":"-5 -287.533 224.196 99","underline-thickness":"14.7656","underline-position":"-76.4648","unicode-range":"U+0020-U+017F"},"glyphs":{" ":{},"\u00a0":{},"!":{"d":"108,-226v10,0,15,8,14,20r-7,120v0,6,-2,9,-7,10v-5,-1,-7,-4,-7,-10r-7,-126v-1,-7,7,-15,14,-14xm86,-13v0,-11,11,-20,25,-18v10,-1,19,9,19,18v0,11,-11,20,-25,18v-10,1,-19,-9,-19,-18"},"\"":{"d":"47,-217r47,0v-6,31,-7,68,-17,95v-8,7,-17,0,-18,-9xm122,-217r47,0v-6,31,-6,68,-16,95v-7,7,-19,1,-18,-9"},"#":{"d":"183,-137v-2,13,-28,5,-42,7r-4,46v14,2,38,-5,39,8v-3,12,-27,5,-40,7v-3,30,-1,65,-8,90v-5,5,-13,0,-12,-9r6,-81r-34,0v-3,30,-1,65,-8,90v-5,5,-14,-1,-12,-9r5,-81v-13,-2,-38,6,-40,-7v1,-15,28,-6,42,-8r3,-46v-17,3,-55,-3,-28,-15r29,0r8,-89v4,-6,14,-1,12,8r-5,81r33,0r8,-89v4,-7,16,1,12,8r-5,81v14,2,40,-6,41,8xm126,-130r-33,0r-4,46r34,0"},"$":{"d":"115,-211v19,2,25,5,38,14v0,-6,2,-9,7,-9v12,0,7,20,8,32v0,6,-2,10,-8,10v-11,-4,-5,-19,-18,-23v-36,-31,-107,13,-68,51v32,18,107,9,102,63v-2,31,-27,51,-61,53v-3,17,7,48,-7,54v-16,-4,-5,-37,-8,-54v-18,-1,-33,-6,-45,-17v-1,10,0,13,-8,13v-13,0,-5,-25,-7,-38v0,-6,1,-10,7,-10v5,0,8,2,8,9v4,16,27,29,53,29v29,0,53,-16,53,-39v0,-59,-113,-19,-113,-86v0,-28,24,-49,52,-52v1,-11,-4,-29,8,-28v11,0,6,18,7,28"},"%":{"d":"85,-224v24,0,45,20,45,45v0,25,-21,46,-45,46v-24,0,-45,-22,-45,-46v0,-24,21,-45,45,-45xm85,-144v18,0,35,-16,35,-35v0,-19,-18,-35,-35,-35v-17,0,-34,16,-34,35v0,19,16,35,34,35xm175,-138v10,-2,11,8,3,11r-140,45v-6,0,-7,-10,0,-11xm131,-87v24,0,45,21,45,46v0,25,-21,45,-45,45v-24,0,-45,-20,-45,-45v0,-25,21,-46,45,-46xm131,-6v17,0,34,-16,34,-35v0,-19,-16,-35,-34,-35v-18,0,-35,16,-35,35v0,19,18,35,35,35"},"&":{"d":"180,-7v-1,10,-19,6,-30,7r-11,-17v-28,46,-94,16,-94,-35v0,-27,17,-47,40,-53v-12,-22,-16,-21,-18,-41v-3,-32,42,-56,69,-36v14,-12,23,6,10,11v-11,11,-19,-4,-34,-4v-34,0,-35,33,-14,66r41,65v7,-13,12,-29,16,-47v14,-3,34,5,20,14v-1,0,-3,1,-8,1v-6,20,-13,35,-20,46v5,7,7,18,23,15v7,0,9,3,10,8xm92,-92v-45,5,-41,84,5,83v13,0,24,-7,33,-22"},"'":{"d":"85,-221r46,0v-6,34,-6,73,-16,103v-8,7,-17,0,-18,-10"},"(":{"d":"158,46v-26,-23,-52,-84,-52,-134v1,-47,27,-111,52,-133v4,1,8,3,8,8v-20,42,-37,73,-37,125v0,53,18,84,37,126v0,5,-3,8,-8,8"},")":{"d":"53,-213v0,-6,8,-10,12,-6v40,47,68,155,22,227v-14,22,-14,34,-27,38v-5,0,-7,-3,-7,-8v19,-42,38,-72,37,-125v0,-53,-17,-84,-37,-126"},"*":{"d":"47,-162v-10,-1,-9,-15,0,-15r53,17v3,-20,-7,-53,7,-61v16,6,5,42,8,61r53,-17v10,1,9,14,-1,15r-48,16v11,16,24,30,33,47v0,9,-12,11,-15,3r-30,-41v-13,15,-20,36,-37,46v-7,0,-8,-8,-4,-14r29,-41"},"+":{"d":"191,-103v0,5,-4,8,-10,8r-66,0r0,73v0,6,-1,10,-7,10v-6,0,-7,-4,-7,-10r0,-73r-66,0v-7,0,-9,-3,-10,-8v1,-5,4,-7,10,-7r66,0r0,-74v0,-6,2,-9,7,-10v5,1,7,4,7,10r0,74r66,0v6,0,9,2,10,7"},",":{"d":"75,44v-6,14,-26,9,-22,-6r26,-91r48,0"},"-":{"d":"183,-112r0,21r-150,0r0,-21r150,0"},"\u00ad":{"d":"183,-112r0,21r-150,0r0,-21r150,0"},".":{"d":"81,-18v-1,-15,12,-24,30,-24v13,0,24,10,24,23v0,15,-13,24,-30,24v-13,0,-24,-10,-24,-23"},"\/":{"d":"161,-238v2,-8,15,-8,15,1r-120,260v-3,9,-14,9,-16,0"},"0":{"d":"108,-226v62,0,68,65,68,134v0,50,-22,97,-68,97v-62,0,-68,-65,-68,-133v0,-50,22,-98,68,-98xm108,-9v46,0,57,-63,53,-118v-3,-41,-12,-84,-53,-84v-47,0,-56,63,-53,117v2,42,13,85,53,85"},"1":{"d":"52,-188v-8,4,-15,-4,-10,-11v22,-10,49,-16,73,-25r0,209v20,3,54,-8,61,8v-1,5,-4,7,-10,7r-116,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r51,0r0,-188"},"2":{"d":"105,-226v50,0,89,59,53,100v-29,33,-91,88,-114,111r114,0v-5,-15,15,-21,15,-6r0,21r-143,0r0,-22r88,-82v22,-24,38,-28,40,-59v4,-55,-96,-64,-106,-9v-1,9,-15,9,-15,0v0,-29,34,-54,68,-54"},"3":{"d":"108,-226v64,0,87,87,30,106v24,9,41,31,42,58v1,37,-35,69,-75,67v-25,-1,-64,-11,-71,-30v0,-4,3,-7,7,-7v21,10,41,23,64,23v29,0,61,-25,60,-52v0,-33,-32,-52,-65,-53v-6,0,-10,-2,-10,-8v0,-9,13,-7,22,-7v23,1,45,-18,45,-40v0,-24,-23,-42,-49,-42v-27,0,-41,15,-56,25v-4,0,-7,-3,-7,-7v4,-17,39,-33,63,-33"},"4":{"d":"98,-7v0,-14,25,-6,38,-8r0,-47r-98,0r0,-17r82,-142r30,0r0,145v9,1,23,-3,23,7v0,10,-14,6,-23,7r0,47v10,0,24,-3,23,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7xm136,-76r0,-130r-8,0r-75,130r83,0"},"5":{"d":"165,-213v0,5,-3,7,-9,7r-89,0r0,73v49,-28,113,-1,113,60v0,44,-32,79,-74,78v-30,-1,-60,-14,-72,-35v1,-4,3,-6,7,-7v21,12,41,29,65,28v35,-2,59,-28,59,-65v0,-33,-21,-55,-51,-56v-18,-1,-36,10,-54,15v-5,0,-8,-2,-7,-8r0,-98r103,0v6,1,9,3,9,8"},"6":{"d":"177,-206v-63,-21,-124,42,-113,113v15,-22,30,-39,60,-40v33,-1,62,33,61,68v0,35,-25,72,-63,70v-55,-3,-74,-57,-74,-115v0,-67,41,-109,107,-116v15,-2,41,12,22,20xm170,-65v0,-42,-47,-72,-79,-39v-7,6,-15,18,-24,35v6,35,22,60,55,60v28,0,48,-26,48,-56"},"7":{"d":"113,-7v-1,10,-15,9,-15,0r60,-192r0,-7r-106,0v0,10,3,24,-8,23v-13,-1,-5,-25,-7,-38r136,0r0,24"},"8":{"d":"108,-226v63,0,88,90,30,112v22,9,37,29,38,55v0,34,-32,64,-68,64v-67,0,-92,-98,-30,-119v-57,-22,-34,-112,30,-112xm108,-122v26,0,49,-20,49,-43v0,-26,-23,-46,-49,-46v-26,0,-49,21,-49,46v0,23,23,43,49,43xm108,-9v28,0,53,-23,53,-50v1,-26,-25,-48,-53,-48v-28,0,-53,22,-53,48v0,26,25,50,53,50"},"9":{"d":"56,-15v63,22,123,-35,113,-110v-14,21,-31,41,-60,41v-36,0,-60,-33,-61,-70v-1,-35,25,-74,62,-72v56,4,73,58,74,119v1,70,-42,105,-105,112v-16,2,-41,-11,-23,-20xm63,-155v0,50,59,75,86,34v4,-5,10,-14,17,-28v-10,-38,-20,-60,-56,-62v-27,-1,-47,26,-47,56"},":":{"d":"81,-128v0,-15,13,-26,30,-24v13,-1,25,12,24,24v0,15,-13,26,-30,24v-13,1,-25,-12,-24,-24xm81,-18v-1,-15,12,-24,30,-24v13,0,24,10,24,23v0,15,-13,24,-30,24v-13,0,-24,-10,-24,-23"},";":{"d":"81,-128v0,-15,13,-26,30,-24v13,-1,25,12,24,24v0,15,-13,26,-30,24v-13,1,-25,-12,-24,-24xm76,28v-4,16,-24,10,-20,-5r23,-76r47,0"},"\u037e":{"d":"81,-128v0,-15,13,-26,30,-24v13,-1,25,12,24,24v0,15,-13,26,-30,24v-13,1,-25,-12,-24,-24xm76,28v-4,16,-24,10,-20,-5r23,-76r47,0"},"<":{"d":"184,-27v9,4,7,15,-2,16r-165,-91r166,-92v8,2,9,11,1,16r-137,76"},"=":{"d":"198,-130v0,5,-3,8,-9,8r-161,0v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7r161,0v6,0,9,2,9,7xm198,-77v0,5,-3,8,-9,8r-161,0v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7r161,0v6,0,9,2,9,7"},">":{"d":"32,-178v-9,-4,-7,-15,2,-16r165,92r-166,91v-8,-2,-9,-11,-1,-16r137,-75"},"?":{"d":"176,-149v0,38,-22,40,-60,59v-1,9,3,24,-7,24v-13,0,-6,-22,-8,-34v35,-16,58,-17,61,-49v4,-46,-64,-59,-99,-35v-1,10,3,25,-7,25v-13,0,-6,-22,-8,-34v51,-34,128,-20,128,44xm83,-13v0,-16,15,-20,33,-18v9,-1,18,8,18,18v0,16,-15,20,-33,18v-9,1,-18,-8,-18,-18"},"@":{"d":"166,-68v8,0,9,11,3,14v-37,5,-83,-5,-82,-45v1,-32,28,-54,64,-53v4,-36,-11,-61,-42,-61v-60,0,-56,74,-56,140v0,41,19,81,58,81v22,0,32,-8,45,-15v4,0,7,3,7,7v-5,16,-31,24,-54,23v-70,-3,-71,-78,-71,-155v0,-48,25,-95,70,-96v72,-2,57,89,58,160xm151,-137v-51,-9,-69,70,-13,69r13,-2r0,-67"},"A":{"d":"139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0"},"B":{"d":"15,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r93,0v56,-5,88,72,33,97v26,10,45,24,45,53v0,73,-99,54,-171,56v-6,0,-9,-2,-10,-7xm165,-154v0,-41,-58,-39,-105,-37r0,77v49,1,105,5,105,-40xm181,-56v0,-49,-66,-44,-121,-43r0,84v53,0,121,10,121,-41"},"C":{"d":"22,-89v-14,-99,83,-156,151,-96v-5,-17,12,-30,15,-11v-3,17,7,48,-8,51v-14,-7,-7,-25,-23,-35v-60,-39,-134,5,-120,89v-2,43,38,82,80,82v35,0,49,-21,69,-37v4,0,7,3,7,7v-12,25,-42,45,-76,45v-57,0,-87,-41,-95,-95"},"D":{"d":"28,-7v-1,-10,12,-8,22,-8r0,-176v-9,0,-23,2,-22,-7v0,-6,4,-8,10,-8r79,0v59,6,87,46,84,113v-1,51,-33,93,-84,93r-79,0v-6,0,-10,-1,-10,-7xm186,-89v6,-80,-37,-111,-121,-102r0,176v70,8,117,-15,121,-74"},"E":{"d":"120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10"},"F":{"d":"133,-73v-11,1,-7,-16,-8,-26r-53,0r0,84r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-85,0v-6,0,-10,-1,-10,-7v-1,-12,19,-7,30,-8r0,-176v-11,-1,-30,4,-30,-7v1,-4,3,-8,10,-8r162,0r0,51v0,6,-1,10,-7,10v-15,-3,-6,-31,-8,-46r-113,0r0,77r53,0v0,-11,-3,-27,8,-27v14,7,4,40,7,58v0,6,-1,10,-7,10"},"G":{"d":"194,-91v10,-2,12,12,5,14v-1,0,-5,1,-11,1r0,63v-65,40,-173,13,-166,-76v-15,-96,78,-152,151,-102v-3,-17,15,-19,15,-5v0,14,6,40,-7,43v-5,0,-7,-3,-7,-9v-2,-21,-36,-34,-60,-34v-55,1,-77,44,-77,107v0,70,80,99,136,67r0,-54r-50,0v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7r71,0"},"H":{"d":"128,-7v0,-12,18,-7,30,-8r0,-84r-98,0r0,84v11,1,31,-4,30,8v0,6,-4,7,-10,7r-51,0v-6,0,-10,-1,-10,-7v-1,-11,16,-7,26,-8r0,-176v-16,5,-28,-13,-9,-15v17,3,50,-8,54,8v0,11,-19,6,-30,7r0,77r98,0r0,-77v-11,-1,-29,3,-30,-7v4,-16,36,-8,54,-8v6,0,10,2,10,8v1,8,-11,7,-19,7r0,176v11,0,27,-3,27,8v-8,15,-43,4,-62,7v-6,0,-9,-2,-10,-7"},"I":{"d":"176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8"},"J":{"d":"211,-198v-4,13,-30,5,-45,7r0,131v0,35,-32,68,-68,66v-31,-1,-47,-14,-68,-33r0,-54v0,-6,1,-10,7,-10v17,4,4,39,8,57v28,37,105,31,106,-26r0,-131r-58,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r108,0v7,0,9,3,10,8"},"K":{"d":"207,-7v-2,13,-26,5,-39,7v-26,-66,-29,-87,-78,-107r-30,26r0,66v13,2,37,-6,37,8v0,6,-4,7,-10,7r-62,0v-6,0,-9,-2,-9,-7v-1,-12,18,-7,29,-8r0,-176v-11,-1,-29,4,-29,-7v0,-5,3,-8,9,-8r62,0v6,0,10,2,10,8v-1,12,-25,5,-37,7r0,91r102,-91v-10,-1,-27,3,-26,-7v2,-16,36,-5,53,-8v6,0,10,2,10,8v1,7,-8,7,-16,7r-81,73v48,22,52,45,76,103v11,1,30,-4,29,8"},"L":{"d":"127,-198v-3,14,-31,4,-45,7r0,176r99,0r0,-58v0,-6,1,-10,7,-10v6,1,7,3,7,10r0,73r-163,0v-6,0,-9,-2,-10,-7v3,-15,31,-6,46,-8r0,-176v-15,-2,-42,6,-46,-7v0,-5,4,-8,10,-8r86,0v6,0,9,2,9,8"},"M":{"d":"139,-7v1,-13,25,-6,38,-8r0,-176r-4,0r-55,129r-17,0r-57,-129r-3,0r0,176v13,2,37,-6,37,8v0,5,-3,7,-9,7v-21,0,-56,8,-65,-7v0,-10,13,-8,23,-8r0,-176v-17,5,-29,-15,-10,-15r36,0r56,128r55,-128v16,2,44,-7,47,8v0,8,-11,7,-20,7r0,176v10,0,23,-2,23,8v-8,15,-45,4,-65,7v-6,0,-9,-2,-10,-7"},"N":{"d":"203,-198v0,9,-13,7,-23,7r0,191r-19,0r-108,-184r0,169v13,2,37,-6,37,8v0,6,-4,7,-10,7v-21,0,-56,8,-65,-7v0,-10,13,-8,23,-8r0,-176v-11,-1,-30,4,-30,-7v0,-16,33,-5,49,-8r109,185r0,-170v-13,-2,-36,5,-38,-7v7,-17,44,-8,65,-8v7,0,9,3,10,8"},"O":{"d":"108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93"},"P":{"d":"196,-146v-2,57,-57,65,-120,62r0,69r51,0v6,0,9,2,9,8v0,5,-3,7,-9,7r-86,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r86,0v37,-1,70,26,69,60xm181,-146v0,-44,-54,-49,-105,-45r0,92v51,3,105,0,105,-47"},"Q":{"d":"90,21v39,-13,72,20,101,-5v4,0,7,3,7,7v-12,28,-56,15,-83,10v-21,-4,-53,19,-62,1v7,-14,26,-20,37,-30v-40,-10,-72,-54,-72,-106v0,-58,38,-108,90,-108v51,0,90,51,90,108v0,57,-39,107,-88,108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93"},"R":{"d":"184,0v-31,-52,-37,-69,-77,-92r-47,0r0,77v13,2,37,-6,37,8v0,6,-4,7,-10,7r-62,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r90,0v32,-1,66,27,65,57v-1,30,-22,43,-51,53v32,24,35,35,63,81v9,0,21,-2,21,8v0,11,-19,6,-29,7xm165,-149v0,-41,-55,-46,-105,-42r0,84v49,2,105,-1,105,-42"},"S":{"d":"40,-154v0,-54,83,-74,121,-37v-4,-16,15,-21,15,-5v0,16,7,45,-8,48v-14,-6,-5,-28,-22,-36v-38,-37,-130,18,-76,58v36,27,114,8,114,71v0,62,-100,81,-137,37v5,16,-14,26,-14,8v0,-17,-7,-46,7,-51v5,0,7,3,7,9v2,56,124,59,122,-4v-3,-67,-129,-22,-129,-98"},"T":{"d":"183,-130v-6,0,-7,-4,-7,-10r0,-51r-61,0r0,176v16,3,45,-7,48,8v0,5,-3,7,-9,7r-92,0v-6,0,-10,-1,-10,-7v2,-16,33,-5,48,-8r0,-176r-60,0r0,51v0,6,-1,10,-7,10v-6,0,-8,-4,-8,-10r0,-66r166,0r0,66v0,6,-2,10,-8,10"},"U":{"d":"202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8"},"V":{"d":"209,-205v7,4,5,14,-6,14r-11,0r-73,191r-21,0r-74,-191v-13,3,-28,-4,-17,-14v18,-3,41,0,61,-1v7,-1,8,4,10,8v-3,12,-25,5,-39,7r70,176r68,-176v-15,0,-48,4,-34,-14v19,-2,46,-2,66,0"},"W":{"d":"209,-198v1,7,-8,7,-16,7r-20,191r-23,0r-42,-146r-41,146r-23,0r-22,-191v-15,5,-21,-15,-6,-15r55,0v6,0,10,2,10,8v-2,14,-30,4,-44,7r19,174r40,-143r23,0r41,143r19,-174v-15,-2,-41,6,-45,-7v7,-17,44,-8,65,-8v6,0,10,2,10,8"},"X":{"d":"198,-198v1,7,-7,7,-15,7r-66,86r70,90v15,-5,22,15,6,15v-19,0,-51,7,-58,-7v1,-13,22,-7,34,-8r-61,-78r-61,78v12,2,34,-5,34,8v-6,15,-39,4,-57,7v-11,2,-13,-13,-5,-14v1,0,4,-1,10,-1r70,-90r-66,-86v-16,4,-22,-15,-6,-15v17,0,48,-7,50,8v1,10,-16,6,-26,7r57,74r56,-74v-10,-1,-27,3,-26,-7v2,-16,34,-5,50,-8v6,0,10,2,10,8"},"Y":{"d":"198,-198v1,8,-10,7,-18,7r-64,98r0,78v16,3,46,-7,48,8v0,6,-4,7,-10,7r-91,0v-6,0,-10,-1,-10,-7v2,-16,33,-5,48,-8r0,-78r-65,-98v-17,5,-27,-13,-9,-15v17,3,47,-7,51,8v-1,9,-15,7,-25,7r55,83r54,-83v-10,-1,-25,3,-24,-7v2,-16,34,-5,50,-8v6,0,10,2,10,8"},"Z":{"d":"172,-76v6,0,8,4,8,10r0,66r-143,0r0,-21r120,-170r-98,0v-3,17,7,48,-7,54v-5,0,-8,-4,-8,-10r0,-59r128,0r0,21r-120,170r113,0r0,-51v0,-6,1,-10,7,-10"},"[":{"d":"161,-213v-3,14,-31,4,-46,7r0,237v15,2,43,-6,46,7v1,6,-4,8,-10,8r-50,0r0,-267v20,3,54,-8,60,8"},"\\":{"d":"42,-230v-4,-6,-2,-13,5,-13v3,0,6,2,8,6r121,261v-2,9,-12,9,-16,0"},"]":{"d":"56,38v3,-14,31,-4,45,-7r0,-237v-15,-2,-42,6,-45,-7v6,-16,41,-5,60,-8r0,267r-51,0v-6,0,-9,-2,-9,-8"},"^":{"d":"55,-134v-4,8,-14,5,-15,-3v20,-32,46,-58,68,-88r68,88v-1,8,-10,10,-15,3r-53,-68"},"_":{"d":"216,91v-1,6,-2,8,-10,8r-196,0v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7r196,0v7,0,9,1,10,7"},"`":{"d":"82,-219v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"a":{"d":"195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32"},"b":{"d":"8,-213v0,-14,29,-6,44,-8r0,98v42,-65,143,-30,143,47v0,76,-102,113,-143,47r0,29v-14,-2,-42,6,-44,-7v-2,-12,19,-7,30,-8r0,-191v-11,-1,-30,4,-30,-7xm117,-9v34,0,64,-32,64,-67v0,-35,-31,-67,-64,-67v-33,0,-64,31,-64,67v0,36,30,67,64,67"},"c":{"d":"30,-75v0,-71,90,-109,140,-62v-4,-16,15,-20,15,-5v0,15,6,41,-8,43v-13,-7,-7,-21,-24,-32v-45,-29,-108,1,-108,56v0,38,29,66,67,66v32,0,54,-16,74,-30v4,0,7,3,7,7v-8,20,-52,38,-81,38v-47,0,-82,-35,-82,-81"},"d":{"d":"136,-213v0,-14,29,-6,44,-8r0,206v11,1,32,-4,30,8v-2,14,-31,4,-45,7r0,-29v-41,65,-143,30,-143,-47v0,-77,102,-112,143,-46r0,-84v-11,-1,-29,4,-29,-7xm101,-9v34,0,64,-31,64,-67v0,-36,-31,-67,-64,-67v-34,0,-64,31,-64,67v0,36,29,67,64,67"},"e":{"d":"22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0"},"f":{"d":"177,-145v0,6,-4,8,-10,8r-69,0r0,122r65,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-115,0v-6,0,-10,-1,-10,-7v1,-15,30,-5,45,-8r0,-122v-14,-2,-40,6,-42,-8v3,-13,28,-5,42,-7v-5,-44,17,-69,56,-69v17,0,51,-2,57,13v-7,16,-44,-3,-57,2v-31,0,-45,19,-41,54r69,0v6,0,10,1,10,7"},"g":{"d":"22,-81v0,-70,98,-107,136,-44r0,-27v14,2,42,-6,44,7v2,12,-19,7,-30,8v-6,82,28,205,-60,205v-17,0,-48,7,-51,-8v4,-14,36,-6,52,-7v42,-3,49,-41,45,-89v-39,62,-136,26,-136,-45xm97,-19v33,0,61,-29,61,-62v0,-33,-28,-62,-61,-62v-33,0,-60,29,-60,62v0,33,27,62,60,62"},"h":{"d":"15,-213v0,-14,29,-6,44,-8r0,91v26,-41,114,-36,114,24r0,91v10,1,27,-3,26,8v-6,15,-40,4,-58,7v-6,0,-9,-2,-10,-7v0,-11,16,-8,27,-8v-3,-55,17,-132,-44,-128v-31,2,-32,13,-55,35r0,93v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7v-1,-12,16,-7,27,-8r0,-191v-11,-1,-30,4,-30,-7"},"i":{"d":"115,-228r0,38r-21,0r0,-38r21,0xm48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-6,0,-9,-2,-10,-7v8,-17,47,-4,68,-8r0,-122v-17,-3,-49,8,-53,-8"},"j":{"d":"129,-228r0,38r-22,0r0,-38r22,0xm41,53v46,3,89,0,89,-43r0,-147r-88,0v-6,0,-9,-2,-9,-8v1,-5,2,-7,9,-7r103,0r0,162v1,54,-46,62,-104,58v-6,0,-9,-2,-9,-8v0,-5,3,-7,9,-7"},"k":{"d":"138,-7v-1,-9,11,-8,20,-8r-63,-65r-17,14r0,66v-14,-2,-42,6,-44,-7v-2,-12,18,-7,29,-8r0,-191v-11,-1,-29,4,-29,-7v0,-15,29,-6,44,-8r0,136r63,-52v-16,5,-26,-14,-8,-15v19,3,51,-7,58,7v0,11,-17,7,-28,8r-57,48r73,74v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7"},"l":{"d":"48,-213v7,-17,46,-4,67,-8r0,206r58,0v7,0,11,2,11,8v0,5,-5,7,-11,7r-130,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r58,0r0,-191v-17,-3,-47,7,-53,-7"},"m":{"d":"4,-145v1,-12,25,-5,37,-7r0,15v22,-28,59,-27,72,4v11,-13,22,-25,40,-25v58,0,33,87,38,143v10,0,24,-2,23,8v-1,12,-25,5,-38,7r0,-117v-4,-40,-48,-25,-60,4r0,98v10,0,24,-2,23,8v-1,12,-25,5,-38,7r0,-115v1,-14,-10,-27,-22,-28v-19,4,-26,13,-38,30r0,98v10,0,24,-2,22,8v-3,14,-33,4,-49,7v-6,0,-10,-1,-10,-7v-1,-10,12,-8,22,-8r0,-122v-10,0,-23,2,-22,-8"},"n":{"d":"23,-145v1,-12,25,-5,37,-7r0,22v27,-41,113,-36,113,22r0,93v10,0,24,-2,22,8v-3,14,-33,4,-49,7v-6,0,-10,-1,-10,-7v-1,-10,12,-8,22,-8v-3,-54,17,-131,-42,-128v-32,2,-34,12,-56,36r0,92v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7v-1,-12,16,-7,27,-8r0,-122v-10,0,-24,3,-23,-8"},"o":{"d":"108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67"},"p":{"d":"8,-145v2,-14,30,-4,44,-7r0,27v36,-57,143,-33,143,44v0,74,-103,105,-143,45r0,89v15,2,43,-6,46,7v1,6,-4,8,-10,8r-70,0v-6,0,-10,-2,-10,-8v0,-11,19,-6,30,-7r0,-190v-11,-1,-32,4,-30,-8xm117,-19v35,0,63,-28,63,-62v0,-34,-29,-62,-63,-62v-34,0,-65,28,-65,62v0,34,30,62,65,62"},"q":{"d":"22,-81v0,-72,104,-106,143,-44r0,-27v15,2,43,-7,45,7v2,12,-19,7,-30,8r0,190v11,1,30,-4,30,7v0,6,-4,8,-10,8r-70,0v-6,0,-10,-2,-10,-8v3,-14,31,-4,45,-7r0,-89v-40,60,-143,28,-143,-45xm101,-19v35,0,64,-28,64,-62v0,-34,-30,-62,-64,-62v-34,0,-64,29,-64,62v0,33,29,62,64,62"},"r":{"d":"38,-145v5,-14,35,-4,52,-7r0,37v29,-24,38,-36,70,-41v14,-2,51,22,28,30v-11,-2,-14,-18,-27,-15v-31,6,-38,18,-71,45r0,81r66,0v7,0,9,3,10,8v-1,5,-4,7,-10,7r-116,0v-6,0,-11,-2,-10,-7v3,-14,31,-4,46,-7r0,-123v-13,-2,-37,5,-38,-8"},"s":{"d":"44,-116v1,-45,82,-53,113,-27v0,-5,2,-10,7,-9v13,0,6,23,8,35v0,6,-2,11,-8,10v-12,-2,-5,-21,-18,-26v-28,-26,-119,1,-75,35v40,13,109,5,109,56v-1,52,-94,62,-129,30v-1,8,0,11,-7,12v-14,0,-8,-26,-8,-40v0,-6,2,-10,8,-10v5,0,7,3,7,8v4,47,112,42,114,0v-7,-53,-122,-14,-121,-74"},"t":{"d":"70,-206v16,4,5,37,8,54r80,0v6,0,9,2,10,7v0,5,-4,8,-10,8r-80,0v5,51,-21,128,40,128v23,0,51,-9,65,-17v5,0,7,3,7,8v-24,30,-127,40,-127,-21r0,-98v-13,-2,-37,6,-37,-8v0,-13,25,-5,37,-7v3,-17,-7,-48,7,-54"},"u":{"d":"196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8"},"v":{"d":"206,-145v0,10,-14,8,-25,8r-60,137r-25,0r-61,-137v-17,5,-37,-10,-15,-15r56,0v6,0,9,2,9,7v0,13,-22,6,-34,8r54,122r7,0r53,-122v-17,4,-51,-5,-25,-15v21,3,57,-8,66,7"},"w":{"d":"206,-145v1,8,-8,8,-17,8r-30,137r-18,0r-33,-95r-32,95r-19,0r-30,-137v-16,5,-25,-15,-7,-15v16,0,46,-7,50,7v1,12,-18,7,-29,8r27,117r31,-94r18,0r32,94r25,-117v-11,-1,-30,4,-28,-8v3,-14,34,-4,50,-7v6,0,10,1,10,7"},"x":{"d":"141,-152v17,1,62,-5,45,14v-1,0,-4,1,-8,1r-60,57r68,65v15,-2,17,15,3,15r-48,0v-6,0,-10,-1,-10,-7v0,-13,23,-6,35,-8r-58,-55r-57,55v12,2,34,-5,34,8v-6,15,-39,4,-57,7v-11,2,-13,-11,-6,-14v1,0,4,-1,8,-1r68,-65r-60,-57v-9,0,-11,-1,-12,-8v4,-14,34,-4,50,-7v7,0,9,1,10,7v1,12,-17,7,-28,8r50,48r50,-48v-11,-1,-28,4,-27,-8v0,-6,4,-7,10,-7"},"y":{"d":"27,60v6,-15,38,-4,56,-7r26,-53r-69,-137v-8,0,-16,-1,-14,-8v3,-15,34,-4,50,-7v6,0,10,1,10,7v1,12,-18,7,-29,8r60,121r59,-121v-16,4,-43,-6,-20,-15v17,1,63,-6,46,14v-1,0,-5,1,-10,1r-93,190v17,-4,48,6,23,15r-85,0v-6,0,-10,-2,-10,-8"},"z":{"d":"53,-107v-15,-2,-6,-30,-8,-45r128,0r0,13r-111,124r100,0v1,-11,-4,-30,7,-30v15,0,5,30,8,45r-135,0r0,-13r110,-124r-92,0v-1,11,3,29,-7,30"},"{":{"d":"136,-206v-48,15,3,105,-37,118v38,15,-10,106,37,119v7,0,9,2,9,7v1,5,-4,8,-9,8v-44,-1,-34,-57,-35,-102v0,-12,-10,-23,-21,-24v-6,0,-9,-2,-9,-8v0,-5,3,-7,9,-7v49,-8,-11,-126,56,-126v4,1,9,3,9,8v0,5,-3,7,-9,7"},"|":{"d":"108,-221v5,1,7,4,7,10r0,247v0,6,-2,9,-7,10v-5,-1,-7,-4,-7,-10r0,-247v0,-6,2,-9,7,-10"},"}":{"d":"81,31v46,-17,-3,-105,36,-119v-38,-14,9,-104,-36,-118v-7,0,-10,-2,-10,-7v0,-5,4,-7,9,-8v44,1,34,57,35,102v0,12,10,23,21,24v6,0,9,2,9,7v0,5,-3,7,-9,8v-49,7,11,126,-56,126v-6,0,-9,-2,-9,-8v1,-6,3,-7,10,-7"},"~":{"d":"139,-91v12,4,25,-22,37,-26v4,0,7,3,7,7v0,9,-30,37,-43,34v-27,1,-39,-34,-64,-38v-16,-2,-23,21,-36,26v-4,0,-7,-3,-7,-7v8,-18,23,-33,43,-34v28,-2,42,38,63,38"},"\u00c4":{"d":"139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0xm54,-263v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm130,-263v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00c5":{"d":"99,-282v18,0,32,15,32,32v0,17,-15,31,-32,31v-18,0,-32,-13,-32,-31v-1,-18,14,-33,32,-32xm99,-230v11,0,21,-9,21,-20v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,11,10,20,21,20xm139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0"},"\u00c7":{"d":"22,-89v-14,-99,83,-156,151,-96v-5,-17,12,-30,15,-11v-3,17,7,48,-8,51v-14,-7,-7,-25,-23,-35v-60,-39,-134,5,-120,89v-2,43,38,82,80,82v35,0,49,-21,69,-37v4,0,7,3,7,7v-12,25,-42,45,-76,45v-57,0,-87,-41,-95,-95xm125,38v-1,-8,-11,-10,-21,-9v2,-11,-5,-31,5,-34v10,0,5,15,6,24v12,1,20,8,20,19v0,28,-48,25,-56,7v8,-14,39,19,46,-7"},"\u00c9":{"d":"120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10xm125,-277v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00d1":{"d":"131,-238v5,4,27,-26,33,-7v-5,13,-18,19,-33,22v-10,2,-34,-20,-46,-22v-9,-4,-27,28,-33,8v1,-9,24,-24,33,-22v16,-2,32,21,46,21xm203,-198v0,9,-13,7,-23,7r0,191r-19,0r-108,-184r0,169v13,2,37,-6,37,8v0,6,-4,7,-10,7v-21,0,-56,8,-65,-7v0,-10,13,-8,23,-8r0,-176v-11,-1,-30,4,-30,-7v0,-16,33,-5,49,-8r109,185r0,-170v-13,-2,-36,5,-38,-7v7,-17,44,-8,65,-8v7,0,9,3,10,8"},"\u00d6":{"d":"108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93xm70,-263v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm146,-263v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00dc":{"d":"202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8xm70,-263v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm146,-263v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00e1":{"d":"195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32xm124,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00e0":{"d":"195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32xm82,-219v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00e2":{"d":"69,-182v-6,6,-13,3,-13,-5v12,-19,36,-28,52,-43r52,40v2,8,-5,14,-13,8r-39,-30xm195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32"},"\u00e4":{"d":"195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32xm62,-216v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm138,-216v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00e3":{"d":"131,-191v5,4,28,-26,33,-7v-5,13,-18,19,-33,22v-10,2,-33,-20,-46,-21v-9,-4,-27,26,-33,7v1,-9,24,-24,33,-22v16,-2,32,21,46,21xm195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32"},"\u00e5":{"d":"108,-240v18,0,32,15,32,32v0,17,-15,31,-32,31v-18,0,-32,-13,-32,-31v-1,-18,14,-33,32,-32xm108,-188v11,0,21,-9,21,-20v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,11,10,20,21,20xm195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32"},"\u00e7":{"d":"30,-75v0,-71,90,-109,140,-62v-4,-16,15,-20,15,-5v0,15,6,41,-8,43v-13,-7,-7,-21,-24,-32v-45,-29,-108,1,-108,56v0,38,29,66,67,66v32,0,54,-16,74,-30v4,0,7,3,7,7v-8,20,-52,38,-81,38v-47,0,-82,-35,-82,-81xm124,38v-1,-8,-11,-10,-21,-9v2,-11,-5,-31,5,-34v10,0,5,15,6,24v12,1,20,8,20,19v0,28,-48,25,-56,7v8,-14,39,19,46,-7"},"\u00e9":{"d":"22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0xm124,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00e8":{"d":"22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0xm82,-219v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00ea":{"d":"69,-182v-6,6,-13,3,-13,-5v12,-19,36,-28,52,-43r52,40v2,8,-5,14,-13,8r-39,-30xm22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0"},"\u00eb":{"d":"22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0xm71,-216v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm147,-216v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00ed":{"d":"48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-7,0,-9,-3,-10,-8v9,-15,47,-3,68,-7r0,-122v-17,-3,-49,7,-53,-8xm109,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00ec":{"d":"48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-7,0,-9,-3,-10,-8v9,-15,47,-3,68,-7r0,-122v-17,-3,-49,7,-53,-8xm69,-217v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00ee":{"d":"54,-182v-6,6,-13,3,-13,-5v13,-18,36,-28,52,-43v17,15,38,26,53,43v0,8,-8,10,-14,5r-39,-30xm48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-7,0,-9,-3,-10,-8v9,-15,47,-3,68,-7r0,-122v-17,-3,-49,7,-53,-8"},"\u00ef":{"d":"48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-7,0,-9,-3,-10,-8v9,-15,47,-3,68,-7r0,-122v-17,-3,-49,7,-53,-8xm55,-216v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm131,-216v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00f1":{"d":"131,-191v5,4,28,-26,33,-7v-5,13,-18,19,-33,22v-10,2,-33,-20,-46,-21v-9,-4,-27,26,-33,7v1,-9,24,-24,33,-22v16,-2,32,21,46,21xm23,-145v1,-12,25,-5,37,-7r0,22v27,-41,113,-36,113,22r0,93v10,0,24,-2,22,8v-3,14,-33,4,-49,7v-6,0,-10,-1,-10,-7v-1,-10,12,-8,22,-8v-3,-54,17,-131,-42,-128v-32,2,-34,12,-56,36r0,92v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7v-1,-12,16,-7,27,-8r0,-122v-10,0,-24,3,-23,-8"},"\u00f3":{"d":"108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67xm124,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00f2":{"d":"108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67xm82,-219v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00f4":{"d":"69,-182v-6,6,-13,3,-13,-5v12,-19,36,-28,52,-43r52,40v2,8,-5,14,-13,8r-39,-30xm108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67"},"\u00f6":{"d":"108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67xm70,-216v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm146,-216v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00f5":{"d":"131,-191v5,4,28,-26,33,-7v-5,13,-18,19,-33,22v-10,2,-33,-20,-46,-21v-9,-4,-27,26,-33,7v1,-9,24,-24,33,-22v16,-2,32,21,46,21xm108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67"},"\u00fa":{"d":"196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8xm124,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00f9":{"d":"196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8xm82,-219v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00fb":{"d":"69,-182v-6,6,-13,3,-13,-5v13,-18,36,-28,52,-43v17,15,38,26,53,43v-1,7,-7,10,-14,5r-39,-30xm196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8"},"\u00fc":{"d":"196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8xm64,-216v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm140,-216v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00b0":{"d":"108,-165v-25,-1,-49,-21,-49,-48v0,-26,23,-49,49,-49v28,0,49,22,49,49v0,25,-24,49,-49,48xm108,-243v-15,0,-30,15,-30,30v0,15,14,29,30,29v16,0,30,-14,30,-29v0,-15,-15,-30,-30,-30"},"\u00a2":{"d":"40,-114v1,-37,24,-60,60,-67v3,-17,-8,-50,8,-54v15,4,4,36,7,53v15,0,27,6,38,14v2,-10,16,-7,15,3v3,16,-5,47,-15,23v-18,-47,-98,-23,-98,28v0,57,75,67,107,35v5,0,8,2,7,8v-7,15,-35,24,-54,25v-2,15,6,42,-7,46v-15,-2,-5,-31,-8,-46v-32,-3,-60,-33,-60,-68"},"\u00a3":{"d":"84,-100v6,34,-2,66,-19,85r92,0v17,2,11,-24,24,-27v5,0,7,3,7,8v-3,57,-94,34,-148,34v-6,0,-10,-1,-10,-7v1,-5,3,-7,8,-8v29,-6,38,-51,32,-85v-16,-2,-44,7,-48,-7v2,-14,30,-4,44,-7v-23,-51,-5,-92,42,-97v18,-2,46,18,47,30v-11,20,-28,-21,-47,-15v-37,11,-48,34,-27,82v15,2,42,-6,46,7v-2,13,-29,5,-43,7"},"\u00a7":{"d":"65,-159v-18,-29,7,-61,37,-62r73,0v-2,15,6,40,-5,46v-10,-3,-3,-24,-5,-35v-48,-5,-118,1,-89,48v17,29,115,49,115,94v0,19,-17,31,-40,29v17,29,-5,62,-39,62r-71,0v2,-15,-6,-40,5,-46v11,3,4,23,6,35v48,4,119,-2,88,-48v-21,-31,-115,-49,-115,-95v0,-17,19,-28,40,-28xm143,-48v23,-2,49,-11,31,-34v-20,-23,-78,-45,-101,-67v-30,-4,-50,18,-27,37v18,16,80,46,97,64"},"\u00b6":{"d":"187,-215v-1,10,-20,3,-30,5r0,222v13,-2,43,2,23,11v-13,-2,-48,6,-38,-10v1,0,3,-1,5,-1r0,-222r-31,0r0,222v4,1,8,2,7,5v-6,13,-39,3,-56,6v-3,0,-6,-2,-7,-5v5,-12,31,-3,45,-6r0,-111v-42,-5,-80,-17,-75,-69v6,-59,83,-53,150,-53v5,0,6,2,7,6xm105,-210v-53,-4,-74,68,-30,91v9,5,18,8,30,9r0,-100"},"\u00df":{"d":"102,-45v15,6,6,36,31,36v20,0,33,-27,33,-49v-2,-41,-25,-60,-65,-64v-13,2,-15,-15,-3,-15v20,-1,37,-11,38,-31v2,-44,-75,-51,-76,-6r0,159v16,-4,22,15,6,15v-16,0,-46,7,-50,-7v-1,-12,18,-7,29,-8r0,-159v0,-25,24,-47,52,-47v46,0,75,65,32,90v31,13,50,33,52,72v2,36,-18,64,-48,65v-23,0,-38,-20,-38,-43v0,-6,2,-7,7,-8"},"\u00ae":{"d":"107,-210v58,0,108,48,108,107v0,59,-50,108,-108,108v-58,0,-107,-50,-107,-108v0,-58,49,-107,107,-107xm107,-7v51,0,96,-45,96,-96v0,-51,-45,-95,-96,-95v-50,0,-95,45,-95,95v0,51,44,96,95,96xm151,-44v-17,-29,-20,-40,-43,-53r-27,0r0,44v9,-2,30,1,16,9v-13,-1,-31,2,-41,-2v-3,-9,10,-7,17,-7r0,-100v-7,2,-26,-2,-12,-8v40,-2,88,-4,88,32v0,17,-12,24,-29,30v19,13,20,20,36,46v8,-2,18,6,6,9r-11,0xm141,-129v0,-23,-32,-27,-60,-24r0,48v28,2,60,-2,60,-24"},"\u00a9":{"d":"107,-210v58,0,108,48,108,107v0,59,-50,108,-108,108v-58,0,-107,-50,-107,-108v0,-58,49,-107,107,-107xm107,-7v51,0,96,-45,96,-96v0,-51,-45,-95,-96,-95v-50,0,-95,45,-95,95v0,51,44,96,95,96xm57,-97v-8,-55,47,-89,85,-55v0,-5,0,-11,5,-11v7,1,7,30,0,34v-3,0,-5,-2,-5,-5v-14,-44,-82,-19,-76,22v-10,57,55,78,84,40v1,0,4,1,4,3v-1,10,-27,28,-43,26v-30,-4,-49,-21,-54,-54"},"\u00b4":{"d":"124,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00a8":{"d":"70,-216v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm146,-216v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00c6":{"d":"79,-7v-1,-12,18,-7,29,-8r0,-54r-52,0r-15,54v16,-5,30,13,10,15v-16,-2,-45,7,-48,-7v-2,-11,14,-8,24,-8r48,-176v-12,-1,-32,5,-33,-7v1,-6,2,-8,10,-8r154,0r0,56v0,7,-3,9,-8,10v-14,-5,-4,-35,-7,-51r-68,0r0,77r28,0v-5,-16,13,-30,15,-10v-2,14,6,41,-7,44v-9,1,-8,-11,-8,-20r-28,0r0,85r75,0v2,-15,-6,-38,7,-44v17,5,4,40,8,59r-124,0v-6,0,-10,-1,-10,-7xm108,-83r0,-108r-18,0r-30,108r48,0"},"\u00d8":{"d":"175,-176v51,64,13,183,-67,182v-22,0,-40,-8,-57,-24v-10,11,-17,25,-29,33v-8,0,-10,-8,-5,-14r24,-31v-51,-63,-13,-182,67,-180v21,0,41,7,57,23v11,-10,16,-26,30,-33v7,1,9,8,4,14xm155,-175v-51,-53,-122,5,-122,73v0,22,6,42,18,60xm60,-30v50,53,123,-3,123,-72v0,-23,-6,-43,-18,-61"},"\u00b1":{"d":"191,-126v-1,5,-4,7,-10,7r-66,0r0,74v0,6,-1,10,-7,10v-6,0,-7,-4,-7,-10r0,-74r-66,0v-6,0,-9,-2,-10,-7v0,-5,4,-8,10,-8r66,0r0,-73v0,-6,1,-10,7,-10v6,0,7,4,7,10r0,73r66,0v7,0,9,3,10,8xm170,-15v18,-3,26,7,15,15r-154,0v-7,-1,-8,-13,0,-14"},"\u00a5":{"d":"170,-95v0,5,-2,5,-7,5r-48,0r0,28r48,0v5,0,7,0,7,5v0,5,-2,5,-7,5r-48,0r0,37v14,2,41,-6,42,8v0,6,-4,7,-10,7r-78,0v-6,0,-9,-2,-10,-7v2,-14,28,-6,42,-8r0,-37r-48,0v-4,0,-7,-1,-7,-5v8,-12,38,-2,55,-5r0,-28r-48,0v-4,0,-7,-1,-7,-5v6,-12,34,-2,49,-5r-59,-91v-17,5,-27,-13,-9,-15v16,3,48,-8,50,8v1,10,-15,6,-24,7r55,83r55,-83v-10,0,-24,2,-25,-7v3,-15,34,-8,50,-8v6,0,10,2,10,8v1,8,-10,7,-18,7r-60,91r43,0v5,0,7,0,7,5"},"\u00b5":{"d":"195,-7v-1,13,-25,5,-37,7r0,-22v-27,25,-67,40,-98,16r0,64v0,6,-1,10,-7,10v-6,0,-7,-4,-7,-10r0,-195v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-22,143,32,143v24,0,46,-11,66,-33r0,-95v-17,4,-54,-4,-27,-15r42,0r0,137v10,0,23,-2,22,8"},"\u00aa":{"d":"167,-138v-1,12,-22,5,-34,7r0,-11v-25,21,-81,20,-81,-16v0,-31,45,-39,81,-32v4,-36,-35,-28,-63,-20v-4,0,-7,-3,-7,-7v20,-22,86,-17,85,16r0,56v9,0,19,-2,19,7xm106,-179v-36,-6,-57,37,-15,38v15,0,28,-6,42,-18r0,-17v-8,-2,-18,-2,-27,-3"},"\u00ba":{"d":"108,-230v29,0,55,23,55,51v0,28,-26,51,-55,51v-30,0,-56,-22,-56,-51v0,-28,26,-51,56,-51xm108,-141v21,0,41,-18,41,-38v0,-20,-19,-38,-41,-38v-23,0,-42,18,-42,38v0,20,20,38,42,38"},"\u00e6":{"d":"113,-126v15,-34,54,-44,79,-9v11,16,18,36,18,63r-94,0v2,30,14,60,40,63v10,2,30,-11,46,-23v5,0,8,2,8,7v-6,15,-33,31,-54,31v-19,0,-31,-14,-40,-28v0,10,2,22,-8,22v-8,0,-7,-10,-7,-18v-27,44,-101,20,-98,-35v3,-38,63,-48,98,-36v4,-29,-7,-51,-29,-54v-16,-2,-39,22,-47,5v0,-12,35,-20,47,-20v19,0,36,16,41,32xm195,-87v-1,-34,-33,-76,-62,-44v-9,11,-15,26,-17,44r79,0xm57,-9v23,-1,29,-13,44,-31r0,-34v-28,-10,-75,-5,-83,22v0,23,15,44,39,43"},"\u00f8":{"d":"172,-130v49,50,6,136,-64,136v-19,0,-36,-6,-52,-18v-9,8,-17,22,-29,27v-19,-11,13,-26,18,-36v-49,-51,-6,-140,63,-137v20,0,38,6,53,18v10,-8,16,-22,29,-26v19,10,-13,27,-18,36xm150,-129v-60,-49,-152,37,-94,97xm67,-22v44,33,114,-1,111,-54v0,-17,-5,-31,-16,-44"},"\u00bf":{"d":"134,-138v0,16,-15,19,-33,19v-9,0,-18,-9,-18,-18v0,-16,14,-21,33,-19v9,-1,18,8,18,18xm40,7v0,-37,23,-40,61,-59v0,-10,-2,-25,7,-25v13,0,7,22,8,35v-35,16,-59,16,-61,49v-3,46,63,58,99,35v0,-9,-2,-23,7,-22v11,0,6,20,7,31v-52,33,-128,20,-128,-44"},"\u00a1":{"d":"130,-136v0,11,-11,20,-25,18v-10,1,-19,-9,-19,-18v0,-12,11,-20,25,-18v10,-1,19,9,19,18xm108,68v-10,0,-15,-8,-14,-20r7,-113v0,-6,1,-10,7,-10v6,0,7,4,7,10r7,119v1,7,-7,15,-14,14"},"\u00ac":{"d":"183,-12v-6,0,-7,-4,-7,-10r0,-73r-168,-1v-6,-4,-4,-15,6,-14r177,0r0,88v0,6,-2,10,-8,10"},"\u00ab":{"d":"107,-15v7,5,5,14,-3,15v-33,-21,-57,-52,-87,-76r79,-72v6,-7,14,-6,15,3v-16,25,-40,46,-59,69xm190,-15v7,5,4,15,-4,15v-31,-22,-57,-52,-86,-76r86,-77v7,1,10,8,4,15r-55,62"},"\u00bb":{"d":"26,-138v-7,-6,-3,-14,4,-15v30,23,57,52,86,77v-29,25,-55,53,-86,76v-8,0,-10,-9,-4,-15r55,-61xm109,-138v-7,-6,-4,-13,3,-15v32,22,58,52,87,77v-30,25,-54,54,-87,76v-8,-1,-9,-9,-3,-15r55,-61"},"\u00c0":{"d":"139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0xm69,-266v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00c3":{"d":"115,-238v5,4,28,-26,33,-7v-5,13,-18,19,-33,22v-10,2,-34,-20,-46,-22v-9,-4,-27,28,-33,8v1,-9,24,-24,33,-22v16,-2,32,21,46,21xm139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0"},"\u00d5":{"d":"131,-238v5,4,28,-26,33,-7v-5,13,-18,19,-33,22v-10,2,-34,-20,-46,-22v-9,-4,-27,28,-33,8v1,-9,24,-24,33,-22v16,-2,32,21,46,21xm108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93"},"\u0152":{"d":"159,-79v-9,0,-8,-11,-8,-20r-28,0r0,84r75,0v2,-15,-6,-42,8,-44v14,7,4,40,7,59r-118,0v-56,0,-94,-43,-92,-102v2,-62,28,-104,90,-104r113,0r0,57v0,6,-2,9,-8,9v-15,-4,-4,-35,-7,-51r-68,0r0,77r28,0v-5,-16,13,-30,15,-10v-2,15,6,41,-7,45xm18,-102v0,56,32,91,90,87r0,-176v-63,-3,-89,30,-90,89"},"\u0153":{"d":"59,-158v23,0,41,20,49,42v19,-46,54,-57,84,-20v12,15,18,35,18,63r-95,0v3,30,14,61,42,64v14,7,43,-38,53,-15v-7,15,-36,30,-54,30v-24,0,-40,-21,-48,-44v-9,24,-24,44,-48,44v-74,0,-76,-164,-1,-164xm59,-9v54,-4,56,-130,0,-134v-53,5,-54,129,0,134xm195,-88v-3,-35,-33,-74,-61,-43v-9,10,-15,24,-18,43r79,0"},"\u00f7":{"d":"108,-186v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm170,-110v12,-4,30,7,15,14r-154,0v-8,-1,-7,-14,0,-14r139,0xm108,-48v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14"},"\u00ff":{"d":"27,60v6,-15,38,-4,56,-7r26,-53r-69,-137v-8,0,-16,-1,-14,-8v3,-15,34,-4,50,-7v6,0,10,1,10,7v1,12,-18,7,-29,8r60,121r59,-121v-16,4,-43,-6,-20,-15v17,1,63,-6,46,14v-1,0,-5,1,-10,1r-93,190v17,-4,48,6,23,15r-85,0v-6,0,-10,-2,-10,-8xm81,-216v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm157,-216v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u0178":{"d":"198,-198v1,8,-10,7,-18,7r-64,98r0,78v16,3,46,-7,48,8v0,6,-4,7,-10,7r-91,0v-6,0,-10,-1,-10,-7v2,-16,33,-5,48,-8r0,-78r-65,-98v-17,5,-27,-13,-9,-15v17,3,47,-7,51,8v-1,9,-15,7,-25,7r55,83r54,-83v-10,-1,-25,3,-24,-7v2,-16,34,-5,50,-8v6,0,10,2,10,8xm70,-263v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm146,-263v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00c2":{"d":"59,-230v-6,5,-13,3,-14,-4v12,-19,36,-29,52,-44r52,40v4,8,-7,15,-13,8r-39,-29xm139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0"},"\u00ca":{"d":"69,-229v-6,6,-13,3,-13,-5v13,-18,36,-28,52,-43v17,15,38,26,53,43v-1,7,-7,10,-14,5r-39,-30xm120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10"},"\u00c1":{"d":"139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0xm131,-277v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00cb":{"d":"120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10xm70,-263v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm146,-263v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00c8":{"d":"120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10xm83,-266v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00cd":{"d":"176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8xm123,-277v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00ce":{"d":"69,-229v-6,6,-13,3,-13,-5v12,-19,36,-28,52,-43r52,40v2,8,-5,14,-13,8r-39,-30xm176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8"},"\u00cf":{"d":"176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8xm70,-263v8,0,15,6,15,14v0,8,-8,15,-15,15v-7,0,-14,-7,-14,-15v-1,-7,7,-14,14,-14xm146,-263v7,-1,15,7,14,14v0,8,-7,15,-14,15v-18,0,-20,-29,0,-29"},"\u00cc":{"d":"176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8xm83,-266v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00d3":{"d":"108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93xm124,-277v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00d4":{"d":"69,-229v-6,6,-13,3,-13,-5v12,-19,36,-28,52,-43r52,40v2,8,-5,14,-13,8r-39,-30xm108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93"},"\u00d2":{"d":"108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93xm82,-266v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u00da":{"d":"202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8xm128,-277v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00db":{"d":"69,-229v-6,6,-13,3,-13,-5v13,-18,36,-28,52,-43v17,15,38,26,53,43v-1,7,-7,10,-14,5r-39,-30xm202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8"},"\u00d9":{"d":"202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8xm77,-266v-7,-6,-3,-14,4,-15v18,13,35,29,52,44v1,10,-7,13,-14,7"},"\u0131":{"d":"48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-7,0,-9,-3,-10,-8v9,-15,47,-3,68,-7r0,-122v-17,-3,-49,7,-53,-8"},"\u00b8":{"d":"124,38v-1,-8,-11,-10,-21,-9v2,-11,-5,-31,5,-34v10,0,5,15,6,24v12,1,20,8,20,19v0,28,-48,25,-56,7v8,-14,39,19,46,-7"},"\u0141":{"d":"127,-198v-3,14,-31,4,-45,7r0,75v15,-8,28,-19,45,-25v8,0,9,12,2,15r-47,28r0,83r99,0r0,-59v0,-6,2,-9,7,-10v5,1,7,4,7,10r0,74r-163,0v-6,0,-10,-1,-10,-7v2,-15,30,-5,45,-8r0,-75v-15,8,-28,19,-45,25v-9,0,-9,-13,-1,-15r46,-27r0,-84v-15,-2,-42,6,-45,-7v1,-6,2,-8,10,-8r85,0v6,0,10,2,10,8"},"\u0142":{"d":"48,-213v7,-17,46,-4,67,-8r1,98r38,-21v9,0,9,14,1,16r-40,22r0,91r58,0v7,0,11,2,11,8v0,5,-5,7,-11,7r-130,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r58,0r0,-82v-13,6,-24,15,-38,20v-9,0,-9,-13,-1,-15r39,-22r0,-92v-17,-3,-47,7,-53,-7"},"\u0160":{"d":"147,-271v6,-6,12,-2,13,5v-12,19,-36,28,-52,43r-52,-40v-2,-7,5,-14,13,-8r39,30xm40,-154v0,-54,83,-74,121,-37v-4,-16,15,-21,15,-5v0,16,7,45,-8,48v-14,-6,-5,-28,-22,-36v-38,-37,-130,18,-76,58v36,27,114,8,114,71v0,62,-100,81,-137,37v5,16,-14,26,-14,8v0,-17,-7,-46,7,-51v5,0,7,3,7,9v2,56,124,59,122,-4v-3,-67,-129,-22,-129,-98"},"\u0161":{"d":"147,-225v5,-5,12,-3,13,4v-12,19,-36,29,-52,44r-52,-40v-4,-8,5,-14,13,-8r39,30xm44,-116v1,-45,82,-53,113,-27v0,-5,2,-10,7,-9v13,0,6,23,8,35v0,6,-2,11,-8,10v-12,-2,-5,-21,-18,-26v-28,-26,-119,1,-75,35v40,13,109,5,109,56v-1,52,-94,62,-129,30v-1,8,0,11,-7,12v-14,0,-8,-26,-8,-40v0,-6,2,-10,8,-10v5,0,7,3,7,8v4,47,112,42,114,0v-7,-53,-122,-14,-121,-74"},"\u017d":{"d":"147,-271v6,-6,13,-2,14,5v-13,18,-36,28,-52,43v-17,-15,-38,-26,-53,-43v1,-7,8,-10,14,-5r39,30xm172,-76v6,0,8,4,8,10r0,66r-143,0r0,-21r120,-170r-98,0v-3,17,7,48,-7,54v-5,0,-8,-4,-8,-10r0,-59r128,0r0,21r-120,170r113,0r0,-51v0,-6,1,-10,7,-10"},"\u017e":{"d":"147,-225v5,-5,12,-3,13,4v-11,20,-36,29,-52,44r-52,-40v-2,-8,5,-14,13,-8r39,30xm53,-107v-15,-2,-6,-30,-8,-45r128,0r0,13r-111,124r100,0v1,-11,-4,-30,7,-30v15,0,5,30,8,45r-135,0r0,-13r110,-124r-92,0v-1,11,3,29,-7,30"},"\u00a6":{"d":"101,-200v-4,-12,6,-29,14,-15r0,81v4,21,-8,26,-14,15r0,-81xm101,-56v1,-8,14,-7,14,0r0,81v4,21,-8,26,-14,15r0,-96"},"\u00d0":{"d":"15,-7v-1,-10,12,-8,22,-8r0,-84v-16,1,-51,1,-32,-15r32,0r0,-77v-9,0,-23,2,-22,-7v0,-6,4,-8,10,-8r79,0v59,6,87,46,84,113v-2,51,-32,93,-84,93r-79,0v-6,0,-10,-1,-10,-7xm52,-114v25,2,74,-8,57,15r-57,0r0,84v80,8,127,-19,121,-101v-4,-62,-50,-82,-121,-75r0,77"},"\u00f0":{"d":"109,-200v-13,-2,-53,-10,-26,-20v15,0,29,5,44,14v13,-2,36,-21,43,-5v-4,10,-11,8,-30,14v30,28,48,56,48,110v1,56,-30,92,-83,92v-45,0,-82,-37,-82,-81v0,-75,113,-105,148,-41v-10,-42,-19,-47,-47,-74v-48,12,-55,28,-67,13v0,-13,46,-19,52,-22xm37,-75v1,38,30,67,68,67v37,0,66,-26,67,-65v1,-37,-30,-66,-67,-66v-37,0,-69,29,-68,64"},"\u00dd":{"d":"198,-198v1,8,-10,7,-18,7r-64,98r0,78v16,3,46,-7,48,8v0,6,-4,7,-10,7r-91,0v-6,0,-10,-1,-10,-7v2,-16,33,-5,48,-8r0,-78r-65,-98v-17,5,-27,-13,-9,-15v17,3,47,-7,51,8v-1,9,-15,7,-25,7r55,83r54,-83v-10,-1,-25,3,-24,-7v2,-16,34,-5,50,-8v6,0,10,2,10,8xm124,-275v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00fd":{"d":"27,60v6,-15,38,-4,56,-7r26,-53r-69,-137v-8,0,-16,-1,-14,-8v3,-15,34,-4,50,-7v6,0,10,1,10,7v1,12,-18,7,-29,8r60,121r59,-121v-16,4,-43,-6,-20,-15v17,1,63,-6,46,14v-1,0,-5,1,-10,1r-93,190v17,-4,48,6,23,15r-85,0v-6,0,-10,-2,-10,-8xm149,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u00de":{"d":"61,-191v-14,2,-40,-2,-25,-14v27,-2,61,0,91,-1v6,0,9,2,9,8v0,5,-3,7,-9,7r-51,0r0,28v62,-5,120,6,120,60v0,57,-57,65,-120,61r0,27r51,0v6,0,9,2,9,8v0,5,-3,7,-9,7r-86,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176xm181,-103v0,-44,-54,-49,-105,-45r0,91v51,3,105,0,105,-46"},"\u00fe":{"d":"8,-213v0,-14,29,-6,44,-8r0,96v36,-57,143,-33,143,44v0,74,-103,105,-143,45r0,89v15,2,43,-6,46,7v1,6,-4,8,-10,8r-70,0v-6,0,-10,-2,-10,-8v0,-11,19,-6,30,-7r0,-259v-11,-1,-30,4,-30,-7xm117,-19v35,0,63,-28,63,-62v0,-34,-29,-62,-63,-62v-34,0,-65,28,-65,62v0,34,30,62,65,62"},"\u00d7":{"d":"165,-57v8,6,2,19,-6,14v-20,-13,-34,-33,-51,-49v-18,16,-33,36,-53,50v-8,-1,-11,-10,-3,-15r46,-46v-17,-18,-37,-32,-51,-53v2,-7,9,-9,15,-3r46,46v18,-16,32,-36,53,-50v7,1,10,8,4,14r-46,46"},"\u00b9":{"d":"101,-211v-11,1,-30,13,-35,2v10,-11,33,-10,48,-16r0,107v13,-1,51,-1,28,10r-68,0v-5,0,-7,-2,-8,-5v2,-10,24,-3,35,-5r0,-93"},"\u00b2":{"d":"64,-197v4,-37,84,-39,84,4v0,33,-52,52,-74,75r61,0v0,-6,2,-7,7,-8v8,-1,6,10,6,18r-88,0r0,-13v48,-41,65,-46,75,-72v0,-29,-53,-30,-58,-4v0,6,-13,5,-13,0"},"\u00b3":{"d":"108,-226v37,-4,55,45,21,55v12,4,24,16,24,30v1,38,-71,45,-91,19v8,-14,29,12,44,7v18,1,33,-12,34,-26v-2,-15,-17,-26,-37,-26v-6,1,-7,-2,-8,-5v12,-9,42,-2,40,-24v-2,-28,-48,-22,-60,-7v-3,0,-6,-2,-6,-5v4,-13,23,-16,39,-18"},"\u00bd":{"d":"36,-211v-11,1,-30,14,-36,2v10,-11,34,-10,49,-16r0,107v11,2,33,-5,35,5v0,4,-4,5,-8,5r-68,0v-5,0,-7,-2,-8,-5v2,-10,24,-3,36,-5r0,-93xm195,-169v6,-5,12,-3,13,4v0,3,-1,6,-5,8r-167,106v-9,-1,-10,-10,-2,-15xm218,-85v0,29,-60,60,-74,75r61,0v0,-6,2,-7,7,-8v8,-1,6,10,6,18r-88,0r0,-12v48,-41,65,-46,75,-72v0,-13,-14,-24,-29,-24v-22,-4,-27,33,-42,19v4,-35,84,-38,84,4"},"\u00bc":{"d":"36,-211v-11,1,-30,14,-36,2v10,-11,34,-10,49,-16r0,107v11,2,33,-5,35,5v0,4,-4,5,-8,5r-68,0v-5,0,-7,-2,-8,-5v2,-10,24,-3,36,-5r0,-93xm200,-169v6,-5,13,-3,14,4v0,3,-2,6,-6,8r-167,106v-8,0,-9,-10,-2,-15xm166,-5v0,-8,14,-4,22,-5r0,-21r-58,0r0,-10r49,-74r22,0r0,74v13,-3,18,9,5,10r-5,0r0,21v6,0,12,1,13,5v-3,10,-27,3,-40,5v-5,0,-9,-1,-8,-5xm188,-41v-1,-21,2,-45,-1,-64r-43,64r44,0"},"\u00be":{"d":"33,-172v12,-9,42,-3,40,-24v-2,-27,-48,-22,-61,-7v-3,0,-5,-3,-6,-5v13,-27,81,-24,80,12v-1,12,-10,22,-19,25v45,16,18,65,-23,65v-15,0,-57,-10,-38,-21v21,15,71,19,71,-14v0,-16,-17,-26,-36,-26v-6,1,-7,-2,-8,-5xm198,-169v6,-5,12,-3,13,4v0,3,-1,6,-5,8r-167,106v-9,-1,-10,-10,-2,-15xm165,-5v1,-7,14,-5,22,-5r0,-21r-58,0r0,-10r49,-74r22,0r0,74v13,-3,18,9,5,10r-5,0r0,21v6,0,12,1,13,5v-3,10,-27,3,-40,5v-6,1,-7,-2,-8,-5xm187,-41v-1,-21,2,-45,-1,-64r-43,64r44,0"},"\u011e":{"d":"64,-267v0,-5,3,-8,8,-8v12,4,5,22,19,27v19,16,63,7,64,-18v0,-6,3,-9,8,-9v5,0,7,3,7,8v0,25,-25,41,-53,41v-28,0,-52,-17,-53,-41xm194,-91v10,-2,12,12,5,14v-1,0,-5,1,-11,1r0,63v-65,40,-173,13,-166,-76v-15,-96,78,-152,151,-102v-3,-17,15,-19,15,-5v0,14,6,40,-7,43v-5,0,-7,-3,-7,-9v-2,-21,-36,-34,-60,-34v-55,1,-77,44,-77,107v0,70,80,99,136,67r0,-54r-50,0v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7r71,0"},"\u011f":{"d":"55,-220v0,-5,2,-8,7,-8v14,2,6,21,19,26v20,15,63,7,65,-18v0,-6,3,-7,7,-8v5,0,8,3,8,8v0,25,-26,41,-53,41v-27,0,-53,-16,-53,-41xm22,-81v0,-70,98,-107,136,-44r0,-27v14,2,42,-6,44,7v2,12,-19,7,-30,8v-6,82,28,205,-60,205v-17,0,-48,7,-51,-8v4,-14,36,-6,52,-7v42,-3,49,-41,45,-89v-39,62,-136,26,-136,-45xm97,-19v33,0,61,-29,61,-62v0,-33,-28,-62,-61,-62v-33,0,-60,29,-60,62v0,33,27,62,60,62"},"\u0130":{"d":"108,-266v9,-1,19,9,18,18v1,9,-9,19,-18,18v-9,1,-19,-9,-18,-18v-1,-9,9,-19,18,-18xm176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8"},"\u015e":{"d":"40,-154v0,-54,83,-74,121,-37v-4,-16,15,-21,15,-5v0,16,7,45,-8,48v-14,-6,-5,-28,-22,-36v-38,-37,-130,18,-76,58v36,27,114,8,114,71v0,62,-100,81,-137,37v5,16,-14,26,-14,8v0,-17,-7,-46,7,-51v5,0,7,3,7,9v2,56,124,59,122,-4v-3,-67,-129,-22,-129,-98xm124,38v-1,-8,-11,-10,-21,-9v2,-11,-5,-31,5,-34v10,0,5,15,6,24v12,1,20,8,20,19v0,28,-48,25,-56,7v8,-14,39,19,46,-7"},"\u015f":{"d":"44,-116v1,-45,82,-53,113,-27v0,-5,2,-10,7,-9v13,0,6,23,8,35v0,6,-2,11,-8,10v-12,-2,-5,-21,-18,-26v-28,-26,-119,1,-75,35v40,13,109,5,109,56v-1,52,-94,62,-129,30v-1,8,0,11,-7,12v-14,0,-8,-26,-8,-40v0,-6,2,-10,8,-10v5,0,7,3,7,8v4,47,112,42,114,0v-7,-53,-122,-14,-121,-74xm124,38v-1,-8,-11,-10,-21,-9v2,-11,-5,-31,5,-34v10,0,5,15,6,24v12,1,20,8,20,19v0,28,-48,25,-56,7v8,-14,39,19,46,-7"},"\u0106":{"d":"22,-89v-14,-99,83,-156,151,-96v-5,-17,12,-30,15,-11v-3,17,7,48,-8,51v-14,-7,-7,-25,-23,-35v-60,-39,-134,5,-120,89v-2,43,38,82,80,82v35,0,49,-21,69,-37v4,0,7,3,7,7v-12,25,-42,45,-76,45v-57,0,-87,-41,-95,-95xm137,-276v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u0107":{"d":"30,-75v0,-71,90,-109,140,-62v-4,-16,15,-20,15,-5v0,15,6,41,-8,43v-13,-7,-7,-21,-24,-32v-45,-29,-108,1,-108,56v0,38,29,66,67,66v32,0,54,-16,74,-30v4,0,7,3,7,7v-8,20,-52,38,-81,38v-47,0,-82,-35,-82,-81xm136,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u010c":{"d":"155,-272v6,-6,13,-2,14,5v-13,18,-36,28,-53,43v-17,-15,-38,-26,-52,-43v0,-8,8,-10,14,-5r38,30xm22,-89v-14,-99,83,-156,151,-96v-5,-17,12,-30,15,-11v-3,17,7,48,-8,51v-14,-7,-7,-25,-23,-35v-60,-39,-134,5,-120,89v-2,43,38,82,80,82v35,0,49,-21,69,-37v4,0,7,3,7,7v-12,25,-42,45,-76,45v-57,0,-87,-41,-95,-95"},"\u010d":{"d":"157,-225v6,-6,12,-2,14,4v-12,19,-37,29,-53,44r-52,-40v-2,-8,5,-14,13,-8r39,30xm30,-75v0,-71,90,-109,140,-62v-4,-16,15,-20,15,-5v0,15,6,41,-8,43v-13,-7,-7,-21,-24,-32v-45,-29,-108,1,-108,56v0,38,29,66,67,66v32,0,54,-16,74,-30v4,0,7,3,7,7v-8,20,-52,38,-81,38v-47,0,-82,-35,-82,-81"},"\u0111":{"d":"136,-213v0,-14,29,-6,44,-8r0,32v17,-5,46,9,18,15r-18,0r0,159v11,1,32,-4,30,8v-2,14,-31,4,-45,7r0,-29v-41,65,-143,30,-143,-47v0,-77,102,-112,143,-46r0,-52r-57,-1v-7,0,-7,-12,-1,-14r58,0r0,-17v-11,-1,-29,4,-29,-7xm101,-9v34,0,64,-31,64,-67v0,-36,-31,-67,-64,-67v-34,0,-64,31,-64,67v0,36,29,67,64,67"},"\u00af":{"d":"221,-243v-1,6,-3,7,-10,7r-206,0v-6,0,-9,-2,-10,-7v1,-5,4,-7,10,-7r206,0v7,0,9,1,10,7"},"\u00b7":{"d":"143,-138v9,-1,18,9,17,18v1,9,-8,19,-17,18v-10,1,-19,-9,-19,-18v0,-9,9,-19,19,-18"},"\u0102":{"d":"55,-267v0,-5,3,-8,8,-8v12,4,5,22,19,27v19,16,63,7,64,-18v0,-6,3,-9,8,-9v5,0,7,3,7,8v0,25,-25,41,-53,41v-28,0,-52,-17,-53,-41xm139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0"},"\u0103":{"d":"163,-220v0,58,-105,51,-106,0v0,-5,3,-8,8,-8v12,3,5,21,18,26v20,15,63,7,65,-18v0,-6,4,-7,8,-8v5,0,7,3,7,8xm195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32"},"\u0104":{"d":"201,-11v3,0,5,2,5,6v0,5,-2,5,-7,5v-8,0,-16,12,-16,21v0,19,26,15,36,7v3,0,6,1,5,5v-9,22,-52,15,-52,-13v0,-15,15,-31,29,-31xm139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0"},"\u0105":{"d":"187,-11v3,0,5,2,5,6v0,4,-1,5,-6,5v-19,1,-25,38,1,35v6,1,13,-5,18,-7v3,0,6,1,5,5v-8,21,-54,15,-51,-13v-2,-16,14,-32,28,-31xm195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32"},"\u010e":{"d":"149,-272v6,-6,12,-2,13,5v-12,19,-36,28,-52,43v-17,-15,-38,-26,-53,-43v1,-7,7,-10,14,-5r39,30xm28,-7v-1,-10,12,-8,22,-8r0,-176v-9,0,-23,2,-22,-7v0,-6,4,-8,10,-8r79,0v59,6,87,46,84,113v-1,51,-33,93,-84,93r-79,0v-6,0,-10,-1,-10,-7xm186,-89v6,-80,-37,-111,-121,-102r0,176v70,8,117,-15,121,-74"},"\u010f":{"d":"22,-76v0,-69,82,-115,118,-50r0,-80v-11,-1,-31,4,-30,-7v1,-15,31,-6,45,-8r0,206v11,1,31,-3,30,8v-2,14,-31,4,-45,7r0,-27v-36,67,-118,20,-118,-49xm88,-9v31,0,52,-33,52,-67v0,-34,-22,-67,-52,-67v-66,1,-67,133,0,134xm184,-167v1,-7,18,-21,17,-26v-11,1,-18,-2,-18,-13v1,-9,7,-15,19,-15v9,0,14,5,14,15v1,13,-21,57,-32,39"},"\u0110":{"d":"15,-7v-1,-10,12,-8,22,-8r0,-84v-16,1,-51,1,-32,-15r32,0r0,-77v-9,0,-23,2,-22,-7v0,-6,4,-8,10,-8r79,0v59,6,87,46,84,113v-2,51,-32,93,-84,93r-79,0v-6,0,-10,-1,-10,-7xm52,-114v25,2,74,-8,57,15r-57,0r0,84v80,8,127,-19,121,-101v-4,-62,-50,-82,-121,-75r0,77"},"\u0118":{"d":"181,36v9,2,20,-15,24,-2v-9,22,-55,15,-52,-13v-2,-15,23,-40,34,-25v-6,8,-23,9,-23,26v0,9,7,15,17,14xm120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10"},"\u0119":{"d":"88,25v-2,-15,23,-40,34,-25v-5,9,-24,9,-23,26v1,19,27,17,36,7v2,1,5,3,5,6v-9,21,-56,13,-52,-14xm22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0"},"\u011a":{"d":"151,-272v6,-6,13,-2,14,5v-13,18,-36,28,-53,43v-17,-15,-38,-26,-52,-43v0,-8,8,-10,14,-5r38,30xm120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10"},"\u011b":{"d":"153,-225v5,-5,12,-3,13,4v-12,19,-36,29,-52,44r-52,-40v-4,-8,5,-14,13,-8r39,30xm22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0"},"\u0139":{"d":"127,-198v-3,14,-31,4,-45,7r0,176r99,0r0,-58v0,-6,1,-10,7,-10v6,1,7,3,7,10r0,73r-163,0v-6,0,-9,-2,-10,-7v3,-15,31,-6,46,-8r0,-176v-15,-2,-42,6,-46,-7v0,-5,4,-8,10,-8r86,0v6,0,9,2,9,8xm125,-276v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u013a":{"d":"48,-213v7,-17,46,-4,67,-8r0,206r58,0v7,0,11,2,11,8v0,5,-5,7,-11,7r-130,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r58,0r0,-191v-17,-3,-47,7,-53,-7xm124,-284v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u013d":{"d":"149,-146v1,-7,18,-20,17,-25v-11,1,-18,-2,-18,-13v0,-10,8,-15,20,-15v9,0,13,5,13,15v0,14,-22,59,-32,38xm127,-198v-3,14,-31,4,-45,7r0,176r99,0r0,-58v0,-6,1,-10,7,-10v6,1,7,3,7,10r0,73r-163,0v-6,0,-9,-2,-10,-7v3,-15,31,-6,46,-8r0,-176v-15,-2,-42,6,-46,-7v0,-5,4,-8,10,-8r86,0v6,0,9,2,9,8"},"\u013e":{"d":"140,-168v2,-6,19,-20,18,-25v-11,1,-19,-2,-19,-13v0,-10,8,-15,20,-15v9,0,14,5,14,15v1,13,-22,59,-33,38xm48,-213v7,-17,46,-4,67,-8r0,206r58,0v7,0,11,2,11,8v0,5,-5,7,-11,7r-130,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r58,0r0,-191v-17,-3,-47,7,-53,-7"},"\u013f":{"d":"127,-198v-3,14,-31,4,-45,7r0,176r99,0r0,-58v0,-6,1,-10,7,-10v6,1,7,3,7,10r0,73r-163,0v-6,0,-9,-2,-10,-7v3,-15,31,-6,46,-8r0,-176v-15,-2,-42,6,-46,-7v0,-5,4,-8,10,-8r86,0v6,0,9,2,9,8xm143,-138v9,-1,18,9,17,18v1,9,-8,19,-17,18v-10,1,-19,-9,-19,-18v0,-9,9,-19,19,-18"},"\u0140":{"d":"48,-213v7,-17,46,-4,67,-8r0,206r58,0v7,0,11,2,11,8v0,5,-5,7,-11,7r-130,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r58,0r0,-191v-17,-3,-47,7,-53,-7xm151,-128v9,-1,18,9,17,18v1,9,-8,19,-17,18v-10,1,-19,-9,-19,-18v0,-9,9,-19,19,-18"},"\u0143":{"d":"203,-198v0,9,-13,7,-23,7r0,191r-19,0r-108,-184r0,169v13,2,37,-6,37,8v0,6,-4,7,-10,7v-21,0,-56,8,-65,-7v0,-10,13,-8,23,-8r0,-176v-11,-1,-30,4,-30,-7v0,-16,33,-5,49,-8r109,185r0,-170v-13,-2,-36,5,-38,-7v7,-17,44,-8,65,-8v7,0,9,3,10,8xm130,-276v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u0144":{"d":"23,-145v1,-12,25,-5,37,-7r0,22v27,-41,113,-36,113,22r0,93v10,0,24,-2,22,8v-3,14,-33,4,-49,7v-6,0,-10,-1,-10,-7v-1,-10,12,-8,22,-8v-3,-54,17,-131,-42,-128v-32,2,-34,12,-56,36r0,92v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7v-1,-12,16,-7,27,-8r0,-122v-10,0,-24,3,-23,-8xm132,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u0147":{"d":"148,-272v6,-6,13,-2,14,5v-13,18,-36,28,-52,43v-17,-15,-38,-26,-53,-43v0,-8,8,-10,14,-5r39,30xm203,-198v0,9,-13,7,-23,7r0,191r-19,0r-108,-184r0,169v13,2,37,-6,37,8v0,6,-4,7,-10,7v-21,0,-56,8,-65,-7v0,-10,13,-8,23,-8r0,-176v-11,-1,-30,4,-30,-7v0,-16,33,-5,49,-8r109,185r0,-170v-13,-2,-36,5,-38,-7v7,-17,44,-8,65,-8v7,0,9,3,10,8"},"\u0148":{"d":"150,-225v5,-5,13,-3,14,4v-12,19,-37,29,-53,44v-16,-16,-39,-25,-52,-44v1,-7,8,-9,14,-4r38,30xm23,-145v1,-12,25,-5,37,-7r0,22v27,-41,113,-36,113,22r0,93v10,0,24,-2,22,8v-3,14,-33,4,-49,7v-6,0,-10,-1,-10,-7v-1,-10,12,-8,22,-8v-3,-54,17,-131,-42,-128v-32,2,-34,12,-56,36r0,92v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7v-1,-12,16,-7,27,-8r0,-122v-10,0,-24,3,-23,-8"},"\u0150":{"d":"93,-276v6,-7,14,-3,15,4v-13,17,-27,34,-45,46v-8,-1,-10,-8,-4,-14xm146,-276v5,-7,15,-4,15,4v-13,17,-27,34,-45,46v-7,-1,-9,-8,-4,-14xm108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93"},"\u0151":{"d":"112,-229v6,-7,13,-4,15,3v-12,18,-28,34,-45,47v-8,-1,-10,-10,-4,-15xm165,-229v10,-11,20,3,11,10v-14,13,-24,30,-41,40v-8,-1,-9,-9,-4,-15xm108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67"},"\u0154":{"d":"184,0v-31,-52,-37,-69,-77,-92r-47,0r0,77v13,2,37,-6,37,8v0,6,-4,7,-10,7r-62,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r90,0v32,-1,66,27,65,57v-1,30,-22,43,-51,53v32,24,35,35,63,81v9,0,21,-2,21,8v0,11,-19,6,-29,7xm165,-149v0,-41,-55,-46,-105,-42r0,84v49,2,105,-1,105,-42xm131,-276v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u0155":{"d":"38,-145v5,-14,35,-4,52,-7r0,37v29,-24,38,-36,70,-41v14,-2,51,22,28,30v-11,-2,-14,-18,-27,-15v-31,6,-38,18,-71,45r0,81r66,0v7,0,9,3,10,8v-1,5,-4,7,-10,7r-116,0v-6,0,-11,-2,-10,-7v3,-14,31,-4,46,-7r0,-123v-13,-2,-37,5,-38,-8xm129,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u0158":{"d":"143,-272v6,-6,12,-2,13,5v-13,18,-36,28,-52,43v-17,-15,-38,-26,-53,-43v1,-7,7,-10,14,-5r39,30xm184,0v-31,-52,-37,-69,-77,-92r-47,0r0,77v13,2,37,-6,37,8v0,6,-4,7,-10,7r-62,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r90,0v32,-1,66,27,65,57v-1,30,-22,43,-51,53v32,24,35,35,63,81v9,0,21,-2,21,8v0,11,-19,6,-29,7xm165,-149v0,-41,-55,-46,-105,-42r0,84v49,2,105,-1,105,-42"},"\u0159":{"d":"152,-225v6,-6,12,-2,14,4v-12,19,-37,29,-53,44v-16,-16,-39,-25,-52,-44v0,-7,7,-9,13,-4r39,30xm38,-145v5,-14,35,-4,52,-7r0,37v29,-24,38,-36,70,-41v14,-2,51,22,28,30v-11,-2,-14,-18,-27,-15v-31,6,-38,18,-71,45r0,81r66,0v7,0,9,3,10,8v-1,5,-4,7,-10,7r-116,0v-6,0,-11,-2,-10,-7v3,-14,31,-4,46,-7r0,-123v-13,-2,-37,5,-38,-8"},"\u015a":{"d":"40,-154v0,-54,83,-74,121,-37v-4,-16,15,-21,15,-5v0,16,7,45,-8,48v-14,-6,-5,-28,-22,-36v-38,-37,-130,18,-76,58v36,27,114,8,114,71v0,62,-100,81,-137,37v5,16,-14,26,-14,8v0,-17,-7,-46,7,-51v5,0,7,3,7,9v2,56,124,59,122,-4v-3,-67,-129,-22,-129,-98xm137,-276v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u015b":{"d":"44,-116v1,-45,82,-53,113,-27v0,-5,2,-10,7,-9v13,0,6,23,8,35v0,6,-2,11,-8,10v-12,-2,-5,-21,-18,-26v-28,-26,-119,1,-75,35v40,13,109,5,109,56v-1,52,-94,62,-129,30v-1,8,0,11,-7,12v-14,0,-8,-26,-8,-40v0,-6,2,-10,8,-10v5,0,7,3,7,8v4,47,112,42,114,0v-7,-53,-122,-14,-121,-74xm135,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u0162":{"d":"183,-130v-6,0,-7,-4,-7,-10r0,-51r-61,0r0,176v16,3,45,-7,48,8v0,5,-3,7,-9,7r-92,0v-6,0,-10,-1,-10,-7v2,-16,33,-5,48,-8r0,-176r-60,0r0,51v0,6,-1,10,-7,10v-6,0,-8,-4,-8,-10r0,-66r166,0r0,66v0,6,-2,10,-8,10xm124,36v-1,-8,-11,-10,-21,-9v2,-11,-5,-31,5,-34v10,0,5,15,6,24v12,1,20,8,20,19v0,28,-48,25,-56,7v8,-14,39,19,46,-7"},"\u0163":{"d":"70,-206v16,4,5,37,8,54r80,0v6,0,9,2,10,7v0,5,-4,8,-10,8r-80,0v5,51,-21,128,40,128v23,0,51,-9,65,-17v5,0,7,3,7,8v-24,30,-127,40,-127,-21r0,-98v-13,-2,-37,6,-37,-8v0,-13,25,-5,37,-7v3,-17,-7,-48,7,-54xm135,38v-1,-8,-11,-10,-21,-9v2,-11,-5,-31,5,-34v10,0,5,15,6,24v12,1,20,8,20,19v0,28,-48,25,-56,7v8,-14,39,19,46,-7"},"\u0164":{"d":"147,-272v6,-6,12,-1,14,5v-13,18,-36,28,-53,43v-17,-15,-38,-26,-52,-43v0,-8,7,-10,13,-5r39,30xm183,-130v-6,0,-7,-4,-7,-10r0,-51r-61,0r0,176v16,3,45,-7,48,8v0,5,-3,7,-9,7r-92,0v-6,0,-10,-1,-10,-7v2,-16,33,-5,48,-8r0,-176r-60,0r0,51v0,6,-1,10,-7,10v-6,0,-8,-4,-8,-10r0,-66r166,0r0,66v0,6,-2,10,-8,10"},"\u0165":{"d":"155,-207v0,-10,8,-14,20,-14v9,0,14,5,15,14v2,14,-23,53,-34,36v2,-7,19,-18,18,-23v-12,1,-20,-2,-19,-13xm190,-18v-22,29,-127,41,-127,-21r0,-98v-13,-1,-37,5,-37,-8v0,-12,25,-5,37,-7v3,-17,-7,-49,7,-54v16,4,5,37,8,54r80,0v7,0,10,2,10,7v0,5,-3,8,-10,8r-80,0r0,98v2,48,80,28,105,13v5,0,7,3,7,8"},"\u016e":{"d":"108,-286v18,0,32,13,32,31v0,18,-14,31,-32,31v-17,0,-32,-14,-32,-31v0,-17,15,-31,32,-31xm108,-234v12,0,22,-10,22,-21v0,-11,-10,-21,-22,-21v-11,1,-21,9,-21,21v0,12,9,21,21,21xm202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8"},"\u016f":{"d":"106,-240v18,0,32,15,32,32v0,17,-15,31,-32,31v-18,0,-32,-13,-32,-31v-1,-18,14,-33,32,-32xm106,-188v11,0,21,-9,21,-20v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,11,10,20,21,20xm196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8"},"\u0170":{"d":"110,-276v5,-7,15,-4,15,4v-13,17,-27,34,-45,46v-8,-1,-10,-8,-4,-14xm163,-276v6,-7,15,-5,15,4v-13,17,-27,34,-45,46v-7,-1,-9,-8,-4,-14xm202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8"},"\u0171":{"d":"106,-229v5,-7,13,-5,14,3v-11,18,-27,36,-45,47v-8,-1,-9,-10,-3,-15xm159,-229v5,-7,13,-5,14,3v-11,19,-27,34,-44,47v-9,0,-10,-10,-4,-15xm196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8"},"\u0179":{"d":"172,-76v6,0,8,4,8,10r0,66r-143,0r0,-21r120,-170r-98,0v-3,17,7,48,-7,54v-5,0,-8,-4,-8,-10r0,-59r128,0r0,21r-120,170r113,0r0,-51v0,-6,1,-10,7,-10xm137,-276v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u017a":{"d":"53,-107v-15,-2,-6,-30,-8,-45r128,0r0,13r-111,124r100,0v1,-11,-4,-30,7,-30v15,0,5,30,8,45r-135,0r0,-13r110,-124r-92,0v-1,11,3,29,-7,30xm138,-230v6,-8,17,-1,13,7v-16,16,-33,31,-52,44v-7,-1,-9,-10,-3,-15"},"\u017b":{"d":"109,-266v9,-1,18,9,18,18v0,9,-9,18,-18,18v-10,0,-19,-9,-18,-18v-1,-9,9,-19,18,-18xm172,-76v6,0,8,4,8,10r0,66r-143,0r0,-21r120,-170r-98,0v-3,17,7,48,-7,54v-5,0,-8,-4,-8,-10r0,-59r128,0r0,21r-120,170r113,0r0,-51v0,-6,1,-10,7,-10"},"\u017c":{"d":"110,-220v22,0,23,36,0,36v-10,0,-19,-9,-18,-18v-1,-9,9,-18,18,-18xm53,-107v-15,-2,-6,-30,-8,-45r128,0r0,13r-111,124r100,0v1,-11,-4,-30,7,-30v15,0,5,30,8,45r-135,0r0,-13r110,-124r-92,0v-1,11,3,29,-7,30"},"\u0132":{"d":"82,-198v-1,12,-22,5,-33,7r0,176v12,1,33,-5,33,8v0,6,-4,7,-10,7r-61,0v-6,0,-9,-2,-9,-7v-1,-13,20,-7,32,-8r0,-176v-11,-1,-31,5,-32,-7v0,-5,3,-8,9,-8r61,0v6,0,10,2,10,8xm214,-198v0,12,-21,5,-32,7v-6,75,24,197,-49,197v-18,0,-33,-11,-46,-33v2,-14,-6,-40,7,-43v13,1,6,25,8,39v19,40,65,19,65,-29r0,-131v-17,-3,-47,7,-53,-7v0,-5,4,-8,10,-8r81,0v6,0,9,2,9,8"},"\u0133":{"d":"77,-228r0,38r-22,0r0,-38r22,0xm159,-228r0,38r-22,0r0,-38r22,0xm8,-145v0,-5,3,-7,9,-7r58,0r0,137v19,3,52,-8,58,8v-1,5,-4,7,-10,7r-110,0v-6,0,-9,-2,-10,-7v5,-16,40,-5,58,-8r0,-122v-17,-3,-50,8,-53,-8xm87,53v43,4,79,-4,78,-43r0,-147v-20,-3,-56,8,-63,-8v1,-5,4,-7,10,-7r67,0r0,162v1,50,-39,62,-92,58v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7"},"\u0149":{"d":"1,-168v1,-7,18,-20,17,-25v-11,1,-18,-2,-18,-13v0,-9,8,-15,19,-15v9,0,14,5,14,15v0,14,-22,59,-32,38xm23,-145v1,-12,25,-5,37,-7r0,22v27,-41,113,-36,113,22r0,93v10,0,24,-2,22,8v-3,14,-33,4,-49,7v-6,0,-10,-1,-10,-7v-1,-10,12,-8,22,-8v-3,-54,17,-131,-42,-128v-32,2,-34,12,-56,36r0,92v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7v-1,-12,16,-7,27,-8r0,-122v-10,0,-24,3,-23,-8"},"\u0100":{"d":"146,-243v-1,5,-4,7,-10,7r-86,0v-6,0,-9,-2,-9,-7v0,-5,3,-7,9,-7r85,0v6,0,10,2,11,7xm139,-7v0,-14,25,-6,38,-8r-20,-54r-97,0r-20,54v13,2,38,-6,38,8v0,6,-4,7,-10,7r-55,0v-6,0,-10,-1,-10,-7v-1,-10,12,-8,21,-8r65,-176v-17,-3,-48,7,-53,-7v0,-6,4,-8,10,-8r74,0r72,191v17,-5,32,15,12,15r-55,0v-6,0,-10,-1,-10,-7xm151,-83r-41,-108r-5,0r-40,108r86,0"},"\u0101":{"d":"159,-197v0,5,-4,8,-10,8r-86,0v-7,0,-9,-3,-10,-8v1,-5,4,-7,10,-7r85,0v6,0,10,2,11,7xm195,-7v-2,14,-31,4,-45,7r0,-21v-36,38,-125,39,-125,-20v0,-50,72,-62,125,-48v10,-64,-52,-61,-100,-42v-4,0,-7,-3,-7,-7v3,-14,53,-19,63,-20v33,-2,58,18,59,46r0,97v11,1,32,-4,30,8xm40,-41v8,52,89,31,110,0r0,-32v-38,-12,-106,-9,-110,32"},"\u0108":{"d":"76,-229v-5,5,-12,3,-13,-4v13,-18,36,-29,52,-44r52,40v4,8,-7,15,-13,8r-39,-29xm22,-89v-14,-99,83,-156,151,-96v-5,-17,12,-30,15,-11v-3,17,7,48,-8,51v-14,-7,-7,-25,-23,-35v-60,-39,-134,5,-120,89v-2,43,38,82,80,82v35,0,49,-21,69,-37v4,0,7,3,7,7v-12,25,-42,45,-76,45v-57,0,-87,-41,-95,-95"},"\u0109":{"d":"75,-182v-6,6,-13,3,-13,-5v12,-19,36,-28,52,-43r52,40v2,8,-5,14,-13,8r-39,-30xm30,-75v0,-71,90,-109,140,-62v-4,-16,15,-20,15,-5v0,15,6,41,-8,43v-13,-7,-7,-21,-24,-32v-45,-29,-108,1,-108,56v0,38,29,66,67,66v32,0,54,-16,74,-30v4,0,7,3,7,7v-8,20,-52,38,-81,38v-47,0,-82,-35,-82,-81"},"\u010a":{"d":"116,-266v9,-1,18,9,18,18v0,9,-9,18,-18,18v-10,0,-19,-9,-18,-18v-1,-9,9,-19,18,-18xm22,-89v-14,-99,83,-156,151,-96v-5,-17,12,-30,15,-11v-3,17,7,48,-8,51v-14,-7,-7,-25,-23,-35v-60,-39,-134,5,-120,89v-2,43,38,82,80,82v35,0,49,-21,69,-37v4,0,7,3,7,7v-12,25,-42,45,-76,45v-57,0,-87,-41,-95,-95"},"\u010b":{"d":"116,-220v22,0,23,36,0,36v-10,0,-19,-9,-18,-18v-1,-9,9,-18,18,-18xm30,-75v0,-71,90,-109,140,-62v-4,-16,15,-20,15,-5v0,15,6,41,-8,43v-13,-7,-7,-21,-24,-32v-45,-29,-108,1,-108,56v0,38,29,66,67,66v32,0,54,-16,74,-30v4,0,7,3,7,7v-8,20,-52,38,-81,38v-47,0,-82,-35,-82,-81"},"\u0112":{"d":"161,-243v-1,5,-4,7,-10,7r-86,0v-6,0,-9,-2,-9,-7v0,-5,3,-7,9,-7r85,0v6,0,10,2,11,7xm120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10"},"\u0113":{"d":"162,-197v0,5,-4,8,-10,8r-86,0v-6,0,-9,-2,-9,-8v0,-5,3,-7,9,-7r85,0v6,0,10,2,11,7xm22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0"},"\u0114":{"d":"55,-267v0,-5,3,-8,8,-8v12,3,5,22,18,27v20,15,63,7,65,-18v0,-6,3,-9,7,-9v5,0,8,3,8,8v0,25,-25,41,-53,41v-28,0,-52,-17,-53,-41xm120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10"},"\u0115":{"d":"161,-220v0,58,-105,51,-106,0v0,-5,3,-8,8,-8v12,3,5,21,18,26v20,15,63,7,65,-18v0,-6,3,-7,7,-8v5,0,8,3,8,8xm22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0"},"\u0116":{"d":"109,-266v9,-1,19,9,18,18v1,9,-9,19,-18,18v-9,1,-19,-9,-18,-18v-1,-9,9,-19,18,-18xm120,-73v-10,0,-6,-16,-7,-26r-53,0r0,84r113,0v3,-17,-7,-49,8,-53v6,0,7,4,7,10r0,58r-163,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r156,0r0,51v0,6,-2,10,-8,10v-14,-3,-4,-31,-7,-46r-106,0r0,77r53,0v1,-10,-3,-26,7,-27v16,5,8,39,8,58v0,6,-2,10,-8,10"},"\u0117":{"d":"109,-220v9,0,18,9,18,18v0,10,-9,19,-18,18v-9,1,-19,-9,-18,-18v-1,-9,9,-18,18,-18xm22,-79v0,-68,96,-106,143,-55v15,17,23,36,23,61r-151,0v5,36,32,64,74,64v28,0,52,-13,70,-22v4,0,7,3,7,7v-9,20,-48,28,-77,30v-48,2,-89,-39,-89,-85xm173,-88v-5,-47,-74,-73,-112,-39v-12,10,-20,22,-23,39r135,0"},"\u011c":{"d":"73,-229v-5,5,-12,3,-13,-4v13,-18,36,-29,52,-44r52,40v4,8,-7,15,-13,8r-39,-29xm194,-91v10,-2,12,12,5,14v-1,0,-5,1,-11,1r0,63v-65,40,-173,13,-166,-76v-15,-96,78,-152,151,-102v-3,-17,15,-19,15,-5v0,14,6,40,-7,43v-5,0,-7,-3,-7,-9v-2,-21,-36,-34,-60,-34v-55,1,-77,44,-77,107v0,70,80,99,136,67r0,-54r-50,0v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7r71,0"},"\u011d":{"d":"67,-182v-6,6,-13,2,-14,-5v13,-18,36,-28,53,-43r52,40v2,8,-5,14,-13,8r-39,-30xm22,-81v0,-70,98,-107,136,-44r0,-27v14,2,42,-6,44,7v2,12,-19,7,-30,8v-6,82,28,205,-60,205v-17,0,-48,7,-51,-8v4,-14,36,-6,52,-7v42,-3,49,-41,45,-89v-39,62,-136,26,-136,-45xm97,-19v33,0,61,-29,61,-62v0,-33,-28,-62,-61,-62v-33,0,-60,29,-60,62v0,33,27,62,60,62"},"\u0120":{"d":"115,-266v10,0,19,9,18,18v1,9,-9,19,-18,18v-9,1,-18,-9,-18,-18v0,-9,9,-18,18,-18xm194,-91v10,-2,12,12,5,14v-1,0,-5,1,-11,1r0,63v-65,40,-173,13,-166,-76v-15,-96,78,-152,151,-102v-3,-17,15,-19,15,-5v0,14,6,40,-7,43v-5,0,-7,-3,-7,-9v-2,-21,-36,-34,-60,-34v-55,1,-77,44,-77,107v0,70,80,99,136,67r0,-54r-50,0v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7r71,0"},"\u0121":{"d":"108,-220v9,0,18,9,18,18v0,10,-9,19,-18,18v-9,1,-19,-9,-18,-18v-1,-9,9,-18,18,-18xm22,-81v0,-70,98,-107,136,-44r0,-27v14,2,42,-6,44,7v2,12,-19,7,-30,8v-6,82,28,205,-60,205v-17,0,-48,7,-51,-8v4,-14,36,-6,52,-7v42,-3,49,-41,45,-89v-39,62,-136,26,-136,-45xm97,-19v33,0,61,-29,61,-62v0,-33,-28,-62,-61,-62v-33,0,-60,29,-60,62v0,33,27,62,60,62"},"\u0122":{"d":"82,48v7,-13,38,11,42,-10v2,-11,-25,-5,-26,-15v10,-13,41,1,36,15v2,25,-43,27,-52,10xm194,-91v10,-2,12,12,5,14v-1,0,-5,1,-11,1r0,63v-65,40,-173,13,-166,-76v-15,-96,78,-152,151,-102v-3,-17,15,-19,15,-5v0,14,6,40,-7,43v-5,0,-7,-3,-7,-9v-2,-21,-36,-34,-60,-34v-55,1,-77,44,-77,107v0,70,80,99,136,67r0,-54r-50,0v-6,0,-10,-2,-10,-8v0,-6,4,-7,10,-7r71,0"},"\u0123":{"d":"120,-233v0,7,-18,20,-17,25v11,-1,18,4,18,14v0,9,-8,14,-19,14v-9,0,-14,-4,-14,-14v0,-14,21,-57,32,-39xm22,-81v0,-70,98,-107,136,-44r0,-27v14,2,42,-6,44,7v2,12,-19,7,-30,8v-6,82,28,205,-60,205v-17,0,-48,7,-51,-8v4,-14,36,-6,52,-7v42,-3,49,-41,45,-89v-39,62,-136,26,-136,-45xm97,-19v33,0,61,-29,61,-62v0,-33,-28,-62,-61,-62v-33,0,-60,29,-60,62v0,33,27,62,60,62"},"\u0124":{"d":"70,-229v-5,5,-12,3,-13,-4v13,-18,36,-29,52,-44r52,40v4,8,-7,15,-13,8r-39,-29xm128,-7v0,-12,18,-7,30,-8r0,-84r-98,0r0,84v11,1,31,-4,30,8v0,6,-4,7,-10,7r-51,0v-6,0,-10,-1,-10,-7v-1,-11,16,-7,26,-8r0,-176v-16,5,-28,-13,-9,-15v17,3,50,-8,54,8v0,11,-19,6,-30,7r0,77r98,0r0,-77v-11,-1,-29,3,-30,-7v4,-16,36,-8,54,-8v6,0,10,2,10,8v1,8,-11,7,-19,7r0,176v11,0,27,-3,27,8v-8,15,-43,4,-62,7v-6,0,-9,-2,-10,-7"},"\u0125":{"d":"159,-249v8,3,8,14,-1,15v-18,-6,-32,-18,-48,-26v-16,8,-29,20,-47,26v-10,-1,-8,-12,0,-15r47,-28xm114,-143v-30,2,-32,12,-55,35r0,93v16,-5,41,9,17,15r-48,0v-7,0,-10,-2,-10,-7v-1,-11,17,-8,27,-8r0,-191v-11,-1,-30,4,-30,-7v1,-14,30,-6,44,-8r0,91v32,-46,114,-33,114,24r0,91v16,-5,40,10,16,15r-48,0v-7,0,-10,-2,-10,-7v-1,-11,17,-8,27,-8v-3,-55,17,-132,-44,-128"},"\u0126":{"d":"45,-146v-9,0,-25,3,-24,-7v-1,-10,14,-8,24,-8r0,-30v-16,5,-28,-13,-9,-15v17,3,50,-8,54,8v0,11,-20,6,-30,7r0,30r98,0r0,-30v-11,-1,-30,4,-30,-7v4,-16,37,-8,54,-8v7,0,10,3,10,8v1,8,-11,7,-19,7r0,30v10,0,25,-2,25,8v0,10,-16,6,-25,7r0,131v16,-5,41,9,17,15r-52,0v-7,0,-10,-2,-10,-7v-1,-12,19,-7,30,-8r0,-84r-98,0r0,84v11,1,31,-4,30,8v0,5,-3,7,-10,7r-51,0v-7,0,-10,-2,-10,-7v-1,-10,16,-8,26,-8r0,-131xm60,-146r0,32r98,0r0,-32r-98,0"},"\u0127":{"d":"114,-143v-30,2,-31,12,-54,35r0,93v16,-5,40,10,16,15r-48,0v-7,0,-10,-2,-10,-7v-1,-11,17,-8,27,-8r0,-158v-12,-1,-34,4,-34,-8v0,-12,23,-5,34,-7r0,-18v-11,-1,-31,4,-30,-7v1,-15,31,-6,45,-8r0,33r55,0v7,0,10,2,10,7v0,5,-3,8,-10,8r-55,0r0,43v32,-46,113,-33,113,24r0,91v16,-5,40,10,16,15r-48,0v-7,0,-10,-2,-10,-7v-1,-11,17,-8,27,-8v-3,-55,17,-132,-44,-128"},"\u0128":{"d":"131,-237v5,5,28,-27,33,-8v-4,13,-17,21,-33,22v-10,3,-35,-19,-46,-21v-8,-4,-27,27,-33,7v2,-8,25,-23,33,-22v17,-2,32,21,46,22xm176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8"},"\u0129":{"d":"114,-191v5,4,27,-26,33,-7v-6,11,-18,19,-33,22v-10,2,-34,-19,-46,-21v-9,-4,-28,27,-34,7v1,-9,24,-24,33,-22v17,-2,32,20,47,21xm48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-7,0,-9,-3,-10,-8v9,-15,47,-3,68,-7r0,-122v-17,-3,-49,7,-53,-8"},"\u012a":{"d":"161,-243v-1,5,-4,7,-10,7r-86,0v-6,0,-9,-2,-9,-7v0,-5,3,-7,9,-7r85,0v6,0,10,2,11,7xm176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8"},"\u012b":{"d":"144,-197v0,6,-4,8,-10,8r-85,0v-7,0,-9,-3,-10,-8v1,-5,4,-7,10,-7r85,0v6,0,10,1,10,7xm48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-7,0,-9,-3,-10,-8v9,-15,47,-3,68,-7r0,-122v-17,-3,-49,7,-53,-8"},"\u012c":{"d":"55,-267v0,-5,3,-8,8,-8v12,3,5,22,18,27v20,15,63,7,65,-18v0,-6,3,-9,7,-9v5,0,8,3,8,8v0,25,-25,41,-53,41v-28,0,-52,-17,-53,-41xm176,-198v0,6,-4,7,-10,7r-51,0r0,176r51,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-116,0v-6,0,-9,-2,-10,-7v6,-16,42,-5,61,-8r0,-176v-20,-3,-53,7,-61,-7v0,-5,4,-8,10,-8r116,0v6,0,10,2,10,8"},"\u012d":{"d":"149,-220v0,52,-106,54,-106,0v0,-5,2,-8,7,-8v12,3,6,21,19,26v20,16,63,7,65,-18v0,-12,15,-9,15,0xm48,-145v0,-6,4,-7,10,-7r58,0r0,137r58,0v6,0,10,2,10,8v0,6,-4,7,-10,7r-131,0v-7,0,-9,-3,-10,-8v9,-15,47,-3,68,-7r0,-122v-17,-3,-49,7,-53,-8"},"\u012e":{"d":"144,37v-9,23,-58,17,-58,-15v0,-9,3,-16,9,-22r-45,0v-7,0,-10,-2,-10,-7v5,-16,42,-5,61,-8r0,-176r-51,0v-7,0,-10,-2,-10,-7v0,-5,3,-8,10,-8r116,0v7,0,10,3,10,8v0,5,-3,7,-10,7r-51,0r0,176r51,0v7,0,10,3,10,8v-13,20,-78,-11,-78,30v-1,21,31,18,40,8v4,0,6,2,6,6"},"\u012f":{"d":"115,-228r0,38r-21,0r0,-38r21,0xm144,37v-10,23,-58,17,-58,-15v0,-8,3,-16,9,-22r-52,0v-7,0,-10,-2,-10,-7v0,-5,3,-8,10,-8r58,0r0,-122v-17,-3,-49,7,-53,-8v0,-5,3,-7,10,-7r58,0r0,137r58,0v7,0,10,3,10,8v0,5,-3,7,-10,7v-32,2,-75,-9,-76,23v-1,21,31,18,40,8v4,0,6,2,6,6"},"\u0134":{"d":"106,-229v-5,5,-13,3,-14,-4v14,-18,36,-29,53,-44v16,16,39,25,52,44v0,7,-7,8,-13,4r-39,-29xm211,-198v-4,13,-30,5,-45,7r0,131v0,35,-32,68,-68,66v-31,-1,-47,-14,-68,-33r0,-54v0,-6,1,-10,7,-10v17,4,4,39,8,57v28,37,105,31,106,-26r0,-131r-58,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r108,0v7,0,9,3,10,8"},"\u0135":{"d":"103,-230v17,15,39,25,53,43v0,8,-8,10,-14,5r-39,-30v-15,11,-28,24,-45,33v-8,0,-9,-11,-3,-15xm41,53v46,4,89,-1,89,-43r0,-147r-88,0v-7,0,-9,-3,-9,-8v0,-5,2,-7,9,-7r103,0r0,162v0,51,-47,64,-104,58v-7,0,-9,-3,-9,-8v0,-5,2,-7,9,-7"},"\u0136":{"d":"82,48v7,-13,38,11,42,-10v2,-11,-25,-5,-26,-15v10,-13,41,1,36,15v2,25,-43,27,-52,10xm207,-7v-2,13,-26,5,-39,7v-26,-66,-29,-87,-78,-107r-30,26r0,66v13,2,37,-6,37,8v0,6,-4,7,-10,7r-62,0v-6,0,-9,-2,-9,-7v-1,-12,18,-7,29,-8r0,-176v-11,-1,-29,4,-29,-7v0,-5,3,-8,9,-8r62,0v6,0,10,2,10,8v-1,12,-25,5,-37,7r0,91r102,-91v-10,-1,-27,3,-26,-7v2,-16,36,-5,53,-8v6,0,10,2,10,8v1,7,-8,7,-16,7r-81,73v48,22,52,45,76,103v11,1,30,-4,29,8"},"\u0137":{"d":"82,48v7,-13,38,11,42,-10v2,-11,-25,-5,-26,-15v10,-13,41,1,36,15v2,25,-43,27,-52,10xm138,-7v-1,-9,11,-8,20,-8r-63,-65r-17,14r0,66v-14,-2,-42,6,-44,-7v-2,-12,18,-7,29,-8r0,-191v-11,-1,-29,4,-29,-7v0,-15,29,-6,44,-8r0,136r63,-52v-16,5,-26,-14,-8,-15v19,3,51,-7,58,7v0,11,-17,7,-28,8r-57,48r73,74v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7"},"\u0138":{"d":"100,-91v34,17,48,37,64,76v16,-5,40,10,16,15r-27,0v-14,-42,-36,-69,-66,-80r-17,14r0,51v11,1,31,-4,30,8v0,5,-3,7,-10,7r-54,0v-7,0,-10,-2,-10,-7v-1,-11,18,-7,29,-8r0,-122v-11,-1,-30,3,-29,-8v0,-5,3,-7,10,-7r54,0v7,0,10,2,10,7v1,12,-19,7,-30,8r0,52r63,-52v-16,5,-27,-14,-8,-15r48,0v7,0,10,2,10,7v1,11,-17,8,-27,8"},"\u013b":{"d":"82,48v7,-13,38,11,42,-10v2,-11,-25,-5,-26,-15v10,-13,41,1,36,15v2,25,-43,27,-52,10xm127,-198v-3,14,-31,4,-45,7r0,176r99,0r0,-58v0,-6,1,-10,7,-10v6,1,7,3,7,10r0,73r-163,0v-6,0,-9,-2,-10,-7v3,-15,31,-6,46,-8r0,-176v-15,-2,-42,6,-46,-7v0,-5,4,-8,10,-8r86,0v6,0,9,2,9,8"},"\u013c":{"d":"80,48v6,-14,39,12,41,-10v4,-11,-25,-5,-25,-15v0,-4,2,-5,7,-5v19,0,29,7,29,20v2,25,-43,27,-52,10xm48,-213v7,-17,46,-4,67,-8r0,206r58,0v7,0,11,2,11,8v0,5,-5,7,-11,7r-130,0v-6,0,-10,-1,-10,-7v0,-6,4,-8,10,-8r58,0r0,-191v-17,-3,-47,7,-53,-7"},"\u0145":{"d":"82,48v7,-13,38,11,42,-10v2,-11,-25,-5,-26,-15v10,-13,41,1,36,15v2,25,-43,27,-52,10xm203,-198v0,9,-13,7,-23,7r0,191r-19,0r-108,-184r0,169v13,2,37,-6,37,8v0,6,-4,7,-10,7v-21,0,-56,8,-65,-7v0,-10,13,-8,23,-8r0,-176v-11,-1,-30,4,-30,-7v0,-16,33,-5,49,-8r109,185r0,-170v-13,-2,-36,5,-38,-7v7,-17,44,-8,65,-8v7,0,9,3,10,8"},"\u0146":{"d":"82,48v7,-13,38,11,42,-10v2,-11,-25,-5,-26,-15v10,-13,41,1,36,15v2,25,-43,27,-52,10xm23,-145v1,-12,25,-5,37,-7r0,22v27,-41,113,-36,113,22r0,93v10,0,24,-2,22,8v-3,14,-33,4,-49,7v-6,0,-10,-1,-10,-7v-1,-10,12,-8,22,-8v-3,-54,17,-131,-42,-128v-32,2,-34,12,-56,36r0,92v11,1,28,-4,27,8v-6,15,-40,4,-58,7v-6,0,-10,-1,-10,-7v-1,-12,16,-7,27,-8r0,-122v-10,0,-24,3,-23,-8"},"\u014a":{"d":"180,-117v5,-98,-76,-97,-120,-34r0,136v12,1,22,-2,22,8v0,13,-26,5,-40,7v-13,-1,-19,2,-19,-7v0,-10,9,-7,22,-8r0,-176v-11,-1,-24,3,-23,-7v0,-13,24,-6,38,-8r0,33v46,-62,142,-46,135,49v-5,64,3,87,-19,117v-14,18,-56,17,-65,-2v3,-16,27,5,35,1v43,-11,30,-45,34,-109"},"\u014b":{"d":"117,-158v30,-2,56,23,56,50r0,118v0,44,-33,64,-82,58v-7,0,-10,-3,-10,-8v0,-12,23,-7,35,-7v66,-2,42,-98,42,-158v0,-21,-17,-39,-42,-38v-29,2,-38,15,-56,33r0,95v16,-5,41,9,17,15r-48,0v-7,0,-10,-2,-10,-7v-1,-11,17,-8,27,-8r0,-122v-10,0,-24,2,-23,-8v1,-12,25,-5,37,-7r0,22v18,-17,29,-27,57,-28"},"\u014c":{"d":"161,-243v-1,5,-4,7,-10,7r-86,0v-6,0,-9,-2,-9,-7v0,-5,3,-7,9,-7r85,0v6,0,10,2,11,7xm108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93"},"\u014d":{"d":"160,-197v0,6,-4,8,-10,8r-85,0v-7,0,-9,-3,-10,-8v1,-5,4,-7,10,-7r85,0v6,0,10,1,10,7xm108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67"},"\u014e":{"d":"55,-267v0,-5,3,-8,8,-8v12,3,5,22,18,27v20,15,63,7,65,-18v0,-6,3,-9,7,-9v5,0,8,3,8,8v0,25,-25,41,-53,41v-28,0,-52,-17,-53,-41xm108,-210v56,0,90,49,90,108v0,59,-33,108,-90,108v-51,0,-90,-51,-90,-108v0,-58,38,-108,90,-108xm108,-9v97,0,98,-187,0,-187v-43,0,-75,47,-75,94v0,48,33,92,75,93"},"\u014f":{"d":"161,-220v0,58,-105,51,-106,0v0,-5,3,-8,8,-8v12,3,5,21,18,26v20,15,63,7,65,-18v0,-6,3,-7,7,-8v5,0,8,3,8,8xm108,-158v45,0,83,38,83,82v0,43,-38,82,-83,82v-45,0,-83,-39,-83,-82v0,-43,38,-82,83,-82xm108,-9v37,0,68,-31,68,-67v0,-37,-32,-67,-68,-67v-37,0,-68,31,-68,67v0,36,32,67,68,67"},"\u0156":{"d":"80,48v6,-14,39,12,41,-10v4,-11,-25,-5,-25,-15v0,-4,2,-5,7,-5v19,0,29,7,29,20v2,25,-43,27,-52,10xm184,0v-31,-52,-37,-69,-77,-92r-47,0r0,77v13,2,37,-6,37,8v0,6,-4,7,-10,7r-62,0v-6,0,-9,-2,-10,-7v0,-12,19,-7,30,-8r0,-176v-11,-1,-29,3,-30,-7v0,-5,4,-8,10,-8r90,0v32,-1,66,27,65,57v-1,30,-22,43,-51,53v32,24,35,35,63,81v9,0,21,-2,21,8v0,11,-19,6,-29,7xm165,-149v0,-41,-55,-46,-105,-42r0,84v49,2,105,-1,105,-42"},"\u0157":{"d":"71,48v6,-14,39,12,41,-10v4,-11,-25,-5,-25,-15v10,-13,41,1,36,15v2,25,-43,27,-52,10xm38,-145v5,-14,35,-4,52,-7r0,37v29,-24,38,-36,70,-41v14,-2,51,22,28,30v-11,-2,-14,-18,-27,-15v-31,6,-38,18,-71,45r0,81r66,0v7,0,9,3,10,8v-1,5,-4,7,-10,7r-116,0v-6,0,-11,-2,-10,-7v3,-14,31,-4,46,-7r0,-123v-13,-2,-37,5,-38,-8"},"\u015c":{"d":"72,-229v-6,5,-13,3,-14,-4v13,-18,36,-29,52,-44r52,40v4,8,-7,15,-13,8r-39,-29xm40,-154v0,-54,83,-74,121,-37v-4,-16,15,-21,15,-5v0,16,7,45,-8,48v-14,-6,-5,-28,-22,-36v-38,-37,-130,18,-76,58v36,27,114,8,114,71v0,62,-100,81,-137,37v5,16,-14,26,-14,8v0,-17,-7,-46,7,-51v5,0,7,3,7,9v2,56,124,59,122,-4v-3,-67,-129,-22,-129,-98"},"\u015d":{"d":"72,-182v-6,5,-14,3,-14,-5v13,-18,36,-28,52,-43v17,15,38,26,53,43v0,8,-8,10,-14,5r-39,-30xm44,-116v1,-45,82,-53,113,-27v0,-5,2,-10,7,-9v13,0,6,23,8,35v0,6,-2,11,-8,10v-12,-2,-5,-21,-18,-26v-28,-26,-119,1,-75,35v40,13,109,5,109,56v-1,52,-94,62,-129,30v-1,8,0,11,-7,12v-14,0,-8,-26,-8,-40v0,-6,2,-10,8,-10v5,0,7,3,7,8v4,47,112,42,114,0v-7,-53,-122,-14,-121,-74"},"\u0166":{"d":"176,-101v-1,7,-4,7,-14,7r-47,0r0,79v15,3,46,-7,48,8v0,5,-2,7,-9,7r-92,0v-7,0,-10,-2,-10,-7v2,-15,33,-5,48,-8r0,-79v-19,-3,-54,7,-60,-7v5,-16,42,-5,60,-8r0,-82r-60,0r0,51v0,7,-2,10,-7,10v-5,0,-8,-3,-8,-10r0,-66r166,0r0,66v0,7,-3,10,-8,10v-5,0,-7,-3,-7,-10r0,-51r-61,0r0,82r47,0v10,1,13,1,14,8"},"\u0167":{"d":"190,-18v-22,29,-132,41,-127,-21r0,-42v-14,-2,-40,6,-42,-7v1,-14,28,-6,42,-8r0,-41v-13,-1,-37,5,-37,-8v0,-12,25,-5,37,-7v3,-17,-7,-49,7,-54v16,4,5,37,8,54r80,0v7,0,10,2,10,7v0,5,-3,8,-10,8r-80,0r0,41r54,0v7,0,10,3,10,8v0,5,-3,7,-10,7r-54,0v-1,39,-4,72,39,72v23,0,51,-9,66,-17v5,0,7,3,7,8"},"\u0168":{"d":"131,-243v5,4,28,-26,33,-7v-5,13,-18,19,-33,22v-10,2,-33,-20,-46,-21v-8,-4,-27,27,-33,7v1,-9,24,-24,33,-22v16,-2,32,21,46,21xm202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8"},"\u0169":{"d":"129,-191v5,4,27,-26,33,-7v-6,11,-18,19,-33,22v-10,2,-34,-19,-46,-21v-9,-4,-27,26,-33,7v1,-8,23,-24,32,-22v17,-2,32,20,47,21xm196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8"},"\u016a":{"d":"161,-243v-1,5,-4,7,-10,7r-86,0v-6,0,-9,-2,-9,-7v0,-5,3,-7,9,-7r85,0v6,0,10,2,11,7xm202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8"},"\u016b":{"d":"161,-197v0,5,-4,8,-10,8r-86,0v-6,0,-9,-2,-9,-8v0,-5,3,-7,9,-7r85,0v6,0,10,2,11,7xm196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8"},"\u016c":{"d":"55,-267v0,-5,3,-8,8,-8v12,3,5,22,18,27v20,15,63,7,65,-18v0,-6,3,-9,7,-9v5,0,8,3,8,8v0,25,-25,41,-53,41v-28,0,-52,-17,-53,-41xm202,-198v0,10,-14,6,-23,7r0,123v2,41,-31,75,-70,74v-43,-1,-72,-32,-72,-74r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,9,3,10,8v-2,12,-24,5,-37,7r0,123v-2,32,26,60,56,59v78,-1,54,-107,57,-182v-13,-2,-35,5,-37,-7v0,-5,3,-8,9,-8r55,0v6,0,10,2,10,8"},"\u016d":{"d":"161,-220v0,58,-105,51,-106,0v0,-5,3,-8,8,-8v12,3,5,21,18,26v20,15,63,7,65,-18v0,-6,3,-7,7,-8v5,0,8,3,8,8xm196,-7v-1,12,-24,5,-37,7r0,-22v-34,38,-113,41,-113,-20r0,-95v-11,-1,-32,4,-30,-8v2,-14,30,-4,44,-7v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-17,4,-55,-4,-28,-15r42,0r0,137v10,0,24,-2,23,8"},"\u0172":{"d":"149,37v-8,24,-62,16,-57,-15v0,-6,2,-11,5,-17v-33,-4,-60,-37,-60,-73r0,-123v-9,0,-23,2,-22,-7v0,-5,2,-8,9,-8r55,0v7,0,10,3,10,8v-1,12,-25,5,-37,7r0,123v-1,32,26,58,56,59v32,1,57,-29,57,-59r0,-123v-12,-2,-36,6,-37,-7v0,-5,2,-8,9,-8r55,0v7,0,10,3,10,8v1,9,-14,7,-23,7v-3,83,22,190,-68,197v-13,11,-8,35,12,33v11,3,22,-17,26,-2"},"\u0173":{"d":"60,-152v6,52,-21,143,32,143v24,0,47,-11,67,-33r0,-95v-13,-2,-37,5,-38,-8v4,-14,36,-4,52,-7r0,137v10,0,24,-2,23,8v0,5,-4,7,-11,7v-11,0,-23,11,-23,23v0,21,31,18,40,8v4,0,6,2,6,6v-9,23,-58,17,-58,-15v0,-8,3,-16,9,-22r0,-22v-33,37,-112,42,-113,-20r0,-95v-11,-1,-31,4,-30,-8v1,-13,30,-5,44,-7"},"\u0174":{"d":"69,-229v-5,5,-12,3,-13,-4v12,-19,36,-29,52,-44r52,40v2,8,-7,15,-13,8r-39,-29xm209,-198v1,7,-8,7,-16,7r-20,191r-23,0r-42,-146r-41,146r-23,0r-22,-191v-15,5,-21,-15,-6,-15r55,0v6,0,10,2,10,8v-2,14,-30,4,-44,7r19,174r40,-143r23,0r41,143r19,-174v-15,-2,-41,6,-45,-7v7,-17,44,-8,65,-8v6,0,10,2,10,8"},"\u0175":{"d":"69,-182v-6,6,-13,3,-13,-5v12,-19,36,-28,52,-43r52,40v2,8,-5,14,-13,8r-39,-30xm206,-145v1,8,-8,8,-17,8r-30,137r-18,0r-33,-95r-32,95r-19,0r-30,-137v-16,5,-25,-15,-7,-15v16,0,46,-7,50,7v1,12,-18,7,-29,8r27,117r31,-94r18,0r32,94r25,-117v-11,-1,-30,4,-28,-8v3,-14,34,-4,50,-7v6,0,10,1,10,7"},"\u0176":{"d":"69,-229v-5,5,-12,3,-13,-4v12,-19,36,-29,52,-44r52,40v2,8,-7,15,-13,8r-39,-29xm198,-198v1,8,-10,7,-18,7r-64,98r0,78v16,3,46,-7,48,8v0,6,-4,7,-10,7r-91,0v-6,0,-10,-1,-10,-7v2,-16,33,-5,48,-8r0,-78r-65,-98v-17,5,-27,-13,-9,-15v17,3,47,-7,51,8v-1,9,-15,7,-25,7r55,83r54,-83v-10,-1,-25,3,-24,-7v2,-16,34,-5,50,-8v6,0,10,2,10,8"},"\u0177":{"d":"79,-182v-6,6,-13,3,-13,-5v12,-19,36,-28,52,-43v17,15,38,26,53,43v-1,7,-7,10,-14,5r-39,-30xm27,60v6,-15,38,-4,56,-7r26,-53r-69,-137v-8,0,-16,-1,-14,-8v3,-15,34,-4,50,-7v6,0,10,1,10,7v1,12,-18,7,-29,8r60,121r59,-121v-16,4,-43,-6,-20,-15v17,1,63,-6,46,14v-1,0,-5,1,-10,1r-93,190v17,-4,48,6,23,15r-85,0v-6,0,-10,-2,-10,-8"},"\u017f":{"d":"188,-201v-39,-8,-90,-10,-90,26r0,160v15,2,44,-7,46,8v0,5,-3,7,-10,7r-86,0v-7,0,-10,-2,-10,-7v2,-15,31,-6,45,-8r0,-122v-14,-2,-41,6,-42,-8v2,-13,29,-5,42,-7v-6,-44,18,-68,56,-69v11,3,59,-1,57,13v0,5,-3,7,-8,7"},"\u00a4":{"d":"156,-70v6,9,36,26,16,35v-11,-4,-18,-17,-27,-24v-22,17,-52,17,-74,0v-9,8,-15,19,-27,24v-8,0,-9,-8,-4,-14r20,-21v-18,-22,-17,-52,0,-74v-7,-9,-19,-16,-24,-27v10,-19,27,10,35,16v21,-17,53,-16,74,0v9,-7,25,-35,35,-16v-5,11,-16,18,-24,27v16,22,17,53,0,74xm108,-61v24,0,46,-22,46,-46v0,-24,-22,-46,-46,-46v-24,0,-46,22,-46,46v0,24,22,46,46,46"}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Typeface © 1992 Fonderia Caratteri Svizzera Walter Fruttiger A.G. Data © 1992
 * URW. Portions © 1992 Microsoft Corp. All rights reserved.
 * 
 * Trademark:
 * Eurostile is a licensed trademark of Fonderia Caratteri Svizzera Walter
 * Fruttiger A.G.
 */
Cufon.registerFont({"w":220,"face":{"font-family":"Eurostile","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 2 2 2 5 2 4","ascent":"288","descent":"-72","x-height":"2","bbox":"-24 -312 359 75","underline-thickness":"22.8516","underline-position":"-23.9062","unicode-range":"U+0020-U+0178"},"glyphs":{" ":{"w":90},"\u00a0":{"w":90},"A":{"d":"170,-51r-121,0r-19,51r-28,0r88,-240r38,0r89,240r-28,0xm162,-71r-53,-147r-52,147r105,0","w":219},"B":{"d":"208,-69v0,98,-105,63,-185,69r0,-240v75,8,177,-32,177,64v0,27,-9,43,-30,50v25,6,38,25,38,57xm175,-179v6,-61,-77,-31,-125,-38r0,83v53,-6,134,21,125,-45xm182,-65v-4,-48,-8,-47,-62,-47r-70,0r0,89v53,-7,138,23,132,-42","w":222},"C":{"d":"109,-20v62,0,74,-3,71,-60r27,0v-1,80,-14,82,-101,82v-92,0,-90,-23,-93,-122v-4,-110,8,-122,113,-122v62,0,78,14,78,75r-27,0v0,-44,-6,-55,-52,-53v-73,3,-84,-4,-84,64v0,67,3,106,9,118v6,12,25,18,59,18","w":214},"D":{"d":"222,-130v0,91,-3,130,-81,130r-118,0r0,-240r111,0v75,2,88,28,88,110xm196,-117v0,-76,5,-100,-62,-100r-84,0r0,194r78,0v67,-2,68,-20,68,-94","w":235},"E":{"d":"40,-217r0,82r122,0r0,23r-122,0r0,89r127,0r0,23r-154,0r0,-240r154,0r0,23r-127,0","w":179},"F":{"d":"50,-217r0,84r117,0r0,23r-117,0r0,110r-27,0r0,-240r147,0r0,23r-120,0","w":175},"G":{"d":"122,-20v66,4,65,-17,63,-77r-77,0r0,-22r103,0v0,6,1,15,1,26v-3,90,-8,89,-99,95v-111,7,-100,-55,-100,-156v0,-77,21,-88,102,-88v77,0,97,2,96,72r-26,0v-1,-54,-14,-45,-75,-50v-91,-8,-71,55,-71,134v0,68,12,62,83,66","w":222},"H":{"d":"217,-240r0,240r-27,0r0,-111r-140,0r0,111r-27,0r0,-240r27,0r0,106r140,0r0,-106r27,0","w":239},"I":{"d":"50,-240r0,240r-27,0r0,-240r27,0","w":73},"J":{"d":"83,-20v44,-3,48,-8,48,-55r0,-165r27,0r0,169v-2,57,-16,70,-74,73v-67,3,-80,-29,-74,-89r26,0v1,45,-5,71,47,67","w":180},"K":{"d":"50,-240r0,105r24,0r98,-105r35,0r-110,116r123,124r-37,0r-109,-112r-24,0r0,112r-27,0r0,-240r27,0","w":217},"L":{"d":"50,-240r0,215r123,0r0,25r-150,0r0,-240r27,0","w":174},"M":{"d":"286,-240r0,240r-27,0r0,-221r-91,221r-27,0r-91,-218r0,218r-27,0r0,-240r47,0r85,205r84,-205r47,0","w":308},"N":{"d":"228,-240r0,240r-45,0r-133,-217r0,217r-27,0r0,-240r44,0r134,218r0,-218r27,0","w":250},"O":{"d":"8,-120v-3,-86,10,-126,103,-122v100,5,102,15,102,119v0,109,1,125,-102,125v-103,0,-99,-15,-103,-122xm187,-120v3,-70,3,-105,-77,-100v-88,6,-76,6,-76,100v0,94,-12,100,76,100v88,0,73,-5,77,-100"},"P":{"d":"203,-166v6,88,-75,69,-153,71r0,95r-27,0r0,-240r110,0v55,2,66,17,70,74xm177,-164v13,-79,-69,-46,-127,-53r0,100v56,-5,137,20,127,-47","w":212},"Q":{"d":"111,-242v100,0,102,15,102,119v0,40,-2,66,-5,78r24,16r-11,18r-21,-14v-13,18,-42,27,-89,27v-108,0,-103,-16,-103,-132v0,-98,7,-112,103,-112xm34,-120v0,94,-12,100,76,100v38,0,60,-7,68,-19r-71,-47r12,-18r66,43v2,-9,2,-23,2,-45v0,-105,18,-114,-76,-114v-88,0,-77,6,-77,100","w":235},"R":{"d":"207,-172v0,43,-6,58,-41,64v47,0,38,60,38,108r-27,0v-1,-46,10,-97,-45,-97r-82,0r0,97r-27,0r0,-240v80,6,184,-28,184,68xm182,-165v11,-77,-74,-45,-132,-52r0,97v55,-5,139,20,132,-45","w":224},"S":{"d":"12,-174v1,-61,23,-68,89,-68v68,0,84,3,86,67r-27,0v-1,-44,-9,-45,-55,-45v-49,0,-67,-1,-67,41v0,49,11,38,67,44v68,7,87,2,87,67v0,67,-22,68,-95,70v-69,1,-87,-11,-86,-76r27,0v-1,51,7,54,60,54v58,0,64,3,68,-50v4,-52,-49,-35,-93,-41v-41,-5,-61,-24,-61,-63","w":201},"T":{"d":"107,-215r0,215r-28,0r0,-215r-78,0r0,-25r183,0r0,25r-77,0","w":185},"U":{"d":"116,-20v57,0,70,1,70,-52r0,-168r27,0r0,168v-2,68,-21,74,-95,74v-71,0,-95,-9,-95,-74r0,-168r27,0r0,168v2,52,11,52,66,52","w":235},"V":{"d":"179,-240r29,0r-85,240r-39,0r-86,-240r29,0r77,218","w":205},"W":{"d":"359,-240r-76,240r-41,0r-63,-216r-64,216r-41,0r-73,-240r27,0r66,219r65,-219r40,0r64,219r67,-219r29,0","w":359},"X":{"d":"205,-240r-77,116r83,124r-32,0r-73,-110r-75,110r-33,0r86,-124r-79,-116r33,0r68,103r67,-103r32,0","w":209},"Y":{"d":"204,-240r-90,140r0,100r-27,0r0,-100r-89,-140r32,0r71,112r71,-112r32,0","w":202},"Z":{"d":"192,-240r0,23r-151,194r155,0r0,23r-188,0r0,-23r151,-194r-146,0r0,-23r179,0","w":204},"\u00c6":{"d":"197,-217r0,82r120,0r0,23r-120,0r0,89r125,0r0,23r-152,0r0,-50r-112,0r-28,50r-32,0r134,-240r190,0r0,23r-125,0xm170,-73r0,-144r-22,0r-78,144r100,0","w":334},"\u0152":{"d":"13,-92v0,-127,-6,-150,98,-150v43,0,70,9,80,27r0,-23r152,0r0,23r-126,0r0,80r121,0r0,23r-121,0r0,88r126,0r0,23r-152,0r0,-23v-11,17,-35,26,-72,26v-88,-2,-106,-9,-106,-94xm112,-20v64,-3,77,-2,77,-61v0,-44,12,-116,-18,-132v-9,-5,-33,-7,-69,-7v-84,0,-63,40,-63,131v0,55,9,72,73,69","w":355},"\u00d8":{"d":"216,-129v0,115,7,131,-102,131v-46,0,-76,-8,-89,-25r-21,22r0,-27r13,-13v-4,-14,-6,-41,-6,-82v0,-107,2,-119,107,-119v43,0,71,8,82,24r23,-22r0,26r-14,14v4,14,7,37,7,71xm124,-20v56,0,66,-10,65,-66r-2,-92r-142,137v17,26,27,21,79,21xm106,-220v-69,0,-69,8,-69,79v0,38,0,64,2,78r142,-137v-16,-24,-27,-20,-75,-20","w":226},"\u00c7":{"d":"109,-20v62,0,74,-3,71,-60r27,0v-1,80,-14,82,-101,82v-92,0,-90,-23,-93,-122v-4,-110,8,-122,113,-122v62,0,78,14,78,75r-27,0v0,-44,-6,-55,-52,-53v-73,3,-84,-4,-84,64v0,67,3,106,9,118v6,12,25,18,59,18xm113,18r19,11r-28,39r-16,-9","w":214},"a":{"d":"134,-85v3,-38,4,-71,-42,-66v-32,3,-47,7,-45,30r-24,0v1,-44,18,-50,65,-50v53,0,72,9,72,60r0,111r-25,0v0,-6,3,-14,1,-18v-9,14,-28,20,-57,20v-42,0,-63,-17,-63,-51v0,-44,17,-53,65,-53v30,0,47,5,53,17xm136,-50v-1,-30,-16,-33,-49,-33v-34,0,-46,1,-46,31v0,31,11,34,43,34v35,0,52,-11,52,-32","w":183},"b":{"d":"167,-82v0,61,-12,83,-69,84v-27,1,-42,-9,-53,-23r1,21r-24,0r0,-240r24,0r1,94v6,-16,24,-25,55,-25v56,0,65,27,65,89xm141,-83v0,-51,-1,-67,-45,-67v-43,0,-49,15,-49,62v0,55,0,70,50,70v42,0,44,-18,44,-65","w":184},"c":{"d":"94,-18v39,0,42,-4,43,-43r25,0v3,44,-20,63,-71,63v-65,0,-74,-17,-74,-87v0,-63,11,-86,71,-86v51,0,70,9,71,58r-25,0v1,-34,-11,-37,-48,-37v-45,0,-43,15,-43,67v0,53,1,65,51,65","w":174},"d":{"d":"17,-86v0,-60,11,-85,65,-85v31,0,49,8,55,24r0,-93r25,0r0,240r-25,0v0,-7,3,-17,1,-22v-8,16,-26,24,-54,24v-59,0,-67,-26,-67,-88xm137,-89v0,-46,-6,-61,-49,-61v-42,0,-45,16,-45,63v0,50,1,69,46,69v48,0,48,-18,48,-71","w":183},"e":{"d":"91,-18v37,0,48,0,48,-33r25,0v1,45,-23,54,-72,53v-67,-1,-75,-17,-75,-88v0,-66,11,-83,71,-85v70,-2,76,23,76,92r-121,0v1,50,2,61,48,61xm139,-99v-2,-38,-4,-53,-48,-51v-43,1,-47,7,-48,51r96,0","w":180},"f":{"d":"28,0r0,-148r-26,0r0,-20r26,0v-6,-53,15,-82,69,-73r0,20v-39,-9,-48,14,-44,53r44,0r0,20r-44,0r0,148r-25,0","w":95},"g":{"d":"17,-83v0,-64,10,-85,67,-88v29,-1,45,11,55,26r-1,-23r24,0r0,179v-1,52,-20,64,-74,64v-48,0,-64,-10,-65,-55r24,0v1,32,8,31,43,34v52,5,50,-33,47,-75v-6,16,-25,23,-55,23v-56,-1,-65,-25,-65,-85xm137,-88v0,-47,-3,-62,-48,-62v-45,0,-46,15,-46,66v0,51,1,66,46,66v46,0,48,-18,48,-70","w":183},"h":{"d":"99,-150v-79,-5,-46,87,-53,150r-24,0r0,-240r24,0r1,93v6,-16,24,-24,52,-24v87,0,58,95,63,171r-25,0v-8,-55,25,-146,-38,-150","w":185},"i":{"d":"46,-240r0,28r-24,0r0,-28r24,0xm46,-168r0,168r-24,0r0,-168r24,0","w":67},"j":{"d":"45,-240r0,28r-25,0r0,-28r25,0xm45,-168r0,191v0,33,-17,45,-47,40v1,-7,-4,-20,6,-18v14,-2,16,-9,16,-30r0,-183r25,0","w":66},"k":{"d":"46,-240r0,139r11,0r60,-67r31,0r-72,77r85,91r-33,0r-72,-81r-10,0r0,81r-24,0r0,-240r24,0","w":154},"l":{"d":"46,-240r0,240r-24,0r0,-240r24,0","w":67},"m":{"d":"208,-150v-75,-6,-42,89,-49,150r-25,0r0,-118v0,-22,-12,-32,-37,-32v-69,0,-48,87,-51,150r-24,0r0,-168r24,0r0,26v12,-38,98,-39,107,0v24,-45,118,-40,118,32r0,110r-25,0r0,-112v-1,-31,-8,-35,-38,-38","w":297},"n":{"d":"138,-107v1,-33,-6,-43,-40,-43v-74,0,-47,87,-52,150r-24,0r0,-168r23,0r0,23v8,-17,26,-26,56,-26v92,0,54,98,62,171r-25,0r0,-107","w":185},"o":{"d":"17,-84v0,-70,7,-87,74,-87v67,0,74,16,74,87v0,70,-6,86,-74,86v-67,0,-74,-16,-74,-86xm140,-84v0,-56,2,-66,-49,-66v-51,0,-48,11,-48,66v0,55,-3,66,48,66v51,0,49,-10,49,-66","w":182},"p":{"d":"166,-82v0,59,-10,82,-64,84v-29,1,-45,-8,-56,-22r0,92r-24,0r0,-240r24,0v0,7,-2,17,0,22v9,-16,27,-25,55,-25v57,1,65,27,65,89xm141,-82v0,-52,-1,-68,-47,-68v-46,0,-47,16,-47,67v0,48,4,65,48,65v44,0,46,-16,46,-64","w":183},"q":{"d":"17,-84v0,-60,11,-86,66,-87v28,-1,45,10,56,24r-2,-21r25,0r0,240r-25,0r0,-93v-7,16,-26,23,-55,23v-55,-1,-65,-27,-65,-86xm137,-80v0,-55,-1,-70,-50,-70v-43,0,-44,19,-44,68v0,47,2,64,45,64v43,0,49,-15,49,-62","w":183},"r":{"d":"24,-168r25,0v0,6,-4,15,-2,20v23,-41,109,-30,94,36r-24,0v4,-23,-2,-40,-27,-40v-60,0,-36,95,-41,152r-25,0r0,-168","w":143},"s":{"d":"15,-123v0,-45,20,-48,70,-48v48,0,69,13,67,47r-25,0v-1,-30,-10,-26,-44,-26v-32,0,-40,-1,-42,26v-2,34,39,26,70,29v30,2,46,18,46,48v-1,44,-22,49,-71,49v-52,0,-73,-6,-72,-55r26,0v-1,30,8,36,41,35v35,-1,50,0,50,-30v0,-18,-8,-27,-24,-27v-62,-3,-92,3,-92,-48","w":170},"t":{"d":"111,-168r0,20r-65,0r0,103v0,18,8,27,24,27v23,1,26,-18,24,-42r23,0v3,39,-11,62,-47,62v-74,0,-42,-88,-49,-150r-23,0r0,-20r23,0r0,-40r25,0r0,40r65,0","w":117},"u":{"d":"83,-18v76,7,44,-88,51,-150r25,0r0,168r-25,0v0,-7,3,-17,1,-22v-22,41,-113,32,-113,-34r0,-112r24,0r0,112v1,30,7,35,37,38","w":182},"v":{"d":"146,-168r-56,168r-36,0r-55,-168r25,0r49,149r46,-149r27,0","w":144},"w":{"d":"240,-168r-47,168r-36,0r-37,-150r-36,150r-37,0r-46,-168r26,0r39,151r37,-151r36,0r37,151r38,-151r26,0","w":241},"x":{"d":"140,-168r-54,79r61,89r-30,0r-44,-68r-45,68r-29,0r61,-88r-55,-80r30,0r38,61r38,-61r29,0","w":145},"y":{"d":"141,-168v-23,73,-37,170,-70,229v-10,11,-27,16,-47,13r0,-20v30,10,38,-26,45,-54r-9,0r-61,-168r26,0r52,150r38,-150r26,0","w":139},"z":{"d":"16,-168r121,0r0,24r-100,124r100,0r0,20r-129,0r0,-23r100,-125r-92,0r0,-20","w":145},"\u00e6":{"d":"209,-171v66,-1,72,24,72,90r-120,0v1,50,1,63,51,63v34,0,45,-2,44,-33r25,0v2,39,-21,52,-72,53v-34,0,-55,-9,-62,-28v-7,19,-28,28,-61,28v-47,0,-70,-17,-70,-51v0,-44,21,-50,68,-51v27,0,45,6,52,17v0,-42,5,-73,-45,-68v-30,3,-44,7,-43,28r-26,0v4,-43,16,-48,63,-48v37,0,59,8,65,22v8,-14,28,-22,59,-22xm210,-150v-39,0,-50,9,-49,48r95,0v1,-38,-7,-49,-46,-48xm137,-50v0,-30,-18,-30,-54,-30v-28,0,-42,10,-42,30v0,30,14,32,47,32v32,0,49,-11,49,-32","w":298},"\u0153":{"d":"212,-171v65,-1,73,24,72,90r-119,0v0,46,2,65,49,63v34,-1,45,-1,45,-33r25,0v-2,51,-20,51,-77,53v-28,0,-47,-7,-55,-23v-7,16,-28,23,-62,23v-69,-1,-73,-17,-73,-89v0,-66,8,-84,70,-84v38,0,60,9,65,25v7,-16,27,-25,60,-25xm259,-102v0,-40,-6,-48,-44,-48v-43,0,-49,6,-50,48r94,0xm140,-84v0,-56,2,-66,-49,-66v-51,0,-48,10,-48,66v0,56,-3,66,48,66v51,0,49,-10,49,-66","w":301},"\u00f8":{"d":"165,-87v-2,70,-5,89,-70,89v-33,0,-54,-5,-64,-16r-21,20r0,-23r12,-11v-4,-11,-5,-31,-5,-56v3,-70,7,-87,75,-87v31,0,51,6,60,18r20,-19r0,23r-12,11v4,11,5,28,5,51xm87,-18v67,0,50,-40,51,-99r-89,86v5,9,18,13,38,13xm95,-150v-55,2,-49,8,-52,66v0,13,0,25,1,35r90,-87v-5,-10,-18,-14,-39,-14","w":182},"\u00df":{"d":"129,-191v-3,-29,-9,-30,-42,-31v-26,0,-40,11,-40,34r0,188r-24,0r0,-192v0,-33,21,-50,65,-50v71,0,90,71,36,87v38,10,44,24,44,74v0,56,-7,81,-56,83v-33,0,-49,-17,-48,-53v8,2,25,-5,25,5v0,19,8,28,23,28v34,0,28,-20,30,-63v3,-57,-16,-65,-69,-63r0,-21v27,0,58,-4,56,-26","w":188},"\u0131":{"d":"46,-168r0,168r-24,0r0,-168r24,0","w":67},"\u00e7":{"d":"94,-18v39,0,42,-4,43,-43r25,0v3,44,-20,63,-71,63v-65,0,-74,-17,-74,-87v0,-63,11,-86,71,-86v51,0,70,9,71,58r-25,0v1,-34,-11,-37,-48,-37v-45,0,-43,15,-43,67v0,53,1,65,51,65xm89,18r17,9r-24,34r-14,-7","w":174},"1":{"d":"142,-240r0,240r-27,0r0,-220r-61,68r-17,-16r66,-72r39,0"},"2":{"d":"111,-242v64,1,82,12,82,75v0,65,-18,70,-83,78v-60,7,-63,3,-63,66r145,0r0,23r-172,0v0,-34,-4,-83,14,-95v7,-15,111,-17,124,-31v6,-6,9,-20,9,-44v-1,-45,-10,-49,-55,-50v-59,-2,-68,6,-66,62r-26,0v-2,-70,17,-86,91,-84"},"3":{"d":"172,-69v3,-51,-36,-40,-84,-42r0,-23v55,-3,80,9,79,-40v-1,-49,-8,-44,-61,-46v-54,-2,-58,4,-58,54r-26,0v2,-62,14,-78,84,-76v64,1,86,2,87,60v1,42,-8,51,-40,59v36,6,45,14,45,56v0,62,-22,68,-88,69v-76,1,-93,-9,-92,-80r27,0v-1,58,6,58,69,58v48,0,56,-3,58,-49"},"4":{"d":"171,-240r0,162r36,0r0,23r-36,0r0,55r-27,0r0,-55r-135,0r0,-32r120,-153r42,0xm144,-78r-1,-145r-111,145r112,0"},"5":{"d":"173,-85v0,-52,-9,-55,-61,-56v-37,0,-56,8,-60,23r-24,0r0,-122r161,0r0,23r-134,0v0,24,-4,51,-1,73v9,-13,30,-20,63,-20v64,1,82,15,82,78v0,75,-11,88,-86,88v-69,0,-91,-7,-90,-71r26,0v1,50,9,49,62,49v61,0,62,-4,62,-65"},"6":{"d":"102,-242v63,0,89,5,88,63r-26,0v3,-36,-10,-41,-49,-41v-53,0,-69,-2,-69,45r0,49v10,-14,33,-22,69,-22v63,1,82,12,82,73v0,68,-17,77,-89,77v-74,0,-89,-11,-90,-84r0,-82v2,-67,16,-78,84,-78xm171,-71v0,-52,-8,-54,-64,-54v-47,0,-64,0,-64,42v0,58,6,63,65,63v53,0,63,-1,63,-51"},"7":{"d":"192,-240r0,35r-116,205r-32,0r126,-217r-153,0r0,-23r175,0"},"8":{"d":"195,-179v0,39,-10,46,-39,55v34,8,41,14,41,55v0,65,-17,71,-86,71v-73,0,-91,-1,-93,-68v-1,-43,9,-49,42,-59v-33,-8,-39,-17,-39,-56v0,-57,21,-61,84,-61v69,0,88,0,90,63xm169,-180v0,-44,-13,-40,-63,-40v-50,0,-59,-4,-59,43v0,48,14,42,71,42v43,0,51,-3,51,-45xm172,-71v0,-43,-17,-41,-66,-41v-52,0,-58,-2,-62,45v-5,60,48,49,96,45v29,-2,32,-14,32,-49"},"9":{"d":"108,2v-65,0,-91,-3,-90,-63r26,0v-1,43,13,41,60,41v59,0,66,1,66,-58v0,-11,2,-27,-1,-36v-9,14,-33,21,-72,21v-59,-1,-77,-13,-77,-71v0,-68,16,-78,87,-78v72,0,90,10,90,79r0,90v-1,67,-19,75,-89,75xm170,-160v0,-58,-6,-60,-66,-60v-52,0,-58,2,-58,52v0,49,6,52,55,52v55,0,69,4,69,-44"},"0":{"d":"16,-129v0,-101,-2,-113,94,-113v102,0,94,12,94,122v0,107,1,122,-94,122v-99,0,-94,-17,-94,-131xm179,-120v0,-89,13,-100,-69,-100v-81,0,-68,11,-68,100v0,89,-13,100,68,100v82,0,69,-11,69,-100"},"\u00a3":{"d":"128,-220v-72,0,-51,47,-55,103r69,0r0,23r-69,0v1,33,5,60,-20,73r156,-1r0,22r-187,0r0,-21v21,-2,26,-39,24,-73r-29,0r0,-23r29,0r1,-77v4,-32,30,-48,76,-48v62,-1,86,15,81,74r-26,0v0,-44,-4,-52,-50,-52"},"$":{"d":"179,-173v3,-44,-15,-44,-58,-44r0,84v66,1,89,6,90,65v1,59,-28,68,-90,68r0,27r-20,0r0,-27v-60,3,-92,-10,-91,-75r26,0v-3,52,13,53,65,53r0,-89v-67,-2,-89,-2,-89,-64v0,-59,24,-64,89,-65r0,-22r20,0r0,22v61,-2,89,10,84,67r-26,0xm38,-179v0,46,19,43,63,46r0,-84v-42,1,-63,-2,-63,38xm185,-68v0,-43,-19,-40,-64,-42r0,88v38,9,64,-8,64,-46"},"\u00a2":{"d":"96,-24v-57,-2,-64,-29,-64,-92v0,-54,21,-81,64,-81r0,-23r20,0r0,23v42,0,61,18,59,57r-24,0v-2,-31,-5,-34,-35,-37r0,132v29,0,40,-14,38,-42r25,0v2,42,-20,63,-63,63r0,25r-20,0r0,-25xm96,-177v-37,3,-38,17,-38,60v0,51,-2,68,38,72r0,-132"},"\u00a5":{"d":"162,-164r32,0r0,23r-46,0r-22,35r68,0r0,23r-71,0r0,83r-27,0r0,-83r-70,0r0,-23r66,0r-21,-35r-45,0r0,-23r32,0r-46,-76r32,0r66,112r66,-112r33,0"},".":{"d":"49,-32r0,32r-27,0r0,-32r27,0","w":70},":":{"d":"49,-32r0,32r-27,0r0,-32r27,0xm49,-168r0,32r-27,0r0,-32r27,0","w":70},",":{"d":"50,-32v0,0,5,74,-31,67r0,-13v12,-1,16,-9,15,-22r-11,0r0,-32r27,0","w":71},";":{"d":"43,-32v0,0,5,74,-31,67r0,-13v12,-1,16,-9,15,-22r-12,0r0,-32r28,0xm41,-168r0,32r-27,0r0,-32r27,0","w":64},"!":{"d":"57,-32r0,32r-27,0r0,-32r27,0xm58,-240r-4,174r-23,0r-3,-174r30,0","w":86},"\u00a1":{"d":"28,-136r0,-32r28,0r0,32r-28,0xm28,72r4,-174r23,0r3,174r-30,0","w":86},"?":{"d":"95,-32r0,32r-27,0r0,-32r27,0xm99,-242v54,1,69,12,70,65v0,45,-17,63,-49,72v-19,5,-25,17,-24,36r-27,0v-12,-71,77,-39,74,-106v-1,-42,-5,-44,-48,-45v-46,-1,-52,11,-50,55r-26,0v1,-64,12,-78,80,-77","w":187},"\u00bf":{"d":"91,-136r0,-32r27,0r0,32r-27,0xm88,75v-54,0,-69,-13,-70,-66v0,-45,17,-63,49,-72v19,-5,25,-17,24,-36r26,0v14,73,-76,37,-73,106v1,42,5,44,48,45v48,1,50,-8,50,-55r26,0v-1,64,-13,78,-80,78","w":187},"\u00bb":{"d":"99,-184r44,92r-49,92r-17,-12r42,-80r-38,-81xm40,-184r44,92r-49,92r-17,-12r42,-80r-38,-81","w":160},"\u00ab":{"d":"61,-184r19,11r-38,81r42,80r-18,12r-48,-92xm120,-184r19,11r-38,81r42,80r-18,12r-48,-92","w":160},"\/":{"d":"207,-240r-211,312r-20,0r211,-312r20,0","w":232},"-":{"d":"1,-99r74,0r0,23r-75,0","w":74},"\u00ad":{"d":"1,-99r74,0r0,23r-75,0","w":74},"(":{"d":"46,-127v10,79,-28,183,36,177r0,23v-28,1,-51,-5,-56,-22v-10,-13,-11,-257,0,-270v5,-17,27,-23,56,-22r0,23v-50,4,-30,24,-36,91","w":99},")":{"d":"54,-127v-6,-68,14,-86,-36,-91r0,-23v28,-1,51,5,56,22v10,13,11,257,0,270v-5,17,-27,23,-56,22r0,-23v49,-5,34,-24,35,-91","w":99},"[":{"d":"20,-240r61,0r0,20r-34,0r0,272r34,0r0,20r-61,0r0,-312","w":99},"]":{"d":"80,72r-62,0r0,-20r35,0r0,-272r-35,0r0,-20r62,0r0,312","w":99},"&":{"d":"118,-215v-56,-10,-49,44,-23,66r90,76r0,-33r27,0v0,18,1,38,-2,53r42,34r-15,19r-36,-29v-10,21,-36,31,-80,31v-79,0,-98,-3,-100,-76v-1,-47,12,-56,49,-64v-15,-12,-22,-26,-22,-42v1,-49,18,-57,71,-58v57,-1,72,16,70,72r-27,0v0,-41,-1,-50,-44,-49xm46,-73v0,56,10,53,70,53v38,0,59,-9,64,-26r-94,-77v-35,10,-40,8,-40,50","w":252},"\u00a7":{"d":"36,-183v2,-52,14,-59,70,-59v69,0,80,-1,82,63r-23,0v2,-40,-13,-41,-56,-41v-38,0,-48,-2,-49,32v-1,47,55,38,87,52v34,15,46,9,46,47v0,25,-8,42,-23,48v16,8,24,23,24,47v-2,59,-20,63,-84,63v-66,0,-81,-4,-82,-67r25,0v0,44,7,44,53,44v51,0,65,5,65,-38v0,-28,-9,-25,-34,-35v-43,-17,-110,-4,-110,-71v0,-24,9,-38,27,-42v-12,-8,-18,-22,-18,-43xm50,-98v0,39,64,38,99,48v14,0,21,-12,21,-36v-6,-30,-66,-36,-98,-45v-14,0,-22,10,-22,33"},"*":{"d":"175,-189r-50,19r30,42r-14,10r-30,-43r-32,43r-14,-10r30,-42r-49,-19r6,-17r50,17r0,-51r18,0r0,51r48,-17"},"'":{"d":"37,-144r-17,0r-4,-96r25,0","w":56},"\"":{"d":"37,-144r-17,0r-4,-96r25,0xm93,-144r-18,0r-3,-96r24,0","w":112},"@":{"d":"61,-110v0,-42,7,-60,47,-60v21,0,34,5,39,16r0,-16r18,0r0,90v0,13,5,19,15,19v12,0,17,-21,17,-62v-2,-75,-4,-74,-79,-74v-85,0,-89,3,-89,87v0,90,6,94,96,94v30,0,48,-5,53,-15r12,9v-7,12,-30,18,-68,18v-95,0,-108,-10,-108,-106v0,-92,12,-102,104,-102v77,0,94,7,94,81v0,48,2,79,-32,83v-18,2,-25,-9,-30,-20v-6,14,-20,21,-43,21v-39,-2,-46,-19,-46,-63xm111,-60v40,0,36,-15,36,-60v0,-25,-11,-38,-34,-38v-34,1,-34,11,-34,49v0,36,1,49,32,49","w":226},"#":{"d":"194,-92r-3,16r-42,0r-12,76r-19,0r12,-76r-53,0r-12,76r-19,0r12,-76r-41,0r2,-16r42,0r8,-57r-41,0r3,-16r41,0r12,-75r19,0r-12,75r53,0r12,-75r19,0r-12,75r41,0r-2,16r-42,0r-8,57r42,0xm142,-149r-54,0r-8,57r53,0"},"\u00b0":{"d":"16,-194v0,-26,23,-49,50,-49v27,0,49,22,49,49v0,26,-23,48,-49,48v-26,0,-50,-22,-50,-48xm66,-228v-23,0,-35,12,-35,34v0,22,12,34,35,34v23,0,34,-12,34,-34v0,-22,-11,-34,-34,-34","w":131},"+":{"d":"98,-37r0,-71r-71,0r0,-23r71,0r0,-72r25,0r0,72r71,0r0,23r-71,0r0,71r-25,0"},"\u00f7":{"d":"110,-195v11,0,17,5,17,16v0,11,-6,17,-17,17v-11,0,-16,-6,-16,-17v0,-11,5,-16,16,-16xm110,-78v11,0,17,5,17,16v0,11,-6,17,-17,17v-11,0,-16,-6,-16,-17v0,-11,5,-16,16,-16xm27,-131r167,0r0,23r-167,0r0,-23"},"=":{"d":"27,-161r167,0r0,22r-167,0r0,-22xm27,-101r167,0r0,22r-167,0r0,-22"},"\u00b6":{"d":"17,-165v0,-100,92,-71,175,-75r0,312r-25,0r0,-289r-28,0r0,289r-24,0r0,-166v-64,2,-98,-5,-98,-71","w":221},"\u00a4":{"d":"21,-44r33,-34v-24,-31,-24,-71,0,-102r-34,-34r14,-14r34,34v33,-26,72,-25,104,0r34,-34r14,14r-34,34v24,33,24,69,0,102r34,34r-14,14r-34,-34v-32,25,-70,25,-103,0r-34,34xm181,-129v0,-33,-28,-61,-61,-61v-33,0,-61,28,-61,61v0,33,28,61,61,61v33,0,61,-28,61,-61","w":239},"{":{"d":"53,-84v31,12,20,62,22,102v0,24,11,35,33,34r0,20v-64,12,-58,-54,-57,-113v0,-18,-7,-29,-21,-33r0,-20v54,-15,-23,-163,78,-146r0,20v-66,-4,-4,114,-55,136","w":137},"}":{"d":"86,-84v-31,-11,-22,-61,-23,-101v0,-24,-10,-36,-33,-35r0,-20v64,-12,60,53,58,113v0,18,7,29,20,33r0,20v-52,17,22,164,-78,146r0,-19v66,4,4,-116,56,-137","w":137},"\u00aa":{"d":"97,-196v0,-24,0,-34,-25,-33v-19,1,-26,5,-25,18r-17,0v1,-27,10,-28,40,-30v58,-3,43,49,45,97r-18,0r1,-8v-18,16,-78,11,-72,-20v-7,-32,50,-38,71,-24xm70,-191v-17,0,-26,7,-26,18v0,12,8,18,25,18v19,0,29,-6,29,-17v0,-12,-9,-19,-28,-19xm21,-127r100,0r0,14r-100,0r0,-14","w":147},"\u00ba":{"d":"27,-193v0,-42,7,-51,47,-51v40,0,47,9,47,51v0,42,-6,50,-47,50v-41,0,-47,-8,-47,-50xm100,-193v0,-30,1,-35,-26,-35v-27,0,-27,5,-27,35v0,30,0,35,27,35v27,0,26,-5,26,-35xm24,-127r100,0r0,14r-101,0","w":147},"\u00b1":{"d":"26,-158r71,0r0,-62r27,0r0,62r71,0r0,26r-71,0r0,61r-27,0r0,-61r-71,0r0,-26xm26,-47r169,0r0,25r-169,0r0,-25"},"%":{"d":"6,-181v0,-51,5,-60,53,-60v52,0,52,5,52,60v0,53,1,62,-49,62v-54,0,-56,-6,-56,-62xm96,-160v0,-42,12,-74,-38,-68v-37,4,-37,5,-37,45v0,52,-3,49,47,51v19,0,28,-9,28,-28xm231,-240r-163,240r-16,0r162,-240r17,0xm171,-62v0,-49,5,-59,53,-59v53,0,52,5,52,60v0,53,1,62,-49,62v-54,0,-56,-8,-56,-63xm261,-40v0,-41,12,-73,-37,-68v-38,4,-38,5,-38,45v0,52,-3,49,47,51v19,0,28,-9,28,-28","w":282},"\\":{"d":"-24,-240r20,0r211,312r-20,0","w":232},"\u00a8":{"d":"71,-221r0,23r-27,0r0,-23r27,0xm136,-221r0,23r-27,0r0,-23r27,0","w":180},"\u00b4":{"d":"117,-237r13,17r-52,32r-9,-13","w":180},"`":{"d":"63,-237r48,36r-9,13r-52,-32","w":180},"\u00b8":{"d":"92,18r17,9r-24,34r-14,-7","w":180},"\u00a9":{"d":"95,-141v0,62,-13,72,38,74v36,1,43,-2,40,-33r19,0v-3,44,-8,51,-60,49v-52,-2,-55,-13,-55,-70v0,-66,1,-70,66,-70v33,0,49,14,47,45r-18,0v0,-25,-2,-30,-30,-29v-40,2,-47,-4,-47,34xm12,-120v0,-66,56,-122,122,-122v66,0,122,56,122,122v0,66,-56,122,-122,122v-66,0,-122,-56,-122,-122xm241,-120v0,-59,-48,-110,-107,-110v-59,0,-107,51,-107,110v0,59,48,110,107,110v59,0,107,-51,107,-110","w":268},"\u00ae":{"d":"79,-53r0,-137v48,2,110,-13,110,40v0,19,-6,32,-19,36v22,5,17,35,17,61r-18,0v0,-26,6,-53,-25,-53r-47,0r0,53r-18,0xm171,-146v0,-42,-43,-22,-74,-27r0,51v30,-1,74,8,74,-24xm12,-120v0,-66,56,-122,122,-122v66,0,122,56,122,122v0,66,-56,122,-122,122v-66,0,-122,-56,-122,-122xm241,-120v0,-59,-48,-110,-107,-110v-59,0,-107,51,-107,110v0,59,48,110,107,110v59,0,107,-51,107,-110","w":268},"<":{"d":"156,-204r0,24r-130,59r130,59r0,24r-156,-72r0,-22","w":155},">":{"d":"0,-38r0,-24r130,-59r-130,-59r0,-24r156,72r0,22","w":155},"\u00ac":{"d":"131,0r0,-73r-131,0r0,-23r156,0r0,96r-25,0","w":155},"^":{"d":"27,-132r-27,0r64,-109r33,0r64,109r-27,0r-54,-89","w":160},"|":{"d":"0,-240r25,0r0,300r-25,0r0,-300","w":24},"_":{"d":"0,24r180,0r0,23r-180,0r0,-23","w":180},"~":{"d":"49,-261v14,-3,63,26,76,26v12,0,23,-9,33,-26r15,9v-25,63,-82,30,-126,14v-12,0,-22,10,-32,28r-15,-10v13,-27,30,-41,49,-41","w":172},"\u00b5":{"d":"0,60r0,-233r25,0v3,62,-17,158,47,158v64,0,46,-96,48,-158r25,0r0,173r-25,0r0,-32v-16,45,-72,50,-95,10r0,82r-25,0","w":145},"\u00c4":{"d":"91,-292r0,23r-28,0r0,-23r28,0xm156,-292r0,23r-28,0r0,-23r28,0xm170,-51r-121,0r-19,51r-28,0r88,-240r38,0r89,240r-28,0xm162,-71r-53,-147r-52,147r105,0","w":219},"\u00c1":{"d":"145,-306r10,19r-54,28r-9,-14xm170,-51r-121,0r-19,51r-28,0r88,-240r38,0r89,240r-28,0xm162,-71r-53,-147r-52,147r105,0","w":219},"\u00c0":{"d":"74,-306r53,33r-9,14r-54,-28xm170,-51r-121,0r-19,51r-28,0r88,-240r38,0r89,240r-28,0xm162,-71r-53,-147r-52,147r105,0","w":219},"\u00c2":{"d":"110,-305r55,32r-7,14r-48,-22r-50,22r-6,-14xm170,-51r-121,0r-19,51r-28,0r88,-240r38,0r89,240r-28,0xm162,-71r-53,-147r-52,147r105,0","w":219},"\u00c3":{"d":"58,-274v18,-55,70,13,94,-24r14,8v-19,38,-49,18,-79,11v-5,0,-10,4,-15,13xm170,-51r-121,0r-19,51r-28,0r88,-240r38,0r89,240r-28,0xm162,-71r-53,-147r-52,147r105,0","w":219},"\u00c5":{"d":"110,-312v18,0,27,10,27,28v0,18,-9,27,-27,27v-18,0,-28,-9,-28,-27v0,-18,10,-28,28,-28xm110,-299v-10,0,-16,5,-16,15v0,10,6,15,16,15v10,0,15,-5,15,-15v0,-10,-5,-15,-15,-15xm170,-51r-121,0r-19,51r-28,0r88,-240r38,0r89,240r-28,0xm162,-71r-53,-147r-52,147r105,0","w":219},"\u00cb":{"d":"73,-292r0,23r-27,0r0,-23r27,0xm138,-292r0,23r-27,0r0,-23r27,0xm40,-217r0,82r122,0r0,23r-122,0r0,89r127,0r0,23r-154,0r0,-240r154,0r0,23r-127,0","w":179},"\u00c9":{"d":"123,-306r10,19r-54,28r-9,-14xm40,-217r0,82r122,0r0,23r-122,0r0,89r127,0r0,23r-154,0r0,-240r154,0r0,23r-127,0","w":179},"\u00c8":{"d":"64,-306r52,33r-9,14r-54,-28xm40,-217r0,82r122,0r0,23r-122,0r0,89r127,0r0,23r-154,0r0,-240r154,0r0,23r-127,0","w":179},"\u00ca":{"d":"93,-305r55,32r-8,14r-47,-22r-50,22r-7,-14xm40,-217r0,82r122,0r0,23r-122,0r0,89r127,0r0,23r-154,0r0,-240r154,0r0,23r-127,0","w":179},"\u00cf":{"d":"31,-292r0,23r-27,0r0,-23r27,0xm69,-292r0,23r-27,0r0,-23r27,0xm50,-240r0,240r-27,0r0,-240r27,0","w":73},"\u00cd":{"d":"72,-306r10,19r-54,28r-8,-14xm50,-240r0,240r-27,0r0,-240r27,0","w":73},"\u00cc":{"d":"1,-306r53,33r-9,14r-54,-28xm50,-240r0,240r-27,0r0,-240r27,0","w":73},"\u00ce":{"d":"37,-305r51,32r-8,14r-43,-22r-45,22r-6,-14xm50,-240r0,240r-27,0r0,-240r27,0","w":73},"\u00d1":{"d":"73,-274v19,-55,70,13,95,-24r14,8v-19,38,-49,18,-79,11v-5,0,-10,4,-15,13xm228,-240r0,240r-45,0r-133,-217r0,217r-27,0r0,-240r44,0r134,218r0,-218r27,0","w":250},"\u00d6":{"d":"92,-292r0,23r-27,0r0,-23r27,0xm157,-292r0,23r-27,0r0,-23r27,0xm8,-120v-3,-86,10,-126,103,-122v100,5,102,15,102,119v0,109,1,125,-102,125v-103,0,-99,-15,-103,-122xm187,-120v3,-70,3,-105,-77,-100v-88,6,-76,6,-76,100v0,94,-12,100,76,100v88,0,73,-5,77,-100"},"\u00d3":{"d":"141,-306r11,19r-55,28r-8,-14xm8,-120v-3,-86,10,-126,103,-122v100,5,102,15,102,119v0,109,1,125,-102,125v-103,0,-99,-15,-103,-122xm187,-120v3,-70,3,-105,-77,-100v-88,6,-76,6,-76,100v0,94,-12,100,76,100v88,0,73,-5,77,-100"},"\u00d2":{"d":"82,-306r53,33r-9,14r-54,-28xm8,-120v-3,-86,10,-126,103,-122v100,5,102,15,102,119v0,109,1,125,-102,125v-103,0,-99,-15,-103,-122xm187,-120v3,-70,3,-105,-77,-100v-88,6,-76,6,-76,100v0,94,-12,100,76,100v88,0,73,-5,77,-100"},"\u00d4":{"d":"111,-305r55,32r-7,14r-48,-22r-49,22r-7,-14xm8,-120v-3,-86,10,-126,103,-122v100,5,102,15,102,119v0,109,1,125,-102,125v-103,0,-99,-15,-103,-122xm187,-120v3,-70,3,-105,-77,-100v-88,6,-76,6,-76,100v0,94,-12,100,76,100v88,0,73,-5,77,-100"},"\u00d5":{"d":"60,-274v19,-55,70,12,95,-24r14,8v-19,38,-49,18,-80,11v-5,0,-9,4,-14,13xm8,-120v-3,-86,10,-126,103,-122v100,5,102,15,102,119v0,109,1,125,-102,125v-103,0,-99,-15,-103,-122xm187,-120v3,-70,3,-105,-77,-100v-88,6,-76,6,-76,100v0,94,-12,100,76,100v88,0,73,-5,77,-100"},"\u00dc":{"d":"99,-292r0,23r-27,0r0,-23r27,0xm164,-292r0,23r-27,0r0,-23r27,0xm116,-20v57,0,70,1,70,-52r0,-168r27,0r0,168v-2,68,-21,74,-95,74v-71,0,-95,-9,-95,-74r0,-168r27,0r0,168v2,52,11,52,66,52","w":235},"\u00da":{"d":"148,-306r11,19r-54,28r-9,-14xm116,-20v57,0,70,1,70,-52r0,-168r27,0r0,168v-2,68,-21,74,-95,74v-71,0,-95,-9,-95,-74r0,-168r27,0r0,168v2,52,11,52,66,52","w":235},"\u00d9":{"d":"90,-306r52,33r-9,14r-54,-28xm116,-20v57,0,70,1,70,-52r0,-168r27,0r0,168v-2,68,-21,74,-95,74v-71,0,-95,-9,-95,-74r0,-168r27,0r0,168v2,52,11,52,66,52","w":235},"\u00db":{"d":"119,-305r55,32r-8,14r-47,-22r-50,22r-7,-14xm116,-20v57,0,70,1,70,-52r0,-168r27,0r0,168v-2,68,-21,74,-95,74v-71,0,-95,-9,-95,-74r0,-168r27,0r0,168v2,52,11,52,66,52","w":235},"\u0178":{"d":"82,-292r0,23r-27,0r0,-23r27,0xm147,-292r0,23r-27,0r0,-23r27,0xm204,-240r-90,140r0,100r-27,0r0,-100r-89,-140r32,0r71,112r71,-112r32,0","w":202},"\u00e4":{"d":"134,-85v3,-38,4,-71,-42,-66v-32,3,-47,7,-45,30r-24,0v1,-44,18,-50,65,-50v53,0,72,9,72,60r0,111r-25,0v0,-6,3,-14,1,-18v-9,14,-28,20,-57,20v-42,0,-63,-17,-63,-51v0,-44,17,-53,65,-53v30,0,47,5,53,17xm136,-50v-1,-30,-16,-33,-49,-33v-34,0,-46,1,-46,31v0,31,11,34,43,34v35,0,52,-11,52,-32xm70,-221r0,23r-27,0r0,-23r27,0xm135,-221r0,23r-27,0r0,-23r27,0","w":183},"\u00e1":{"d":"134,-85v3,-38,4,-71,-42,-66v-32,3,-47,7,-45,30r-24,0v1,-44,18,-50,65,-50v53,0,72,9,72,60r0,111r-25,0v0,-6,3,-14,1,-18v-9,14,-28,20,-57,20v-42,0,-63,-17,-63,-51v0,-44,17,-53,65,-53v30,0,47,5,53,17xm136,-50v-1,-30,-16,-33,-49,-33v-34,0,-46,1,-46,31v0,31,11,34,43,34v35,0,52,-11,52,-32xm119,-237r13,17r-52,32r-9,-13","w":183},"\u00e0":{"d":"134,-85v3,-38,4,-71,-42,-66v-32,3,-47,7,-45,30r-24,0v1,-44,18,-50,65,-50v53,0,72,9,72,60r0,111r-25,0v0,-6,3,-14,1,-18v-9,14,-28,20,-57,20v-42,0,-63,-17,-63,-51v0,-44,17,-53,65,-53v30,0,47,5,53,17xm136,-50v-1,-30,-16,-33,-49,-33v-34,0,-46,1,-46,31v0,31,11,34,43,34v35,0,52,-11,52,-32xm65,-237r48,36r-9,13r-52,-32","w":183},"\u00e2":{"d":"89,-238r47,37r-10,12r-37,-26r-36,26r-10,-12xm134,-85v3,-38,4,-71,-42,-66v-32,3,-47,7,-45,30r-24,0v1,-44,18,-50,65,-50v53,0,72,9,72,60r0,111r-25,0v0,-6,3,-14,1,-18v-9,14,-28,20,-57,20v-42,0,-63,-17,-63,-51v0,-44,17,-53,65,-53v30,0,47,5,53,17xm136,-50v-1,-30,-16,-33,-49,-33v-34,0,-46,1,-46,31v0,31,11,34,43,34v35,0,52,-11,52,-32","w":183},"\u00e3":{"d":"134,-85v3,-38,4,-71,-42,-66v-32,3,-47,7,-45,30r-24,0v1,-44,18,-50,65,-50v53,0,72,9,72,60r0,111r-25,0v0,-6,3,-14,1,-18v-9,14,-28,20,-57,20v-42,0,-63,-17,-63,-51v0,-44,17,-53,65,-53v30,0,47,5,53,17xm136,-49v-1,-30,-16,-33,-49,-33v-34,0,-46,1,-46,31v0,31,10,32,45,33v33,0,50,-10,50,-31xm43,-203v15,-35,45,-17,70,-10v5,0,9,-3,13,-11r14,8v-15,37,-43,17,-69,10v-5,0,-10,4,-14,12","w":183},"\u00e5":{"d":"89,-240v18,0,28,10,28,28v0,18,-10,27,-28,27v-18,0,-27,-9,-27,-27v0,-18,9,-28,27,-28xm89,-227v-10,0,-15,5,-15,15v0,10,5,15,15,15v10,0,16,-5,16,-15v0,-10,-6,-15,-16,-15xm134,-85v3,-38,4,-71,-42,-66v-32,3,-47,7,-45,30r-24,0v1,-44,18,-50,65,-50v53,0,72,9,72,60r0,111r-25,0v0,-6,3,-14,1,-18v-9,14,-28,20,-57,20v-42,0,-63,-17,-63,-51v0,-44,17,-53,65,-53v30,0,47,5,53,17xm136,-50v-1,-30,-16,-33,-49,-33v-34,0,-46,1,-46,31v0,31,11,34,43,34v35,0,52,-11,52,-32","w":183},"\u00eb":{"d":"91,-18v37,0,48,0,48,-33r25,0v1,45,-23,54,-72,53v-67,-1,-75,-17,-75,-88v0,-66,11,-83,71,-85v70,-2,76,23,76,92r-121,0v1,50,2,61,48,61xm139,-99v-2,-38,-4,-53,-48,-51v-43,1,-47,7,-48,51r96,0xm74,-221r0,23r-27,0r0,-23r27,0xm139,-221r0,23r-27,0r0,-23r27,0","w":180},"\u00e9":{"d":"91,-18v37,0,48,0,48,-33r25,0v1,45,-23,54,-72,53v-67,-1,-75,-17,-75,-88v0,-66,11,-83,71,-85v70,-2,76,23,76,92r-121,0v1,50,2,61,48,61xm139,-99v-2,-38,-4,-53,-48,-51v-43,1,-47,7,-48,51r96,0xm120,-237r13,17r-52,32r-9,-13","w":180},"\u00e8":{"d":"91,-18v37,0,48,0,48,-33r25,0v1,45,-23,54,-72,53v-67,-1,-75,-17,-75,-88v0,-66,11,-83,71,-85v70,-2,76,23,76,92r-121,0v1,50,2,61,48,61xm139,-99v-2,-38,-4,-53,-48,-51v-43,1,-47,7,-48,51r96,0xm66,-237r48,36r-9,13r-52,-32","w":180},"\u00ea":{"d":"93,-238r46,37r-10,12r-36,-26r-36,26r-10,-12xm91,-18v37,0,48,0,48,-33r25,0v1,45,-23,54,-72,53v-67,-1,-75,-17,-75,-88v0,-66,11,-83,71,-85v70,-2,76,23,76,92r-121,0v1,50,2,61,48,61xm139,-99v-2,-38,-4,-53,-48,-51v-43,1,-47,7,-48,51r96,0","w":180},"\u00ef":{"d":"24,-221r0,23r-27,0r0,-23r27,0xm71,-221r0,23r-27,0r0,-23r27,0xm46,-168r0,168r-24,0r0,-168r24,0","w":67},"\u00ed":{"d":"46,-168r0,168r-24,0r0,-168r24,0xm63,-237r13,17r-52,32r-9,-13","w":67},"\u00ec":{"d":"46,-168r0,168r-24,0r0,-168r24,0xm4,-237r48,36r-9,13r-52,-32","w":67},"\u00ee":{"d":"46,-168r0,168r-24,0r0,-168r24,0xm34,-238r41,37r-10,12r-31,-26r-32,26r-10,-12","w":67},"\u00f1":{"d":"46,-203v15,-35,45,-17,70,-10v5,0,10,-3,14,-11r14,8v-15,37,-44,16,-70,10v-5,0,-10,4,-14,12xm138,-107v1,-33,-6,-43,-40,-43v-74,0,-47,87,-52,150r-24,0r0,-168r23,0r0,23v8,-17,26,-26,56,-26v92,0,54,98,62,171r-25,0r0,-107","w":185},"\u00f6":{"d":"17,-84v0,-70,7,-87,74,-87v67,0,74,16,74,87v0,70,-6,86,-74,86v-67,0,-74,-16,-74,-86xm140,-84v0,-56,2,-66,-49,-66v-51,0,-48,11,-48,66v0,55,-3,66,48,66v51,0,49,-10,49,-66xm72,-221r0,23r-27,0r0,-23r27,0xm137,-221r0,23r-27,0r0,-23r27,0","w":182},"\u00f3":{"d":"17,-84v0,-70,7,-87,74,-87v67,0,74,16,74,87v0,70,-6,86,-74,86v-67,0,-74,-16,-74,-86xm140,-84v0,-56,2,-66,-49,-66v-51,0,-48,11,-48,66v0,55,-3,66,48,66v51,0,49,-10,49,-66xm118,-237r13,17r-52,32r-9,-13","w":182},"\u00f2":{"d":"17,-84v0,-70,7,-87,74,-87v67,0,74,16,74,87v0,70,-6,86,-74,86v-67,0,-74,-16,-74,-86xm140,-84v0,-56,2,-66,-49,-66v-51,0,-48,11,-48,66v0,55,-3,66,48,66v51,0,49,-10,49,-66xm67,-237r48,36r-9,13r-52,-32","w":182},"\u00f4":{"d":"91,-238r46,37r-10,12r-36,-26r-36,26r-10,-12xm17,-84v0,-70,7,-87,74,-87v67,0,74,16,74,87v0,70,-6,86,-74,86v-67,0,-74,-16,-74,-86xm140,-84v0,-56,2,-66,-49,-66v-51,0,-48,11,-48,66v0,55,-3,66,48,66v51,0,49,-10,49,-66","w":182},"\u00f5":{"d":"46,-203v15,-35,45,-17,70,-10v5,0,9,-3,13,-11r14,8v-15,37,-43,17,-69,10v-5,0,-10,4,-14,12xm17,-84v0,-70,7,-87,74,-87v67,0,74,16,74,87v0,70,-6,86,-74,86v-67,0,-74,-16,-74,-86xm140,-84v0,-56,2,-66,-49,-66v-51,0,-48,11,-48,66v0,55,-3,66,48,66v51,0,49,-10,49,-66","w":182},"\u00fc":{"d":"83,-18v76,7,44,-88,51,-150r25,0r0,168r-25,0v0,-7,3,-17,1,-22v-22,41,-113,32,-113,-34r0,-112r24,0r0,112v1,30,7,35,37,38xm72,-221r0,23r-27,0r0,-23r27,0xm137,-221r0,23r-27,0r0,-23r27,0","w":182},"\u00fa":{"d":"83,-18v76,7,44,-88,51,-150r25,0r0,168r-25,0v0,-7,3,-17,1,-22v-22,41,-113,32,-113,-34r0,-112r24,0r0,112v1,30,7,35,37,38xm118,-237r13,17r-52,32r-9,-13","w":182},"\u00f9":{"d":"83,-18v76,7,44,-88,51,-150r25,0r0,168r-25,0v0,-7,3,-17,1,-22v-22,41,-113,32,-113,-34r0,-112r24,0r0,112v1,30,7,35,37,38xm64,-237r48,36r-9,13r-52,-32","w":182},"\u00fb":{"d":"91,-238r46,37r-9,12r-37,-26r-36,26r-10,-12xm83,-18v76,7,44,-88,51,-150r25,0r0,168r-25,0v0,-7,3,-17,1,-22v-22,41,-113,32,-113,-34r0,-112r24,0r0,112v1,30,7,35,37,38","w":182},"\u00ff":{"d":"141,-168v-23,73,-37,170,-70,229v-10,11,-27,16,-47,13r0,-20v30,10,38,-26,45,-54r-9,0r-61,-168r26,0r52,150r38,-150r26,0xm51,-221r0,23r-27,0r0,-23r27,0xm116,-221r0,23r-27,0r0,-23r27,0","w":139},"\u00d0":{"d":"222,-130v0,91,-4,130,-82,130r-117,0r0,-112r-23,0r0,-21r23,0r0,-107r111,0v75,2,88,28,88,110xm196,-117v0,-77,4,-100,-63,-100r-83,0r0,84r76,0r0,21r-76,0r0,89r78,0v67,-2,68,-20,68,-94","w":235},"\u00de":{"d":"203,-132v6,88,-76,69,-153,72r0,60r-27,0r0,-240r27,0r0,34r83,0v56,1,66,17,70,74xm177,-130v12,-78,-68,-47,-127,-54r0,101v56,-5,137,20,127,-47","w":212},"\u00f0":{"d":"17,-84v-4,-80,26,-91,98,-85r-22,-33r-34,19r-8,-14r33,-19r-17,-24r24,0r10,15r32,-18r8,15r-30,17v24,38,56,61,54,127v-1,70,-6,86,-74,86v-67,0,-71,-17,-74,-86xm140,-84v0,-56,2,-66,-49,-66v-51,0,-48,11,-48,66v0,55,-3,66,48,66v51,0,49,-10,49,-66","w":182},"\u00fe":{"d":"166,-82v0,59,-10,82,-64,84v-29,1,-45,-8,-56,-22r0,92r-24,0r0,-312r24,0r1,94v8,-16,26,-25,54,-25v56,0,65,27,65,89xm141,-82v0,-52,-1,-68,-47,-68v-46,0,-47,16,-47,67v0,48,4,65,48,65v44,0,46,-16,46,-64","w":183},"\u00b9":{"d":"92,-240r0,144r-17,0r0,-128r-38,39r-12,-11r43,-44r24,0","w":143},"\u00b2":{"d":"71,-241v43,1,55,6,55,46v0,40,-14,41,-54,46v-36,5,-38,1,-39,37r92,0r0,16r-111,0v-1,-49,1,-65,55,-69v34,-2,39,0,39,-33v0,-28,-7,-27,-36,-28v-34,-1,-40,4,-39,37r-19,0v-1,-43,13,-53,57,-52","w":145},"\u00b3":{"d":"73,-95v-48,1,-59,-6,-60,-49r19,0v-7,39,30,35,63,33v24,-8,22,-56,-16,-50r-22,0r0,-17v34,-2,51,7,51,-22v-1,-28,-6,-25,-38,-26v-33,0,-36,2,-36,32r-18,0v-1,-42,10,-48,54,-47v41,1,56,1,56,37v0,20,-7,31,-21,34v16,3,24,14,24,33v-1,37,-15,42,-56,42","w":145},"\u00d7":{"d":"94,-120r-60,-59r17,-17r59,59r60,-59r17,17r-60,59r60,60r-17,16r-60,-59r-59,59r-17,-16"},"\u00bd":{"d":"92,-240r0,144r-17,0r0,-128r-38,39r-12,-11r43,-44r24,0xm260,-240r-163,240r-18,0r162,-240r19,0xm264,-145v43,1,55,6,55,46v0,40,-14,41,-54,46v-37,4,-37,1,-38,37r92,0r0,16r-112,0v-1,-49,1,-64,55,-69v34,-3,39,1,39,-33v0,-28,-7,-26,-36,-28v-35,-2,-40,4,-39,37r-19,0v1,-41,11,-54,57,-52","w":338},"\u00bc":{"d":"92,-240r0,144r-17,0r0,-128r-38,39r-12,-11r43,-44r24,0xm260,-240r-163,240r-18,0r162,-240r19,0xm305,-144r0,95r23,0r0,16r-23,0r0,33r-18,0r0,-33r-86,0r0,-20r77,-91r27,0xm287,-49r0,-81r-68,81r68,0","w":338},"\u00be":{"d":"73,-95v-48,1,-59,-6,-60,-49r19,0v-7,39,30,35,63,33v24,-8,22,-56,-16,-50r-22,0r0,-17v34,-2,51,7,51,-22v-1,-28,-6,-25,-38,-26v-33,0,-36,2,-36,32r-18,0v-1,-42,10,-48,54,-47v41,1,56,1,56,37v0,20,-7,31,-21,34v16,3,24,14,24,33v-1,37,-15,42,-56,42xm272,-240r-163,240r-18,0r161,-240r20,0xm305,-144r0,95r22,0r0,16r-22,0r0,33r-18,0r0,-33r-86,0r0,-20r77,-91r27,0xm287,-49r0,-81r-68,81r68,0","w":338},"\u00a6":{"d":"0,-240r25,0r0,119r-25,0r0,-119xm0,-55r25,0r0,115r-25,0r0,-115","w":24},"\u0160":{"d":"101,-259r-56,-32r7,-14r49,22r48,-22r8,14xm12,-174v1,-61,23,-68,89,-68v68,0,84,3,86,67r-27,0v-1,-44,-9,-45,-55,-45v-49,0,-67,-1,-67,41v0,49,11,38,67,44v68,7,87,2,87,67v0,67,-22,68,-95,70v-69,1,-87,-11,-86,-76r27,0v-1,51,7,54,60,54v58,0,64,3,68,-50v4,-52,-49,-35,-93,-41v-41,-5,-61,-24,-61,-63","w":201},"\u00dd":{"d":"136,-306r11,19r-54,28r-9,-14xm204,-240r-90,140r0,100r-27,0r0,-100r-89,-140r32,0r71,112r71,-112r32,0","w":202},"\u0161":{"d":"85,-189r-46,-36r10,-13r36,27r36,-27r10,13xm15,-123v0,-45,20,-48,70,-48v48,0,69,13,67,47r-25,0v-1,-30,-10,-26,-44,-26v-32,0,-40,-1,-42,26v-2,34,39,26,70,29v30,2,46,18,46,48v-1,44,-22,49,-71,49v-52,0,-73,-6,-72,-55r26,0v-1,30,8,36,41,35v35,-1,50,0,50,-30v0,-18,-8,-27,-24,-27v-62,-3,-92,3,-92,-48","w":170},"\u00fd":{"d":"141,-168v-23,73,-37,170,-70,229v-10,11,-27,16,-47,13r0,-20v30,10,38,-26,45,-54r-9,0r-61,-168r26,0r52,150r38,-150r26,0xm102,-237r13,17r-52,32r-9,-13","w":139}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  (C) Copyright 1989, 1990 The Monotype Corporation Plc. All Rights Reserved.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Gill Sans","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-22 -328 375 90","underline-thickness":"18","underline-position":"-36","stemh":"29","stemv":"32","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"!":{"d":"31,-157v-5,-25,-5,-99,18,-92v14,0,20,18,20,54v0,41,-7,65,-11,100v-3,31,-14,31,-18,0xm49,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22","w":97},"\"":{"d":"87,-166v-6,-28,-11,-56,-9,-92r32,0v2,35,-3,64,-8,92r-15,0xm26,-166v-6,-28,-11,-56,-9,-92r32,0v2,35,-3,64,-8,92r-15,0","w":127},"#":{"d":"71,-222r25,0r-14,70r70,0r14,-70r26,0r-15,70r33,0r0,25r-38,0r-13,61r51,0r0,25r-56,0r-14,70r-26,0r15,-70r-70,0r-15,70r-26,0r15,-70r-33,0r0,-25r38,0r13,-61r-51,0r0,-25r56,0xm77,-127r-13,61r70,0r13,-61r-70,0","w":210},"$":{"d":"169,-215r0,39v-13,-13,-34,-24,-53,-28r0,71v82,17,90,121,0,136r0,39r-30,0r0,-39v-24,-1,-46,-12,-68,-25r0,-44v23,21,37,30,68,37r0,-78v-93,-20,-85,-116,0,-129r0,-13r30,0r0,13v16,1,40,10,53,21xm86,-143r0,-61v-41,7,-43,50,0,61xm116,-94r0,64v41,-9,40,-51,0,-64","w":195},"%":{"d":"181,-80v-15,0,-29,14,-29,29v0,16,14,28,29,28v16,0,28,-12,28,-28v0,-15,-12,-29,-28,-29xm181,-107v30,0,55,26,55,56v0,30,-25,55,-55,55v-30,0,-55,-24,-55,-55v0,-30,25,-56,55,-56xm217,-249r-162,253r-27,0r162,-253r27,0xm64,-248v30,0,55,25,55,55v0,30,-25,55,-55,55v-30,0,-55,-24,-55,-55v0,-30,25,-55,55,-55xm64,-222v-15,0,-28,14,-28,29v0,16,13,28,28,28v16,0,29,-12,29,-28v0,-15,-13,-29,-29,-29","w":244},"&":{"d":"178,-122r35,0v-7,20,-21,43,-39,64r49,58r-45,0r-28,-33v-31,28,-56,36,-78,36v-33,0,-62,-25,-62,-58v0,-30,24,-52,58,-72v-43,-34,-36,-114,35,-114v35,0,59,23,59,53v0,24,-13,44,-45,66r35,40v10,-10,21,-28,26,-40xm128,-58r-40,-46v-27,17,-43,30,-43,49v11,40,60,27,83,-3xm102,-211v-42,2,-25,50,-4,65v26,-17,32,-27,32,-40v0,-14,-12,-25,-28,-25","w":225},"(":{"d":"112,-250v-70,87,-69,246,0,333r-19,0v-91,-86,-92,-247,0,-333r19,0","w":116},")":{"d":"4,83v69,-87,70,-246,0,-333r19,0v92,86,92,246,0,333r-19,0","w":116},"*":{"d":"64,-185v-20,-11,-64,-10,-58,-36v6,-10,17,-6,24,0r36,31v2,-2,5,-4,7,-4r-9,-46v-2,-9,0,-21,12,-21v26,8,1,46,2,67v3,1,5,3,7,5r36,-32v6,-6,18,-10,24,0v8,27,-38,26,-57,36v1,2,0,6,0,9v20,10,63,9,57,36v-6,10,-17,6,-24,0r-36,-32v-3,2,-4,3,-7,4r9,47v2,9,0,21,-12,21v-27,-7,-3,-47,-3,-68v-3,-1,-4,-2,-6,-4r-37,31v-6,6,-18,10,-24,0v-6,-26,39,-25,58,-36v-1,-3,0,-5,1,-8","w":150},"+":{"d":"90,-212r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0r0,-70r-70,0r0,-30r70,0r0,-70","w":210},",":{"d":"21,42r0,-6v12,-8,16,-27,13,-40v-10,0,-17,-8,-17,-20v0,-12,9,-20,21,-20v15,0,25,14,25,35v0,21,-14,43,-42,51","w":78},"-":{"d":"102,-96r0,33r-88,0r0,-33r88,0","w":116},".":{"d":"39,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":78},"\/":{"d":"3,3r70,-252r26,0r-71,252r-25,0","w":101},"0":{"d":"169,-123v0,76,-31,126,-79,126v-48,0,-79,-50,-79,-126v0,-76,31,-126,79,-126v48,0,79,50,79,126xm134,-123v0,-58,-17,-92,-44,-92v-27,0,-44,34,-44,92v0,58,17,93,44,93v27,0,44,-35,44,-93"},"1":{"d":"108,-246r0,246r-35,0r0,-246r35,0"},"2":{"d":"12,0v31,-54,103,-94,103,-168v0,-58,-67,-60,-98,-13r0,-44v49,-48,133,-19,133,53v0,40,-21,74,-76,139r94,0r0,33r-156,0"},"3":{"d":"29,-205r0,-33v48,-26,120,-4,120,53v0,27,-10,43,-32,55v65,27,34,133,-42,133v-17,0,-34,-5,-52,-14r0,-38v33,26,92,30,94,-20v0,-24,-17,-44,-52,-42r0,-32v32,0,48,-14,48,-36v0,-40,-50,-44,-84,-26"},"4":{"d":"143,-249r0,137r27,0r0,31r-27,0r0,81r-35,0r0,-81r-104,0r0,-16r124,-152r15,0xm108,-182v-21,22,-37,47,-57,70r57,0r0,-70"},"5":{"d":"145,-246r0,32r-77,0r0,62v55,-3,90,32,90,77v0,68,-81,99,-140,63r0,-36v36,30,104,21,104,-27v0,-31,-32,-56,-86,-43r0,-128r109,0"},"6":{"d":"114,-249r21,27v-35,20,-65,56,-75,90v46,-27,107,5,107,62v0,40,-33,73,-72,73v-47,0,-79,-35,-79,-87v0,-62,34,-123,98,-165xm53,-95v-21,70,75,90,79,24v0,-38,-51,-48,-79,-24"},"7":{"d":"176,-246r-111,249r-31,-13r90,-202r-106,0r0,-34r158,0"},"8":{"d":"134,-125v62,32,33,128,-43,128v-76,0,-108,-95,-45,-128v-56,-36,-23,-124,47,-124v66,0,101,89,41,124xm130,-178v0,-21,-16,-37,-38,-37v-23,0,-39,14,-39,36v0,20,17,38,38,38v21,0,39,-17,39,-37xm133,-69v0,-22,-17,-39,-42,-39v-27,0,-44,16,-44,39v0,23,18,39,43,39v28,0,43,-18,43,-39"},"9":{"d":"67,3r-21,-26v41,-27,68,-61,75,-92v-48,29,-108,-5,-108,-61v0,-36,30,-73,75,-73v45,0,78,39,78,90v0,59,-41,127,-99,162xm48,-176v0,37,50,50,80,25v9,-34,-9,-63,-39,-64v-23,0,-41,16,-41,39"},":":{"d":"39,-165v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22xm39,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":78},";":{"d":"22,41r0,-6v15,-13,15,-25,14,-39v-12,-1,-19,-9,-19,-21v0,-14,10,-22,22,-22v42,10,24,84,-17,88xm61,-143v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22v12,0,22,10,22,22","w":78},"<":{"d":"20,-113r0,-29r170,-73r0,31r-135,57r135,56r0,31","w":210},"=":{"d":"20,-181r170,0r0,29r-170,0r0,-29xm20,-103r170,0r0,30r-170,0r0,-30","w":210},">":{"d":"190,-113r-170,73r0,-31r135,-56r-135,-57r0,-31r170,73r0,29","w":210},"?":{"d":"30,-214r16,-35v42,0,58,29,58,52v0,54,-59,97,-54,134v-56,-32,17,-91,19,-129v1,-20,-21,-28,-39,-22xm55,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":119},"@":{"d":"321,-3r32,0v-31,51,-83,79,-156,79v-111,0,-178,-60,-178,-158v0,-76,47,-180,174,-180v87,0,151,57,151,137v0,64,-51,126,-105,126v-23,0,-35,-10,-35,-30v-42,55,-118,25,-118,-50v0,-80,97,-155,145,-79r6,-27r32,0r-30,135v-3,13,1,22,12,22v14,0,67,-33,67,-98v0,-64,-54,-111,-126,-111v-84,0,-146,65,-146,152v0,85,56,135,152,135v60,0,102,-23,123,-53xm119,-77v0,31,16,51,39,51v53,0,97,-139,22,-139v-31,0,-61,43,-61,88","w":363},"A":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0","w":240},"B":{"d":"27,0r0,-246r71,0v85,-2,101,92,38,116v81,16,84,130,-25,130r-84,0xm62,-214r0,74v41,3,79,-6,76,-40v5,-29,-38,-38,-76,-34xm62,-109r0,77r45,0v41,0,52,-21,52,-39v0,-36,-52,-41,-97,-38","w":202},"C":{"d":"236,-229r0,38v-72,-51,-182,-21,-182,69v0,92,117,119,185,65r0,39v-24,13,-50,21,-89,21v-92,0,-133,-71,-133,-122v-1,-107,118,-163,219,-110","w":254},"D":{"d":"27,0r0,-246r96,0v180,2,166,246,0,246r-96,0xm63,-214r0,182r56,0v80,0,98,-61,98,-91v0,-49,-31,-91,-100,-91r-54,0","w":270},"E":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0"},"F":{"d":"158,-246r0,32r-95,0r0,68r95,0r0,32r-95,0r0,114r-36,0r0,-246r131,0","w":168},"G":{"d":"242,-121r0,104v-97,49,-226,5,-224,-104v2,-105,118,-162,219,-107r0,36v-72,-48,-183,-22,-183,70v0,75,82,112,153,83r0,-50r-47,0r0,-32r82,0","w":266},"H":{"d":"235,-246r0,246r-35,0r0,-107r-138,0r0,107r-35,0r0,-246r35,0r0,107r138,0r0,-107r35,0","w":262},"I":{"d":"63,-246r0,246r-36,0r0,-246r36,0","w":90},"J":{"d":"63,-246r0,249v1,50,-25,86,-79,79r-6,-33v42,3,49,-15,49,-57r0,-238r36,0","w":90},"K":{"d":"103,-129r133,129r-49,0r-125,-121r0,121r-35,0r0,-246r35,0r0,113r104,-113r44,0","w":236},"L":{"d":"62,-246r0,214r111,0r0,32r-146,0r0,-246r35,0","w":176},"M":{"d":"255,-246r0,246r-35,0r-1,-191r-75,95r-6,0r-76,-95r0,191r-36,0r0,-246r33,0r82,101r81,-101r33,0","w":281},"N":{"d":"254,-246r0,246r-30,0r-164,-189r0,189r-33,0r0,-246r28,0r166,191r0,-191r33,0","w":281},"O":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93","w":296},"P":{"d":"25,-246r77,0v54,0,78,32,78,71v0,51,-51,76,-120,69r0,106r-35,0r0,-246xm60,-214r0,76v41,2,85,1,84,-38v0,-18,-10,-38,-42,-38r-42,0","w":183},"Q":{"d":"281,-122v0,59,-43,110,-102,122v43,20,68,22,92,19r-31,31v-48,-4,-87,-25,-121,-50v-61,-12,-103,-62,-103,-123v0,-74,56,-126,136,-126v73,0,129,55,129,127xm150,-216v-138,0,-126,187,1,187v55,0,93,-43,93,-93v0,-54,-40,-94,-94,-94","w":296},"R":{"d":"28,-246v72,-5,142,3,142,69v0,28,-15,50,-41,60v37,26,55,75,88,117r-42,0v-20,-31,-72,-120,-97,-107r-15,0r0,107r-35,0r0,-246xm63,-215r0,77v41,5,77,-11,71,-40v3,-31,-32,-40,-71,-37","w":217},"S":{"d":"144,-231r0,39v-21,-20,-41,-25,-58,-25v-23,0,-39,12,-39,29v0,47,106,47,106,125v0,70,-92,83,-137,44r0,-45v18,23,41,36,65,36v27,0,40,-17,40,-31v0,-51,-107,-57,-107,-124v0,-62,84,-85,130,-48","w":164},"T":{"d":"211,-246r0,32r-85,0r0,214r-35,0r0,-214r-85,0r0,-32r205,0","w":217},"U":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71","w":254},"V":{"d":"217,-246r-104,248r-7,0r-106,-248r35,0r74,173r74,-173r34,0","w":217},"W":{"d":"375,-246r-100,248r-7,0r-80,-201r-82,201r-7,0r-99,-248r35,0r68,170r68,-170r33,0r69,170r67,-170r35,0","w":375},"X":{"d":"247,-246r-98,119r105,127r-42,0r-84,-102r-84,102r-43,0r106,-127r-99,-119r43,0r77,94r77,-94r42,0","w":254},"Y":{"d":"108,-161r67,-85r42,0r-91,116r0,130r-35,0r0,-130r-91,-116r42,0","w":217},"Z":{"d":"162,-214r-147,0r0,-32r212,0r-156,214r156,0r0,32r-221,0","w":232},"[":{"d":"115,-246r0,29r-49,0r0,268r49,0r0,29r-84,0r0,-326r84,0","w":119},"\\":{"d":"99,3r-26,0r-70,-252r25,0","w":101},"]":{"d":"5,80r0,-29r49,0r0,-268r-49,0r0,-29r84,0r0,326r-84,0","w":119},"^":{"d":"42,-105r-33,0r63,-141r25,0r62,141r-32,0r-43,-105","w":168},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18"},"a":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9","w":153},"b":{"d":"53,-246r0,96v50,-38,115,0,115,66v0,80,-82,105,-147,75r0,-237r32,0xm53,-120r0,88v41,15,82,-3,82,-48v0,-53,-48,-73,-82,-40"},"c":{"d":"141,-154r0,34v-41,-31,-92,-14,-93,39v-1,52,55,67,97,43r0,32v-58,25,-130,-5,-130,-72v0,-72,67,-106,126,-76","w":157},"d":{"d":"162,-246r0,246r-68,0v-48,0,-78,-33,-78,-85v0,-59,56,-96,114,-73r0,-88r32,0xm130,-27r0,-103v-41,-17,-81,4,-81,50v0,43,32,59,81,53","w":183},"e":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40","w":172},"f":{"d":"107,-246r0,32v-34,-12,-55,12,-49,52r29,0r0,29r-29,0r0,133r-32,0r0,-133r-23,0r0,-29r23,0v-3,-63,23,-96,81,-84","w":90},"g":{"d":"50,-54v-19,-11,-36,-23,-36,-52v0,-59,74,-59,138,-56r0,25r-34,0v25,20,20,52,2,72v-21,24,-65,11,-65,30v0,9,17,15,49,21v35,7,47,24,47,45v0,32,-28,52,-76,52v-77,0,-104,-77,-34,-94v-27,-14,-19,-35,9,-43xm107,-105v0,-15,-15,-29,-32,-29v-18,0,-32,13,-32,29v0,18,14,30,33,30v18,0,31,-12,31,-30xm120,34v0,-34,-90,-36,-90,-2v0,16,16,25,45,25v28,0,45,-8,45,-23","w":153},"h":{"d":"54,-246r1,106v33,-43,103,-30,103,41r0,99r-32,0v-5,-50,18,-136,-32,-139v-14,0,-25,6,-40,23r0,116r-32,0r0,-246r32,0"},"i":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm59,-211v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19","w":78},"j":{"d":"54,-162r0,183v0,35,-11,50,-32,62r-24,-24v14,-6,24,-17,24,-35r0,-186r32,0xm57,-211v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19","w":78},"k":{"d":"166,-162r-70,80r84,82r-43,0r-81,-82r71,-80r39,0xm54,-246r0,246r-32,0r0,-246r32,0","w":172},"l":{"d":"55,-246r0,246r-32,0r0,-246r32,0","w":78},"m":{"d":"21,-162r32,0r0,22v31,-35,73,-33,96,4v29,-45,107,-36,107,34r0,102r-32,0v-4,-50,18,-136,-33,-138v-10,0,-24,9,-36,21r0,117r-32,0v-4,-47,17,-136,-29,-138v-16,0,-28,6,-41,21r0,117r-32,0r0,-162","w":277},"n":{"d":"54,-162v1,7,-2,17,1,22v32,-42,103,-31,103,40r0,100r-32,0v-5,-50,18,-136,-32,-139v-14,0,-25,6,-40,23r0,116r-32,0r0,-162r32,0"},"o":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54","w":198},"p":{"d":"53,-4r0,87r-32,0r0,-245v80,-6,146,8,146,82v0,60,-56,100,-114,76xm53,-133r0,100v38,20,81,-4,81,-47v0,-44,-32,-58,-81,-53"},"q":{"d":"127,83r0,-86v-60,21,-115,-17,-114,-77v0,-26,12,-82,87,-82r59,0r0,245r-32,0xm127,-133v-46,-3,-79,4,-81,53v-2,43,42,70,81,49r0,-102"},"r":{"d":"25,-162r32,0v1,12,-2,27,1,37v26,-46,50,-52,85,-21r-17,28v-28,-31,-69,-12,-69,33r0,85r-32,0r0,-162","w":142},"s":{"d":"49,-122v-4,13,89,53,75,78v0,51,-69,58,-109,32r0,-34v21,14,40,21,53,21v13,0,23,-6,23,-18v0,-22,-75,-34,-75,-78v-1,-46,64,-55,101,-31r0,32v-18,-12,-35,-17,-47,-17v-13,0,-21,6,-21,15","w":138},"t":{"d":"60,-195r0,33r51,0r0,29r-51,0r0,83v5,36,37,25,60,13r0,29v-38,24,-92,6,-92,-40r0,-85r-28,0v16,-25,41,-40,60,-62","w":119},"u":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162"},"v":{"d":"74,3r-73,-165r35,0r44,100r42,-100r34,0r-71,165r-11,0","w":157},"w":{"d":"141,-162r42,98r42,-98r34,0r-71,165r-11,0r-47,-113r-48,113r-10,0r-72,-165r34,0r43,98r41,-98r23,0","w":258},"x":{"d":"175,-162r-66,80r71,82r-41,0r-51,-58r-48,58r-40,0r68,-82r-68,-80r40,0r48,56r46,-56r41,0"},"y":{"d":"158,-162r-115,245r-35,0r55,-118r-63,-127r36,0r44,91r42,-91r36,0","w":157},"z":{"d":"145,-162r-86,133r87,0r0,29r-142,0r86,-133r-82,0r0,-29r137,0","w":150},"{":{"d":"10,-79r0,-29v41,3,36,-47,36,-90v-1,-48,18,-68,66,-64r0,27v-39,-7,-37,26,-36,63v0,49,-10,67,-37,79v34,9,39,52,37,105v-1,33,8,37,36,36r0,28v-61,8,-66,-35,-66,-96v0,-37,-6,-59,-36,-59","w":119},"|":{"d":"33,90r0,-360r27,0r0,360r-27,0","w":93},"}":{"d":"110,-108r0,29v-41,-3,-37,48,-37,91v1,48,-17,68,-65,64r0,-28v39,7,37,-25,36,-62v0,-49,10,-67,37,-79v-34,-9,-39,-52,-37,-105v1,-33,-8,-38,-36,-37r0,-27v61,-8,65,35,65,96v0,37,7,58,37,58","w":119},"~":{"d":"149,-68v-28,0,-61,-27,-89,-27v-18,0,-34,11,-51,24r0,-30v15,-13,35,-23,54,-23v29,-1,61,27,88,27v16,0,36,-11,51,-24r0,30v-15,13,-34,23,-53,23","w":210},"\u00a1":{"d":"49,69v-14,0,-20,-17,-20,-53v0,-41,7,-66,11,-101v3,-30,15,-30,18,0v4,35,11,60,11,101v0,36,-6,53,-20,53xm49,-140v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22v12,0,21,10,21,22v0,12,-9,21,-21,21","w":97},"\u00a2":{"d":"147,-223r-23,63v4,2,12,5,16,7r0,33v-7,-6,-17,-10,-26,-12r-37,101v22,9,49,3,67,-7r0,31v-28,10,-50,13,-77,7r-25,68r-17,0r28,-75v-69,-39,-41,-178,56,-157r21,-59r17,0xm64,-39r35,-96v-51,-6,-70,67,-35,96","w":157},"\u00a3":{"d":"179,-3v-46,15,-110,-8,-158,6r29,-106r-26,0r0,-32r34,0v18,-62,47,-124,104,-112r18,35v-52,-11,-65,10,-87,77r27,0r0,32r-37,0r-18,68v40,-5,81,15,114,-2r0,34","w":191},"\u00a5":{"d":"84,0r0,-57r-73,0r0,-24r73,0r0,-26r-73,0r0,-26r60,0r-71,-125r35,0r65,116r62,-116r37,0r-70,125r59,0r0,26r-72,0r0,26r72,0r0,24r-72,0r0,57r-32,0","w":198},"\u00a7":{"d":"54,-201v0,48,81,67,81,135v0,20,-8,35,-27,54v29,38,6,95,-45,95v-37,0,-57,-55,-20,-55v10,0,17,8,17,17v0,4,-7,15,7,15v14,0,26,-12,26,-26v0,-45,-81,-74,-81,-141v0,-21,6,-36,23,-51v-20,-37,-13,-91,45,-91v24,0,42,13,42,31v0,23,-32,26,-33,6v0,-8,0,-14,-10,-14v-15,0,-25,10,-25,25xm50,-138v-31,43,12,71,43,106v38,-43,-11,-74,-43,-106","w":146},"\u00a4":{"d":"161,-81r24,24r-20,20r-24,-24v-20,16,-64,17,-83,0r-24,24r-21,-20r24,-24v-16,-20,-15,-64,0,-83r-24,-24r21,-21r24,24v20,-14,62,-17,83,0r24,-24r20,21r-24,24v19,26,15,59,0,83xm99,-168v-25,0,-45,20,-45,45v0,25,20,46,45,46v25,0,46,-21,46,-46v0,-25,-21,-45,-46,-45","w":198},"'":{"d":"26,-166v-5,-28,-10,-57,-8,-92r32,0v2,35,-3,64,-9,92r-15,0","w":67},"\u00ab":{"d":"115,-81r53,81r-31,0r-53,-81r53,-81r31,0xm42,-81r53,81r-31,0r-53,-81r53,-81r31,0","w":176},"\u00b7":{"d":"47,-146v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22","w":93},"\u00b6":{"d":"71,72r0,-184v-44,-3,-71,-30,-71,-73v0,-46,30,-73,83,-73r111,0r0,29r-25,0r0,301r-30,0r0,-301r-39,0r0,301r-29,0","w":195},"\u00bb":{"d":"134,-81r-53,-81r32,0r53,81r-53,81r-32,0xm61,-81r-53,-81r32,0r53,81r-53,81r-32,0","w":176},"\u00bf":{"d":"90,35r-17,34v-42,0,-58,-29,-58,-52v0,-54,60,-96,55,-133v56,32,-17,91,-19,129v-1,20,21,28,39,22xm64,-139v-12,0,-21,-10,-21,-22v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,12,-10,22,-22,22","w":119},"`":{"d":"58,-235r24,52r-20,0r-40,-52r36,0","w":119},"\u00b4":{"d":"64,-235r36,0r-40,52r-20,0","w":119},"\u00af":{"d":"120,-221r0,26r-120,0r0,-26r120,0","w":119},"\u00a8":{"d":"27,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm94,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":119},"\u00b8":{"d":"75,-3r-2,9v12,3,19,11,19,22v0,27,-24,37,-56,32r0,-19v17,3,31,-2,31,-10v0,-6,-7,-10,-21,-9r9,-25r20,0","w":119},"\u00c6":{"d":"306,-246r0,32r-100,0r0,74r97,0r0,32r-97,0r0,76r104,0r0,32r-140,0r0,-108r-68,0r-65,108r-36,0r145,-246r160,0xm120,-140r50,0r0,-84","w":322},"\u00aa":{"d":"98,-171r0,15v-13,11,-31,12,-39,0v-18,15,-54,11,-54,-16v0,-20,23,-28,54,-36v-1,-34,-35,-22,-52,-2r0,-25v18,-22,76,-21,76,18v0,19,-10,72,15,46xm59,-170r0,-25v-19,6,-29,10,-29,20v1,16,20,15,29,5","w":101},"\u00d8":{"d":"78,-58r123,-144v-62,-37,-148,4,-148,79v0,26,9,47,25,65xm71,-18r-17,19r-17,-11r18,-21v-79,-74,-30,-218,93,-218v30,0,54,7,75,21r19,-21r16,14r-17,20v78,74,32,222,-94,218v-27,0,-54,-7,-76,-21xm218,-188r-124,143v60,41,150,-2,150,-78v0,-27,-10,-49,-26,-65","w":296},"\u00ba":{"d":"123,-198v0,29,-24,51,-57,51v-33,0,-58,-22,-58,-51v0,-29,25,-51,58,-51v33,0,57,22,57,51xm98,-198v0,-19,-13,-31,-32,-31v-20,0,-33,12,-33,31v0,19,13,31,33,31v19,0,32,-12,32,-31","w":131},"\u00e6":{"d":"226,-46r0,32v-28,23,-90,23,-109,-8v-34,33,-104,39,-104,-16v0,-31,26,-43,81,-58v6,-59,-56,-44,-78,-12r0,-39v22,-22,82,-25,101,3v43,-43,115,-15,109,57r-100,0v2,68,59,75,100,41xm130,-109r64,0v-3,-38,-57,-34,-64,0xm94,-28r0,-53v-32,12,-49,21,-49,36v0,27,24,35,49,17","w":240},"\u00f8":{"d":"58,-44r71,-84v-34,-21,-83,2,-83,46v0,13,4,28,12,38xm50,-10r-20,23r-12,-10r19,-24v-50,-47,-15,-144,61,-144v20,0,39,5,51,14r17,-19r11,11r-15,18v52,50,15,144,-64,144v-19,0,-35,-5,-48,-13xm141,-117r-72,84v37,19,88,-3,84,-49v0,-10,-4,-25,-12,-35","w":198},"\u00df":{"d":"21,0r0,-186v0,-40,29,-63,69,-63v74,0,91,91,32,113v27,10,46,31,46,65v-1,52,-37,85,-88,71r0,-31v29,13,56,-7,55,-40v0,-25,-10,-50,-52,-49r0,-28v28,1,42,-14,42,-38v0,-22,-15,-38,-35,-38v-21,0,-37,10,-37,42r0,182r-32,0"},"\u00f7":{"d":"20,-142r170,0r0,30r-170,0r0,-30xm105,-93v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19xm105,-199v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19","w":210},"\u00be":{"d":"235,-249r-164,259r-24,0r164,-259r24,0xm27,-223r0,-20v28,-14,75,-4,75,28v0,13,-5,22,-17,28v37,17,16,69,-29,69v-10,0,-21,-3,-33,-8r0,-22v20,13,55,17,55,-8v0,-14,-9,-21,-30,-20r0,-19v40,5,36,-35,6,-35v-9,0,-15,2,-27,7xm246,-130r0,71r16,0r0,18r-16,0r0,41r-25,0r0,-41r-61,0r0,-9r74,-80r12,0xm221,-89r-28,30r28,0r0,-30","w":303},"\u00bc":{"d":"229,-130r0,71r16,0r0,18r-16,0r0,41r-25,0r0,-41r-61,0r0,-9r74,-80r12,0xm204,-89r-28,30r28,0r0,-30xm70,-247r0,127r-25,0r0,-127r25,0xm218,-249r-164,259r-24,0r164,-259r24,0","w":303},"\u00b9":{"d":"71,-247r0,127r-25,0r0,-127r25,0","w":116},"\u00d7":{"d":"28,-72r56,-55r-56,-56r22,-21r55,55r55,-55r21,21r-55,56r55,55r-21,21r-55,-55r-55,55","w":210},"\u00ae":{"d":"75,-56r0,-143r63,0v67,1,56,77,6,79v19,6,37,44,51,64r-28,0v-14,-22,-34,-69,-55,-61r-14,0r0,61r-23,0xm98,-136v27,0,63,4,63,-22v0,-26,-36,-21,-63,-21r0,43xm244,-130v0,-61,-50,-110,-111,-110v-61,0,-111,49,-111,110v0,61,50,111,111,111v61,0,111,-50,111,-111xm266,-130v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133v0,-73,60,-132,133,-132v73,0,133,59,133,132","w":266},"\u00de":{"d":"25,-246r35,0r0,54v68,-7,120,16,120,70v0,51,-51,76,-120,69r0,53r-35,0r0,-246xm60,-161r0,76v41,2,85,1,84,-38v0,-18,-10,-38,-42,-38r-42,0","w":183},"\u00a6":{"d":"33,63r0,-126r27,0r0,126r-27,0xm33,-117r0,-126r27,0r0,126r-27,0","w":93},"\u00d0":{"d":"27,0r0,-107r-28,0r0,-32r28,0r0,-107r96,0v82,0,130,61,130,123v0,64,-49,123,-130,123r-96,0xm63,-32v85,6,153,-9,154,-91v0,-49,-31,-91,-100,-91r-54,0r0,75r69,0r0,32r-69,0r0,75","w":270},"\u00bd":{"d":"264,-19r0,19r-97,0r0,-3v39,-40,61,-64,61,-84v0,-32,-46,-24,-57,-1r0,-28v28,-25,83,-12,82,27v0,19,-15,41,-44,70r55,0xm218,-249r-164,259r-24,0r164,-259r24,0xm70,-247r0,127r-25,0r0,-127r25,0","w":303},"\u00e7":{"d":"145,-38r0,32v-11,5,-31,9,-51,9r-1,5v12,3,19,12,19,23v0,27,-24,37,-56,32r0,-20v17,3,30,-1,30,-9v0,-6,-6,-10,-20,-9r8,-25v-36,-9,-59,-38,-59,-78v0,-72,67,-106,126,-76r0,34v-41,-31,-92,-14,-93,39v-1,52,55,67,97,43","w":157},"\u00f0":{"d":"46,-82v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54v-30,0,-52,23,-52,54xm181,-229r-37,17v65,65,57,215,-46,215v-50,0,-85,-35,-85,-85v-1,-63,74,-108,132,-68v-5,-13,-17,-31,-32,-47r-47,22r-11,-19r41,-19v-8,-6,-15,-10,-24,-14r22,-21v13,5,23,12,33,20r44,-20","w":202},"\u00b1":{"d":"20,-30r170,0r0,30r-170,0r0,-30xm90,-212r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0r0,-70r-70,0r0,-30r70,0r0,-70","w":210},"\u00c7":{"d":"239,-57r0,39v-24,13,-47,21,-96,21r-2,5v12,3,20,12,20,23v0,27,-24,37,-56,32r0,-20v17,3,30,-1,30,-9v0,-6,-7,-10,-21,-9r9,-24v-73,-12,-106,-74,-106,-120v-1,-107,118,-163,219,-110r0,38v-72,-51,-182,-21,-182,69v0,92,117,119,185,65","w":254},"\u00fe":{"d":"53,-4r0,87r-32,0r0,-329r32,0r0,84v70,-5,114,21,114,82v0,60,-56,100,-114,76xm53,-133r0,100v38,20,81,-4,81,-47v0,-44,-32,-58,-81,-53"},"\u00a9":{"d":"176,-108r21,6v-7,31,-31,48,-65,48v-42,0,-68,-29,-68,-77v0,-78,113,-100,131,-31r-21,5v-18,-46,-92,-30,-86,29v-6,61,77,72,88,20xm266,-130v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133v0,-73,60,-132,133,-132v73,0,133,59,133,132xm244,-130v0,-61,-50,-110,-111,-110v-61,0,-111,49,-111,110v0,61,50,111,111,111v61,0,111,-50,111,-111","w":266},"\u00ac":{"d":"190,-45r-29,0r0,-77r-141,0r0,-30r170,0r0,107","w":210},"\u00b2":{"d":"106,-139r0,19v-31,-2,-69,4,-96,-2v39,-40,61,-65,61,-85v0,-33,-47,-24,-58,-1r0,-28v28,-26,84,-11,83,28v0,19,-15,40,-44,69r54,0","w":116},"\u00b3":{"d":"20,-223r0,-20v28,-14,75,-4,75,28v0,13,-5,22,-17,28v37,17,16,69,-29,69v-10,0,-20,-3,-32,-8r0,-22v19,13,54,17,54,-8v0,-14,-9,-21,-30,-20r0,-19v40,5,36,-35,6,-35v-9,0,-15,2,-27,7","w":116},"\u00b0":{"d":"71,-243v-17,0,-30,13,-30,30v0,17,13,29,30,29v17,0,30,-12,30,-29v0,-17,-13,-30,-30,-30xm71,-262v27,0,49,22,49,49v0,27,-22,48,-49,48v-27,0,-49,-21,-49,-48v0,-27,22,-49,49,-49","w":142},"\u00c1":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm124,-314r36,0r-40,52r-20,0","w":240},"\u00c2":{"d":"136,-316r34,55r-20,0r-31,-32r-30,32r-19,0r33,-55r33,0xm130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0","w":240},"\u00c4":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm87,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm154,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":240},"\u00c0":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm118,-314r24,52r-20,0r-40,-52r36,0","w":240},"\u00c5":{"d":"120,-328v18,0,34,16,34,34v0,18,-16,33,-34,33v-18,0,-33,-15,-33,-33v0,-18,15,-34,33,-34xm120,-314v-11,0,-20,9,-20,20v0,11,9,19,20,19v11,0,20,-8,20,-19v0,-11,-9,-20,-20,-20xm130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0","w":240},"\u00c3":{"d":"159,-311r14,0v0,26,-12,43,-29,43v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-42,28,-42v27,0,57,31,64,-1xm130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0","w":240},"\u00c9":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0xm94,-314r36,0r-40,52r-20,0"},"\u00ca":{"d":"107,-316r33,55r-19,0r-32,-32r-30,32r-19,0r33,-55r34,0xm166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0"},"\u00cb":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0xm57,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm124,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16"},"\u00c8":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0xm88,-314r24,52r-20,0r-40,-52r36,0"},"\u00cd":{"d":"63,-246r0,246r-36,0r0,-246r36,0xm49,-314r36,0r-40,52r-20,0","w":90},"\u00ce":{"d":"62,-316r33,55r-19,0r-32,-32r-30,32r-19,0r33,-55r34,0xm63,-246r0,246r-36,0r0,-246r36,0","w":90},"\u00cf":{"d":"63,-246r0,246r-36,0r0,-246r36,0xm12,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm79,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":90},"\u00cc":{"d":"63,-246r0,246r-36,0r0,-246r36,0xm43,-314r24,52r-20,0r-40,-52r36,0","w":90},"\u00d1":{"d":"180,-311r13,0v0,26,-11,43,-28,43v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-42,28,-42v27,0,57,31,64,-1xm254,-246r0,246r-30,0r-164,-189r0,189r-33,0r0,-246r28,0r166,191r0,-191r33,0","w":281},"\u00d3":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93xm152,-314r36,0r-40,52r-20,0","w":296},"\u00d4":{"d":"165,-316r33,55r-19,0r-32,-32r-30,32r-19,0r33,-55r34,0xm16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93","w":296},"\u00d6":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93xm115,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm182,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":296},"\u00d2":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93xm146,-314r24,52r-20,0r-40,-52r36,0","w":296},"\u00d5":{"d":"187,-311r14,0v0,26,-12,43,-29,43v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-42,28,-42v27,0,57,31,64,-1xm16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93","w":296},"\u00da":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71xm132,-314r36,0r-40,52r-20,0","w":254},"\u00db":{"d":"144,-316r34,55r-20,0r-31,-32r-30,32r-19,0r33,-55r33,0xm125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71","w":254},"\u00dc":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71xm95,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm162,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":254},"\u00d9":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71xm126,-314r24,52r-20,0r-40,-52r36,0","w":254},"\u00dd":{"d":"108,-161r67,-85r42,0r-91,116r0,130r-35,0r0,-130r-91,-116r42,0xm113,-314r36,0r-40,52r-20,0","w":217},"\u00e1":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm81,-235r36,0r-40,52r-20,0","w":153},"\u00e2":{"d":"86,-237r34,55r-20,0r-31,-31v-16,11,-19,35,-49,31r33,-55r33,0xm148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9","w":153},"\u00e4":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm37,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm104,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":153},"\u00e0":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm68,-235r24,52r-20,0r-40,-52r36,0","w":153},"\u00e5":{"d":"70,-249v18,0,33,16,33,34v0,18,-15,33,-33,33v-18,0,-34,-15,-34,-33v0,-18,16,-34,34,-34xm70,-235v-11,0,-20,9,-20,20v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20xm148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9","w":153},"\u00e3":{"d":"109,-231r13,0v0,26,-11,42,-28,42v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-41,28,-41v27,0,56,29,64,-1xm148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9","w":153},"\u00e9":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40xm90,-235r36,0r-40,52r-20,0","w":172},"\u00ea":{"d":"103,-237r33,55v-31,3,-35,-20,-51,-31v-16,11,-19,35,-49,31r33,-55r34,0xm158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40","w":172},"\u00eb":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40xm53,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm120,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":172},"\u00e8":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40xm84,-235r24,52r-20,0r-40,-52r36,0","w":172},"\u00ed":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm43,-235r36,0r-40,52r-20,0","w":78},"\u00ee":{"d":"56,-237r34,55r-20,0r-31,-31v-16,11,-19,35,-49,31r32,-55r34,0xm55,-162r0,162r-32,0r0,-162r32,0","w":78},"\u00ef":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm6,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm73,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":78},"\u00ec":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm37,-235r24,52r-20,0r-40,-52r36,0","w":78},"\u00f1":{"d":"129,-231r14,0v0,26,-12,42,-29,42v-24,0,-53,-30,-62,0r-15,0v2,-26,12,-41,29,-41v26,0,55,29,63,-1xm54,-162v1,7,-2,17,1,22v32,-42,103,-31,103,40r0,100r-32,0v-5,-50,18,-136,-32,-139v-14,0,-25,6,-40,23r0,116r-32,0r0,-162r32,0"},"\u00f3":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54xm104,-235r36,0r-40,52r-20,0","w":198},"\u00f4":{"d":"116,-237r34,55r-20,0r-31,-31v-16,11,-19,35,-49,31r32,-55r34,0xm98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54","w":198},"\u00f6":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54xm67,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm134,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":198},"\u00f2":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54xm98,-235r24,52r-20,0r-40,-52r36,0","w":198},"\u00f5":{"d":"139,-231r13,0v0,26,-11,42,-28,42v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-41,28,-41v27,0,56,29,64,-1xm98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54","w":198},"\u00fa":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162xm94,-235r36,0r-40,52r-20,0"},"\u00fb":{"d":"107,-237r33,55v-31,3,-35,-20,-51,-31v-16,11,-19,35,-49,31r33,-55r34,0xm157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162"},"\u00fc":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162xm57,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm124,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16"},"\u00f9":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162xm88,-235r24,52r-20,0r-40,-52r36,0"},"\u00fd":{"d":"158,-162r-115,245r-35,0r55,-118r-63,-127r36,0r44,91r42,-91r36,0xm83,-235r36,0r-40,52r-20,0","w":157},"\u00ff":{"d":"158,-162r-115,245r-35,0r55,-118r-63,-127r36,0r44,91r42,-91r36,0xm46,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm113,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":157},"\u00a0":{"w":100}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * HTF Gotham\252 Copr. 2000 The Hoefler Type Foundry, Inc. Info:
 * www.typography.com
 */
Cufon.registerFont({"w":108,"face":{"font-family":"GothamBold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 4 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-10 -336 393 62","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+017E"},"glyphs":{" ":{},"!":{"d":"26,-252r17,166r30,0r17,-166r-64,0xm87,0r0,-58r-58,0r0,58r58,0","w":116},"\"":{"d":"105,-137r28,0r39,-115r-60,0xm21,-137r27,0r39,-115r-60,0","w":187},"#":{"d":"239,-153r0,-46r-27,0r9,-53r-47,0r-9,53r-53,0r9,-53r-47,0r-9,53r-40,0r0,46r32,0r-9,53r-35,0r0,46r27,0r-9,54r47,0r9,-54r53,0r-10,54r48,0r9,-54r40,0r0,-46r-32,0r9,-53r35,0xm157,-153r-9,53r-53,0r9,-53r53,0","w":252},"$":{"d":"138,0v43,-6,77,-26,77,-72v0,-49,-33,-64,-79,-77r0,-55v17,4,31,13,45,21r24,-42v-19,-14,-39,-22,-67,-26r0,-22r-37,0r0,21v-43,4,-76,26,-76,71v0,52,37,64,78,77r0,57v-25,-5,-40,-17,-59,-29r-28,41v22,16,52,30,85,34r0,36r37,0r0,-35xm103,-158v-31,-5,-34,-46,0,-49r0,49xm136,-96v31,5,37,47,0,51r0,-51","w":232},"%":{"d":"77,-126v39,0,62,-26,62,-65v0,-38,-22,-64,-61,-64v-39,0,-62,27,-62,65v0,38,22,64,61,64xm268,-252r-43,0r-184,252r43,0xm232,3v38,0,61,-26,61,-65v0,-39,-22,-64,-60,-64v-39,0,-62,27,-62,65v0,39,23,64,61,64xm77,-222v31,0,33,63,1,63v-16,0,-25,-15,-24,-32v0,-15,7,-32,23,-31xm232,-93v31,0,33,63,1,63v-16,0,-25,-15,-24,-32v0,-15,7,-32,23,-31","w":309},"&":{"d":"12,-69v-2,80,115,90,159,45r29,29r40,-28r-37,-37v12,-16,24,-36,34,-54r-41,-22v-8,16,-15,28,-25,43r-33,-33v29,-11,53,-30,53,-67v0,-41,-29,-60,-71,-63v-68,-5,-96,71,-59,117v-29,13,-47,33,-49,70xm119,-213v24,0,31,31,15,44v-6,5,-14,9,-25,13v-19,-14,-22,-57,10,-57xm140,-56v-25,28,-93,9,-67,-34v4,-6,10,-11,18,-15","w":250},"'":{"d":"21,-137r28,0r39,-115r-61,0","w":102},"(":{"d":"76,-103v0,-62,32,-91,69,-118r-24,-36v-58,32,-100,73,-100,154v0,81,43,121,100,154r24,-37v-37,-26,-69,-55,-69,-117","w":160},")":{"d":"39,51v58,-33,100,-73,100,-154v0,-81,-42,-122,-100,-154r-24,36v37,27,70,56,70,118v0,62,-32,91,-70,117","w":160},"*":{"d":"136,-176r-40,-17r40,-17r-15,-26r-35,26r6,-43r-29,0r5,43r-35,-26r-15,26r41,17r-41,17r15,26r35,-27r-5,43r29,0r-6,-43r35,27","w":154},"+":{"d":"90,-152r-66,0r0,50r66,0r0,65r51,0r0,-65r65,0r0,-50r-65,0r0,-64r-51,0r0,64","w":230},",":{"d":"14,58v63,3,72,-49,67,-116r-59,0r0,58r23,0v2,21,-11,33,-36,36","w":102},"-":{"d":"129,-85r0,-53r-111,0r0,53r111,0","w":146},".":{"d":"81,0r0,-58r-59,0r0,58r59,0","w":102},"\/":{"d":"149,-287r-159,333r46,0r160,-333r-47,0","w":190},"0":{"d":"131,4v74,0,112,-55,112,-130v0,-74,-37,-130,-111,-130v-75,0,-113,56,-113,130v0,75,38,130,112,130xm131,-206v74,1,75,159,1,160v-75,-1,-76,-159,-1,-160","w":262},"1":{"d":"9,-232r11,45r44,-11r0,198r55,0r0,-254v-48,-4,-75,13,-110,22","w":151},"2":{"d":"60,-172v15,-18,24,-33,51,-34v45,-3,36,55,11,76r-104,86r0,44r186,0r0,-48r-110,0v40,-39,102,-56,108,-129v6,-84,-117,-100,-162,-49v-6,6,-13,15,-19,23","w":224},"3":{"d":"203,-78v-2,-45,-28,-65,-68,-71r64,-61r0,-42r-171,0r0,48r99,0r-60,60r9,35v35,-1,72,1,72,33v0,19,-16,31,-35,31v-31,-1,-44,-13,-61,-31r-38,37v39,61,193,61,189,-39","w":223},"4":{"d":"149,-254r-138,160r9,40r123,0r0,54r53,0r0,-54r34,0r0,-45r-34,0r0,-155r-47,0xm143,-99r-67,0r67,-79r0,79","w":248},"5":{"d":"206,-83v0,-67,-58,-91,-122,-77r3,-43r107,0r0,-49r-154,0r-8,124r32,21v29,-14,89,-15,87,26v-2,53,-82,36,-102,8r-34,40v48,56,191,51,191,-50","w":226},"6":{"d":"128,-206v23,0,38,10,52,20r29,-43v-22,-15,-41,-28,-79,-27v-80,2,-111,59,-111,138v0,77,29,122,103,122v57,0,93,-31,96,-87v4,-73,-86,-101,-141,-65v4,-32,17,-58,51,-58xm119,-118v25,0,43,14,44,37v0,24,-18,38,-43,38v-25,0,-44,-15,-44,-38v0,-23,19,-37,43,-37","w":238},"7":{"d":"24,-204r119,0r-113,204r63,0r113,-210r0,-42r-182,0r0,48","w":222},"8":{"d":"113,4v55,0,98,-22,98,-75v0,-33,-18,-47,-41,-60v18,-12,32,-26,32,-55v0,-48,-40,-70,-89,-70v-48,0,-85,22,-88,70v-1,29,14,44,32,55v-24,13,-43,26,-41,62v2,51,45,73,97,73xm113,-210v21,0,35,12,36,30v0,19,-15,31,-36,31v-21,0,-36,-12,-36,-31v0,-17,15,-30,36,-30xm113,-105v24,0,44,9,44,31v-1,20,-20,32,-44,32v-24,0,-43,-11,-43,-32v0,-22,20,-31,43,-31","w":226},"9":{"d":"109,4v78,-3,110,-57,110,-138v0,-75,-28,-122,-103,-122v-58,0,-92,32,-96,88v-5,74,87,102,141,65v-4,31,-17,57,-51,57v-27,0,-38,-9,-55,-22r-29,42v22,17,45,31,83,30xm118,-209v26,0,45,14,44,39v0,24,-18,38,-43,38v-25,0,-44,-14,-44,-38v1,-25,17,-39,43,-39","w":238},":":{"d":"82,-135r0,-58r-58,0r0,58r58,0xm82,0r0,-58r-58,0r0,58r58,0","w":106},";":{"d":"82,-135r0,-58r-58,0r0,58r58,0xm16,58v63,3,71,-49,66,-116r-58,0r0,58r22,0v2,21,-10,33,-35,36","w":106},"<":{"d":"24,-152r0,50r175,76r0,-51r-122,-50r122,-50r0,-51","w":230},"=":{"d":"30,-198r0,49r171,0r0,-49r-171,0xm30,-105r0,50r171,0r0,-50r-171,0","w":230},">":{"d":"206,-102r0,-50r-174,-76r0,52r121,50r-121,50r0,50","w":230},"?":{"d":"127,-179v-1,30,-34,28,-64,35r8,58r37,0r4,-22v39,-8,70,-26,71,-72v4,-91,-137,-93,-176,-36r33,36v14,-14,30,-25,54,-25v19,0,33,7,33,26xm117,0r0,-58r-58,0r0,58r58,0","w":195},"@":{"d":"262,-23v50,-3,72,-39,72,-91v0,-87,-68,-142,-157,-142v-95,0,-154,62,-158,157v-6,131,147,196,256,130r-7,-11v-26,15,-49,24,-88,24v-89,0,-146,-55,-146,-143v0,-86,56,-143,143,-143v81,0,142,49,142,128v0,38,-11,71,-46,74v-18,1,-29,-13,-25,-34r17,-97r-43,-7r-4,19v-10,-14,-26,-26,-50,-24v-50,3,-77,37,-80,90v-5,68,82,88,119,48v11,11,29,23,55,22xm132,-95v-7,-51,75,-73,77,-17v8,52,-74,74,-77,17","w":352},"A":{"d":"276,0r-108,-254r-51,0r-108,254r56,0r23,-57r107,0r23,57r58,0xm175,-105r-67,0r33,-82","w":284},"B":{"d":"30,0v90,-4,214,24,214,-70v0,-38,-19,-50,-47,-62v19,-10,33,-25,33,-55v-1,-84,-116,-63,-200,-65r0,252xm175,-177v0,38,-54,25,-91,27r0,-53v36,3,91,-11,91,26xm84,-104v40,3,105,-14,105,28v-1,41,-65,23,-105,27r0,-55","w":259},"C":{"d":"19,-126v-8,123,160,171,233,85r-36,-35v-40,50,-139,31,-139,-51v0,-78,97,-99,138,-50r35,-40v-23,-24,-53,-40,-100,-39v-80,2,-126,52,-131,130","w":265},"D":{"d":"129,0v80,-4,133,-45,133,-127v0,-80,-54,-125,-133,-125r-99,0r0,252r99,0xm86,-202v69,-5,119,12,118,77v-1,62,-49,81,-118,75r0,-152","w":281},"E":{"d":"222,0r0,-49r-137,0r0,-53r119,0r0,-50r-119,0r0,-51r135,0r0,-49r-190,0r0,252r192,0","w":241},"F":{"d":"222,-202r0,-50r-192,0r0,252r56,0r0,-98r120,0r0,-50r-120,0r0,-54r136,0","w":236},"G":{"d":"152,4v47,1,82,-19,107,-40r0,-109r-109,0r0,48r56,0r0,36v-53,35,-135,4,-129,-66v3,-45,27,-78,72,-78v30,0,49,11,66,25r35,-42v-24,-21,-54,-35,-99,-34v-80,2,-132,51,-132,131v0,80,50,127,133,129","w":282},"H":{"d":"243,0r0,-252r-55,0r0,100r-102,0r0,-100r-56,0r0,252r56,0r0,-101r102,0r0,101r55,0","w":273},"I":{"d":"88,0r0,-252r-55,0r0,252r55,0","w":120},"J":{"d":"87,4v58,0,90,-33,90,-91r0,-165r-57,0r0,162v5,56,-62,47,-80,17r-35,39v19,20,43,38,82,38","w":203},"K":{"d":"260,0r-108,-145r103,-107r-67,0r-102,110r0,-110r-56,0r0,252r56,0r0,-77r29,-30r78,107r67,0","w":262},"L":{"d":"211,0r0,-50r-125,0r0,-202r-56,0r0,252r181,0","w":222},"M":{"d":"282,0r0,-252r-60,0r-66,107r-66,-107r-60,0r0,252r55,0r0,-163r71,106r71,-108r0,165r55,0","w":312},"N":{"d":"254,0r0,-252r-55,0r0,155r-118,-155r-51,0r0,252r55,0r0,-160r122,160r47,0","w":284},"O":{"d":"153,4v81,0,134,-50,134,-131v0,-79,-54,-129,-134,-129v-81,0,-134,50,-134,131v0,79,54,129,134,129xm153,-205v48,0,76,32,76,80v0,46,-28,78,-76,78v-48,0,-76,-32,-76,-80v0,-46,28,-78,76,-78","w":306},"P":{"d":"86,-76v82,5,144,-13,144,-89v0,-57,-37,-87,-97,-87r-103,0r0,252r56,0r0,-76xm86,-202v43,-1,89,-3,88,39v0,40,-45,40,-88,38r0,-77","w":240},"Q":{"d":"19,-126v-5,108,122,162,209,109r27,25r36,-40r-26,-22v12,-20,22,-43,22,-73v0,-79,-54,-129,-134,-129v-80,0,-130,50,-134,130xm153,-205v59,-1,90,58,69,114r-41,-37r-36,39r41,35v-56,22,-112,-14,-109,-73v2,-46,28,-77,76,-78","w":306},"R":{"d":"240,-168v0,-55,-38,-85,-95,-84r-115,0r0,252r56,0r0,-81r43,0r54,81r65,0r-62,-90v31,-11,54,-36,54,-78xm86,-202v44,1,98,-10,98,37v0,44,-55,34,-98,35r0,-72","w":260},"S":{"d":"13,-37v46,54,199,64,199,-38v0,-78,-89,-64,-132,-98v-8,-21,8,-35,31,-34v26,2,46,12,65,25r29,-42v-50,-46,-182,-48,-182,45v0,73,78,65,125,92v23,13,2,44,-27,42v-33,-2,-54,-16,-75,-31","w":230},"T":{"d":"221,-201r0,-51r-209,0r0,51r77,0r0,201r55,0r0,-201r77,0","w":233},"U":{"d":"135,4v73,-1,110,-40,111,-114r0,-142r-56,0v-8,78,30,205,-54,205v-83,0,-46,-127,-54,-205r-56,0r0,144v0,72,39,112,109,112","w":272},"V":{"d":"261,-252r-59,0r-66,177r-66,-177r-61,0r102,254r48,0","w":270},"W":{"d":"393,-252r-58,0r-52,171r-57,-172r-47,0r-57,172r-52,-171r-59,0r86,254r48,0r57,-165r57,165r48,0","w":403},"X":{"d":"252,0r-87,-129r84,-123r-63,0r-54,82r-52,-82r-65,0r84,124r-88,128r63,0r57,-86r57,86r64,0","w":263},"Y":{"d":"253,-252r-63,0r-61,101r-60,-101r-65,0r97,153r0,99r56,0r0,-100","w":257},"Z":{"d":"233,0r0,-49r-139,0r139,-161r0,-42r-206,0r0,49r134,0r-138,161r0,42r210,0","w":254},"[":{"d":"146,-252r-116,0r0,299r116,0r0,-43r-64,0r0,-213r64,0r0,-43","w":167},"\\":{"d":"41,-287r-46,0r159,333r47,0","w":190},"]":{"d":"21,-252r0,43r64,0r0,213r-64,0r0,43r117,0r0,-299r-117,0","w":167},"^":{"d":"90,-220r32,43r40,0r-53,-75r-38,0r-53,75r39,0","w":180},"_":{"d":"-1,16r0,42r218,0r0,-42r-218,0","w":216},"`":{"d":"127,-214r-40,-64r-47,21r46,43r41,0","w":180},"a":{"d":"13,-56v0,67,94,75,125,35r0,21r52,0r0,-112v10,-85,-94,-99,-160,-68r13,42v30,-13,99,-21,95,28v-50,-18,-125,-8,-125,54xm66,-58v0,-32,50,-31,73,-20v3,30,-17,43,-43,44v-16,1,-30,-8,-30,-24","w":213},"b":{"d":"139,4v56,-3,88,-40,88,-101v0,-60,-32,-97,-88,-100v-30,-2,-46,15,-60,32r0,-98r-55,0r0,263r55,0r0,-25v14,15,30,31,60,29xm125,-150v29,0,47,21,47,54v0,32,-18,53,-47,53v-30,0,-47,-23,-47,-54v0,-31,17,-53,47,-53","w":243},"c":{"d":"69,-96v0,-54,68,-69,91,-32r33,-36v-18,-20,-40,-34,-77,-33v-62,2,-97,41,-101,102v-6,94,126,130,179,64r-32,-32v-26,34,-93,21,-93,-33","w":205},"d":{"d":"104,4v30,2,46,-15,60,-32r0,28r55,0r0,-263r-55,0r0,95v-14,-15,-30,-31,-60,-29v-56,3,-88,40,-88,101v0,60,32,97,88,100xm118,-150v30,0,47,23,47,54v0,31,-17,53,-47,53v-29,0,-47,-21,-47,-54v0,-32,18,-53,47,-53","w":243},"e":{"d":"163,-59v-24,30,-90,24,-94,-18r135,0v3,-72,-26,-120,-93,-120v-60,0,-92,41,-96,102v-7,96,129,131,180,63xm69,-112v1,-33,45,-56,69,-29v7,8,11,17,13,29r-82,0","w":220},"f":{"d":"88,-191v-6,-30,25,-32,44,-24r0,-45v-52,-16,-109,3,-98,69r-23,0r0,45r23,0r0,146r55,0r0,-146r43,0r0,-45r-44,0","w":137},"g":{"d":"16,-107v-7,86,108,119,149,60v11,72,-80,72,-121,44r-18,41v23,12,51,20,85,20v73,2,108,-31,108,-102r0,-149r-55,0r0,25v-15,-14,-33,-30,-62,-29v-53,2,-82,36,-86,90xm117,-151v29,0,48,17,48,45v0,27,-19,45,-48,45v-26,1,-48,-19,-46,-46v1,-28,18,-44,46,-44","w":243},"h":{"d":"113,-147v57,0,27,94,34,147r54,0v-4,-83,23,-198,-65,-197v-28,1,-44,15,-57,31r0,-97r-55,0r0,263r55,0v7,-53,-23,-147,34,-147","w":224},"i":{"d":"83,-214r0,-49r-57,0r0,49r57,0xm82,0r0,-193r-55,0r0,193r55,0"},"j":{"d":"83,-214r0,-49r-57,0r0,49r57,0xm-4,57v51,8,86,-9,86,-60r0,-190r-55,0r0,185v2,20,-12,26,-31,22r0,43"},"k":{"d":"211,0r-76,-117r74,-76r-66,0r-64,70r0,-140r-55,0r0,263r55,0r0,-59r19,-20r51,79r62,0","w":213},"l":{"d":"82,0r0,-263r-55,0r0,263r55,0"},"m":{"d":"232,-147v54,0,25,95,32,147r55,0v-4,-83,24,-201,-65,-197v-30,1,-49,13,-64,31v-9,-19,-27,-31,-54,-31v-28,0,-44,15,-57,31r0,-27r-55,0r0,193r55,0v6,-53,-22,-147,33,-147v54,0,25,95,32,147r55,0v6,-53,-22,-147,33,-147","w":342},"n":{"d":"113,-147v57,0,27,94,34,147r54,0v-4,-83,23,-198,-65,-197v-28,1,-44,15,-57,31r0,-27r-55,0r0,193r55,0v7,-53,-23,-147,34,-147","w":224},"o":{"d":"119,4v63,0,105,-38,105,-101v0,-62,-42,-100,-104,-100v-63,0,-105,39,-105,102v0,61,41,99,104,99xm119,-149v32,0,51,22,51,54v0,31,-17,52,-50,52v-33,0,-51,-22,-51,-54v0,-31,17,-52,50,-52","w":239},"p":{"d":"139,4v56,-3,88,-40,88,-101v0,-60,-32,-97,-88,-100v-30,-2,-46,15,-60,32r0,-28r-55,0r0,251r55,0r0,-83v14,15,30,31,60,29xm125,-150v29,0,47,21,47,54v0,32,-18,53,-47,53v-30,0,-47,-23,-47,-54v0,-31,17,-53,47,-53","w":243},"q":{"d":"104,4v30,2,46,-15,60,-32r0,86r55,0r0,-251r-55,0r0,25v-14,-15,-30,-31,-60,-29v-56,3,-88,40,-88,101v0,60,32,97,88,100xm118,-150v30,0,47,23,47,54v0,31,-17,53,-47,53v-29,0,-47,-21,-47,-54v0,-32,18,-53,47,-53","w":243},"r":{"d":"79,0v-1,-67,-9,-145,62,-139r0,-58v-34,-2,-51,19,-62,43r0,-39r-55,0r0,193r55,0","w":150},"s":{"d":"68,-140v9,-28,55,-7,73,4r21,-38v-50,-42,-173,-20,-138,64v13,32,63,30,89,49v12,9,-2,25,-19,22v-26,0,-44,-10,-61,-23r-24,36v45,50,189,36,152,-56v-13,-32,-62,-32,-89,-51v-2,-2,-4,-4,-4,-7","w":180},"t":{"d":"33,-55v-7,57,59,71,100,47r0,-44v-15,10,-45,13,-45,-12r0,-82r46,0r0,-47r-46,0r0,-49r-55,0r0,49r-23,0r0,47r23,0r0,91","w":149},"u":{"d":"89,4v27,-1,43,-16,56,-31r0,27r55,0r0,-193r-55,0v-7,53,23,147,-34,147v-56,0,-25,-95,-33,-147r-55,0v4,83,-23,200,66,197","w":224},"v":{"d":"209,-193r-57,0r-44,129r-43,-129r-58,0r76,194r50,0","w":216},"w":{"d":"301,-193r-54,0r-32,117r-36,-118r-48,0r-36,118r-31,-117r-55,0r59,194r49,0r38,-118r37,118r49,0","w":309},"x":{"d":"202,0r-68,-99r65,-94r-57,0r-37,56r-36,-56r-58,0r65,95r-68,98r58,0r38,-60r39,60r59,0","w":210},"y":{"d":"83,1v-5,17,-31,13,-43,5r-18,39v28,21,87,17,100,-15v30,-71,57,-150,86,-223r-57,0r-42,131r-44,-131r-58,0","w":216},"z":{"d":"186,0r0,-44r-100,0r100,-110r0,-39r-165,0r0,44r97,0r-100,110r0,39r168,0","w":202},"{":{"d":"117,-152v0,-43,7,-64,42,-69r-9,-36v-56,7,-83,28,-83,96v0,32,-16,38,-49,37r0,42v86,-17,12,103,91,122v11,3,24,8,41,11r9,-37v-34,-6,-42,-24,-42,-69v0,-29,-15,-40,-38,-48v23,-9,38,-20,38,-49","w":176},"|":{"d":"85,46r0,-333r-44,0r0,333r44,0","w":126},"}":{"d":"111,-21v0,-41,2,-68,48,-61r0,-42v-85,16,-14,-102,-91,-123v-11,-3,-24,-7,-41,-10r-10,36v35,6,43,24,43,69v0,29,15,40,37,49v-32,7,-36,34,-36,75v0,30,-19,35,-44,42r10,37v47,-9,84,-21,84,-72","w":176},"~":{"d":"47,-81v16,-44,76,24,103,-17v6,-10,12,-21,16,-36r-29,-9v-17,49,-90,-35,-112,33v-2,6,-5,13,-7,20","w":183},"\u00c4":{"d":"276,0r-108,-254r-51,0r-108,254r56,0r23,-57r107,0r23,57r58,0xm175,-105r-67,0r33,-82xm207,-272r0,-49r-53,0r0,49r53,0xm130,-272r0,-49r-53,0r0,49r53,0","w":284},"\u00c5":{"d":"142,-321v-40,0,-56,52,-28,74r-105,247r56,0r23,-57r107,0r23,57r58,0r-105,-247v28,-22,12,-74,-29,-74xm142,-301v13,0,23,10,23,22v0,12,-10,22,-23,22v-12,0,-22,-9,-22,-22v0,-12,9,-23,22,-22xm175,-105r-67,0r33,-82","w":284},"\u00c7":{"d":"19,-126v0,71,42,111,98,127r-28,42r45,19r24,-58v45,-1,72,-21,94,-45r-36,-35v-18,17,-34,29,-66,29v-47,0,-70,-32,-73,-79v-5,-79,96,-101,138,-51r35,-40v-23,-24,-53,-40,-100,-39v-80,2,-131,52,-131,130","w":265},"\u00c9":{"d":"222,0r0,-49r-137,0r0,-53r119,0r0,-50r-119,0r0,-51r135,0r0,-49r-190,0r0,252r192,0xm136,-272r46,-43r-47,-21r-40,64r41,0","w":241},"\u00d1":{"d":"97,-268v15,-46,76,23,103,-17v7,-9,12,-21,16,-36r-29,-9v-18,47,-90,-35,-112,32v-3,6,-5,14,-7,21xm254,0r0,-252r-55,0r0,155r-118,-155r-51,0r0,252r55,0r0,-160r122,160r47,0","w":284},"\u00d6":{"d":"153,4v81,0,134,-50,134,-131v0,-79,-54,-129,-134,-129v-81,0,-134,50,-134,131v0,79,54,129,134,129xm153,-205v48,0,76,32,76,80v0,46,-28,78,-76,78v-48,0,-76,-32,-76,-80v0,-46,28,-78,76,-78xm218,-272r0,-49r-53,0r0,49r53,0xm141,-272r0,-49r-53,0r0,49r53,0","w":306},"\u00dc":{"d":"135,4v73,-1,110,-40,111,-114r0,-142r-56,0v-8,78,30,205,-54,205v-83,0,-46,-127,-54,-205r-56,0r0,144v0,72,39,112,109,112xm201,-272r0,-49r-53,0r0,49r53,0xm124,-272r0,-49r-53,0r0,49r53,0","w":272},"\u00e1":{"d":"13,-56v0,67,94,75,125,35r0,21r52,0r0,-112v10,-85,-94,-99,-160,-68r13,42v30,-13,99,-21,95,28v-50,-18,-125,-8,-125,54xm66,-58v0,-32,50,-31,73,-20v3,30,-17,43,-43,44v-16,1,-30,-8,-30,-24xm123,-214r46,-43r-47,-21r-40,64r41,0","w":213},"\u00e0":{"d":"13,-56v0,67,94,75,125,35r0,21r52,0r0,-112v10,-85,-94,-99,-160,-68r13,42v30,-13,99,-21,95,28v-50,-18,-125,-8,-125,54xm66,-58v0,-32,50,-31,73,-20v3,30,-17,43,-43,44v-16,1,-30,-8,-30,-24xm133,-214r-40,-64r-47,21r46,43r41,0","w":213},"\u00e2":{"d":"105,-238r29,24r42,0r-44,-57r-52,0r-44,57r41,0xm13,-56v0,67,94,75,125,35r0,21r52,0r0,-112v10,-85,-94,-99,-160,-68r13,42v30,-13,99,-21,95,28v-50,-18,-125,-8,-125,54xm66,-58v0,-32,50,-31,73,-20v3,30,-17,43,-43,44v-16,1,-30,-8,-30,-24","w":213},"\u00e4":{"d":"13,-56v0,67,94,75,125,35r0,21r52,0r0,-112v10,-85,-94,-99,-160,-68r13,42v30,-13,99,-21,95,28v-50,-18,-125,-8,-125,54xm66,-58v0,-32,50,-31,73,-20v3,30,-17,43,-43,44v-16,1,-30,-8,-30,-24xm171,-214r0,-49r-53,0r0,49r53,0xm94,-214r0,-49r-53,0r0,49r53,0","w":213},"\u00e3":{"d":"62,-211v16,-44,76,24,103,-17v6,-10,12,-21,16,-36r-29,-9v-18,48,-91,-34,-113,33v-2,6,-5,13,-7,20xm13,-56v0,67,94,75,125,35r0,21r52,0r0,-112v10,-85,-94,-99,-160,-68r13,42v30,-13,99,-21,95,28v-50,-18,-125,-8,-125,54xm66,-58v0,-32,50,-31,73,-20v3,30,-17,43,-43,44v-16,1,-30,-8,-30,-24","w":213},"\u00e5":{"d":"106,-213v24,-3,43,-16,43,-43v0,-26,-19,-39,-43,-42v-25,2,-44,17,-44,42v0,26,19,41,44,43xm106,-278v12,0,22,10,22,22v0,13,-10,23,-22,23v-12,0,-22,-10,-22,-23v0,-12,10,-22,22,-22xm13,-56v0,67,94,75,125,35r0,21r52,0r0,-112v10,-85,-94,-99,-160,-68r13,42v30,-13,99,-21,95,28v-50,-18,-125,-8,-125,54xm66,-58v0,-32,50,-31,73,-20v3,30,-17,43,-43,44v-16,1,-30,-8,-30,-24","w":213},"\u00e7":{"d":"69,-96v0,-53,68,-69,91,-32r33,-36v-18,-20,-40,-34,-77,-33v-62,2,-101,41,-101,101v0,52,29,83,70,96r-30,43r46,19r24,-58v34,-2,51,-17,69,-35r-32,-32v-26,35,-93,21,-93,-33","w":205},"\u00e9":{"d":"163,-59v-24,30,-90,24,-94,-18r135,0v3,-72,-26,-120,-93,-120v-60,0,-92,41,-96,102v-7,96,129,131,180,63xm69,-112v1,-33,45,-56,69,-29v7,8,11,17,13,29r-82,0xm130,-214r46,-43r-47,-21r-40,64r41,0","w":220},"\u00e8":{"d":"163,-59v-24,30,-90,24,-94,-18r135,0v3,-72,-26,-120,-93,-120v-60,0,-92,41,-96,102v-7,96,129,131,180,63xm69,-112v1,-33,45,-56,69,-29v7,8,11,17,13,29r-82,0xm131,-214r-40,-64r-47,21r46,43r41,0","w":220},"\u00ea":{"d":"110,-238r28,24r42,0r-44,-57r-52,0r-44,57r41,0xm163,-59v-24,30,-90,24,-94,-18r135,0v3,-72,-26,-120,-93,-120v-60,0,-92,41,-96,102v-7,96,129,131,180,63xm69,-112v1,-33,45,-56,69,-29v7,8,11,17,13,29r-82,0","w":220},"\u00eb":{"d":"163,-59v-24,30,-90,24,-94,-18r135,0v3,-72,-26,-120,-93,-120v-60,0,-92,41,-96,102v-7,96,129,131,180,63xm69,-112v1,-33,45,-56,69,-29v7,8,11,17,13,29r-82,0xm175,-214r0,-49r-53,0r0,49r53,0xm98,-214r0,-49r-53,0r0,49r53,0","w":220},"\u00ed":{"d":"82,0r0,-193r-55,0r0,193r55,0xm72,-214r46,-43r-47,-21r-40,64r41,0"},"\u00ec":{"d":"82,0r0,-193r-55,0r0,193r55,0xm115,-214r-40,-64r-47,21r46,43r41,0"},"\u00ee":{"d":"97,-238r28,24r42,0r-44,-57r-52,0r-44,57r41,0xm82,0r0,-193r-55,0r0,193r55,0"},"\u00ef":{"d":"82,0r0,-193r-55,0r0,193r55,0xm157,-214r0,-49r-53,0r0,49r53,0xm80,-214r0,-49r-53,0r0,49r53,0"},"\u00f1":{"d":"69,-211v16,-44,76,24,103,-17v6,-10,12,-21,16,-36r-29,-9v-17,49,-90,-35,-112,33v-2,6,-5,13,-7,20xm113,-147v57,0,27,94,34,147r54,0v-4,-83,23,-198,-65,-197v-28,1,-44,15,-57,31r0,-27r-55,0r0,193r55,0v7,-53,-23,-147,34,-147","w":224},"\u00f3":{"d":"119,4v63,0,105,-38,105,-101v0,-62,-42,-100,-104,-100v-63,0,-105,39,-105,102v0,61,41,99,104,99xm119,-149v32,0,51,22,51,54v0,31,-17,52,-50,52v-33,0,-51,-22,-51,-54v0,-31,17,-52,50,-52xm140,-214r46,-43r-47,-21r-40,64r41,0","w":239},"\u00f2":{"d":"119,4v63,0,105,-38,105,-101v0,-62,-42,-100,-104,-100v-63,0,-105,39,-105,102v0,61,41,99,104,99xm119,-149v32,0,51,22,51,54v0,31,-17,52,-50,52v-33,0,-51,-22,-51,-54v0,-31,17,-52,50,-52xm140,-214r-40,-64r-47,21r46,43r41,0","w":239},"\u00f4":{"d":"119,-238r29,24r42,0r-45,-57r-51,0r-45,57r42,0xm119,4v63,0,105,-38,105,-101v0,-62,-42,-100,-104,-100v-63,0,-105,39,-105,102v0,61,41,99,104,99xm119,-149v32,0,51,22,51,54v0,31,-17,52,-50,52v-33,0,-51,-22,-51,-54v0,-31,17,-52,50,-52","w":239},"\u00f6":{"d":"119,4v63,0,105,-38,105,-101v0,-62,-42,-100,-104,-100v-63,0,-105,39,-105,102v0,61,41,99,104,99xm119,-149v32,0,51,22,51,54v0,31,-17,52,-50,52v-33,0,-51,-22,-51,-54v0,-31,17,-52,50,-52xm185,-214r0,-49r-53,0r0,49r53,0xm108,-214r0,-49r-53,0r0,49r53,0","w":239},"\u00f5":{"d":"75,-211v16,-44,76,24,103,-17v6,-10,12,-21,16,-36r-29,-9v-18,48,-91,-34,-113,33v-2,6,-5,13,-7,20xm119,4v63,0,105,-38,105,-101v0,-62,-42,-100,-104,-100v-63,0,-105,39,-105,102v0,61,41,99,104,99xm119,-149v32,0,51,22,51,54v0,31,-17,52,-50,52v-33,0,-51,-22,-51,-54v0,-31,17,-52,50,-52","w":239},"\u00fa":{"d":"89,4v27,-1,43,-16,56,-31r0,27r55,0r0,-193r-55,0v-7,53,23,147,-34,147v-56,0,-25,-95,-33,-147r-55,0v4,83,-23,200,66,197xm127,-214r46,-43r-47,-21r-40,64r41,0","w":224},"\u00f9":{"d":"89,4v27,-1,43,-16,56,-31r0,27r55,0r0,-193r-55,0v-7,53,23,147,-34,147v-56,0,-25,-95,-33,-147r-55,0v4,83,-23,200,66,197xm138,-214r-40,-64r-47,21r46,43r41,0","w":224},"\u00fb":{"d":"112,-238r28,24r42,0r-44,-57r-52,0r-44,57r41,0xm89,4v27,-1,43,-16,56,-31r0,27r55,0r0,-193r-55,0v-7,53,23,147,-34,147v-56,0,-25,-95,-33,-147r-55,0v4,83,-23,200,66,197","w":224},"\u00fc":{"d":"89,4v27,-1,43,-16,56,-31r0,27r55,0r0,-193r-55,0v-7,53,23,147,-34,147v-56,0,-25,-95,-33,-147r-55,0v4,83,-23,200,66,197xm177,-214r0,-49r-53,0r0,49r53,0xm100,-214r0,-49r-53,0r0,49r53,0","w":224},"\u00b0":{"d":"86,-132v36,0,63,-25,63,-61v0,-37,-27,-61,-63,-61v-36,0,-62,24,-62,61v0,36,27,61,62,61xm53,-193v-2,-36,52,-45,64,-13v8,23,-7,47,-31,47v-20,0,-31,-15,-33,-34","w":172},"\u00a2":{"d":"17,-127v0,50,28,79,65,94r-7,35r37,0r6,-29v37,0,59,-17,77,-37r-31,-31v-12,11,-22,17,-39,20r20,-99r18,13r32,-35v-12,-11,-22,-21,-39,-26r6,-32r-37,0v-3,8,-1,21,-7,26v-62,3,-101,38,-101,101xm93,-81v-37,-20,-25,-101,19,-100","w":209},"\u00a3":{"d":"134,-256v-65,0,-91,44,-85,114r-27,0r0,46r27,0r0,51r-27,9r0,36r193,0r0,-48r-110,0r0,-48r82,0r0,-46r-82,0v-2,-32,0,-63,30,-62v20,1,27,11,38,24r42,-34v-17,-24,-41,-41,-81,-42","w":231},"\u00a7":{"d":"111,-256v-58,0,-97,53,-59,90v-32,3,-46,59,-13,75v23,18,76,17,99,36v5,14,-8,19,-22,19v-25,0,-38,-10,-53,-24r-30,29v29,46,159,54,158,-22v-1,-14,-6,-26,-15,-33v33,-4,45,-58,13,-75v-24,-20,-84,-13,-101,-41v1,-11,11,-13,24,-14v25,0,38,10,53,24r29,-29v-18,-21,-45,-35,-83,-35xm87,-148v26,0,66,7,73,28v0,11,-9,16,-20,16v-25,0,-66,-7,-72,-28v1,-10,8,-16,19,-16","w":227},"\u00b6":{"d":"13,-167v1,63,48,85,114,84r0,83r55,0r0,-252v-88,-4,-171,1,-169,85","w":212},"\u00df":{"d":"161,-136v17,-13,33,-27,32,-59v-1,-47,-32,-69,-80,-70v-56,0,-89,30,-89,84r0,181r55,0r0,-183v-1,-21,12,-37,32,-36v48,3,25,64,-3,74r0,36v22,3,46,12,46,35v-1,24,-20,32,-46,34r0,41v56,1,100,-18,100,-73v0,-36,-22,-52,-47,-64","w":223},"\u00ae":{"d":"149,4v79,0,131,-52,131,-130v0,-78,-52,-130,-130,-130v-79,0,-131,52,-131,130v0,78,52,130,130,130xm150,-242v70,0,115,46,115,116v0,69,-45,116,-116,116v-70,0,-115,-46,-115,-116v0,-70,45,-116,116,-116xm182,-110v16,-7,30,-20,30,-43v1,-52,-62,-47,-116,-46r0,139r30,0r0,-45r24,0r30,45r36,0xm126,-172v25,1,55,-5,55,20v1,25,-30,21,-55,21r0,-41","w":298},"\u00a9":{"d":"149,4v79,0,131,-52,131,-130v0,-78,-52,-130,-130,-130v-79,0,-131,52,-131,130v0,78,52,130,130,130xm150,-242v70,0,115,46,115,116v0,69,-45,116,-116,116v-70,0,-115,-46,-115,-116v0,-70,45,-116,116,-116xm80,-127v-5,68,90,92,128,46r-20,-20v-22,27,-76,17,-76,-27v0,-43,52,-54,75,-27r20,-23v-13,-12,-28,-22,-55,-21v-45,1,-70,28,-72,72","w":298},"\u00b4":{"d":"94,-214r46,-43r-47,-21r-40,64r41,0","w":180},"\u00a8":{"d":"155,-214r0,-49r-53,0r0,49r53,0xm78,-214r0,-49r-53,0r0,49r53,0","w":180},"\u00c6":{"d":"357,0r0,-49r-128,0r0,-53r110,0r0,-50r-110,0r0,-51r126,0r0,-49r-216,0r-136,252r57,0r30,-57r84,0r0,57r183,0xm174,-105r-58,0r52,-99r6,0r0,99","w":376},"\u00d8":{"d":"153,4v81,-3,134,-51,134,-130v0,-36,-14,-66,-32,-87r35,-41r-53,0r-14,16v-18,-11,-42,-18,-70,-18v-81,3,-134,51,-134,130v0,36,14,66,32,87r-35,41r53,0r14,-16v18,11,42,18,70,18xm89,-82v-41,-63,21,-153,99,-116xm217,-170v41,63,-21,153,-99,116","w":306},"\u00b1":{"d":"151,-75v0,50,-86,28,-101,0r-37,36v39,58,192,65,192,-36v0,-32,-19,-44,-40,-55v19,-12,33,-27,33,-58v0,-76,-121,-86,-162,-41v-6,6,-12,12,-18,19r38,33v14,-16,26,-29,52,-30v21,0,35,10,36,27v1,30,-34,32,-68,30r0,46v35,-1,75,-2,75,29","w":221},"\u00a5":{"d":"150,-94r66,0r0,-39r-52,0r78,-119r-62,0r-56,93r-55,-93r-64,0r77,119r-51,0r0,39r66,0r0,22r-66,0r0,39r66,0r0,33r53,0r0,-33r66,0r0,-39r-66,0r0,-22","w":246},"\u00b5":{"d":"246,-32v24,-21,41,-53,41,-94v0,-80,-53,-130,-134,-130v-81,0,-134,51,-134,130v0,91,76,145,172,125r38,37r81,0v-17,-27,-44,-44,-64,-68xm153,-205v48,0,76,32,76,79v0,47,-28,79,-76,79v-48,0,-76,-32,-76,-79v0,-47,28,-79,76,-79","w":306},"\u03bc":{"d":"246,-32v24,-21,41,-53,41,-94v0,-80,-53,-130,-134,-130v-81,0,-134,51,-134,130v0,91,76,145,172,125r38,37r81,0v-17,-27,-44,-44,-64,-68xm153,-205v48,0,76,32,76,79v0,47,-28,79,-76,79v-48,0,-76,-32,-76,-79v0,-47,28,-79,76,-79","w":306},"\u00aa":{"d":"19,-176v0,36,53,41,68,19r0,11r29,0v-1,-52,10,-107,-47,-107v-19,0,-29,3,-41,9r7,22v18,-8,55,-12,52,16v-27,-11,-68,-4,-68,30xm118,-100r0,-23r-100,0r0,23r100,0xm48,-178v-1,-18,27,-17,40,-11v2,17,-9,23,-24,24v-9,0,-16,-4,-16,-13","w":140},"\u00ba":{"d":"70,-143v34,0,56,-22,56,-56v0,-34,-22,-55,-55,-55v-33,0,-56,21,-56,56v0,34,22,55,55,55xm122,-100r0,-23r-104,0r0,23r104,0xm70,-228v15,-1,27,15,26,30v0,15,-10,29,-25,29v-16,1,-27,-14,-27,-30v0,-15,11,-29,26,-29","w":140},"\u00e6":{"d":"13,-57v0,78,114,70,151,32v31,40,127,37,152,-7r-31,-27v-24,30,-90,24,-94,-18r134,0v5,-69,-25,-118,-91,-120v-28,0,-50,12,-64,26v-23,-33,-104,-28,-140,-9r13,42v30,-13,99,-21,95,28v-50,-18,-125,-8,-125,53xm190,-112v1,-34,46,-55,70,-29v7,8,11,17,13,29r-83,0xm66,-59v0,-32,49,-29,72,-19v1,10,4,17,7,25v-14,10,-28,18,-49,18v-16,0,-30,-7,-30,-24","w":342},"\u00f8":{"d":"120,-197v-89,-6,-134,104,-81,166r-29,33v21,-2,51,6,57,-10v70,33,160,-8,157,-88v0,-28,-9,-50,-24,-65r29,-34v-22,1,-52,-6,-58,11v-14,-7,-31,-12,-51,-13xm73,-71v-19,-46,16,-95,67,-76xm166,-121v19,45,-17,94,-66,76","w":239},"\u00bf":{"d":"78,-252r0,58r59,0r0,-58r-59,0xm68,-73v0,-29,34,-28,65,-35r-8,-58r-37,0r-4,22v-39,8,-70,26,-71,72v-4,91,136,92,176,36r-33,-36v-14,14,-30,25,-54,25v-20,0,-34,-8,-34,-26","w":195},"\u00a1":{"d":"29,-252r0,58r58,0r0,-58r-58,0xm90,0r-17,-166r-30,0r-17,166r64,0","w":116},"\u00ab":{"d":"173,-179v-19,29,-43,53,-60,84r60,81r42,-21r-47,-62r47,-61xm75,-179v-19,29,-43,53,-60,84r60,81r42,-21r-47,-62r47,-61","w":232},"\u00bb":{"d":"157,-14v19,-29,43,-53,60,-84r-60,-81r-42,21r47,62r-47,61xm59,-14v19,-29,44,-53,61,-84r-61,-81r-42,21r47,62r-47,61","w":232},"\u00a0":{},"\u00c0":{"d":"276,0r-108,-254r-51,0r-108,254r56,0r23,-57r107,0r23,57r58,0xm175,-105r-67,0r33,-82xm165,-272r-40,-64r-47,21r46,43r41,0","w":284},"\u00c3":{"d":"97,-268v15,-46,76,23,103,-17v7,-9,12,-21,16,-36r-29,-9v-18,47,-90,-35,-112,32v-3,6,-5,14,-7,21xm276,0r-108,-254r-51,0r-108,254r56,0r23,-57r107,0r23,57r58,0xm175,-105r-67,0r33,-82","w":284},"\u00d5":{"d":"108,-268v16,-46,76,23,103,-17v7,-9,12,-21,16,-36r-29,-9v-18,47,-90,-35,-112,32v-3,6,-5,14,-7,21xm153,4v81,0,134,-50,134,-131v0,-79,-54,-129,-134,-129v-81,0,-134,50,-134,131v0,79,54,129,134,129xm153,-205v48,0,76,32,76,80v0,46,-28,78,-76,78v-48,0,-76,-32,-76,-80v0,-46,28,-78,76,-78","w":306},"\u0152":{"d":"19,-126v0,80,54,126,134,126r215,0r0,-49r-128,0r0,-53r110,0r0,-50r-110,0r0,-51r126,0r0,-49r-213,0v-80,4,-134,47,-134,126xm77,-126v0,-59,42,-82,108,-76r0,152v-65,5,-108,-16,-108,-76","w":387},"\u0153":{"d":"116,4v34,0,59,-14,76,-34v27,45,129,44,154,-2r-31,-27v-24,29,-90,25,-94,-18r134,0v5,-69,-26,-120,-92,-120v-31,0,-56,15,-70,34v-17,-20,-41,-34,-75,-34v-61,0,-103,40,-103,101v0,60,39,100,101,100xm220,-112v1,-33,45,-56,69,-29v7,8,11,17,13,29r-82,0xm117,-149v31,0,48,21,49,53v0,32,-17,53,-48,53v-32,0,-49,-23,-49,-53v0,-32,16,-53,48,-53","w":371},"\u00ff":{"d":"83,1v-5,17,-31,13,-43,5r-18,39v28,21,87,17,100,-15v30,-71,57,-150,86,-223r-57,0r-42,131r-44,-131r-58,0xm173,-214r0,-49r-53,0r0,49r53,0xm96,-214r0,-49r-53,0r0,49r53,0","w":216},"\u0178":{"d":"253,-252r-63,0r-61,101r-60,-101r-65,0r97,153r0,99r56,0r0,-100xm194,-272r0,-49r-53,0r0,49r53,0xm117,-272r0,-49r-53,0r0,49r53,0","w":257},"\u00a4":{"d":"156,-256v-60,1,-89,36,-105,81r-33,0r0,36r27,0v0,8,-2,18,0,25r-27,0r0,36r33,0v11,63,92,105,158,69v15,-8,26,-21,37,-36r-40,-30v-18,37,-84,41,-97,-3r67,0r0,-36r-75,0v0,-8,-2,-18,0,-25r75,0r0,-36r-67,0v9,-17,22,-32,46,-32v26,0,35,13,48,28r42,-31v-19,-26,-43,-46,-89,-46","w":259},"\u00b7":{"d":"81,-83r0,-57r-59,0r0,57r59,0","w":102},"\u00c2":{"d":"142,-296r28,24r42,0r-44,-56r-52,0r-44,56r41,0xm276,0r-108,-254r-51,0r-108,254r56,0r23,-57r107,0r23,57r58,0xm175,-105r-67,0r33,-82","w":284},"\u00ca":{"d":"124,-296r29,24r42,0r-45,-56r-51,0r-45,56r42,0xm222,0r0,-49r-137,0r0,-53r119,0r0,-50r-119,0r0,-51r135,0r0,-49r-190,0r0,252r192,0","w":241},"\u00c1":{"d":"276,0r-108,-254r-51,0r-108,254r56,0r23,-57r107,0r23,57r58,0xm175,-105r-67,0r33,-82xm161,-272r46,-43r-47,-21r-40,64r41,0","w":284},"\u00cb":{"d":"222,0r0,-49r-137,0r0,-53r119,0r0,-50r-119,0r0,-51r135,0r0,-49r-190,0r0,252r192,0xm190,-272r0,-49r-53,0r0,49r53,0xm113,-272r0,-49r-53,0r0,49r53,0","w":241},"\u00c8":{"d":"222,0r0,-49r-137,0r0,-53r119,0r0,-50r-119,0r0,-51r135,0r0,-49r-190,0r0,252r192,0xm155,-272r-40,-64r-47,21r46,43r41,0","w":241},"\u00cd":{"d":"88,0r0,-252r-55,0r0,252r55,0xm79,-272r46,-43r-47,-21r-40,64r41,0","w":120},"\u00ce":{"d":"103,-296r28,24r42,0r-44,-56r-52,0r-44,56r41,0xm88,0r0,-252r-55,0r0,252r55,0","w":120},"\u00cf":{"d":"88,0r0,-252r-55,0r0,252r55,0xm163,-272r0,-49r-53,0r0,49r53,0xm86,-272r0,-49r-53,0r0,49r53,0","w":120},"\u00cc":{"d":"88,0r0,-252r-55,0r0,252r55,0xm121,-272r-40,-64r-47,21r46,43r41,0","w":120},"\u00d3":{"d":"153,4v81,0,134,-50,134,-131v0,-79,-54,-129,-134,-129v-81,0,-134,50,-134,131v0,79,54,129,134,129xm153,-205v48,0,76,32,76,80v0,46,-28,78,-76,78v-48,0,-76,-32,-76,-80v0,-46,28,-78,76,-78xm175,-272r46,-43r-47,-21r-40,64r41,0","w":306},"\u00d4":{"d":"153,-296r28,24r42,0r-44,-56r-52,0r-44,56r41,0xm153,4v81,0,134,-50,134,-131v0,-79,-54,-129,-134,-129v-81,0,-134,50,-134,131v0,79,54,129,134,129xm153,-205v48,0,76,32,76,80v0,46,-28,78,-76,78v-48,0,-76,-32,-76,-80v0,-46,28,-78,76,-78","w":306},"\u00d2":{"d":"153,4v81,0,134,-50,134,-131v0,-79,-54,-129,-134,-129v-81,0,-134,50,-134,131v0,79,54,129,134,129xm153,-205v48,0,76,32,76,80v0,46,-28,78,-76,78v-48,0,-76,-32,-76,-80v0,-46,28,-78,76,-78xm172,-272r-40,-64r-47,21r46,43r41,0","w":306},"\u00da":{"d":"135,4v73,-1,110,-40,111,-114r0,-142r-56,0v-8,78,30,205,-54,205v-83,0,-46,-127,-54,-205r-56,0r0,144v0,72,39,112,109,112xm153,-270r46,-43r-47,-21r-40,64r41,0","w":272},"\u00db":{"d":"136,-296r28,24r42,0r-44,-56r-52,0r-44,56r41,0xm135,4v73,-1,110,-40,111,-114r0,-142r-56,0v-8,78,30,205,-54,205v-83,0,-46,-127,-54,-205r-56,0r0,144v0,72,39,112,109,112","w":272},"\u00d9":{"d":"135,4v73,-1,110,-40,111,-114r0,-142r-56,0v-8,78,30,205,-54,205v-83,0,-46,-127,-54,-205r-56,0r0,144v0,72,39,112,109,112xm160,-270r-40,-64r-47,21r46,43r41,0","w":272},"\u0131":{"d":"82,0r0,-193r-55,0r0,193r55,0"},"\u00af":{"d":"155,-216r0,-38r-130,0r0,38r130,0","w":180},"\u02c9":{"d":"155,-216r0,-38r-130,0r0,38r130,0","w":180},"\u00b8":{"d":"75,-4r-33,47r46,19r27,-66r-40,0","w":180},"\u0142":{"d":"92,-117r28,-8r0,-51r-28,8r0,-95r-54,0r0,111r-27,8r0,51r27,-8r0,101r54,0r0,-117","w":130},"\u0160":{"d":"114,-305r-28,-23r-42,0r44,56r52,0r44,-56r-41,0xm13,-37v46,54,199,64,199,-38v0,-78,-89,-64,-132,-98v-8,-21,8,-35,31,-34v26,2,46,12,65,25r29,-42v-50,-46,-182,-48,-182,45v0,73,78,65,125,92v23,13,2,44,-27,42v-33,-2,-54,-16,-75,-31","w":230},"\u0161":{"d":"92,-247r-28,-24r-42,0r44,57r52,0r44,-57r-41,0xm68,-140v9,-28,55,-7,73,4r21,-38v-50,-42,-173,-20,-138,64v13,32,63,30,89,49v12,9,-2,25,-19,22v-26,0,-44,-10,-61,-23r-24,36v45,50,189,36,152,-56v-13,-32,-62,-32,-89,-51v-2,-2,-4,-4,-4,-7","w":180},"\u00dd":{"d":"253,-252r-63,0r-61,101r-60,-101r-65,0r97,153r0,99r56,0r0,-100xm149,-270r46,-43r-47,-21r-40,64r41,0","w":257},"\u00fd":{"d":"83,1v-5,17,-31,13,-43,5r-18,39v28,21,87,17,100,-15v30,-71,57,-150,86,-223r-57,0r-42,131r-44,-131r-58,0xm124,-214r46,-43r-47,-21r-40,64r41,0","w":216},"\u00de":{"d":"86,-39v82,5,144,-13,144,-89v0,-74,-61,-94,-144,-87r0,-37r-56,0r0,252r56,0r0,-39xm86,-165v42,-1,88,-4,88,38v0,40,-45,41,-88,39r0,-77","w":242},"\u00fe":{"d":"139,4v56,-3,88,-40,88,-100v0,-60,-32,-98,-88,-101v-30,-2,-46,15,-60,32r0,-98r-55,0r0,321r55,0r0,-83v14,15,30,31,60,29xm125,-150v29,0,47,21,47,54v0,32,-18,53,-47,53v-30,0,-47,-22,-47,-53v0,-31,17,-54,47,-54","w":243},"\u017d":{"d":"129,-305r-29,-23r-42,0r45,56r51,0r45,-56r-42,0xm233,0r0,-49r-139,0r139,-161r0,-42r-206,0r0,49r134,0r-138,161r0,42r210,0","w":254},"\u017e":{"d":"104,-247r-28,-24r-42,0r44,57r52,0r44,-57r-41,0xm186,0r0,-44r-100,0r100,-110r0,-39r-165,0r0,44r97,0r-100,110r0,39r168,0","w":202},"\u0141":{"d":"222,0r0,-50r-126,0r0,-61r69,-20r0,-52r-69,21r0,-90r-55,0r0,106r-27,8r0,52r27,-8r0,94r181,0","w":233},"\u00d0":{"d":"273,-126v0,-116,-105,-135,-232,-126r0,101r-27,0r0,49r27,0r0,102r98,0v80,-4,134,-45,134,-126xm215,-126v0,64,-49,83,-119,76r0,-52r54,0r0,-49r-54,0r0,-51v69,-5,119,12,119,76","w":292},"\u00f0":{"d":"115,4v101,5,129,-120,71,-187r-29,-41r36,-15r-19,-27r-36,15r-9,-12r-61,0r23,31r-42,17r20,27r42,-17r31,42v-57,-31,-132,4,-127,73v4,58,40,91,100,94xm116,-136v29,0,48,18,48,47v0,29,-17,47,-47,47v-29,-1,-49,-19,-49,-47v0,-29,18,-47,48,-47","w":233}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright The Monotype Corporation 1991-1997. All rights
 * reserved. Twentieth Century is a trademark of The Monotype Corporation which may
 * be registered in certain jurisdictions.
 * 
 * Trademark:
 * Twentieth Century is a trademark of The Monotype Corporation which may be
 * registered in certain jurisdictions.
 * 
 * Description:
 * 20th Century was designed and drawn by Sol Hess in the Lanston Monotype drawing
 * office between 1936 and 1947. The first weights were added to the Monotype
 * typeface library in 1959. This is a face based on geometric shapes which
 * originated in Germany in the early 1920's and became an integral part of the
 * Bauhaus movement of that time. Form and function became the key words,
 * unnecessary decoration was scorned. This clean cut, sans serif with geometric
 * shapes was most appropriate. The lighter weights can be used for text setting,
 * the bold and condensed fonts are suitable for display in headlines and
 * advertising.
 * 
 * Manufacturer:
 * Monotype Typography
 * 
 * Designer:
 * Sol Hess
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 */
Cufon.registerFont({"w":191,"face":{"font-family":"Tw Cen MT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 2 2 1 4 2 6 3","ascent":"288","descent":"-72","x-height":"3","bbox":"-17.0584 -307 349 79","underline-thickness":"21.0938","underline-position":"-16.1719","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":95},"!":{"d":"12,-231r50,0r0,152r-50,0r0,-152xm37,3v-16,0,-28,-12,-28,-28v0,-15,12,-29,28,-29v15,0,28,14,28,29v0,15,-13,28,-28,28","w":74},"\"":{"d":"28,-166v-6,-28,-11,-56,-9,-92r54,0v2,35,-2,64,-8,92r-37,0xm108,-166v-7,-27,-12,-56,-10,-92r54,0v2,35,-2,64,-8,92r-36,0","w":170},"#":{"d":"14,-179r54,0r15,-67r33,0r-15,67r62,0r15,-67r33,0r-14,67r29,0r0,34r-36,0r-11,53r47,0r0,33r-53,0r-15,67r-33,0r15,-67r-63,0r-14,67r-33,0r14,-67r-30,0r0,-33r36,0r12,-53r-48,0r0,-34xm95,-145r-11,53r62,0r11,-53r-62,0","w":240},"$":{"d":"20,-165v0,-33,28,-67,63,-69r0,-29r26,0r0,30v18,1,39,10,62,27r-25,33v-15,-11,-28,-17,-37,-19r0,58v37,10,66,30,66,70v0,39,-28,62,-65,68r0,53r-26,0r0,-55v-34,-3,-46,-10,-67,-27r23,-33v17,11,31,18,43,20r0,-55v-40,-18,-63,-28,-63,-72xm83,-194v-23,6,-24,42,0,51r0,-51xm110,-85r0,49v29,-3,24,-41,0,-49"},"%":{"d":"232,-252r28,0r-143,279r-28,0xm90,-95v-39,0,-62,-36,-62,-78v-1,-44,22,-79,61,-79v38,0,60,35,60,78v0,42,-20,79,-59,79xm89,-227v-25,3,-26,22,-27,55v0,34,9,51,27,51v18,0,27,-16,27,-50v0,-35,-4,-52,-27,-56xm260,27v-36,-1,-59,-36,-59,-75v0,-43,20,-82,60,-82v39,0,60,38,60,79v0,40,-23,79,-61,78xm234,-51v0,30,3,52,27,52v17,0,26,-17,26,-51v-1,-30,-2,-54,-25,-54v-19,0,-28,17,-28,53","w":344},"&":{"d":"162,-169v0,24,-28,45,-40,56r31,36r25,-24r24,28v-1,-1,-23,26,-25,24r42,49r-56,0r-19,-22v-29,15,-34,26,-64,26v-34,0,-64,-21,-63,-58v0,-25,16,-46,49,-63v-40,-40,-20,-105,36,-106v32,0,60,23,60,54xm104,-190v-25,6,-22,30,-4,50v15,-11,22,-21,22,-31v0,-12,-6,-19,-18,-19xm68,-56v5,25,30,23,51,5r-31,-37v-13,11,-20,22,-20,32","w":227},"'":{"d":"25,-166v-6,-28,-11,-56,-9,-92r54,0v2,35,-2,64,-8,92r-37,0","w":85},"(":{"d":"72,58v-66,-67,-68,-228,0,-296r26,21v-55,66,-57,190,0,253","w":112},")":{"d":"39,-238v65,71,69,220,1,296r-27,-22v56,-71,56,-182,0,-253","w":112},"*":{"d":"67,-175v18,-9,-26,-59,9,-60v8,-1,16,7,15,15v-1,23,-19,37,-6,45v9,-2,25,-30,41,-32v8,-1,16,7,15,15v-1,21,-38,16,-51,26r0,5v11,9,51,4,50,25v-14,38,-40,-9,-54,-19r-5,3v-2,8,24,62,-5,59v-29,-3,-4,-39,-4,-59v-16,-8,-24,35,-45,31v-25,-4,-12,-31,6,-33v11,-4,29,0,30,-13v-12,-8,-51,-5,-50,-26v14,-35,39,8,54,18","w":153},"+":{"d":"22,-138r79,0r0,-79r38,0r0,79r79,0r0,38r-79,0r0,79r-38,0r0,-79r-79,0r0,-38","w":240},",":{"d":"33,-53r45,0r-37,97r-26,0","w":93},"-":{"d":"5,-98r102,0r0,45r-102,0r0,-45","w":112},".":{"d":"46,3v-15,0,-28,-14,-28,-28v0,-14,13,-28,28,-28v15,0,29,14,29,28v0,15,-14,28,-29,28","w":93},"\/":{"d":"100,-248r26,0r-89,314r-27,0","w":131},"0":{"d":"7,-110v0,-64,30,-118,89,-117v58,0,87,50,87,112v0,69,-32,115,-87,117v-57,2,-89,-51,-89,-112xm95,-41v56,-1,56,-141,1,-143v-58,1,-56,141,-1,143"},"1":{"d":"47,-224r73,0r0,224r-50,0r0,-183r-32,0"},"2":{"d":"99,-229v73,0,96,78,51,133v-14,17,-24,38,-40,54r64,0r0,42r-156,0r76,-97v16,-22,29,-34,31,-61v1,-17,-13,-30,-30,-30v-24,1,-26,18,-29,44r-50,0v-1,-51,34,-85,83,-85"},"3":{"d":"79,-135v44,9,55,-55,14,-57v-17,0,-27,11,-30,32r-45,0v-4,-87,146,-88,147,-7v0,18,-9,34,-27,49v60,28,29,127,-43,121v-44,-4,-74,-28,-79,-69r47,0v5,42,58,41,59,3v1,-24,-17,-37,-43,-34r0,-38"},"4":{"d":"108,-224r45,0r0,129r22,0r0,41r-22,0r0,54r-49,0r0,-54r-100,0r0,-41xm104,-168v-21,23,-38,49,-58,73r58,0r0,-73"},"5":{"d":"121,-80v-1,-40,-49,-47,-83,-28r11,-117r111,0r0,41r-68,0r-2,27v48,-2,79,33,80,75v2,70,-97,112,-150,64r5,-51v24,16,44,25,58,25v18,0,39,-17,38,-36"},"6":{"d":"92,3v-65,0,-100,-70,-70,-131v18,-38,40,-64,62,-96r59,0r-55,75v51,-12,90,26,91,71v1,47,-40,81,-87,81xm95,-42v17,0,34,-18,33,-36v0,-19,-15,-36,-33,-36v-19,0,-37,17,-37,36v0,20,17,37,37,36"},"7":{"d":"9,-224r178,0r-143,231r-40,-25r102,-166r-97,0r0,-40"},"8":{"d":"95,-228v66,-7,95,76,43,110v61,33,30,121,-42,121v-73,0,-104,-88,-43,-121v-49,-30,-24,-117,42,-110xm96,-140v11,1,24,-12,24,-22v1,-13,-11,-25,-24,-25v-14,0,-24,10,-24,23v0,13,10,25,24,24xm95,-40v15,0,28,-14,28,-29v0,-15,-14,-29,-28,-29v-37,0,-33,58,0,58"},"9":{"d":"98,-228v69,0,100,75,67,135v-22,40,-37,59,-60,93r-59,0r56,-76v-55,12,-90,-25,-91,-73v-1,-45,41,-79,87,-79xm96,-112v19,0,35,-17,35,-35v0,-20,-16,-35,-36,-35v-18,0,-33,17,-33,35v0,19,16,35,34,35"},":":{"d":"46,-90v-15,0,-28,-11,-28,-27v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,16,-14,27,-28,27xm46,2v-15,0,-27,-12,-27,-27v0,-15,11,-28,27,-28v15,0,29,14,29,28v0,15,-14,27,-29,27","w":93},";":{"d":"50,-90v-15,0,-28,-14,-28,-28v0,-14,14,-28,28,-28v14,0,28,13,28,28v0,15,-13,28,-28,28xm28,-53r45,0r-37,98r-26,0","w":93},"<":{"d":"218,-20r-196,-82r0,-34r196,-81r0,40r-144,58r144,58r0,41","w":240},"=":{"d":"22,-180r196,0r0,38r-196,0r0,-38xm22,-96r196,0r0,38r-196,0r0,-38","w":240},">":{"d":"22,-217r196,81r0,34r-196,82r0,-41r144,-58r-144,-58r0,-40","w":240},"?":{"d":"163,-161v0,34,-22,64,-53,71r0,12r-49,0r0,-48v30,2,52,-9,53,-34v0,-15,-15,-29,-30,-29v-15,0,-28,14,-26,31v-16,-2,-38,4,-50,-2v-1,-39,39,-74,80,-74v38,0,77,33,75,73xm86,3v-16,1,-28,-13,-28,-28v0,-16,12,-28,28,-28v16,0,27,12,27,28v0,16,-11,28,-27,28","w":172},"@":{"d":"42,-82v-2,81,64,126,149,126v56,0,96,-16,121,-47r37,0v-25,51,-81,78,-155,79v-108,1,-186,-56,-184,-161v2,-106,71,-177,180,-177v84,0,150,54,150,135v0,64,-54,128,-116,127v-19,0,-29,-7,-32,-20v-43,44,-116,9,-116,-55v0,-71,85,-158,142,-92r4,-19r46,0r-29,142v0,6,2,8,7,8v34,-7,62,-49,62,-92v1,-63,-52,-102,-119,-102v-92,0,-145,62,-147,148xm175,-159v-35,0,-53,44,-53,86v0,24,11,40,31,41v35,2,55,-52,55,-86v0,-24,-12,-41,-33,-41","w":351},"A":{"d":"103,-231r39,0r94,231r-50,0r-19,-45r-88,0r-18,45r-50,0xm123,-155r-27,68r54,0","w":247,"k":{"y":14,"w":11,"v":14,"u":7,"Y":40,"W":18,"V":32,"U":14,"T":22,"Q":11,"O":14,"G":7,"C":18}},"B":{"d":"183,-67v1,73,-84,69,-160,67r0,-231v68,-2,140,-6,140,59v0,24,-10,33,-24,46v27,9,43,29,44,59xm114,-169v0,-17,-21,-25,-42,-23r0,50v23,2,42,-7,42,-27xm131,-69v0,-30,-26,-35,-59,-33r0,63v31,2,59,-4,59,-30","w":190,"k":{"\u00c5":7,"\u00c4":7,"A":7}},"C":{"d":"17,-114v-1,-89,93,-151,179,-104r0,56v-55,-41,-129,-25,-128,49v0,69,74,86,128,47r0,56v-93,40,-178,-14,-179,-104","w":209},"D":{"d":"213,-115v0,69,-47,115,-116,115r-75,0r0,-231r79,0v67,0,112,48,112,116xm162,-117v0,-52,-35,-75,-90,-70r0,142v57,4,90,-16,90,-72","w":228,"k":{"\u00c5":25,"\u00c4":25,"Y":14,"V":7,"A":25,".":18,",":18}},"E":{"d":"24,-231r130,0r0,46r-81,0r0,46r81,0r0,45r-81,0r0,48r81,0r0,46r-130,0r0,-231","w":172},"F":{"d":"24,-231r130,0r0,45r-81,0r0,47r81,0r0,45r-81,0r0,94r-49,0r0,-231","w":172,"k":{"\u00f6":11,"\u00c5":25,"\u00c4":25,"o":11,"A":25,".":36,",":40}},"G":{"d":"11,-117v0,-62,53,-117,115,-117v41,0,72,17,94,53r-33,31v-12,-20,-30,-34,-58,-35v-36,-1,-67,33,-67,69v0,65,96,102,120,34r-55,0r0,-45r107,0v7,79,-40,128,-110,130v-64,2,-113,-55,-113,-120","w":247,"k":{".":11,",":14}},"H":{"d":"23,-231r50,0r0,89r82,0r0,-89r49,0r0,231r-49,0r0,-92r-82,0r0,92r-50,0r0,-231","w":228},"I":{"d":"21,-231r49,0r0,231r-49,0r0,-231","w":93},"J":{"d":"63,-45v13,0,18,-12,18,-25r0,-161r49,0v-8,91,32,234,-63,234v-33,0,-52,-20,-62,-49r36,-27v3,8,10,28,22,28","w":153,"k":{"\u00f6":4,"\u00c5":7,"\u00c4":7,"o":4,"e":-4,"A":7,";":4,":":4,".":11,",":11}},"K":{"d":"24,-231r50,0r1,98r77,-98r60,0r-87,110r91,121r-60,0r-82,-108r0,108r-50,0r0,-231","w":228,"k":{"\u00fc":11,"\u00f6":14,"\u00e5":11,"\u00e4":11,"\u00d6":22,"y":18,"w":18,"v":25,"u":11,"o":14,"e":7,"a":11,"O":22,"G":11,"C":14}},"L":{"d":"24,-231r50,0r0,181r68,0r0,50r-118,0r0,-231","w":153,"k":{"\u00d6":4,"y":7,"w":4,"Y":18,"W":4,"V":14,"T":11,"O":4,"G":4,"C":7}},"M":{"d":"40,-231r59,0r43,139r43,-139r58,0r29,231r-47,0r-21,-162r-50,162r-23,0r-52,-164r-19,164r-48,0","w":285},"N":{"d":"176,-231r49,0r0,231r-49,0r-106,-149r0,149r-49,0r0,-231r49,0r106,149r0,-149","w":247},"O":{"d":"131,3v-66,0,-115,-51,-115,-118v0,-65,52,-118,114,-118v67,0,118,51,118,118v0,67,-51,118,-117,118xm196,-115v0,-41,-25,-72,-64,-72v-39,0,-64,32,-64,73v0,39,26,71,63,71v39,0,65,-30,65,-72","w":266,"k":{"\u00c5":25,"\u00c4":25,"Y":18,"X":14,"W":4,"V":11,"T":4,"A":25,".":22,",":25}},"P":{"d":"174,-163v0,53,-43,78,-100,74r0,89r-50,0r0,-231r79,0v41,0,72,27,71,68xm123,-160v1,-24,-25,-33,-50,-29r0,59v28,3,49,-7,50,-30","k":{"\u00e5":18,"\u00c5":25,"\u00c4":25,"o":22,"e":14,"a":18,"A":25,".":47,",":50}},"Q":{"d":"132,-234v102,0,155,134,84,203r28,33r-33,21r-26,-31v-88,35,-170,-23,-169,-111v1,-59,51,-115,116,-115xm68,-117v0,47,31,84,84,71r-24,-29r32,-21r23,26v32,-40,7,-118,-51,-118v-38,0,-64,31,-64,71","w":266,"k":{"Y":18,"V":7,"A":4,".":7}},"R":{"d":"99,-231v84,-10,99,113,32,135r64,96r-57,0r-60,-89r-5,0r0,89r-50,0r0,-231r76,0xm123,-161v-1,-24,-23,-31,-50,-29r0,60v29,2,51,-6,50,-31","w":209,"k":{"\u00fc":18,"\u00f6":14,"\u00e5":11,"\u00e4":11,"\u00dc":14,"\u00d6":14,"y":14,"w":4,"v":7,"u":18,"o":14,"e":11,"a":11,"Y":32,"W":7,"V":14,"U":14,"T":4,"Q":14,"O":14,"G":11,"C":18}},"S":{"d":"69,-103v-80,-17,-61,-131,20,-131v26,0,47,8,64,24r-31,34v-16,-10,-28,-14,-35,-14v-31,7,-23,39,11,50v35,12,59,28,61,70v2,39,-40,73,-81,73v-24,0,-47,-12,-70,-34r32,-38v15,15,28,23,41,23v38,-11,33,-47,-12,-57","w":171,"k":{".":7,",":14}},"T":{"d":"8,-231r155,0r0,49r-53,0r0,182r-50,0r0,-182r-52,0r0,-49","w":172,"k":{"\u00e5":11,"\u00d6":4,"\u00c5":25,"\u00c4":25,"z":7,"y":18,"w":7,"u":7,"s":22,"r":7,"o":25,"m":7,"e":14,"c":18,"a":11,"O":4,"C":7,"A":25,";":14,":":14,".":25,"-":11,",":32}},"U":{"d":"115,3v-56,0,-92,-37,-92,-82r0,-152r49,0r0,141v0,25,15,44,40,44v28,0,44,-17,43,-46r0,-139r49,0r0,150v-1,49,-37,84,-89,84","w":228,"k":{"\u00c5":7,"\u00c4":7,"A":7,".":11,",":14}},"V":{"d":"4,-231r51,0r58,154r58,-154r51,0r-87,231r-44,0","w":228,"k":{"\u00e5":14,"\u00d6":11,"\u00c5":29,"\u00c4":29,"y":4,"u":11,"r":7,"o":32,"i":4,"e":22,"a":14,"Q":7,"O":11,"G":4,"C":11,"A":29,";":18,":":11,".":40,"-":11,",":32}},"W":{"d":"6,-231r44,0r37,158r39,-158r32,0r38,158r38,-158r44,0r-56,231r-47,0r-33,-142r-34,142r-47,0","w":285,"k":{"\u00e5":7,"\u00d6":4,"\u00c5":14,"\u00c4":14,"u":7,"o":14,"i":-4,"e":4,"d":7,"a":7,"O":4,"C":7,"A":14,";":11,":":7,".":22,"-":4,",":25}},"X":{"d":"14,-231r53,0r46,71r48,-71r52,0r-73,110r80,121r-52,0r-54,-82r-55,82r-52,0r81,-121","w":228,"k":{"\u00d6":14,"O":14,"G":11,"C":14}},"Y":{"d":"6,-231r55,0r42,72r44,-72r55,0r-74,123r0,108r-49,0r0,-108","w":209,"k":{"\u00e5":29,"\u00d6":14,"\u00c5":29,"\u00c4":29,"v":7,"u":14,"q":18,"p":25,"o":36,"e":29,"d":29,"a":29,"O":14,"G":11,"C":18,"A":29,";":18,":":18,".":32,"-":25,",":40}},"Z":{"d":"26,-231r168,0r-104,183r100,0r0,48r-177,0r104,-184r-91,0r0,-47","w":209},"[":{"d":"28,-235r76,0r0,30r-44,0r0,230r43,0r0,30r-75,0r0,-290","w":112},"\\":{"d":"10,-247r26,0r90,313r-25,0","w":131},"]":{"d":"8,-235r74,0r0,290r-74,0r0,-30r42,0r0,-230r-42,0r0,-30","w":112},"^":{"d":"20,-122r66,-140r40,0r64,140r-50,0r-35,-86r-35,86r-50,0","w":210},"_":{"d":"-2,45r0,-18r184,0r0,18r-184,0","w":180},"`":{"d":"87,-174r-31,0r-48,-53r55,0","w":119},"a":{"d":"9,-76v0,-63,76,-106,113,-54r0,-21r45,0r0,151r-45,0v-1,-8,2,-20,-1,-26v-13,17,-22,29,-48,29v-38,0,-64,-39,-64,-79xm88,-38v41,0,43,-72,1,-71v-19,-1,-32,17,-32,37v0,19,12,34,31,34","w":190,"k":{"w":-4,"t":-7,"g":-7}},"b":{"d":"114,3v-24,-1,-32,-12,-48,-27r0,24r-45,0r0,-235r45,0r0,104v41,-53,113,-5,113,56v0,38,-29,79,-65,78xm131,-73v0,-18,-13,-37,-32,-36v-19,0,-33,14,-32,35v0,19,14,36,33,36v18,0,31,-17,31,-35","k":{"\u00fc":7,"y":7,"w":11,"v":11,"u":7,".":7,",":11}},"c":{"d":"62,-77v0,35,37,40,69,25r0,45v-58,30,-118,-11,-118,-69v0,-61,62,-97,118,-68r0,43v-29,-17,-69,-13,-69,24","w":145},"d":{"d":"10,-76v0,-64,76,-106,112,-55r0,-104r45,0r0,235r-44,0v-1,-8,2,-20,-1,-26v-37,59,-112,15,-112,-50xm121,-76v1,-18,-15,-34,-33,-34v-37,0,-40,72,-1,72v20,0,34,-17,34,-38"},"e":{"d":"86,-154v46,0,80,40,76,89r-108,0v0,36,48,44,63,14r41,14v-33,67,-149,46,-149,-40v0,-43,34,-77,77,-77xm55,-95r60,0v-3,-39,-59,-35,-60,0","w":172,"k":{"y":7,"x":7,"w":7,"v":7,"g":-7}},"f":{"d":"21,-151v-10,-65,30,-99,84,-78r0,43v-24,-19,-45,3,-39,35r39,0r0,41r-39,0r0,110r-45,0r0,-110r-13,0r0,-41r13,0","w":112,"k":{"o":4,"f":-11,"e":-4,"a":-4,"?":-22,".":7,",":7,"!":-18," ":-25}},"g":{"d":"60,11v25,42,73,14,62,-37v-38,54,-113,12,-113,-52v0,-62,72,-107,113,-52r0,-21r45,0r0,153v3,58,-83,75,-131,50v-13,-8,-21,-22,-27,-41r51,0xm90,-114v-19,0,-33,17,-33,38v0,16,17,33,33,33v19,0,32,-17,32,-36v0,-19,-14,-35,-32,-35","w":190,"k":{".":4,",":7}},"h":{"d":"97,-115v-41,0,-23,73,-27,115r-45,0r0,-235r45,0r0,101v34,-37,98,-18,98,45r0,89r-45,0v-4,-43,15,-115,-26,-115","k":{"y":7}},"i":{"d":"46,-179v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28xm23,-151r45,0r0,151r-45,0r0,-151","w":93},"j":{"d":"75,-207v0,35,-56,36,-56,0v0,-16,13,-28,28,-28v16,0,27,13,28,28xm24,-151r45,0r0,218r-45,0r0,-218","w":93},"k":{"d":"20,-235r45,0r0,143r45,-59r53,0r-50,66r55,85r-51,0r-52,-80r0,80r-45,0r0,-235","w":172,"k":{"\u00f6":4,"o":4}},"l":{"d":"23,-235r45,0r0,235r-45,0r0,-235","w":93},"m":{"d":"97,-113v-42,3,-25,69,-28,113r-46,0r0,-151r46,0r0,24v12,-10,27,-28,49,-28v20,0,36,15,43,34v14,-19,28,-34,52,-34v63,0,48,90,49,155r-45,0v-4,-41,16,-113,-23,-113v-43,0,-24,70,-28,113r-45,0v-4,-41,15,-107,-24,-113","w":285,"k":{"y":11}},"n":{"d":"98,-115v-41,4,-25,72,-28,115r-45,0r0,-151r45,0r0,18v37,-42,98,-18,98,41r0,92r-46,0v-5,-42,16,-110,-24,-115","k":{"y":7}},"o":{"d":"96,3v-46,0,-79,-35,-79,-78v-1,-45,35,-80,80,-80v42,0,76,36,76,79v0,44,-33,79,-77,79xm96,-38v18,0,33,-18,33,-37v0,-18,-15,-38,-33,-38v-18,0,-34,17,-34,36v0,20,15,40,34,39","k":{"z":4,"y":11,"x":11,"w":7,"v":11,".":14,",":11}},"p":{"d":"117,3v-26,-1,-33,-13,-49,-27r0,91r-46,0r0,-218r45,0v1,7,-2,17,1,22v35,-55,111,-9,111,56v0,38,-26,77,-62,76xm102,-38v18,0,30,-16,30,-35v0,-19,-13,-36,-32,-36v-18,0,-31,17,-31,36v0,19,14,35,33,35","k":{"y":7,"w":7,".":4,",":7}},"q":{"d":"8,-74v0,-65,80,-109,113,-53r0,-24r45,0r0,218r-45,0r-1,-94v-12,18,-22,29,-47,30v-38,1,-65,-38,-65,-77xm86,-38v18,0,34,-17,34,-35v0,-17,-15,-36,-31,-36v-20,-1,-33,16,-33,37v0,18,14,34,30,34","w":190},"r":{"d":"105,-103v-52,-12,-39,56,-40,103r-46,0r0,-151r45,0v1,7,-2,17,1,22v8,-15,19,-26,40,-24r0,50","w":112,"k":{"\u00e5":-4,"\u00e4":-4,"y":-7,"v":-7,"t":-18,"r":-7,"q":-4,"n":-4,"m":-7,"l":-7,"k":-4,"j":-4,"g":-7,"e":-7,"a":-4,":":-4,".":14,"-":-18,",":11}},"s":{"d":"21,-109v0,-50,82,-60,112,-21r-31,19v-12,-14,-31,-21,-38,-3v6,30,76,20,73,69v-3,39,-57,61,-93,38v-10,-7,-21,-15,-29,-28r37,-17v10,23,33,30,41,9v-4,-12,-12,-12,-26,-18v-30,-10,-46,-26,-46,-48","w":153,"k":{"w":7,".":7,",":11}},"t":{"d":"21,-203r45,0r0,52r22,0r0,41r-22,0r0,110r-45,0r0,-110r-17,0r0,-41r17,0r0,-52","w":93},"u":{"d":"95,3v-44,0,-74,-28,-74,-70r0,-84r46,0v3,42,-13,109,27,109v42,0,28,-66,30,-109r46,0r0,88v0,38,-35,66,-75,66"},"v":{"d":"6,-151r48,0r41,88r41,-88r48,0r-71,151r-36,0","k":{"\u00f6":7,"\u00e5":4,"\u00e4":4,"q":4,"o":7,"e":4,"c":4,"a":4,".":29,",":29}},"w":{"d":"4,-151r48,0r40,89r36,-89r29,0r36,89r40,-89r48,0r-69,151r-36,0r-33,-83r-33,83r-37,0","w":285,"k":{"\u00f6":4,"o":4,"d":4,"c":4,".":32,",":32}},"x":{"d":"9,-151r56,0r30,38r30,-38r55,0r-58,72r64,79r-56,0r-35,-44r-36,44r-55,0r63,-79","k":{"\u00f6":7,"o":7,"c":7}},"y":{"d":"9,-151r48,0r43,88r39,-88r46,0r-94,218r-47,0r34,-78","k":{"\u00f6":4,"o":4,"c":4,".":22,",":25}},"z":{"d":"21,-151r142,0r-80,110r68,0r0,41r-143,0r81,-110r-68,0r0,-41","w":172,"k":{"\u00f6":4,"o":4,"e":4,"c":4}},"{":{"d":"50,0v1,-46,-3,-68,-39,-69r0,-42v39,0,39,-29,39,-69v0,-65,20,-80,81,-79v-2,13,4,33,-2,42v-26,1,-33,1,-34,25v-2,67,1,80,-32,102v32,19,31,47,32,102v1,25,11,24,36,25r0,42v-62,0,-83,-12,-81,-79","w":140},"|":{"d":"87,-250r38,0r0,299r-38,0r0,-299","w":211},"}":{"d":"90,-180v0,46,3,68,39,69r0,42v-38,1,-39,29,-39,69v0,67,-18,79,-81,79v2,-13,-4,-33,2,-42v26,-1,33,-1,34,-25v2,-57,-1,-82,32,-102v-33,-22,-30,-38,-32,-102v-1,-25,-10,-24,-36,-25r0,-42v62,-2,81,15,81,79","w":140},"~":{"d":"76,-159v34,-1,57,26,88,28v15,0,33,-9,52,-26r0,39v-46,48,-95,9,-142,-4v-17,0,-34,9,-53,26r0,-39v19,-16,36,-24,55,-24","w":236},"\u00c4":{"d":"103,-231r39,0r94,231r-50,0r-19,-45r-88,0r-18,45r-50,0xm123,-155r-27,68r54,0xm108,-274v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm187,-274v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":247,"k":{"y":14,"w":11,"v":14,"u":7,"Y":40,"W":18,"V":32,"U":14,"T":22,"Q":11,"O":14,"G":7,"C":18}},"\u00c5":{"d":"90,-273v0,-17,17,-34,34,-34v18,0,35,16,35,34v0,17,-18,35,-35,35v-17,0,-34,-17,-34,-35xm108,-273v0,20,32,20,32,0v0,-8,-8,-15,-16,-15v-8,0,-16,7,-16,15xm103,-231r39,0r94,231r-50,0r-19,-45r-88,0r-18,45r-50,0xm123,-155r-27,68r54,0","w":247,"k":{"y":14,"w":11,"v":14,"Y":40,"W":18,"V":32,"U":14,"T":22,"Q":11,"O":14,"G":7,"C":18}},"\u00c7":{"d":"17,-114v-1,-89,93,-151,179,-104r0,56v-55,-41,-129,-25,-128,49v0,69,74,86,128,47r0,56v-93,40,-178,-14,-179,-104xm148,35v0,37,-57,45,-96,36r0,-21v21,2,62,8,62,-14v0,-19,-27,-16,-46,-12r5,-17v31,-11,75,-4,75,28","w":209},"\u00c9":{"d":"24,-231r130,0r0,46r-81,0r0,46r81,0r0,45r-81,0r0,48r81,0r0,46r-130,0r0,-231xm59,-246r24,-53r55,0r-48,53r-31,0","w":172},"\u00d1":{"d":"183,-293v3,65,-54,39,-87,29v-8,0,-12,5,-12,15r-22,0v-2,-26,9,-44,32,-44v23,0,58,35,66,0r23,0xm176,-231r49,0r0,231r-49,0r-106,-149r0,149r-49,0r0,-231r49,0r106,149r0,-149","w":247},"\u00d6":{"d":"131,3v-66,0,-115,-51,-115,-118v0,-65,52,-118,114,-118v67,0,118,51,118,118v0,67,-51,118,-117,118xm196,-115v0,-41,-25,-72,-64,-72v-39,0,-64,32,-64,73v0,39,26,71,63,71v39,0,65,-30,65,-72xm117,-274v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm196,-274v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":266,"k":{"Y":18,"X":14,"W":4,"V":11,"T":4,"A":25}},"\u00dc":{"d":"115,3v-56,0,-92,-37,-92,-82r0,-152r49,0r0,141v0,25,15,44,40,44v28,0,44,-17,43,-46r0,-139r49,0r0,150v-1,49,-37,84,-89,84xm98,-274v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm177,-274v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":228,"k":{"A":7}},"\u00e1":{"d":"9,-76v0,-63,76,-106,113,-54r0,-21r45,0r0,151r-45,0v-1,-8,2,-20,-1,-26v-13,17,-22,29,-48,29v-38,0,-64,-39,-64,-79xm88,-38v41,0,43,-72,1,-71v-19,-1,-32,17,-32,37v0,19,12,34,31,34xm68,-174r24,-53r55,0r-48,53r-31,0","w":190},"\u00e0":{"d":"9,-76v0,-63,76,-106,113,-54r0,-21r45,0r0,151r-45,0v-1,-8,2,-20,-1,-26v-13,17,-22,29,-48,29v-38,0,-64,-39,-64,-79xm88,-38v41,0,43,-72,1,-71v-19,-1,-32,17,-32,37v0,19,12,34,31,34xm122,-174r-31,0r-48,-53r55,0","w":190},"\u00e2":{"d":"36,-175r37,-52r45,0r37,52r-40,0r-20,-26r-19,26r-40,0xm9,-76v0,-63,76,-106,113,-54r0,-21r45,0r0,151r-45,0v-1,-8,2,-20,-1,-26v-13,17,-22,29,-48,29v-38,0,-64,-39,-64,-79xm88,-38v41,0,43,-72,1,-71v-19,-1,-32,17,-32,37v0,19,12,34,31,34","w":190},"\u00e4":{"d":"9,-76v0,-63,76,-106,113,-54r0,-21r45,0r0,151r-45,0v-1,-8,2,-20,-1,-26v-13,17,-22,29,-48,29v-38,0,-64,-39,-64,-79xm88,-38v41,0,43,-72,1,-71v-19,-1,-32,17,-32,37v0,19,12,34,31,34xm79,-202v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm158,-202v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":190,"k":{"w":-4}},"\u00e3":{"d":"154,-221v3,63,-54,38,-86,29v-8,0,-13,5,-13,15r-22,0v-1,-25,9,-44,32,-44v23,0,58,35,67,0r22,0xm9,-76v0,-63,76,-106,113,-54r0,-21r45,0r0,151r-45,0v-1,-8,2,-20,-1,-26v-13,17,-22,29,-48,29v-38,0,-64,-39,-64,-79xm88,-38v41,0,43,-72,1,-71v-19,-1,-32,17,-32,37v0,19,12,34,31,34","w":190},"\u00e5":{"d":"61,-201v0,-17,17,-34,34,-34v18,0,35,16,35,34v0,18,-17,35,-35,35v-18,0,-34,-17,-34,-35xm80,-201v0,8,7,16,15,16v8,0,16,-8,16,-16v0,-8,-8,-15,-16,-15v-8,0,-15,7,-15,15xm9,-76v0,-63,76,-106,113,-54r0,-21r45,0r0,151r-45,0v-1,-8,2,-20,-1,-26v-13,17,-22,29,-48,29v-38,0,-64,-39,-64,-79xm88,-38v41,0,43,-72,1,-71v-19,-1,-32,17,-32,37v0,19,12,34,31,34","w":190,"k":{"w":-4}},"\u00e7":{"d":"62,-77v0,35,37,40,69,25r0,45v-58,30,-118,-11,-118,-69v0,-61,62,-97,118,-68r0,43v-29,-17,-69,-13,-69,24xm115,35v0,38,-57,44,-95,36r0,-21v21,2,62,8,62,-14v0,-19,-28,-16,-46,-12r5,-17v30,-11,74,-5,74,28","w":145},"\u00e9":{"d":"86,-154v46,0,80,40,76,89r-108,0v0,36,48,44,63,14r41,14v-33,67,-149,46,-149,-40v0,-43,34,-77,77,-77xm55,-95r60,0v-3,-39,-59,-35,-60,0xm59,-174r24,-53r55,0r-48,53r-31,0","w":172},"\u00e8":{"d":"86,-154v46,0,80,40,76,89r-108,0v0,36,48,44,63,14r41,14v-33,67,-149,46,-149,-40v0,-43,34,-77,77,-77xm55,-95r60,0v-3,-39,-59,-35,-60,0xm113,-174r-31,0r-48,-53r55,0","w":172},"\u00ea":{"d":"27,-175r37,-52r46,0r36,52r-40,0r-20,-26r-19,26r-40,0xm86,-154v46,0,80,40,76,89r-108,0v0,36,48,44,63,14r41,14v-33,67,-149,46,-149,-40v0,-43,34,-77,77,-77xm55,-95r60,0v-3,-39,-59,-35,-60,0","w":172},"\u00eb":{"d":"86,-154v46,0,80,40,76,89r-108,0v0,36,48,44,63,14r41,14v-33,67,-149,46,-149,-40v0,-43,34,-77,77,-77xm55,-95r60,0v-3,-39,-59,-35,-60,0xm70,-202v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm149,-202v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":172},"\u00ed":{"d":"24,-151r45,0r0,151r-45,0r0,-151xm20,-174r24,-53r55,0r-48,53r-31,0","w":93},"\u00ec":{"d":"24,-151r45,0r0,151r-45,0r0,-151xm74,-174r-31,0r-48,-53r55,0","w":93},"\u00ee":{"d":"-13,-175r37,-52r46,0r37,52r-40,0r-21,-26r-19,26r-40,0xm24,-151r45,0r0,151r-45,0r0,-151","w":93},"\u00ef":{"d":"24,-151r45,0r0,151r-45,0r0,-151xm31,-202v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm110,-202v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":93},"\u00f1":{"d":"155,-221v3,62,-54,39,-87,29v-8,0,-12,5,-12,15r-23,0v-1,-25,9,-44,32,-44v23,0,58,36,67,0r23,0xm98,-115v-41,4,-25,72,-28,115r-45,0r0,-151r45,0r0,18v37,-42,98,-18,98,41r0,92r-46,0v-5,-42,16,-110,-24,-115"},"\u00f3":{"d":"96,3v-46,0,-79,-35,-79,-78v-1,-45,35,-80,80,-80v42,0,76,36,76,79v0,44,-33,79,-77,79xm96,-38v18,0,33,-18,33,-37v0,-18,-15,-38,-33,-38v-18,0,-34,17,-34,36v0,20,15,40,34,39xm69,-174r24,-53r55,0r-48,53r-31,0"},"\u00f2":{"d":"96,3v-46,0,-79,-35,-79,-78v-1,-45,35,-80,80,-80v42,0,76,36,76,79v0,44,-33,79,-77,79xm96,-38v18,0,33,-18,33,-37v0,-18,-15,-38,-33,-38v-18,0,-34,17,-34,36v0,20,15,40,34,39xm123,-174r-31,0r-48,-53r55,0"},"\u00f4":{"d":"36,-175r37,-52r46,0r36,52r-39,0r-21,-26r-19,26r-40,0xm96,3v-46,0,-79,-35,-79,-78v-1,-45,35,-80,80,-80v42,0,76,36,76,79v0,44,-33,79,-77,79xm96,-38v18,0,33,-18,33,-37v0,-18,-15,-38,-33,-38v-18,0,-34,17,-34,36v0,20,15,40,34,39"},"\u00f6":{"d":"96,3v-46,0,-79,-35,-79,-78v-1,-45,35,-80,80,-80v42,0,76,36,76,79v0,44,-33,79,-77,79xm96,-38v18,0,33,-18,33,-37v0,-18,-15,-38,-33,-38v-18,0,-34,17,-34,36v0,20,15,40,34,39xm80,-202v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm159,-202v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","k":{"z":4,"y":11,"x":11,"w":7,"v":11}},"\u00f5":{"d":"155,-221v3,62,-54,39,-87,29v-8,0,-12,5,-12,15r-23,0v-1,-25,9,-44,32,-44v23,0,58,36,67,0r23,0xm96,3v-46,0,-79,-35,-79,-78v-1,-45,35,-80,80,-80v42,0,76,36,76,79v0,44,-33,79,-77,79xm96,-38v18,0,33,-18,33,-37v0,-18,-15,-38,-33,-38v-18,0,-34,17,-34,36v0,20,15,40,34,39"},"\u00fa":{"d":"95,3v-44,0,-74,-28,-74,-70r0,-84r46,0v3,42,-13,109,27,109v42,0,28,-66,30,-109r46,0r0,88v0,38,-35,66,-75,66xm69,-174r24,-53r55,0r-48,53r-31,0"},"\u00f9":{"d":"95,3v-44,0,-74,-28,-74,-70r0,-84r46,0v3,42,-13,109,27,109v42,0,28,-66,30,-109r46,0r0,88v0,38,-35,66,-75,66xm123,-174r-31,0r-48,-53r55,0"},"\u00fb":{"d":"36,-175r37,-52r46,0r36,52r-39,0r-21,-26r-19,26r-40,0xm95,3v-44,0,-74,-28,-74,-70r0,-84r46,0v3,42,-13,109,27,109v42,0,28,-66,30,-109r46,0r0,88v0,38,-35,66,-75,66"},"\u00fc":{"d":"95,3v-44,0,-74,-28,-74,-70r0,-84r46,0v3,42,-13,109,27,109v42,0,28,-66,30,-109r46,0r0,88v0,38,-35,66,-75,66xm80,-202v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm159,-202v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23"},"\u00b0":{"d":"128,-206v0,30,-26,56,-56,56v-30,0,-56,-26,-56,-56v0,-30,26,-56,56,-56v30,0,56,26,56,56xm99,-206v0,-15,-13,-27,-27,-27v-14,0,-27,13,-27,27v0,14,13,27,27,27v14,0,27,-13,27,-27","w":143},"\u00a2":{"d":"62,-8v-67,-38,-44,-157,46,-146r15,-48r24,0r-17,53r11,5r0,43v-5,-3,-13,-6,-24,-9r-20,65v16,3,23,-1,44,-8r0,45v-20,9,-35,14,-58,9r-21,65r-24,0xm77,-56r17,-53v-23,5,-31,32,-17,53","w":153},"\u00a3":{"d":"55,-140v-27,-68,49,-113,97,-72v11,9,16,23,16,41r-43,0v1,-13,-4,-25,-16,-24v-23,3,-15,32,-9,55r43,0r0,33r-37,0v1,23,0,39,-9,57v28,16,54,23,56,-13r31,0v6,69,-53,83,-103,44v-15,29,-74,30,-73,-12v0,-30,33,-41,61,-28v0,-20,1,-32,-7,-48r-47,0r0,-33r40,0xm28,-30v5,18,22,13,33,-2v-9,-13,-31,-14,-33,2","w":190},"\u00a7":{"d":"51,-139v-41,-27,-21,-96,34,-96v32,0,59,20,60,51r-42,0v-6,-14,-29,-15,-31,0v12,35,83,47,80,100v-2,28,-13,40,-30,54v14,16,22,21,23,43v3,48,-64,69,-98,39v-11,-9,-17,-22,-19,-37r42,0v7,14,30,16,31,-1v-10,-29,-84,-48,-80,-99v2,-29,12,-38,30,-54xm75,-118v-28,19,-16,45,24,68v34,-29,0,-52,-24,-68","w":172},"\u00b6":{"d":"0,-185v0,-53,31,-73,94,-73r105,0r0,46r-20,0r0,283r-42,0r0,-283r-25,0r0,283r-43,0r0,-184v-42,-3,-69,-29,-69,-72","w":200},"\u00df":{"d":"102,-235v62,0,102,71,50,104v-8,5,-21,5,-28,11v33,3,59,22,60,58v1,49,-50,78,-97,59r0,-37v28,11,53,0,54,-26v0,-22,-19,-39,-44,-36r0,-38v21,2,37,-10,37,-28v0,-18,-12,-29,-30,-29v-17,0,-31,15,-32,32r0,165r-45,0r0,-166v1,-37,32,-69,75,-69"},"\u00ae":{"d":"133,7v-72,0,-135,-63,-135,-135v0,-73,63,-135,135,-135v72,0,134,62,134,135v0,73,-62,135,-134,135xm133,-20v58,0,108,-50,108,-108v0,-58,-50,-109,-108,-109v-58,0,-108,51,-108,109v0,58,50,108,108,108xm188,-159v0,23,-19,36,-39,41v24,7,30,40,47,62r-36,0v-16,-25,-19,-62,-59,-59r0,59r-29,0r0,-143v50,1,117,-12,116,40xm101,-137v25,-1,56,5,56,-21v0,-20,-33,-19,-56,-18r0,39","w":265},"\u00a9":{"d":"133,7v-72,0,-135,-63,-135,-135v0,-73,63,-135,135,-135v73,0,134,62,134,135v0,73,-62,135,-134,135xm133,-20v58,0,108,-50,108,-108v0,-58,-50,-109,-108,-109v-59,0,-109,50,-109,109v0,58,51,108,109,108xm98,-131v-8,53,55,75,67,23r29,9v-9,30,-31,46,-63,46v-39,0,-64,-32,-64,-75v0,-79,107,-104,127,-32r-29,7v-15,-44,-73,-24,-67,22","w":265},"\u00b4":{"d":"33,-174r24,-53r55,0r-48,53r-31,0","w":119},"\u00a8":{"d":"44,-202v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm123,-202v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":119},"\u00c6":{"d":"122,-231r148,0r0,46r-68,0r0,46r67,0r0,45r-67,0r0,49r67,0r0,45r-116,0r0,-66r-58,0r-33,66r-52,0xm153,-186v-15,23,-24,51,-37,76r37,0r0,-76","w":285},"\u00d8":{"d":"17,-116v-4,-91,106,-151,184,-97r30,-36r20,17r-31,37v64,66,16,205,-83,198v-28,-2,-44,-6,-70,-20r-32,37r-21,-17r32,-37v-19,-28,-27,-45,-29,-82xm169,-177v-63,-37,-129,37,-90,104xm99,-53v62,40,125,-37,88,-103","w":266},"\u00b1":{"d":"22,-169r79,0r0,-79r38,0r0,79r79,0r0,37r-79,0r0,79r-38,0r0,-79r-79,0r0,-37xm22,-27r196,0r0,37r-196,0r0,-37","w":240},"\u00a5":{"d":"106,-159r43,-71r56,0r-20,33r12,0r0,24r-26,0r-26,43r52,0r0,23r-66,0r0,107r-49,0r0,-107r-67,0r0,-23r53,0r-25,-43r-28,0r0,-24r14,0r-20,-33r55,0","w":209},"\u00b5":{"d":"150,-23v-16,34,-62,36,-74,0v-3,29,0,64,-1,95r-49,0r0,-259r49,0v4,56,-17,152,35,152v55,0,31,-94,36,-152r49,0r0,187r-45,0r0,-23","w":219},"\u00aa":{"d":"50,-130v-56,-2,-51,-103,3,-103v12,0,19,8,29,17r0,-14r29,0r0,97r-29,0v-1,-5,2,-13,-1,-16v-8,13,-18,19,-31,19xm60,-157v12,1,22,-13,22,-24v0,-12,-9,-22,-21,-22v-13,0,-21,12,-21,23v0,13,8,23,20,23","w":123},"\u00ba":{"d":"64,-130v-29,0,-52,-20,-52,-51v0,-29,22,-52,51,-52v28,0,50,23,50,52v0,27,-22,51,-49,51xm62,-157v12,1,22,-11,22,-24v0,-11,-11,-25,-22,-25v-27,1,-29,49,0,49","w":123},"\u00e6":{"d":"268,-37v-12,34,-72,56,-103,25r0,12r-45,0r0,-21v-14,14,-25,23,-48,24v-35,1,-63,-40,-63,-78v0,-63,76,-108,112,-54r0,-22r44,0r0,11v54,-39,113,13,107,75r-108,0v4,40,49,42,63,14xm225,-95v-1,-16,-13,-28,-29,-28v-17,0,-27,9,-31,28r60,0xm120,-76v0,-17,-14,-34,-32,-33v-18,0,-31,18,-31,36v0,19,13,35,31,35v19,0,33,-17,32,-38","w":283},"\u00f8":{"d":"17,-75v-4,-62,71,-100,122,-66r16,-17r16,15r-15,17v53,67,-26,169,-106,116r-15,17r-16,-15r15,-17v-10,-17,-16,-26,-17,-50xm110,-108v-28,-18,-59,16,-45,49xm80,-42v29,18,61,-18,45,-50"},"\u00bf":{"d":"85,-138v-16,0,-28,-12,-28,-28v0,-15,12,-28,28,-27v16,0,28,11,28,27v0,16,-12,28,-28,28xm8,-31v0,-37,26,-62,53,-69r0,-12r49,0r0,47v-29,-2,-52,8,-53,33v0,17,14,31,31,31v16,-1,25,-13,25,-31r49,0v1,40,-35,75,-79,75v-41,0,-75,-32,-75,-74","w":171},"\u00a1":{"d":"37,-137v-15,0,-28,-12,-28,-28v0,-15,12,-28,28,-28v15,0,28,13,28,28v0,16,-14,28,-28,28xm12,-112r50,0r0,152r-50,0r0,-152","w":74},"\u00ac":{"d":"22,-182r196,0r0,124r-38,0r0,-86r-158,0r0,-38","w":240},"\u00ab":{"d":"45,-187r43,0r-36,86r34,87r-41,0r-35,-86xm130,-187r42,0r-35,87r35,86r-42,0r-35,-87","w":180},"\u00bb":{"d":"9,-187r40,0r36,87r-35,86r-42,0r35,-87xm94,-187r41,0r35,86r-36,87r-41,0r35,-87","w":180},"\u00a0":{"w":95},"\u00c0":{"d":"103,-231r39,0r94,231r-50,0r-19,-45r-88,0r-18,45r-50,0xm123,-155r-27,68r54,0xm151,-246r-31,0r-48,-53r55,0","w":247},"\u00c3":{"d":"183,-293v3,65,-54,39,-87,29v-8,0,-12,5,-12,15r-22,0v-2,-26,9,-44,32,-44v23,0,58,35,66,0r23,0xm103,-231r39,0r94,231r-50,0r-19,-45r-88,0r-18,45r-50,0xm123,-155r-27,68r54,0","w":247},"\u00d5":{"d":"193,-293v2,64,-54,39,-87,29v-8,0,-12,5,-12,15r-23,0v-1,-25,9,-44,32,-44v23,0,58,36,67,0r23,0xm131,3v-66,0,-115,-51,-115,-118v0,-65,52,-118,114,-118v67,0,118,51,118,118v0,67,-51,118,-117,118xm196,-115v0,-41,-25,-72,-64,-72v-39,0,-64,32,-64,73v0,39,26,71,63,71v39,0,65,-30,65,-72","w":266},"\u00f7":{"d":"142,-193v0,13,-10,23,-22,23v-11,1,-23,-12,-23,-23v0,-13,10,-23,23,-22v12,0,22,10,22,22xm22,-137r196,0r0,36r-196,0r0,-36xm143,-46v0,12,-10,22,-23,22v-13,0,-23,-10,-23,-22v0,-11,11,-24,23,-23v12,0,23,11,23,23","w":240},"\u00ff":{"d":"9,-151r48,0r43,88r39,-88r46,0r-94,218r-47,0r34,-78xm80,-202v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm159,-202v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23"},"\u00b7":{"d":"58,-277r1,0r-1,0xm46,-84v-15,0,-28,-14,-28,-28v0,-16,12,-28,28,-28v15,0,28,12,28,28v0,15,-13,28,-28,28","w":93},"\u2219":{"d":"58,-277r1,0r-1,0xm46,-84v-15,0,-28,-14,-28,-28v0,-16,12,-28,28,-28v15,0,28,12,28,28v0,15,-13,28,-28,28","w":93},"\u00c2":{"d":"65,-247r37,-52r45,0r37,52r-40,0r-20,-26r-20,26r-39,0xm103,-231r39,0r94,231r-50,0r-19,-45r-88,0r-18,45r-50,0xm123,-155r-27,68r54,0","w":247},"\u00ca":{"d":"27,-247r37,-52r46,0r36,52r-40,0r-20,-26r-19,26r-40,0xm24,-231r130,0r0,46r-81,0r0,46r81,0r0,45r-81,0r0,48r81,0r0,46r-130,0r0,-231","w":172},"\u00c1":{"d":"103,-231r39,0r94,231r-50,0r-19,-45r-88,0r-18,45r-50,0xm123,-155r-27,68r54,0xm97,-246r24,-53r55,0r-48,53r-31,0","w":247},"\u00cb":{"d":"24,-231r130,0r0,46r-81,0r0,46r81,0r0,45r-81,0r0,48r81,0r0,46r-130,0r0,-231xm70,-274v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm149,-274v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":172},"\u00c8":{"d":"24,-231r130,0r0,46r-81,0r0,46r81,0r0,45r-81,0r0,48r81,0r0,46r-130,0r0,-231xm113,-246r-31,0r-48,-53r55,0","w":172},"\u00cd":{"d":"21,-231r49,0r0,231r-49,0r0,-231xm20,-246r24,-53r55,0r-48,53r-31,0","w":93},"\u00ce":{"d":"-13,-247r37,-52r46,0r37,52r-40,0r-21,-26r-19,26r-40,0xm21,-231r49,0r0,231r-49,0r0,-231","w":93},"\u00cf":{"d":"21,-231r49,0r0,231r-49,0r0,-231xm31,-274v1,13,-11,24,-24,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v13,0,24,11,24,23xm110,-274v0,13,-10,24,-23,24v-13,0,-25,-11,-24,-24v0,-12,11,-23,24,-23v12,0,23,12,23,23","w":93},"\u00cc":{"d":"21,-231r49,0r0,231r-49,0r0,-231xm74,-246r-31,0r-48,-53r55,0","w":93},"\u00d3":{"d":"131,3v-66,0,-115,-51,-115,-118v0,-65,52,-118,114,-118v67,0,118,51,118,118v0,67,-51,118,-117,118xm196,-115v0,-41,-25,-72,-64,-72v-39,0,-64,32,-64,73v0,39,26,71,63,71v39,0,65,-30,65,-72xm106,-246r24,-53r55,0r-48,53r-31,0","w":266},"\u00d4":{"d":"74,-247r37,-52r46,0r36,52r-40,0r-20,-26r-19,26r-40,0xm131,3v-66,0,-115,-51,-115,-118v0,-65,52,-118,114,-118v67,0,118,51,118,118v0,67,-51,118,-117,118xm196,-115v0,-41,-25,-72,-64,-72v-39,0,-64,32,-64,73v0,39,26,71,63,71v39,0,65,-30,65,-72","w":266},"\u00d2":{"d":"131,3v-66,0,-115,-51,-115,-118v0,-65,52,-118,114,-118v67,0,118,51,118,118v0,67,-51,118,-117,118xm196,-115v0,-41,-25,-72,-64,-72v-39,0,-64,32,-64,73v0,39,26,71,63,71v39,0,65,-30,65,-72xm160,-246r-31,0r-48,-53r55,0","w":266},"\u00da":{"d":"115,3v-56,0,-92,-37,-92,-82r0,-152r49,0r0,141v0,25,15,44,40,44v28,0,44,-17,43,-46r0,-139r49,0r0,150v-1,49,-37,84,-89,84xm87,-246r24,-53r55,0r-48,53r-31,0","w":228},"\u00db":{"d":"55,-247r37,-52r45,0r37,52r-40,0r-20,-26r-19,26r-40,0xm115,3v-56,0,-92,-37,-92,-82r0,-152r49,0r0,141v0,25,15,44,40,44v28,0,44,-17,43,-46r0,-139r49,0r0,150v-1,49,-37,84,-89,84","w":228},"\u00d9":{"d":"115,3v-56,0,-92,-37,-92,-82r0,-152r49,0r0,141v0,25,15,44,40,44v28,0,44,-17,43,-46r0,-139r49,0r0,150v-1,49,-37,84,-89,84xm141,-246r-31,0r-48,-53r55,0","w":228},"\u00b8":{"d":"103,35v0,37,-57,45,-96,36r0,-21v21,2,62,8,62,-14v0,-19,-27,-16,-46,-12r5,-17v31,-11,75,-4,75,28","w":119},"\u00a6":{"d":"87,-250r38,0r0,128r-38,0r0,-128xm87,-80r38,0r0,129r-38,0r0,-129","w":211},"\u00d0":{"d":"216,-117v2,73,-46,118,-119,117r-72,0r0,-100r-17,0r0,-27r17,0r0,-104r75,0v73,-2,114,47,116,114xm165,-118v0,-53,-33,-70,-90,-69r0,60r40,0r0,27r-40,0r0,56v59,3,90,-17,90,-74","w":228},"\u00f0":{"d":"29,-75v0,-52,48,-96,98,-74v-6,-14,-16,-27,-32,-40r-46,23r-11,-20r34,-17v-8,-4,-13,-7,-18,-9r22,-25v11,5,22,11,31,16r29,-15r11,20r-19,10v71,41,87,207,-22,209v-42,1,-77,-35,-77,-78xm108,-38v41,-2,40,-76,-1,-76v-18,0,-34,18,-34,37v0,20,17,39,35,39","w":198},"\u00dd":{"d":"6,-231r55,0r42,72r44,-72r55,0r-74,123r0,108r-49,0r0,-108xm78,-246r24,-53r55,0r-48,53r-31,0","w":209},"\u00fd":{"d":"9,-151r48,0r43,88r39,-88r46,0r-94,218r-47,0r34,-78xm69,-174r24,-53r55,0r-48,53r-31,0"},"\u00de":{"d":"177,-119v0,53,-42,78,-101,74r0,45r-50,0r0,-231r50,0r0,44v59,-6,101,16,101,68xm126,-116v-1,-25,-22,-31,-50,-29r0,60v29,2,51,-6,50,-31"},"\u00fe":{"d":"182,-74v0,65,-76,107,-112,48r0,92r-45,0r0,-301r45,0r1,106v37,-57,111,-9,111,55xm102,-110v-18,0,-31,18,-31,36v0,18,14,36,32,36v18,-1,31,-14,31,-35v0,-19,-14,-37,-32,-37"},"\u00d7":{"d":"28,-184r26,-27r66,66r66,-66r27,27r-66,66r65,65r-26,26r-65,-65r-66,65r-27,-26r66,-65","w":240},"\u00b9":{"d":"35,-233r50,0r0,142r-35,0r0,-112r-20,0","w":131},"\u00b2":{"d":"67,-235v69,0,59,73,13,114r38,0r0,30r-105,0r63,-82v8,-13,8,-32,-10,-31v-12,0,-19,7,-20,22r-36,0v2,-34,22,-53,57,-53","w":131},"\u00b3":{"d":"55,-177v27,6,33,-32,8,-32v-9,0,-15,6,-18,17r-32,0v2,-28,21,-41,50,-43v42,-3,66,43,35,68v38,21,17,84,-32,79v-30,-3,-51,-13,-54,-42r34,0v4,22,35,21,35,-1v0,-14,-11,-20,-26,-19r0,-27","w":131},"\u00bd":{"d":"228,-234r30,0r-181,240r-31,0xm27,-233r50,0r0,142r-35,0r0,-112r-20,0xm253,-141v69,0,59,73,13,114r38,0r0,30r-105,0r63,-82v8,-13,8,-32,-10,-31v-12,0,-19,7,-20,22r-36,0v2,-34,22,-53,57,-53","w":326},"\u00bc":{"d":"258,-139r29,0r0,86r13,0r0,27r-13,0r0,31r-34,0r0,-31r-60,0r0,-27xm219,-54r34,0r0,-42xm230,-234r30,0r-182,240r-30,0xm32,-233r50,0r0,142r-35,0r0,-112r-20,0","w":326},"\u00be":{"d":"267,-138r29,0r0,85r12,0r0,27r-12,0r0,31r-34,0r0,-31r-60,0r0,-27xm262,-96v-13,13,-22,29,-34,43r34,0r0,-43xm247,-234r30,0r-182,240r-30,0xm61,-177v27,6,33,-32,8,-32v-9,0,-15,6,-18,17r-32,0v2,-28,21,-41,50,-43v42,-3,66,43,35,68v38,21,17,84,-32,79v-30,-3,-51,-13,-54,-42r34,0v4,22,35,21,35,-1v0,-14,-11,-20,-26,-19r0,-27","w":326},"\u00ad":{"d":"5,-98r102,0r0,45r-102,0r0,-45","w":112},"\u00af":{"d":"-2,-257r0,-18r184,0r0,18r-184,0","w":180},"\u00a4":{"d":"51,-75v-17,-22,-18,-66,0,-87r-23,-24r24,-25r24,23v22,-17,66,-17,88,0r24,-23r24,25r-23,24v17,24,17,65,0,87r23,23r-24,25r-24,-23v-21,17,-68,18,-88,0r-23,23r-25,-25xm167,-119v0,-25,-22,-47,-47,-47v-25,0,-47,22,-47,47v0,25,22,47,47,47v25,0,47,-22,47,-47","w":240}}});
;

