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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "The selected file %filename cannot not be uploaded. Only files with the following extensions are allowed: %extensions.": "Den valda filen %filename kan inte laddas upp. Endast filer med fÃ¶ljande Ã¤ndelser Ã¤r tillÃ¥tna: %extensions.", "Upload": "Ladda upp", "Only files with the following extensions are allowed: %files-allowed.": "Endast filer med fÃ¶ljande Ã¤ndelser tillÃ¥ts: %files-allowed.", "Please select a file.": "Var vÃ¤nlig vÃ¤lj en fil.", "You are not allowed to operate on more than %num files.": "Du har inte tillÃ¥telse att hantera mer Ã¤n %num filer i taget.", "Please specify dimensions within the allowed range that is from 1x1 to @dimensions.": "Var vÃ¤nlig ange mÃ¥tt inom det tillÃ¥tna omrÃ¥det som Ã¤r frÃ¥n 1x1 till @dimensions.", "unlimited": "oÃ¤ndlig", "%filename is not an image.": "%filename Ã¤r inte en bild.", "Directory %dir is loaded.": "Katalogen %dir Ã¤r laddad.", "Directory %dir is empty.": "Katalogen %dir Ã¤r tom.", "File browsing is disabled in directory %dir.": "Filhantering Ã¤r avaktiverad i katalogen %dir.", "You can\'t perform this operation.": "Du kan inte genomfÃ¶ra denna handling.", "Do you want to refresh the current directory?": "Vill du uppdatera visningen av nuvarande katalog?", "Uploading %filename...": "Laddar upp %filename...", "Delete selected files?": "Avmarkera valda filer?", "Please select a thumbnail.": "Var vÃ¤nlig vÃ¤lj en miniatyrbild.", "Please select a single file.": "Var vÃ¤nlig vÃ¤lj en fil.", "You must select at least %num files.": "Du mÃ¥ste vÃ¤lja Ã¥tminstone %num filer.", "Send to @app": "Skicka till @app", "textarea": "textomrÃ¥de", "jQuery UI Tabs: Mismatching fragment identifier.": "jQuery UI Tabs: Identifieraren fÃ¶r fragment stÃ¤mmer inte Ã¶verens.", "jQuery UI Tabs: Not enough arguments to add tab.": "jQuery UI Tabs: Inte tillrÃ¤ckligt med argument fÃ¶r att lÃ¤gga till flik.", "An error occurred at @path.": "Ett fel har uppstÃ¥tt pÃ¥ @path." } };;

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
$(document).ready(function() {
  //lets see if we have any jmedia movies
  if($.fn.media) {
    $('.jmedia').media();
  }
	
  if(Drupal.settings.video) {
    $.fn.media.defaults.flvPlayer = Drupal.settings.video.flvplayer;
  }
	
  //lets setup our colorbox videos
  $('.video-box').each(function() {
    var url = $(this).attr('href');
    var data = $(this).metadata();
    var width = data.width;
    var height= data.height;
    var player = Drupal.settings.video.player; //player can be either jwplayer or flowplayer.
    $(this).colorbox({
      html: '<a id="video-overlay" href="'+url+'" style="height:'+height+'; width:'+width+'; display: block;"></a>',
      onComplete:function() {
        if(player == 'flowplayer') {
          flowplayer("video-overlay", Drupal.settings.video.flvplayer, {
            clip: {
              autoPlay: Drupal.settings.video.autoplay,
              autoBuffering: Drupal.settings.video.autobuffer
            }
          });
        } else {
          $('#video-overlay').media({
            flashvars: {
              autostart: Drupal.settings.video.autoplay
            },
            width:width,
            height:height
          });
        }
      }
    });
  });
});

;
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

/**
 * jQuery UI tabs, Views integration component
 */
Drupal.behaviors.viewsTabs = function (context) {
  $('#views-tabset:not(.views-processed)').addClass('views-processed').each(function() {
    new Drupal.Views.Tabs($(this), {selectedClass: 'active'});
  });

  $('a.views-remove-link')
    .addClass('views-processed')
    .click(function() {
      var id = $(this).attr('id').replace('views-remove-link-', '');
      $('#views-row-' + id).hide();
      $('#views-removed-' + id).attr('checked', true);
      return false;
    });
}

/**
 * For IE, attach some javascript so that our hovers do what they're supposed
 * to do.
 */
Drupal.behaviors.viewsHoverlinks = function() {
  if ($.browser.msie) {
    // If IE, attach a hover event so we can see our admin links.
    $("div.view:not(.views-hover-processed)").addClass('views-hover-processed').hover(
      function() {
        $('div.views-hide', this).addClass("views-hide-hover"); return true;
      },
      function(){
        $('div.views-hide', this).removeClass("views-hide-hover"); return true;
      }
    );
    $("div.views-admin-links:not(.views-hover-processed)")
      .addClass('views-hover-processed')
      .hover(
        function() {
          $(this).addClass("views-admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("views-admin-links-hover"); return true;
        }
      );
  }
}

/**
 * Helper function to parse a querystring.
 */
Drupal.Views.parseQueryString = function (query) {
  var args = {};
  var pos = query.indexOf('?');
  if (pos != -1) {
    query = query.substring(pos + 1);
  }
  var pairs = query.split('&');
  for(var i in pairs) {
    if (typeof(pairs[i]) == 'string') {
      var pair = pairs[i].split('=');
      // Ignore the 'q' path argument, if present.
      if (pair[0] != 'q' && pair[1]) {
        args[pair[0]] = decodeURIComponent(pair[1].replace(/\+/g, ' '));
      }
    }
  }
  return args;
};

/**
 * Helper function to return a view's arguments based on a path.
 */
Drupal.Views.parseViewArgs = function (href, viewPath) {
  var returnObj = {};
  var path = Drupal.Views.getPath(href);
  // Ensure we have a correct path.
  if (viewPath && path.substring(0, viewPath.length + 1) == viewPath + '/') {
    var args = decodeURIComponent(path.substring(viewPath.length + 1, path.length));
    returnObj.view_args = args;
    returnObj.view_path = path;
  }
  return returnObj;
};

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

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

/**
 * @file ajaxView.js
 *
 * Handles AJAX fetching of views, including filter submission and response.
 */

Drupal.Views.Ajax = Drupal.Views.Ajax || {};

/**
 * An ajax responder that accepts a packet of JSON data and acts appropriately.
 *
 * The following fields control behavior.
 * - 'display': Display the associated data in the view area.
 */
Drupal.Views.Ajax.ajaxViewResponse = function(target, response) {

  if (response.debug) {
    alert(response.debug);
  }

  var $view = $(target);

  // Check the 'display' for data.
  if (response.status && response.display) {
    var $newView = $(response.display);
    $view.replaceWith($newView);
    $view = $newView;
    Drupal.attachBehaviors($view.parent());
  }

  if (response.messages) {
    // Show any messages (but first remove old ones, if there are any).
    $view.find('.views-messages').remove().end().prepend(response.messages);
  }
};

/**
 * Ajax behavior for views.
 */
Drupal.behaviors.ViewsAjaxView = function() {
  if (Drupal.settings && Drupal.settings.views && Drupal.settings.views.ajaxViews) {
    var ajax_path = Drupal.settings.views.ajax_path;
    // If there are multiple views this might've ended up showing up multiple times.
    if (ajax_path.constructor.toString().indexOf("Array") != -1) {
      ajax_path = ajax_path[0];
    }
    $.each(Drupal.settings.views.ajaxViews, function(i, settings) {
      if (settings.view_dom_id) {
        var view = '.view-dom-id-' + settings.view_dom_id;
        if (!$(view).size()) {
          // Backward compatibility: if 'views-view.tpl.php' is old and doesn't
          // contain the 'view-dom-id-#' class, we fall back to the old way of
          // locating the view:
          view = '.view-id-' + settings.view_name + '.view-display-id-' + settings.view_display_id;
        }
      }


      // Process exposed filter forms.
      $('form#views-exposed-form-' + settings.view_name.replace(/_/g, '-') + '-' + settings.view_display_id.replace(/_/g, '-'))
      .filter(':not(.views-processed)')
      .each(function () {
        // remove 'q' from the form; it's there for clean URLs
        // so that it submits to the right place with regular submit
        // but this method is submitting elsewhere.
        $('input[name=q]', this).remove();
        var form = this;
        // ajaxSubmit doesn't accept a data argument, so we have to
        // pass additional fields this way.
        $.each(settings, function(key, setting) {
          $(form).append('<input type="hidden" name="'+ key + '" value="'+ setting +'"/>');
        });
      })
      .addClass('views-processed')
      .submit(function () {
        $('input[type=submit], button', this).after('<span class="views-throbbing">&nbsp</span>');
        var object = this;
        $(this).ajaxSubmit({
          url: ajax_path,
          type: 'GET',
          success: function(response) {
            // Call all callbacks.
            if (response.__callbacks) {
              $.each(response.__callbacks, function(i, callback) {
                eval(callback)(view, response);
              });
              $('.views-throbbing', object).remove();
            }
          },
          error: function(xhr) { Drupal.Views.Ajax.handleErrors(xhr, ajax_path); $('.views-throbbing', object).remove(); },
          dataType: 'json'
        });

        return false;
      });

      $(view).filter(':not(.views-processed)')
        // Don't attach to nested views. Doing so would attach multiple behaviors
        // to a given element.
        .filter(function() {
          // If there is at least one parent with a view class, this view
          // is nested (e.g., an attachment). Bail.
          return !$(this).parents('.view').size();
        })
        .each(function() {
          // Set a reference that will work in subsequent calls.
          var target = this;
          $(this)
            .addClass('views-processed')
            // Process pager, tablesort, and attachment summary links.
            .find('ul.pager > li > a, th.views-field a, .attachment .views-summary a')
            .each(function () {
              var viewData = { 'js': 1 };
              // Construct an object using the settings defaults and then overriding
              // with data specific to the link.
              $.extend(
                viewData,
                Drupal.Views.parseQueryString($(this).attr('href')),
                // Extract argument data from the URL.
                Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path),
                // Settings must be used last to avoid sending url aliases to the server.
                settings
              );
              $(this).click(function () {
                $.extend(viewData, Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path));
                $(this).addClass('views-throbbing');
                $.ajax({
                  url: ajax_path,
                  type: 'GET',
                  data: viewData,
                  success: function(response) {
                    $(this).removeClass('views-throbbing');
                    // Scroll to the top of the view. This will allow users
                    // to browse newly loaded content after e.g. clicking a pager
                    // link.
                    var offset = $(target).offset();
                    // We can't guarantee that the scrollable object should be
                    // the body, as the view could be embedded in something
                    // more complex such as a modal popup. Recurse up the DOM
                    // and scroll the first element that has a non-zero top.
                    var scrollTarget = target;
                    while ($(scrollTarget).scrollTop() == 0 && $(scrollTarget).parent()) {
                      scrollTarget = $(scrollTarget).parent()
                    }
                    // Only scroll upward
                    if (offset.top - 10 < $(scrollTarget).scrollTop()) {
                      $(scrollTarget).animate({scrollTop: (offset.top - 10)}, 500);
                    }
                    // Call all callbacks.
                    if (response.__callbacks) {
                      $.each(response.__callbacks, function(i, callback) {
                        eval(callback)(target, response);
                      });
                    }
                  },
                  error: function(xhr) { $(this).removeClass('views-throbbing'); Drupal.Views.Ajax.handleErrors(xhr, ajax_path); },
                  dataType: 'json'
                });

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;
/*
 * 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:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1993 Adobe Systems Incorporated.  All Rights
 * Reserved.Futura is a registered trademark of Fundicion Tipografica Neufville S.
 * A.
 * 
 * Description:
 *  Copyright (c) 1987, 1991, 1993 Fundicion Tipografica Neufville S. A.  This
 * record material and the data recorded thereon is the property of  Fundicion
 * Tipografica Neufville S. A. and Adobe Systems Incorporated,  or its licensors,
 * and may not be reproduced, used, displayed, modified,  disclosed or transferred
 * in any manner without the express written  approval of Fundicion Tipografica
 * Neufville S. A. and Adobe Systems  Incorporated.
 * 
 * Vendor URL:
 * www.linotypelibrary.com
 */
Cufon.registerFont({"w":620,"face":{"font-family":"Futura LT Light","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 4 3 0 0 2 0 3","ascent":"800","descent":"-200","bbox":"-121 -971 1127 302.053","underline-thickness":"50","underline-position":"-75","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":310},"!":{"d":"136,-754r48,0r0,611r-48,0r0,-611xm119,-31v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41","w":320},"\"":{"d":"220,-754r-11,240r-27,0r-10,-240r48,0xm106,-754r-11,240r-27,0r-10,-240r48,0","w":278},"#":{"d":"259,-438r-24,162r136,0r24,-162r-136,0xm536,-228r-126,0r-37,228r-46,0r36,-228r-135,0r-33,228r-48,0r33,-228r-121,0r0,-48r128,0r23,-162r-123,0r0,-48r130,0r32,-212r50,0r-32,212r136,0r32,-212r50,0r-33,212r110,0r0,48r-118,0r-26,162r118,0r0,48"},"$":{"d":"520,-288v59,140,-49,276,-173,296r0,113r-45,0r0,-111v-114,-3,-187,-71,-219,-163r41,-19v31,71,78,135,178,134r0,-346v-79,-42,-176,-72,-176,-189v0,-115,69,-180,176,-191r0,-105r45,0r0,107v68,9,126,51,153,104r-37,30v-24,-39,-62,-81,-116,-88r0,300v66,34,144,60,173,128xm302,-716v-112,-4,-171,159,-86,228v25,20,57,36,86,51r0,-279xm347,-40v79,-22,142,-77,142,-174v0,-89,-80,-116,-142,-148r0,322"},"%":{"d":"594,-140v0,-65,-45,-107,-110,-107v-65,0,-110,42,-110,107v0,64,45,105,110,105v65,0,110,-41,110,-105xm332,-140v0,-92,60,-149,152,-149v92,0,152,57,152,149v0,91,-61,147,-152,147v-91,0,-152,-56,-152,-147xm571,-754r-448,771r-31,-18r446,-770xm290,-612v0,-65,-45,-107,-110,-107v-65,0,-110,42,-110,107v0,64,45,105,110,105v65,0,110,-41,110,-105xm28,-612v0,-92,60,-149,152,-149v92,0,152,57,152,149v0,91,-61,147,-152,147v-91,0,-152,-56,-152,-147","w":664},"&":{"d":"85,-254v-59,126,57,268,201,212v71,-28,128,-76,183,-121r-190,-257v-70,50,-157,86,-194,166xm319,-768v129,-7,174,163,93,246v-28,29,-64,55,-97,80r186,254r96,-105r37,20r-105,120r115,153r-52,0r-95,-125v-77,60,-151,140,-278,140v-119,0,-197,-80,-197,-199v0,-152,132,-208,229,-274v-31,-50,-79,-88,-79,-165v0,-87,60,-140,147,-145xm408,-629v0,-56,-36,-92,-92,-94v-87,-2,-121,111,-73,178r44,66v48,-41,121,-64,121,-150","w":642},"'":{"d":"135,-754r-11,240r-27,0r-10,-240r48,0","w":222},"(":{"d":"137,177v-95,-257,-94,-703,0,-957r37,26v-82,264,-83,640,0,906","w":240},")":{"d":"66,152v82,-266,82,-642,0,-906r37,-26v96,257,93,703,0,957","w":240},"*":{"d":"285,-754r49,0r-4,150r142,-50r15,47r-144,43r92,119r-40,29r-85,-124r-86,124r-39,-28r91,-120r-144,-43r15,-47r142,50","w":619},"+":{"d":"286,-512r48,0r0,232r232,0r0,48r-232,0r0,232r-48,0r0,-232r-232,0r0,-48r232,0r0,-232"},",":{"d":"198,-60r-83,226r-30,-11r68,-229","w":310},"-":{"d":"190,-342r0,45r-190,0r0,-45r190,0","w":190},".":{"d":"114,-31v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41","w":310},"\/":{"d":"605,-807r-533,949r-37,-19r535,-948","w":640},"0":{"d":"207,-70v56,45,149,44,206,0v123,-95,162,-365,71,-525v-34,-61,-86,-124,-174,-124v-163,0,-226,173,-226,337v0,131,46,250,123,312xm36,-382v0,-235,129,-441,360,-364v224,75,235,528,70,689v-52,51,-157,91,-243,49v-123,-60,-187,-199,-187,-374"},"1":{"d":"189,-709r23,-45r144,0r0,754r-48,0r0,-709r-119,0"},"2":{"d":"85,-541v0,-141,94,-223,226,-223v135,0,226,85,226,221v0,122,-80,185,-142,254r-219,244r358,0r0,45r-465,0r327,-360v41,-50,93,-103,93,-186v0,-106,-73,-173,-178,-173v-109,0,-176,67,-178,178r-48,0"},"3":{"d":"473,-209v0,-103,-70,-156,-171,-161r0,-45v95,-6,160,-59,160,-157v0,-89,-61,-144,-149,-147v-89,-3,-141,59,-146,143r-48,0v7,-112,77,-192,195,-188v117,4,196,76,196,194v0,84,-49,149,-113,175v70,30,124,87,124,183v0,159,-141,261,-301,208v-74,-24,-127,-84,-129,-181r48,0v11,90,62,150,160,150v104,0,174,-71,174,-174"},"4":{"d":"419,-634r-6,0r-313,440r0,6r319,0r0,-446xm573,-188r0,45r-106,0r0,143r-48,0r0,-143r-407,0r0,-6r449,-631r6,0r0,592r106,0"},"5":{"d":"258,-35v161,1,262,-146,206,-305v-37,-104,-204,-170,-318,-94r98,-320r287,0r0,45r-252,0r-63,204v139,-32,257,45,294,149v68,194,-52,366,-253,366v-102,0,-182,-55,-223,-125r44,-18v33,54,100,97,180,98"},"6":{"d":"108,-339v-73,192,101,357,287,287v96,-36,167,-162,117,-287v-38,-95,-163,-169,-287,-117v-53,22,-96,63,-117,117xm379,-735r-166,235r2,2v155,-59,299,28,343,143v59,154,-28,303,-143,345v-220,80,-426,-91,-359,-330v7,-27,22,-53,41,-79r243,-345"},"7":{"d":"70,-709r0,-45r547,0r-540,762r-37,-29r488,-688r-458,0"},"8":{"d":"464,-566v0,-91,-63,-153,-154,-153v-92,0,-154,61,-154,153v0,92,62,152,154,152v91,0,154,-60,154,-152xm529,-197v0,129,-90,207,-219,207v-129,0,-219,-78,-219,-207v0,-91,41,-157,123,-196v-59,-27,-106,-93,-106,-172v0,-123,79,-199,202,-199v123,0,202,76,202,199v0,79,-48,145,-106,172v82,39,123,105,123,196xm481,-202v0,-101,-70,-167,-171,-167v-101,0,-171,65,-171,167v0,102,70,167,171,167v101,0,171,-66,171,-167"},"9":{"d":"512,-416v72,-181,-94,-357,-286,-286v-96,36,-168,161,-118,286v38,95,163,166,288,116v53,-22,95,-63,116,-116xm406,-258v-101,46,-232,-1,-286,-58v-59,-62,-100,-185,-56,-289v49,-114,201,-197,352,-139v112,43,197,181,148,332v-9,26,-24,51,-41,76r-243,344r-39,-29r167,-235"},":":{"d":"114,-431v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm114,-31v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41","w":310},";":{"d":"120,-431v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm198,-60r-83,226r-30,-11r68,-229","w":310},"<":{"d":"566,-41r0,46r-512,-235r0,-53r512,-223r0,46r-460,204"},"=":{"d":"566,-147r-512,0r0,-48r512,0r0,48xm566,-317r-512,0r0,-48r512,0r0,48"},">":{"d":"514,-256r-460,-204r0,-46r512,223r0,53r-512,235r0,-46"},"?":{"d":"202,-31v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm248,-187v69,-2,103,-48,106,-116r48,0v-1,100,-58,155,-156,161v-136,8,-205,-159,-117,-252v71,-75,253,-32,248,-188v-3,-82,-50,-137,-133,-137v-97,0,-147,79,-125,180r-46,0v-31,-132,48,-223,172,-225v136,-2,211,121,168,252v-26,79,-117,95,-200,120v-44,13,-77,39,-77,98v0,62,49,109,112,107","w":491},"@":{"d":"330,-579v71,-50,186,-30,221,38r15,-47r44,0r-110,350v-7,32,8,48,41,45v86,-9,135,-92,161,-167v58,-166,-48,-299,-174,-342v-197,-67,-364,50,-420,196v-77,200,36,384,182,446v151,64,343,4,402,-108r56,0v-59,107,-167,178,-329,178v-181,0,-294,-105,-350,-238v-38,-93,-37,-209,1,-302v65,-161,261,-285,480,-210v146,50,259,224,188,412v-34,90,-100,177,-211,177v-37,0,-66,-19,-75,-49v-34,29,-76,48,-130,49v-180,2,-145,-257,-68,-353v23,-29,47,-55,76,-75xm288,-474v-60,78,-99,289,49,281v135,-7,159,-153,188,-266v22,-88,-106,-139,-176,-81v-22,19,-42,41,-61,66","w":800},"A":{"d":"321,-657r-148,364r295,0xm155,-248r-101,248r-49,0r316,-779r315,779r-49,0r-101,-248r-331,0","w":641,"k":{"\u2019":80,"y":20,"w":20,"v":20,"Y":100,"W":100,"V":100,"T":80}},"B":{"d":"403,-561v-1,-106,-76,-156,-191,-148r-83,0r0,297r83,0v116,7,192,-39,191,-149xm520,-210v0,139,-99,210,-246,210r-193,0r0,-754r151,0v139,-6,219,68,219,200v0,78,-33,123,-87,154v91,21,156,83,156,190xm472,-208v0,-124,-106,-166,-237,-159r-106,0r0,322r115,0v132,8,228,-44,228,-163","w":565},"C":{"d":"278,-734v139,-62,318,-19,402,68r0,66v-70,-93,-242,-154,-386,-91v-144,63,-266,252,-184,445v49,115,162,211,317,211v112,0,198,-51,253,-115r0,66v-88,83,-262,127,-401,64v-133,-60,-243,-174,-243,-356v0,-183,109,-298,242,-358","w":739},"D":{"d":"129,-45v152,4,260,-12,340,-91v82,-80,133,-243,73,-377v-53,-116,-157,-201,-326,-196r-87,0r0,664xm81,-754r136,0v198,-6,312,90,370,224v41,94,42,209,1,304v-59,135,-176,232,-371,226r-136,0r0,-754","w":652},"E":{"d":"129,-709r0,274r304,0r0,45r-304,0r0,345r312,0r0,45r-360,0r0,-754r360,0r0,45r-312,0","w":507},"F":{"d":"129,-709r0,274r249,0r0,45r-249,0r0,390r-48,0r0,-754r304,0r0,45r-256,0","w":444,"k":{"A":60,".":150,",":150}},"G":{"d":"717,-557v-71,-120,-251,-206,-422,-134v-146,61,-263,251,-184,446v58,144,239,261,433,187v107,-41,194,-116,196,-260r-270,0r0,-45r318,0v9,186,-82,287,-209,341v-97,42,-209,44,-305,2v-132,-58,-238,-174,-238,-354v0,-184,106,-301,240,-360v107,-47,244,-38,338,18v55,32,102,74,142,128","w":824},"H":{"d":"587,-434r0,-320r48,0r0,754r-48,0r0,-389r-458,0r0,389r-48,0r0,-754r48,0r0,320r458,0","w":716},"I":{"d":"129,0r-48,0r0,-754r48,0r0,754","w":210},"J":{"d":"8,113v69,0,81,-59,81,-127r0,-740r48,0r0,740v0,101,-30,173,-133,172v-61,0,-105,-37,-125,-82r36,-27v15,32,49,64,93,64","w":218},"K":{"d":"487,-754r64,0r-369,363r392,391r-63,0r-362,-360r-20,20r0,340r-48,0r0,-754r48,0r0,352","w":569},"L":{"d":"129,-45r192,0r0,45r-240,0r0,-754r48,0r0,709","w":327,"k":{"\u2019":80,"y":20,"Y":40,"W":30,"V":40,"T":30}},"M":{"d":"713,-624r-2,0r-263,649r-262,-649r-2,0r-129,624r-46,0r162,-779r277,686r278,-686r162,779r-46,0","w":897},"N":{"d":"762,25r-633,-673r0,648r-48,0r0,-764r633,668r0,-658r48,0r0,779","w":843},"O":{"d":"742,-509v-64,-148,-248,-266,-448,-183v-118,49,-210,154,-210,315v0,160,95,262,210,315v136,64,301,0,374,-74v78,-80,132,-239,74,-373xm152,-650v81,-88,269,-155,426,-84v133,59,240,176,240,357v0,182,-108,297,-240,357v-156,70,-343,0,-426,-84v-89,-90,-155,-270,-85,-422v21,-47,51,-87,85,-124","w":854},"P":{"d":"397,-557v0,-105,-75,-159,-189,-152r-79,0r0,306r87,0v106,6,181,-59,181,-154xm445,-555v0,132,-92,202,-231,197r-85,0r0,358r-48,0r0,-754r133,0v142,-6,231,66,231,199","w":472,"k":{"A":80,".":135,",":135}},"Q":{"d":"818,-380v0,122,-48,201,-110,273r99,107r-65,0r-68,-80v-87,79,-263,121,-399,60v-133,-60,-239,-174,-239,-357v0,-182,107,-298,240,-357v155,-70,345,-3,426,83v61,65,116,154,116,271xm673,-143v53,-59,97,-125,97,-228v0,-162,-92,-266,-208,-320v-136,-64,-302,-1,-376,73v-79,79,-132,240,-74,374v61,140,237,258,429,187v36,-13,69,-34,99,-57r-188,-195r68,0","w":854},"R":{"d":"375,-556v2,-127,-105,-165,-246,-153r0,307r61,0v112,6,183,-50,185,-154xm423,-554v0,132,-84,196,-216,197r247,357r-55,0r-246,-357r-24,0r0,357r-48,0r0,-754r94,0v151,-9,248,60,248,200","w":488,"k":{"Y":20,"T":20}},"S":{"d":"87,-573v-4,-158,165,-236,300,-163v33,19,59,45,77,78r-34,28v-33,-50,-75,-86,-153,-89v-122,-5,-192,162,-97,233v69,52,159,81,235,127v52,32,86,73,86,150v0,136,-100,219,-236,219v-113,0,-192,-73,-222,-162r42,-19v30,73,83,139,182,136v109,-3,186,-69,186,-178v0,-95,-89,-115,-152,-153v-86,-51,-211,-73,-214,-207","w":544},"T":{"d":"249,0r-48,0r0,-709r-195,0r0,-45r438,0r0,45r-195,0r0,709","w":450,"k":{"\u00ad":80,"y":80,"w":80,"u":100,"s":100,"r":80,"o":100,"i":15,"e":100,"c":100,"a":100,"A":80,";":100,":":100,".":100,",":100}},"U":{"d":"330,10v-168,0,-256,-103,-256,-294r0,-470r48,0r0,508v-25,212,261,272,377,138v36,-42,40,-112,39,-190r0,-456r48,0r0,470v13,190,-88,294,-256,294","w":660},"V":{"d":"277,-110r2,0r223,-644r48,0r-274,779r-271,-779r48,0","w":555,"k":{"\u00ad":30,"y":20,"u":60,"r":40,"o":80,"i":20,"e":80,"a":80,"A":100,";":80,":":80,".":120,",":120}},"W":{"d":"272,-106r282,-686r282,686r209,-648r48,0r-254,779r-288,-697r-287,697r-252,-779r48,0","w":1105,"k":{"u":40,"r":20,"o":60,"e":60,"a":60,"A":100,";":20,":":20,".":80,",":80}},"X":{"d":"20,-754r53,0r173,324r173,-324r53,0r-197,369r207,385r-52,0r-184,-341r-182,341r-52,0r206,-385","w":494},"Y":{"d":"4,-754r53,0r222,382r222,-382r53,0r-251,432r0,322r-48,0r0,-322","w":559,"k":{"\u00ad":60,"v":40,"u":60,"q":100,"p":80,"o":100,"i":20,"e":100,"a":100,"A":100,";":100,":":100,".":100,",":100}},"Z":{"d":"543,-45r0,45r-531,0r460,-709r-416,0r0,-45r500,0r-460,709r447,0","w":568},"[":{"d":"113,152r122,0r0,51r-170,0r0,-957r170,0r0,51r-122,0r0,855","w":300},"\\":{"d":"70,-825r535,806r-37,19r-533,-807","w":640},"]":{"d":"187,-703r-122,0r0,-51r170,0r0,957r-170,0r0,-51r122,0r0,-855","w":300},"^":{"d":"54,-301r230,-453r52,0r230,453r-46,0r-210,-408r-209,408r-47,0"},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"`":{"d":"136,-714r101,147r-38,17r-124,-145","w":313},"a":{"d":"258,-472v82,-2,143,40,180,90r0,-80r45,0r0,462r-45,0v-2,-26,4,-61,-2,-83v-34,54,-92,93,-176,93v-147,0,-228,-98,-228,-244v0,-144,81,-235,226,-238xm441,-239v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196v0,117,65,202,182,202v121,0,182,-86,182,-207","w":560},"b":{"d":"300,10v-86,0,-140,-42,-178,-93r0,83r-45,0r0,-825r45,0r0,443r2,0v34,-53,98,-90,178,-90v145,0,226,94,226,238v0,146,-82,244,-228,244xm119,-233v0,118,63,201,182,201v118,0,182,-85,182,-202v0,-113,-67,-196,-180,-196v-119,0,-184,79,-184,197","w":560},"c":{"d":"176,-454v86,-37,200,-13,255,39r0,60v-40,-43,-87,-75,-163,-75v-117,0,-191,82,-191,198v0,116,73,200,190,200v75,0,133,-38,170,-83r0,61v-56,55,-171,82,-263,45v-104,-42,-177,-181,-124,-317v23,-59,68,-104,126,-128","w":477},"d":{"d":"258,-472v82,-2,143,40,180,90r0,-443r45,0r0,825r-45,0v-2,-26,4,-61,-2,-83v-34,54,-92,93,-176,93v-147,0,-228,-98,-228,-244v0,-144,81,-235,226,-238xm77,-234v0,117,65,202,182,202v121,0,182,-86,182,-207v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196","w":560},"e":{"d":"433,-269v-13,-110,-120,-194,-243,-148v-60,23,-104,74,-113,148r356,0xm256,10v-171,0,-264,-166,-208,-334v28,-84,97,-148,208,-148v145,0,217,100,222,245r-401,0v1,120,68,195,185,195v79,0,133,-49,163,-105r38,22v-38,72,-105,125,-207,125","w":510},"f":{"d":"238,-790v-88,-28,-116,44,-116,130r0,198r116,0r0,42r-116,0r0,420r-45,0r0,-420r-51,0r0,-42r51,0r0,-207v-11,-112,53,-193,161,-162r0,41","w":240,"k":{"\u2019":-20,"f":-20}},"g":{"d":"269,-472v87,-1,133,40,176,90r0,-80r45,0r0,440v17,201,-122,328,-316,272v-81,-23,-135,-86,-142,-185r45,0v9,99,76,153,179,156v156,4,205,-137,187,-301v-36,50,-101,90,-180,90v-171,0,-265,-170,-207,-336v30,-84,101,-144,213,-146xm448,-239v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196v0,117,65,202,182,202v121,0,182,-86,182,-207","w":567},"h":{"d":"257,-430v-185,4,-124,253,-135,430r-45,0r0,-825r45,0r0,435r2,0v24,-46,72,-82,137,-82v118,-1,153,76,152,193r0,279r-45,0r0,-279v2,-90,-19,-153,-111,-151","w":490},"i":{"d":"76,-616v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm139,0r-45,0r0,-462r45,0r0,462","w":234},"j":{"d":"76,-616v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm139,270r-45,0r0,-732r45,0r0,732","w":234},"k":{"d":"122,-266r190,-196r58,0r-194,200r259,262r-59,0r-229,-231r-25,26r0,205r-45,0r0,-825r45,0r0,559","w":427},"l":{"d":"122,0r-45,0r0,-825r45,0r0,825","w":199},"m":{"d":"237,-430v-92,1,-115,85,-115,176r0,254r-45,0r0,-462r45,0v2,18,-4,44,2,58v18,-39,62,-68,116,-68v66,1,109,34,130,84v22,-51,68,-83,135,-84v111,-2,144,73,143,182r0,290r-45,0r0,-296v1,-79,-19,-135,-99,-134v-92,1,-118,73,-119,164r0,266r-45,0r0,-285v0,-82,-19,-146,-103,-145","w":725},"n":{"d":"257,-430v-185,4,-124,253,-135,430r-45,0r0,-462r45,0v2,23,-4,53,2,72v24,-46,72,-82,137,-82v118,-1,153,76,152,193r0,279r-45,0r0,-279v2,-90,-19,-153,-111,-151","w":490},"o":{"d":"470,-230v0,-122,-78,-200,-201,-200v-118,0,-192,82,-192,200v0,116,75,198,192,198v121,0,201,-77,201,-198xm515,-231v0,176,-165,285,-337,222v-105,-38,-184,-179,-128,-315v35,-84,108,-148,222,-148v147,0,243,94,243,241","w":547},"p":{"d":"302,10v-82,2,-143,-39,-180,-90r0,350r-45,0r0,-732r45,0v2,26,-4,61,2,83v34,-54,92,-93,176,-93v146,0,228,99,228,245v0,144,-82,234,-226,237xm483,-226v0,-118,-64,-204,-182,-204v-121,0,-182,88,-182,209v0,116,68,189,184,189v113,0,180,-80,180,-194","w":560},"q":{"d":"260,-472v86,0,141,42,178,93r0,-83r45,0r0,732r-45,0r0,-350r-2,0v-33,54,-98,90,-178,90v-144,0,-226,-93,-226,-236v0,-146,81,-246,228,-246xm441,-226v0,-118,-64,-204,-182,-204v-121,0,-182,88,-182,209v0,116,68,189,184,189v113,0,180,-80,180,-194","w":560},"r":{"d":"217,-430v-93,1,-96,101,-95,194r0,236r-45,0r0,-462r45,0v2,19,-4,45,2,60v17,-53,85,-89,149,-59r-24,40v-10,-6,-18,-9,-32,-9","w":278,"k":{"y":-40,"x":-40,"w":-40,"v":-40,"t":-20,"q":20,"n":-8,"m":-8,"f":-20,".":100,",":100}},"s":{"d":"110,-270v-86,-62,-29,-210,82,-202v50,3,102,36,118,74r-39,20v-13,-29,-42,-51,-81,-52v-61,-2,-105,74,-62,116v65,63,208,48,208,180v0,130,-154,183,-250,112v-29,-22,-49,-52,-58,-90r44,-14v17,52,50,94,115,94v99,0,146,-147,47,-182v-43,-15,-89,-31,-124,-56","w":375},"t":{"d":"127,0r-45,0r0,-420r-51,0r0,-42r51,0r0,-165r45,0r0,165r81,0r0,42r-81,0r0,420","w":209},"u":{"d":"236,-32v101,0,121,-71,121,-169r0,-261r45,0r0,277v11,124,-55,195,-166,195v-111,0,-166,-70,-166,-195r0,-277r45,0r0,261v-1,98,20,169,121,169","w":472},"v":{"d":"218,-81r164,-381r46,0r-211,487r-212,-487r46,0","w":433,"k":{".":80,",":80}},"w":{"d":"214,-83r163,-404r164,404r160,-379r46,0r-209,487r-163,-399r-162,399r-208,-487r46,0","w":752,"k":{".":60,",":60}},"x":{"d":"20,-462r54,0r147,187r148,-187r54,0r-172,218r188,244r-53,0r-165,-212r-164,212r-53,0r188,-244","w":443},"y":{"d":"-7,-462r47,0r197,418r177,-418r46,0r-310,732r-46,0r111,-262","w":460,"k":{".":80,",":80}},"z":{"d":"473,-42r0,42r-470,0r378,-420r-317,0r0,-42r411,0r-377,420r375,0","w":480},"{":{"d":"114,-136v0,-64,-35,-91,-73,-119r0,-44v37,-28,73,-51,73,-115v0,-151,-46,-350,145,-340r0,46v-58,0,-98,20,-97,80r0,186v2,86,-22,132,-73,163r0,5v52,31,73,81,73,168r0,185v-1,60,39,80,97,80r0,44v-107,0,-145,-53,-145,-163r0,-176","w":300},"|":{"d":"136,-786r48,0r0,1000r-48,0r0,-1000","w":320},"}":{"d":"186,-414v0,64,36,87,73,115r0,44v-41,32,-70,53,-73,119v-6,125,34,292,-74,328v-19,7,-42,10,-71,11r0,-44v58,0,98,-20,97,-80r0,-185v-2,-87,21,-137,73,-168r0,-5v-51,-31,-73,-77,-73,-163r0,-186v1,-60,-39,-80,-97,-80r0,-46v108,-1,145,54,145,164r0,176","w":300},"~":{"d":"201,-262v-52,0,-75,41,-100,74r-47,-23v42,-57,102,-128,204,-92v54,19,102,65,163,65v52,0,75,-43,97,-80r48,23v-34,49,-68,109,-146,109v-86,0,-133,-76,-219,-76"},"\u20ac":{"d":"92,-442v17,-175,132,-322,312,-322v83,0,152,26,207,79r-15,52v-52,-58,-95,-86,-197,-86v-156,0,-244,122,-259,277r399,0r-14,45r-389,0r2,75r364,0r-14,45r-343,0v24,134,112,242,259,242v101,0,135,-18,192,-70r0,58v-59,43,-91,57,-190,57v-177,1,-284,-128,-310,-287r-88,0r14,-45r68,0r-2,-75r-80,0r14,-45r70,0"},"\u201a":{"d":"186,-60r-83,226r-30,-11r68,-229","w":259},"\u0192":{"d":"79,81v36,16,104,25,126,-11v16,-26,25,-66,31,-100r79,-411r-69,0r9,-45r68,0r51,-262v8,-76,103,-112,177,-75r-9,41v-46,-22,-108,-9,-120,30v-25,81,-34,179,-53,266r116,0r-9,45r-115,0r-85,447v-13,82,-63,154,-167,130v-13,-3,-26,-8,-39,-13"},"\u201e":{"d":"317,-60r-83,226r-30,-11r68,-229xm186,-60r-83,226r-30,-11r68,-229","w":390},"\u2026":{"d":"792,-34v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm459,-34v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm126,-34v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41","w":1000},"\u2020":{"d":"334,-754r0,199r181,0r0,45r-181,0r0,688r-48,0r0,-688r-181,0r0,-45r181,0r0,-199r48,0"},"\u2021":{"d":"334,-754r0,199r181,0r0,45r-181,0r0,428r181,0r0,45r-181,0r0,215r-48,0r0,-215r-181,0r0,-45r181,0r0,-428r-181,0r0,-45r181,0r0,-199r48,0"},"\u02c6":{"d":"213,-694r138,106r-38,29r-100,-77r-102,77r-36,-29","w":426},"\u2030":{"d":"594,-140v0,-65,-45,-107,-110,-107v-65,0,-110,42,-110,107v0,64,45,105,110,105v65,0,110,-41,110,-105xm332,-140v0,-92,60,-149,152,-149v92,0,152,57,152,149v0,91,-61,147,-152,147v-91,0,-152,-56,-152,-147xm571,-754r-448,771r-31,-18r446,-770xm290,-612v0,-65,-45,-107,-110,-107v-65,0,-110,42,-110,107v0,64,45,105,110,105v65,0,110,-41,110,-105xm28,-612v0,-92,60,-149,152,-149v92,0,152,57,152,149v0,91,-61,147,-152,147v-91,0,-152,-56,-152,-147xm964,-140v0,-65,-45,-107,-110,-107v-65,0,-110,42,-110,107v0,64,45,105,110,105v65,0,110,-41,110,-105xm702,-140v0,-92,60,-149,152,-149v92,0,152,57,152,149v0,91,-61,147,-152,147v-91,0,-152,-56,-152,-147","w":1034},"\u0160":{"d":"282,-816r-138,-107r38,-28r100,76r102,-76r36,28xm87,-573v-4,-158,165,-236,300,-163v33,19,59,45,77,78r-34,28v-33,-50,-75,-86,-153,-89v-122,-5,-192,162,-97,233v69,52,159,81,235,127v52,32,86,73,86,150v0,136,-100,219,-236,219v-113,0,-192,-73,-222,-162r42,-19v30,73,83,139,182,136v109,-3,186,-69,186,-178v0,-95,-89,-115,-152,-153v-86,-51,-211,-73,-214,-207","w":544},"\u2039":{"d":"210,-178r-29,27r-146,-169r146,-169r29,27r-121,142","w":277},"\u0152":{"d":"740,-508v-59,-151,-242,-262,-443,-184v-150,58,-264,251,-186,448v58,147,256,264,449,181v116,-50,203,-154,206,-314v0,-46,-10,-89,-26,-131xm430,-764v170,0,272,94,337,206r0,-196r360,0r0,45r-312,0r0,274r305,0r0,45r-305,0r0,345r312,0r0,45r-360,0r0,-194r-2,0v-66,152,-283,258,-485,175v-137,-56,-244,-174,-244,-358v0,-183,108,-298,242,-357v48,-20,99,-30,152,-30","w":1193},"\u017d":{"d":"296,-816r-138,-107r38,-28r100,76r102,-76r36,28xm543,-45r0,45r-531,0r460,-709r-416,0r0,-45r500,0r-460,709r447,0","w":568},"\u2018":{"d":"73,-537r83,-227r30,11r-68,229","w":259,"k":{"\u2018":20}},"\u2019":{"d":"186,-751r-83,227r-30,-11r68,-229","w":259,"k":{"\u2019":20,"t":20,"s":100}},"\u201c":{"d":"73,-537r83,-227r30,11r-68,229xm204,-537r83,-227r30,11r-68,229","w":390},"\u201d":{"d":"317,-751r-83,227r-30,-11r68,-229xm186,-751r-83,227r-30,-11r68,-229","w":390},"\u2022":{"d":"122,-377v0,-114,74,-189,189,-189v114,0,188,75,188,189v0,114,-75,188,-188,188v-115,0,-189,-74,-189,-188"},"\u2013":{"d":"500,-342r0,45r-500,0r0,-45r500,0","w":500},"\u2014":{"d":"870,-342r0,45r-740,0r0,-45r740,0","w":1000},"\u02dc":{"d":"149,-627v-26,-1,-37,21,-44,41r-30,-22v14,-39,57,-79,113,-58v31,12,61,31,98,33v25,2,42,-22,48,-41r29,22v-7,33,-42,67,-81,65v-49,-2,-83,-38,-133,-40","w":439},"\u2122":{"d":"533,-754r137,327r2,0r139,-327r72,0r0,421r-42,0r0,-379r-4,0r-165,379r-2,0r-163,-379r-4,0r0,379r-42,0r0,-421r72,0xm378,-712r-139,0r0,379r-42,0r0,-379r-139,0r0,-42r320,0r0,42","w":940},"\u0161":{"d":"188,-559r-138,-107r38,-28r100,76r102,-76r36,28xm110,-270v-86,-62,-29,-210,82,-202v50,3,102,36,118,74r-39,20v-13,-29,-42,-51,-81,-52v-61,-2,-105,74,-62,116v65,63,208,48,208,180v0,130,-154,183,-250,112v-29,-22,-49,-52,-58,-90r44,-14v17,52,50,94,115,94v99,0,146,-147,47,-182v-43,-15,-89,-31,-124,-56","w":375},"\u203a":{"d":"188,-320r-121,-142r29,-27r146,169r-146,169r-29,-27","w":277},"\u0153":{"d":"469,-230v0,-117,-75,-200,-193,-200v-145,0,-238,138,-184,278v26,68,88,120,179,120v119,0,198,-79,198,-198xm868,-269v-13,-110,-120,-194,-242,-148v-60,23,-103,74,-112,148r354,0xm491,-338v30,-105,174,-168,295,-114v79,36,125,113,127,225r-399,0v0,117,69,195,182,195v84,0,134,-46,163,-107r38,23v-35,74,-104,126,-205,126v-105,0,-168,-59,-201,-136v-42,99,-177,169,-311,118v-107,-40,-186,-182,-128,-318v36,-84,110,-146,225,-146v108,0,177,58,214,134","w":945},"\u017e":{"d":"265,-559r-138,-107r38,-28r100,76r102,-76r36,28xm473,-42r0,42r-470,0r378,-420r-317,0r0,-42r411,0r-377,420r375,0","w":480},"\u0178":{"d":"345,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm158,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm4,-754r53,0r222,382r222,-382r53,0r-251,432r0,322r-48,0r0,-322","w":559},"\u00a0":{"w":310},"\u00a1":{"d":"184,290r-48,0r0,-611r48,0r0,611xm119,-431v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41","w":320},"\u00a2":{"d":"316,-582v-116,17,-195,137,-152,268v22,67,75,116,152,128r0,-396xm361,-626v59,3,109,27,145,58r0,60v-35,-38,-82,-71,-145,-76r0,399v66,-4,116,-44,151,-83r0,61v-38,32,-89,61,-151,64r0,128r-45,0r0,-129v-124,-18,-209,-101,-209,-235v0,-140,80,-228,209,-246r0,-117r45,0r0,116"},"\u00a3":{"d":"247,-40v-68,-28,-121,14,-156,50r-27,-39v27,-32,79,-66,134,-65v36,-31,75,-80,61,-148r-124,0r0,-45r112,0r-81,-138v-28,-47,-54,-81,-54,-150v0,-141,142,-226,278,-173v68,26,115,90,115,183r-48,0v-3,-94,-55,-154,-150,-154v-107,0,-180,108,-133,210v35,78,93,140,125,222r136,0r0,45r-127,0v10,70,-20,124,-55,159v51,15,98,44,156,48v52,4,87,-48,106,-82r41,24v-34,61,-99,127,-196,93"},"\u00a4":{"d":"103,-300v0,143,142,240,287,186v89,-33,160,-150,112,-266v-29,-71,-96,-122,-192,-122v-123,0,-207,77,-207,202xm55,-300v0,-71,21,-108,53,-158r-40,-40r36,-36r42,42v50,-34,89,-58,164,-58v75,0,114,24,164,58r42,-42r36,36r-40,40v32,51,53,87,53,158v0,71,-21,108,-53,158r40,40r-36,36r-42,-42v-50,34,-89,58,-164,58v-75,0,-114,-24,-164,-58r-42,42r-36,-36r40,-40v-32,-51,-53,-87,-53,-158"},"\u00a5":{"d":"243,-397r-161,0r0,-45r134,0r-181,-312r58,0r217,377r217,-377r58,0r-181,312r134,0r0,45r-160,0r-44,75r204,0r0,45r-204,0r0,277r-48,0r0,-277r-204,0r0,-45r204,0"},"\u00a6":{"d":"136,-661r48,0r0,250r-48,0r0,-250xm136,-161r48,0r0,250r-48,0r0,-250","w":320},"\u00a7":{"d":"308,193v-123,2,-167,-60,-164,-182r48,0v-1,89,27,137,117,137v119,0,176,-146,81,-207v-100,-64,-266,-59,-263,-225v1,-86,48,-145,113,-172v-60,-31,-94,-66,-96,-150v-3,-132,132,-186,253,-146v64,21,83,87,89,169r-48,0v-3,-85,-34,-136,-124,-136v-115,0,-168,156,-74,211v101,59,257,57,252,224v-3,85,-52,137,-113,167v65,24,107,73,107,155v0,107,-72,153,-178,155xm175,-287v0,79,56,132,135,132v79,0,134,-53,134,-132v0,-79,-55,-134,-134,-134v-79,0,-135,54,-135,134"},"\u00a8":{"d":"264,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm77,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40","w":421},"\u00a9":{"d":"418,-206v71,0,120,-38,131,-102r48,0v-12,94,-79,150,-179,150v-135,0,-214,-88,-214,-223v0,-136,75,-222,211,-222v97,0,171,58,182,146r-48,0v-13,-61,-62,-98,-133,-98v-105,0,-164,69,-164,173v0,104,61,176,166,176xm88,-245v61,149,246,261,445,181v118,-48,206,-154,206,-314v0,-159,-90,-261,-206,-312v-135,-60,-301,-1,-373,72v-78,79,-127,239,-72,373xm674,-104v-81,87,-268,154,-424,84v-133,-59,-237,-176,-237,-358v0,-182,105,-297,237,-356v93,-41,209,-41,301,0v131,59,236,174,236,356v0,117,-53,209,-113,274","w":800},"\u00aa":{"d":"169,-764v53,-1,91,25,117,54r0,-48r29,0r0,277r-29,0v-2,-16,4,-38,-2,-50v-19,33,-66,56,-114,56v-92,0,-148,-56,-148,-146v0,-90,56,-140,147,-143xm281,-623v0,-68,-49,-107,-118,-107v-65,0,-107,46,-107,110v0,67,41,111,109,111v72,0,116,-44,116,-114","w":336},"\u00ab":{"d":"210,-178r-29,27r-146,-169r146,-169r29,27r-121,142xm330,-178r-29,27r-146,-169r146,-169r29,27r-121,142","w":397},"\u00ac":{"d":"518,-317r-464,0r0,-48r512,0r0,266r-48,0r0,-218"},"\u00ad":{"d":"190,-342r0,45r-190,0r0,-45r190,0","w":190},"\u2010":{"d":"190,-342r0,45r-190,0r0,-45r190,0","w":190},"\u00ae":{"d":"547,-470v0,-92,-147,-55,-239,-63r0,132v98,-7,239,31,239,-69xm595,-469v2,82,-54,113,-133,116r128,195r-62,0r-121,-195r-99,0r0,195r-48,0r0,-423r185,0v98,-1,148,29,150,112xm88,-245v61,149,246,261,445,181v118,-48,206,-154,206,-314v0,-159,-90,-261,-206,-312v-135,-60,-301,-1,-373,72v-78,79,-127,239,-72,373xm674,-104v-81,87,-268,154,-424,84v-133,-59,-237,-176,-237,-358v0,-182,105,-297,237,-356v93,-41,209,-41,301,0v131,59,236,174,236,356v0,117,-53,209,-113,274","w":800},"\u00af":{"d":"380,-674r0,45r-305,0r0,-45r305,0","w":456},"\u00b0":{"d":"308,-614v0,-65,-43,-108,-109,-108v-65,0,-104,44,-107,108v-3,60,48,111,108,108v65,-3,108,-43,108,-108xm200,-764v90,0,150,61,150,150v0,90,-60,150,-150,150v-90,0,-150,-60,-150,-150v0,-90,60,-150,150,-150","w":400},"\u00b1":{"d":"54,-48r512,0r0,48r-512,0r0,-48xm286,-512r48,0r0,192r232,0r0,48r-232,0r0,192r-48,0r0,-192r-232,0r0,-48r232,0r0,-192"},"\u00b2":{"d":"191,-764v118,-6,187,122,118,216v-57,78,-130,138,-195,208r222,0r0,34r-302,0r212,-216v26,-30,56,-61,58,-112v2,-60,-52,-96,-113,-96v-65,0,-114,36,-113,99r-34,0v1,-86,64,-129,147,-133","w":372},"\u00b3":{"d":"292,-431v2,-60,-50,-94,-109,-94r0,-34v57,1,102,-34,102,-90v0,-50,-44,-81,-95,-81v-55,0,-90,27,-92,78r-34,0v6,-68,52,-114,127,-112v74,2,128,43,128,116v0,52,-33,89,-74,105v44,14,78,57,81,110v7,142,-215,176,-269,63v-7,-14,-11,-30,-11,-47r34,0v7,52,42,85,101,83v63,-2,109,-34,111,-97","w":372},"\u00b4":{"d":"237,-695r-124,145r-38,-17r101,-147","w":313},"\u00b5":{"d":"236,10v-62,0,-98,-39,-121,-82r0,342r-45,0r0,-732r45,0r0,228v2,101,20,199,121,202v101,3,121,-71,121,-169r0,-261r45,0r0,277v11,124,-55,195,-166,195","w":472},"\u00b6":{"d":"110,-560v0,-130,67,-194,203,-194r197,0r0,45r-40,0r0,887r-48,0r0,-887r-92,0r0,887r-48,0r0,-548v-110,-5,-172,-79,-172,-190"},"\u00b7":{"d":"114,-256v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41","w":310},"\u22c5":{"d":"114,-256v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41","w":310},"\u2219":{"d":"114,-256v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41","w":310},"\u00b8":{"d":"113,183r-38,-19r93,-144r56,22","w":299},"\u00b9":{"d":"134,-720r15,-34r95,0r0,448r-34,0r0,-414r-76,0","w":372},"\u00ba":{"d":"282,-618v0,-70,-50,-112,-121,-112v-68,0,-115,45,-115,112v0,66,48,109,115,109v70,0,121,-40,121,-109xm7,-619v0,-90,65,-145,156,-145v92,0,158,53,158,144v0,91,-65,145,-158,145v-90,0,-156,-55,-156,-144","w":328},"\u00bb":{"d":"308,-320r-121,-142r29,-27r146,169r-146,169r-29,-27xm188,-320r-121,-142r29,-27r146,169r-146,169r-29,-27","w":397},"\u00bc":{"d":"681,-754r-447,771r-32,-18r447,-771xm730,-367r-5,0r-186,247r0,4r191,0r0,-251xm830,-116r0,34r-66,0r0,82r-34,0r0,-82r-259,0r0,-4r287,-382r6,0r0,352r66,0xm100,-720r15,-34r95,0r0,448r-34,0r0,-414r-76,0","w":930},"\u00bd":{"d":"637,-754r-447,771r-32,-18r447,-771xm683,-458v118,-6,187,122,118,216v-57,78,-130,138,-195,208r222,0r0,34r-302,0r212,-216v26,-30,56,-61,58,-112v2,-60,-52,-96,-113,-96v-65,0,-114,36,-113,99r-34,0v1,-86,64,-129,147,-133xm100,-720r15,-34r95,0r0,448r-34,0r0,-414r-76,0","w":930},"\u00be":{"d":"734,-754r-447,771r-32,-18r447,-771xm306,-431v2,-60,-50,-94,-109,-94r0,-34v57,1,102,-34,102,-90v0,-50,-44,-81,-95,-81v-55,0,-90,27,-92,78r-34,0v6,-68,52,-114,127,-112v74,2,128,43,128,116v0,52,-33,89,-74,105v44,14,78,57,81,110v7,142,-215,176,-269,63v-7,-14,-11,-30,-11,-47r34,0v7,52,42,85,101,83v63,-2,109,-34,111,-97xm770,-367r-5,0r-186,247r0,4r191,0r0,-251xm870,-116r0,34r-66,0r0,82r-34,0r0,-82r-259,0r0,-4r287,-382r6,0r0,352r66,0","w":930},"\u00bf":{"d":"207,-431v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm243,-275v-69,2,-102,49,-106,116r-48,0v-1,-100,58,-155,156,-161v135,-8,205,160,117,252v-71,74,-253,32,-248,188v3,82,50,137,133,137v97,0,147,-79,125,-180r46,0v30,132,-48,223,-172,225v-136,3,-211,-121,-168,-252v26,-79,116,-95,200,-120v44,-13,77,-39,77,-98v0,-62,-49,-108,-112,-107","w":491},"\u00c0":{"d":"300,-971r101,147r-38,17r-124,-145xm321,-657r-148,364r295,0xm155,-248r-101,248r-49,0r316,-779r315,779r-49,0r-101,-248r-331,0","w":641},"\u00c1":{"d":"401,-952r-124,145r-38,-17r101,-147xm321,-657r-148,364r295,0xm155,-248r-101,248r-49,0r316,-779r315,779r-49,0r-101,-248r-331,0","w":641},"\u00c2":{"d":"321,-951r138,106r-38,29r-100,-77r-102,77r-36,-29xm321,-657r-148,364r295,0xm155,-248r-101,248r-49,0r316,-779r315,779r-49,0r-101,-248r-331,0","w":641},"\u00c3":{"d":"250,-884v-26,-1,-37,21,-44,41r-30,-22v14,-39,58,-79,114,-58v31,12,60,31,97,33v25,2,42,-22,48,-41r29,22v-7,33,-42,67,-81,65v-49,-2,-83,-38,-133,-40xm321,-657r-148,364r295,0xm155,-248r-101,248r-49,0r316,-779r315,779r-49,0r-101,-248r-331,0","w":641},"\u00c4":{"d":"374,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm187,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm321,-657r-148,364r295,0xm155,-248r-101,248r-49,0r316,-779r315,779r-49,0r-101,-248r-331,0","w":641},"\u00c5":{"d":"368,-884v0,-26,-21,-47,-47,-47v-26,0,-47,21,-47,47v0,26,21,47,47,47v26,0,47,-21,47,-47xm234,-884v0,-47,40,-87,87,-87v47,0,87,40,87,87v0,47,-40,87,-87,87v-47,0,-87,-40,-87,-87xm321,-657r-148,364r295,0xm155,-248r-101,248r-49,0r316,-779r315,779r-49,0r-101,-248r-331,0","w":641},"\u00c6":{"d":"317,-648r-141,355r285,0xm157,-248r-98,248r-54,0r304,-754r329,0r17,45r-311,0r112,274r303,0r19,45r-303,0r140,345r312,0r18,45r-365,0r-100,-248r-323,0","w":942},"\u00c7":{"d":"333,183r-38,-19r93,-144r56,22xm278,-734v139,-62,318,-19,402,68r0,66v-70,-93,-242,-154,-386,-91v-144,63,-266,252,-184,445v49,115,162,211,317,211v112,0,198,-51,253,-115r0,66v-88,83,-262,127,-401,64v-133,-60,-243,-174,-243,-356v0,-183,109,-298,242,-358","w":739},"\u00c8":{"d":"233,-971r101,147r-38,17r-124,-145xm129,-709r0,274r304,0r0,45r-304,0r0,345r312,0r0,45r-360,0r0,-754r360,0r0,45r-312,0","w":507},"\u00c9":{"d":"354,-952r-124,145r-38,-17r101,-147xm129,-709r0,274r304,0r0,45r-304,0r0,345r312,0r0,45r-360,0r0,-754r360,0r0,45r-312,0","w":507},"\u00ca":{"d":"254,-951r138,106r-38,29r-100,-77r-102,77r-36,-29xm129,-709r0,274r304,0r0,45r-304,0r0,345r312,0r0,45r-360,0r0,-754r360,0r0,45r-312,0","w":507},"\u00cb":{"d":"307,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm120,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm129,-709r0,274r304,0r0,45r-304,0r0,345r312,0r0,45r-360,0r0,-754r360,0r0,45r-312,0","w":507},"\u00cc":{"d":"85,-971r101,147r-38,17r-124,-145xm129,0r-48,0r0,-754r48,0r0,754","w":210},"\u00cd":{"d":"186,-952r-124,145r-38,-17r101,-147xm129,0r-48,0r0,-754r48,0r0,754","w":210},"\u00ce":{"d":"105,-951r138,106r-38,29r-100,-77r-102,77r-36,-29xm129,0r-48,0r0,-754r48,0r0,754","w":210},"\u00cf":{"d":"159,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm-28,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm129,0r-48,0r0,-754r48,0r0,754","w":210},"\u00d0":{"d":"81,-389r-81,0r0,-45r81,0r0,-320r136,0v198,-6,312,90,370,224v41,94,42,209,1,304v-59,135,-176,232,-371,226r-136,0r0,-389xm129,-434r173,0r0,45r-173,0r0,344v152,4,260,-12,340,-91v82,-80,133,-243,73,-377v-53,-116,-157,-201,-326,-196r-87,0r0,275","w":652},"\u00d1":{"d":"351,-884v-26,-1,-37,21,-44,41r-30,-22v14,-39,57,-79,113,-58v31,12,61,31,98,33v25,2,42,-22,48,-41r29,22v-7,33,-42,67,-81,65v-49,-2,-83,-38,-133,-40xm762,25r-633,-673r0,648r-48,0r0,-764r633,668r0,-658r48,0r0,779","w":843},"\u00d2":{"d":"407,-971r101,147r-38,17r-124,-145xm742,-509v-64,-148,-248,-266,-448,-183v-118,49,-210,154,-210,315v0,160,95,262,210,315v136,64,301,0,374,-74v78,-80,132,-239,74,-373xm152,-650v81,-88,269,-155,426,-84v133,59,240,176,240,357v0,182,-108,297,-240,357v-156,70,-343,0,-426,-84v-89,-90,-155,-270,-85,-422v21,-47,51,-87,85,-124","w":854},"\u00d3":{"d":"508,-952r-124,145r-38,-17r101,-147xm742,-509v-64,-148,-248,-266,-448,-183v-118,49,-210,154,-210,315v0,160,95,262,210,315v136,64,301,0,374,-74v78,-80,132,-239,74,-373xm152,-650v81,-88,269,-155,426,-84v133,59,240,176,240,357v0,182,-108,297,-240,357v-156,70,-343,0,-426,-84v-89,-90,-155,-270,-85,-422v21,-47,51,-87,85,-124","w":854},"\u00d4":{"d":"427,-951r138,106r-38,29r-100,-77r-102,77r-36,-29xm742,-509v-64,-148,-248,-266,-448,-183v-118,49,-210,154,-210,315v0,160,95,262,210,315v136,64,301,0,374,-74v78,-80,132,-239,74,-373xm152,-650v81,-88,269,-155,426,-84v133,59,240,176,240,357v0,182,-108,297,-240,357v-156,70,-343,0,-426,-84v-89,-90,-155,-270,-85,-422v21,-47,51,-87,85,-124","w":854},"\u00d5":{"d":"357,-884v-26,-1,-37,21,-44,41r-30,-22v14,-39,57,-79,113,-58v31,12,61,31,98,33v25,2,42,-22,48,-41r29,22v-7,33,-42,67,-81,65v-49,-2,-83,-38,-133,-40xm742,-509v-64,-148,-248,-266,-448,-183v-118,49,-210,154,-210,315v0,160,95,262,210,315v136,64,301,0,374,-74v78,-80,132,-239,74,-373xm152,-650v81,-88,269,-155,426,-84v133,59,240,176,240,357v0,182,-108,297,-240,357v-156,70,-343,0,-426,-84v-89,-90,-155,-270,-85,-422v21,-47,51,-87,85,-124","w":854},"\u00d6":{"d":"481,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm294,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm742,-509v-64,-148,-248,-266,-448,-183v-118,49,-210,154,-210,315v0,160,95,262,210,315v136,64,301,0,374,-74v78,-80,132,-239,74,-373xm152,-650v81,-88,269,-155,426,-84v133,59,240,176,240,357v0,182,-108,297,-240,357v-156,70,-343,0,-426,-84v-89,-90,-155,-270,-85,-422v21,-47,51,-87,85,-124","w":854},"\u00d7":{"d":"54,-478r30,-34r226,226r226,-226r30,34r-224,222r224,224r-30,32r-226,-225r-225,225r-31,-32r225,-224"},"\u00d8":{"d":"578,-20v-143,63,-327,18,-411,-71r-91,91r-27,-29r90,-90v-88,-85,-138,-264,-72,-407v61,-132,177,-238,360,-238v109,0,196,44,258,99r91,-91r29,26r-92,92v90,84,140,268,73,411v-43,92,-114,165,-208,207xm199,-123v76,76,234,115,361,61v145,-62,260,-244,186,-440v-15,-39,-38,-73,-66,-103xm652,-632v-74,-76,-233,-113,-358,-60v-144,62,-260,241,-187,438v14,39,37,73,64,103","w":854},"\u00d9":{"d":"295,-971r101,147r-38,17r-124,-145xm330,10v-168,0,-256,-103,-256,-294r0,-470r48,0r0,508v-25,212,261,272,377,138v36,-42,40,-112,39,-190r0,-456r48,0r0,470v13,190,-88,294,-256,294","w":660},"\u00da":{"d":"426,-952r-124,145r-38,-17r101,-147xm330,10v-168,0,-256,-103,-256,-294r0,-470r48,0r0,508v-25,212,261,272,377,138v36,-42,40,-112,39,-190r0,-456r48,0r0,470v13,190,-88,294,-256,294","w":660},"\u00db":{"d":"330,-951r138,106r-38,29r-100,-77r-102,77r-36,-29xm330,10v-168,0,-256,-103,-256,-294r0,-470r48,0r0,508v-25,212,261,272,377,138v36,-42,40,-112,39,-190r0,-456r48,0r0,470v13,190,-88,294,-256,294","w":660},"\u00dc":{"d":"384,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm197,-891v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm330,10v-168,0,-256,-103,-256,-294r0,-470r48,0r0,508v-25,212,261,272,377,138v36,-42,40,-112,39,-190r0,-456r48,0r0,470v13,190,-88,294,-256,294","w":660},"\u00dd":{"d":"390,-952r-124,145r-38,-17r101,-147xm4,-754r53,0r222,382r222,-382r53,0r-251,432r0,322r-48,0r0,-322","w":559},"\u00de":{"d":"397,-397v0,-105,-75,-159,-189,-152r-79,0r0,306r87,0v106,6,181,-59,181,-154xm445,-395v0,132,-92,202,-231,197r-85,0r0,198r-48,0r0,-754r48,0r0,160r85,0v142,-6,231,66,231,199","w":472},"\u00df":{"d":"237,-796v-87,-3,-115,69,-115,162r0,634r-45,0r0,-420r-49,0r0,-42r49,0r0,-188v-7,-118,58,-188,167,-188v99,0,155,64,159,162v2,67,-40,116,-88,138v137,36,231,203,165,366v-39,97,-128,164,-249,178r0,-42v126,-24,226,-99,226,-242v0,-144,-94,-218,-226,-236r0,-42v74,0,129,-49,127,-125v-2,-73,-49,-113,-121,-115","w":534},"\u00e0":{"d":"245,-714r101,147r-38,17r-124,-145xm258,-472v82,-2,143,40,180,90r0,-80r45,0r0,462r-45,0v-2,-26,4,-61,-2,-83v-34,54,-92,93,-176,93v-147,0,-228,-98,-228,-244v0,-144,81,-235,226,-238xm441,-239v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196v0,117,65,202,182,202v121,0,182,-86,182,-207","w":560},"\u00e1":{"d":"376,-695r-124,145r-38,-17r101,-147xm258,-472v82,-2,143,40,180,90r0,-80r45,0r0,462r-45,0v-2,-26,4,-61,-2,-83v-34,54,-92,93,-176,93v-147,0,-228,-98,-228,-244v0,-144,81,-235,226,-238xm441,-239v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196v0,117,65,202,182,202v121,0,182,-86,182,-207","w":560},"\u00e2":{"d":"280,-694r138,106r-38,29r-100,-77r-102,77r-36,-29xm258,-472v82,-2,143,40,180,90r0,-80r45,0r0,462r-45,0v-2,-26,4,-61,-2,-83v-34,54,-92,93,-176,93v-147,0,-228,-98,-228,-244v0,-144,81,-235,226,-238xm441,-239v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196v0,117,65,202,182,202v121,0,182,-86,182,-207","w":560},"\u00e3":{"d":"210,-627v-26,-1,-37,21,-44,41r-30,-22v14,-39,58,-79,114,-58v31,12,60,31,97,33v25,2,42,-22,48,-41r29,22v-7,33,-42,67,-81,65v-49,-2,-83,-38,-133,-40xm258,-472v82,-2,143,40,180,90r0,-80r45,0r0,462r-45,0v-2,-26,4,-61,-2,-83v-34,54,-92,93,-176,93v-147,0,-228,-98,-228,-244v0,-144,81,-235,226,-238xm441,-239v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196v0,117,65,202,182,202v121,0,182,-86,182,-207","w":560},"\u00e4":{"d":"334,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm147,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm258,-472v82,-2,143,40,180,90r0,-80r45,0r0,462r-45,0v-2,-26,4,-61,-2,-83v-34,54,-92,93,-176,93v-147,0,-228,-98,-228,-244v0,-144,81,-235,226,-238xm441,-239v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196v0,117,65,202,182,202v121,0,182,-86,182,-207","w":560},"\u00e5":{"d":"327,-627v0,-26,-21,-47,-47,-47v-26,0,-47,21,-47,47v0,26,21,47,47,47v26,0,47,-21,47,-47xm193,-627v0,-47,40,-87,87,-87v47,0,87,40,87,87v0,47,-40,87,-87,87v-47,0,-87,-40,-87,-87xm258,-472v82,-2,143,40,180,90r0,-80r45,0r0,462r-45,0v-2,-26,4,-61,-2,-83v-34,54,-92,93,-176,93v-147,0,-228,-98,-228,-244v0,-144,81,-235,226,-238xm441,-239v0,-116,-69,-191,-185,-191v-113,0,-179,84,-179,196v0,117,65,202,182,202v121,0,182,-86,182,-207","w":560},"\u00e6":{"d":"598,-32v79,0,134,-51,165,-104r39,26v-42,64,-108,120,-206,120v-97,0,-155,-51,-191,-114v-35,157,-383,156,-384,-30v-1,-158,254,-182,350,-96v-1,-117,-46,-199,-164,-200v-61,0,-110,22,-155,42r0,-46v50,-25,105,-38,164,-38v94,1,155,54,181,128v35,-96,170,-163,289,-108v79,37,129,115,131,226r-401,0v9,112,66,194,182,194xm371,-135v0,-77,-72,-102,-149,-102v-79,0,-156,23,-156,102v0,81,72,103,151,103v76,0,154,-27,154,-103xm772,-268v-15,-108,-120,-196,-242,-149v-60,23,-105,75,-114,149r356,0","w":849},"\u00e7":{"d":"202,183r-38,-19r93,-144r56,22xm176,-454v86,-37,200,-13,255,39r0,60v-40,-43,-87,-75,-163,-75v-117,0,-191,82,-191,198v0,116,73,200,190,200v75,0,133,-38,170,-83r0,61v-56,55,-171,82,-263,45v-104,-42,-177,-181,-124,-317v23,-59,68,-104,126,-128","w":477},"\u00e8":{"d":"220,-714r101,147r-38,17r-124,-145xm433,-269v-13,-110,-120,-194,-243,-148v-60,23,-104,74,-113,148r356,0xm256,10v-171,0,-264,-166,-208,-334v28,-84,97,-148,208,-148v145,0,217,100,222,245r-401,0v1,120,68,195,185,195v79,0,133,-49,163,-105r38,22v-38,72,-105,125,-207,125","w":510},"\u00e9":{"d":"351,-695r-124,145r-38,-17r101,-147xm433,-269v-13,-110,-120,-194,-243,-148v-60,23,-104,74,-113,148r356,0xm256,10v-171,0,-264,-166,-208,-334v28,-84,97,-148,208,-148v145,0,217,100,222,245r-401,0v1,120,68,195,185,195v79,0,133,-49,163,-105r38,22v-38,72,-105,125,-207,125","w":510},"\u00ea":{"d":"255,-694r138,106r-38,29r-100,-77r-102,77r-36,-29xm433,-269v-13,-110,-120,-194,-243,-148v-60,23,-104,74,-113,148r356,0xm256,10v-171,0,-264,-166,-208,-334v28,-84,97,-148,208,-148v145,0,217,100,222,245r-401,0v1,120,68,195,185,195v79,0,133,-49,163,-105r38,22v-38,72,-105,125,-207,125","w":510},"\u00eb":{"d":"309,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm122,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm433,-269v-13,-110,-120,-194,-243,-148v-60,23,-104,74,-113,148r356,0xm256,10v-171,0,-264,-166,-208,-334v28,-84,97,-148,208,-148v145,0,217,100,222,245r-401,0v1,120,68,195,185,195v79,0,133,-49,163,-105r38,22v-38,72,-105,125,-207,125","w":510},"\u00ec":{"d":"82,-714r101,147r-38,17r-124,-145xm139,0r-45,0r0,-462r45,0r0,462","w":234},"\u00ed":{"d":"213,-695r-124,145r-38,-17r101,-147xm139,0r-45,0r0,-462r45,0r0,462","w":234},"\u00ee":{"d":"117,-694r138,106r-38,29r-100,-77r-102,77r-36,-29xm139,0r-45,0r0,-462r45,0r0,462","w":234},"\u00ef":{"d":"171,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm-16,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm139,0r-45,0r0,-462r45,0r0,462","w":234},"\u00f0":{"d":"470,-230v0,-122,-78,-200,-201,-200v-118,0,-192,82,-192,200v0,116,75,198,192,198v121,0,201,-77,201,-198xm515,-260v0,166,-86,270,-243,270v-173,0,-278,-160,-222,-333v41,-126,243,-202,368,-103v10,8,19,16,26,23v-40,-119,-104,-202,-191,-279r-146,82r-25,-34r137,-75v-41,-34,-84,-62,-130,-89r32,-30v49,31,93,57,139,95r155,-87r25,33r-147,82v116,105,222,234,222,445","w":547},"\u00f1":{"d":"175,-627v-26,-1,-37,21,-44,41r-30,-22v14,-39,57,-79,113,-58v31,12,61,31,98,33v25,2,42,-22,48,-41r29,22v-7,33,-42,67,-81,65v-49,-2,-83,-38,-133,-40xm257,-430v-185,4,-124,253,-135,430r-45,0r0,-462r45,0v2,23,-4,53,2,72v24,-46,72,-82,137,-82v118,-1,153,76,152,193r0,279r-45,0r0,-279v2,-90,-19,-153,-111,-151","w":490},"\u00f2":{"d":"238,-714r101,147r-38,17r-124,-145xm470,-230v0,-122,-78,-200,-201,-200v-118,0,-192,82,-192,200v0,116,75,198,192,198v121,0,201,-77,201,-198xm515,-231v0,176,-165,285,-337,222v-105,-38,-184,-179,-128,-315v35,-84,108,-148,222,-148v147,0,243,94,243,241","w":547},"\u00f3":{"d":"369,-695r-124,145r-38,-17r101,-147xm470,-230v0,-122,-78,-200,-201,-200v-118,0,-192,82,-192,200v0,116,75,198,192,198v121,0,201,-77,201,-198xm515,-231v0,176,-165,285,-337,222v-105,-38,-184,-179,-128,-315v35,-84,108,-148,222,-148v147,0,243,94,243,241","w":547},"\u00f4":{"d":"274,-694r138,106r-38,29r-100,-77r-102,77r-36,-29xm470,-230v0,-122,-78,-200,-201,-200v-118,0,-192,82,-192,200v0,116,75,198,192,198v121,0,201,-77,201,-198xm515,-231v0,176,-165,285,-337,222v-105,-38,-184,-179,-128,-315v35,-84,108,-148,222,-148v147,0,243,94,243,241","w":547},"\u00f5":{"d":"203,-627v-26,-1,-37,21,-44,41r-30,-22v14,-39,57,-79,113,-58v31,12,61,31,98,33v25,2,42,-22,48,-41r29,22v-7,33,-42,67,-81,65v-49,-2,-83,-38,-133,-40xm470,-230v0,-122,-78,-200,-201,-200v-118,0,-192,82,-192,200v0,116,75,198,192,198v121,0,201,-77,201,-198xm515,-231v0,176,-165,285,-337,222v-105,-38,-184,-179,-128,-315v35,-84,108,-148,222,-148v147,0,243,94,243,241","w":547},"\u00f6":{"d":"327,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm140,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm470,-230v0,-122,-78,-200,-201,-200v-118,0,-192,82,-192,200v0,116,75,198,192,198v121,0,201,-77,201,-198xm515,-231v0,176,-165,285,-337,222v-105,-38,-184,-179,-128,-315v35,-84,108,-148,222,-148v147,0,243,94,243,241","w":547},"\u00f7":{"d":"269,-471v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm269,-41v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,22,-19,41,-41,41v-22,0,-41,-19,-41,-41xm54,-280r512,0r0,48r-512,0r0,-48"},"\u00f8":{"d":"272,10v-67,0,-119,-26,-157,-60r-60,60r-27,-27r60,-60v-84,-85,-62,-253,14,-324v41,-38,96,-71,170,-71v66,0,117,24,156,55r63,-63r28,29r-62,62v33,37,58,91,58,158v0,147,-96,241,-243,241xm269,-32v143,0,232,-123,189,-268v-7,-22,-19,-40,-33,-57r-280,277v30,28,70,48,124,48xm269,-430v-138,0,-220,125,-181,266v6,21,18,39,31,56r278,-278v-32,-26,-74,-44,-128,-44","w":547},"\u00f9":{"d":"191,-714r101,147r-38,17r-124,-145xm236,-32v101,0,121,-71,121,-169r0,-261r45,0r0,277v11,124,-55,195,-166,195v-111,0,-166,-70,-166,-195r0,-277r45,0r0,261v-1,98,20,169,121,169","w":472},"\u00fa":{"d":"342,-695r-124,145r-38,-17r101,-147xm236,-32v101,0,121,-71,121,-169r0,-261r45,0r0,277v11,124,-55,195,-166,195v-111,0,-166,-70,-166,-195r0,-277r45,0r0,261v-1,98,20,169,121,169","w":472},"\u00fb":{"d":"236,-694r138,106r-38,29r-100,-77r-102,77r-36,-29xm236,-32v101,0,121,-71,121,-169r0,-261r45,0r0,277v11,124,-55,195,-166,195v-111,0,-166,-70,-166,-195r0,-277r45,0r0,261v-1,98,20,169,121,169","w":472},"\u00fc":{"d":"290,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm103,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm236,-32v101,0,121,-71,121,-169r0,-261r45,0r0,277v11,124,-55,195,-166,195v-111,0,-166,-70,-166,-195r0,-277r45,0r0,261v-1,98,20,169,121,169","w":472},"\u00fd":{"d":"341,-695r-124,145r-38,-17r101,-147xm-7,-462r47,0r197,418r177,-418r46,0r-310,732r-46,0r111,-262","w":460},"\u00fe":{"d":"302,10v-82,2,-143,-39,-180,-90r0,350r-45,0r0,-1095r45,0r0,446r2,0v34,-54,92,-93,176,-93v146,0,228,99,228,245v0,144,-82,234,-226,237xm483,-226v0,-118,-64,-204,-182,-204v-121,0,-182,88,-182,209v0,116,68,189,184,189v113,0,180,-80,180,-194","w":560},"\u00ff":{"d":"289,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm102,-634v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm-7,-462r47,0r197,418r177,-418r46,0r-310,732r-46,0r111,-262","w":460}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1987, 1991, 1993, 2002 Adobe Systems Incorporated.  All Rights
 * Reserved.
 * 
 * Trademark:
 * Futura is a registered trademark of Bauer Types, S.A.
 * 
 * Full name:
 * FuturaStd-Bold
 * 
 * Designer:
 * Paul Renner
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":246,"face":{"font-family":"FuturaStdBold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 2 2 2 4 2 2 4","ascent":"297","descent":"-63","x-height":"6","bbox":"-62 -374 519 95","underline-thickness":"18","underline-position":"-18","stemh":"57","stemv":"66","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":123},"!":{"d":"69,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42xm35,-92r0,-179r68,0r0,179r-68,0","w":138},"\"":{"d":"17,-271r61,0r-10,119r-41,0xm102,-271r61,0r-10,119r-41,0","w":180},"#":{"d":"95,-261r39,0r-14,73r36,0r14,-73r38,0r-14,73r28,0r0,40r-35,0r-8,45r33,0r0,41r-42,0r-12,62r-38,0r12,-62r-37,0r-11,62r-39,0r12,-62r-33,0r0,-41r41,0r9,-45r-35,0r0,-40r42,0xm112,-148r-9,45r37,0r9,-45r-37,0"},"$":{"d":"24,-31r30,-55v17,15,42,31,65,31v15,0,34,-9,34,-27v0,-20,-29,-24,-57,-34v-28,-10,-56,-26,-56,-70v0,-42,29,-82,73,-85r0,-44r34,0r0,44v23,2,46,8,65,21r-26,52v-13,-10,-29,-18,-46,-18v-16,0,-31,7,-31,21v0,17,22,24,35,28v41,14,78,28,78,78v0,50,-28,76,-75,88r0,45r-34,0r0,-43v-36,-1,-67,-14,-89,-32"},"%":{"d":"81,-275v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-74,-23,-74,-67v0,-43,34,-66,74,-66xm81,-239v-17,0,-31,14,-31,31v0,17,14,30,31,30v17,0,31,-13,31,-30v0,-17,-14,-31,-31,-31xm270,-129v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-74,-23,-74,-67v0,-43,34,-66,74,-66xm270,-93v-17,0,-31,13,-31,30v0,17,14,31,31,31v17,0,31,-14,31,-31v0,-17,-14,-30,-31,-30xm237,-271r35,0r-158,271r-35,0","w":351},"&":{"d":"155,-67r-43,-46v-30,9,-33,58,5,57v13,0,27,-5,38,-11xm141,-172v26,-8,39,-56,2,-59v-35,3,-22,45,-2,59xm217,0r-23,-25v-57,47,-178,47,-180,-46v-1,-44,29,-62,64,-78v-10,-17,-25,-28,-25,-55v0,-47,41,-75,85,-75v43,0,84,28,84,74v0,34,-22,51,-50,65r34,36v13,-12,26,-24,36,-38r40,38v-13,13,-24,28,-38,40r61,64r-88,0","w":305},"\u2019":{"d":"66,-271r61,0r-66,119r-42,0","w":133,"k":{"\u2019":14,"t":14,"s":58,"\u0161":58}},"(":{"d":"70,-284r39,22v-57,98,-55,228,0,326r-39,22v-71,-107,-69,-264,0,-370","w":126},")":{"d":"18,-262r39,-22v70,106,71,263,0,370r-39,-22v55,-98,56,-228,0,-326","w":126},"*":{"d":"71,-271r32,0r-2,38r32,-20r16,27r-34,18r34,19r-16,27r-32,-21r2,37r-33,0r2,-36r-30,19r-16,-27r32,-18r-34,-18r17,-28r31,20","w":173},"+":{"d":"96,-120r0,-65r54,0r0,65r66,0r0,54r-66,0r0,66r-54,0r0,-66r-65,0r0,-54r65,0"},",":{"d":"55,-69r61,0r-66,120r-42,0","w":123},"-":{"d":"19,-143r103,0r0,54r-103,0r0,-54","w":141},".":{"d":"62,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},"\/":{"d":"147,-299r52,0r-138,332r-51,0","w":208},"0":{"d":"123,-282v157,2,156,290,0,293v-155,-3,-155,-291,0,-293xm123,-220v-36,0,-45,58,-45,84v0,26,9,85,45,85v36,0,45,-59,45,-85v0,-26,-9,-84,-45,-84"},"1":{"d":"97,-212r-39,0r0,-59r109,0r0,271r-70,0r0,-212"},"2":{"d":"141,-60r89,0r0,60r-218,0r111,-121v16,-17,31,-41,31,-66v0,-17,-12,-35,-31,-35v-23,0,-34,21,-29,44r-77,0v2,-62,41,-104,105,-104v57,0,105,37,105,96v0,61,-53,92,-86,126"},"3":{"d":"26,-193v6,-54,42,-85,101,-89v75,-6,119,94,58,134v29,8,45,41,45,69v0,92,-130,117,-187,59v-16,-17,-32,-44,-31,-68r72,0v0,22,16,38,38,38v22,0,38,-14,38,-36v0,-25,-25,-42,-50,-34r0,-47v23,2,38,-8,38,-30v0,-17,-11,-28,-27,-28v-18,0,-29,14,-29,32r-66,0"},"4":{"d":"203,-110r33,0r0,54r-33,0r0,56r-65,0r0,-56r-132,0r0,-45r105,-170r92,0r0,161xm138,-110r-1,-105r-64,105r65,0"},"5":{"d":"222,-85v3,93,-129,123,-202,71r10,-66v21,19,48,31,76,31v22,0,43,-16,43,-40v0,-53,-71,-54,-111,-35r24,-147r141,0r0,59r-94,0r-5,31v68,-14,116,32,118,96"},"6":{"d":"122,11v-58,0,-115,-42,-114,-98v3,-77,66,-132,102,-184r80,0r-76,92v64,-29,125,23,125,87v0,67,-55,103,-117,103xm122,-45v25,0,43,-20,43,-45v0,-24,-18,-44,-43,-44v-24,0,-45,20,-45,44v0,25,21,45,45,45"},"7":{"d":"139,-212r-113,0r0,-59r222,0r-155,271r-78,0"},"8":{"d":"123,-233v-17,0,-29,13,-29,30v0,17,12,31,29,31v17,0,30,-14,30,-31v0,-17,-13,-30,-30,-30xm123,-114v-18,0,-32,15,-32,34v0,18,14,33,32,33v18,0,33,-15,33,-33v0,-19,-15,-34,-33,-34xm31,-205v0,-103,185,-103,185,0v0,29,-18,54,-43,62v32,11,54,36,54,72v0,56,-57,82,-104,82v-47,0,-103,-26,-103,-82v0,-36,22,-61,54,-72v-25,-8,-43,-33,-43,-62"},"9":{"d":"125,-282v59,0,116,42,114,98v-3,77,-66,132,-102,184r-80,0r77,-92v-65,29,-126,-24,-126,-88v0,-67,55,-102,117,-102xm125,-226v-25,0,-43,19,-43,44v0,25,18,45,43,45v25,0,45,-20,45,-45v0,-25,-20,-44,-45,-44"},":":{"d":"62,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42xm62,-198v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},";":{"d":"50,-69r61,0r-66,120r-42,0xm78,-198v23,0,43,19,43,42v0,23,-20,42,-43,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},"<":{"d":"36,-71r0,-43r176,-66r0,54r-99,34r99,33r0,54"},"=":{"d":"31,-163r185,0r0,54r-185,0r0,-54xm31,-76r185,0r0,54r-185,0r0,-54"},">":{"d":"212,-114r0,43r-176,66r0,-54r98,-34r-98,-33r0,-54"},"?":{"d":"104,-279v48,-1,94,38,94,85v0,41,-28,66,-65,78r0,25r-66,0r0,-70v27,7,61,-4,62,-33v0,-15,-12,-27,-27,-27v-17,0,-25,12,-25,27r-72,0v0,-55,48,-85,99,-85xm101,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":214},"@":{"d":"136,-169v-38,-2,-51,73,-8,75v39,1,49,-75,8,-75xm264,-163v0,54,-36,111,-78,108v-10,0,-19,-9,-22,-21v-30,41,-106,15,-106,-46v0,-64,74,-118,117,-64r4,-19r34,0r-18,93v-2,9,-6,25,4,24v13,-1,34,-31,36,-62v3,-61,-42,-95,-97,-95v-60,0,-102,46,-102,109v0,94,101,132,173,95r29,24v-25,13,-58,24,-97,24v-77,0,-139,-61,-139,-143v0,-81,60,-143,137,-143v65,0,125,52,125,116","w":266},"A":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0","w":281},"B":{"d":"94,-112r0,58v27,0,65,4,65,-29v0,-36,-38,-28,-65,-29xm230,-76v0,96,-115,74,-207,76r0,-271v82,3,184,-20,181,70v0,24,-7,45,-29,56v39,5,55,31,55,69xm94,-217r0,52v23,0,46,0,46,-26v0,-27,-24,-26,-46,-26","w":243},"C":{"d":"9,-135v0,-100,109,-178,208,-130r0,85v-37,-55,-134,-29,-134,45v0,73,95,98,134,45r0,85v-102,42,-208,-31,-208,-130","w":237},"D":{"d":"23,0r0,-271r100,0v76,0,138,59,138,135v0,76,-63,136,-138,136r-100,0xm94,-212r0,152v54,3,94,-17,94,-76v0,-55,-38,-80,-94,-76","w":270},"E":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59","w":198},"F":{"d":"179,-212r-85,0r0,46r77,0r0,59r-77,0r0,107r-71,0r0,-271r156,0r0,59","w":195,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":46,".":46}},"G":{"d":"294,-152v7,87,-56,161,-140,161v-85,0,-145,-58,-145,-143v0,-88,61,-146,148,-146v56,0,99,25,122,76r-67,28v-10,-26,-31,-44,-59,-44v-93,2,-93,170,1,171v31,0,54,-16,57,-47r-57,0r0,-56r140,0","w":303},"H":{"d":"94,-167r101,0r0,-104r71,0r0,271r-71,0r0,-111r-101,0r0,111r-71,0r0,-271r71,0r0,104","w":289},"I":{"d":"94,-271r0,271r-71,0r0,-271r71,0","w":116},"J":{"d":"84,-271r70,0v-8,116,37,281,-90,278v-30,0,-53,-15,-69,-40r40,-43v8,11,20,23,29,23v21,0,20,-25,20,-40r0,-178","w":176},"K":{"d":"180,-271r87,0r-108,128r118,143r-92,0r-91,-118r0,118r-71,0r0,-271r71,0r0,112","w":272},"L":{"d":"94,-271r0,211r84,0r0,60r-155,0r0,-271r71,0","w":178,"k":{"T":20,"V":33,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":33,"\u00dd":33,"\u0178":33,"\u2019":27}},"M":{"d":"7,0r46,-271r69,0r55,145r59,-145r70,0r41,271r-71,0r-20,-156r-65,156r-28,0r-63,-156r-23,156r-70,0","w":353},"N":{"d":"23,0r0,-271r71,0r130,166r0,-166r70,0r0,271r-70,0r-130,-166r0,166r-71,0","w":317},"O":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72","w":319},"P":{"d":"23,0r0,-271v99,0,207,-15,207,89v0,80,-54,97,-136,92r0,90r-71,0xm94,-215r0,68v31,0,62,4,62,-33v0,-38,-30,-35,-62,-35","w":237,"k":{"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":50,".":46}},"Q":{"d":"204,-114r20,19v33,-50,-7,-118,-64,-117v-42,0,-77,35,-77,72v0,54,46,93,98,77r-43,-43xm320,7r-64,10r-22,-26v-101,53,-225,-16,-225,-132v0,-82,72,-139,150,-139v85,0,151,57,151,145v0,36,-12,67,-35,95","w":319},"R":{"d":"163,-111r86,111r-88,0r-67,-104r0,104r-71,0r0,-271v94,0,202,-16,200,83v0,37,-21,70,-60,77xm94,-217r0,67v27,0,55,-2,55,-34v0,-32,-28,-33,-55,-33","w":244,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,"\u0178":14}},"S":{"d":"211,-91v0,100,-129,125,-200,67r30,-57v18,15,39,28,63,28v17,0,34,-8,34,-27v0,-20,-28,-27,-43,-31v-44,-13,-73,-24,-73,-77v0,-92,110,-112,178,-68r-28,54v-13,-11,-30,-18,-47,-18v-13,0,-30,8,-30,23v0,23,30,25,49,31v38,11,67,31,67,75","w":221},"T":{"d":"131,-212r0,212r-71,0r0,-212r-58,0r0,-59r187,0r0,59r-58,0","w":191,"k":{"\u00fc":29,"\u0161":33,"\u00f2":27,"\u00f6":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"w":29,"y":29,"\u00fd":29,"\u00ff":29,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,",":33,".":40,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"a":27,"\u00e6":27,"\u00e1":27,"c":27,"\u00e7":27,"e":27,"\u00e9":27,"r":20,"s":33,"u":29,"\u00fa":29,"\u00fb":29,"\u00f9":29,":":13,"-":36,";":24}},"U":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142","w":280},"V":{"d":"71,-271r66,164r66,-164r76,0r-116,271r-54,0r-114,-271r76,0","w":273,"k":{"\u00f6":27,"\u00f4":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"y":6,"\u00fd":6,"\u00ff":6,"A":32,"\u00c6":32,"\u00c1":32,"\u00c2":32,"\u00c4":32,"\u00c0":32,"\u00c5":32,"\u00c3":32,",":58,".":54,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f2":27,"\u00f5":27,"a":27,"\u00e6":27,"\u00e1":27,"e":27,"\u00e9":27,"r":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,"-":20,";":33,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7}},"W":{"d":"68,-271r48,175r57,-175r56,0r54,175r51,-175r74,0r-87,271r-72,0r-48,-157r-54,157r-71,0r-81,-271r73,0","w":402,"k":{"\u00fc":14,"\u00f6":14,"\u00ea":14,"\u00e4":13,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,",":50,".":33,"o":14,"\u00f8":14,"\u0153":14,"\u00f3":14,"\u00f4":14,"\u00f2":14,"\u00f5":14,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":14,"\u00e9":14,"\u00eb":14,"\u00e8":14,"r":14,"u":14,"\u00fa":14,"\u00fb":14,"\u00f9":14,":":6,"-":13,";":22}},"X":{"d":"103,-145r-86,-126r86,0r42,70r41,-70r87,0r-87,126r101,145r-85,0r-57,-89r-63,89r-85,0","w":284},"Y":{"d":"93,-130r-100,-141r85,0r51,73r50,-73r85,0r-100,141r0,130r-71,0r0,-130","w":257,"k":{"\u00fc":27,"\u00f6":43,"v":20,"A":43,"\u00c6":43,"\u00c1":43,"\u00c2":43,"\u00c4":43,"\u00c0":43,"\u00c5":43,"\u00c3":43,",":43,".":43,"o":43,"\u00f8":43,"\u0153":43,"\u00f3":43,"\u00f4":43,"\u00f2":43,"\u00f5":43,"q":33,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"e":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00e8":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,":":27,"-":33,";":43,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7,"p":27}},"Z":{"d":"123,-60r114,0r0,60r-233,0r128,-212r-106,0r0,-59r225,0","w":254},"[":{"d":"69,-246r0,294r38,0r0,38r-88,0r0,-370r88,0r0,38r-38,0","w":126},"\\":{"d":"10,-299r52,0r137,299r-51,0","w":208},"]":{"d":"57,48r0,-294r-38,0r0,-38r88,0r0,370r-88,0r0,-38r38,0","w":126},"^":{"d":"78,-122r-41,-25r65,-135r43,0r65,135r-41,25r-46,-97"},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"68,-152r-61,0r66,-119r42,0","w":133,"k":{"\u2018":14}},"a":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0","w":245},"b":{"d":"19,0r0,-299r66,0r0,132v54,-57,150,-3,150,74v0,77,-99,134,-150,72r0,21r-66,0xm125,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"c":{"d":"155,-180r0,55v-28,-26,-79,-10,-79,32v0,42,51,60,79,33r0,56v-68,31,-147,-14,-147,-86v0,-74,79,-124,147,-90","w":173},"d":{"d":"161,0v-1,-6,2,-16,-1,-21v-49,63,-149,6,-149,-72v0,-78,94,-131,150,-74r0,-132r65,0r0,299r-65,0xm121,-134v-27,0,-43,19,-43,42v0,23,16,41,43,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"e":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm209,-57v-9,41,-48,62,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0","w":219},"f":{"d":"28,-185v-12,-77,41,-135,111,-111r0,57v-20,-12,-49,-10,-45,24r0,30r45,0r0,54r-45,0r0,131r-66,0r0,-131r-23,0r0,-54r23,0","w":139,"k":{"\u2019":-7}},"g":{"d":"86,22v3,11,17,18,31,18v38,0,43,-27,42,-62v-52,58,-150,10,-150,-69v0,-78,97,-135,150,-74r0,-20r65,0r0,167v0,78,-39,110,-107,110v-42,0,-99,-21,-105,-70r74,0xm119,-135v-27,0,-42,18,-42,41v0,23,15,42,42,42v27,0,42,-19,42,-42v0,-23,-15,-41,-42,-41","w":243},"h":{"d":"22,-299r65,0r1,138v36,-55,128,-31,128,48r0,113r-65,0r0,-95v0,-22,-4,-44,-30,-44v-56,0,-27,87,-34,139r-65,0r0,-299","w":237},"i":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm54,-292v20,0,37,16,37,36v0,20,-17,37,-37,37v-20,0,-36,-17,-36,-37v0,-20,16,-36,36,-36","w":108},"j":{"d":"87,-185r0,277r-65,0r0,-277r65,0xm54,-292v20,0,37,16,37,36v0,20,-17,37,-37,37v-20,0,-36,-17,-36,-37v0,-20,16,-36,36,-36","w":108},"k":{"d":"87,-299r0,181r68,-67r90,0r-93,86r99,99r-92,0r-72,-75r0,75r-65,0r0,-299r65,0","w":247},"l":{"d":"87,-299r0,299r-65,0r0,-299r65,0","w":108},"m":{"d":"87,-185v1,7,-2,18,1,23v28,-43,98,-38,121,6v13,-23,38,-35,63,-35v90,-1,57,111,63,191r-66,0r0,-88v0,-19,1,-51,-27,-51v-30,0,-31,29,-31,51r0,88r-66,0r0,-88v0,-21,0,-52,-29,-52v-29,0,-29,31,-29,52r0,88r-65,0r0,-185r65,0","w":356},"n":{"d":"87,-185v1,7,-2,18,1,24v15,-22,33,-30,59,-30v93,-2,65,107,69,191r-65,0r0,-90v0,-18,2,-49,-30,-49v-57,0,-26,87,-34,139r-65,0r0,-185r65,0","w":237},"o":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":238},"p":{"d":"85,-185v1,6,-2,16,1,21v49,-63,149,-5,149,72v0,77,-95,131,-150,74r0,110r-66,0r0,-277r66,0xm125,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"q":{"d":"226,-185r0,277r-65,0r0,-110v-55,57,-150,4,-150,-74v0,-78,98,-134,150,-72r0,-21r65,0xm121,-134v-27,0,-43,19,-43,42v0,23,16,41,43,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"r":{"d":"87,-185v1,10,-2,23,1,31v16,-26,37,-35,72,-33r0,63v-39,-18,-73,5,-73,49r0,75r-65,0r0,-185r65,0","w":163,"k":{"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u2019":-14,",":33,".":33,"f":-7,"\u00df":-7,"g":-6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"q":6,"t":-6,"z":-7,"\u017e":-7}},"s":{"d":"166,-179r-22,42v-16,-7,-49,-18,-56,3v0,13,20,15,29,17v31,6,54,20,54,54v0,79,-108,83,-162,48r24,-46v13,9,36,19,52,19v8,0,20,-4,20,-14v0,-14,-20,-16,-41,-21v-21,-5,-41,-15,-41,-48v2,-68,87,-79,143,-54","w":184},"t":{"d":"93,-131r0,131r-65,0r0,-131r-22,0r0,-54r22,0r0,-55r65,0r0,55r37,0r0,54r-37,0","w":129},"u":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112","w":237},"v":{"d":"68,-185r44,95r44,-95r74,0r-97,185r-42,0r-96,-185r73,0","w":224,"k":{",":43,".":27}},"w":{"d":"67,-185r46,100r47,-100r39,0r46,100r47,-100r72,0r-97,185r-42,0r-46,-101r-45,101r-43,0r-96,-185r72,0","w":358,"k":{",":50,".":33}},"x":{"d":"87,-100r-75,-85r83,0r33,38r33,-38r85,0r-76,85r92,100r-86,0r-48,-55r-47,55r-86,0","w":256},"y":{"d":"84,-25r-89,-160r75,0r50,95r48,-95r74,0r-148,277r-73,0","w":235,"k":{",":43,".":33}},"z":{"d":"112,-54r78,0r0,54r-187,0r87,-130r-76,0r0,-55r185,0","w":201},"{":{"d":"13,-82r0,-37v7,0,25,2,25,-19r0,-91v7,-55,30,-58,76,-55r0,43v-63,-8,10,136,-60,141v11,1,34,4,34,42r0,80v-3,13,7,24,26,21r0,43v-46,2,-76,1,-76,-54r0,-91v0,-25,-18,-23,-25,-23","w":126},"|":{"d":"131,-283r0,360r-54,0r0,-360r54,0","w":208},"}":{"d":"114,-119r0,37v-7,0,-25,-2,-25,23r0,91v-7,54,-30,57,-76,54r0,-43v47,5,18,-62,26,-101v0,-40,25,-39,34,-43v-11,-2,-34,-7,-34,-38r0,-81v3,-13,-7,-24,-26,-21r0,-43v46,-2,76,-1,76,55r0,91v0,21,18,19,25,19","w":126},"~":{"d":"81,-142v29,-1,58,37,85,38v10,0,18,-20,22,-30r41,35v-13,21,-33,56,-63,56v-33,0,-60,-38,-84,-38v-9,0,-19,18,-24,30r-40,-35v15,-19,33,-56,63,-56"},"\u00a1":{"d":"69,-192v23,0,42,20,42,43v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-43,42,-43xm35,-92r68,0r0,179r-68,0r0,-179","w":138},"\u00a2":{"d":"142,-4r0,-35v-50,-2,-91,-47,-91,-97v0,-54,38,-93,91,-98r0,-33r33,0r0,35r21,6r0,59v-25,-28,-77,-10,-77,30v0,39,51,59,77,31r0,58v-7,3,-14,5,-21,6r0,38r-33,0"},"\u00a3":{"d":"46,-135v-41,-67,19,-141,92,-141v71,0,99,31,100,102r-70,0v3,-27,-10,-47,-33,-47v-44,0,-39,60,-19,86r56,0r0,27r-51,0v4,12,5,35,0,48v21,7,71,30,76,-4r43,0v-2,40,-24,70,-66,70v-32,0,-63,-19,-95,-19v-9,0,-20,3,-23,13r-47,0v6,-31,28,-64,62,-64v7,-15,3,-31,-6,-44r-58,0r0,-27r39,0"},"\u2044":{"d":"96,-271r35,0r-157,271r-36,0","w":69},"\u00a5":{"d":"228,-161r-51,0r-20,31r71,0r0,27r-71,0r0,103r-67,0r0,-103r-72,0r0,-27r72,0r-21,-31r-51,0r0,-27r33,0r-55,-83r80,0r47,73r48,-73r80,0r-56,83r33,0r0,27"},"\u0192":{"d":"170,-182r39,0r-5,28r-39,0v-18,91,-19,226,-129,219r-38,-3r11,-59v28,6,53,5,62,-22v14,-41,19,-90,28,-135r-31,0r4,-28r32,0v6,-58,25,-119,88,-117v16,0,32,3,46,12r-10,57v-8,-6,-18,-11,-28,-11v-28,2,-25,35,-30,59"},"\u00a7":{"d":"103,-97r60,30v31,-45,-49,-57,-76,-77v-22,15,-6,42,16,47xm203,-212r-57,0v-2,-25,-44,-31,-46,-3v7,32,51,34,74,52v30,15,53,28,53,65v0,23,-12,43,-30,57v49,53,-9,124,-76,124v-50,0,-103,-27,-100,-84r66,0v-4,35,61,47,63,9v-21,-56,-130,-41,-129,-117v0,-23,13,-45,30,-59v-42,-47,6,-111,66,-111v43,0,84,19,86,67"},"\u00a4":{"d":"18,-55r23,-23v-23,-29,-24,-88,0,-117r-23,-25r22,-22r24,24v30,-24,89,-26,118,0r24,-24r23,22r-23,23v25,30,27,89,0,118r23,24r-21,23r-24,-23v-29,25,-91,25,-120,-1r-24,24xm125,-183v-27,0,-48,21,-48,48v0,27,21,45,48,45v27,0,47,-18,47,-45v0,-27,-20,-48,-47,-48"},"'":{"d":"14,-271r62,0r-10,119r-42,0","w":90},"\u201c":{"d":"160,-152r-61,0r66,-119r42,0xm68,-152r-61,0r66,-119r42,0","w":226},"\u00ab":{"d":"152,-115r46,62r-37,26r-62,-88r62,-89r36,25xm62,-115r46,62r-37,26r-62,-88r62,-89r36,25","w":217},"\u2039":{"d":"62,-115r46,62r-37,26r-62,-88r62,-89r36,25","w":127},"\u203a":{"d":"19,-53r47,-62r-46,-64r36,-25r62,89r-62,88","w":127},"\u2013":{"d":"0,-143r180,0r0,54r-180,0r0,-54","w":180},"\u2020":{"d":"94,-271r59,0r0,73r64,0r0,52r-64,0r0,211r-59,0r0,-211r-64,0r0,-52r64,0r0,-73"},"\u2021":{"d":"94,-271r60,0r0,66r63,0r0,52r-63,0r0,51r63,0r0,52r-63,0r0,114r-60,0r0,-114r-64,0r0,-52r64,0r0,-51r-64,0r0,-52r64,0r0,-66"},"\u00b7":{"d":"62,-134v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},"\u00b6":{"d":"95,-271r135,0r0,32r-23,0r0,300r-37,0r0,-299r-33,0r0,299r-37,0r0,-165v-42,-4,-77,-22,-83,-78v-5,-44,36,-89,78,-89"},"\u2022":{"d":"124,-204v39,0,68,31,68,68v0,37,-29,68,-68,68v-39,0,-68,-31,-68,-68v0,-37,29,-68,68,-68"},"\u201a":{"d":"54,-69r61,0r-66,119r-42,0","w":121},"\u201e":{"d":"54,-69r61,0r-66,119r-42,0xm146,-69r61,0r-66,119r-42,0","w":213},"\u201d":{"d":"66,-271r61,0r-66,119r-42,0xm158,-271r61,0r-66,119r-42,0","w":226},"\u00bb":{"d":"19,-53r47,-62r-46,-64r36,-25r62,89r-62,88xm109,-53r46,-62r-45,-64r36,-25r62,89r-62,88","w":217},"\u2026":{"d":"180,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42xm300,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42xm60,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":360},"\u2030":{"d":"81,-275v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-74,-23,-74,-67v0,-43,34,-66,74,-66xm81,-239v-17,0,-31,14,-31,31v0,17,14,30,31,30v17,0,31,-13,31,-30v0,-17,-14,-31,-31,-31xm270,-129v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-74,-23,-74,-67v0,-43,34,-66,74,-66xm270,-93v-17,0,-31,13,-31,30v0,17,14,31,31,31v17,0,31,-14,31,-31v0,-17,-14,-30,-31,-30xm445,-129v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-75,-23,-75,-67v0,-43,35,-66,75,-66xm445,-93v-17,0,-31,13,-31,30v0,17,14,31,31,31v17,0,30,-14,30,-31v0,-17,-13,-30,-30,-30xm237,-271r35,0r-158,271r-35,0","w":525},"\u00bf":{"d":"110,95v-49,0,-94,-38,-94,-85v0,-41,28,-65,65,-77r0,-26r66,0r0,70v-28,-7,-60,5,-61,34v0,15,11,27,26,27v17,0,25,-13,25,-28r72,0v0,55,-48,85,-99,85xm113,-192v23,0,42,20,42,43v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-43,42,-43","w":214},"`":{"d":"27,-266r40,-29r51,62r-29,21","w":144},"\u00b4":{"d":"118,-266r-62,54r-29,-21r51,-62","w":144},"\u02c6":{"d":"27,-239r78,-59r80,59r-28,30r-52,-40r-51,40","w":212},"\u02dc":{"d":"27,-222v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":197},"\u00af":{"d":"27,-271r163,0r0,39r-163,0r0,-39","w":217},"\u02d8":{"d":"27,-282r40,0v4,31,56,32,60,0r40,0v-2,40,-31,61,-70,61v-39,0,-68,-21,-70,-61","w":194},"\u02d9":{"d":"73,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":144},"\u00a8":{"d":"63,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm155,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":217},"\u02da":{"d":"27,-252v1,-57,110,-56,111,0v-1,57,-110,56,-111,0xm103,-252v-1,-21,-41,-21,-42,0v1,21,41,21,42,0","w":164},"\u00b8":{"d":"109,34r-54,51r-28,-17r47,-57","w":136},"\u02dd":{"d":"91,-293r-18,77r-33,0r5,-77r46,0xm154,-293r-18,77r-33,0r5,-77r46,0","w":194},"\u02db":{"d":"27,46v0,-25,22,-54,57,-45v-18,5,-33,43,-5,43v7,0,14,-3,20,-7r-8,33v-25,15,-64,6,-64,-24","w":126},"\u02c7":{"d":"27,-268r27,-30r51,40r52,-40r28,30r-80,59","w":212},"\u2014":{"d":"47,-143r266,0r0,54r-266,0r0,-54","w":360},"\u00c6":{"d":"169,-101r-29,-81r-31,81r60,0xm206,0r-18,-47r-98,0r-17,47r-74,0r104,-271r167,0r22,59r-90,0r17,46r89,0r22,59r-89,0r17,47r90,0r21,60r-163,0","w":369},"\u00aa":{"d":"75,-194v15,0,28,-12,28,-26v0,-14,-13,-25,-28,-25v-15,0,-27,11,-27,25v0,14,12,26,27,26xm101,-164v-1,-4,2,-10,-1,-12v-32,36,-102,2,-96,-44v-5,-47,63,-79,97,-44r0,-11r43,0r0,111r-43,0","w":147},"\u0141":{"d":"7,-84r0,-51r30,-19r0,-117r70,0r0,72r41,-26r0,52r-41,26r0,87r85,0r0,60r-155,0r0,-103","w":191,"k":{"T":20,"V":33,"W":20,"y":13,"\u00fd":13,"\u00ff":13,"Y":33,"\u00dd":33,"\u0178":33,"\u2019":27}},"\u00d8":{"d":"94,-99r104,-103v-64,-37,-146,35,-104,103xm227,-173r-106,103v61,40,143,-32,106,-103xm8,-14r32,-32v-19,-25,-31,-58,-31,-95v-2,-117,148,-178,240,-111r35,-34r28,29r-33,32v19,22,31,51,31,84v0,124,-145,191,-241,122r-33,33","w":319},"\u0152":{"d":"238,0r0,-30v-79,91,-229,7,-229,-106v0,-112,145,-192,229,-111r0,-24r152,0r0,59r-82,0r0,46r76,0r0,59r-76,0r0,47r82,0r0,60r-152,0xm159,-212v-42,0,-76,34,-76,76v0,42,34,77,76,77v42,0,75,-35,75,-77v0,-42,-33,-76,-75,-76","w":410},"\u00ba":{"d":"74,-279v39,0,72,21,72,59v0,38,-33,59,-72,59v-39,0,-72,-21,-72,-59v0,-38,33,-59,72,-59xm74,-244v-15,0,-27,10,-27,24v0,14,12,25,27,25v15,0,27,-11,27,-25v0,-14,-12,-24,-27,-24","w":147},"\u00e6":{"d":"195,-119r76,0v-5,-38,-70,-38,-76,0xm134,-58v-4,-26,-60,-28,-63,-1v3,28,57,27,63,1xm328,-57v-11,67,-132,89,-168,27v-18,23,-46,36,-75,36v-35,0,-77,-18,-77,-59v0,-62,74,-74,124,-52v3,-51,-60,-40,-95,-28r0,-49v45,-14,99,-16,123,24v15,-22,43,-33,69,-33v66,0,103,42,101,110r-137,0v-6,42,54,55,72,24r63,0","w":338},"\u0131":{"d":"87,-185r0,185r-65,0r0,-185r65,0","w":108},"\u0142":{"d":"33,0r0,-119r-30,18r0,-44r30,-19r0,-135r66,0r0,96r30,-18r0,45r-30,18r0,158r-66,0","w":131},"\u00f8":{"d":"80,-77r55,-54v-35,-12,-69,18,-55,54xm159,-108r-55,55v37,10,66,-17,55,-55xm8,-6r23,-23v-15,-16,-23,-37,-23,-63v-2,-86,101,-121,172,-84r26,-26r25,23r-24,23v14,16,23,38,23,64v2,85,-100,120,-172,84r-25,25","w":238},"\u0153":{"d":"222,-119r76,0v-5,-38,-70,-38,-76,0xm119,-134v-23,0,-42,19,-42,42v0,23,19,41,42,41v23,0,42,-18,42,-41v0,-23,-19,-42,-42,-42xm358,-57v-10,68,-130,86,-169,31v-55,65,-181,28,-181,-66v0,-94,120,-129,181,-71v61,-62,186,-18,171,82r-138,0v-5,42,55,55,73,24r63,0","w":367},"\u00df":{"d":"22,-159v2,-49,-9,-93,22,-120v53,-46,163,-26,161,56v0,26,-12,42,-32,57v63,15,69,107,25,148v-24,22,-56,25,-92,24r0,-56v27,1,49,-15,49,-43v0,-27,-23,-46,-49,-44r0,-52v20,1,36,-8,36,-30v0,-17,-11,-27,-28,-27v-26,0,-27,21,-27,41r0,205r-65,0r0,-107r-19,0r0,-52r19,0","w":234},"\u00b9":{"d":"59,-240r-26,0r0,-36r71,0r0,163r-45,0r0,-127","w":148},"\u00ac":{"d":"162,-51r0,-58r-131,0r0,-54r185,0r0,112r-54,0"},"\u00b5":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v-1,85,-91,95,-131,61r0,104r-65,0r0,-277","w":237},"\u2122":{"d":"324,-271r0,145r-32,0r-1,-117r-42,117r-19,0r-42,-117r0,117r-32,0r0,-145r51,0r33,86r33,-86r51,0xm138,-271r0,28r-44,0r0,117r-35,0r0,-117r-44,0r0,-28r123,0","w":338},"\u00d0":{"d":"94,-212r0,45r39,0r0,56r-39,0r0,51v54,3,94,-17,94,-76v0,-55,-38,-80,-94,-76xm23,0r0,-111r-30,0r0,-56r30,0r0,-104r91,0v86,0,147,56,147,135v0,80,-64,136,-146,136r-92,0","w":270},"\u00bd":{"d":"61,-236r-25,0r0,-35r71,0r0,162r-46,0r0,-127xm196,-107v1,-39,28,-62,69,-62v66,0,92,79,39,110r-27,23r57,0r0,36r-141,0r72,-72v17,-14,34,-61,0,-61v-15,0,-20,11,-19,26r-50,0xm222,-271r35,0r-157,271r-36,0","w":370},"\u00b1":{"d":"96,-184r0,-51r54,0r0,51r66,0r0,54r-66,0r0,51r-54,0r0,-51r-65,0r0,-54r65,0xm31,-54r185,0r0,54r-185,0r0,-54"},"\u00de":{"d":"23,0r0,-271r71,0r0,43v78,-5,135,13,136,89v1,80,-54,97,-136,92r0,47r-71,0xm94,-171r0,67v31,0,62,4,62,-33v0,-38,-30,-34,-62,-34","w":237},"\u00bc":{"d":"271,-66v-1,-20,2,-45,-1,-63r-41,63r42,0xm232,-271r35,0r-157,271r-35,0xm61,-236r-25,0r0,-35r71,0r0,162r-46,0r0,-127xm313,-66r21,0r0,32r-21,0r0,34r-42,0r0,-34r-86,0r0,-27r68,-102r60,0r0,97","w":370},"\u00f7":{"d":"31,-120r185,0r0,54r-185,0r0,-54xm123,-46v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26v0,-14,11,-26,25,-26xm123,-191v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26v0,-14,11,-26,25,-26"},"\u00a6":{"d":"131,-58r0,90r-54,0r0,-90r54,0xm131,-238r0,90r-54,0r0,-90r54,0","w":208},"\u00b0":{"d":"126,-224v0,30,-24,53,-54,53v-30,0,-54,-23,-54,-53v0,-30,24,-55,54,-55v30,0,54,25,54,55xm95,-225v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23v0,13,10,24,23,24v13,0,23,-11,23,-24","w":144},"\u00fe":{"d":"85,-299r1,135v49,-63,149,-5,149,72v0,77,-95,131,-150,74r0,110r-66,0r0,-391r66,0xm125,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"\u00be":{"d":"289,-66v-1,-20,2,-45,-1,-63r-41,63r42,0xm263,-271r35,0r-157,271r-36,0xm331,-66r21,0r0,32r-21,0r0,34r-42,0r0,-34r-86,0r0,-27r68,-102r60,0r0,97xm65,-155v1,13,10,23,24,23v14,0,25,-9,25,-22v0,-15,-16,-25,-33,-21r0,-28v15,1,25,-5,25,-18v0,-10,-8,-16,-18,-16v-12,0,-19,9,-19,19r-42,0v-1,-63,122,-74,122,-6v0,13,-6,26,-19,33v59,25,19,95,-39,95v-37,0,-73,-25,-73,-59r47,0","w":370},"\u00b2":{"d":"141,-224v0,37,-34,56,-56,75r58,0r0,36r-142,0r72,-72v18,-14,35,-61,0,-61v-15,0,-21,13,-18,26r-51,0v1,-37,27,-62,69,-62v37,0,68,22,68,58","w":148},"\u00ae":{"d":"144,7v-80,0,-143,-63,-143,-142v0,-80,63,-144,143,-144v79,0,143,64,143,144v0,79,-64,142,-143,142xm144,-27v61,0,109,-45,109,-108v0,-64,-48,-110,-109,-110v-62,0,-109,46,-109,110v0,63,47,108,109,108xm176,-126r36,63r-36,0r-33,-63r-23,0r0,63r-33,0r0,-148v56,5,131,-20,130,45v0,27,-15,38,-41,40xm120,-148v27,-3,69,11,66,-22v-2,-24,-42,-13,-66,-15r0,37","w":288},"\u2212":{"d":"31,-120r185,0r0,54r-185,0r0,-54"},"\u00f0":{"d":"15,-268r38,-37v38,18,47,24,57,30r46,-25r23,27r-38,20v46,38,89,77,89,146v0,80,-56,113,-113,113v-46,0,-109,-29,-109,-98v0,-67,58,-102,119,-92v-12,-14,-25,-29,-40,-41r-47,25r-24,-25r39,-21v-13,-8,-26,-16,-40,-22xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":238},"\u00d7":{"d":"86,-92r-55,-55r38,-38r54,55r54,-55r38,38r-53,55r54,54r-39,38r-54,-54r-54,54r-38,-38"},"\u00b3":{"d":"1,-166r47,0v0,13,11,23,25,23v14,0,24,-9,24,-22v0,-15,-16,-24,-32,-20r0,-28v14,1,25,-6,25,-18v0,-10,-8,-17,-18,-17v-12,0,-19,9,-19,19r-43,0v-1,-64,122,-74,122,-6v0,13,-5,26,-18,33v60,26,18,95,-40,95v-37,0,-72,-26,-73,-59","w":148},"\u00a9":{"d":"144,7v-80,0,-143,-63,-143,-142v0,-80,63,-144,143,-144v79,0,143,64,143,144v0,79,-64,142,-143,142xm144,-27v61,0,109,-45,109,-108v0,-64,-48,-110,-109,-110v-62,0,-109,46,-109,110v0,63,47,108,109,108xm217,-165r-33,0v-18,-53,-79,-21,-79,27v0,27,17,56,45,56v17,0,33,-11,34,-28r33,0v-18,93,-153,57,-146,-27v-11,-89,132,-113,146,-28","w":288},"\u00c1":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm193,-342r-61,54r-29,-21r50,-62","w":281},"\u00c2":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm62,-315r78,-59r80,59r-28,30r-52,-40r-52,40","w":281},"\u00c4":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm95,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm187,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":281},"\u00c0":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm88,-342r40,-29r51,62r-29,21","w":281},"\u00c5":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm85,-322v0,-57,110,-57,111,-1v0,57,-110,57,-111,1xm162,-323v-1,-21,-41,-21,-42,0v1,22,41,22,42,0","w":281},"\u00c3":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm69,-298v-2,-29,14,-55,40,-56v26,-2,64,28,73,-1r30,0v-2,26,-15,57,-46,57v-22,0,-60,-30,-67,0r-30,0","w":281},"\u00c7":{"d":"9,-135v0,-100,109,-178,208,-130r0,85v-37,-55,-134,-29,-134,45v0,73,95,98,134,45r0,85v-102,42,-208,-31,-208,-130xm169,34r-55,51r-28,-17r47,-57","w":237},"\u00c9":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59xm144,-342r-61,54r-29,-21r50,-62","w":198},"\u00ca":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59xm20,-315r78,-59r80,59r-28,30r-52,-40r-52,40","w":198},"\u00cb":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59xm53,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm145,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":198},"\u00c8":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59xm54,-342r40,-29r50,62r-29,21","w":198},"\u00cd":{"d":"94,-271r0,271r-71,0r0,-271r71,0xm109,-342r-61,54r-30,-21r51,-62","w":116},"\u00ce":{"d":"94,-271r0,271r-71,0r0,-271r71,0xm-15,-315r78,-59r80,59r-28,30r-52,-40r-52,40","w":116},"\u00cf":{"d":"94,-271r0,271r-71,0r0,-271r71,0xm12,-364v19,0,36,16,36,35v0,20,-17,36,-36,36v-20,0,-35,-16,-35,-36v0,-19,15,-35,35,-35xm104,-364v19,0,36,16,36,35v0,20,-17,36,-36,36v-20,0,-35,-16,-35,-36v0,-19,15,-35,35,-35","w":116},"\u00cc":{"d":"94,-271r0,271r-71,0r0,-271r71,0xm8,-342r40,-29r50,62r-29,21","w":116},"\u00d1":{"d":"23,0r0,-271r71,0r130,166r0,-166r70,0r0,271r-70,0r-130,-166r0,166r-71,0xm87,-298v-2,-29,14,-55,40,-56v26,-2,64,28,73,-1r30,0v-2,26,-15,57,-46,57v-22,0,-60,-30,-67,0r-30,0","w":317},"\u00d3":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm212,-342r-61,54r-29,-21r50,-62","w":319},"\u00d4":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm81,-315r78,-59r80,59r-28,30r-52,-40r-52,40","w":319},"\u00d6":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm114,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm206,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":319},"\u00d2":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm107,-342r40,-29r51,62r-29,21","w":319},"\u00d5":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm88,-298v-2,-29,14,-55,40,-56v26,-2,64,28,73,-1r30,0v-2,26,-15,57,-46,57v-22,0,-60,-30,-67,0r-30,0","w":319},"\u0160":{"d":"211,-91v0,100,-129,125,-200,67r30,-57v18,15,39,28,63,28v17,0,34,-8,34,-27v0,-20,-28,-27,-43,-31v-44,-13,-73,-24,-73,-77v0,-92,110,-112,178,-68r-28,54v-13,-11,-30,-18,-47,-18v-13,0,-30,8,-30,23v0,23,30,25,49,31v38,11,67,31,67,75xm32,-344r26,-30r52,40r52,-40r28,30r-80,59","w":221},"\u00da":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142xm193,-342r-62,54r-29,-21r51,-62","w":280},"\u00db":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142xm61,-315r78,-59r80,59r-28,30r-52,-40r-52,40","w":280},"\u00dc":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142xm94,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm186,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":280},"\u00d9":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142xm87,-342r40,-29r51,62r-29,21","w":280},"\u00dd":{"d":"93,-130r-100,-141r85,0r51,73r50,-73r85,0r-100,141r0,130r-71,0r0,-130xm188,-342r-61,54r-29,-21r50,-62","w":257,"k":{"v":20,"A":43,"\u00c6":43,"\u00c1":43,"\u00c2":43,"\u00c4":43,"\u00c0":43,"\u00c5":43,"\u00c3":43,",":43,".":43,"o":43,"\u00f8":43,"\u0153":43,"\u00f3":43,"\u00f4":43,"\u00f6":43,"\u00f2":43,"\u00f5":43,"q":33,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"e":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00e8":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u00f9":27,":":27,"-":33,";":43,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7,"p":27}},"\u0178":{"d":"93,-130r-100,-141r85,0r51,73r50,-73r85,0r-100,141r0,130r-71,0r0,-130xm86,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm178,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-35,-16,-35,-36v0,-19,15,-35,35,-35","w":257,"k":{"v":20,"A":43,"\u00c6":43,"\u00c1":43,"\u00c2":43,"\u00c4":43,"\u00c0":43,"\u00c5":43,"\u00c3":43,",":43,".":43,"o":43,"\u00f8":43,"\u0153":43,"\u00f3":43,"\u00f4":43,"\u00f6":43,"\u00f2":43,"\u00f5":43,"q":33,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e4":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"e":33,"\u00e9":33,"\u00ea":33,"\u00eb":33,"\u00e8":33,"u":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u00f9":27,":":27,"-":33,";":43,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7,"p":27}},"\u017d":{"d":"123,-60r114,0r0,60r-233,0r128,-212r-106,0r0,-59r225,0xm52,-344r26,-30r52,40r52,-40r28,30r-80,59","w":254},"\u00e1":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm175,-266r-61,54r-29,-21r50,-62","w":245},"\u00e2":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm44,-239r78,-59r80,59r-28,30r-52,-40r-52,40","w":245},"\u00e4":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm77,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm169,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":245},"\u00e0":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm77,-266r40,-29r51,62r-29,21","w":245},"\u00e5":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm68,-252v0,-57,109,-55,110,0v-1,57,-109,56,-110,0xm144,-252v-1,-21,-41,-21,-42,0v1,21,41,21,42,0","w":245},"\u00e3":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm51,-222v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":245},"\u00e7":{"d":"155,-180r0,55v-28,-26,-79,-10,-79,32v0,42,51,60,79,33r0,56v-68,31,-147,-14,-147,-86v0,-74,79,-124,147,-90xm128,34r-54,51r-28,-17r47,-57","w":173},"\u00e9":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm209,-57v-9,41,-48,62,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0xm164,-266r-61,54r-30,-21r51,-62","w":219},"\u00ea":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm209,-57v-9,41,-48,62,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0xm31,-239r78,-59r80,59r-28,30r-52,-40r-52,40","w":219},"\u00eb":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm209,-57v-9,41,-48,62,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0xm64,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm156,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":219},"\u00e8":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm209,-57v-9,41,-48,62,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0xm55,-266r40,-29r51,62r-29,21","w":219},"\u00ed":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm105,-266r-61,54r-30,-21r51,-62","w":108},"\u00ee":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm-25,-239r79,-59r79,59r-28,30r-51,-40r-52,40","w":108},"\u00ef":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm8,-288v19,0,36,16,36,35v0,20,-17,36,-36,36v-20,0,-35,-16,-35,-36v0,-19,15,-35,35,-35xm100,-288v19,0,36,16,36,35v0,20,-17,36,-36,36v-20,0,-35,-16,-35,-36v0,-19,15,-35,35,-35","w":108},"\u00ec":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm4,-266r40,-29r50,62r-29,21","w":108},"\u00f1":{"d":"87,-185v1,7,-2,18,1,24v15,-22,33,-30,59,-30v93,-2,65,107,69,191r-65,0r0,-90v0,-18,2,-49,-30,-49v-57,0,-26,87,-34,139r-65,0r0,-185r65,0xm48,-222v-5,-27,14,-55,39,-56v25,-1,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-29,0","w":237},"\u00f3":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm174,-266r-62,54r-29,-21r51,-62","w":238},"\u00f4":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm40,-239r78,-59r80,59r-28,30r-52,-40r-51,40","w":238},"\u00f6":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm73,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm165,-288v19,0,36,16,36,35v0,20,-17,36,-36,36v-20,0,-35,-16,-35,-36v0,-19,15,-35,35,-35","w":238},"\u00f2":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm65,-266r40,-29r51,62r-30,21","w":238},"\u00f5":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm48,-222v-3,-30,13,-55,39,-56v26,-2,65,29,74,-1r30,0v-2,26,-16,57,-47,57v-22,0,-59,-29,-67,0r-29,0","w":238},"\u0161":{"d":"166,-179r-22,42v-16,-7,-49,-18,-56,3v0,13,20,15,29,17v31,6,54,20,54,54v0,79,-108,83,-162,48r24,-46v13,9,36,19,52,19v8,0,20,-4,20,-14v0,-14,-20,-16,-41,-21v-21,-5,-41,-15,-41,-48v2,-68,87,-79,143,-54xm13,-268r27,-30r52,40r52,-40r27,30r-79,59","w":184},"\u00fa":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112xm175,-266r-62,54r-29,-21r51,-62","w":237},"\u00fb":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112xm40,-239r78,-59r80,59r-28,30r-52,-40r-52,40","w":237},"\u00fc":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112xm73,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm165,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":237},"\u00f9":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112xm63,-266r40,-29r50,62r-29,21","w":237},"\u00fd":{"d":"84,-25r-89,-160r75,0r50,95r48,-95r74,0r-148,277r-73,0xm177,-266r-61,54r-29,-21r51,-62","w":235,"k":{",":43,".":33}},"\u00ff":{"d":"84,-25r-89,-160r75,0r50,95r48,-95r74,0r-148,277r-73,0xm77,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm169,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-35,-16,-35,-36v0,-19,15,-35,35,-35","w":235,"k":{",":43,".":33}},"\u017e":{"d":"112,-54r78,0r0,54r-187,0r87,-130r-76,0r0,-55r185,0xm22,-268r26,-30r52,40r52,-40r28,30r-80,59","w":201},"\u2206":{"d":"10,0r0,-34r97,-254r77,0r94,253r0,35r-268,0xm77,-49r131,0r-43,-110r-23,-69v-4,13,-13,43,-21,64","w":288},"\u2126":{"d":"15,-49v18,-2,44,4,58,-2v-25,-21,-52,-57,-52,-107v0,-68,53,-129,136,-129v146,0,168,174,81,236r0,2r59,0r0,49r-122,0r0,-37v27,-17,51,-49,51,-111v0,-49,-25,-89,-69,-89v-42,0,-71,38,-71,92v0,55,24,93,52,108r0,37r-123,0r0,-49","w":312},"\u03bc":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v-1,85,-91,95,-131,61r0,104r-65,0r0,-277","w":237},"\u03c0":{"d":"257,-161r-28,0v1,50,-3,123,5,161r-62,0v-12,-32,-5,-113,-7,-161r-54,0v-1,43,-11,122,-25,161r-63,0v14,-46,26,-119,26,-161v-18,0,-32,0,-42,3r-6,-40v49,-28,182,-10,261,-15","w":267},"\u20ac":{"d":"226,-266r0,56v-9,-9,-28,-18,-57,-18v-37,0,-55,17,-61,46r103,0r-13,37r-94,0v-1,6,-1,16,0,22r85,0r-14,37r-66,0v1,51,90,53,117,26r0,56v-9,6,-31,14,-67,14v-67,0,-106,-31,-118,-96r-34,0r14,-37r16,0r0,-22r-30,0r14,-37r20,0v11,-59,44,-100,118,-100v33,0,58,10,67,16"},"\u2113":{"d":"198,-77r25,26v-35,85,-168,80,-176,-6v-7,5,-13,11,-21,16r-16,-33v13,-10,25,-18,36,-27r0,-95v0,-75,34,-109,81,-109v45,0,66,34,66,75v0,48,-32,91,-86,139v-3,31,11,51,36,51v22,0,42,-19,55,-37xm107,-202r0,56v27,-29,45,-61,45,-85v0,-19,-6,-31,-21,-31v-12,0,-24,13,-24,60","w":231},"\u212e":{"d":"73,-50v42,69,162,66,209,4r23,0v-29,34,-77,56,-129,56v-90,0,-162,-65,-162,-146v0,-81,72,-146,162,-146v91,1,165,65,163,150r-266,2r0,80xm278,-139v1,-27,5,-70,-3,-93v-50,-54,-149,-53,-198,2v-10,21,-1,60,-4,88v0,1,2,3,3,3r202,0","w":353},"\u2202":{"d":"44,-244r-18,-45v13,-9,40,-24,84,-24v68,0,125,55,125,155v0,100,-50,167,-127,167v-64,0,-94,-56,-94,-97v0,-64,41,-107,95,-107v36,0,56,24,64,33v3,-53,-22,-99,-71,-101v-27,0,-47,11,-58,19xm115,-41v29,0,48,-41,52,-73v-19,-57,-90,-31,-90,28v0,25,16,45,38,45","w":254},"\u220f":{"d":"306,-227r-44,0r0,266r-62,0r0,-266r-85,0r0,266r-62,0r0,-266r-44,0r0,-55r297,0r0,55","w":315},"\u2211":{"d":"238,39r-229,0r0,-38r101,-122r-97,-119r0,-42r217,0r0,52r-131,1r82,99r-92,113r149,0r0,56","w":244},"\u2219":{"d":"62,-134v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},"\u221a":{"d":"267,-339r-99,396r-50,0r-64,-174r-31,13r-10,-33r78,-32r43,124v4,13,5,28,10,37v2,-10,3,-25,7,-40r72,-291r44,0","w":259},"\u221e":{"d":"240,-188v37,0,70,28,67,72v-6,87,-98,102,-144,27v-22,27,-43,47,-76,47v-35,0,-68,-28,-68,-72v0,-44,31,-74,71,-74v31,0,54,17,75,45v16,-18,37,-45,75,-45xm91,-75v22,0,39,-20,54,-38v-17,-23,-29,-43,-55,-43v-22,0,-37,17,-37,42v0,21,16,39,38,39xm239,-75v48,-2,43,-81,-3,-81v-24,0,-41,25,-54,40v24,31,37,41,57,41","w":326},"\u222b":{"d":"57,-238v0,-83,36,-125,106,-108r-6,41v-42,-12,-47,23,-47,74v0,114,51,342,-103,296r7,-42v39,12,49,-11,49,-64v0,-76,-6,-126,-6,-197","w":171},"\u2248":{"d":"79,-189v35,-1,53,30,80,30v16,0,27,-11,39,-29r22,21v-15,27,-37,43,-60,43v-30,0,-55,-29,-84,-30v-18,0,-29,15,-40,29r-22,-20v13,-24,38,-44,65,-44xm79,-108v37,-1,51,30,80,30v17,0,26,-12,39,-30r22,21v-15,26,-37,43,-61,43v-28,0,-55,-29,-82,-30v-19,0,-30,15,-41,30r-22,-21v13,-24,38,-43,65,-43","w":235},"\u2260":{"d":"175,-211r-16,35r56,0r0,35r-69,0r-24,54r93,0r0,34r-107,0r-21,48r-27,-12r16,-36r-56,0r0,-34r70,0r23,-54r-93,0r0,-35r107,0r20,-47","w":235},"\u2264":{"d":"215,-43r-193,-92r0,-37r192,-92r0,40r-157,71r158,71r0,39xm216,8r-195,0r0,-36r195,0r0,36","w":235},"\u2265":{"d":"22,-264r193,92r0,38r-192,91r0,-39r157,-72r-158,-70r0,-40xm215,8r-194,0r0,-36r194,0r0,36","w":235},"\u25ca":{"d":"240,-141r-87,162r-49,0r-84,-162r86,-161r50,0xm185,-139v-18,-39,-41,-73,-54,-116r-56,113v18,38,40,73,54,115","w":259},"\u00a0":{"w":123},"\u00ad":{"d":"19,-143r103,0r0,54r-103,0r0,-54","w":141},"\u02c9":{"d":"27,-271r163,0r0,39r-163,0r0,-39","w":217},"\u03a9":{"d":"15,-49v18,-2,44,4,58,-2v-25,-21,-52,-57,-52,-107v0,-68,53,-129,136,-129v146,0,168,174,81,236r0,2r59,0r0,49r-122,0r0,-37v27,-17,51,-49,51,-111v0,-49,-25,-89,-69,-89v-42,0,-71,38,-71,92v0,55,24,93,52,108r0,37r-123,0r0,-49","w":312},"\u2215":{"d":"96,-271r35,0r-157,271r-36,0","w":69}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1993 Adobe Systems Incorporated.  All Rights
 * Reserved.Futura is a registered trademark of Fundicion Tipografica Neufville S.
 * A.
 * 
 * Description:
 *  Copyright (c) 1987, 1991, 1993 Fundicion Tipografica Neufville S. A.  This
 * record material and the data recorded thereon is the property of  Fundicion
 * Tipografica Neufville S. A. and Adobe Systems Incorporated,  or its licensors,
 * and may not be reproduced, used, displayed, modified,  disclosed or transferred
 * in any manner without the express written  approval of Fundicion Tipografica
 * Neufville S. A. and Adobe Systems  Incorporated.
 * 
 * Vendor URL:
 * www.linotypelibrary.com
 */
Cufon.registerFont({"w":578,"face":{"font-family":"Futura LT Medium","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 4 2 0 0 2 0 3","ascent":"800","descent":"-200","bbox":"-50 -1020.07 1113 268.097","underline-thickness":"75","underline-position":"-113","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":289},"!":{"d":"116,-754r90,0r0,580r-90,0r0,-580xm103,-42v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58","w":321},"\"":{"d":"349,-754r-18,328r-62,0r-18,-328r98,0xm188,-754r-18,328r-62,0r-18,-328r98,0","w":439},"#":{"d":"218,-290r123,0r27,-154r-123,0xm294,-718r-36,194r124,0r35,-194r79,0r-35,194r92,0r0,80r-107,0r-27,154r101,0r0,80r-117,0r-38,210r-76,0r37,-210r-123,0r-40,210r-75,0r37,-210r-100,0r0,-80r115,0r27,-154r-105,0r0,-80r119,0r36,-194r77,0"},"$":{"d":"283,-683v-76,3,-126,116,-65,171v18,16,40,30,65,40r0,-211xm114,-508v-44,-132,46,-251,169,-262r0,-90r50,0r0,90v82,8,138,54,171,116r-79,45v-21,-39,-47,-60,-92,-74r0,235v95,45,195,95,195,230v0,127,-83,211,-195,234r0,95r-50,0r0,-95v-133,-9,-209,-92,-233,-210r90,-19v18,84,52,130,143,141r0,-300v-65,-36,-145,-62,-169,-136xm333,-78v88,-12,140,-145,73,-218v-19,-22,-46,-39,-73,-53r0,271"},"%":{"d":"632,-155v0,-68,-49,-112,-116,-112v-67,0,-116,44,-116,112v0,67,49,111,116,111v67,0,116,-44,116,-111xm340,-155v0,-105,72,-172,176,-172v104,0,176,68,176,172v0,103,-73,171,-176,171v-103,0,-176,-68,-176,-171xm597,-744r-440,760r-46,-25r441,-761xm309,-598v0,-68,-49,-112,-116,-112v-67,0,-116,44,-116,112v0,67,49,111,116,111v67,0,116,-44,116,-111xm17,-598v0,-105,72,-172,176,-172v104,0,176,68,176,172v0,103,-73,171,-176,171v-103,0,-176,-68,-176,-171","w":708},"&":{"d":"497,-613v0,99,-78,142,-137,188r157,190r88,-102r60,62r-92,108r135,167r-116,0r-82,-102v-61,78,-185,150,-315,102v-94,-35,-172,-144,-131,-270v27,-82,104,-121,168,-170v-36,-41,-83,-93,-83,-165v0,-106,68,-165,174,-165v101,0,174,56,174,157xm321,-696v-66,0,-108,74,-70,131v16,26,37,51,56,75v41,-33,98,-55,102,-124v3,-52,-37,-82,-88,-82xm155,-257v-53,104,58,222,176,180v51,-18,87,-56,123,-91r-167,-204v-48,33,-105,63,-132,115","w":692},"'":{"d":"188,-754r-18,328r-62,0r-18,-328r98,0","w":277},"(":{"d":"161,193v-137,-252,-135,-753,0,-1002r74,55v-114,229,-114,663,0,892","w":292},")":{"d":"57,138v114,-229,114,-663,0,-892r74,-55v137,252,135,753,0,1002","w":292},"*":{"d":"253,-754r0,95r81,-48r35,59r-85,50r85,50r-35,58r-81,-50r0,96r-69,0r0,-97r-87,49r-34,-57r85,-49r-84,-50r31,-57r89,49r0,-98r69,0","w":432},"+":{"d":"332,-512r0,213r213,0r0,86r-213,0r0,213r-86,0r0,-213r-213,0r0,-86r213,0r0,-213r86,0"},",":{"d":"242,-88r-133,267r-55,-23r110,-275","w":289},"-":{"d":"276,-358r0,75r-219,0r0,-75r219,0","w":332},".":{"d":"87,-42v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58","w":289},"\/":{"d":"520,-836r-417,962r-71,-32r416,-962","w":551},"0":{"d":"373,-656v-41,-45,-125,-43,-168,0v-123,123,-117,487,24,572v229,82,275,-288,197,-489v-13,-33,-32,-60,-53,-83xm444,-702v205,227,106,839,-242,700v-263,-105,-231,-772,87,-768v70,0,120,29,155,68"},"1":{"d":"123,-668r52,-86r169,0r0,754r-90,0r0,-668r-131,0"},"2":{"d":"55,-546v18,-133,92,-224,239,-224v165,0,277,138,223,308v-9,27,-24,52,-41,73r-248,303r304,0r0,86r-487,0r353,-435v20,-29,44,-59,44,-105v0,-87,-62,-144,-148,-144v-85,0,-135,58,-145,138r-94,0"},"3":{"d":"434,-214v0,-96,-58,-151,-159,-146r0,-78v87,-1,148,-33,148,-121v0,-80,-51,-127,-131,-129v-70,-2,-116,46,-125,108r-93,0v17,-119,90,-190,221,-190v130,0,218,73,218,203v0,83,-38,138,-96,170v69,30,106,97,107,187v1,174,-156,263,-326,212v-81,-24,-138,-88,-145,-188r91,0v12,74,65,120,146,120v89,0,144,-59,144,-148"},"4":{"d":"379,-503r-2,0r-212,311r214,0r0,-311xm555,-192r0,82r-86,0r0,110r-90,0r0,-110r-372,0r462,-676r0,594r86,0"},"5":{"d":"269,-434v-60,0,-113,29,-141,67r-18,0r116,-387r302,0r0,86r-237,0r-47,155v185,-19,295,86,295,261v0,168,-111,268,-279,268v-113,0,-188,-56,-230,-132r70,-66v26,63,84,112,167,112v111,0,182,-75,182,-185v0,-106,-74,-179,-180,-179"},"6":{"d":"144,-286v-46,109,35,218,146,218v93,0,160,-61,160,-154v0,-113,-108,-193,-220,-149v-39,15,-70,47,-86,85xm248,-450v186,-73,346,120,272,315v-41,108,-181,185,-323,132v-111,-42,-201,-187,-133,-327v16,-32,36,-64,58,-94r257,-346r68,46r-201,272"},"7":{"d":"47,-668r0,-86r543,0r-470,770r-73,-45r390,-639r-390,0"},"8":{"d":"417,-560v0,-77,-52,-130,-128,-130v-77,0,-128,53,-128,130v0,72,56,128,128,128v72,0,128,-56,128,-128xm289,16v-142,0,-236,-83,-236,-226v0,-95,47,-155,119,-181v-57,-31,-99,-87,-99,-169v0,-130,86,-210,216,-210v130,0,216,80,216,210v0,82,-42,138,-99,169v72,26,119,86,119,181v0,143,-94,226,-236,226xm435,-210v0,-86,-61,-142,-146,-142v-86,0,-146,56,-146,142v0,84,62,142,146,142v84,0,146,-58,146,-142"},"9":{"d":"142,-528v0,95,67,158,160,158v97,0,160,-63,160,-158v0,-91,-63,-158,-154,-158v-97,0,-166,62,-166,158xm344,-304v-188,64,-346,-120,-272,-315v41,-108,181,-185,323,-132v111,42,201,187,133,327v-16,32,-36,64,-58,94r-257,346r-68,-47r201,-271"},":":{"d":"87,-424v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58xm87,-42v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58","w":289},";":{"d":"134,-424v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58xm234,-88r-133,267r-55,-23r110,-275","w":289},"<":{"d":"545,-404r-384,148r384,148r0,94r-512,-207r0,-70r512,-207r0,94"},"=":{"d":"545,-213r0,86r-512,0r0,-86r512,0xm545,-385r0,86r-512,0r0,-86r512,0"},">":{"d":"33,-498r512,207r0,70r-512,207r0,-94r384,-148r-384,-148r0,-94"},"?":{"d":"171,-42v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58xm229,-268v42,0,73,-35,71,-77r91,0v-4,97,-68,153,-162,161v-157,13,-218,-223,-81,-288v65,-31,166,-32,171,-124v3,-55,-39,-90,-92,-89v-61,1,-99,55,-80,118r-94,0v-15,-126,60,-199,177,-203v130,-4,211,116,166,245v-30,87,-142,91,-214,136v-50,31,-14,121,47,121","w":453},"@":{"d":"395,-577v65,0,99,27,133,71r14,-62r71,0r-55,285v-3,25,-8,58,19,58v72,-19,108,-104,108,-192v0,-170,-102,-273,-270,-273v-143,0,-231,85,-276,191v-31,76,-30,176,3,249v48,107,143,183,290,186v79,1,144,-14,186,-48r75,60v-99,62,-287,96,-421,38v-135,-59,-236,-176,-236,-363v0,-185,99,-304,232,-363v132,-59,306,-21,385,57v57,57,111,125,112,230v1,132,-57,236,-139,281v-59,32,-126,22,-131,-44v-34,32,-72,65,-136,62v-103,-5,-168,-79,-168,-185v0,-133,71,-238,204,-238xm269,-346v-4,86,76,135,157,102v67,-28,106,-157,56,-222v-18,-23,-46,-33,-81,-33v-85,0,-128,68,-132,153","w":800},"A":{"d":"352,-580r-134,305r268,0xm179,-189r-86,189r-101,0r360,-786r360,786r-101,0r-86,-189r-346,0","w":703,"k":{"\u2019":80,"y":20,"w":20,"v":20,"Y":100,"W":100,"V":120,"T":80}},"B":{"d":"502,-211v0,150,-113,211,-262,211r-176,0r0,-754v197,-7,370,13,368,207v-1,71,-37,116,-81,145v89,20,151,88,151,191xm408,-217v0,-121,-124,-131,-250,-128r0,261v131,5,250,-6,250,-133xm344,-546v0,-107,-78,-128,-186,-124r0,250v108,4,186,-18,186,-126","w":535},"C":{"d":"275,-740v108,-47,260,-36,346,21r0,109v-68,-66,-209,-96,-317,-50v-130,55,-226,230,-158,402v42,105,132,188,274,188v85,0,152,-33,201,-78r0,111v-88,55,-242,72,-351,23v-134,-60,-240,-174,-240,-359v0,-188,108,-307,245,-367","w":661},"D":{"d":"549,-377v0,-223,-162,-296,-391,-291r0,582v229,5,391,-68,391,-291xm643,-381v-4,258,-170,375,-426,381r-153,0r0,-754v185,-6,352,4,454,92v72,62,127,151,125,281","w":665},"E":{"d":"72,-754r405,0r0,86r-311,0r0,211r302,0r0,86r-302,0r0,285r311,0r0,86r-405,0r0,-754","w":521},"F":{"d":"165,-668r0,212r262,0r0,86r-262,0r0,370r-94,0r0,-754r365,0r0,86r-271,0","w":474,"k":{"A":60,".":150,",":150}},"G":{"d":"653,-561v-61,-92,-218,-157,-355,-99v-130,55,-228,224,-160,396v48,123,191,238,358,176v83,-31,150,-100,159,-206r-195,0r0,-86r299,0v6,190,-80,309,-213,368v-88,39,-205,37,-292,-4v-129,-61,-233,-179,-233,-359v0,-184,105,-305,239,-364v101,-45,222,-41,322,7v54,25,100,61,137,108","w":780},"H":{"d":"517,-450r0,-304r94,0r0,754r-94,0r0,-362r-359,0r0,362r-94,0r0,-754r94,0r0,304r359,0","w":675},"I":{"d":"163,0r-94,0r0,-754r94,0r0,754","w":232},"J":{"d":"103,-72v100,-1,106,-104,106,-203r0,-479r94,0r0,479v0,163,-39,292,-204,291v-50,0,-84,-13,-118,-33r47,-80v22,17,47,25,75,25","w":362},"K":{"d":"486,-754r123,0r-339,339r345,415r-127,0r-284,-351r-38,36r0,315r-94,0r0,-754r94,0r0,327","w":600},"L":{"d":"166,-86r229,0r0,86r-323,0r0,-754r94,0r0,668","w":385,"k":{"\u2019":80,"y":20,"Y":40,"W":30,"V":40,"T":30}},"M":{"d":"200,-498r-2,0r-88,498r-97,0r154,-786r259,594r259,-594r154,786r-97,0r-88,-498r-2,0r-226,514","w":851},"N":{"d":"63,-790r566,593r0,-557r94,0r0,785r-566,-593r0,562r-94,0r0,-790","w":785},"O":{"d":"137,-256v54,132,215,227,393,160v133,-50,231,-224,163,-398v-42,-107,-134,-188,-279,-188v-144,0,-235,82,-279,188v-30,74,-28,166,2,238xm136,-654v82,-89,272,-157,431,-85v134,60,242,177,242,362v0,187,-105,304,-241,363v-94,40,-214,40,-308,0v-136,-59,-241,-176,-241,-363v0,-119,56,-211,117,-277","w":828},"P":{"d":"396,-538v0,-119,-109,-134,-230,-132r0,270v124,3,230,-16,230,-138xm484,-536v-4,175,-133,228,-318,220r0,316r-94,0r0,-754v219,-6,416,5,412,218","w":495,"k":{"A":80,".":135,",":135}},"Q":{"d":"627,-166v75,-61,115,-210,66,-328v-44,-106,-134,-188,-279,-188v-144,0,-238,81,-279,188v-68,179,30,344,163,398v86,35,200,25,266,-19r-173,-169r117,0xm778,-530v70,152,13,348,-87,431r117,115r-114,0r-65,-67v-88,65,-249,90,-369,37v-136,-60,-241,-176,-241,-363v0,-184,108,-302,242,-362v157,-71,351,-4,431,85v34,37,65,76,86,124","w":828},"R":{"d":"396,-535v0,-119,-109,-137,-230,-135r0,273v124,3,230,-16,230,-138xm484,-539v0,121,-72,194,-181,211r238,328r-114,0r-222,-319r-39,0r0,319r-94,0r0,-754r114,0v171,-10,298,57,298,215","w":543,"k":{"Y":20,"T":20}},"S":{"d":"80,-506v-73,-189,149,-327,321,-234v34,18,60,47,81,84r-75,45v-26,-43,-57,-71,-121,-71v-81,0,-150,64,-116,146v61,90,215,89,283,172v30,36,53,80,53,145v0,172,-158,277,-327,219v-81,-28,-133,-99,-147,-195r95,-20v3,89,58,139,146,143v121,7,186,-162,99,-238v-87,-76,-247,-81,-292,-196","w":537},"T":{"d":"275,0r-94,0r0,-668r-179,0r0,-86r452,0r0,86r-179,0r0,668","w":456,"k":{"\u00ad":80,"y":80,"w":80,"u":100,"s":100,"r":80,"o":100,"i":15,"e":100,"c":100,"a":100,"A":80,";":100,":":100,".":100,",":100}},"U":{"d":"611,-277v-6,177,-98,293,-276,293v-178,0,-276,-116,-276,-293r0,-477r94,0r0,445v1,136,44,237,182,237v138,0,181,-101,182,-237r0,-445r94,0r0,477","w":669},"V":{"d":"321,-196r224,-558r103,0r-327,794r-328,-794r103,0","w":640,"k":{"\u00ad":30,"y":20,"u":60,"r":40,"o":80,"i":20,"e":80,"a":80,"A":100,";":80,":":80,".":120,",":120}},"W":{"d":"301,-214r213,-556r213,556r211,-540r102,0r-313,784r-213,-553r-213,553r-313,-784r102,0","w":1027,"k":{"u":40,"r":20,"o":60,"e":60,"a":60,"A":100,";":80,":":80,".":80,",":80}},"X":{"d":"29,-754r107,0r154,275r164,-275r107,0r-217,359r229,395r-105,0r-178,-309r-185,309r-105,0r237,-395","w":574},"Y":{"d":"-6,-754r108,0r185,322r185,-322r108,0r-246,426r0,328r-94,0r0,-328","w":573,"k":{"\u00ad":60,"v":40,"u":60,"q":100,"p":80,"o":100,"i":20,"e":100,"a":100,"A":100,";":100,":":100,".":100,",":100}},"Z":{"d":"544,-86r0,86r-535,0r382,-668r-328,0r0,-86r481,0r-382,668r382,0","w":552},"[":{"d":"153,109r98,0r0,84r-190,0r0,-1002r190,0r0,84r-98,0r0,834","w":311},"\\":{"d":"115,-868r404,868r-84,0r-404,-868r84,0","w":551},"]":{"d":"158,-725r-98,0r0,-84r190,0r0,1002r-190,0r0,-84r98,0r0,-834","w":311},"^":{"d":"233,-754r112,0r200,446r-94,0r-162,-362r-163,362r-93,0"},"_":{"d":"500,188r-500,0r0,-75r500,0r0,75","w":500},"`":{"d":"159,-734r125,166r-44,27r-164,-149","w":360},"a":{"d":"247,-482v79,-3,127,46,164,92r0,-78r90,0r0,468r-90,0v-2,-23,4,-54,-2,-73v-33,48,-84,89,-159,89v-148,0,-224,-106,-224,-253v0,-142,79,-240,221,-245xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"b":{"d":"306,16v-76,2,-125,-45,-161,-89r0,73r-90,0r0,-868r90,0r0,478r2,0v40,-74,159,-121,255,-72v76,39,128,115,128,225v0,147,-76,249,-224,253xm140,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"c":{"d":"282,-482v47,0,92,12,124,31r0,116v-37,-42,-81,-63,-134,-63v-95,0,-156,69,-156,164v0,101,61,166,162,166v59,0,97,-28,128,-62r0,115v-92,56,-248,26,-306,-39v-39,-43,-74,-99,-74,-176v0,-155,101,-252,256,-252","w":441},"d":{"d":"246,-482v80,-2,127,45,165,92r0,-478r90,0r0,868r-90,0v-2,-23,4,-54,-2,-73v-32,48,-85,88,-159,89v-177,1,-261,-175,-208,-346v27,-86,93,-150,204,-152xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"e":{"d":"383,-287v-10,-67,-54,-117,-129,-117v-72,0,-124,53,-133,117r262,0xm254,-482v154,0,219,106,219,263r-357,0v5,89,51,155,141,155v77,0,107,-41,140,-91r76,43v-38,73,-115,128,-217,128v-149,0,-230,-98,-230,-246v0,-152,74,-252,228,-252","w":488},"f":{"d":"80,-468v6,-182,-43,-418,151,-412v22,0,43,4,63,12r0,91v-18,-7,-38,-19,-60,-19v-60,1,-64,67,-64,127r0,201r124,0r0,84r-124,0r0,384r-90,0r0,-384r-41,0r0,-84r41,0","w":275,"k":{"\u2019":-20,"f":-20}},"g":{"d":"245,-482v81,-2,128,45,165,94r0,-80r90,0r0,459v1,170,-56,280,-228,277v-138,-3,-219,-76,-226,-212r90,0v-1,83,58,132,140,132v136,0,143,-130,132,-261v-32,48,-85,88,-159,89v-177,1,-262,-175,-209,-346v27,-86,94,-150,205,-152xm115,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":555},"h":{"d":"268,-402v-105,0,-116,85,-116,187r0,215r-90,0r0,-868r90,0r0,463r2,0v24,-46,77,-76,141,-77v124,-1,166,80,166,203r0,279r-90,0r0,-268v2,-83,-19,-134,-103,-134","w":523},"i":{"d":"65,-682v0,-34,28,-63,62,-63v34,0,62,29,62,63v0,34,-28,61,-62,61v-34,0,-62,-27,-62,-61xm172,0r-90,0r0,-468r90,0r0,468","w":254},"j":{"d":"65,-682v0,-34,28,-63,62,-63v34,0,62,29,62,63v0,34,-28,61,-62,61v-34,0,-62,-27,-62,-61xm172,268r-90,0r0,-736r90,0r0,736","w":254},"k":{"d":"158,-292r176,-176r119,0r-200,194r220,274r-117,0r-167,-213r-31,31r0,182r-90,0r0,-868r90,0r0,576","w":462},"l":{"d":"156,0r-90,0r0,-868r90,0r0,868","w":222},"m":{"d":"253,-402v-90,0,-104,83,-104,172r0,230r-90,0r0,-468r90,0v2,18,-4,44,2,59v23,-36,68,-73,124,-73v69,1,107,37,135,83v26,-46,78,-82,144,-83v214,-1,143,282,155,482r-90,0r0,-265v0,-72,-13,-137,-87,-137v-89,1,-103,83,-103,172r0,230r-90,0r0,-248v-1,-76,-8,-154,-86,-154","w":767},"n":{"d":"268,-402v-105,0,-116,85,-116,187r0,215r-90,0r0,-468r90,0v2,20,-4,47,2,63v24,-46,77,-76,141,-77v124,-1,166,80,166,203r0,279r-90,0r0,-268v2,-83,-19,-134,-103,-134","w":523},"o":{"d":"430,-233v0,-97,-63,-163,-160,-163v-97,0,-160,66,-160,163v0,96,63,163,160,163v97,0,160,-67,160,-163xm40,-134v-83,-222,112,-407,328,-329v111,40,186,186,132,329v-42,110,-187,187,-328,131v-61,-24,-109,-70,-132,-131","w":540},"p":{"d":"306,16v-76,2,-125,-45,-161,-89r0,341r-90,0r0,-736r90,0v2,25,-4,57,2,78v40,-74,159,-121,255,-72v76,39,128,115,128,225v0,147,-76,249,-224,253xm140,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"q":{"d":"246,-482v80,-2,127,45,165,92r0,-78r90,0r0,736r-90,0r0,-341r-2,0v-32,48,-85,88,-159,89v-177,1,-261,-175,-208,-346v27,-86,93,-150,204,-152xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"r":{"d":"267,-396v-90,0,-109,77,-109,166r0,230r-90,0r0,-468r90,0r0,76r3,0v20,-74,126,-119,202,-67r-41,82v-14,-13,-30,-19,-55,-19","w":351,"k":{"y":-40,"x":-40,"w":-40,"v":-40,"t":-20,"q":20,"n":-8,"m":-8,"f":-20,".":100,",":100}},"s":{"d":"110,-249v-103,-61,-40,-241,85,-233v63,4,106,37,128,82r-73,39v-13,-48,-108,-58,-109,5v21,82,138,74,184,132v17,22,33,46,33,85v0,155,-212,202,-297,95v-11,-13,-20,-28,-26,-45r77,-35v18,31,38,57,85,60v65,4,98,-84,38,-117","w":384},"t":{"d":"165,0r-90,0r0,-384r-49,0r0,-84r49,0r0,-179r90,0r0,179r88,0r0,84r-88,0r0,384","w":240},"u":{"d":"256,16v-136,0,-198,-80,-198,-215r0,-269r90,0r0,259v0,82,25,141,108,141v83,0,108,-59,108,-141r0,-259r90,0r0,269v-1,135,-62,215,-198,215","w":512},"v":{"d":"222,-176r135,-292r101,0r-236,484r-235,-484r101,0","w":445,"k":{".":80,",":80}},"w":{"d":"222,-170r138,-324r137,324r136,-298r102,0r-238,484r-137,-313r-138,313r-238,-484r102,0","w":718,"k":{".":60,",":60}},"x":{"d":"27,-468r106,0r111,151r121,-151r109,0r-172,214r201,254r-105,0r-154,-190r-149,190r-109,0r209,-254","w":489},"y":{"d":"-13,-468r105,0r158,297r147,-297r101,0r-379,736r-102,0r184,-348","w":484,"k":{".":80,",":80}},"z":{"d":"481,-84r0,84r-479,0r317,-384r-263,0r0,-84r438,0r-317,384r304,0","w":495},"{":{"d":"123,62v-4,-132,24,-297,-75,-333r0,-73v99,-36,72,-201,75,-333v2,-66,31,-119,85,-132r78,0r0,84r-40,0v-33,-1,-31,31,-31,62r0,184v0,82,-32,139,-76,172v44,32,77,90,76,171r0,184v1,31,-2,63,31,62r40,0r0,84r-78,0v-54,-12,-83,-66,-85,-132","w":334},"|":{"d":"328,0r-86,0r0,-868r86,0r0,868","w":570},"}":{"d":"211,-677v4,132,-24,297,75,333r0,73v-99,36,-72,201,-75,333v-2,66,-31,119,-85,132r-78,0r0,-84r40,0v33,1,31,-31,31,-62r0,-184v0,-82,31,-139,76,-171v-44,-33,-77,-90,-76,-172r0,-184v-1,-31,2,-63,-31,-62r-40,0r0,-84r78,0v54,12,83,66,85,132","w":334},"~":{"d":"227,-248v-62,-44,-101,18,-131,66r-63,-45v39,-67,114,-157,220,-107v50,24,83,73,139,86v51,-5,62,-53,86,-86r67,50v-34,68,-109,157,-209,106v-38,-20,-74,-46,-109,-70"},"\u20ac":{"d":"75,-460v18,-239,274,-382,514,-269r-21,85v-59,-44,-181,-54,-258,-20v-78,35,-122,110,-139,204r357,0r-14,58r-351,0v-2,27,-1,50,3,74r323,0r-14,58r-299,0v27,113,93,198,232,200v73,1,116,-19,160,-50r0,101v-40,20,-92,36,-157,35v-196,-5,-303,-112,-334,-286r-77,0r14,-58r56,0r-1,-74r-68,0r14,-58r60,0"},"\u201a":{"d":"242,-88r-133,267r-55,-23r110,-275","w":277},"\u0192":{"d":"484,-505r-9,68r-131,0r-55,303v-25,165,-71,297,-275,283r15,-86v127,10,148,-85,166,-192r53,-308r-65,0r9,-68r70,0v27,-156,32,-334,218,-331v22,0,42,2,60,7r-16,84v-70,-24,-124,17,-136,78r-33,162r129,0"},"\u201e":{"d":"404,-88r-133,267r-55,-23r110,-275xm238,-88r-133,267r-55,-23r110,-275","w":439},"\u2026":{"d":"108,-42v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58xm776,-42v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58xm442,-42v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58","w":1000},"\u2020":{"d":"334,-868r0,275r181,0r0,86r-181,0r0,595r-90,0r0,-595r-181,0r0,-86r181,0r0,-275r90,0"},"\u2021":{"d":"334,-868r0,239r181,0r0,86r-181,0r0,122r181,0r0,86r-181,0r0,422r-90,0r0,-422r-181,0r0,-86r181,0r0,-122r-181,0r0,-86r181,0r0,-239r90,0"},"\u02c6":{"d":"234,-734r161,145r-59,46r-102,-96r-101,96r-58,-46","w":470},"\u2030":{"d":"1029,-155v0,-68,-49,-112,-116,-112v-67,0,-116,44,-116,112v0,67,49,111,116,111v67,0,116,-44,116,-111xm737,-155v0,-105,72,-172,176,-172v104,0,176,68,176,172v0,103,-73,171,-176,171v-103,0,-176,-68,-176,-171xm637,-155v0,-68,-49,-112,-116,-112v-67,0,-116,44,-116,112v0,67,49,111,116,111v67,0,116,-44,116,-111xm345,-155v0,-105,72,-172,176,-172v104,0,176,68,176,172v0,103,-73,171,-176,171v-103,0,-176,-68,-176,-171xm602,-744r-440,760r-46,-25r441,-761xm314,-598v0,-68,-49,-112,-116,-112v-67,0,-116,44,-116,112v0,67,49,111,116,111v67,0,116,-44,116,-111xm22,-598v0,-105,72,-172,176,-172v104,0,176,68,176,172v0,103,-73,171,-176,171v-103,0,-176,-68,-176,-171","w":1110},"\u0160":{"d":"167,-1020r101,96r102,-96r59,46r-161,145r-159,-145xm80,-506v-73,-189,149,-327,321,-234v34,18,60,47,81,84r-75,45v-26,-43,-57,-71,-121,-71v-81,0,-150,64,-116,146v61,90,215,89,283,172v30,36,53,80,53,145v0,172,-158,277,-327,219v-81,-28,-133,-99,-147,-195r95,-20v3,89,58,139,146,143v121,7,186,-162,99,-238v-87,-76,-247,-81,-292,-196","w":537},"\u2039":{"d":"260,-129r-56,41r-182,-232r182,-240r56,41r-149,199","w":336},"\u0152":{"d":"137,-256v54,132,215,227,393,160v133,-50,231,-224,163,-398v-42,-107,-134,-188,-279,-188v-144,0,-235,82,-279,188v-30,74,-28,166,2,238xm261,-739v172,-76,378,2,457,117r0,-132r395,0r0,86r-310,0r0,211r301,0r0,86r-301,0r0,285r310,0r0,86r-395,0v-2,-41,4,-90,-2,-126v-77,119,-288,184,-456,112v-137,-58,-241,-176,-241,-363v0,-184,108,-303,242,-362","w":1143},"\u017d":{"d":"174,-1020r101,96r102,-96r59,46r-161,145r-159,-145xm544,-86r0,86r-535,0r382,-668r-328,0r0,-86r481,0r-382,668r382,0","w":552},"\u2018":{"d":"60,-503r133,-267r56,23r-110,275","w":277,"k":{"\u2018":111}},"\u2019":{"d":"217,-739r-133,267r-56,-23r110,-275","w":277,"k":{"\u2019":111,"t":20,"s":100}},"\u201c":{"d":"60,-503r133,-267r56,23r-110,275xm226,-503r133,-267r56,23r-110,275","w":439},"\u201d":{"d":"379,-739r-133,267r-56,-23r110,-275xm213,-739r-133,267r-56,-23r110,-275","w":439},"\u2022":{"d":"478,-377v0,113,-76,188,-189,188v-113,0,-188,-75,-188,-188v0,-114,75,-189,188,-189v113,0,189,76,189,189"},"\u2013":{"d":"500,-358r0,75r-500,0r0,-75r500,0","w":500},"\u2014":{"d":"1000,-358r0,75r-1000,0r0,-75r1000,0","w":1000},"\u02dc":{"d":"207,-611v-43,-23,-83,6,-96,38r-47,-40v26,-38,50,-79,111,-81v70,-2,100,49,161,53v32,2,50,-29,64,-48r47,39v-23,53,-87,106,-160,74","w":510},"\u2122":{"d":"374,-690r-138,0r0,357r-64,0r0,-357r-138,0r0,-64r340,0r0,64xm906,-333r-64,0r0,-357r-2,0r-144,357r-39,0r-140,-357r-2,0r0,357r-64,0r0,-421r105,0r121,297r125,-297r104,0r0,421","w":940},"\u0161":{"d":"90,-734r101,96r102,-96r59,46r-161,145r-159,-145xm110,-249v-103,-61,-40,-241,85,-233v63,4,106,37,128,82r-73,39v-13,-48,-108,-58,-109,5v21,82,138,74,184,132v17,22,33,46,33,85v0,155,-212,202,-297,95v-11,-13,-20,-28,-26,-45r77,-35v18,31,38,57,85,60v65,4,98,-84,38,-117","w":384},"\u203a":{"d":"225,-320r-149,-199r56,-41r182,240r-182,232r-56,-41","w":336},"\u0153":{"d":"663,-482v154,0,219,106,219,263r-357,0v5,89,51,155,141,155v77,0,107,-41,140,-91r76,43v-38,73,-115,128,-217,128v-94,0,-157,-43,-195,-103v-48,84,-183,128,-298,84v-110,-42,-190,-188,-132,-329v36,-87,111,-150,230,-150v93,0,158,47,200,105v43,-67,107,-105,193,-105xm430,-233v0,-97,-63,-163,-160,-163v-97,0,-160,66,-160,163v0,96,63,163,160,163v97,0,160,-67,160,-163xm791,-287v-10,-67,-54,-117,-129,-117v-72,0,-124,53,-133,117r262,0","w":897},"\u017e":{"d":"146,-734r101,96r102,-96r59,46r-161,145r-159,-145xm481,-84r0,84r-479,0r317,-384r-263,0r0,-84r438,0r-317,384r304,0","w":495},"\u0178":{"d":"332,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm121,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm-6,-754r108,0r185,322r185,-322r108,0r-246,426r0,328r-94,0r0,-328","w":573},"\u00a0":{"w":289},"\u00a1":{"d":"206,-323r0,581r-90,0r0,-581r90,0xm103,-450v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58","w":321},"\u00a2":{"d":"308,-539v-106,13,-155,170,-88,260v20,28,49,51,88,59r0,-319xm100,-377v0,-140,84,-226,208,-249r0,-78r48,0r0,76v47,3,88,11,122,31v-2,37,4,82,-2,115v-25,-34,-67,-61,-120,-63r0,328v56,-8,89,-27,122,-62r0,117v-39,18,-75,27,-122,29r0,85r-48,0r0,-89v-121,-23,-208,-102,-208,-240"},"\u00a3":{"d":"178,-49v-50,0,-72,28,-88,65r-79,-40v33,-57,69,-109,154,-113v17,-60,23,-113,-8,-164r-129,0r0,-58r100,0v-37,-69,-82,-180,-37,-271v49,-98,185,-175,322,-123v85,32,136,107,144,217r-90,34v12,-129,-90,-213,-206,-166v-53,21,-101,68,-101,137v0,76,44,120,71,172r148,0r0,58r-124,0v19,64,19,108,0,172v55,17,105,55,168,55v47,0,63,-43,83,-74r75,46v-26,60,-74,118,-156,118v-95,-1,-156,-65,-247,-65"},"\u00a4":{"d":"114,-300v0,102,71,170,175,170v104,0,175,-67,175,-170v0,-106,-69,-170,-175,-170v-106,0,-175,64,-175,170xm141,-502v65,-62,231,-63,296,0r46,-44r60,60r-41,44v54,68,55,216,0,284r41,44r-60,60r-46,-44v-65,62,-231,63,-296,0r-46,44r-60,-60r41,-44v-54,-68,-55,-216,0,-284r-41,-44r60,-60"},"\u00a5":{"d":"336,0r-94,0r0,-260r-236,0r0,-58r236,0r0,-10r-54,-94r-182,0r0,-58r148,0r-158,-274r108,0r185,322r185,-322r108,0r-158,274r148,0r0,58r-181,0r-55,94r0,10r236,0r0,58r-236,0r0,260"},"\u00a6":{"d":"328,-521r-86,0r0,-347r86,0r0,347xm328,0r-86,0r0,-347r86,0r0,347","w":570},"\u00a7":{"d":"288,30v99,6,167,-119,90,-181v-87,-70,-218,-94,-300,-167v-24,-22,-38,-54,-38,-100v0,-82,47,-122,96,-162v-25,-29,-42,-62,-44,-111v-7,-193,296,-233,370,-81v10,21,18,45,20,72r-87,0v-6,-59,-51,-86,-112,-89v-85,-4,-136,108,-75,163v79,70,203,94,284,162v25,21,46,48,46,92v-1,74,-42,136,-89,169v35,33,53,74,53,122v0,124,-90,193,-213,193v-142,0,-228,-81,-226,-230r89,0v2,88,48,143,136,148xm189,-534v-48,23,-89,122,-33,164v68,51,157,80,233,122v45,-23,90,-117,37,-160v-67,-54,-160,-83,-237,-126"},"\u00a8":{"d":"280,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm69,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61","w":470},"\u00a9":{"d":"197,-380v0,-139,78,-227,218,-227v98,0,170,62,185,149r-61,0v-11,-56,-58,-86,-125,-85v-100,1,-153,64,-153,161v0,101,54,164,155,164v69,0,109,-32,123,-89r61,0v-16,93,-80,153,-184,153v-138,0,-219,-89,-219,-226xm704,-507v-59,-143,-240,-250,-432,-173v-115,46,-202,146,-202,303v0,155,88,257,202,303v191,77,374,-31,432,-174v32,-80,33,-180,0,-259xm554,-14v-94,41,-214,41,-308,0v-134,-60,-240,-177,-240,-363v0,-185,106,-303,240,-363v94,-41,214,-41,308,0v135,60,240,177,240,363v0,185,-105,304,-240,363","w":800},"\u00aa":{"d":"12,-368r0,-48r310,0r0,48r-310,0xm156,-770v51,-2,82,27,107,55r0,-46r59,0r0,280r-59,0v-2,-13,4,-34,-2,-43v-21,28,-56,54,-103,53v-93,-2,-146,-60,-146,-152v0,-88,55,-144,144,-147xm71,-621v0,60,34,102,96,102v64,0,99,-40,99,-102v0,-57,-38,-103,-99,-101v-61,2,-96,42,-96,101","w":334},"\u00ab":{"d":"268,-129r-56,41r-182,-232r182,-240r56,41r-149,199xm460,-129r-56,41r-182,-232r182,-240r56,41r-149,199","w":523},"\u00ac":{"d":"459,-299r-426,0r0,-86r512,0r0,270r-86,0r0,-184"},"\u00ad":{"d":"276,-358r0,75r-219,0r0,-75r219,0","w":332},"\u2010":{"d":"276,-358r0,75r-219,0r0,-75r219,0","w":332},"\u00ae":{"d":"522,-471v0,-89,-127,-52,-210,-60r0,110r68,0v60,-1,142,12,142,-50xm586,-478v0,79,-45,117,-118,121r112,204r-73,0r-113,-204r-82,0r0,204r-64,0r0,-442v146,6,340,-37,338,117xm704,-507v-59,-143,-240,-250,-432,-173v-115,46,-202,146,-202,303v0,155,88,257,202,303v191,77,374,-31,432,-174v32,-80,33,-180,0,-259xm554,-14v-94,41,-214,41,-308,0v-134,-60,-240,-177,-240,-363v0,-185,106,-303,240,-363v94,-41,214,-41,308,0v135,60,240,177,240,363v0,185,-105,304,-240,363","w":800},"\u00af":{"d":"431,-694r0,68r-361,0r0,-68r361,0","w":500},"\u00b0":{"d":"300,-620v-3,-60,-41,-100,-101,-100v-60,0,-97,40,-99,100v-2,56,44,100,100,100v55,0,102,-44,100,-100xm200,-770v90,0,150,61,150,150v0,90,-60,150,-150,150v-90,0,-150,-60,-150,-150v0,-90,60,-150,150,-150","w":400},"\u00b1":{"d":"332,-562r0,173r213,0r0,86r-213,0r0,173r-86,0r0,-173r-213,0r0,-86r213,0r0,-173r86,0xm33,-86r512,0r0,86r-512,0r0,-86"},"\u00b2":{"d":"177,-764v104,2,179,77,147,186v-6,17,-14,31,-25,43r-155,175r188,0r0,58r-317,0r215,-243v17,-20,38,-46,38,-81v0,-50,-42,-77,-91,-80v-48,-2,-86,31,-88,76r-67,0v9,-79,66,-135,155,-134","w":346},"\u00b3":{"d":"264,-436v0,-52,-48,-85,-101,-82r0,-58v51,0,94,-18,94,-67v0,-47,-37,-69,-83,-69v-37,0,-77,17,-75,56r-67,0v11,-73,61,-114,144,-114v82,0,145,40,145,122v0,51,-29,82,-66,102v43,18,71,56,73,112v7,174,-305,178,-309,14r64,0v10,97,181,78,181,-16","w":346},"\u00b4":{"d":"284,-690r-164,149r-44,-27r125,-166","w":360},"\u00b5":{"d":"256,16v-42,0,-84,-24,-108,-44r0,296r-90,0r0,-736r90,0r0,259v0,82,25,141,108,141v83,0,108,-59,108,-141r0,-259r90,0r0,269v-1,135,-62,214,-198,215","w":512},"\u00b6":{"d":"538,-670r-61,0r0,823r-84,0r0,-823r-62,0r0,823r-84,0r0,-436v-159,-1,-239,-147,-195,-305v25,-89,92,-166,204,-166r282,0r0,84"},"\u00b7":{"d":"87,-256v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58","w":289},"\u22c5":{"d":"87,-256v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58","w":289},"\u2219":{"d":"87,-256v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58","w":289},"\u00b8":{"d":"139,181r-53,-27r87,-137r71,29","w":330},"\u00b9":{"d":"65,-696r34,-58r116,0r0,452r-64,0r0,-394r-86,0","w":346},"\u00ba":{"d":"0,-368r0,-48r325,0r0,48r-325,0xm266,-620v2,-54,-48,-98,-104,-98v-56,0,-105,43,-103,98v3,60,43,97,103,97v61,0,101,-37,104,-97xm0,-620v0,-94,67,-150,162,-150v95,0,163,55,163,150v0,94,-68,149,-163,149v-95,0,-162,-55,-162,-149","w":324},"\u00bb":{"d":"404,-320r-149,-199r56,-41r182,240r-182,232r-56,-41xm212,-320r-149,-199r56,-41r182,240r-182,232r-56,-41","w":523},"\u00bc":{"d":"682,-744r-440,760r-51,-28r440,-758xm714,-288r-3,0r-123,164r126,0r0,-164xm827,-124r0,58r-49,0r0,66r-64,0r0,-66r-243,0r307,-407r0,349r49,0xm40,-696r34,-58r116,0r0,452r-64,0r0,-394r-86,0","w":867},"\u00bd":{"d":"630,-744r-440,760r-51,-28r440,-758xm672,-462v104,2,178,77,146,186v-6,17,-13,31,-24,43r-155,175r188,0r0,58r-317,0r215,-243v17,-20,38,-46,38,-81v0,-50,-42,-77,-91,-80v-48,-2,-86,31,-88,76r-67,0v9,-79,66,-135,155,-134xm126,-696r-86,0r34,-58r116,0r0,452r-64,0r0,-394","w":867},"\u00be":{"d":"738,-744r-440,760r-51,-28r440,-758xm285,-436v0,-52,-48,-85,-101,-82r0,-58v51,0,94,-18,94,-67v0,-47,-37,-69,-83,-69v-37,0,-77,17,-75,56r-67,0v11,-73,61,-114,144,-114v82,0,145,40,145,122v0,51,-29,82,-66,102v43,18,71,56,73,112v7,174,-305,178,-309,14r64,0v10,97,181,78,181,-16xm714,-288r-3,0r-123,164r126,0r0,-164xm827,-124r0,58r-49,0r0,66r-64,0r0,-66r-243,0r307,-407r0,349r49,0","w":867},"\u00bf":{"d":"165,-450v0,-30,27,-58,58,-58v31,0,58,28,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58xm223,-234v-42,0,-73,35,-71,77r-91,0v2,-96,68,-153,162,-161v157,-13,218,223,81,288v-65,31,-166,32,-171,124v-3,55,39,90,92,89v61,-1,99,-55,80,-118r94,0v15,126,-60,199,-177,203v-130,4,-211,-116,-166,-245v30,-87,142,-91,214,-136v50,-31,14,-121,-47,-121","w":453},"\u00c0":{"d":"331,-1020r125,166r-44,27r-164,-149xm352,-580r-134,305r268,0xm179,-189r-86,189r-101,0r360,-786r360,786r-101,0r-86,-189r-346,0","w":703},"\u00c1":{"d":"456,-976r-164,149r-44,-27r125,-166xm352,-580r-134,305r268,0xm179,-189r-86,189r-101,0r360,-786r360,786r-101,0r-86,-189r-346,0","w":703},"\u00c2":{"d":"351,-1020r161,145r-59,46r-102,-96r-101,96r-58,-46xm352,-580r-134,305r268,0xm179,-189r-86,189r-101,0r360,-786r360,786r-101,0r-86,-189r-346,0","w":703},"\u00c3":{"d":"304,-897v-43,-23,-83,6,-96,38r-47,-40v26,-38,50,-79,111,-81v70,-2,100,49,161,53v32,2,50,-29,64,-48r47,39v-23,53,-87,106,-160,74xm352,-580r-134,305r268,0xm179,-189r-86,189r-101,0r360,-786r360,786r-101,0r-86,-189r-346,0","w":703},"\u00c4":{"d":"397,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm186,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm352,-580r-134,305r268,0xm179,-189r-86,189r-101,0r360,-786r360,786r-101,0r-86,-189r-346,0","w":703},"\u00c5":{"d":"307,-929v0,24,21,45,45,45v25,0,46,-20,46,-45v0,-25,-21,-46,-46,-46v-24,0,-45,22,-45,46xm262,-929v0,-49,41,-93,90,-91v55,2,91,36,91,91v0,55,-37,88,-91,90v-49,2,-90,-41,-90,-90xm352,-580r-134,305r268,0xm179,-189r-86,189r-101,0r360,-786r360,786r-101,0r-86,-189r-346,0","w":703},"\u00c6":{"d":"367,-567r-138,292r268,0xm189,-189r-86,189r-103,0r362,-754r330,0r38,86r-309,0r91,211r301,0r40,86r-302,0r121,285r311,0r38,86r-406,0r-83,-189r-343,0","w":997},"\u00c7":{"d":"305,181r-53,-27r87,-137r71,29xm275,-740v108,-47,260,-36,346,21r0,109v-68,-66,-209,-96,-317,-50v-130,55,-226,230,-158,402v42,105,132,188,274,188v85,0,152,-33,201,-78r0,111v-88,55,-242,72,-351,23v-134,-60,-240,-174,-240,-359v0,-188,108,-307,245,-367","w":661},"\u00c8":{"d":"240,-1020r125,166r-44,27r-164,-149xm72,-754r405,0r0,86r-311,0r0,211r302,0r0,86r-302,0r0,285r311,0r0,86r-405,0r0,-754","w":521},"\u00c9":{"d":"377,-976r-164,149r-44,-27r125,-166xm72,-754r405,0r0,86r-311,0r0,211r302,0r0,86r-302,0r0,285r311,0r0,86r-405,0r0,-754","w":521},"\u00ca":{"d":"260,-1020r161,145r-59,46r-102,-96r-101,96r-58,-46xm72,-754r405,0r0,86r-311,0r0,211r302,0r0,86r-302,0r0,285r311,0r0,86r-405,0r0,-754","w":521},"\u00cb":{"d":"318,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm107,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm72,-754r405,0r0,86r-311,0r0,211r302,0r0,86r-302,0r0,285r311,0r0,86r-405,0r0,-754","w":521},"\u00cc":{"d":"95,-1020r125,166r-44,27r-164,-149xm163,0r-94,0r0,-754r94,0r0,754","w":232},"\u00cd":{"d":"220,-976r-164,149r-44,-27r125,-166xm163,0r-94,0r0,-754r94,0r0,754","w":232},"\u00ce":{"d":"115,-1020r161,145r-59,46r-102,-96r-101,96r-58,-46xm163,0r-94,0r0,-754r94,0r0,754","w":232},"\u00cf":{"d":"161,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm-50,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm163,0r-94,0r0,-754r94,0r0,754","w":232},"\u00d0":{"d":"549,-377v0,-223,-162,-296,-391,-291r0,218r134,0r0,88r-134,0r0,276v229,5,391,-68,391,-291xm643,-381v-4,258,-170,375,-426,381r-153,0r0,-362r-64,0r0,-88r64,0r0,-304v185,-6,352,4,454,92v72,62,127,151,125,281","w":665},"\u00d1":{"d":"345,-897v-43,-23,-83,6,-96,38r-47,-40v26,-38,50,-79,111,-81v70,-2,100,49,161,53v32,2,50,-29,64,-48r47,39v-23,53,-87,106,-160,74xm63,-790r566,593r0,-557r94,0r0,785r-566,-593r0,562r-94,0r0,-790","w":785},"\u00d2":{"d":"393,-1020r125,166r-44,27r-164,-149xm137,-256v54,132,215,227,393,160v133,-50,231,-224,163,-398v-42,-107,-134,-188,-279,-188v-144,0,-235,82,-279,188v-30,74,-28,166,2,238xm136,-654v82,-89,272,-157,431,-85v134,60,242,177,242,362v0,187,-105,304,-241,363v-94,40,-214,40,-308,0v-136,-59,-241,-176,-241,-363v0,-119,56,-211,117,-277","w":828},"\u00d3":{"d":"518,-976r-164,149r-44,-27r125,-166xm137,-256v54,132,215,227,393,160v133,-50,231,-224,163,-398v-42,-107,-134,-188,-279,-188v-144,0,-235,82,-279,188v-30,74,-28,166,2,238xm136,-654v82,-89,272,-157,431,-85v134,60,242,177,242,362v0,187,-105,304,-241,363v-94,40,-214,40,-308,0v-136,-59,-241,-176,-241,-363v0,-119,56,-211,117,-277","w":828},"\u00d4":{"d":"413,-1020r161,145r-59,46r-102,-96r-101,96r-58,-46xm137,-256v54,132,215,227,393,160v133,-50,231,-224,163,-398v-42,-107,-134,-188,-279,-188v-144,0,-235,82,-279,188v-30,74,-28,166,2,238xm136,-654v82,-89,272,-157,431,-85v134,60,242,177,242,362v0,187,-105,304,-241,363v-94,40,-214,40,-308,0v-136,-59,-241,-176,-241,-363v0,-119,56,-211,117,-277","w":828},"\u00d5":{"d":"366,-897v-43,-23,-83,6,-96,38r-47,-40v26,-38,50,-79,111,-81v70,-2,100,49,161,53v32,2,50,-29,64,-48r47,39v-23,53,-87,106,-160,74xm137,-256v54,132,215,227,393,160v133,-50,231,-224,163,-398v-42,-107,-134,-188,-279,-188v-144,0,-235,82,-279,188v-30,74,-28,166,2,238xm136,-654v82,-89,272,-157,431,-85v134,60,242,177,242,362v0,187,-105,304,-241,363v-94,40,-214,40,-308,0v-136,-59,-241,-176,-241,-363v0,-119,56,-211,117,-277","w":828},"\u00d6":{"d":"459,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm248,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm137,-256v54,132,215,227,393,160v133,-50,231,-224,163,-398v-42,-107,-134,-188,-279,-188v-144,0,-235,82,-279,188v-30,74,-28,166,2,238xm136,-654v82,-89,272,-157,431,-85v134,60,242,177,242,362v0,187,-105,304,-241,363v-94,40,-214,40,-308,0v-136,-59,-241,-176,-241,-363v0,-119,56,-211,117,-277","w":828},"\u00d7":{"d":"93,-512r196,195r196,-195r60,61r-195,195r195,195r-60,61r-196,-195r-196,195r-60,-61r195,-195r-195,-195"},"\u00d8":{"d":"223,-142v63,68,204,92,307,46v104,-47,185,-136,185,-281v0,-70,-22,-133,-66,-189xm610,-609v-64,-71,-211,-94,-318,-49v-127,53,-215,210,-162,385v11,33,27,64,48,92xm261,-739v142,-63,329,-20,414,69r100,-100r40,41r-100,100v81,90,127,268,63,408v-61,134,-178,237,-364,237v-116,0,-190,-41,-260,-95r-100,100r-41,-42r99,-99v-89,-85,-124,-271,-62,-410v42,-95,116,-167,211,-209","w":828},"\u00d9":{"d":"302,-1020r125,166r-44,27r-164,-149xm611,-277v-6,177,-98,293,-276,293v-178,0,-276,-116,-276,-293r0,-477r94,0r0,445v1,136,44,237,182,237v138,0,181,-101,182,-237r0,-445r94,0r0,477","w":669},"\u00da":{"d":"439,-976r-164,149r-44,-27r125,-166xm611,-277v-6,177,-98,293,-276,293v-178,0,-276,-116,-276,-293r0,-477r94,0r0,445v1,136,44,237,182,237v138,0,181,-101,182,-237r0,-445r94,0r0,477","w":669},"\u00db":{"d":"334,-1020r161,145r-59,46r-102,-96r-101,96r-58,-46xm611,-277v-6,177,-98,293,-276,293v-178,0,-276,-116,-276,-293r0,-477r94,0r0,445v1,136,44,237,182,237v138,0,181,-101,182,-237r0,-445r94,0r0,477","w":669},"\u00dc":{"d":"380,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm169,-920v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm611,-277v-6,177,-98,293,-276,293v-178,0,-276,-116,-276,-293r0,-477r94,0r0,445v1,136,44,237,182,237v138,0,181,-101,182,-237r0,-445r94,0r0,477","w":669},"\u00dd":{"d":"431,-976r-164,149r-44,-27r125,-166xm-6,-754r108,0r185,322r185,-322r108,0r-246,426r0,328r-94,0r0,-328","w":573},"\u00de":{"d":"396,-398v0,-119,-109,-134,-230,-132r0,270v124,3,230,-16,230,-138xm484,-396v-2,175,-133,228,-318,220r0,176r-94,0r0,-754r94,0r0,140v187,-2,320,39,318,218","w":495},"\u00df":{"d":"411,-497v123,36,196,205,133,349v-42,95,-128,166,-262,164r0,-84v114,-7,195,-76,195,-190v0,-120,-81,-175,-195,-185r0,-88v83,-4,135,-55,135,-138v0,-78,-52,-125,-130,-127v-122,-3,-129,117,-129,237r0,559r-90,0r0,-386r-40,0r0,-84r40,0r0,-148v1,-159,61,-265,222,-262v132,3,217,83,217,216v0,74,-32,130,-96,167","w":580},"\u00e0":{"d":"257,-734r125,166r-44,27r-164,-149xm247,-482v79,-3,127,46,164,92r0,-78r90,0r0,468r-90,0v-2,-23,4,-54,-2,-73v-33,48,-84,89,-159,89v-148,0,-224,-106,-224,-253v0,-142,79,-240,221,-245xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"\u00e1":{"d":"382,-690r-164,149r-44,-27r125,-166xm247,-482v79,-3,127,46,164,92r0,-78r90,0r0,468r-90,0v-2,-23,4,-54,-2,-73v-33,48,-84,89,-159,89v-148,0,-224,-106,-224,-253v0,-142,79,-240,221,-245xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"\u00e2":{"d":"277,-734r161,145r-59,46r-102,-96r-101,96r-58,-46xm247,-482v79,-3,127,46,164,92r0,-78r90,0r0,468r-90,0v-2,-23,4,-54,-2,-73v-33,48,-84,89,-159,89v-148,0,-224,-106,-224,-253v0,-142,79,-240,221,-245xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"\u00e3":{"d":"230,-611v-43,-23,-83,6,-96,38r-47,-40v26,-38,50,-79,111,-81v70,-2,100,49,161,53v32,2,50,-29,64,-48r47,39v-23,53,-87,106,-160,74xm247,-482v79,-3,127,46,164,92r0,-78r90,0r0,468r-90,0v-2,-23,4,-54,-2,-73v-33,48,-84,89,-159,89v-148,0,-224,-106,-224,-253v0,-142,79,-240,221,-245xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"\u00e4":{"d":"323,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm112,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm247,-482v79,-3,127,46,164,92r0,-78r90,0r0,468r-90,0v-2,-23,4,-54,-2,-73v-33,48,-84,89,-159,89v-148,0,-224,-106,-224,-253v0,-142,79,-240,221,-245xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"\u00e5":{"d":"233,-643v0,24,21,45,45,45v25,0,46,-20,46,-45v0,-25,-21,-46,-46,-46v-24,0,-45,22,-45,46xm188,-643v0,-49,41,-93,90,-91v55,2,91,36,91,91v0,55,-37,88,-91,90v-49,2,-90,-41,-90,-90xm247,-482v79,-3,127,46,164,92r0,-78r90,0r0,468r-90,0v-2,-23,4,-54,-2,-73v-33,48,-84,89,-159,89v-148,0,-224,-106,-224,-253v0,-142,79,-240,221,-245xm116,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168","w":556},"\u00e6":{"d":"573,-482v154,0,219,106,219,263r-357,0v5,89,51,155,141,155v77,0,107,-41,140,-91r76,43v-38,73,-115,128,-217,128v-80,0,-140,-41,-180,-87v-32,53,-102,87,-179,87v-106,0,-190,-47,-190,-153v0,-104,73,-157,177,-157v57,0,109,14,142,43v7,-99,-29,-154,-123,-153v-47,0,-90,2,-128,15r0,-80v111,-24,260,-21,301,64v37,-47,99,-77,178,-77xm340,-142v-8,-102,-226,-103,-230,3v7,104,226,100,230,-3xm704,-287v-10,-67,-54,-117,-129,-117v-72,0,-124,53,-133,117r262,0","w":807},"\u00e7":{"d":"195,181r-53,-27r87,-137r71,29xm282,-482v47,0,92,12,124,31r0,116v-37,-42,-81,-63,-134,-63v-95,0,-156,69,-156,164v0,101,61,166,162,166v59,0,97,-28,128,-62r0,115v-92,56,-248,26,-306,-39v-39,-43,-74,-99,-74,-176v0,-155,101,-252,256,-252","w":441},"\u00e8":{"d":"223,-734r125,166r-44,27r-164,-149xm383,-287v-10,-67,-54,-117,-129,-117v-72,0,-124,53,-133,117r262,0xm254,-482v154,0,219,106,219,263r-357,0v5,89,51,155,141,155v77,0,107,-41,140,-91r76,43v-38,73,-115,128,-217,128v-149,0,-230,-98,-230,-246v0,-152,74,-252,228,-252","w":488},"\u00e9":{"d":"348,-690r-164,149r-44,-27r125,-166xm383,-287v-10,-67,-54,-117,-129,-117v-72,0,-124,53,-133,117r262,0xm254,-482v154,0,219,106,219,263r-357,0v5,89,51,155,141,155v77,0,107,-41,140,-91r76,43v-38,73,-115,128,-217,128v-149,0,-230,-98,-230,-246v0,-152,74,-252,228,-252","w":488},"\u00ea":{"d":"243,-734r161,145r-59,46r-102,-96r-101,96r-58,-46xm383,-287v-10,-67,-54,-117,-129,-117v-72,0,-124,53,-133,117r262,0xm254,-482v154,0,219,106,219,263r-357,0v5,89,51,155,141,155v77,0,107,-41,140,-91r76,43v-38,73,-115,128,-217,128v-149,0,-230,-98,-230,-246v0,-152,74,-252,228,-252","w":488},"\u00eb":{"d":"289,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm78,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm383,-287v-10,-67,-54,-117,-129,-117v-72,0,-124,53,-133,117r262,0xm254,-482v154,0,219,106,219,263r-357,0v5,89,51,155,141,155v77,0,107,-41,140,-91r76,43v-38,73,-115,128,-217,128v-149,0,-230,-98,-230,-246v0,-152,74,-252,228,-252","w":488},"\u00ec":{"d":"106,-734r125,166r-44,27r-164,-149xm172,0r-90,0r0,-468r90,0r0,468","w":254},"\u00ed":{"d":"231,-690r-164,149r-44,-27r125,-166xm172,0r-90,0r0,-468r90,0r0,468","w":254},"\u00ee":{"d":"126,-734r161,145r-59,46r-102,-96r-101,96r-58,-46xm172,0r-90,0r0,-468r90,0r0,468","w":254},"\u00ef":{"d":"172,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm-39,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm172,0r-90,0r0,-468r90,0r0,468","w":254},"\u00f0":{"d":"40,-134v-79,-207,96,-398,296,-334r2,-2r-71,-103r-39,-51v-13,-16,-23,-27,-31,-34r-158,91r-50,-55r158,-91r-101,-111r78,-44r101,111r146,-83r49,54r-145,84r83,109v65,104,158,202,162,360v5,187,-169,294,-348,230v-62,-22,-109,-70,-132,-131xm430,-233v0,-97,-63,-163,-160,-163v-97,0,-160,66,-160,163v0,96,63,163,160,163v97,0,160,-67,160,-163","w":540},"\u00f1":{"d":"214,-611v-43,-23,-83,6,-96,38r-47,-40v26,-38,50,-79,111,-81v70,-2,100,49,161,53v32,2,50,-29,64,-48r47,39v-23,53,-87,106,-160,74xm268,-402v-105,0,-116,85,-116,187r0,215r-90,0r0,-468r90,0v2,20,-4,47,2,63v24,-46,77,-76,141,-77v124,-1,166,80,166,203r0,279r-90,0r0,-268v2,-83,-19,-134,-103,-134","w":523},"\u00f2":{"d":"249,-734r125,166r-44,27r-164,-149xm430,-233v0,-97,-63,-163,-160,-163v-97,0,-160,66,-160,163v0,96,63,163,160,163v97,0,160,-67,160,-163xm40,-134v-83,-222,112,-407,328,-329v111,40,186,186,132,329v-42,110,-187,187,-328,131v-61,-24,-109,-70,-132,-131","w":540},"\u00f3":{"d":"374,-690r-164,149r-44,-27r125,-166xm430,-233v0,-97,-63,-163,-160,-163v-97,0,-160,66,-160,163v0,96,63,163,160,163v97,0,160,-67,160,-163xm40,-134v-83,-222,112,-407,328,-329v111,40,186,186,132,329v-42,110,-187,187,-328,131v-61,-24,-109,-70,-132,-131","w":540},"\u00f4":{"d":"269,-734r161,145r-59,46r-102,-96r-101,96r-58,-46xm430,-233v0,-97,-63,-163,-160,-163v-97,0,-160,66,-160,163v0,96,63,163,160,163v97,0,160,-67,160,-163xm40,-134v-83,-222,112,-407,328,-329v111,40,186,186,132,329v-42,110,-187,187,-328,131v-61,-24,-109,-70,-132,-131","w":540},"\u00f5":{"d":"222,-611v-43,-23,-83,6,-96,38r-47,-40v26,-38,50,-79,111,-81v70,-2,100,49,161,53v32,2,50,-29,64,-48r47,39v-23,53,-87,106,-160,74xm430,-233v0,-97,-63,-163,-160,-163v-97,0,-160,66,-160,163v0,96,63,163,160,163v97,0,160,-67,160,-163xm40,-134v-83,-222,112,-407,328,-329v111,40,186,186,132,329v-42,110,-187,187,-328,131v-61,-24,-109,-70,-132,-131","w":540},"\u00f6":{"d":"315,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm104,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm430,-233v0,-97,-63,-163,-160,-163v-97,0,-160,66,-160,163v0,96,63,163,160,163v97,0,160,-67,160,-163xm40,-134v-83,-222,112,-407,328,-329v111,40,186,186,132,329v-42,110,-187,187,-328,131v-61,-24,-109,-70,-132,-131","w":540},"\u00f7":{"d":"227,-449v0,-34,28,-63,62,-63v34,0,62,29,62,63v0,34,-28,61,-62,61v-34,0,-62,-27,-62,-61xm227,-61v0,-34,28,-63,62,-63v34,0,62,29,62,63v0,34,-28,61,-62,61v-34,0,-62,-27,-62,-61xm33,-299r512,0r0,86r-512,0r0,-86"},"\u00f8":{"d":"270,-70v132,4,205,-159,125,-260r-222,228v27,22,53,31,97,32xm270,-396v-133,0,-203,156,-128,262r223,-229v-28,-22,-60,-33,-95,-33xm172,-463v87,-37,203,-14,257,39r66,-67r31,32r-65,64v49,59,79,171,39,261v-39,85,-112,150,-230,150v-73,0,-119,-22,-163,-58r-61,64r-31,-31r61,-62v-49,-61,-75,-171,-36,-261v26,-60,72,-105,132,-131","w":540},"\u00f9":{"d":"235,-734r125,166r-44,27r-164,-149xm256,16v-136,0,-198,-80,-198,-215r0,-269r90,0r0,259v0,82,25,141,108,141v83,0,108,-59,108,-141r0,-259r90,0r0,269v-1,135,-62,215,-198,215","w":512},"\u00fa":{"d":"360,-690r-164,149r-44,-27r125,-166xm256,16v-136,0,-198,-80,-198,-215r0,-269r90,0r0,259v0,82,25,141,108,141v83,0,108,-59,108,-141r0,-259r90,0r0,269v-1,135,-62,215,-198,215","w":512},"\u00fb":{"d":"255,-734r161,145r-59,46r-102,-96r-101,96r-58,-46xm256,16v-136,0,-198,-80,-198,-215r0,-269r90,0r0,259v0,82,25,141,108,141v83,0,108,-59,108,-141r0,-259r90,0r0,269v-1,135,-62,215,-198,215","w":512},"\u00fc":{"d":"301,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm90,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm256,16v-136,0,-198,-80,-198,-215r0,-269r90,0r0,259v0,82,25,141,108,141v83,0,108,-59,108,-141r0,-259r90,0r0,269v-1,135,-62,215,-198,215","w":512},"\u00fd":{"d":"346,-690r-164,149r-44,-27r125,-166xm-13,-468r105,0r158,297r147,-297r101,0r-379,736r-102,0r184,-348","w":484},"\u00fe":{"d":"140,-234v0,97,49,170,148,170v101,0,152,-70,152,-170v0,-99,-53,-168,-152,-168v-97,0,-148,71,-148,168xm306,16v-76,2,-125,-45,-161,-89r0,341r-90,0r0,-1136r90,0r0,478r2,0v40,-74,159,-121,255,-72v76,39,128,115,128,225v0,147,-76,249,-224,253","w":556},"\u00ff":{"d":"287,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm76,-634v0,-33,28,-60,61,-60v32,0,60,28,60,60v0,33,-27,61,-60,61v-34,0,-61,-27,-61,-61xm-13,-468r105,0r158,297r147,-297r101,0r-379,736r-102,0r184,-348","w":484}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1993 Adobe Systems Incorporated.  All Rights
 * Reserved.Futura is a registered trademark of Fundicion Tipografica Neufville S.
 * A.
 * 
 * Description:
 *  Copyright (c) 1987, 1991, 1993 Fundicion Tipografica Neufville S. A.  This
 * record material and the data recorded thereon is the property of  Fundicion
 * Tipografica Neufville S. A. and Adobe Systems Incorporated,  or its licensors,
 * and may not be reproduced, used, displayed, modified,  disclosed or transferred
 * in any manner without the express written  approval of Fundicion Tipografica
 * Neufville S. A. and Adobe Systems  Incorporated.
 * 
 * Vendor URL:
 * www.linotypelibrary.com
 */
Cufon.registerFont({"w":686,"face":{"font-family":"Futura LT Book","font-weight":700,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 8 3 4 0 0 2 0 3","ascent":"800","descent":"-200","bbox":"-76 -1040 1441 264","underline-thickness":"50","underline-position":"-75","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":343},"!":{"d":"98,-754r189,0r0,498r-189,0r0,-498xm75,-97v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117","w":384},"\"":{"d":"453,-754r-27,331r-116,0r-27,-331r170,0xm217,-754r-27,331r-116,0r-27,-331r170,0","w":500},"#":{"d":"287,-286r102,0r26,-124r-104,0xm371,-726r-39,203r101,0r39,-203r105,0r-39,203r80,0r0,113r-98,0r-24,124r94,0r0,113r-118,0r-33,173r-106,0r33,-173r-101,0r-33,173r-106,0r33,-173r-91,0r0,-113r113,0r24,-124r-96,0r0,-113r117,0r39,-203r106,0"},"$":{"d":"618,-246v-1,150,-88,213,-210,244r0,125r-93,0r0,-119v-106,-4,-185,-40,-247,-91r82,-151v46,40,100,80,181,84v62,3,120,-54,81,-108v-109,-74,-308,-65,-301,-256v5,-133,78,-221,204,-235r0,-121r93,0r0,121v70,8,132,26,182,58r-74,145v-32,-26,-75,-46,-128,-49v-54,-3,-113,41,-74,86v55,64,176,62,238,119v37,34,66,77,66,148"},"%":{"d":"835,-174v0,-45,-40,-85,-85,-85v-45,0,-85,40,-85,85v0,45,40,84,85,84v45,0,85,-39,85,-84xm544,-176v0,-122,84,-183,206,-183v122,0,206,61,206,183v0,124,-83,186,-206,186v-123,0,-206,-62,-206,-186xm755,-754r-438,754r-98,0r438,-754r98,0xm310,-579v0,-45,-40,-85,-85,-85v-45,0,-85,40,-85,85v0,45,40,84,85,84v45,0,85,-39,85,-84xm19,-581v0,-122,84,-183,206,-183v122,0,206,61,206,183v0,124,-83,186,-206,186v-123,0,-206,-62,-206,-186","w":975},"&":{"d":"573,-288v37,-33,71,-66,99,-107r111,106r-104,111r169,178r-245,0r-65,-70v-68,44,-154,89,-258,90v-166,1,-281,-121,-230,-290v23,-77,95,-112,168,-144v-30,-44,-70,-79,-70,-153v0,-135,100,-207,234,-207v134,0,236,71,236,205v0,104,-70,144,-140,181xm397,-641v-60,0,-79,73,-43,116r39,46v30,-17,70,-47,70,-92v0,-38,-27,-70,-66,-70xm264,-278v-49,48,-9,127,62,122v41,-3,77,-14,105,-31r-119,-128v-17,12,-34,23,-48,37","w":848},"'":{"d":"210,-754r-27,331r-116,0r-27,-331r170,0","w":250},"(":{"d":"194,240v-161,-198,-189,-656,-64,-918v19,-40,39,-78,64,-112r109,62v-72,118,-115,269,-115,454v0,180,43,339,115,452","w":352},")":{"d":"164,-274v0,-185,-43,-336,-115,-454r109,-62v189,233,189,801,0,1030r-109,-62v72,-113,115,-272,115,-452","w":352},"*":{"d":"286,-754r-5,107r89,-56r45,76r-95,50r94,52r-45,75r-88,-57r4,101r-90,0r6,-100r-85,54r-45,-76r90,-50r-93,-51r46,-76r87,55r-5,-104r90,0","w":483},"+":{"d":"268,-513r150,0r0,181r181,0r0,150r-181,0r0,182r-150,0r0,-182r-181,0r0,-150r181,0r0,-181"},",":{"d":"323,-191r-184,332r-117,0r130,-332r171,0","w":343},"-":{"d":"339,-396r0,150r-286,0r0,-150r286,0","w":392},".":{"d":"55,-97v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117","w":343},"\/":{"d":"552,-830r-382,923r-143,0r382,-923r143,0","w":579},"0":{"d":"405,-170v87,-99,101,-416,-62,-441v-165,24,-147,345,-62,441v30,35,94,35,124,0xm198,-748v78,-46,212,-45,290,0v143,82,211,306,156,518v-37,143,-124,260,-301,260v-225,0,-320,-182,-320,-407v0,-170,63,-304,175,-371"},"1":{"d":"161,-588r0,-166r304,0r0,754r-196,0r0,-588r-108,0"},"2":{"d":"46,-494v11,-179,109,-290,294,-290v194,0,328,137,283,342v-29,132,-149,189,-231,276r247,0r0,166r-606,0r308,-335v38,-43,88,-109,86,-185v-1,-55,-32,-96,-86,-98v-63,-3,-92,59,-79,124r-216,0"},"3":{"d":"335,-624v-50,0,-82,38,-80,87r-182,0v19,-154,112,-247,280,-247v144,0,241,74,241,219v0,67,-30,130,-79,155v107,25,149,184,99,298v-67,152,-375,192,-494,57v-42,-47,-84,-105,-86,-190r200,0v-1,59,44,107,105,107v59,0,106,-41,105,-101v-2,-71,-65,-115,-138,-95r0,-131v64,5,105,-25,106,-83v1,-45,-33,-76,-77,-76"},"4":{"d":"382,-596r-2,0r-176,290r178,0r0,-290xm655,-306r0,150r-91,0r0,156r-182,0r0,-156r-366,0r0,-125r291,-473r257,0r0,448r91,0"},"5":{"d":"416,-247v2,-143,-201,-152,-309,-98r66,-409r392,0r0,166r-261,0r-13,86v199,-30,326,74,329,265v4,221,-223,307,-445,251v-42,-11,-81,-29,-118,-52r29,-185v52,46,121,87,210,87v69,0,119,-41,120,-111","w":689},"6":{"d":"214,-249v0,74,49,125,124,125v74,0,121,-50,121,-125v0,-74,-47,-123,-121,-123v-75,0,-124,50,-124,123xm339,30v-207,5,-357,-140,-306,-353v44,-185,178,-293,273,-431r222,0r-214,255r2,2v57,-28,145,-31,205,-1v83,42,142,124,142,243v0,189,-136,281,-324,285"},"7":{"d":"71,-588r0,-166r619,0r-433,754r-215,0r344,-588r-315,0"},"8":{"d":"86,-569v0,-146,112,-215,257,-215v145,0,257,69,257,215v0,92,-54,143,-119,173v84,28,149,91,150,198v3,269,-444,290,-549,102v-16,-29,-27,-63,-27,-102v-2,-109,71,-167,150,-200v-68,-26,-119,-81,-119,-171xm433,-223v0,-55,-35,-94,-90,-94v-55,0,-90,39,-90,94v0,55,35,92,90,92v55,0,90,-37,90,-92xm426,-563v0,-51,-33,-85,-83,-85v-51,0,-83,34,-83,85v0,51,32,85,83,85v50,0,83,-34,83,-85"},"9":{"d":"473,-505v0,-75,-50,-124,-125,-124v-74,0,-121,49,-121,124v0,75,47,124,121,124v75,0,125,-49,125,-124xm224,-766v241,-74,496,69,429,336v-46,184,-177,292,-272,430r-223,0r215,-254r-2,-2v-57,28,-148,31,-207,1v-83,-43,-141,-125,-141,-244v0,-147,87,-232,201,-267"},":":{"d":"55,-434v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117xm55,-97v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117","w":343},";":{"d":"101,-434v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117xm309,-191r-184,332r-117,0r130,-332r171,0","w":343},"<":{"d":"99,-317r489,-182r0,150r-274,91r0,2r274,91r0,150r-489,-182r0,-120"},"=":{"d":"599,-212r0,150r-512,0r0,-150r512,0xm599,-452r0,150r-512,0r0,-150r512,0"},">":{"d":"588,-197r-489,182r0,-150r274,-91r0,-2r-274,-91r0,-150r489,182r0,120"},"?":{"d":"164,-97v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117xm550,-539v-4,125,-84,183,-181,216r0,71r-183,0r0,-194v84,16,167,-14,171,-94v2,-41,-32,-75,-73,-75v-45,0,-70,33,-70,76r-199,0v6,-157,118,-235,274,-235v117,0,194,60,237,140v16,30,24,62,24,95","w":595},"@":{"d":"280,-558v70,-39,173,-19,207,41r10,-53r95,0r-57,304v0,32,30,24,49,6v55,-52,86,-175,51,-270v-45,-122,-220,-189,-367,-128v-103,42,-169,139,-169,281v0,189,115,296,302,303v72,3,139,-17,179,-40r82,66v-102,56,-287,98,-420,38v-135,-61,-237,-179,-237,-367v0,-187,100,-307,233,-367v131,-60,305,-21,384,57v58,57,111,127,112,234v1,133,-57,235,-139,282v-59,34,-128,19,-139,-39v-27,30,-69,60,-128,58v-132,-4,-198,-142,-154,-276v19,-58,56,-103,106,-130xm378,-469v-62,2,-94,53,-98,115v-5,64,55,113,116,82v63,-32,86,-200,-18,-197","w":740},"A":{"d":"393,-521r-2,0r-81,240r163,0xm256,-131r-52,131r-208,0r290,-754r214,0r284,754r-209,0r-49,-131r-270,0","w":781,"k":{"\u2019":74,"y":60,"w":37,"v":60,"Y":120,"W":80,"V":110,"T":60}},"B":{"d":"388,-531v1,-68,-60,-75,-128,-73r0,146v68,2,128,-6,128,-73xm639,-210v0,154,-119,210,-273,210r-302,0r0,-754r280,0v139,1,225,55,224,196v0,78,-30,125,-83,156v103,12,154,82,154,192xm441,-230v1,-89,-92,-83,-181,-82r0,162v85,0,180,5,181,-80","w":677},"C":{"d":"268,-742v104,-47,239,-37,335,6r0,235v-35,-49,-95,-83,-172,-83v-127,0,-201,83,-201,209v0,128,77,205,204,205v72,0,134,-37,169,-80r0,235v-98,36,-221,52,-325,7v-140,-59,-254,-174,-252,-368v2,-186,107,-305,242,-366","w":660},"D":{"d":"521,-377v0,-151,-97,-220,-261,-211r0,422v162,8,261,-58,261,-211xm64,-754v151,6,314,-20,426,29v131,57,235,169,235,348v0,179,-104,291,-235,348v-113,50,-275,22,-426,29r0,-754","w":752},"E":{"d":"260,-588r0,126r221,0r0,166r-221,0r0,130r233,0r0,166r-429,0r0,-754r429,0r0,166r-233,0","w":550},"F":{"d":"260,-588r0,126r215,0r0,166r-215,0r0,296r-196,0r0,-754r433,0r0,166r-237,0","w":542,"k":{"A":55,".":129,",":129}},"G":{"d":"230,-372v0,132,66,236,199,236v87,0,153,-46,158,-131r-160,0r0,-154r389,0v3,275,-128,446,-388,446v-192,0,-314,-96,-372,-236v-40,-96,-39,-233,0,-329v58,-144,183,-239,379,-239v172,0,282,82,340,211r-186,78v-24,-66,-77,-120,-163,-120v-132,0,-196,107,-196,238","w":842},"H":{"d":"543,-463r0,-291r196,0r0,754r-196,0r0,-309r-283,0r0,309r-196,0r0,-754r196,0r0,291r283,0","w":803},"I":{"d":"260,0r-196,0r0,-754r196,0r0,754","w":324},"J":{"d":"177,-146v54,0,56,-57,56,-111r0,-497r196,0r0,509v-3,167,-83,265,-250,265v-94,0,-153,-49,-194,-111r113,-119v18,23,45,64,79,64","w":489},"K":{"d":"499,-754r243,0r-300,357r327,397r-254,0r-253,-327r-2,0r0,327r-196,0r0,-754r196,0r0,311r2,0","w":758},"L":{"d":"260,-166r235,0r0,166r-431,0r0,-754r196,0r0,588","w":495,"k":{"\u2019":74,"y":37,"Y":92,"W":55,"V":92,"T":55}},"M":{"d":"147,-754r193,0r153,403r162,-403r195,0r114,754r-196,0r-55,-434r-2,0r-181,434r-78,0r-173,-434r-2,0r-63,434r-195,0","w":983},"N":{"d":"64,-754r196,0r359,461r2,0r0,-461r196,0r0,754r-196,0r-359,-462r-2,0r0,462r-196,0r0,-754","w":881},"O":{"d":"639,-465v-37,-90,-155,-153,-279,-107v-93,35,-160,150,-113,272v37,95,156,167,279,118v92,-37,163,-162,113,-283xm60,-548v77,-171,303,-288,540,-202v144,52,260,169,260,359v0,200,-104,325,-250,385v-99,41,-235,41,-334,0v-146,-61,-250,-185,-250,-385v0,-57,12,-109,34,-157","w":887},"P":{"d":"434,-500v0,-98,-78,-99,-174,-96r0,188v93,2,174,3,174,-92xm638,-506v1,177,-93,255,-267,256r-111,0r0,250r-196,0r0,-754r300,0v170,2,273,77,274,248","w":661,"k":{"A":74,".":129,",":140}},"Q":{"d":"860,-375v0,115,-40,195,-97,265r127,129r-180,28r-60,-71v-91,58,-262,64,-374,18v-146,-61,-250,-185,-250,-385v0,-190,118,-302,260,-359v164,-65,367,-8,454,81v68,69,120,163,120,294xm621,-263v35,-46,45,-128,19,-192v-37,-93,-155,-164,-279,-117v-94,36,-163,151,-114,272v36,89,134,160,257,125r-121,-120r185,-23","w":887},"R":{"d":"415,-510v0,-83,-71,-96,-155,-94r0,188v84,2,155,-11,155,-94xm619,-522v0,119,-62,193,-165,213r237,309r-244,0r-185,-290r-2,0r0,290r-196,0r0,-754r293,0v159,2,262,73,262,232","w":680,"k":{"Y":40,"W":20,"V":20}},"S":{"d":"60,-521v0,-258,307,-307,496,-191r-78,152v-32,-27,-76,-50,-130,-50v-53,-1,-104,42,-75,92v65,65,199,59,260,127v30,33,54,74,54,137v0,231,-217,320,-431,252v-45,-15,-87,-37,-126,-64r84,-158v45,37,98,75,174,78v65,2,119,-54,82,-111v-62,-61,-191,-57,-254,-116v-36,-34,-56,-76,-56,-148","w":616},"T":{"d":"364,0r-196,0r0,-588r-162,0r0,-166r520,0r0,166r-162,0r0,588","w":533,"k":{"\u00ad":100,"y":80,"w":80,"u":80,"s":92,"r":55,"o":74,"e":74,"c":74,"a":74,"A":60,";":68,":":37,".":111,",":92}},"U":{"d":"389,-152v116,0,133,-92,133,-205r0,-397r196,0r-2,496v1,234,-231,320,-462,259v-136,-36,-194,-149,-194,-331r0,-424r196,0r0,397v-2,113,17,205,133,205","w":778},"V":{"d":"380,-296r183,-458r213,0r-322,754r-152,0r-317,-754r213,0","w":761,"k":{"\u00ad":55,"y":18,"u":37,"r":37,"o":74,"i":-20,"e":74,"a":74,"A":90,";":92,":":55,".":149,",":160}},"W":{"d":"320,-267r2,0r158,-487r156,0r148,487r2,0r142,-487r204,0r-241,754r-200,0r-132,-437r-2,0r-148,437r-199,0r-225,-754r204,0","w":1117,"k":{"\u00ad":37,"u":40,"r":40,"o":40,"e":40,"a":37,"A":80,";":60,":":18,".":92,",":140}},"X":{"d":"46,-754r241,0r115,195r115,-195r241,0r-241,351r279,403r-236,0r-158,-246r-173,246r-237,0r295,-403","w":789},"Y":{"d":"-19,-754r235,0r141,205r141,-205r235,0r-278,392r0,362r-196,0r0,-362","w":714,"k":{"\u00ad":92,"v":55,"u":74,"q":92,"p":74,"o":120,"i":-20,"e":92,"a":92,"A":120,";":120,":":74,".":120,",":120}},"Z":{"d":"657,-166r0,166r-646,0r357,-588r-296,0r0,-166r624,0r-355,588r316,0","w":707},"[":{"d":"191,134r107,0r0,106r-246,0r0,-1030r246,0r0,106r-107,0r0,818","w":350},"\\":{"d":"171,-830r381,830r-142,0r-383,-830r144,0","w":579},"]":{"d":"159,-684r-107,0r0,-106r246,0r0,1030r-246,0r0,-106r107,0r0,-818","w":350},"^":{"d":"103,-407r180,-377r120,0r180,377r-114,67r-126,-269r-126,269"},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"`":{"d":"186,-820r141,172r-81,59r-171,-151","w":402},"a":{"d":"176,-508v88,-42,215,-20,263,45r0,-50r182,0r0,513r-182,0v-2,-18,4,-43,-2,-57v-40,72,-170,91,-259,52v-113,-50,-192,-205,-136,-357v25,-66,71,-116,134,-146xm445,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115","w":682},"b":{"d":"464,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm498,-5v-91,43,-218,17,-262,-52r0,57r-182,0r0,-830r182,0r0,367v48,-65,175,-84,264,-45v113,50,189,205,133,356v-24,67,-72,117,-135,147","w":682},"c":{"d":"106,-452v62,-65,223,-108,324,-48r0,154v-24,-17,-55,-36,-94,-36v-76,0,-123,49,-125,125v-2,74,54,127,128,126v36,0,71,-15,91,-35r0,154v-63,33,-164,39,-236,9v-96,-40,-171,-118,-171,-248v0,-88,38,-154,83,-201","w":483},"d":{"d":"452,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm182,-508v88,-42,216,-20,264,45r0,-367r182,0r0,830r-182,0v-2,-18,4,-43,-2,-57v-40,72,-171,91,-260,52v-113,-50,-191,-205,-135,-357v25,-66,70,-116,133,-146","w":682},"e":{"d":"306,-530v188,0,284,110,281,304r-383,0v0,75,38,114,114,114v44,-1,69,-16,87,-47r175,0v-30,113,-123,176,-261,176v-180,0,-297,-93,-297,-273v0,-176,108,-274,284,-274xm418,-331v-8,-71,-112,-106,-173,-61v-20,14,-33,34,-38,61r211,0","w":610},"f":{"d":"323,-682v-80,-3,-60,94,-63,169r127,0r0,150r-127,0r0,363r-182,0r0,-363r-64,0r0,-150r64,0v0,-99,1,-189,52,-245v53,-58,165,-108,257,-64r0,157v-20,-8,-37,-16,-64,-17","w":388,"k":{"\u2019":-20}},"g":{"d":"447,-260v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm180,-508v90,-43,216,-21,261,49r0,-54r182,0r0,463v11,238,-158,345,-390,294v-98,-22,-183,-77,-199,-184r204,0v9,34,46,50,86,51v99,2,121,-70,117,-171v-43,42,-85,69,-163,70v-193,1,-297,-179,-234,-368v23,-68,72,-120,136,-150","w":677},"h":{"d":"337,-385v-69,1,-95,53,-95,122r0,263r-182,0r0,-830r182,0r0,382r2,0v39,-51,82,-82,164,-82v133,0,193,84,193,216r0,314r-182,0r0,-263v0,-67,-14,-123,-82,-122","w":661},"i":{"d":"49,-710v0,-61,41,-102,102,-102v61,0,102,41,102,102v0,61,-41,102,-102,102v-61,0,-102,-41,-102,-102xm242,0r-182,0r0,-513r182,0r0,513","w":302},"j":{"d":"49,-710v0,-61,41,-102,102,-102v61,0,102,41,102,102v0,61,-41,102,-102,102v-61,0,-102,-41,-102,-102xm242,256r-182,0r0,-769r182,0r0,769","w":302},"k":{"d":"242,-328r189,-185r249,0r-257,237r273,276r-255,0r-199,-209r0,209r-182,0r0,-830r182,0r0,502","w":688},"l":{"d":"242,0r-182,0r0,-830r182,0r0,830","w":302},"m":{"d":"323,-389v-74,0,-81,72,-81,144r0,245r-182,0r0,-513r182,0v2,20,-4,48,2,64v38,-51,84,-81,162,-81v85,0,143,37,175,98v29,-57,95,-97,174,-98v126,0,175,78,175,203r0,327r-182,0r0,-245v0,-70,-4,-140,-75,-140v-77,0,-87,66,-87,140r0,245r-182,0r0,-245v0,-72,-7,-144,-81,-144","w":989},"n":{"d":"337,-385v-71,0,-94,49,-95,119r0,266r-182,0r0,-513r182,0v2,21,-4,49,2,66v39,-56,80,-83,164,-83v135,0,193,81,193,213r0,317r-182,0r0,-291v-2,-56,-22,-95,-82,-94","w":661},"o":{"d":"448,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm22,-256v0,-224,210,-317,427,-256v110,31,191,115,191,256v0,217,-214,318,-426,255v-109,-32,-192,-114,-192,-255","w":662},"p":{"d":"464,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm500,-4v-88,41,-216,19,-264,-45r0,305r-182,0r0,-769r182,0v2,18,-4,44,2,58v41,-72,169,-93,260,-53v113,50,191,206,135,358v-24,66,-70,117,-133,146","w":682},"q":{"d":"452,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm184,-508v90,-45,219,-17,262,53r0,-58r182,0r0,769r-182,0r0,-305v-48,64,-175,83,-264,45v-114,-48,-189,-205,-133,-356v24,-66,73,-117,135,-148","w":682},"r":{"d":"368,-362v-170,-7,-118,206,-126,362r-182,0r0,-513r182,0v2,27,-4,61,2,84v35,-67,100,-96,201,-91r0,175v-23,-14,-44,-17,-77,-17","w":453,"k":{"\u2019":-40,"z":-20,"y":-18,"w":-18,"v":-18,"t":-18,"q":18,"o":18,"g":-18,"f":-20,".":92,",":92}},"s":{"d":"75,-290v-51,-177,117,-272,303,-232v28,5,55,13,82,25r-61,116v-24,-13,-64,-24,-98,-25v-35,-1,-75,27,-47,56v51,32,137,27,178,71v24,26,43,56,43,105v0,215,-307,229,-449,132r66,-127v38,25,85,48,144,52v39,3,75,-33,47,-63v-65,-40,-184,-27,-208,-110","w":513},"t":{"d":"259,0r-182,0r0,-363r-59,0r0,-150r59,0r0,-154r182,0r0,154r103,0r0,150r-103,0r0,363","w":360},"u":{"d":"330,17v-162,0,-273,-57,-273,-221r0,-309r182,0r0,274v-1,69,21,111,91,111v70,0,91,-42,91,-111r0,-274r182,0r0,309v0,164,-111,221,-273,221","w":659},"v":{"d":"312,-250r122,-263r204,0r-268,513r-116,0r-269,-513r204,0","w":623,"k":{".":74,",":120}},"w":{"d":"315,-235r129,-278r108,0r129,278r129,-278r201,0r-268,513r-118,0r-127,-281r-127,281r-118,0r-268,-513r202,0","w":996,"k":{".":92,",":140}},"x":{"d":"33,-513r231,0r92,106r92,-106r235,0r-212,235r256,278r-239,0r-132,-152r-132,152r-239,0r256,-278","w":712},"y":{"d":"-15,-513r210,0r137,263r134,-263r207,0r-411,769r-204,0r175,-326","w":654,"k":{".":92,",":120}},"z":{"d":"528,-151r0,151r-520,0r241,-362r-209,0r0,-151r512,0r-240,362r216,0","w":559},"{":{"d":"106,-164v1,-47,-22,-66,-70,-63r0,-104v40,1,70,-10,70,-53r0,-253v2,-84,42,-153,113,-153r97,0r0,120v-50,-5,-71,10,-71,59r0,225v3,71,-45,94,-96,108v63,6,96,42,96,117r0,222v-5,48,21,64,71,59r0,120r-97,0v-69,-12,-113,-68,-113,-151r0,-253","w":352},"|":{"d":"365,214r-150,0r0,-1000r150,0r0,1000","w":579},"}":{"d":"246,-384v-1,43,29,54,70,53r0,104v-47,-3,-71,16,-70,63r0,253v-2,83,-43,151,-113,151r-97,0r0,-120v50,5,71,-10,71,-59r0,-222v-4,-78,38,-107,96,-119v-55,-9,-96,-38,-96,-106r0,-225v5,-48,-21,-64,-71,-59r0,-120r97,0v70,12,113,69,113,153r0,253","w":352},"~":{"d":"225,-395v98,0,143,96,236,106v36,-9,48,-52,62,-84r114,97v-43,77,-119,199,-242,140r-56,-32v-37,-18,-69,-54,-112,-58v-37,8,-49,54,-65,84r-113,-96v50,-55,79,-157,176,-157"},"\u20ac":{"d":"107,-472v39,-205,232,-334,487,-286v48,9,81,20,100,35r-47,174v-34,-26,-102,-49,-155,-49v-97,0,-161,42,-194,126r327,0r-19,76r-324,0v-1,21,-1,42,2,61r307,0r-24,76r-261,0v37,79,100,119,189,119v43,0,115,-24,143,-43r0,187v-41,17,-90,26,-147,26v-200,1,-344,-119,-381,-289r-105,0r24,-76r70,0r-2,-61r-92,0r24,-76r78,0","w":689},"\u201a":{"d":"319,-191r-184,331r-116,0r130,-331r170,0","w":338},"\u0192":{"d":"633,-639v-25,-19,-80,-46,-113,-19v-37,30,-36,99,-49,153r110,0r-13,76r-110,0r-51,279v-28,179,-97,344,-307,331r-106,-9r30,-165v41,9,102,15,134,-6v49,-33,61,-125,74,-197r42,-233r-86,0r12,-76r88,0v21,-96,28,-192,82,-256v58,-69,207,-93,292,-35"},"\u201e":{"d":"575,-191r-184,331r-116,0r130,-331r170,0xm319,-191r-184,331r-116,0r130,-331r170,0","w":594},"\u2026":{"d":"50,-97v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117xm716,-97v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117xm383,-97v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117","w":1000},"\u2020":{"d":"426,-754r0,205r177,0r0,144r-177,0r0,585r-166,0r0,-585r-176,0r0,-144r176,0r0,-205r166,0"},"\u2021":{"d":"427,-754r0,185r176,0r0,144r-176,0r0,142r176,0r0,144r-176,0r0,318r-166,0r0,-318r-177,0r0,-144r177,0r0,-142r-177,0r0,-144r177,0r0,-185r166,0"},"\u02c6":{"d":"293,-829r221,164r-77,84r-144,-111r-144,111r-74,-84","w":590},"\u2030":{"d":"1320,-174v0,-45,-40,-85,-85,-85v-45,0,-85,40,-85,85v0,45,40,84,85,84v45,0,85,-39,85,-84xm1029,-176v0,-122,84,-183,206,-183v122,0,206,61,206,183v0,124,-83,186,-206,186v-123,0,-206,-62,-206,-186xm835,-174v0,-45,-40,-85,-85,-85v-45,0,-85,40,-85,85v0,45,40,84,85,84v45,0,85,-39,85,-84xm544,-176v0,-122,84,-183,206,-183v122,0,206,61,206,183v0,124,-83,186,-206,186v-123,0,-206,-62,-206,-186xm755,-754r-438,754r-98,0r438,-754r98,0xm310,-579v0,-45,-40,-85,-85,-85v-45,0,-85,40,-85,85v0,45,40,84,85,84v45,0,85,-39,85,-84xm19,-581v0,-122,84,-183,206,-183v122,0,206,61,206,183v0,124,-83,186,-206,186v-123,0,-206,-62,-206,-186","w":1460},"\u0160":{"d":"162,-1040r144,112r144,-112r77,85r-221,163r-218,-163xm60,-521v0,-258,307,-307,496,-191r-78,152v-32,-27,-76,-50,-130,-50v-53,-1,-104,42,-75,92v65,65,199,59,260,127v30,33,54,74,54,137v0,231,-217,320,-431,252v-45,-15,-87,-37,-126,-64r84,-158v45,37,98,75,174,78v65,2,119,-54,82,-111v-62,-61,-191,-57,-254,-116v-36,-34,-56,-76,-56,-148","w":616},"\u2039":{"d":"301,-146r-103,72r-172,-246r172,-246r100,69r-126,177","w":354},"\u0152":{"d":"634,-294v69,-186,-95,-346,-275,-278v-93,35,-160,157,-113,278v36,92,158,162,277,112v51,-22,92,-60,111,-112xm660,-83v-61,66,-126,108,-240,108v-186,0,-303,-114,-363,-249v-72,-160,-3,-350,85,-434v67,-64,157,-120,278,-121v97,0,177,31,240,94r0,-69r424,0r0,166r-229,0r0,126r213,0r0,166r-213,0r0,130r229,0r0,166r-424,0r0,-83","w":1140},"\u017d":{"d":"218,-1040r144,112r144,-112r77,85r-221,163r-218,-163xm657,-166r0,166r-646,0r357,-588r-296,0r0,-166r624,0r-355,588r316,0","w":707},"\u2018":{"d":"19,-423r184,-331r116,0r-130,331r-170,0","w":372,"k":{"\u2018":40}},"\u2019":{"d":"353,-754r-184,331r-116,0r130,-331r170,0","w":372,"k":{"\u2019":40,"t":40,"s":160}},"\u201c":{"d":"19,-423r184,-331r116,0r-130,331r-170,0xm275,-423r184,-331r116,0r-130,331r-170,0","w":628},"\u201d":{"d":"609,-754r-184,331r-116,0r130,-331r170,0xm353,-754r-184,331r-116,0r130,-331r170,0","w":628},"\u2022":{"d":"155,-377v0,-114,74,-189,189,-189v114,0,188,75,188,189v0,114,-75,188,-188,188v-115,0,-189,-74,-189,-188"},"\u2013":{"d":"500,-396r0,150r-500,0r0,-150r500,0","w":500},"\u2014":{"d":"870,-396r0,150r-740,0r0,-150r740,0","w":1000},"\u02dc":{"d":"192,-653v-25,-1,-26,20,-34,37r-82,0v-7,-97,51,-175,152,-150v39,9,78,26,121,28v27,1,31,-16,40,-36r85,0v-8,92,-60,180,-168,152v-37,-10,-71,-28,-114,-31","w":549},"\u2122":{"d":"384,-676r-123,0r0,326r-97,0r0,-326r-123,0r0,-78r343,0r0,78xm899,-350r-88,0r0,-326r-2,0r-117,326r-52,0r-117,-326r-2,0r0,326r-88,0r0,-404r142,0r91,239r91,-239r142,0r0,404","w":940},"\u0161":{"d":"111,-829r144,112r144,-112r77,85r-221,163r-218,-163xm75,-290v-51,-177,117,-272,303,-232v28,5,55,13,82,25r-61,116v-24,-13,-64,-24,-98,-25v-35,-1,-75,27,-47,56v51,32,137,27,178,71v24,26,43,56,43,105v0,215,-307,229,-449,132r66,-127v38,25,85,48,144,52v39,3,75,-33,47,-63v-65,-40,-184,-27,-208,-110","w":513},"\u203a":{"d":"182,-320r-126,-177r100,-69r172,246r-172,246r-103,-72","w":354},"\u0153":{"d":"720,-530v188,3,284,110,281,304r-383,0v0,75,38,114,114,114v44,-1,69,-16,87,-47r175,0v-30,113,-123,176,-261,176v-100,0,-165,-26,-208,-89v-54,61,-105,89,-208,89v-179,0,-296,-93,-296,-273v0,-178,117,-274,294,-274v99,0,153,24,210,77v39,-51,106,-78,195,-77xm447,-256v0,-70,-48,-116,-117,-116v-69,0,-117,47,-117,116v0,69,47,115,117,115v70,0,117,-46,117,-115xm829,-331v-8,-71,-112,-106,-173,-61v-20,14,-33,34,-38,61r211,0","w":1022},"\u017e":{"d":"134,-829r144,112r144,-112r77,85r-221,163r-218,-163xm528,-151r0,151r-520,0r241,-362r-209,0r0,-151r512,0r-240,362r216,0","w":559},"\u0178":{"d":"396,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm140,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm-19,-754r235,0r141,205r141,-205r235,0r-278,392r0,362r-196,0r0,-362","w":714},"\u00a0":{"w":343},"\u00a1":{"d":"287,-255r0,498r-189,0r0,-498r189,0xm75,-415v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117","w":384},"\u00a2":{"d":"545,-132v-18,6,-37,13,-58,16r0,106r-93,0r0,-99v-119,-8,-194,-77,-233,-167v-13,-32,-20,-66,-20,-101v0,-164,102,-254,253,-273r0,-93r93,0r0,99r58,17r0,163v-22,-20,-49,-38,-88,-38v-76,0,-126,45,-126,122v0,74,46,123,120,123v39,0,75,-14,94,-38r0,163"},"\u00a3":{"d":"336,-300v11,35,13,99,0,134v50,14,98,35,159,38v30,0,51,-19,51,-49r122,0v-5,137,-104,222,-254,184r-131,-35v-45,-12,-115,-17,-127,28r-130,0v21,-90,68,-170,172,-177v22,-46,3,-89,-18,-123r-161,0r0,-76r108,0v-21,-34,-36,-77,-36,-128v0,-167,117,-264,292,-264v193,0,279,93,278,284r-194,0v6,-77,-25,-127,-91,-130v-119,-5,-110,174,-54,238r156,0r0,76r-142,0"},"\u00a4":{"d":"477,-375v0,-80,-51,-133,-131,-133v-80,0,-131,53,-131,133v0,80,52,125,131,125v79,0,131,-45,131,-125xm178,-606v74,-65,256,-69,328,0r67,-67r62,62r-62,63v67,74,73,259,-2,329r66,66r-60,65r-67,-66v-72,71,-261,70,-333,-1r-66,66r-62,-63r66,-66v-64,-72,-66,-253,0,-325r-66,-67r62,-63"},"\u00a5":{"d":"491,-446r-56,84r198,0r0,76r-198,0r0,286r-184,0r0,-286r-200,0r0,-76r199,0r-57,-84r-142,0r0,-76r92,0r-154,-232r222,0r132,205r132,-205r222,0r-155,232r91,0r0,76r-142,0"},"\u00a6":{"d":"365,-411r-150,0r0,-250r150,0r0,250xm365,89r-150,0r0,-250r150,0r0,250","w":579},"\u00a7":{"d":"98,-583v-10,-221,355,-246,442,-91v14,23,22,52,23,85r-157,0v-7,-32,-32,-60,-71,-60v-62,0,-72,82,-24,107r230,119v50,31,89,71,89,151v0,72,-41,123,-84,157v31,26,51,78,51,130v0,179,-188,249,-364,201v-98,-27,-177,-93,-174,-219r183,0v1,57,43,85,98,91v67,7,104,-84,48,-120v-95,-60,-226,-89,-298,-171v-22,-26,-33,-59,-33,-100v0,-72,44,-127,86,-163v-26,-23,-43,-73,-45,-117xm241,-399v-35,14,-41,80,-5,101v69,40,145,73,216,111v29,-19,35,-80,1,-101v-66,-41,-142,-73,-212,-111"},"\u00a8":{"d":"331,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm75,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98","w":604},"\u00a9":{"d":"197,-380v-3,-161,121,-263,285,-219v64,17,107,68,120,140r-90,0v-6,-47,-47,-73,-98,-73v-84,0,-123,65,-123,150v0,83,44,149,126,153v46,2,95,-31,95,-77r90,0v-14,95,-81,154,-185,154v-138,0,-217,-90,-220,-228xm98,-376v0,231,200,357,421,280v108,-38,183,-135,183,-280v0,-145,-78,-237,-183,-282v-120,-51,-273,-4,-335,64v-47,53,-86,122,-86,218xm680,-96v-82,90,-276,156,-435,85v-135,-61,-241,-179,-241,-365v0,-187,106,-307,241,-367v94,-41,214,-41,309,0v136,61,242,180,242,367v0,120,-55,213,-116,280","w":800},"\u00aa":{"d":"178,-774v43,0,81,16,103,40r0,-30r118,0r0,308r-118,0v-2,-10,3,-27,-2,-34v-17,28,-58,44,-100,44v-102,0,-168,-64,-168,-164v0,-100,65,-164,167,-164xm133,-610v0,39,36,70,76,70v40,0,76,-31,76,-70v0,-39,-36,-70,-76,-70v-40,0,-76,31,-76,70","w":409},"\u00ab":{"d":"301,-146r-103,72r-172,-246r172,-246r100,69r-126,177xm550,-146r-103,72r-172,-246r172,-246r100,69r-126,177","w":603},"\u00ac":{"d":"449,-302r-362,0r0,-150r512,0r0,311r-150,0r0,-161"},"\u00ad":{"d":"339,-396r0,150r-286,0r0,-150r286,0","w":392},"\u2010":{"d":"339,-396r0,150r-286,0r0,-150r286,0","w":392},"\u00ae":{"d":"516,-473v-6,-66,-114,-35,-182,-42r0,104v76,-7,191,28,182,-62xm602,-461v0,78,-40,106,-112,112r100,174r-100,0r-92,-174r-64,0r0,174r-92,0r0,-412v156,9,360,-47,360,126xm98,-376v0,231,200,357,421,280v108,-38,183,-135,183,-280v0,-145,-78,-237,-183,-282v-120,-51,-273,-4,-335,64v-47,53,-86,122,-86,218xm680,-96v-82,90,-276,156,-435,85v-135,-61,-241,-179,-241,-365v0,-187,106,-307,241,-367v94,-41,214,-41,309,0v136,61,242,180,242,367v0,120,-55,213,-116,280","w":800},"\u00af":{"d":"527,-752r0,107r-452,0r0,-107r452,0","w":603},"\u00b0":{"d":"200,-559v35,0,65,-30,65,-65v0,-34,-30,-65,-66,-65v-33,0,-64,31,-64,65v0,35,30,65,65,65xm140,-762v107,-40,210,31,210,139v0,90,-61,144,-151,149v-134,8,-194,-168,-107,-256v13,-14,29,-25,48,-32","w":400},"\u00b1":{"d":"599,-150r0,150r-512,0r0,-150r512,0xm268,-654r150,0r0,142r181,0r0,150r-181,0r0,142r-150,0r0,-142r-181,0r0,-150r181,0r0,-142"},"\u00b2":{"d":"203,-784v109,3,189,54,189,161v0,76,-34,105,-79,144r-76,66r160,0r0,99r-394,0r201,-201v24,-25,56,-64,56,-111v0,-28,-25,-58,-56,-58v-40,0,-61,34,-52,74r-140,0v3,-105,79,-177,191,-174","w":412},"\u00b3":{"d":"396,-446v5,173,-282,188,-358,74v-16,-24,-35,-50,-34,-89r130,0v0,36,30,63,68,63v37,0,69,-23,68,-60v0,-41,-45,-70,-90,-57r0,-78v40,3,69,-14,69,-50v0,-27,-22,-45,-50,-45v-31,0,-52,22,-52,52r-118,0v9,-93,81,-149,182,-148v91,1,157,42,157,131v0,41,-20,78,-52,93v48,14,78,55,80,114","w":412},"\u00b4":{"d":"156,-589r-81,-59r141,-172r111,80","w":402},"\u00b5":{"d":"370,17v-58,2,-104,-24,-131,-49r0,288r-182,0r0,-769r182,0r0,274v-1,69,21,111,91,111v70,0,91,-42,91,-111r0,-274r182,0r0,309v-1,148,-94,216,-233,221","w":659},"\u00b6":{"d":"640,-754r0,91r-66,0r0,833r-101,0r0,-832r-93,0r0,832r-101,0r0,-460v-135,-12,-220,-79,-231,-215v-9,-110,56,-186,130,-227v27,-15,56,-22,85,-22r377,0"},"\u00b7":{"d":"55,-256v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117","w":343},"\u22c5":{"d":"55,-256v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117","w":343},"\u2219":{"d":"55,-256v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117","w":343},"\u00b8":{"d":"153,237r-78,-49r130,-158r99,64","w":380},"\u00b9":{"d":"93,-667r0,-99r197,0r0,452r-127,0r0,-353r-70,0","w":412},"\u00ba":{"d":"281,-610v0,-39,-36,-69,-76,-69v-40,0,-75,30,-75,69v0,39,35,69,75,69v40,0,76,-30,76,-69xm5,-610v0,-112,87,-164,200,-164v113,0,201,53,201,164v0,111,-88,164,-201,164v-113,0,-200,-52,-200,-164","w":410},"\u00bb":{"d":"431,-320r-126,-177r100,-69r172,246r-172,246r-103,-72xm182,-320r-126,-177r100,-69r172,246r-172,246r-103,-72","w":603},"\u00bc":{"d":"743,-754r-438,754r-98,0r438,-754r98,0xm752,-357r-2,0r-114,174r116,0r0,-174xm929,-184r0,90r-59,0r0,94r-118,0r0,-94r-238,0r0,-75r189,-283r167,0r0,268r59,0xm100,-655r0,-99r197,0r0,452r-127,0r0,-353r-70,0","w":1029},"\u00bd":{"d":"715,-754r-438,754r-98,0r438,-754r98,0xm735,-470v109,3,189,54,189,161v0,76,-34,105,-79,144r-76,66r160,0r0,99r-394,0r201,-201v24,-25,56,-64,56,-111v0,-28,-25,-58,-56,-58v-40,0,-61,34,-52,74r-140,0v3,-105,79,-177,191,-174xm100,-655r0,-99r197,0r0,452r-127,0r0,-353r-70,0","w":1029},"\u00be":{"d":"316,-428v0,-41,-45,-70,-90,-57r0,-78v40,3,69,-14,69,-50v0,-27,-22,-45,-50,-45v-31,0,-52,22,-52,52r-118,0v9,-93,81,-149,182,-148v91,1,157,42,157,131v0,41,-20,78,-52,93v48,14,78,55,80,114v5,173,-282,188,-358,74v-16,-24,-35,-50,-34,-89r130,0v-1,38,31,63,68,63v37,0,69,-23,68,-60xm829,-754r-438,754r-98,0r438,-754r98,0xm802,-357r-2,0r-114,174r116,0r0,-174xm979,-184r0,90r-59,0r0,94r-118,0r0,-94r-238,0r0,-75r189,-283r167,0r0,268r59,0","w":1029},"\u00bf":{"d":"197,-415v0,-70,47,-117,117,-117v70,0,117,47,117,117v0,71,-47,117,-117,117v-70,0,-117,-46,-117,-117xm45,29v4,-125,84,-183,181,-216r0,-71r183,0r0,194v-84,-16,-167,14,-171,94v-2,41,32,75,73,75v45,0,70,-33,70,-76r199,0v-6,157,-118,235,-274,235v-117,0,-194,-60,-237,-140v-16,-30,-24,-62,-24,-95","w":595},"\u00c0":{"d":"356,-1031r141,172r-81,59r-171,-151xm393,-521r-2,0r-81,240r163,0xm256,-131r-52,131r-208,0r290,-754r214,0r284,754r-209,0r-49,-131r-270,0","w":781},"\u00c1":{"d":"366,-800r-81,-59r141,-172r111,80xm393,-521r-2,0r-81,240r163,0xm256,-131r-52,131r-208,0r290,-754r214,0r284,754r-209,0r-49,-131r-270,0","w":781},"\u00c2":{"d":"389,-1040r221,164r-77,84r-144,-111r-144,111r-74,-84xm393,-521r-2,0r-81,240r163,0xm256,-131r-52,131r-208,0r290,-754r214,0r284,754r-209,0r-49,-131r-270,0","w":781},"\u00c3":{"d":"308,-864v-25,-1,-26,20,-34,37r-82,0v-7,-97,51,-176,152,-151v39,9,78,27,121,29v27,1,31,-16,40,-36r85,0v-8,92,-60,180,-168,152v-37,-10,-71,-28,-114,-31xm393,-521r-2,0r-81,240r163,0xm256,-131r-52,131r-208,0r290,-754r214,0r284,754r-209,0r-49,-131r-270,0","w":781},"\u00c4":{"d":"420,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm164,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm393,-521r-2,0r-81,240r163,0xm256,-131r-52,131r-208,0r290,-754r214,0r284,754r-209,0r-49,-131r-270,0","w":781},"\u00c5":{"d":"449,-896v0,-31,-31,-42,-58,-43v-28,0,-59,12,-59,43v0,31,31,43,59,43v27,0,58,-12,58,-43xm237,-895v0,-85,68,-116,152,-116v85,0,155,29,155,115v0,84,-68,115,-152,115v-85,0,-155,-29,-155,-114xm393,-521r-2,0r-81,240r163,0xm256,-131r-52,131r-208,0r290,-754r214,0r284,754r-209,0r-49,-131r-270,0","w":781},"\u00c6":{"d":"523,-131r-273,0r-47,131r-207,0r291,-754r462,0r61,166r-248,0r46,126r247,0r63,166r-249,0r49,130r248,0r60,166r-454,0xm389,-505r-85,224r166,0","w":1026},"\u00c7":{"d":"318,237r-78,-49r130,-158r99,64xm268,-742v104,-47,239,-37,335,6r0,235v-35,-49,-95,-83,-172,-83v-127,0,-201,83,-201,209v0,128,77,205,204,205v72,0,134,-37,169,-80r0,235v-98,36,-221,52,-325,7v-140,-59,-254,-174,-252,-368v2,-186,107,-305,242,-366","w":660},"\u00c8":{"d":"260,-1031r141,172r-81,59r-171,-151xm260,-588r0,126r221,0r0,166r-221,0r0,130r233,0r0,166r-429,0r0,-754r429,0r0,166r-233,0","w":550},"\u00c9":{"d":"230,-800r-81,-59r141,-172r111,80xm260,-588r0,126r221,0r0,166r-221,0r0,130r233,0r0,166r-429,0r0,-754r429,0r0,166r-233,0","w":550},"\u00ca":{"d":"273,-1040r221,164r-77,84r-144,-111r-144,111r-74,-84xm260,-588r0,126r221,0r0,166r-221,0r0,130r233,0r0,166r-429,0r0,-754r429,0r0,166r-233,0","w":550},"\u00cb":{"d":"304,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm48,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm260,-588r0,126r221,0r0,166r-221,0r0,130r233,0r0,166r-429,0r0,-754r429,0r0,166r-233,0","w":550},"\u00cc":{"d":"132,-1031r141,172r-81,59r-171,-151xm260,0r-196,0r0,-754r196,0r0,754","w":324},"\u00cd":{"d":"132,-800r-81,-59r141,-172r111,80xm260,0r-196,0r0,-754r196,0r0,754","w":324},"\u00ce":{"d":"175,-1040r221,164r-77,84r-144,-111r-144,111r-74,-84xm260,0r-196,0r0,-754r196,0r0,754","w":324},"\u00cf":{"d":"191,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm-65,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm260,0r-196,0r0,-754r196,0r0,754","w":324},"\u00d0":{"d":"64,-309r-84,0r0,-154r84,0r0,-291v148,5,306,-16,418,28v139,55,243,164,243,349v0,185,-108,294,-246,349v-112,45,-268,23,-415,28r0,-309xm521,-377v0,-151,-97,-220,-261,-211r0,125r110,0r0,154r-110,0r0,143v162,8,261,-58,261,-211","w":752},"\u00d1":{"d":"358,-864v-25,-1,-26,20,-34,37r-82,0v-7,-97,51,-176,152,-151v39,9,78,27,121,29v27,1,31,-16,40,-36r85,0v-8,92,-60,180,-168,152v-37,-10,-71,-28,-114,-31xm64,-754r196,0r359,461r2,0r0,-461r196,0r0,754r-196,0r-359,-462r-2,0r0,462r-196,0r0,-754","w":881},"\u00d2":{"d":"409,-1031r141,172r-81,59r-171,-151xm639,-465v-37,-90,-155,-153,-279,-107v-93,35,-160,150,-113,272v37,95,156,167,279,118v92,-37,163,-162,113,-283xm60,-548v77,-171,303,-288,540,-202v144,52,260,169,260,359v0,200,-104,325,-250,385v-99,41,-235,41,-334,0v-146,-61,-250,-185,-250,-385v0,-57,12,-109,34,-157","w":887},"\u00d3":{"d":"419,-800r-81,-59r141,-172r111,80xm639,-465v-37,-90,-155,-153,-279,-107v-93,35,-160,150,-113,272v37,95,156,167,279,118v92,-37,163,-162,113,-283xm60,-548v77,-171,303,-288,540,-202v144,52,260,169,260,359v0,200,-104,325,-250,385v-99,41,-235,41,-334,0v-146,-61,-250,-185,-250,-385v0,-57,12,-109,34,-157","w":887},"\u00d4":{"d":"442,-1040r221,164r-77,84r-144,-111r-144,111r-74,-84xm639,-465v-37,-90,-155,-153,-279,-107v-93,35,-160,150,-113,272v37,95,156,167,279,118v92,-37,163,-162,113,-283xm60,-548v77,-171,303,-288,540,-202v144,52,260,169,260,359v0,200,-104,325,-250,385v-99,41,-235,41,-334,0v-146,-61,-250,-185,-250,-385v0,-57,12,-109,34,-157","w":887},"\u00d5":{"d":"361,-864v-25,-1,-26,20,-34,37r-82,0v-7,-97,50,-176,151,-151v39,9,79,27,122,29v27,1,31,-16,40,-36r85,0v-8,92,-61,180,-169,152v-37,-10,-70,-28,-113,-31xm639,-465v-37,-90,-155,-153,-279,-107v-93,35,-160,150,-113,272v37,95,156,167,279,118v92,-37,163,-162,113,-283xm60,-548v77,-171,303,-288,540,-202v144,52,260,169,260,359v0,200,-104,325,-250,385v-99,41,-235,41,-334,0v-146,-61,-250,-185,-250,-385v0,-57,12,-109,34,-157","w":887},"\u00d6":{"d":"473,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm217,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm639,-465v-37,-90,-155,-153,-279,-107v-93,35,-160,150,-113,272v37,95,156,167,279,118v92,-37,163,-162,113,-283xm60,-548v77,-171,303,-288,540,-202v144,52,260,169,260,359v0,200,-104,325,-250,385v-99,41,-235,41,-334,0v-146,-61,-250,-185,-250,-385v0,-57,12,-109,34,-157","w":887},"\u00d7":{"d":"87,-407r106,-106r150,152r149,-152r106,106r-149,151r150,150r-106,106r-150,-150r-150,150r-106,-106r151,-150"},"\u00d8":{"d":"610,-6v-135,55,-325,31,-418,-46r-93,92r-78,-80r90,-89v-79,-92,-118,-285,-51,-419v65,-133,195,-231,383,-231v102,0,185,32,250,78r95,-93r78,80r-90,89v82,84,109,269,53,402v-43,100,-118,176,-219,217xm337,-194v81,54,205,20,256,-35v50,-54,89,-173,37,-252xm550,-560v-74,-51,-210,-26,-257,32v-63,49,-85,175,-33,253","w":887},"\u00d9":{"d":"354,-1031r141,172r-81,59r-171,-151xm389,-152v116,0,133,-92,133,-205r0,-397r196,0r-2,496v1,234,-231,320,-462,259v-136,-36,-194,-149,-194,-331r0,-424r196,0r0,397v-2,113,17,205,133,205","w":778},"\u00da":{"d":"364,-800r-81,-59r141,-172r111,80xm389,-152v116,0,133,-92,133,-205r0,-397r196,0r-2,496v1,234,-231,320,-462,259v-136,-36,-194,-149,-194,-331r0,-424r196,0r0,397v-2,113,17,205,133,205","w":778},"\u00db":{"d":"387,-1040r221,164r-77,84r-144,-111r-144,111r-74,-84xm389,-152v116,0,133,-92,133,-205r0,-397r196,0r-2,496v1,234,-231,320,-462,259v-136,-36,-194,-149,-194,-331r0,-424r196,0r0,397v-2,113,17,205,133,205","w":778},"\u00dc":{"d":"418,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm162,-913v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm389,-152v116,0,133,-92,133,-205r0,-397r196,0r-2,496v1,234,-231,320,-462,259v-136,-36,-194,-149,-194,-331r0,-424r196,0r0,397v-2,113,17,205,133,205","w":778},"\u00dd":{"d":"352,-800r-81,-59r141,-172r111,80xm-19,-754r235,0r141,205r141,-205r235,0r-278,392r0,362r-196,0r0,-362","w":714},"\u00de":{"d":"434,-380v0,-98,-78,-99,-174,-96r0,188v93,2,174,3,174,-92xm638,-386v1,177,-93,255,-267,256r-111,0r0,130r-196,0r0,-754r196,0r0,120r104,0v170,2,273,77,274,248","w":661},"\u00df":{"d":"318,-683v-65,0,-76,49,-76,114r0,569r-182,0r0,-297r-52,0r0,-145r52,0r0,-147v-8,-174,100,-251,260,-251v148,0,249,73,249,221v0,82,-40,117,-89,157v89,35,151,89,149,213v-4,192,-128,275,-334,266r0,-155v75,3,138,-44,135,-121v-3,-78,-54,-124,-135,-122r0,-145v56,2,99,-22,99,-81v0,-46,-30,-76,-76,-76","w":651},"\u00e0":{"d":"326,-820r141,172r-81,59r-171,-151xm176,-508v88,-42,215,-20,263,45r0,-50r182,0r0,513r-182,0v-2,-18,4,-43,-2,-57v-40,72,-170,91,-259,52v-113,-50,-192,-205,-136,-357v25,-66,71,-116,134,-146xm445,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115","w":682},"\u00e1":{"d":"316,-589r-81,-59r141,-172r111,80xm176,-508v88,-42,215,-20,263,45r0,-50r182,0r0,513r-182,0v-2,-18,4,-43,-2,-57v-40,72,-170,91,-259,52v-113,-50,-192,-205,-136,-357v25,-66,71,-116,134,-146xm445,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115","w":682},"\u00e2":{"d":"339,-829r221,164r-77,84r-144,-111r-144,111r-74,-84xm176,-508v88,-42,215,-20,263,45r0,-50r182,0r0,513r-182,0v-2,-18,4,-43,-2,-57v-40,72,-170,91,-259,52v-113,-50,-192,-205,-136,-357v25,-66,71,-116,134,-146xm445,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115","w":682},"\u00e3":{"d":"259,-653v-25,-1,-26,20,-34,37r-82,0v-7,-97,50,-175,151,-150v39,9,79,26,122,28v27,1,31,-16,40,-36r85,0v-8,92,-61,180,-169,152v-37,-10,-70,-28,-113,-31xm176,-508v88,-42,215,-20,263,45r0,-50r182,0r0,513r-182,0v-2,-18,4,-43,-2,-57v-40,72,-170,91,-259,52v-113,-50,-192,-205,-136,-357v25,-66,71,-116,134,-146xm445,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115","w":682},"\u00e4":{"d":"370,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm114,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm176,-508v88,-42,215,-20,263,45r0,-50r182,0r0,513r-182,0v-2,-18,4,-43,-2,-57v-40,72,-170,91,-259,52v-113,-50,-192,-205,-136,-357v25,-66,71,-116,134,-146xm445,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115","w":682},"\u00e5":{"d":"400,-700v0,-31,-31,-42,-58,-43v-28,0,-59,12,-59,43v0,31,31,43,59,43v27,0,58,-12,58,-43xm188,-699v0,-85,68,-116,152,-116v85,0,155,29,155,115v0,84,-68,115,-152,115v-85,0,-155,-29,-155,-114xm176,-508v88,-42,215,-20,263,45r0,-50r182,0r0,513r-182,0v-2,-18,4,-43,-2,-57v-40,72,-170,91,-259,52v-113,-50,-192,-205,-136,-357v25,-66,71,-116,134,-146xm445,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115","w":682},"\u00e6":{"d":"102,-506v116,-39,297,-35,342,67v38,-55,103,-91,193,-91v188,0,284,110,281,304r-383,0v0,75,38,114,114,114v44,-1,69,-16,87,-47r175,0v-30,113,-123,176,-261,176v-98,0,-175,-31,-206,-101v-42,57,-117,101,-208,101v-115,0,-210,-50,-215,-165v-7,-170,209,-201,346,-145v11,-141,-178,-109,-265,-77r0,-136xm371,-162v0,-45,-52,-56,-97,-56v-39,0,-76,15,-76,55v0,79,173,71,173,1xm752,-331v-8,-71,-112,-106,-173,-61v-20,14,-33,34,-38,61r211,0","w":940},"\u00e7":{"d":"205,237r-78,-49r130,-158r99,64xm106,-452v62,-65,223,-108,324,-48r0,154v-24,-17,-55,-36,-94,-36v-76,0,-123,49,-125,125v-2,74,54,127,128,126v36,0,71,-15,91,-35r0,154v-63,33,-164,39,-236,9v-96,-40,-171,-118,-171,-248v0,-88,38,-154,83,-201","w":483},"\u00e8":{"d":"265,-820r141,172r-81,59r-171,-151xm306,-530v188,0,284,110,281,304r-383,0v0,75,38,114,114,114v44,-1,69,-16,87,-47r175,0v-30,113,-123,176,-261,176v-180,0,-297,-93,-297,-273v0,-176,108,-274,284,-274xm418,-331v-8,-71,-112,-106,-173,-61v-20,14,-33,34,-38,61r211,0","w":610},"\u00e9":{"d":"285,-589r-81,-59r141,-172r111,80xm306,-530v188,0,284,110,281,304r-383,0v0,75,38,114,114,114v44,-1,69,-16,87,-47r175,0v-30,113,-123,176,-261,176v-180,0,-297,-93,-297,-273v0,-176,108,-274,284,-274xm418,-331v-8,-71,-112,-106,-173,-61v-20,14,-33,34,-38,61r211,0","w":610},"\u00ea":{"d":"303,-829r221,164r-77,84r-144,-111r-144,111r-74,-84xm306,-530v188,0,284,110,281,304r-383,0v0,75,38,114,114,114v44,-1,69,-16,87,-47r175,0v-30,113,-123,176,-261,176v-180,0,-297,-93,-297,-273v0,-176,108,-274,284,-274xm418,-331v-8,-71,-112,-106,-173,-61v-20,14,-33,34,-38,61r211,0","w":610},"\u00eb":{"d":"334,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm78,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm306,-530v188,0,284,110,281,304r-383,0v0,75,38,114,114,114v44,-1,69,-16,87,-47r175,0v-30,113,-123,176,-261,176v-180,0,-297,-93,-297,-273v0,-176,108,-274,284,-274xm418,-331v-8,-71,-112,-106,-173,-61v-20,14,-33,34,-38,61r211,0","w":610},"\u00ec":{"d":"121,-820r141,172r-81,59r-171,-151xm242,0r-182,0r0,-513r182,0r0,513","w":302},"\u00ed":{"d":"121,-589r-81,-59r141,-172r111,80xm242,0r-182,0r0,-513r182,0r0,513","w":302},"\u00ee":{"d":"149,-829r221,164r-77,84r-144,-111r-144,111r-74,-84xm242,0r-182,0r0,-513r182,0r0,513","w":302},"\u00ef":{"d":"180,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm-76,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm242,0r-182,0r0,-513r182,0r0,513","w":302},"\u00f0":{"d":"448,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm354,-512v-32,-40,-72,-81,-113,-112r-130,69r-66,-71r109,-58v-35,-22,-73,-44,-113,-60r106,-104r137,69r21,14r127,-67r65,73r-104,55v116,102,247,195,247,407v0,202,-120,314,-315,314v-127,0,-223,-61,-273,-149v-36,-62,-39,-167,-6,-234v49,-99,160,-171,308,-146","w":662},"\u00f1":{"d":"248,-653v-25,-1,-26,20,-34,37r-82,0v-7,-97,51,-175,152,-150v39,9,78,26,121,28v27,1,31,-16,40,-36r85,0v-8,92,-60,180,-168,152v-37,-10,-71,-28,-114,-31xm337,-385v-71,0,-94,49,-95,119r0,266r-182,0r0,-513r182,0v2,21,-4,49,2,66v39,-56,80,-83,164,-83v135,0,193,81,193,213r0,317r-182,0r0,-291v-2,-56,-22,-95,-82,-94","w":661},"\u00f2":{"d":"291,-820r141,172r-81,59r-171,-151xm448,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm22,-256v0,-224,210,-317,427,-256v110,31,191,115,191,256v0,217,-214,318,-426,255v-109,-32,-192,-114,-192,-255","w":662},"\u00f3":{"d":"311,-589r-81,-59r141,-172r111,80xm448,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm22,-256v0,-224,210,-317,427,-256v110,31,191,115,191,256v0,217,-214,318,-426,255v-109,-32,-192,-114,-192,-255","w":662},"\u00f4":{"d":"329,-829r221,164r-77,84r-144,-111r-144,111r-74,-84xm448,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm22,-256v0,-224,210,-317,427,-256v110,31,191,115,191,256v0,217,-214,318,-426,255v-109,-32,-192,-114,-192,-255","w":662},"\u00f5":{"d":"249,-653v-25,-1,-26,20,-34,37r-82,0v-7,-97,50,-175,151,-150v39,9,79,26,122,28v27,1,31,-16,40,-36r85,0v-8,92,-61,180,-169,152v-37,-10,-70,-28,-113,-31xm448,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm22,-256v0,-224,210,-317,427,-256v110,31,191,115,191,256v0,217,-214,318,-426,255v-109,-32,-192,-114,-192,-255","w":662},"\u00f6":{"d":"360,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm104,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm448,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm22,-256v0,-224,210,-317,427,-256v110,31,191,115,191,256v0,217,-214,318,-426,255v-109,-32,-192,-114,-192,-255","w":662},"\u00f7":{"d":"271,-459v0,-39,33,-72,72,-72v39,0,72,33,72,72v0,39,-33,72,-72,72v-39,0,-72,-33,-72,-72xm271,-55v0,-39,33,-72,72,-72v39,0,72,33,72,72v0,39,-33,72,-72,72v-39,0,-72,-33,-72,-72xm599,-332r0,150r-512,0r0,-150r512,0"},"\u00f8":{"d":"548,-54v-80,75,-278,95,-386,31r-71,70r-70,-63r66,-65v-63,-58,-87,-198,-40,-292v48,-96,145,-157,284,-157v63,0,119,13,169,40r71,-70r70,62r-66,66v61,59,88,198,40,292v-17,34,-40,61,-67,86xm288,-148v98,33,188,-47,153,-151xm374,-365v-98,-31,-187,47,-153,151","w":662},"\u00f9":{"d":"285,-820r141,172r-81,59r-171,-151xm330,17v-162,0,-273,-57,-273,-221r0,-309r182,0r0,274v-1,69,21,111,91,111v70,0,91,-42,91,-111r0,-274r182,0r0,309v0,164,-111,221,-273,221","w":659},"\u00fa":{"d":"315,-589r-81,-59r141,-172r111,80xm330,17v-162,0,-273,-57,-273,-221r0,-309r182,0r0,274v-1,69,21,111,91,111v70,0,91,-42,91,-111r0,-274r182,0r0,309v0,164,-111,221,-273,221","w":659},"\u00fb":{"d":"328,-829r221,164r-77,84r-144,-111r-144,111r-74,-84xm330,17v-162,0,-273,-57,-273,-221r0,-309r182,0r0,274v-1,69,21,111,91,111v70,0,91,-42,91,-111r0,-274r182,0r0,309v0,164,-111,221,-273,221","w":659},"\u00fc":{"d":"359,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm103,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm330,17v-162,0,-273,-57,-273,-221r0,-309r182,0r0,274v-1,69,21,111,91,111v70,0,91,-42,91,-111r0,-274r182,0r0,309v0,164,-111,221,-273,221","w":659},"\u00fd":{"d":"322,-589r-81,-59r141,-172r111,80xm-15,-513r210,0r137,263r134,-263r207,0r-411,769r-204,0r175,-326","w":654},"\u00fe":{"d":"464,-256v0,-72,-44,-116,-117,-116v-73,0,-115,44,-117,116v-2,67,46,115,117,115v71,0,117,-48,117,-115xm500,-4v-88,41,-216,19,-264,-45r0,305r-182,0r0,-1086r182,0r0,375r2,0v41,-72,169,-93,260,-53v113,50,191,206,135,358v-24,66,-70,117,-133,146","w":682},"\u00ff":{"d":"371,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm115,-702v0,-54,45,-98,99,-98v53,0,98,45,98,98v0,54,-44,98,-98,98v-55,0,-99,-43,-99,-98xm-15,-513r210,0r137,263r134,-263r207,0r-411,769r-204,0r175,-326","w":654}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1992, 1993 Adobe Systems Incorporated. All Rights
 * Reserved.Futura is a registered trademark of Fundicion Tipografica Neufville
 * S.A.
 * 
 * Trademark:
 * Futura is a registered trademark of Fundicion Tipografica Neufville S.A.
 * 
 * Description:
 * Copyright (c) 1987, 1991, 1992, 1993 Fundicion Tipografica Neufville S. A. This
 * record material and the data recorded thereon is the property of Fundicion
 * Tipografica Neufville S. A. and Adobe Systems Incorporated, or its licensors,
 * and may not be reproduced, used, displayed, modified, disclosed or transferred
 * in any manner without the express written approval of Fundicion Tipografica
 * Neufville S. A. and Adobe Systems Incorporated.
 * 
 * Vendor URL:
 * http://www.linotypelibrary.com
 */
Cufon.registerFont({"w":411,"face":{"font-family":"Futura LT Condensed","font-weight":500,"font-style":"oblique","font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 6 5 0 0 2 0 3","ascent":"800","descent":"-200","x-height":"8","bbox":"-157 -969 916 216","underline-thickness":"50","underline-position":"-75","slope":"-9","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":205},"!":{"d":"143,-112v56,-3,67,75,26,102v-32,33,-98,17,-96,-32v1,-39,33,-68,70,-70xm294,-754r-89,573r-100,0r89,-573r100,0","w":252},"\"":{"d":"265,-754r86,0r-47,226r-62,0xm134,-754r86,0r-47,226r-62,0","w":250},"#":{"d":"278,-317r57,-124r-88,0r-56,124r87,0xm108,-258r-107,0r26,-59r108,0r57,-124r-109,0r27,-59r109,0r118,-254r55,0r-117,254r88,0r116,-254r56,0r-117,254r111,0r-27,59r-112,0r-57,124r112,0r-24,59r-115,0r-119,258r-55,0r119,-258r-87,0r-121,258r-55,0"},"$":{"d":"216,-84v78,-1,103,-69,103,-145v0,-64,-46,-83,-84,-109v-71,-48,-140,-103,-117,-229v18,-102,74,-174,181,-187r11,-65r45,0r-11,65v73,6,122,40,129,111r-84,46v-1,-42,-33,-73,-77,-73v-97,0,-128,139,-70,196v73,71,202,101,173,263v-21,113,-69,198,-188,211r-11,67r-45,0r11,-67v-80,-7,-115,-41,-130,-114r90,-40v6,43,26,71,74,70"},"%":{"d":"200,-584v-6,36,-23,115,21,119v62,-19,66,-112,66,-185v0,-25,-5,-55,-29,-53v-47,5,-50,74,-58,119xm469,-171v7,-35,24,-115,-21,-118v-55,12,-54,92,-64,147v-6,34,-10,89,26,91v48,-7,50,-75,59,-120xm611,-754r-491,754r-62,0r491,-754r62,0xm401,9v-113,6,-89,-152,-67,-237v16,-62,46,-121,123,-121v64,0,90,43,86,107v-7,118,-22,245,-142,251xm212,-405v-114,3,-89,-151,-68,-237v15,-62,47,-120,124,-121v114,-3,89,152,67,237v-16,62,-46,119,-123,121","w":553},"&":{"d":"318,-625v-59,3,-86,77,-62,137r16,47v39,-37,93,-66,93,-136v0,-29,-16,-49,-47,-48xm147,-162v-2,45,24,87,70,86v41,-1,65,-26,85,-52r-77,-174v-40,38,-76,70,-78,140xm448,-591v-5,114,-81,167,-145,225r73,164r76,-88r56,52r-98,112r61,126r-111,0r-27,-59v-32,37,-80,69,-141,69v-96,0,-147,-70,-142,-172v5,-101,79,-163,139,-218v-18,-37,-36,-86,-35,-140v3,-110,63,-177,169,-181v74,-3,128,37,125,110","w":494},"\u2019":{"d":"301,-740r-138,265r-49,-14r110,-275","w":213,"k":{"s":55,"\u2019":18}},"(":{"d":"177,-186v0,99,13,191,32,275r-97,24v-57,-217,-34,-482,37,-665v28,-72,60,-143,100,-212r89,23v-80,158,-163,322,-161,555","w":276},")":{"d":"265,-764v59,208,32,478,-37,658v-29,75,-60,148,-100,219r-89,-24v82,-160,160,-326,163,-556v1,-99,-15,-191,-34,-274","w":276},"*":{"d":"313,-754r-20,133r122,-70r15,34r-126,66r106,64r-26,34r-101,-67r-16,129r-43,0r25,-132r-120,70r-18,-34r123,-64r-104,-60r25,-36r103,66r16,-133r39,0","w":357},"+":{"d":"294,-507r70,0r-34,216r172,0r-11,70r-172,0r-34,219r-70,0r34,-219r-171,0r11,-70r171,0","w":500},",":{"d":"169,-81r-138,265r-48,-14r109,-276","w":205},"-":{"d":"256,-297r-12,76r-178,0r12,-76r178,0","w":242},"\u00ad":{"d":"256,-297r-12,76r-178,0r12,-76r178,0","w":242},".":{"d":"120,-112v57,-3,67,75,26,102v-32,33,-97,18,-96,-32v1,-40,33,-68,70,-70","w":205},"\/":{"d":"566,-830r-531,933r-80,0r532,-933r79,0","w":407},"0":{"d":"169,-179v0,50,6,96,49,98v74,-14,86,-106,100,-183v19,-100,42,-203,42,-312v0,-50,-6,-95,-49,-97v-74,14,-87,106,-101,183v-19,99,-41,203,-41,311xm204,9v-174,0,-135,-247,-111,-386v25,-146,46,-300,153,-365v22,-14,49,-21,79,-21v173,2,133,245,110,386v-3,20,-7,43,-11,70v-22,120,-53,241,-142,295v-22,14,-48,21,-78,21"},"1":{"d":"372,-754r-117,754r-98,0r104,-667r-74,0r13,-87r172,0"},"2":{"d":"365,-583v7,-46,-4,-93,-53,-90v-73,5,-71,99,-84,164r-102,0v18,-133,47,-254,201,-254v163,0,163,160,111,277v-65,148,-158,271,-243,399r187,0r-13,87r-332,0r243,-387v33,-57,74,-122,85,-196"},"3":{"d":"309,-269v4,-59,-33,-87,-102,-78r14,-90v117,11,139,-70,139,-172v0,-33,-9,-66,-45,-64v-61,3,-69,65,-78,121r-96,0v17,-116,50,-211,185,-211v185,0,146,260,66,345v-13,14,-34,20,-52,30v53,12,72,51,72,109v0,155,-53,281,-214,288v-120,5,-153,-86,-128,-198r96,0v-11,46,-10,112,46,108v85,-7,91,-104,97,-188"},"4":{"d":"326,-601r-2,0r-173,320r124,0xm373,-281r48,0r-11,74r-48,0r-32,207r-98,0r32,-207r-203,0r13,-86r275,-461r98,0"},"5":{"d":"310,-289v7,-95,-82,-126,-173,-99r101,-366r240,0r-13,87r-163,0r-54,190v132,-8,184,83,164,212v-25,161,-118,307,-314,265v-18,-4,-35,-13,-53,-22r40,-89v26,14,45,33,83,30v102,-7,134,-104,142,-208"},"6":{"d":"180,-227v-9,51,-21,143,39,146v80,-20,81,-132,90,-222v4,-43,-18,-88,-63,-68v-45,20,-54,77,-66,144xm204,9v-193,6,-131,-270,-90,-395v45,-140,126,-253,199,-368r108,0r-197,322r2,2v23,-17,45,-34,82,-34v79,0,104,58,104,137v0,170,-31,331,-208,336"},"7":{"d":"492,-754r-346,754r-108,0r314,-667r-210,0r13,-87r337,0"},"8":{"d":"235,-524v0,36,6,70,41,71v63,-12,77,-89,77,-157v0,-31,-8,-67,-42,-63v-64,8,-76,78,-76,149xm184,-248v-10,59,-36,160,33,167v82,-12,90,-116,90,-200v0,-37,-9,-76,-47,-74v-53,3,-68,59,-76,107xm69,-138v0,-124,25,-241,127,-272v-46,-13,-62,-56,-62,-109v0,-136,44,-242,184,-244v96,-1,139,35,139,124v0,109,-31,199,-114,231v99,24,66,184,42,267v-24,83,-73,149,-181,150v-95,1,-135,-55,-135,-147"},"9":{"d":"234,-563v-11,60,-43,175,29,186v84,-17,92,-128,92,-220v0,-36,-8,-78,-45,-76v-52,3,-67,63,-76,110xm324,-763v186,-8,135,244,97,371v-46,152,-133,269,-210,392r-109,0r199,-315r-2,-2v-23,19,-42,29,-81,30v-78,0,-103,-56,-103,-133v0,-168,32,-335,209,-343"},":":{"d":"138,-494v39,-32,104,-14,95,41v-5,32,-34,61,-69,61v-56,0,-64,-71,-26,-102xm120,-112v57,-3,67,75,26,102v-32,33,-97,18,-96,-32v1,-40,33,-68,70,-70","w":205},";":{"d":"138,-494v39,-32,104,-14,95,41v-5,32,-34,61,-69,61v-56,0,-64,-71,-26,-102xm170,-81r-137,265r-49,-14r109,-276","w":205},"<":{"d":"88,-286r450,-232r-12,73r-365,191r305,191r-11,73r-377,-232","w":500},"=":{"d":"476,-124r-413,0r11,-70r413,0xm506,-314r-413,0r11,-70r413,0","w":500},">":{"d":"491,-222r-449,232r11,-73r365,-191r-305,-191r12,-73r376,232","w":500},"?":{"d":"183,-112v56,-3,67,75,26,102v-32,33,-98,17,-96,-32v1,-39,33,-68,70,-70xm286,-764v181,0,126,240,80,354v-16,39,-47,73,-103,72r-25,160r-88,0r36,-227v119,15,127,-106,127,-211v0,-30,-6,-62,-36,-62v-54,2,-51,63,-61,110r-94,0v17,-103,40,-196,164,-196","w":341},"@":{"d":"330,-380v-29,61,-48,166,37,169v122,-24,189,-154,207,-276v10,-68,-89,-64,-134,-31v-45,34,-84,84,-110,138xm417,-579v71,-43,190,-41,212,39r22,-48r69,0r-164,335v-13,21,-13,56,16,56v82,0,134,-77,170,-143v22,-41,36,-88,37,-148v3,-191,-218,-258,-388,-188v-136,56,-245,169,-245,354v0,170,109,270,280,270v132,0,224,-55,288,-129r63,0v-79,103,-189,191,-361,191v-159,0,-264,-79,-310,-195v-73,-184,29,-377,138,-467v94,-78,258,-147,413,-92v116,41,207,141,182,303v-18,116,-97,215,-186,268v-33,19,-67,29,-103,29v-36,-1,-76,-18,-80,-53v-30,27,-78,50,-129,51v-84,2,-133,-67,-118,-153v21,-123,100,-224,194,-280","w":800},"A":{"d":"297,-334r5,-274r-2,0r-120,383r120,0xm364,-754r45,754r-101,0r-6,-147r-150,0r-50,147r-98,0r281,-754r79,0","w":414,"k":{"y":18,"w":18,"v":18,"Y":55,"W":18,"V":37,"T":37,"\u2019":55}},"B":{"d":"222,-422v105,5,129,-76,129,-168v0,-54,-27,-86,-91,-79xm302,-260v0,-58,-28,-84,-93,-82r-40,257v109,6,133,-76,133,-175xm408,-260v0,156,-62,262,-227,260r-120,0r117,-754r125,0v102,-1,149,43,149,136v0,114,-35,209,-128,235v58,18,84,55,84,123","w":418},"C":{"d":"314,6v-213,40,-253,-168,-215,-371v30,-160,69,-318,195,-380v49,-24,133,-28,175,3r-15,91v-31,-22,-87,-26,-122,-3v-107,73,-129,238,-138,406v-5,100,36,181,144,160v10,-2,19,-6,30,-11r-14,88v-13,8,-26,14,-40,17","w":369},"D":{"d":"364,-300v22,-138,90,-377,-99,-369r-91,584v136,3,171,-100,190,-215xm290,-754v151,-7,215,70,206,225v-13,237,-38,512,-282,526v-47,3,-102,3,-153,3r117,-754r112,0","w":466},"E":{"d":"447,-754r-13,87r-169,0r-37,237r151,0r-14,87r-151,0r-40,256r169,0r-13,87r-269,0r117,-754r269,0","w":347},"F":{"d":"449,-754r-13,87r-171,0r-37,237r154,0r-14,87r-154,0r-53,343r-100,0r117,-754r271,0","w":342,"k":{"A":37,".":111,",":111}},"G":{"d":"193,-275v-6,90,-18,221,87,187v70,-22,73,-129,90,-223r-84,0r14,-87r184,0v-33,183,-38,398,-244,408v-191,9,-167,-222,-140,-385v23,-145,50,-287,144,-358v56,-42,180,-40,224,9v25,28,39,66,44,114r-101,39v-2,-54,-13,-103,-71,-99v-83,5,-93,93,-112,172v-8,36,-15,77,-22,122v-6,39,-10,72,-13,101","w":460},"H":{"d":"278,-754r-46,294r151,0r46,-294r100,0r-117,754r-100,0r58,-373r-151,0r-58,373r-100,0r117,-754r100,0","w":473},"I":{"d":"161,0r-100,0r117,-754r100,0","w":222},"J":{"d":"25,-112v30,31,105,36,127,-8v10,-20,16,-46,20,-72r87,-562r100,0r-88,567v-13,124,-74,221,-223,193v-15,-3,-28,-9,-39,-16","w":303},"K":{"d":"280,-754r-56,362r197,-362r103,0r-205,365r100,389r-115,0r-82,-382r-59,382r-102,0r117,-754r102,0","w":424},"L":{"d":"278,-754r-104,667r168,0r-13,87r-268,0r117,-754r100,0","w":331,"k":{"y":37,"Y":70,"W":50,"V":58,"T":58,"\u2019":92}},"M":{"d":"289,-754r22,544r2,0v19,-74,42,-142,67,-212r116,-332r88,0r-47,754r-98,0r25,-281r30,-239r-2,0r-34,108r-142,412r-69,0r-16,-520r-2,0r-110,520r-95,0r179,-754r86,0","w":561},"N":{"d":"204,-277r-43,277r-100,0r117,-754r96,0r87,573v14,-96,10,-205,25,-304r42,-269r100,0r-117,754r-93,0r-86,-581","w":472},"O":{"d":"400,-472v9,-81,20,-192,-58,-198v-81,11,-95,102,-115,180v-9,35,-14,73,-21,113v-9,57,-18,116,-18,175v0,61,9,118,63,118v82,0,95,-102,115,-180v16,-62,27,-141,34,-208xm236,10v-210,0,-157,-296,-123,-463v30,-148,71,-311,244,-311v211,0,156,295,123,463v-29,149,-72,311,-244,311","w":476},"P":{"d":"359,-583v0,-59,-27,-91,-94,-86r-39,250v103,9,133,-68,133,-164xm468,-612v-7,175,-69,286,-255,278r-52,334r-100,0r117,-754r120,0v106,-3,175,33,170,142","w":388,"k":{"A":30,".":129,",":129}},"Q":{"d":"405,-553v0,-61,-9,-117,-63,-117v-82,0,-95,102,-115,180v-9,35,-14,73,-21,113v-9,57,-18,116,-18,175v0,61,9,116,63,118v17,0,32,-5,43,-16r-49,-91r69,-48v11,17,17,39,31,54v28,-112,60,-236,60,-368xm510,-555v0,184,-36,351,-109,473r54,94r-73,46r-40,-79v-29,21,-60,30,-106,31v-210,-2,-157,-296,-123,-463v30,-148,71,-311,244,-311v119,0,153,91,153,209","w":479},"R":{"d":"351,-595v2,-54,-25,-80,-86,-74r-39,249v101,5,122,-80,125,-175xm460,-618v-5,119,-39,224,-139,251r82,367r-104,0r-79,-369r-2,0r-57,369r-100,0r117,-754r120,0v100,-3,167,32,162,136","w":416,"k":{"Y":18,"W":9,"V":9,"T":18}},"S":{"d":"105,-532v3,-150,93,-253,257,-226v17,4,32,10,47,19r-17,101v-22,-17,-43,-32,-80,-32v-87,0,-134,105,-89,179v55,89,161,150,136,304v-20,123,-117,225,-265,189v-19,-5,-34,-15,-47,-28r15,-101v25,20,50,39,93,39v71,-1,107,-59,107,-128v0,-143,-161,-160,-157,-316","w":354},"T":{"d":"444,-754r-13,87r-113,0r-104,667r-100,0r104,-667r-118,0r13,-87r331,0","w":323,"k":{"y":48,"w":48,"u":40,"s":48,"r":40,"o":48,"i":9,"e":48,"c":48,"a":48,"A":37,";":40,":":40,".":68,"-":40,",":48}},"U":{"d":"232,10v-142,0,-155,-112,-135,-244r81,-520r100,0r-89,579v-5,54,6,91,55,91v68,0,83,-48,92,-106r88,-564r100,0r-83,535v-17,127,-59,229,-209,229","w":467},"V":{"d":"224,-754r-2,567r2,0r12,-47r167,-520r95,0r-265,754r-80,0r-29,-754r100,0","w":387,"k":{"u":18,"r":18,"o":18,"e":18,"a":18,"A":37,";":18,":":18,".":92,"-":18,",":92}},"W":{"d":"217,-754r-8,511v0,18,-8,42,-3,56r69,-253r101,-314r78,0r-5,562r2,0r64,-242r96,-320r97,0r-249,754r-80,0r-3,-351r9,-209r-2,0v-48,195,-110,376,-169,560r-82,0r-13,-754r98,0","w":592,"k":{"u":9,"r":9,"o":18,"e":18,"a":18,"A":18,";":18,":":18,".":74,"-":18,",":74}},"X":{"d":"302,0v-15,-93,-45,-179,-43,-282r-2,0v-31,104,-85,187,-125,282r-108,0r202,-383r-76,-371r99,0v15,90,41,173,46,272r2,0r43,-104r79,-168r102,0r-197,371r80,383r-102,0","w":427},"Y":{"d":"227,-754r38,349r2,0v37,-124,88,-234,134,-349r107,0r-207,429r-50,325r-100,0r50,-325r-82,-429r108,0","w":392,"k":{"v":18,"u":37,"q":55,"p":37,"o":55,"i":9,"e":55,"a":55,"A":55,";":37,":":37,".":72,"-":74,",":72}},"Z":{"d":"492,-754r-331,667r215,0r-13,87r-348,0r333,-667r-202,0r13,-87r333,0","w":393},"[":{"d":"374,-754r-10,68r-133,0r-113,721r133,0r-11,68r-219,0r134,-857r219,0","w":300},"\\":{"d":"100,-830r241,933r-81,0r-239,-933r79,0","w":250},"]":{"d":"379,-754r-134,857r-219,0r11,-68r133,0r113,-721r-133,0r10,-68r219,0","w":300},"^":{"d":"391,-754r118,417r-67,0r-90,-324r-190,324r-66,0r246,-417r49,0","w":500},"_":{"d":"488,75r-8,50r-499,0r8,-50r499,0","w":500},"\u2018":{"d":"104,-498r138,-266r50,15r-110,275","w":213,"k":{"\u2018":18}},"a":{"d":"164,-253v-9,55,-36,172,34,177v80,-18,80,-137,93,-219v8,-50,16,-134,-37,-134v-73,0,-79,107,-90,176xm231,-513v48,-3,67,33,82,64r8,-56r94,0r-78,505r-94,0v1,-21,11,-48,8,-65v-26,39,-44,73,-105,73v-115,0,-93,-171,-77,-267v18,-109,40,-247,162,-254","w":380},"b":{"d":"173,-253v-9,58,-31,165,31,177v87,-15,80,-137,97,-220v10,-51,14,-131,-41,-133v-68,12,-76,109,-87,176xm230,8v-56,0,-68,-35,-83,-73r-10,65r-94,0r129,-830r94,0r-59,381r2,0v24,-34,46,-63,100,-64v115,-1,97,157,82,254v-14,85,-37,186,-89,237v-20,19,-43,30,-72,30","w":380},"c":{"d":"176,8v-157,0,-118,-222,-92,-342v24,-109,112,-221,247,-162v-7,30,-7,68,-17,95v-13,-33,-67,-28,-90,-5v-50,50,-61,138,-67,229v-4,61,27,114,88,91v7,-4,15,-8,24,-13r-14,87v-25,13,-51,20,-79,20","w":278},"d":{"d":"164,-253v-9,55,-36,172,34,177v80,-18,80,-137,93,-219v8,-50,16,-134,-37,-134v-73,0,-79,107,-90,176xm231,-513v53,-3,63,31,82,64r59,-381r94,0r-129,830r-94,0v1,-21,11,-48,8,-65v-26,39,-45,73,-105,73v-115,0,-93,-171,-77,-267v18,-109,40,-247,162,-254","w":380},"e":{"d":"284,-301v7,-45,18,-128,-37,-128v-60,0,-65,74,-75,128r112,0xm260,-513v134,-3,129,160,109,279r-208,0v-5,50,-28,158,34,158v52,0,66,-49,74,-94r87,0v-17,97,-64,175,-175,178v-163,4,-130,-219,-97,-342v24,-89,66,-175,176,-179","w":361},"f":{"d":"358,-726v-24,-20,-74,-13,-82,16v-18,62,-23,137,-36,205r78,0r-11,74r-78,0r-67,431r-94,0r67,-431r-47,0r11,-74r47,0v36,-138,1,-357,199,-329v9,2,19,5,28,10","w":249,"k":{"\u2019":-18}},"g":{"d":"164,-255v-10,55,-34,173,34,179v82,-15,79,-134,92,-214v8,-51,12,-135,-39,-139v-68,10,-76,109,-87,174xm230,-513v53,-3,65,30,81,68v7,-16,6,-41,11,-60r95,0r-79,509v-21,123,-48,211,-187,211v-94,0,-146,-63,-124,-160r91,0v-10,40,5,78,48,76v89,-3,66,-118,87,-191r-2,0v-17,37,-49,69,-101,68v-133,-4,-96,-197,-75,-304v19,-99,43,-211,155,-217","w":382},"h":{"d":"305,-349v8,-38,3,-82,-43,-80v-60,3,-67,61,-75,114r-49,315r-94,0r129,-830r94,0r-60,383r2,0v26,-37,56,-63,113,-66v90,-4,90,85,77,166r-54,347r-94,0","w":388},"i":{"d":"256,-668v-1,40,-34,72,-72,73v-58,3,-71,-79,-28,-107v34,-34,101,-17,100,34xm137,0r-94,0r78,-505r94,0","w":180},"j":{"d":"186,-595v-33,1,-58,-23,-57,-54v1,-39,35,-71,74,-71v29,0,53,23,53,53v0,40,-33,70,-70,72xm104,207r-94,0r111,-712r94,0","w":180},"k":{"d":"267,-830r-86,549r2,0r152,-224r105,0r-164,224r103,281r-109,0r-89,-268r-2,0r-41,268r-94,0r129,-830r94,0","w":395},"l":{"d":"137,0r-94,0r129,-830r94,0","w":180},"m":{"d":"301,-343v7,-41,10,-89,-40,-86v-58,3,-66,57,-74,108r-50,321r-94,0r78,-505r95,0v-1,20,-11,46,-7,62v23,-37,55,-68,110,-70v48,-1,75,31,82,70v24,-39,58,-68,115,-70v80,-3,103,48,92,122r-61,391r-94,0r58,-384v3,-66,-87,-50,-103,-8v-8,21,-11,47,-16,71r-50,321r-94,0","w":590},"n":{"d":"305,-349v8,-38,3,-82,-43,-80v-60,3,-67,61,-75,114r-49,315r-94,0r78,-505r94,0v-1,18,-11,43,-7,58v26,-37,56,-63,113,-66v90,-4,90,86,77,166r-54,347r-94,0","w":388},"o":{"d":"164,-251v-9,54,-33,170,36,173v85,-15,81,-132,96,-214v10,-52,15,-135,-42,-135v-74,0,-79,107,-90,176xm268,-513v167,-5,135,221,100,347v-25,89,-70,172,-182,174v-166,4,-135,-220,-100,-346v25,-90,69,-173,182,-175","w":375},"p":{"d":"173,-252v-9,58,-33,166,31,176v86,-17,79,-135,97,-220v11,-51,15,-131,-41,-133v-68,12,-77,110,-87,177xm227,8v-54,3,-63,-30,-82,-65r-41,264r-94,0r111,-712r94,0v-1,21,-11,48,-8,65v24,-38,47,-73,105,-73v131,0,89,208,69,315v-18,96,-45,199,-154,206","w":380},"q":{"d":"164,-252v-9,54,-36,171,34,176v80,-19,80,-135,93,-218v8,-49,15,-135,-37,-135v-72,0,-79,107,-90,177xm228,-513v56,-4,66,35,83,73r10,-65r94,0r-111,712r-94,0r41,-264r-2,0v-24,37,-44,65,-100,65v-131,0,-95,-197,-74,-303v20,-98,43,-210,153,-218","w":380},"r":{"d":"216,-505v-1,20,-11,46,-7,62v27,-39,59,-69,118,-70r-15,93v-80,-8,-113,34,-124,102r-49,318r-95,0r78,-505r94,0","w":269,"k":{"z":-20,"y":-18,"x":-20,"w":-18,"v":-18,".":74,"-":37,",":74}},"s":{"d":"296,-402v-34,-42,-140,-34,-139,35v1,43,38,60,63,83v29,27,63,57,62,115v-3,117,-90,197,-213,171v-12,-2,-23,-9,-36,-18r14,-92v21,17,38,30,73,32v64,3,95,-78,54,-121v-40,-42,-104,-70,-104,-152v0,-111,84,-181,202,-159v13,2,26,9,38,17","w":276},"t":{"d":"258,-648r-23,143r50,0r-11,74r-50,0r-67,431r-94,0r67,-431r-51,0r11,-74r51,0r23,-143r94,0","w":221},"u":{"d":"198,8v-119,0,-144,-78,-126,-192r50,-321r94,0r-56,374v-10,66,92,68,105,17v31,-122,42,-262,65,-391r94,0r-53,341v-15,101,-57,172,-173,172","w":389},"v":{"d":"191,-505r9,382r2,0v37,-134,85,-256,130,-382r91,0r-211,505r-62,0r-59,-505r100,0","w":358,"k":{".":55,",":66}},"w":{"d":"174,-505r-2,362r2,0r46,-157r71,-205r67,0r1,362r2,0r55,-188r60,-174r92,0r-197,505r-64,0v-4,-124,-17,-251,-3,-371r-2,0r-51,181r-66,190r-65,0r-45,-505r99,0","w":487,"k":{".":26,",":37}},"x":{"d":"202,-505r44,173v27,-61,59,-117,92,-173r98,0r-151,238r97,267r-111,0v-16,-69,-47,-125,-51,-205r-2,0v-24,78,-71,138,-106,205r-98,0r167,-267r-89,-238r110,0","w":395},"y":{"d":"187,-505r19,352r2,0r140,-352r95,0r-317,712r-99,0r117,-248r-62,-464r105,0","w":373,"k":{".":55,",":66}},"z":{"d":"399,-505r-234,421r160,0r-13,84r-298,0r240,-421r-162,0r13,-84r294,0","w":335},"{":{"d":"126,-220v8,-56,-31,-76,-77,-81r8,-52v54,-6,91,-29,102,-81v30,-146,2,-344,213,-320r-8,57v-61,7,-82,25,-93,87v-21,119,-11,265,-139,284v137,21,47,197,47,310v0,44,26,55,69,59r-9,57v-84,4,-149,-12,-145,-95v4,-78,22,-150,32,-225","w":258},"|":{"d":"282,-786r-156,1000r-70,0r156,-1000r70,0","w":250},"}":{"d":"233,-434v-8,56,31,77,78,81r-8,52v-54,6,-93,29,-103,81v-29,147,-2,343,-212,320r9,-57v60,-7,81,-26,91,-87r25,-159v7,-73,48,-108,114,-125v-138,-21,-47,-198,-47,-312v0,-43,-25,-53,-68,-57r8,-57v84,-3,150,11,146,96v-4,79,-23,149,-33,224","w":258},"~":{"d":"77,-213v36,-57,86,-146,181,-107v41,16,75,52,124,59v49,-6,72,-49,94,-83r27,47v-32,47,-61,111,-133,111v-70,0,-102,-60,-170,-69v-54,6,-72,54,-97,90","w":500},"\u00a1":{"d":"239,-454v-39,33,-106,12,-96,-44v5,-30,36,-59,70,-59v56,0,63,72,26,103xm134,-368r100,0r-90,573r-100,0","w":252},"\u00a2":{"d":"258,-376v-11,69,-24,195,68,172v7,-2,13,-5,20,-8r-13,83v-15,8,-28,12,-50,13r-11,65r-45,0r10,-63v-131,-28,-94,-218,-67,-335v20,-86,60,-167,149,-186r11,-70r47,0r-11,72v16,3,30,4,44,11r-14,89v-20,-21,-64,-14,-83,7v-31,34,-46,95,-55,150"},"\u00a3":{"d":"26,-36v17,-49,55,-93,122,-88v30,-37,44,-106,25,-163r-88,0r6,-39r74,0v-15,-59,-40,-117,-39,-189v3,-146,79,-246,223,-248v90,-1,142,54,132,148r-84,38v10,-55,-3,-107,-62,-104v-162,7,-104,243,-72,355r97,0r-6,39r-91,0v12,72,-11,133,-42,182v19,10,40,28,65,28v22,0,32,-19,41,-34r78,27v-24,44,-58,93,-122,93v-62,0,-90,-44,-145,-48v-20,-2,-34,19,-40,34"},"\u2044":{"d":"396,-754r-491,754r-62,0r491,-754r62,0","w":122},"\u2215":{"d":"396,-754r-491,754r-62,0r491,-754r62,0","w":122},"\u00a5":{"d":"168,0r41,-264r-118,0r8,-50r118,0v1,-30,-10,-54,-14,-82r-92,0r8,-50r74,0r-65,-308r108,0r44,348r2,0v34,-124,84,-233,128,-348r107,0r-143,308r81,0r-8,50r-96,0v-11,28,-28,49,-34,82r118,0r-8,50r-118,0r-41,264r-100,0"},"\u0192":{"d":"494,-508r-21,74r-131,0r-138,402v-41,113,-125,185,-282,181r28,-84v131,5,164,-96,196,-194r100,-305r-65,0r21,-74r70,0r40,-121v34,-126,119,-235,288,-200r-29,84v-47,-16,-101,-3,-122,31v-37,59,-57,137,-84,206r129,0"},"\u00a7":{"d":"244,-423v-49,25,-82,113,-32,162v20,20,46,35,71,50v47,-25,100,-115,41,-165v-22,-20,-54,-31,-80,-47xm331,-764v99,-4,144,67,132,166r-102,0v1,-41,-1,-80,-42,-80v-75,0,-95,121,-49,161v39,34,127,58,152,97v60,96,-5,223,-79,265v25,24,40,50,40,94v0,117,-68,196,-187,199v-109,3,-164,-71,-138,-181r102,0v-7,45,-4,95,45,95v77,0,99,-113,51,-160v-60,-59,-170,-70,-170,-188v0,-87,42,-138,104,-171v-29,-20,-42,-51,-42,-95v0,-121,64,-197,183,-202","w":415},"\u00a4":{"d":"383,-232v51,-96,24,-257,-102,-249v-119,8,-179,93,-186,213v-6,108,89,176,191,132v43,-19,75,-54,97,-96xm355,-100v-78,64,-206,67,-270,0r-46,43r-38,-53r45,-42v-46,-99,-14,-235,47,-299r-32,-43r55,-53r32,43v65,-59,211,-68,270,0r47,-43r39,53r-45,43v47,104,12,233,-47,299r32,42r-56,53"},"'":{"d":"199,-754r86,0r-47,226r-62,0","w":250},"\u201c":{"d":"98,-498r138,-266r50,15r-110,275xm235,-498r138,-266r50,15r-110,275","w":344},"\u00ab":{"d":"230,-482r41,27r-146,195r73,199r-48,25r-84,-224xm349,-482r41,27r-146,195r73,199r-48,25r-84,-224","w":357},"\u2039":{"d":"230,-482r41,27r-146,195r73,199r-48,25r-84,-224","w":238},"\u203a":{"d":"98,-36r-40,-25r135,-199r-84,-195r49,-27r94,222","w":238},"\ufb01":{"d":"517,-668v-1,40,-34,72,-72,73v-58,3,-71,-79,-28,-107v34,-34,101,-17,100,34xm402,0r-94,0r78,-505r94,0xm358,-726v-24,-20,-74,-13,-82,16v-18,62,-23,137,-36,205r78,0r-11,74r-78,0r-67,431r-94,0r67,-431r-47,0r11,-74r47,0v36,-138,1,-357,199,-329v9,2,19,5,28,10","w":459},"\ufb02":{"d":"402,0r-94,0r129,-830r94,0xm358,-726v-24,-20,-74,-13,-82,16v-18,62,-23,137,-36,205r78,0r-11,74r-78,0r-67,431r-94,0r67,-431r-47,0r11,-74r47,0v36,-138,1,-357,199,-329v9,2,19,5,28,10","w":445},"\u2013":{"d":"546,-296r-12,74r-500,0r12,-74r500,0","w":500},"\u2020":{"d":"344,-754r-39,249r103,0r-12,82r-103,0r-88,560r-94,0r88,-560r-104,0r12,-82r104,0r39,-249r94,0","w":359},"\u2021":{"d":"344,-754r-35,229r103,0r-13,82r-103,0r-29,184r103,0r-13,82r-103,0r-49,314r-94,0r49,-314r-104,0r13,-82r104,0r29,-184r-104,0r13,-82r104,0r35,-229r94,0","w":359},"\u00b7":{"d":"152,-315v57,-3,67,76,26,103v-32,33,-97,17,-96,-33v1,-40,33,-68,70,-70","w":205},"\u2219":{"d":"152,-315v57,-3,67,76,26,103v-32,33,-97,17,-96,-33v1,-40,33,-68,70,-70","w":205},"\u00b6":{"d":"214,-370v-127,0,-157,-168,-100,-270v37,-65,84,-114,186,-114r208,0r-135,866r-79,0r125,-799r-76,0r-125,799r-79,0","w":440},"\u2022":{"d":"305,-204v-127,49,-260,-30,-235,-173v18,-107,96,-189,217,-189v107,0,177,76,160,189v-12,84,-70,145,-142,173","w":400},"\u201a":{"d":"198,-81r-138,265r-49,-14r110,-276","w":213},"\u201e":{"d":"335,-81r-138,265r-49,-14r110,-276xm198,-81r-138,265r-49,-14r110,-276","w":344},"\u201d":{"d":"438,-740r-138,265r-49,-14r110,-275xm301,-740r-138,265r-49,-14r110,-275","w":344},"\u00bb":{"d":"217,-36r-40,-25r135,-199r-84,-195r49,-27r94,222xm98,-36r-40,-25r135,-199r-84,-195r49,-27r94,222","w":357},"\u2026":{"d":"472,-92v39,-32,104,-14,95,41v-5,32,-34,61,-69,61v-56,0,-64,-71,-26,-102xm804,-92v39,-32,105,-14,96,41v-5,32,-34,61,-69,61v-56,0,-65,-71,-27,-102xm138,-92v39,-32,105,-14,96,41v-5,32,-34,61,-69,61v-56,0,-65,-71,-27,-102","w":1000},"\u2030":{"d":"653,-170v-6,36,-23,115,21,119v56,-12,53,-92,64,-147v7,-34,10,-89,-26,-91v-47,7,-51,74,-59,119xm389,-170v-6,36,-23,115,21,119v56,-12,53,-92,64,-147v7,-34,10,-89,-26,-91v-47,7,-51,74,-59,119xm200,-584v-6,36,-23,115,21,119v62,-19,66,-112,66,-185v0,-25,-5,-55,-29,-53v-47,5,-50,74,-58,119xm611,-754r-491,754r-62,0r491,-754r62,0xm665,9v-113,6,-89,-152,-67,-237v16,-62,46,-121,123,-121v64,0,90,43,86,107v-7,118,-22,245,-142,251xm401,9v-113,6,-89,-152,-67,-237v16,-62,46,-121,123,-121v64,0,90,43,86,107v-7,118,-22,245,-142,251xm268,-763v114,-3,89,152,67,237v-16,62,-46,119,-123,121v-114,3,-89,-151,-68,-237v15,-62,47,-120,124,-121","w":817},"\u00bf":{"d":"296,-454v-39,33,-106,12,-96,-44v5,-30,36,-59,70,-59v56,0,63,72,26,103xm148,215v-180,0,-125,-236,-81,-351v15,-40,46,-74,103,-72r25,-160r88,0r-35,227v-120,-16,-126,103,-126,208v0,31,6,64,38,62v51,-3,50,-64,59,-110r94,0v-19,102,-41,196,-165,196","w":341},"`":{"d":"249,-746r59,149r-55,29r-78,-135","w":280},"\u00b4":{"d":"204,-568r-45,-29r105,-149r60,43","w":280},"\u02c6":{"d":"360,-610r-53,38r-65,-83r-85,83r-46,-38r148,-140","w":280},"\u02dc":{"d":"298,-688v16,1,21,-18,24,-29r56,0v-9,52,-31,97,-90,99v-38,0,-54,-30,-89,-32v-17,-1,-24,12,-26,28r-61,0v10,-51,31,-97,90,-99v44,-1,57,30,96,33","w":280},"\u00af":{"d":"86,-657r9,-58r313,0r-9,58r-313,0","w":280},"\u02c9":{"d":"86,-657r9,-58r313,0r-9,58r-313,0","w":280},"\u02d8":{"d":"235,-629v-82,1,-142,-44,-130,-136r49,0v3,55,38,77,94,77v64,0,97,-25,117,-77r49,0v-15,88,-83,135,-179,136","w":280},"\u02d9":{"d":"254,-717v51,-2,61,68,24,95v-28,32,-93,19,-92,-27v1,-39,30,-67,68,-68","w":280},"\u00a8":{"d":"128,-700v35,-31,101,-14,91,38v-5,28,-32,58,-64,58v-53,0,-62,-65,-27,-96xm290,-700v35,-31,100,-14,90,38v-5,28,-31,58,-64,58v-53,0,-61,-65,-26,-96","w":280},"\u02da":{"d":"240,-630v40,3,56,-69,9,-69v-41,-4,-58,70,-9,69xm326,-675v-3,55,-40,88,-93,92v-39,3,-73,-28,-72,-67v1,-54,44,-95,95,-96v41,-1,72,31,70,71","w":280},"\u00b8":{"d":"191,83r-106,133r-40,-23r85,-142","w":280},"\u02dd":{"d":"399,-703r-120,135r-45,-29r105,-149xm249,-703r-120,135r-45,-29r105,-149","w":280},"\u02db":{"d":"28,111v0,-47,29,-92,48,-124r67,0v-18,25,-42,55,-42,94v0,62,112,41,137,11r-12,79v-75,36,-198,28,-198,-60","w":280},"\u02c7":{"d":"127,-711r58,-39r59,83r91,-83r41,39r-145,139","w":280},"\u2014":{"d":"916,-296r-12,74r-740,0r12,-74r740,0","w":1000},"\u00c6":{"d":"303,-225v-12,-123,-3,-261,-7,-386r-120,386r127,0xm527,-754r6,87r-164,0r14,239r149,0r6,87r-149,0r18,254r161,0r7,87r-262,0r-8,-147r-157,0r-50,147r-98,0r277,-754r250,0","w":566},"\u00aa":{"d":"208,-546v13,-50,44,-149,-9,-168v-60,14,-63,99,-63,165v0,24,5,49,30,48v23,0,37,-25,42,-45xm136,-748v31,-29,93,-16,102,22r5,-33r61,0r-47,303r-61,0v0,-12,8,-30,4,-39v-16,24,-29,44,-67,44v-88,0,-56,-136,-43,-206v7,-36,23,-70,46,-91","w":172},"\u00d8":{"d":"191,-162v5,43,17,78,60,78v82,0,101,-100,115,-180r28,-168v2,-18,5,-36,6,-53xm403,-585v-5,-46,-16,-85,-61,-85v-82,0,-96,101,-115,180v-17,67,-28,157,-36,230xm236,10v-60,2,-95,-24,-119,-59r-50,76r-47,-23r72,-112v-25,-182,14,-375,72,-514v32,-76,86,-140,193,-142v61,0,98,25,121,63r47,-72r47,23r-70,109v23,148,-8,299,-42,425v-30,113,-83,222,-224,226","w":476},"\u0152":{"d":"386,-379v17,-94,71,-276,-43,-294v-77,8,-95,79,-109,155r-38,211v-5,82,-31,211,55,222v119,-18,114,-178,135,-294xm258,-744v61,-39,166,-21,178,49r9,-59r262,0r-13,87r-167,0r-37,236r154,0r-14,87r-154,0r-40,257r172,0r-13,87r-262,0v1,-19,11,-45,7,-60v-29,47,-70,70,-125,70v-194,0,-128,-297,-103,-454v19,-122,57,-244,146,-300","w":598},"\u00ba":{"d":"219,-606v5,-32,23,-104,-21,-106v-60,13,-63,97,-63,162v0,24,5,49,30,47v43,-4,47,-62,54,-103xm289,-666v-6,106,-24,211,-133,215v-61,2,-87,-39,-84,-99v5,-105,24,-210,133,-214v61,-2,87,38,84,98","w":172},"\u00e6":{"d":"486,-301v8,-47,19,-132,-36,-132v-61,0,-68,75,-78,132r114,0xm244,-99v24,-42,48,-153,-26,-153v-60,0,-73,64,-73,125v0,31,10,60,45,60v27,0,43,-15,54,-32xm462,-513v137,0,129,162,107,280r-209,0v-6,54,-31,161,39,161v51,0,63,-54,71,-101r89,0v-18,96,-60,181,-172,181v-61,0,-101,-25,-110,-79v-24,46,-60,78,-124,79v-73,0,-105,-42,-105,-113v0,-114,38,-221,154,-221v31,0,63,10,74,33v18,-52,20,-138,-60,-130v-42,4,-71,13,-101,29r15,-93v64,-38,197,-42,215,39v29,-43,68,-65,117,-65","w":561},"\u0131":{"d":"215,-505r-78,505r-94,0r78,-505r94,0","w":180},"\u00f8":{"d":"158,-119v0,45,58,59,85,25v40,-51,42,-139,55,-215r-2,0xm297,-386v1,-47,-56,-59,-83,-26v-41,50,-46,136,-56,215r2,0xm274,-16v-51,35,-154,32,-186,-17r-32,42r-35,-25r49,-62v-27,-158,10,-340,108,-411v50,-36,156,-33,187,17r40,-51r37,24r-56,72v23,127,-5,263,-54,351v-14,25,-34,44,-58,60","w":375},"\u0153":{"d":"503,-299v8,-47,20,-134,-38,-134v-64,0,-65,78,-77,134r115,0xm288,-252v10,-58,31,-167,-34,-176v-82,16,-83,132,-96,214v-8,52,-13,132,42,136v68,-11,77,-108,88,-174xm481,-513v136,-4,129,160,108,279r-213,0v-4,55,-22,156,41,156v52,0,65,-48,74,-93r86,0v-19,97,-66,179,-178,179v-55,0,-81,-33,-95,-80v-28,48,-58,78,-123,80v-167,5,-128,-234,-93,-356v24,-86,70,-162,179,-165v52,-1,85,37,97,78v18,-44,62,-77,117,-78","w":581},"\u00df":{"d":"383,-690v6,-54,-51,-82,-88,-50v-25,22,-32,64,-38,102r-99,638r-94,0r67,-431r-43,0r11,-74r43,0r23,-142v16,-108,53,-191,178,-191v94,0,138,34,138,121v0,93,-26,175,-99,200r0,2v85,21,65,153,51,238v-25,153,-41,294,-231,277r13,-84v126,7,107,-132,129,-238v15,-75,3,-155,-79,-150r13,-84v85,4,97,-60,105,-134","w":425},"\u00f7":{"d":"273,-407r16,-100r79,0r-16,100r-79,0xm210,-5r16,-100r79,0r-16,100r-79,0xm89,-291r413,0r-11,70r-413,0","w":500},"\u00ae":{"d":"605,-494v0,-84,-132,-47,-213,-55r-22,145v108,-2,235,19,235,-90xm667,-498v0,94,-64,138,-158,141r100,196r-70,0r-93,-196r-84,0r-30,196r-61,0r68,-435v135,8,328,-40,328,98xm134,-377v-39,247,182,387,408,299v138,-54,245,-167,245,-353v0,-169,-107,-270,-277,-270v-162,0,-266,91,-330,197v-23,39,-39,82,-46,127xm690,-102v-89,81,-268,150,-425,87v-129,-52,-222,-178,-193,-363v27,-175,146,-294,292,-356v140,-59,319,-18,395,64v61,65,108,167,88,292v-18,115,-84,210,-157,276","w":800},"\u00e7":{"d":"205,83r-106,133r-40,-23r85,-142xm176,8v-157,0,-118,-222,-92,-342v24,-109,112,-221,247,-162v-7,30,-7,68,-17,95v-13,-33,-67,-28,-90,-5v-50,50,-61,138,-67,229v-4,61,27,114,88,91v7,-4,15,-8,24,-13r-14,87v-25,13,-51,20,-79,20","w":278},"\u00b1":{"d":"55,-72r413,0r-11,70r-413,0xm294,-507r70,0r-25,156r172,0r-11,70r-172,0r-24,159r-70,0r24,-159r-171,0r11,-70r171,0","w":500},"\u00c7":{"d":"266,83r-106,133r-40,-23r85,-142xm314,6v-213,40,-253,-168,-215,-371v30,-160,69,-318,195,-380v49,-24,133,-28,175,3r-15,91v-31,-22,-87,-26,-122,-3v-107,73,-129,238,-138,406v-5,100,36,181,144,160v10,-2,19,-6,30,-11r-14,88v-13,8,-26,14,-40,17","w":369},"\u00a9":{"d":"450,-209v64,-1,119,-40,131,-98r65,0v-27,88,-95,151,-204,151v-130,0,-202,-89,-181,-225v20,-129,102,-219,248,-223v92,-3,159,56,160,147v-20,-2,-49,4,-65,-2v2,-59,-45,-94,-102,-92v-120,3,-179,87,-179,205v0,79,43,139,127,137xm134,-377v-39,247,182,387,408,299v138,-54,245,-167,245,-353v0,-169,-107,-270,-277,-270v-162,0,-266,91,-330,197v-23,39,-39,82,-46,127xm690,-102v-89,81,-268,150,-425,87v-129,-52,-222,-178,-193,-363v27,-175,146,-294,292,-356v140,-59,319,-18,395,64v61,65,108,167,88,292v-18,115,-84,210,-157,276","w":800},"\u00ac":{"d":"436,-314r-343,0r11,-70r413,0r-42,267r-70,0","w":500},"\u2122":{"d":"388,-694r-109,0r-56,361r-61,0r56,-361r-110,0r9,-60r280,0xm771,-333r-55,0r56,-361r-2,0r-174,361r-32,0r-59,-361r-2,0r-56,361r-55,0r65,-421r89,0r52,297r2,0r148,-297r88,0","w":750},"\u00b0":{"d":"383,-610v6,-48,-30,-82,-75,-82v-60,0,-100,41,-103,102v-2,42,33,76,75,74v58,-3,97,-40,103,-94xm271,-454v-109,7,-160,-119,-106,-208v30,-49,78,-92,152,-92v78,0,129,50,129,127v0,103,-73,166,-175,173","w":400},"\u00b5":{"d":"167,-190v-8,46,-20,116,39,114v48,-2,62,-39,69,-80r54,-349r94,0r-54,347v-14,83,-31,166,-129,166v-55,0,-74,-30,-93,-66r-41,262r-94,0r110,-709r94,0","w":388},"\u03bc":{"d":"167,-190v-8,46,-20,116,39,114v48,-2,62,-39,69,-80r54,-349r94,0r-54,347v-14,83,-31,166,-129,166v-55,0,-74,-30,-93,-66r-41,262r-94,0r110,-709r94,0","w":388},"\u00a0":{"w":205},"\u00c1":{"d":"321,-787r-46,-29r105,-149r61,43xm297,-334r5,-274r-2,0r-120,383r120,0xm364,-754r45,754r-101,0r-6,-147r-150,0r-50,147r-98,0r281,-754r79,0","w":414},"\u00c2":{"d":"461,-829r-53,38r-65,-83r-85,83r-46,-38r148,-140xm297,-334r5,-274r-2,0r-120,383r120,0xm364,-754r45,754r-101,0r-6,-147r-150,0r-50,147r-98,0r281,-754r79,0","w":414},"\u00c4":{"d":"230,-919v35,-31,99,-14,90,38v-5,28,-33,58,-64,58v-53,0,-61,-65,-26,-96xm390,-919v35,-31,100,-14,91,38v-5,29,-32,58,-64,58v-53,0,-62,-65,-27,-96xm297,-334r5,-274r-2,0r-120,383r120,0xm364,-754r45,754r-101,0r-6,-147r-150,0r-50,147r-98,0r281,-754r79,0","w":414},"\u00c0":{"d":"335,-965r59,149r-54,29r-78,-135xm297,-334r5,-274r-2,0r-120,383r120,0xm364,-754r45,754r-101,0r-6,-147r-150,0r-50,147r-98,0r281,-754r79,0","w":414},"\u00c5":{"d":"338,-829v40,3,56,-69,9,-69v-41,-4,-58,70,-9,69xm424,-874v-2,56,-40,88,-93,92v-39,3,-73,-28,-72,-67v1,-54,44,-95,95,-96v41,-1,71,31,70,71xm297,-334r5,-274r-2,0r-120,383r120,0xm364,-754r45,754r-101,0r-6,-147r-150,0r-50,147r-98,0r281,-754r79,0","w":414},"\u00c3":{"d":"399,-907v16,1,21,-18,24,-29r56,0v-9,52,-31,97,-90,99v-38,0,-54,-30,-89,-32v-18,-1,-23,13,-26,28r-61,0v11,-50,32,-97,91,-99v43,-2,57,30,95,33xm297,-334r5,-274r-2,0r-120,383r120,0xm364,-754r45,754r-101,0r-6,-147r-150,0r-50,147r-98,0r281,-754r79,0","w":414},"\u00c9":{"d":"318,-787r-46,-29r105,-149r61,43xm447,-754r-13,87r-169,0r-37,237r151,0r-14,87r-151,0r-40,256r169,0r-13,87r-269,0r117,-754r269,0","w":347},"\u00ca":{"d":"440,-829r-53,38r-65,-83r-85,83r-46,-38r148,-140xm447,-754r-13,87r-169,0r-37,237r151,0r-14,87r-151,0r-40,256r169,0r-13,87r-269,0r117,-754r269,0","w":347},"\u00cb":{"d":"212,-919v35,-31,99,-14,90,38v-5,28,-33,58,-64,58v-53,0,-61,-65,-26,-96xm372,-919v35,-31,100,-14,91,38v-5,29,-32,58,-64,58v-53,0,-62,-65,-27,-96xm447,-754r-13,87r-169,0r-37,237r151,0r-14,87r-151,0r-40,256r169,0r-13,87r-269,0r117,-754r269,0","w":347},"\u00c8":{"d":"317,-965r59,149r-54,29r-78,-135xm447,-754r-13,87r-169,0r-37,237r151,0r-14,87r-151,0r-40,256r169,0r-13,87r-269,0r117,-754r269,0","w":347},"\u00cd":{"d":"225,-787r-46,-29r105,-149r61,43xm161,0r-100,0r117,-754r100,0","w":222},"\u00ce":{"d":"365,-829r-53,38r-65,-83r-85,83r-46,-38r148,-140xm161,0r-100,0r117,-754r100,0","w":222},"\u00cf":{"d":"134,-919v35,-31,99,-14,90,38v-5,28,-33,58,-64,58v-53,0,-61,-65,-26,-96xm294,-919v35,-31,100,-14,91,38v-5,29,-32,58,-64,58v-53,0,-62,-65,-27,-96xm161,0r-100,0r117,-754r100,0","w":222},"\u00cc":{"d":"239,-965r59,149r-54,29r-78,-135xm161,0r-100,0r117,-754r100,0","w":222},"\u00d1":{"d":"428,-907v16,1,21,-18,24,-29r56,0v-9,52,-31,97,-90,99v-38,0,-54,-30,-89,-32v-18,-1,-23,13,-26,28r-61,0v11,-50,32,-97,91,-99v43,-2,57,30,95,33xm204,-277r-43,277r-100,0r117,-754r96,0r87,573v14,-96,10,-205,25,-304r42,-269r100,0r-117,754r-93,0r-86,-581","w":472},"\u00d3":{"d":"362,-787r-46,-29r105,-149r61,43xm400,-472v9,-81,20,-192,-58,-198v-81,11,-95,102,-115,180v-9,35,-14,73,-21,113v-9,57,-18,116,-18,175v0,61,9,118,63,118v82,0,95,-102,115,-180v16,-62,27,-141,34,-208xm236,10v-210,0,-157,-296,-123,-463v30,-148,71,-311,244,-311v211,0,156,295,123,463v-29,149,-72,311,-244,311","w":476},"\u00d4":{"d":"492,-829r-53,38r-65,-83r-85,83r-46,-38r148,-140xm400,-472v9,-81,20,-192,-58,-198v-81,11,-95,102,-115,180v-9,35,-14,73,-21,113v-9,57,-18,116,-18,175v0,61,9,118,63,118v82,0,95,-102,115,-180v16,-62,27,-141,34,-208xm236,10v-210,0,-157,-296,-123,-463v30,-148,71,-311,244,-311v211,0,156,295,123,463v-29,149,-72,311,-244,311","w":476},"\u00d6":{"d":"260,-919v35,-31,100,-14,91,38v-5,28,-33,58,-64,58v-53,0,-62,-65,-27,-96xm422,-919v35,-31,99,-14,90,38v-5,29,-32,58,-64,58v-53,0,-61,-65,-26,-96xm400,-472v9,-81,20,-192,-58,-198v-81,11,-95,102,-115,180v-9,35,-14,73,-21,113v-9,57,-18,116,-18,175v0,61,9,118,63,118v82,0,95,-102,115,-180v16,-62,27,-141,34,-208xm236,10v-210,0,-157,-296,-123,-463v30,-148,71,-311,244,-311v211,0,156,295,123,463v-29,149,-72,311,-244,311","w":476},"\u00d2":{"d":"356,-965r59,149r-54,29r-78,-135xm400,-472v9,-81,20,-192,-58,-198v-81,11,-95,102,-115,180v-9,35,-14,73,-21,113v-9,57,-18,116,-18,175v0,61,9,118,63,118v82,0,95,-102,115,-180v16,-62,27,-141,34,-208xm236,10v-210,0,-157,-296,-123,-463v30,-148,71,-311,244,-311v211,0,156,295,123,463v-29,149,-72,311,-244,311","w":476},"\u00d5":{"d":"430,-907v16,1,21,-18,24,-29r56,0v-9,52,-31,97,-90,99v-38,0,-54,-30,-89,-32v-18,-1,-23,13,-26,28r-61,0v11,-50,32,-97,91,-99v43,-2,57,30,95,33xm400,-472v9,-81,20,-192,-58,-198v-81,11,-95,102,-115,180v-9,35,-14,73,-21,113v-9,57,-18,116,-18,175v0,61,9,118,63,118v82,0,95,-102,115,-180v16,-62,27,-141,34,-208xm236,10v-210,0,-157,-296,-123,-463v30,-148,71,-311,244,-311v211,0,156,295,123,463v-29,149,-72,311,-244,311","w":476},"\u00da":{"d":"363,-787r-46,-29r105,-149r61,43xm232,10v-142,0,-155,-112,-135,-244r81,-520r100,0r-89,579v-5,54,6,91,55,91v68,0,83,-48,92,-106r88,-564r100,0r-83,535v-17,127,-59,229,-209,229","w":467},"\u00db":{"d":"488,-829r-53,38r-65,-83r-85,83r-46,-38r148,-140xm232,10v-142,0,-155,-112,-135,-244r81,-520r100,0r-89,579v-5,54,6,91,55,91v68,0,83,-48,92,-106r88,-564r100,0r-83,535v-17,127,-59,229,-209,229","w":467},"\u00dc":{"d":"256,-919v35,-31,100,-14,91,38v-5,28,-33,58,-64,58v-53,0,-62,-65,-27,-96xm418,-919v35,-31,99,-14,90,38v-5,29,-32,58,-64,58v-53,0,-61,-65,-26,-96xm232,10v-142,0,-155,-112,-135,-244r81,-520r100,0r-89,579v-5,54,6,91,55,91v68,0,83,-48,92,-106r88,-564r100,0r-83,535v-17,127,-59,229,-209,229","w":467},"\u00d9":{"d":"347,-965r59,149r-54,29r-78,-135xm232,10v-142,0,-155,-112,-135,-244r81,-520r100,0r-89,579v-5,54,6,91,55,91v68,0,83,-48,92,-106r88,-564r100,0r-83,535v-17,127,-59,229,-209,229","w":467},"\u0178":{"d":"218,-919v35,-31,100,-14,91,38v-5,28,-33,58,-64,58v-53,0,-62,-65,-27,-96xm380,-919v35,-31,99,-14,90,38v-5,29,-32,58,-64,58v-53,0,-61,-65,-26,-96xm227,-754r38,349r2,0v37,-124,88,-234,134,-349r107,0r-207,429r-50,325r-100,0r50,-325r-82,-429r108,0","w":392},"\u00e1":{"d":"284,-568r-45,-29r105,-149r60,43xm164,-253v-9,55,-36,172,34,177v80,-18,80,-137,93,-219v8,-50,16,-134,-37,-134v-73,0,-79,107,-90,176xm231,-513v48,-3,67,33,82,64r8,-56r94,0r-78,505r-94,0v1,-21,11,-48,8,-65v-26,39,-44,73,-105,73v-115,0,-93,-171,-77,-267v18,-109,40,-247,162,-254","w":380},"\u00e2":{"d":"410,-610r-53,38r-65,-83r-85,83r-46,-38r148,-140xm164,-253v-9,55,-36,172,34,177v80,-18,80,-137,93,-219v8,-50,16,-134,-37,-134v-73,0,-79,107,-90,176xm231,-513v48,-3,67,33,82,64r8,-56r94,0r-78,505r-94,0v1,-21,11,-48,8,-65v-26,39,-44,73,-105,73v-115,0,-93,-171,-77,-267v18,-109,40,-247,162,-254","w":380},"\u00e4":{"d":"178,-700v35,-31,101,-14,91,38v-5,28,-32,58,-64,58v-53,0,-62,-65,-27,-96xm340,-700v35,-31,100,-14,90,38v-5,28,-31,58,-64,58v-53,0,-61,-65,-26,-96xm164,-253v-9,55,-36,172,34,177v80,-18,80,-137,93,-219v8,-50,16,-134,-37,-134v-73,0,-79,107,-90,176xm231,-513v48,-3,67,33,82,64r8,-56r94,0r-78,505r-94,0v1,-21,11,-48,8,-65v-26,39,-44,73,-105,73v-115,0,-93,-171,-77,-267v18,-109,40,-247,162,-254","w":380},"\u00e0":{"d":"279,-746r59,149r-55,29r-78,-135xm164,-253v-9,55,-36,172,34,177v80,-18,80,-137,93,-219v8,-50,16,-134,-37,-134v-73,0,-79,107,-90,176xm231,-513v48,-3,67,33,82,64r8,-56r94,0r-78,505r-94,0v1,-21,11,-48,8,-65v-26,39,-44,73,-105,73v-115,0,-93,-171,-77,-267v18,-109,40,-247,162,-254","w":380},"\u00e5":{"d":"290,-630v40,3,56,-69,9,-69v-41,-4,-58,70,-9,69xm376,-675v-3,55,-40,88,-93,92v-39,3,-73,-28,-72,-67v1,-54,44,-95,95,-96v41,-1,72,31,70,71xm164,-253v-9,55,-36,172,34,177v80,-18,80,-137,93,-219v8,-50,16,-134,-37,-134v-73,0,-79,107,-90,176xm231,-513v48,-3,67,33,82,64r8,-56r94,0r-78,505r-94,0v1,-21,11,-48,8,-65v-26,39,-44,73,-105,73v-115,0,-93,-171,-77,-267v18,-109,40,-247,162,-254","w":380},"\u00e3":{"d":"348,-688v16,1,21,-18,24,-29r56,0v-9,52,-31,97,-90,99v-38,0,-54,-30,-89,-32v-17,-1,-24,12,-26,28r-61,0v10,-51,31,-97,90,-99v44,-1,57,30,96,33xm164,-253v-9,55,-36,172,34,177v80,-18,80,-137,93,-219v8,-50,16,-134,-37,-134v-73,0,-79,107,-90,176xm231,-513v48,-3,67,33,82,64r8,-56r94,0r-78,505r-94,0v1,-21,11,-48,8,-65v-26,39,-44,73,-105,73v-115,0,-93,-171,-77,-267v18,-109,40,-247,162,-254","w":380},"\u00e9":{"d":"275,-568r-45,-29r105,-149r60,43xm284,-301v7,-45,18,-128,-37,-128v-60,0,-65,74,-75,128r112,0xm260,-513v134,-3,129,160,109,279r-208,0v-5,50,-28,158,34,158v52,0,66,-49,74,-94r87,0v-17,97,-64,175,-175,178v-163,4,-130,-219,-97,-342v24,-89,66,-175,176,-179","w":361},"\u00ea":{"d":"284,-301v7,-45,18,-128,-37,-128v-60,0,-65,74,-75,128r112,0xm401,-610r-53,38r-65,-83r-85,83r-46,-38r148,-140xm260,-513v134,-3,129,160,109,279r-208,0v-5,50,-28,158,34,158v52,0,66,-49,74,-94r87,0v-17,97,-64,175,-175,178v-163,4,-130,-219,-97,-342v24,-89,66,-175,176,-179","w":361},"\u00eb":{"d":"170,-700v35,-31,100,-14,90,38v-5,28,-32,58,-64,58v-53,0,-61,-65,-26,-96xm330,-700v35,-31,101,-14,91,38v-5,28,-31,58,-64,58v-53,0,-62,-65,-27,-96xm284,-301v7,-45,18,-128,-37,-128v-60,0,-65,74,-75,128r112,0xm260,-513v134,-3,129,160,109,279r-208,0v-5,50,-28,158,34,158v52,0,66,-49,74,-94r87,0v-17,97,-64,175,-175,178v-163,4,-130,-219,-97,-342v24,-89,66,-175,176,-179","w":361},"\u00e8":{"d":"260,-746r59,149r-55,29r-78,-135xm284,-301v7,-45,18,-128,-37,-128v-60,0,-65,74,-75,128r112,0xm260,-513v134,-3,129,160,109,279r-208,0v-5,50,-28,158,34,158v52,0,66,-49,74,-94r87,0v-17,97,-64,175,-175,178v-163,4,-130,-219,-97,-342v24,-89,66,-175,176,-179","w":361},"\u00ed":{"d":"169,-568r-45,-29r105,-149r60,43xm215,-505r-78,505r-94,0r78,-505r94,0","w":180},"\u00ee":{"d":"310,-610r-53,38r-65,-83r-85,83r-46,-38r148,-140xm215,-505r-78,505r-94,0r78,-505r94,0","w":180},"\u00ef":{"d":"78,-700v35,-31,101,-14,91,38v-5,28,-32,58,-64,58v-53,0,-62,-65,-27,-96xm240,-700v35,-31,100,-14,90,38v-5,28,-31,58,-64,58v-53,0,-61,-65,-26,-96xm215,-505r-78,505r-94,0r78,-505r94,0","w":180},"\u00ec":{"d":"184,-746r59,149r-55,29r-78,-135xm215,-505r-78,505r-94,0r78,-505r94,0","w":180},"\u00f1":{"d":"346,-688v16,1,21,-18,24,-29r56,0v-9,52,-31,97,-90,99v-38,0,-54,-30,-89,-32v-17,-1,-24,12,-26,28r-61,0v10,-51,31,-97,90,-99v44,-1,57,30,96,33xm305,-349v8,-38,3,-82,-43,-80v-60,3,-67,61,-75,114r-49,315r-94,0r78,-505r94,0v-1,18,-11,43,-7,58v26,-37,56,-63,113,-66v90,-4,90,86,77,166r-54,347r-94,0","w":388},"\u00f3":{"d":"267,-568r-45,-29r105,-149r60,43xm164,-251v-9,54,-33,170,36,173v85,-15,81,-132,96,-214v10,-52,15,-135,-42,-135v-74,0,-79,107,-90,176xm268,-513v167,-5,135,221,100,347v-25,89,-70,172,-182,174v-166,4,-135,-220,-100,-346v25,-90,69,-173,182,-175","w":375},"\u00f4":{"d":"408,-610r-53,38r-65,-83r-85,83r-46,-38r148,-140xm164,-251v-9,54,-33,170,36,173v85,-15,81,-132,96,-214v10,-52,15,-135,-42,-135v-74,0,-79,107,-90,176xm268,-513v167,-5,135,221,100,347v-25,89,-70,172,-182,174v-166,4,-135,-220,-100,-346v25,-90,69,-173,182,-175","w":375},"\u00f6":{"d":"176,-700v35,-31,101,-14,91,38v-5,28,-32,58,-64,58v-53,0,-62,-65,-27,-96xm338,-700v35,-31,100,-14,90,38v-5,28,-31,58,-64,58v-53,0,-61,-65,-26,-96xm164,-251v-9,54,-33,170,36,173v85,-15,81,-132,96,-214v10,-52,15,-135,-42,-135v-74,0,-79,107,-90,176xm268,-513v167,-5,135,221,100,347v-25,89,-70,172,-182,174v-166,4,-135,-220,-100,-346v25,-90,69,-173,182,-175","w":375},"\u00f2":{"d":"282,-746r59,149r-55,29r-78,-135xm164,-251v-9,54,-33,170,36,173v85,-15,81,-132,96,-214v10,-52,15,-135,-42,-135v-74,0,-79,107,-90,176xm268,-513v167,-5,135,221,100,347v-25,89,-70,172,-182,174v-166,4,-135,-220,-100,-346v25,-90,69,-173,182,-175","w":375},"\u00f5":{"d":"346,-688v16,1,21,-18,24,-29r56,0v-9,52,-31,97,-90,99v-38,0,-54,-30,-89,-32v-17,-1,-24,12,-26,28r-61,0v10,-51,31,-97,90,-99v44,-1,57,30,96,33xm164,-251v-9,54,-33,170,36,173v85,-15,81,-132,96,-214v10,-52,15,-135,-42,-135v-74,0,-79,107,-90,176xm268,-513v167,-5,135,221,100,347v-25,89,-70,172,-182,174v-166,4,-135,-220,-100,-346v25,-90,69,-173,182,-175","w":375},"\u00fa":{"d":"289,-568r-45,-29r105,-149r60,43xm198,8v-119,0,-144,-78,-126,-192r50,-321r94,0r-56,374v-10,66,92,68,105,17v31,-122,42,-262,65,-391r94,0r-53,341v-15,101,-57,172,-173,172","w":389},"\u00fb":{"d":"415,-610r-53,38r-65,-83r-85,83r-46,-38r148,-140xm198,8v-119,0,-144,-78,-126,-192r50,-321r94,0r-56,374v-10,66,92,68,105,17v31,-122,42,-262,65,-391r94,0r-53,341v-15,101,-57,172,-173,172","w":389},"\u00fc":{"d":"184,-700v35,-31,100,-14,90,38v-5,28,-32,58,-64,58v-53,0,-61,-65,-26,-96xm344,-700v35,-31,101,-14,91,38v-5,28,-31,58,-64,58v-53,0,-62,-65,-27,-96xm198,8v-119,0,-144,-78,-126,-192r50,-321r94,0r-56,374v-10,66,92,68,105,17v31,-122,42,-262,65,-391r94,0r-53,341v-15,101,-57,172,-173,172","w":389},"\u00f9":{"d":"274,-746r59,149r-55,29r-78,-135xm198,8v-119,0,-144,-78,-126,-192r50,-321r94,0r-56,374v-10,66,92,68,105,17v31,-122,42,-262,65,-391r94,0r-53,341v-15,101,-57,172,-173,172","w":389},"\u00ff":{"d":"176,-700v35,-31,100,-14,90,38v-5,28,-32,58,-64,58v-53,0,-61,-65,-26,-96xm336,-700v35,-31,101,-14,91,38v-5,28,-31,58,-64,58v-53,0,-62,-65,-27,-96xm187,-505r19,352r2,0r140,-352r95,0r-317,712r-99,0r117,-248r-62,-464r105,0","w":373},"\u0141":{"d":"178,-754r100,0r-46,296r102,-60r-14,88r-102,60r-44,283r168,0r-13,87r-268,0r47,-301r-80,48r14,-88r80,-49","w":331},"\u0142":{"d":"104,-390r-78,58r12,-76r77,-54r57,-368r94,0r-45,291r77,-59r-12,76r-77,57r-72,465r-94,0","w":180},"\u00be":{"d":"543,-360r-2,0r-109,190r81,0xm664,-754r-491,754r-62,0r491,-754r62,0xm272,-670v4,-39,-42,-49,-58,-18v-7,14,-12,32,-15,51r-69,0v14,-24,10,-68,31,-91v21,-22,48,-35,92,-35v63,0,90,28,90,83v0,68,-20,126,-78,141r0,2v35,6,50,30,50,66v0,97,-37,169,-140,172v-79,2,-105,-46,-88,-119r69,0v-5,29,-6,66,28,63v49,-4,54,-61,57,-110v3,-38,-22,-54,-67,-49r8,-54v76,6,83,-37,90,-102xm366,-122r8,-54r175,-277r78,0r-44,283r31,0r-7,48r-31,0r-19,122r-70,0r19,-122r-140,0","w":616},"\u00bc":{"d":"547,-360r-2,0r-109,190r81,0xm282,-758r-71,453r-72,0r63,-399r-48,0r8,-54r120,0xm644,-754r-491,754r-62,0r491,-754r62,0xm587,-170r31,0r-7,48r-31,0r-19,122r-70,0r19,-122r-140,0r8,-54r175,-277r78,0","w":616},"\u00b9":{"d":"282,-758r-71,453r-72,0r63,-399r-48,0r8,-54r120,0","w":247},"\u00d7":{"d":"108,-411r57,-49r132,157r183,-158r41,50r-182,157r133,157r-58,49r-132,-157r-183,157r-40,-49r181,-157","w":500},"\u00de":{"d":"336,-435v0,-57,-29,-89,-94,-84r-39,250v104,10,133,-70,133,-166xm444,-463v-7,176,-69,286,-255,279r-28,184r-100,0r117,-754r100,0r-23,150v113,-3,194,25,189,141","w":396},"\u00a6":{"d":"185,-161r-39,250r-70,0r39,-250r70,0xm263,-661r-39,250r-70,0r39,-250r70,0","w":250},"\u00d0":{"d":"375,-364v21,-125,53,-319,-110,-305r-37,239r70,0r-14,87r-70,0r-40,258v161,4,178,-140,201,-279xm290,-754v150,-6,215,68,206,222v-13,240,-41,517,-286,530v-47,2,-99,2,-149,2r53,-343r-70,0r14,-87r70,0r50,-324r112,0","w":466},"\u00bd":{"d":"270,-758r-71,453r-72,0r62,-395r-48,0r9,-58r120,0xm612,-754r-491,754r-62,0r491,-754r62,0xm542,-458v106,0,115,91,79,167v-41,87,-100,162,-156,235r122,0r-8,56r-219,0v55,-103,131,-186,184,-290v12,-24,18,-44,21,-74v3,-33,-36,-51,-56,-28v-18,20,-21,55,-26,87r-73,0v13,-82,32,-153,132,-153","w":616},"\u2212":{"d":"89,-291r413,0r-11,70r-413,0","w":500},"\u00f0":{"d":"290,-251v11,-59,35,-172,-36,-177v-89,17,-82,144,-98,232v-9,52,-9,118,44,118v76,0,77,-102,90,-173xm186,8v-165,0,-135,-215,-101,-340v25,-91,77,-174,200,-162v7,1,15,5,23,10v-9,-57,-22,-94,-43,-142r-79,36r-23,-50r82,-36v-13,-28,-27,-54,-39,-77v-12,-23,-23,-42,-32,-57r80,-28v28,43,47,82,70,126r79,-38r24,50r-82,38v80,155,65,444,-12,584v-27,49,-72,86,-147,86","w":375},"\u00fe":{"d":"173,-252v-9,58,-33,166,31,176v86,-17,79,-135,97,-220v11,-51,15,-131,-41,-133v-68,12,-77,110,-87,177xm227,8v-54,3,-63,-30,-82,-65r-41,264r-94,0r141,-902r94,0r-40,255r2,0v24,-38,47,-73,105,-73v131,0,89,208,69,315v-18,96,-45,199,-154,206","w":380},"\u00b2":{"d":"267,-655v4,-26,-3,-54,-31,-52v-43,4,-42,57,-50,97r-73,0v13,-82,32,-153,132,-153v142,0,94,156,48,225v-40,61,-81,120,-125,177r122,0r-9,56r-219,0v56,-102,130,-185,184,-289v10,-20,18,-40,21,-61","w":247},"\u00b3":{"d":"333,-680v0,68,-20,126,-78,141r0,2v35,6,50,30,50,66v0,97,-37,169,-140,172v-79,2,-105,-46,-88,-119r69,0v-5,29,-6,66,28,63v49,-4,54,-61,57,-110v3,-38,-22,-54,-67,-49r8,-54v76,6,83,-37,90,-102v4,-39,-42,-49,-58,-18v-7,14,-12,32,-15,51r-69,0v14,-24,10,-68,31,-91v21,-22,48,-35,92,-35v63,0,90,28,90,83","w":247},"\u0160":{"d":"198,-930r58,-39r59,83r91,-83r41,39r-145,139xm105,-532v3,-150,93,-253,257,-226v17,4,32,10,47,19r-17,101v-22,-17,-43,-32,-80,-32v-87,0,-134,105,-89,179v55,89,161,150,136,304v-20,123,-117,225,-265,189v-19,-5,-34,-15,-47,-28r15,-101v25,20,50,39,93,39v71,-1,107,-59,107,-128v0,-143,-161,-160,-157,-316","w":354},"\u00dd":{"d":"335,-787r-46,-29r105,-149r61,43xm227,-754r38,349r2,0v37,-124,88,-234,134,-349r107,0r-207,429r-50,325r-100,0r50,-325r-82,-429r108,0","w":392},"\u017d":{"d":"226,-930r58,-39r59,83r91,-83r41,39r-145,139xm492,-754r-331,667r215,0r-13,87r-348,0r333,-667r-202,0r13,-87r333,0","w":393},"\u0161":{"d":"125,-711r58,-39r59,83r91,-83r41,39r-145,139xm296,-402v-34,-42,-140,-34,-139,35v1,43,38,60,63,83v29,27,63,57,62,115v-3,117,-90,197,-213,171v-12,-2,-23,-9,-36,-18r14,-92v21,17,38,30,73,32v64,3,95,-78,54,-121v-40,-42,-104,-70,-104,-152v0,-111,84,-181,202,-159v13,2,26,9,38,17","w":276},"\u00fd":{"d":"291,-568r-45,-29r105,-149r60,43xm187,-505r19,352r2,0r140,-352r95,0r-317,712r-99,0r117,-248r-62,-464r105,0","w":373},"\u017e":{"d":"155,-711r58,-39r59,83r91,-83r41,39r-145,139xm399,-505r-234,421r160,0r-13,84r-298,0r240,-421r-162,0r13,-84r294,0","w":335},"\u20ac":{"d":"134,-456v41,-163,118,-333,336,-302v14,2,28,8,42,17r-23,83v-39,-21,-105,-17,-142,6v-63,40,-97,115,-117,196r205,0r-14,50r-201,0r-12,82r191,0r-14,50r-181,0v-1,108,27,194,135,194v21,0,41,-4,62,-11r-14,85v-23,11,-47,16,-79,16v-163,2,-211,-120,-202,-284r-44,0r14,-50r34,0r13,-82r-40,0r14,-50r37,0"}}});
;
jQuery.fn.DefaultValue = function(text){
    return this.each(function(){
		//Make sure we're dealing with text-based form fields
		if(this.type != 'text' && this.type != 'password' && this.type != 'textarea')
			return;
		
		//Store field reference
		var fld_current=this;
		
		//Set value initially if none are specified
        if(this.value=='') {
			this.value=text;
		} else {
			//Other value exists - ignore
			return;
		}
		
		//Remove values on focus
		$(this).focus(function() {
			if(this.value==text || this.value=='')
				this.value='';
		});
		
		//Place values back on blur
		$(this).blur(function() {
			if(this.value==text || this.value=='')
				this.value=text;
		});
		
		//Capture parent form submission
		//Remove field values that are still default
		$(this).parents("form").each(function() {
			//Bind parent form submit
			$(this).submit(function() {
				if(fld_current.value==text) {
					fld_current.value='';
				}
			});
		});
    });
};;
/**
 * jQuery custom selectboxes
 * 
 * Copyright (c) 2008 Krzysztof SuszyÅ„ski (suszynski.org)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * @version 0.6.1
 * @category visual
 * @package jquery
 * @subpakage ui.selectbox
 * @author Krzysztof SuszyÅ„ski <k.suszynski@wit.edu.pl>
**/
jQuery.fn.selectbox = function(options){
	/* Default settings */
	var settings = {
		className: 'jquery-selectbox',
		animationSpeed: "normal",
		listboxMaxSize: 10,
		//listboxMaxSize: 5,
		replaceInvisible: false
	};
	var commonClass = 'jquery-custom-selectboxes-replaced';
	var listOpen = false;
	var showList = function(listObj) {
		var selectbox = listObj.parents('.' + settings.className + '');
		listObj.slideDown(settings.animationSpeed, function(){
			listOpen = true;
		});
		selectbox.addClass('selecthover');
		jQuery(document).bind('click', onBlurList);
		return listObj;
	}
	var hideList = function(listObj) {
		var selectbox = listObj.parents('.' + settings.className + '');
		listObj.slideUp(settings.animationSpeed, function(){
			listOpen = false;
			jQuery(this).parents('.' + settings.className + '').removeClass('selecthover');
		});
		jQuery(document).unbind('click', onBlurList);
		return listObj;
	}
	var onBlurList = function(e) {
		var trgt = e.target;
		var currentListElements = jQuery('.' + settings.className + '-list:visible').parent().find('*').andSelf();
		if(jQuery.inArray(trgt, currentListElements)<0 && listOpen) {
			hideList( jQuery('.' + commonClass + '-list') );
		}
		return false;
	}
	
	/* Processing settings */
	settings = jQuery.extend(settings, options || {});
	/* Wrapping all passed elements */
	return this.each(function() {
		var _this = jQuery(this);
		if(_this.filter(':visible').length == 0 && !settings.replaceInvisible)
			return;
		var replacement = jQuery(
			'<div class="' + settings.className + ' ' + commonClass + '">' +
				'<div class="' + settings.className + '-moreButton" />' +
				'<div class="' + settings.className + '-list ' + commonClass + '-list" />' +
				'<span class="' + settings.className + '-currentItem" />' +
			'</div>'
		);
		jQuery('option', _this).each(function(k,v){
			var v = jQuery(v);
			var listElement =  jQuery('<span class="' + settings.className + '-item value-'+v.val()+' item-'+k+'">' + v.text() + '</span>');	
			listElement.click(function(){
				var thisListElement = jQuery(this);
				var thisReplacment = thisListElement.parents('.'+settings.className);
				var thisIndex = thisListElement[0].className.split(' ');
				for( k1 in thisIndex ) {
					if(/^item-[0-9]+$/.test(thisIndex[k1])) {
						thisIndex = parseInt(thisIndex[k1].replace('item-',''), 10);
						break;
					}
				};
				var thisValue = thisListElement[0].className.split(' ');
				for( k1 in thisValue ) {
					if(/^value-.+$/.test(thisValue[k1])) {
						thisValue = thisValue[k1].replace('value-','');
						break;
					}
				};
				thisReplacment
					.find('.' + settings.className + '-currentItem')
					.text(thisListElement.text());
				thisReplacment
					.find('select')
					.val(thisValue)
					.triggerHandler('change');
				var thisSublist = thisReplacment.find('.' + settings.className + '-list');
				if(thisSublist.filter(":visible").length > 0) {
					hideList( thisSublist );
				}else{
					showList( thisSublist );
				}
			}).bind('mouseenter',function(){
				jQuery(this).addClass('listelementhover');
			}).bind('mouseleave',function(){
				jQuery(this).removeClass('listelementhover');
			});
			jQuery('.' + settings.className + '-list', replacement).append(listElement);
			if(v.filter(':selected').length > 0) {
				jQuery('.'+settings.className + '-currentItem', replacement).text(v.text());
			}
		});
		replacement.find('.' + settings.className + '-moreButton').click(function(){
			var thisMoreButton = jQuery(this);
			var otherLists = jQuery('.' + settings.className + '-list')
				.not(thisMoreButton.siblings('.' + settings.className + '-list'));
			hideList( otherLists );
			var thisList = thisMoreButton.siblings('.' + settings.className + '-list');
			if(thisList.filter(":visible").length > 0) {
				hideList( thisList );
			}else{
				showList( thisList );
			}
		}).bind('mouseenter',function(){
			jQuery(this).addClass('morebuttonhover');
		}).bind('mouseleave',function(){
			jQuery(this).removeClass('morebuttonhover');
		});
		_this.hide().replaceWith(replacement).appendTo(replacement);
		var thisListBox = replacement.find('.' + settings.className + '-list');
		var thisListBoxSize = thisListBox.find('.' + settings.className + '-item').length;
		if(thisListBoxSize > settings.listboxMaxSize)
			thisListBoxSize = settings.listboxMaxSize;
		if(thisListBoxSize == 0)
			thisListBoxSize = 1;	
		var thisListBoxWidth = Math.round(_this.width() + 5);
		if(jQuery.browser.safari)
			thisListBoxWidth = thisListBoxWidth * 0.94;
		replacement.css('width', thisListBoxWidth + 'px');
		thisListBox.css({
			width: Math.round(thisListBoxWidth-5) + 'px',
			//height: thisListBoxSize + 'em'
			height: thisListBoxSize * 18 + 'px'
		});
	});
}
jQuery.fn.unselectbox = function(){
	var commonClass = 'jquery-custom-selectboxes-replaced';
	return this.each(function() {
		var selectToRemove = jQuery(this).filter('.' + commonClass);
		selectToRemove.replaceWith(selectToRemove.find('select').show());		
	});
};
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.79 (03-MAR-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.79";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"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;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 removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=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;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){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){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){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]);});};opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){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).find("a").removeClass(clsName).filter("a: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;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});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);}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);}}$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;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pagerEvent!="click"){$a.click(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){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,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);;
(function($) {

$.jpopup = {};
$.fn.jpopup = function(settings)
{
	settings = $.extend({}, $.fn.jpopup.defaults, settings);

	return this.eq(0).each(
		function()
		{
			var $this = $(this);
			var content = $this.html();
			var shadow = '';
			var shadow_html = '<div id="jshadow"></div>';
			var popup_html = ([
				'<div id="jpopup"><div class="jpopuptop"><div class="jpopupcontent">',
				'</div></div>',
				'<a href="#close" class="close">' + settings.closeText + '</a>',
				'</div>'
			]).join('');
			
			// remove if already showed
			$('#jpopup,#jshadow').remove(); 
			
			// if shadow enabled > show shadow
			if(settings.shadow){
				$(document.body).append(shadow_html);
				$('#jshadow').css({
					display: 'block',
					opacity: settings.opacity,
					background:	settings.background,
					zIndex: (settings.zIndex-1)
				});
			}
			
			// add popup to DOM
			$(document.body).append(popup_html);
			$('#jpopup').show();
			
			$('#jpopup').css({
				zIndex: settings.zIndex,
				top: $(window).scrollTop() + ($(window).height() - $('#jpopup').height())/12 + settings.heightFix,
				left: ($(window).width() - $('#jpopup').width())/2
			});
			
			$('#jpopup div.jpopupcontent').html( content );
			// show close button
			if(settings.close){
				$('#jpopup a.close').show();
			}

			// add close event
			$('#jpopup a.close,#jshadow').click(function(e){
				e.preventDefault();
				$('#jpopup,#jshadow').remove();
				return false;
			});
			
			// run onShow
			if( typeof(settings.onShow) == 'function' ){
				settings.onShow();
			}
		}
	)
};

$.fn.jpopup.defaults = {
	close: true,
	closeText: 'close',
	shadow : false,
	opacity: 0.5,
	background: '#000',
	zIndex: 1000,
	heightFix: 0,
	onShow: null
};

})(jQuery);;
$(document).ready(function(){
	initCufon();
	initSearchValue();
	initLanguageSwitcher();
	initCampaignScroll();
	initSmallPreview();
	initProductSlider();
	initHomapageBanner();
	initPopup();
});

function initCufon(){
	//English
	Cufon.replace('.lang-en #header ul.menu li a, .lang-en #main h1.title, .lang-en #main h1.title1, .lang-en #sidebar-right ul.sidebar-menu li a, .lang-en #sidebar-right ul.menu li a, .lang-en #content-home p strong.title, .lang-en div.field-field-pr-title div.odd, .lang-en a.twitter, .lang-en #header h3.change-region, div.block-related ul li a',  {fontFamily: 'Futura LT Medium' , hover:'true'});
 	Cufon.replace('.lang-en #main h2.title,.lang-en #main h2.color,.lang-en #main div.view-product-list div.views-field-nothing span,.lang-en #main div.view-product-list div.views-field-field-brand-value span,.lang-en strong.bold,.lang-en div.field-field-descr-title div.odd,.lang-en div.view-Reseller div.view-header p,.not-front.lang-en div.view div.view-header p,.lang-en #main div.view-product-list div.view-content ul li div.views-field-view-node span a,.lang-en a.open,.lang-en a.close, .lang-en div.terms ul li span', {fontFamily: 'FuturaStdBold' , hover:'true'});
	
	/**/
	
	//Swedish
	Cufon.replace('.lang-sv #header ul.menu li a, .lang-sv #main h1.title, .lang-sv #main h1.title1, .lang-sv #sidebar-right ul.sidebar-menu li a, .lang-sv #sidebar-right ul.menu li a, .lang-sv #content-home p strong.title, .lang-sv div.field-field-pr-title div.odd, .lang-sv a.twitter, .lang-sv #header h3.change-region, div.block-related ul li a' ,  {fontFamily: 'Futura LT Medium' , hover:'true'});
	Cufon.replace('.lang-sv #main h2.title, .lang-sv #main h2.color, .lang-sv #main div.view-product-list div.views-field-nothing span, .lang-sv div.terms ul li, .lang-sv #main div.view-product-list div.views-field-field-brand-value span,.lang-sv strong.bold,.lang-sv div.field-field-descr-title div.odd,.lang-sv div.view-Reseller div.view-header p,.not-front.lang-sv div.view div.view-header p,.lang-sv #main div.view-product-list div.view-content ul li div.views-field-view-node span a,.lang-sv a.open,.lang-sv a.close', {fontFamily: 'FuturaStdBold' , hover:'true'});

	//Finnish
	Cufon.replace('.lang-fi #header ul.menu li a, .lang-fi #main h1.title, .lang-fi #main h1.title1, .lang-fi #sidebar-right ul.sidebar-menu li a, .lang-fi #sidebar-right ul.menu li a, .lang-fi #content-home p strong.title, .lang-fi div.field-field-pr-title div.odd, .lang-fi a.twitter, .lang-fi #header h3.change-region, div.block-related ul li a' ,  {fontFamily: 'Futura LT Medium' , hover:'true'});
	Cufon.replace('.lang-fi #main h2.title, .lang-fi #main h2.color, .lang-fi #main div.view-product-list div.views-field-nothing span, .lang-fi div.terms ul li, .lang-fi #main div.view-product-list div.views-field-field-brand-value span,.lang-fi strong.bold,.lang-fi div.field-field-descr-title div.odd,.lang-fi div.view-Reseller div.view-header p,.not-front.lang-fi div.view div.view-header p,.lang-fi #main div.view-product-list div.view-content ul li div.views-field-view-node span a,.lang-fi a.open,.lang-fi a.close', {fontFamily: 'FuturaStdBold' , hover:'true'});
	
	//Norwegian
	Cufon.replace('.lang-nn #header ul.menu li a, .lang-nn #main h1.title, .lang-nn #main h1.title1, .lang-nn #sidebar-right ul.sidebar-menu li a, .lang-nn #sidebar-right ul.menu li a, .lang-nn #content-home p strong.title, .lang-nn div.field-field-pr-title div.odd, .lang-nn a.twitter, .lang-nn #header h3.change-region, div.block-related ul li a' ,  {fontFamily: 'Futura LT Medium' , hover:'true'});
	Cufon.replace('.lang-nn #main h2.title, .lang-nn #main h2.color, .lang-nn #main div.view-product-list div.views-field-nothing span, .lang-nn div.terms ul li, .lang-nn #main div.view-product-list div.views-field-field-brand-value span,.lang-nn strong.bold,.lang-nn div.field-field-descr-title div.odd,.lang-nn div.view-Reseller div.view-header p,.not-front.lang-nn div.view div.view-header p,.lang-nn #main div.view-product-list div.view-content ul li div.views-field-view-node span a,.lang-nn a.open,.lang-nn a.close', {fontFamily: 'FuturaStdBold' , hover:'true'});
	
	//All
	Cufon.replace('.lang-en #content-home h2.info, .lang-sv #content-home h2.info, .lang-fi #content-home h2.info, .lang-nn #content-home h2.info, span.date',  {fontFamily: 'Futura LT Light'});
	Cufon.replace('.lang-en #block-locale-0 a.language-link, .lang-sv #block-locale-0 a.language-link, .lang-fi #block-locale-0 a.language-link, .lang-nn #block-locale-0 a.language-link',  {fontFamily: 'Futura LT Medium', hover:'true'});

  Cufon.replace('.news-links', {fontFamily: 'Futura LT Medium' , hover:'true'});
};

function initSearchValue(){
	$("#header #search-block-form input.form-text").DefaultValue("Search");
	$("#content .views-exposed-form .views-exposed-widget #edit-submit-Reseller").attr("value","Search");
	$("#header #search-block-form #edit-submit").attr("value","");
};

if (Drupal.jsEnabled) {
	Drupal.behaviors.drysonCustomSelectbox = function (context) {
		$('#edit-reseller-city', context).selectbox();
	}
};

function initLanguageSwitcher(){
	$("#header h3.change-region").click(function(){
    console.log(1);
		$('#header #block-locale-0 div.content').slideToggle();
		return false;
	})
};

function initCampaignScroll(){
	$('div.content #right-slider').cycle({
		fx: 'scrollLeft',
		delay: -2000
	});
	$('div.content #right-slider').after('<div class="sss-pager">').cycle({
        fx:     'scrollLeft',
        pager:  '.pager'
    });
};

function initProductSlider(){
    $('#content div.slider div.container').cycle({
		fx: 'fade'
	});
	$('#content div.slider div.container').after('<div class="pager">').cycle({
        fx:     'fade',
        pager:  '.pager'
    });
};

function initSmallPreview(){
	$("#content div.product-block a.open").click(function(){
		$(this).parents('div.product-block:eq(0)').find("div.slide").slideDown();
		$(this).hide();
		$("#content div.product-block a.close").show();
		
		return false;
	})
	$("#content div.product-block a.close").click(function(){
		$(this).parents('div.product-block:eq(0)').find("div.slide").slideUp();
		$(this).hide();
		$("#content div.product-block a.open").show();
		
		return false;
	})
};

function initHomapageBanner(){
  $('div.view-homepage-banner ul').cycle({
    fx: 'fade',
    speed: 1200,
    pager: '#homepage-pager',
  });
};

function initPopupCufon(){
	Cufon.replace('.lang-en h1.popup,.lang-en a.pdf,.lang-en div.box-info strong.popup_bold,.lang-sv h1.popup,.lang-sv a.pdf,.lang-sv div.box-info strong.popup_bold, .lang-fi h1.popup,.lang-fi a.pdf,.lang-fi div.box-info strong.popup_bold, .lang-nn h1.popup,.lang-nn a.pdf,.lang-nn div.box-info strong.popup_bold', {fontFamily:'FuturaStdBold'});
	//Cufon.replace('.lang-en div.box-info strong.popup_bold', {fontFamily:'FuturaStdBold'});
};

function initPopupSlider(){
	$('#jpopup div.box div.image').after('<ul id="images">').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    pager:  '#images', 
     
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
        return '<li><a href="#"><img src="' + slide.src + '" width="89" height="89" /></a></li>'; 
    } 
});
};

function initPopup(){
	$("#open_popup").click(function(){
	 $('#popup_content').jpopup({
	 	close: true,
		shadow: true,
		opacity: 0.7,
		background: '#000',
		onShow: initPopupCufon
	});
	initPopupSlider();
	return false;
  });
};;

