/*
 * 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")}})})();/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":1024,"face":{"font-family":"AvantGarde Bk BT","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 4 2 2 2 2 2 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-342 -1972 2605 483","underline-thickness":"113","underline-position":"-122","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":578},"!":{"d":"365,-379r-142,0r0,-1077r142,0r0,1077xm365,0r-142,0r0,-266r142,0r0,266","w":588},"\"":{"d":"473,-1434r0,553r-102,0r0,-553r102,0xm199,-1434r0,553r-101,0r0,-553r101,0","w":569},"#":{"d":"975,-864r-266,0r-97,276r267,0xm918,-1454r-168,483r264,0r172,-483r127,0r-170,483r315,0r-37,107r-317,0r-98,276r340,0r-37,109r-340,0r-170,479r-129,0r172,-479r-269,0r-172,479r-127,0r170,-479r-327,0r39,-109r325,0r101,-276r-353,0r35,-107r354,0r173,-483r127,0","w":1575},"$":{"d":"1008,-420v3,226,-148,402,-357,416r0,246r-143,0r0,-246v-209,-19,-359,-198,-356,-428r139,0v-5,197,93,303,284,303v171,0,287,-101,287,-268v0,-137,-137,-245,-339,-307v-128,-40,-215,-90,-263,-144v-48,-54,-72,-127,-72,-219v0,-196,142,-359,320,-377r0,-213r143,0r0,213v197,21,314,156,324,365r-144,0v3,-148,-97,-246,-243,-246v-155,0,-259,98,-258,250v0,106,95,192,284,257v217,75,391,138,394,398","w":1157},"%":{"d":"446,-1350v-123,0,-227,104,-227,226v0,122,105,227,227,227v122,0,226,-104,226,-227v0,-124,-103,-226,-226,-226xm449,-768v-196,0,-359,-163,-359,-358v0,-195,164,-359,359,-359v193,0,360,166,360,359v0,195,-165,358,-360,358xm1229,-1485r117,0r-779,1514r-116,0xm1341,-555v-123,0,-227,102,-227,225v0,123,105,228,227,228v123,0,228,-105,228,-228v0,-121,-106,-225,-228,-225xm1346,29v-196,0,-359,-163,-359,-359v0,-194,165,-358,359,-358v193,0,358,165,358,358v0,196,-163,359,-358,359","w":1796},"&":{"d":"588,-1350v-168,0,-255,197,-164,334v24,38,68,82,131,133v125,-50,219,-118,225,-264v4,-108,-87,-203,-192,-203xm281,-410v-3,168,115,297,280,295v63,0,122,-21,175,-62v53,-41,104,-106,153,-194r-387,-360v-124,60,-217,159,-221,321xm930,-1141v-7,181,-130,289,-279,353r295,272r172,-453r156,0r-219,555r325,299r-90,107r-297,-268v-77,172,-217,300,-440,305v-230,6,-429,-205,-424,-439v4,-195,128,-351,277,-415v-106,-100,-163,-151,-168,-316v-6,-188,164,-342,356,-342v176,0,342,166,336,342","w":1421},"'":{"d":"199,-1434r0,553r-101,0r0,-553r101,0","w":295},"(":{"d":"432,442v-203,-107,-306,-304,-307,-610r0,-706v1,-306,104,-503,307,-611r0,162v-132,112,-166,216,-166,473r0,657v2,259,34,362,166,474r0,161","w":541},")":{"d":"274,-850v-2,-258,-33,-361,-165,-473r0,-162v203,109,306,304,307,611r0,706v-1,306,-104,503,-307,610r0,-161v132,-112,165,-216,165,-474r0,-657","w":541},"*":{"d":"510,-981r-182,264r-107,-74r201,-251r-297,-86r37,-119r291,96r0,-305r114,0r0,305r289,-96r41,119r-301,86r205,251r-105,74"},"+":{"d":"903,-1221r0,562r549,0r0,98r-549,0r0,561r-98,0r0,-561r-551,0r0,-98r551,0r0,-562r98,0","w":1706},",":{"d":"248,162r-144,0r156,-428r143,0","w":578},"-":{"d":"563,-616r0,133r-469,0r0,-133r469,0","w":659,"k":{"\u00c5":36,"x":73,"w":73,"v":73,"t":36,"j":-38,"Y":112,"X":73,"W":112,"V":112,"T":112,"S":73,"J":112,"A":36}},".":{"d":"360,0r-143,0r0,-266r143,0r0,266","w":578},"\/":{"d":"72,190r-121,0r498,-1646r120,0","w":569},"0":{"d":"578,-1358v-226,0,-351,152,-351,385r0,492v-3,232,126,383,351,383v223,0,350,-149,350,-379r0,-502v3,-228,-128,-379,-350,-379xm578,-1487v312,-2,502,214,493,535v-8,273,42,609,-80,778v-84,117,-226,203,-413,203v-187,0,-319,-82,-408,-197v-64,-85,-84,-186,-84,-344v0,-276,-44,-616,86,-778v90,-111,221,-196,406,-197","w":1157},"1":{"d":"676,0r-152,0r0,-1331r-254,0r0,-125r406,0r0,1456","w":1157},"2":{"d":"596,-1487v245,0,453,213,444,463v-7,201,-98,311,-227,430r-491,453r714,0r0,141r-903,0r0,-141r516,-490v102,-97,169,-174,203,-229v134,-217,-21,-496,-268,-496v-206,0,-331,164,-310,387r-141,0v-13,-299,182,-518,463,-518","w":1157},"3":{"d":"441,-891v203,16,352,-45,352,-235v0,-130,-92,-234,-218,-234v-146,0,-230,97,-231,245r-133,0v8,-217,150,-370,371,-370v192,0,362,169,358,359v-3,135,-54,205,-141,270v146,77,235,202,239,410v4,261,-204,475,-465,475v-285,0,-463,-186,-464,-471r145,0v-9,193,130,346,311,346v189,0,328,-146,328,-336v0,-255,-179,-359,-452,-338r0,-121","w":1157},"4":{"d":"774,-408r6,-880r-542,880r536,0xm911,0r-141,0r0,-281r-682,0r0,-127r660,-1048r163,0r0,1048r158,0r0,127r-158,0r0,281","w":1157},"5":{"d":"1073,-481v0,273,-227,510,-498,510v-268,0,-478,-213,-491,-471r145,0v4,179,168,340,351,340v197,0,350,-179,350,-383v0,-215,-152,-370,-367,-367v-146,3,-234,70,-301,168r-110,-51r129,-721r657,0r0,143r-535,0r-73,406v75,-53,144,-84,258,-86v284,-5,485,224,485,512","w":1157},"6":{"d":"924,-463v0,-202,-141,-362,-338,-362v-196,0,-353,163,-353,360v0,197,161,367,355,367v193,0,336,-165,336,-365xm575,29v-273,0,-491,-212,-491,-480v0,-117,98,-323,207,-493r330,-512r178,0r-340,526v339,-100,614,141,614,463v0,280,-217,496,-498,496","w":1157},"7":{"d":"426,0r-160,0r576,-1313r-637,0r0,-143r803,0r0,131","w":1157},"8":{"d":"582,-1356v-140,0,-260,99,-260,234v0,143,104,243,247,243v167,0,270,-78,271,-239v1,-141,-114,-238,-258,-238xm580,-748v-198,0,-322,130,-322,330v0,178,138,322,311,322v187,0,328,-142,328,-328v0,-191,-128,-324,-317,-324xm113,-434v5,-199,84,-288,221,-379v-92,-60,-153,-149,-156,-287v-4,-205,188,-385,397,-385v215,0,408,169,404,375v-2,150,-62,234,-162,297v136,78,223,179,227,369v5,271,-202,473,-475,473v-250,0,-463,-212,-456,-463","w":1157},"9":{"d":"233,-995v0,202,141,362,338,362v196,0,353,-163,353,-360v0,-198,-160,-365,-355,-365v-193,0,-336,162,-336,363xm580,-1487v272,0,493,212,493,479v0,118,-97,323,-206,493r-330,515r-179,0r340,-528v-339,100,-614,-141,-614,-463v0,-281,214,-496,496,-496","w":1157},":":{"d":"365,-834r-142,0r0,-266r142,0r0,266xm365,0r-142,0r0,-266r142,0r0,266","w":588},";":{"d":"248,162r-144,0r156,-428r143,0xm365,-1100r0,266r-142,0r0,-266r142,0","w":588},"<":{"d":"1442,-1026r-1022,416r1022,413r0,109r-1178,-481r0,-82r1178,-484r0,109","w":1706},"=":{"d":"1452,-473r0,98r-1198,0r0,-98r1198,0xm1452,-846r0,98r-1198,0r0,-98r1198,0","w":1706},">":{"d":"1442,-651r0,82r-1178,481r0,-109r1022,-413r-1022,-416r0,-109","w":1706},"?":{"d":"481,-1485v241,0,408,185,408,430v0,133,-81,261,-191,357v-96,84,-144,151,-151,300r-144,1v5,-185,100,-307,208,-408v84,-79,126,-163,126,-252v0,-169,-98,-279,-264,-278v-187,2,-274,130,-280,323r-148,0v-1,-271,171,-473,436,-473xm403,0r0,-266r144,0r0,266r-144,0","w":948},"@":{"d":"1044,-999v134,1,215,62,254,163r60,-125r94,0r-152,625v-17,76,30,122,103,121v86,-2,155,-38,211,-82v123,-97,205,-273,205,-487v0,-356,-327,-580,-707,-580v-412,0,-671,214,-804,490v-92,190,-104,475,-15,667v112,241,374,406,729,406v254,0,473,-80,635,-193r39,55v-174,131,-378,219,-654,222v-423,4,-715,-184,-851,-459v-105,-213,-99,-527,12,-742v154,-302,454,-536,911,-536v361,1,629,160,752,396v90,172,84,416,3,590v-84,181,-238,335,-491,343v-130,4,-203,-52,-190,-180v-59,101,-152,179,-295,180v-207,2,-313,-118,-313,-328v0,-283,197,-549,464,-546xm702,-444v0,140,73,236,207,235v157,-1,267,-122,301,-260r62,-248v-20,-111,-94,-198,-215,-198v-221,0,-355,229,-355,471","w":2048},"A":{"d":"100,0r-151,0r565,-1456r172,0r563,1456r-153,0r-174,-457r-648,0xm872,-588r-276,-731r-272,731r548,0","w":1223,"k":{"\u201e":-151,"\u201a":-151,"\u2039":73,"\u2019":159,"\u2018":301,"\u201d":159,"\u201c":301,"\u00ab":73,"y":36,"w":55,"v":63,"Y":73,"V":55,"T":73,"S":-57,";":36,":":36,".":36,"-":36,",":36}},"B":{"d":"819,-412v0,-201,-131,-276,-346,-276r-201,0r0,549r201,0v218,0,346,-70,346,-273xm739,-1077v0,-190,-131,-239,-344,-240r-123,0r0,490r86,0v246,-3,381,-38,381,-250xm965,-430v0,315,-176,429,-508,430r-322,0r0,-1456r271,0v307,1,479,98,479,385v0,144,-59,231,-156,287v144,60,236,165,236,354","w":1042,"k":{"\u201e":36,"\u201a":36,"\u2018":73,"\u201c":73,";":73,":":73,".":73,",":73}},"C":{"d":"811,29v-520,13,-912,-535,-692,-1056v106,-251,331,-458,684,-458v321,0,548,174,665,406r-172,0v-116,-159,-252,-258,-495,-264v-317,-8,-588,289,-588,608v0,335,262,632,588,626v230,-4,379,-103,485,-251r170,0v-117,222,-333,381,-645,389","w":1540,"k":{"\u201e":55,"\u201a":55,"\u2019":-114,"\u2018":36,"\u201d":-114,"\u201c":36,";":36,":":36,".":36,",":36}},"D":{"d":"573,-137v372,2,582,-223,578,-598v-3,-281,-139,-483,-356,-555v-113,-38,-353,-25,-519,-27r0,1180r297,0xm135,-1456v235,5,520,-20,701,34v190,56,322,198,400,366v96,205,89,477,-7,676v-80,167,-222,300,-414,352v-144,39,-470,26,-680,28r0,-1456","w":1366,"k":{"\u201e":112,"\u201a":112,"\u2019":-57,"\u2018":36,"\u201d":-57,"\u201c":36,";":36,":":36,".":112,"-":-38,",":112}},"E":{"d":"279,-803r612,0r0,144r-612,0r0,518r612,0r0,141r-756,0r0,-1456r756,0r0,143r-612,0r0,510","w":1028,"k":{"\u203a":36,"\u2039":36,"\u00bb":36,"\u00ab":36,";":73,":":73,".":36,"-":36,",":36}},"F":{"d":"135,0r0,-1456r719,0r0,143r-578,0r0,510r578,0r0,144r-578,0r0,659r-141,0","w":991,"k":{"\u201e":243,"\u201a":243,"\u203a":73,"\u2039":73,"\u0153":45,"\u00bb":73,"\u00ab":73,"\u00f8":45,"\u00e6":45,"\u00c5":92,"y":45,"u":36,"r":36,"o":45,"i":36,"e":45,"a":45,"S":73,"A":92,";":112,":":112,".":264,"-":55,",":264}},"G":{"d":"213,-735v0,343,263,626,600,626v283,0,515,-213,565,-460r-735,0r0,-129r905,0v-13,404,-333,727,-747,727v-513,0,-901,-540,-682,-1056v109,-256,336,-458,700,-458v316,0,532,169,651,395r-176,0v-120,-150,-249,-250,-483,-256v-327,-9,-598,285,-598,611","w":1612,"k":{"\u201e":112,"\u201a":112,"\u2019":-47,"\u2018":36,"\u201d":-47,"\u201c":36,";":36,":":36,".":73,",":73}},"H":{"d":"279,0r-144,0r0,-1456r144,0r0,653r692,0r0,-653r143,0r0,1456r-143,0r0,-664r-692,0r0,664","w":1251,"k":{"\u2019":-38,"\u201d":-38,";":36,":":36,".":36,",":36}},"I":{"d":"276,0r-143,0r0,-1456r143,0r0,1456","w":412,"k":{"\u2019":-38,"\u201d":-38,";":36,":":36,".":36,",":36}},"J":{"d":"170,-354v4,133,95,241,227,241v89,0,152,-29,189,-85v37,-56,55,-168,55,-337r0,-921r143,0r0,981v6,246,-50,377,-198,459v-146,81,-358,57,-460,-58v-64,-72,-99,-164,-99,-280r143,0","w":915,"k":{"\u201e":55,"\u201a":55,"\u2019":-38,"\u201d":-38,";":36,":":36,".":73,",":73}},"K":{"d":"274,-449r0,449r-141,0r0,-1456r141,0r0,809r674,-809r170,0r-588,704r578,752r-176,0r-494,-645","w":1100,"k":{"\u201e":-75,"\u201a":-75,"\u203a":112,"\u2039":188,"\u2019":-38,"\u2018":-38,"\u201d":-38,"\u201c":-38,"\u0153":73,"\u0152":92,"\u00bb":112,"\u00ab":188,"\u00f8":73,"\u00e6":73,"\u00d8":92,"y":73,"u":55,"o":73,"e":73,"a":73,"Y":36,"W":36,"O":92,"C":92,";":36,":":36,".":36,"-":112,",":36}},"L":{"d":"791,0r-656,0r0,-1456r144,0r0,1315r512,0r0,141","w":844,"k":{"\u201e":-38,"\u201a":-38,"\u203a":112,"\u2039":188,"\u2019":225,"\u2018":225,"\u201d":225,"\u201c":225,"\u0153":63,"\u0152":73,"\u00bb":112,"\u00ab":188,"\u00f8":63,"\u00e6":63,"\u00d8":73,"y":112,"u":63,"o":63,"e":63,"a":63,"Y":112,"W":120,"V":188,"U":36,"T":83,"O":73,";":36,":":36,".":73,"-":149,",":73}},"M":{"d":"143,0r0,-1456r211,0r504,1266r502,-1266r211,0r0,1456r-137,0r0,-1286r-512,1286r-129,0r-512,-1286r0,1286r-138,0","w":1692,"k":{"\u2019":-38,"\u201d":-38,";":36,":":36,".":36,",":36}},"N":{"d":"1102,-174r-17,-1282r142,0r0,1456r-172,0r-799,-1284r16,1284r-141,0r0,-1456r172,0","w":1366,"k":{"\u2019":-38,"\u201d":-38,";":36,":":36,".":36,",":36}},"O":{"d":"1401,-739v0,-383,-385,-724,-795,-573v-221,82,-387,292,-395,577v-10,341,264,626,600,626v330,0,590,-292,590,-630xm120,-1027v73,-176,229,-333,404,-405v169,-70,394,-73,562,0v254,110,462,340,462,695v0,360,-194,596,-443,704v-649,281,-1238,-373,-985,-994","w":1612,"k":{"\u201e":112,"\u201a":112,"\u2019":-57,"\u2018":36,"\u201d":-57,"\u201c":36,"X":55,"T":73,";":36,":":36,".":112,",":112}},"P":{"d":"817,-1032v0,-213,-125,-280,-356,-281r-199,0r0,555r211,0v218,0,344,-71,344,-274xm119,-1456r309,0v260,-8,407,57,494,210v67,118,67,289,4,412v-80,158,-224,228,-473,222r-191,0r0,612r-143,0r0,-1456","w":1034,"k":{"\u201e":301,"\u201a":301,"\u203a":112,"\u2039":149,"\u2019":-57,"\u201d":-57,"\u0153":92,"\u00bb":112,"\u00ab":149,"\u00f8":92,"\u00e6":92,"\u00c5":131,"u":36,"s":55,"r":36,"o":92,"n":36,"i":36,"e":92,"a":92,"A":131,";":73,":":73,".":452,"-":149,",":452}},"Q":{"d":"1548,-713v-5,248,-94,406,-235,539v64,43,142,59,252,57r0,127v-150,18,-272,-32,-365,-98v-107,70,-233,113,-397,117v-508,12,-897,-536,-683,-1056v73,-176,229,-334,404,-405v86,-35,179,-53,279,-53v426,0,754,340,745,772xm236,-555v177,-93,445,-97,626,5v95,54,210,147,340,286v114,-114,194,-268,199,-475v7,-321,-278,-607,-600,-607v-311,0,-598,293,-590,603v2,70,9,129,25,188xm285,-426v108,205,356,374,660,302v45,-11,91,-30,140,-54v-123,-128,-222,-211,-297,-252v-147,-80,-360,-74,-503,4","w":1612,"k":{"\u201e":-38,"\u201a":-38,"\u2019":-57,"\u2018":36,"\u201d":-57,"\u201c":36,".":36,",":36}},"R":{"d":"580,-702v176,4,314,-118,311,-289v-3,-160,-81,-267,-209,-305v-78,-23,-299,-16,-426,-17r0,1313r-141,0r0,-1456v266,10,580,-36,741,84v102,76,185,213,188,379v3,217,-152,414,-352,424r352,569r-170,0r-432,-702r138,0","w":1139,"k":{"\u203a":73,"\u2039":112,"\u2019":-47,"\u2018":73,"\u201d":-47,"\u201c":73,"\u0153":36,"\u00bb":73,"\u00ab":112,"\u00f8":36,"\u00e6":36,"o":36,"e":36,"a":36,";":36,":":36,".":112,"-":73,",":112}},"S":{"d":"883,-442v3,269,-162,471,-422,471v-244,0,-404,-194,-403,-445r138,0v2,168,103,295,267,295v171,0,276,-120,276,-295v0,-140,-143,-246,-342,-311v-187,-61,-295,-143,-301,-360v-6,-227,163,-398,389,-396v230,2,356,156,367,385r-135,0v-12,-145,-85,-243,-232,-248v-176,-6,-304,182,-225,348v43,91,106,108,242,152v218,71,378,140,381,404","w":952,"k":{"\u201e":36,"\u201a":36,"\u2019":-57,"\u2018":36,"\u201d":-57,"\u201c":36,";":36,":":36,".":73,"-":-38,",":73}},"T":{"d":"446,0r-143,0r0,-1313r-291,0r0,-143r725,0r0,143r-291,0r0,1313","w":750,"k":{"\u201e":73,"\u201a":73,"\u203a":112,"\u2039":149,"\u2019":-38,"\u2018":-75,"\u201d":-38,"\u201c":-75,"\u0153":83,"\u0152":73,"\u00bb":112,"\u00ab":149,"\u00f8":83,"\u00e6":83,"\u00d8":73,"\u00c5":73,"y":36,"w":45,"u":45,"s":63,"r":45,"o":83,"e":83,"c":83,"a":83,"O":73,"C":73,"A":73,";":73,":":73,".":149,"-":112,",":149}},"U":{"d":"588,31v-347,0,-474,-196,-475,-561r0,-926r143,0r0,921v-6,206,38,308,152,384v49,33,107,47,170,47v250,0,322,-181,323,-461r0,-891r141,0r0,926v0,352,-124,561,-454,561","w":1157,"k":{"\u201e":36,"\u201a":36,"\u203a":55,"\u2039":36,"\u2019":-38,"\u201d":-38,"\u00bb":55,"\u00ab":36,".":73,",":73}},"V":{"d":"-41,-1456r143,0r461,1241r463,-1241r143,0r-548,1456r-113,0","w":1139,"k":{"\u201e":188,"\u201a":188,"\u203a":149,"\u2039":188,"\u2019":-114,"\u2018":-114,"\u201d":-114,"\u201c":-114,"\u0153":112,"\u00bb":149,"\u00ab":188,"\u00f8":112,"\u00e6":112,"\u00c5":55,"y":36,"u":63,"o":112,"e":112,"a":112,"A":55,";":73,":":73,".":225,"-":112,",":225}},"W":{"d":"899,-1456r293,1194r364,-1194r140,0r-451,1456r-119,0r-292,-1188r-293,1188r-119,0r-453,-1456r142,0r362,1194r295,-1194r131,0","w":1665,"k":{"\u201e":149,"\u201a":149,"\u203a":112,"\u2039":149,"\u2019":-114,"\u2018":-114,"\u201d":-114,"\u201c":-114,"\u0153":73,"\u00bb":112,"\u00ab":149,"\u00f8":73,"\u00e6":73,"u":55,"r":36,"o":73,"e":73,"a":73,";":36,":":36,".":149,"-":112,",":149}},"X":{"d":"170,0r-176,0r506,-733r-494,-723r178,0r400,604r399,-604r176,0r-493,723r505,733r-180,0r-407,-618","w":1165,"k":{"\u201e":-94,"\u201a":-94,"\u203a":73,"\u2039":188,"\u2019":-38,"\u2018":-38,"\u201d":-38,"\u201c":-38,"\u0152":55,"\u00bb":73,"\u00ab":188,"\u00d8":55,"e":36,"O":55,"C":55,";":36,":":36,".":36,"-":73,",":36}},"Y":{"d":"557,-535r0,535r-141,0r0,-537r-465,-919r164,0r372,756r377,-756r160,0","w":981,"k":{"\u201e":149,"\u201a":149,"\u203a":149,"\u2039":225,"\u2019":-94,"\u2018":-114,"\u201d":-94,"\u201c":-114,"\u0153":139,"\u00bb":149,"\u00ab":225,"\u00f8":139,"\u00e6":139,"\u00c5":73,"u":102,"o":139,"e":139,"a":139,"A":73,";":73,":":73,".":225,"-":112,",":225}},"Z":{"d":"719,-1313r-639,0r0,-143r805,0r0,137r-682,1178r696,0r0,141r-860,0r0,-137","w":938,"k":{"\u201e":-75,"\u201a":-75,"\u203a":73,"\u2039":188,"\u2019":-57,"\u201d":-57,"\u00bb":73,"\u00ab":188,".":73,"-":149,",":73}},"[":{"d":"465,293r0,117r-332,0r0,-1866r332,0r0,119r-191,0r0,1630r191,0","w":541},"\\":{"d":"498,190r-498,-1646r119,0r499,1646r-120,0","w":569},"]":{"d":"76,293r190,0r0,-1630r-190,0r0,-119r332,0r0,1866r-332,0r0,-117","w":541},"^":{"d":"1094,-1458r530,557r-143,0r-457,-455r-459,455r-143,0r532,-557r140,0","w":2048},"_":{"d":"1024,383r0,100r-1024,0r0,-100r1024,0"},"`":{"d":"545,-1247r-269,-350r152,0r209,350r-92,0"},"a":{"d":"625,-102v225,0,417,-220,417,-455v0,-221,-198,-436,-413,-436v-237,0,-426,210,-426,454v0,235,192,437,422,437xm633,-1124v186,3,326,83,409,200r0,-176r138,0r0,1100r-138,0r0,-174v-78,117,-236,200,-421,203v-316,5,-564,-258,-564,-574v0,-322,254,-585,576,-579","w":1290,"k":{"\u2039":36,"\u2019":-38,"\u2018":36,"\u201d":-38,"\u201c":36,"\u00ab":36,".":36,",":36}},"b":{"d":"657,29v-190,-4,-311,-81,-409,-195r0,166r-139,0r0,-1456r139,0r0,541v105,-125,227,-204,432,-209v305,-7,553,266,553,573v0,322,-253,587,-576,580xm664,-993v-232,0,-416,215,-416,454v0,221,197,437,411,437v237,0,426,-211,426,-455v0,-234,-193,-436,-421,-436","w":1290,"k":{"\u203a":36,"\u2018":149,"\u201c":149,"\u00bb":36,";":36,":":36,".":73,",":73}},"c":{"d":"57,-547v0,-315,259,-589,572,-583v264,5,442,159,520,368r-156,0v-78,-143,-183,-231,-381,-235v-229,-4,-407,210,-407,448v0,241,179,448,413,445v186,-2,315,-102,375,-240r156,0v-75,217,-252,370,-524,375v-311,6,-568,-268,-568,-578","w":1241,"k":{"\u203a":36,"\u2039":36,"\u2018":149,"\u201c":149,"\u00bb":36,"\u00ab":36,";":36,":":36,".":73,",":73}},"d":{"d":"629,-102v215,0,413,-217,413,-437v0,-235,-191,-454,-417,-454v-229,0,-422,202,-422,436v0,244,189,455,426,455xm621,-1124v191,4,329,81,417,198r0,-530r142,0r0,1456r-142,0r0,-166v-87,110,-235,192,-417,195v-312,6,-564,-266,-564,-580v0,-315,248,-579,564,-573","w":1290,"k":{"\u2039":36,"\u2019":-75,"\u201d":-75,"\u00ab":36,".":36,",":36}},"e":{"d":"631,-1130v339,0,572,270,561,624r-993,0v12,229,185,404,422,402v183,-2,314,-107,376,-244r160,0v-88,216,-257,372,-532,379v-312,7,-572,-271,-572,-582v0,-329,248,-579,578,-579xm1036,-625v-48,-225,-173,-370,-426,-372v-226,-2,-381,162,-407,372r833,0","w":1241,"k":{"\u203a":36,"\u2018":149,"\u201c":149,"\u00bb":36,";":36,":":36,".":73,",":73}},"f":{"d":"539,-1346v-177,2,-237,66,-232,246r232,0r0,123r-230,0r0,977r-137,0r0,-977r-147,0r0,-123r141,0v-8,-261,113,-378,373,-373r0,127","w":563,"k":{"\u203a":73,"\u2039":112,"\u2019":-151,"\u2018":-75,"\u201d":-151,"\u201c":-75,"\u00bb":73,"\u00ab":112,".":149,"-":36,",":149}},"g":{"d":"1174,-182v4,365,-192,612,-543,612v-249,0,-447,-139,-494,-340r164,0v40,124,158,204,320,203v266,0,429,-202,415,-488v-93,126,-213,216,-407,220v-323,7,-576,-256,-576,-578v0,-315,250,-579,563,-573v207,4,324,77,420,206r0,-180r138,0r0,918xm621,-997v-228,0,-418,203,-418,438v0,243,185,453,418,453v215,0,413,-216,413,-437v0,-235,-188,-454,-413,-454","w":1280,"k":{"\u2039":36,"\u2019":-38,"\u2018":36,"\u201d":-38,"\u201c":36,"\u00ab":36,".":36,",":36}},"h":{"d":"893,-561v-4,-288,-55,-426,-313,-426v-179,0,-297,95,-320,251v-29,192,-6,512,-10,736r-139,0r0,-1456r139,0r0,485v74,-92,183,-151,338,-151v340,0,444,196,444,563r0,559r-139,0r0,-561","w":1143,"k":{"\u2039":36,"\u2018":112,"\u201c":112,"\u00ab":36,".":36,",":36}},"i":{"d":"256,-1229r-141,0r0,-227r141,0r0,227xm115,0r0,-1100r141,0r0,1100r-141,0","w":371,"k":{"\u2039":36,"\u2019":-75,"\u201d":-75,"\u00ab":36,".":36,",":36}},"j":{"d":"256,-1229r-141,0r0,-227r141,0r0,227xm-20,223v134,-6,135,-38,135,-198r0,-1125r141,0r0,1104v-2,250,-45,353,-276,350r0,-131","w":371,"k":{"\u2039":36,"\u2019":-75,"\u201d":-75,"\u00ab":36,".":36,",":36}},"k":{"d":"256,0r-141,0r0,-1456r141,0r0,866r397,-510r162,0r-399,510r485,590r-178,0r-467,-573r0,573","w":848,"k":{"\u203a":36,"\u2039":112,"\u2019":-75,"\u2018":36,"\u201d":-75,"\u201c":36,"\u0153":36,"\u00bb":36,"\u00ab":112,"\u00f8":36,"\u00e6":36,"o":36,"e":36,"a":36,".":36,"-":73,",":36}},"l":{"d":"115,0r0,-1456r141,0r0,1456r-141,0","w":371,"k":{"\u2039":36,"\u2019":-75,"\u201d":-75,"\u00ab":36,".":36,",":36}},"m":{"d":"592,-1122v172,-1,320,82,385,194v80,-115,207,-194,389,-194v332,0,428,204,428,567r0,555r-135,0r0,-584v-2,-266,-64,-403,-307,-403v-177,0,-291,96,-315,251v-29,192,-6,512,-11,736r-133,0r0,-616v0,-239,-87,-371,-313,-371v-179,0,-297,95,-320,251v-29,192,-6,512,-10,736r-139,0r0,-1100r139,0r0,125v78,-90,185,-146,342,-147","w":1907,"k":{"\u2039":36,"\u2018":112,"\u201c":112,"\u00ab":36,".":36,",":36}},"n":{"d":"893,-616v-1,-247,-79,-371,-313,-371v-179,0,-297,95,-320,251v-29,192,-6,512,-10,736r-137,0r0,-1100r137,0r0,125v80,-93,185,-147,346,-147v230,0,385,113,420,312v38,215,10,556,16,810r-139,0r0,-616","w":1143,"k":{"\u2039":36,"\u2018":112,"\u201c":112,"\u00ab":36,".":36,",":36}},"o":{"d":"610,-999v-227,0,-409,211,-409,448v0,243,183,447,422,447v237,0,417,-206,417,-449v0,-252,-182,-446,-430,-446xm623,31v-311,0,-570,-270,-570,-580v0,-307,259,-586,559,-586v308,0,576,267,576,572v0,314,-255,594,-565,594","w":1241,"k":{"\u203a":36,"\u2018":149,"\u201c":149,"\u00bb":36,";":36,":":36,".":73,",":73}},"p":{"d":"668,29v-194,-4,-334,-82,-420,-203r0,530r-139,0r0,-1456r139,0r0,180v71,-115,232,-201,409,-204v325,-5,576,255,576,579v0,315,-250,580,-565,574xm659,-993v-215,0,-411,217,-411,436v0,235,190,455,416,455v229,0,421,-203,421,-437v0,-244,-189,-454,-426,-454","w":1290,"k":{"\u203a":36,"\u2018":149,"\u201c":149,"\u00bb":36,";":36,":":36,".":73,",":73}},"q":{"d":"633,-1124v185,3,321,83,405,200r0,-176r142,0r0,1456r-142,0r0,-522v-84,114,-231,192,-417,195v-316,6,-564,-258,-564,-574v0,-322,254,-585,576,-579xm625,-102v225,0,417,-220,417,-455v0,-221,-198,-436,-413,-436v-237,0,-426,210,-426,454v0,235,192,437,422,437","w":1290,"k":{"\u2039":36,"\u2019":-75,"\u2018":36,"\u201d":-75,"\u201c":36,"\u00ab":36,".":36,",":36}},"r":{"d":"502,-963v-182,19,-248,97,-248,299r0,664r-143,0r0,-1100r133,0r0,127v62,-86,128,-137,257,-143","w":512,"k":{"\uf002":-75,"\uf001":-75,"\u203a":36,"\u2039":112,"\u2019":-151,"\u201d":-151,"\u00bb":36,"\u00ab":112,"z":-38,"y":-114,"x":-75,"w":-75,"v":-75,"f":-75,".":149,"-":36,",":149}},"s":{"d":"741,-299v0,190,-156,328,-350,328v-214,0,-345,-159,-348,-375r145,0v-5,131,84,242,205,242v107,0,197,-78,193,-183v-6,-138,-76,-169,-201,-217v-121,-46,-202,-88,-239,-133v-37,-45,-56,-106,-56,-182v0,-169,149,-309,320,-309v190,0,307,117,313,303r-151,0v-6,-101,-66,-164,-171,-164v-121,0,-203,137,-142,245v33,58,93,84,179,108v127,36,197,71,254,151v34,48,49,111,49,186","w":797,"k":{"\u2019":-38,"\u2018":112,"\u201d":-38,"\u201c":112,".":73,",":73}},"t":{"d":"209,0r0,-958r-209,0r0,-142r209,0r0,-356r141,0r0,356r209,0r0,142r-209,0r0,958r-141,0","w":559,"k":{"\u203a":55,"\u2039":73,"\u2019":-114,"\u2018":-38,"\u201d":-114,"\u201c":-38,"\u00bb":55,"\u00ab":73,".":112,"-":36,",":112}},"u":{"d":"557,29v-346,0,-448,-184,-448,-555r0,-574r139,0r0,584v3,275,63,412,313,412v178,0,295,-95,319,-252v30,-194,6,-517,11,-744r141,0r0,1100r-141,0r0,-119v-81,97,-169,148,-334,148","w":1143,"k":{"\u2039":36,"\u2019":-75,"\u2018":73,"\u201d":-75,"\u201c":73,"\u00ab":36,".":36,",":36}},"v":{"d":"543,0r-129,0r-430,-1100r149,0r352,887r355,-887r153,0","w":977,"k":{"\u203a":73,"\u2039":112,"\u2019":-114,"\u201d":-114,"\u00bb":73,"\u00ab":112,";":36,":":36,".":225,"-":73,",":225}},"w":{"d":"1016,-276r266,-824r150,0r-371,1100r-92,0r-258,-838r-254,838r-92,0r-371,-1100r147,0r269,824r252,-824r102,0","w":1421,"k":{"\u203a":73,"\u2039":112,"\u2019":-114,"\u201d":-114,"\u00bb":73,"\u00ab":112,";":36,":":36,".":149,"-":73,",":149}},"x":{"d":"172,-1100r256,416r274,-416r162,0r-356,527r354,573r-160,0r-282,-459r-295,459r-156,0r373,-571r-328,-529r158,0","w":848,"k":{"\u203a":73,"\u2039":112,"\u2019":-114,"\u201d":-114,"\u00bb":73,"\u00ab":112,";":36,":":36,".":36,"-":73,",":36}},"y":{"d":"-33,-1100r162,0r340,893r356,-893r164,0r-594,1456r-151,0r147,-358","w":944,"k":{"\u203a":36,"\u2039":73,"\u2019":-151,"\u2018":-38,"\u201d":-151,"\u201c":-38,"\u00bb":36,"\u00ab":73,".":188,"-":36,",":188}},"z":{"d":"780,0r-760,0r0,-133r574,-834r-510,0r0,-133r666,0r0,152r-562,807r592,0r0,141","w":825,"k":{"\u203a":36,"\u2039":149,"\u2019":-75,"\u2018":36,"\u201d":-75,"\u201c":36,"\u00bb":36,"\u00ab":149,";":36,":":36,".":73,"-":36,",":73}},"{":{"d":"471,-1106v6,-291,57,-364,336,-371r47,0r0,107v-204,-3,-260,39,-260,254r0,242v-2,216,-39,293,-197,344v159,49,197,127,197,344r0,241v4,197,31,249,215,254r45,-2r0,107r-47,0v-281,-7,-330,-77,-336,-369r0,-244v4,-217,-83,-291,-297,-278r0,-109v212,13,297,-61,297,-278r0,-242"},"|":{"d":"567,-1565r0,2048r-108,0r0,-2048r108,0"},"}":{"d":"219,-1477v279,6,330,80,336,371r0,242v-4,217,83,291,297,278r0,109v-212,-13,-297,61,-297,278r0,244v-6,291,-56,362,-336,369r-47,0r0,-107v203,3,260,-38,260,-252r0,-241v3,-219,36,-294,197,-344v-160,-51,-197,-125,-197,-344r0,-242v-4,-198,-30,-251,-215,-256r-45,2r0,-107r47,0"},"~":{"d":"1143,-590v164,-8,261,-74,387,-160r0,113v-114,79,-225,135,-387,143v-142,7,-443,-145,-578,-137v-163,9,-259,74,-387,160r0,-113v117,-79,227,-136,387,-145v142,-8,442,145,578,139","w":1706},"\u00c4":{"d":"100,0r-151,0r565,-1456r172,0r563,1456r-153,0r-174,-457r-648,0xm872,-588r-276,-731r-272,731r548,0xm711,-1663r0,-164r143,0r0,164r-143,0xm342,-1663r0,-164r141,0r0,164r-141,0","w":1223},"\u00c5":{"d":"602,-1888v-76,0,-141,68,-141,145v0,77,64,141,141,141v78,0,143,-64,143,-141v0,-76,-68,-145,-143,-145xm600,-1513v-125,0,-229,-105,-229,-230v0,-123,106,-229,229,-229v123,0,229,106,229,229v0,123,-106,230,-229,230xm872,-588r-276,-731r-272,731r548,0xm100,0r-151,0r565,-1456r172,0r563,1456r-153,0r-174,-457r-648,0","w":1223,"k":{"\u201e":-151,"\u201a":-151,"\u2039":73,"\u2019":159,"\u2018":301,"\u201d":159,"\u201c":301,"\u00ab":73,"y":36,"w":55,"v":63,"Y":73,"V":55,"T":73,"S":-57,";":36,":":36,".":36,"-":36,",":36}},"\u00c7":{"d":"811,29v-520,13,-912,-535,-692,-1056v106,-251,331,-458,684,-458v321,0,548,174,665,406r-172,0v-116,-159,-252,-258,-495,-264v-317,-8,-588,289,-588,608v0,335,262,632,588,626v230,-4,379,-103,485,-251r170,0v-117,222,-333,381,-645,389xm928,287v3,-98,-88,-111,-190,-103r0,-184r63,0r0,111v141,-5,240,44,240,172v0,122,-95,177,-228,176v-96,-1,-165,-15,-252,-39r0,-78v97,20,150,35,238,35v76,0,127,-22,129,-90","w":1540},"\u00c9":{"d":"279,-803r612,0r0,144r-612,0r0,518r612,0r0,141r-756,0r0,-1456r756,0r0,143r-612,0r0,510xm495,-1597r-92,0r209,-350r152,0","w":1028},"\u00d1":{"d":"1102,-174r-17,-1282r142,0r0,1456r-172,0r-799,-1284r16,1284r-141,0r0,-1456r172,0xm739,-1786v69,27,134,-1,152,-63r82,0v-30,121,-112,213,-256,174v-49,-13,-91,-39,-150,-39v-48,0,-75,34,-92,74r-80,0v23,-119,111,-212,248,-176","w":1366},"\u00d6":{"d":"1401,-739v0,-383,-385,-724,-795,-573v-221,82,-387,292,-395,577v-10,341,264,626,600,626v330,0,590,-292,590,-630xm120,-1027v73,-176,229,-333,404,-405v169,-70,394,-73,562,0v254,110,462,340,462,695v0,360,-194,596,-443,704v-649,281,-1238,-373,-985,-994xm920,-1663r0,-164r143,0r0,164r-143,0xm551,-1663r0,-164r141,0r0,164r-141,0","w":1612},"\u00dc":{"d":"588,31v-347,0,-474,-196,-475,-561r0,-926r143,0r0,921v-6,206,38,308,152,384v49,33,107,47,170,47v250,0,322,-181,323,-461r0,-891r141,0r0,926v0,352,-124,561,-454,561xm693,-1663r0,-164r143,0r0,164r-143,0xm324,-1663r0,-164r141,0r0,164r-141,0","w":1157},"\u00e1":{"d":"625,-102v225,0,417,-220,417,-455v0,-221,-198,-436,-413,-436v-237,0,-426,210,-426,454v0,235,192,437,422,437xm633,-1124v186,3,326,83,409,200r0,-176r138,0r0,1100r-138,0r0,-174v-78,117,-236,200,-421,203v-316,5,-564,-258,-564,-574v0,-322,254,-585,576,-579xm602,-1247r-92,0r209,-350r152,0","w":1290},"\u00e0":{"d":"625,-102v225,0,417,-220,417,-455v0,-221,-198,-436,-413,-436v-237,0,-426,210,-426,454v0,235,192,437,422,437xm633,-1124v186,3,326,83,409,200r0,-176r138,0r0,1100r-138,0r0,-174v-78,117,-236,200,-421,203v-316,5,-564,-258,-564,-574v0,-322,254,-585,576,-579xm668,-1247r-269,-350r152,0r209,350r-92,0","w":1290},"\u00e2":{"d":"625,-102v225,0,417,-220,417,-455v0,-221,-198,-436,-413,-436v-237,0,-426,210,-426,454v0,235,192,437,422,437xm633,-1124v186,3,326,83,409,200r0,-176r138,0r0,1100r-138,0r0,-174v-78,117,-236,200,-421,203v-316,5,-564,-258,-564,-574v0,-322,254,-585,576,-579xm359,-1247r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":1290},"\u00e4":{"d":"625,-102v225,0,417,-220,417,-455v0,-221,-198,-436,-413,-436v-237,0,-426,210,-426,454v0,235,192,437,422,437xm633,-1124v186,3,326,83,409,200r0,-176r138,0r0,1100r-138,0r0,-174v-78,117,-236,200,-421,203v-316,5,-564,-258,-564,-574v0,-322,254,-585,576,-579xm748,-1313r0,-164r143,0r0,164r-143,0xm379,-1313r0,-164r141,0r0,164r-141,0","w":1290},"\u00e3":{"d":"625,-102v225,0,417,-220,417,-455v0,-221,-198,-436,-413,-436v-237,0,-426,210,-426,454v0,235,192,437,422,437xm633,-1124v186,3,326,83,409,200r0,-176r138,0r0,1100r-138,0r0,-174v-78,117,-236,200,-421,203v-316,5,-564,-258,-564,-574v0,-322,254,-585,576,-579xm690,-1436v69,27,134,-1,152,-63r82,0v-30,121,-112,213,-256,174v-49,-13,-91,-39,-150,-39v-48,0,-75,34,-92,74r-80,0v23,-119,111,-212,248,-176","w":1290},"\u00e5":{"d":"647,-1556v-76,0,-141,66,-141,143v0,76,65,143,141,143v76,0,144,-67,144,-143v0,-75,-68,-143,-144,-143xm645,-1182v-125,0,-229,-104,-229,-229v0,-123,106,-229,229,-229v124,0,232,105,232,229v0,124,-108,229,-232,229xm633,-1124v186,3,326,83,409,200r0,-176r138,0r0,1100r-138,0r0,-174v-78,117,-236,200,-421,203v-316,5,-564,-258,-564,-574v0,-322,254,-585,576,-579xm625,-102v225,0,417,-220,417,-455v0,-221,-198,-436,-413,-436v-237,0,-426,210,-426,454v0,235,192,437,422,437","w":1290,"k":{"\u2039":36,"\u2019":-38,"\u2018":36,"\u201d":-38,"\u201c":36,"\u00ab":36,".":36,",":36}},"\u00e7":{"d":"57,-547v0,-315,259,-589,572,-583v264,5,442,159,520,368r-156,0v-78,-143,-183,-231,-381,-235v-229,-4,-407,210,-407,448v0,241,179,448,413,445v186,-2,315,-102,375,-240r156,0v-75,217,-252,370,-524,375v-311,6,-568,-268,-568,-578xm748,287v3,-98,-88,-111,-190,-103r0,-184r63,0r0,111v141,-5,240,44,240,172v0,122,-95,177,-228,176v-96,-1,-165,-15,-252,-39r0,-78v97,20,150,35,238,35v76,0,127,-22,129,-90","w":1241},"\u00e9":{"d":"631,-1130v339,0,572,270,561,624r-993,0v12,229,185,404,422,402v183,-2,314,-107,376,-244r160,0v-88,216,-257,372,-532,379v-312,7,-572,-271,-572,-582v0,-329,248,-579,578,-579xm1036,-625v-48,-225,-173,-370,-426,-372v-226,-2,-381,162,-407,372r833,0xm600,-1247r-92,0r209,-350r152,0","w":1241},"\u00e8":{"d":"631,-1130v339,0,572,270,561,624r-993,0v12,229,185,404,422,402v183,-2,314,-107,376,-244r160,0v-88,216,-257,372,-532,379v-312,7,-572,-271,-572,-582v0,-329,248,-579,578,-579xm1036,-625v-48,-225,-173,-370,-426,-372v-226,-2,-381,162,-407,372r833,0xm666,-1247r-269,-350r152,0r209,350r-92,0","w":1241},"\u00ea":{"d":"631,-1130v339,0,572,270,561,624r-993,0v12,229,185,404,422,402v183,-2,314,-107,376,-244r160,0v-88,216,-257,372,-532,379v-312,7,-572,-271,-572,-582v0,-329,248,-579,578,-579xm1036,-625v-48,-225,-173,-370,-426,-372v-226,-2,-381,162,-407,372r833,0xm357,-1247r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":1241},"\u00eb":{"d":"631,-1130v339,0,572,270,561,624r-993,0v12,229,185,404,422,402v183,-2,314,-107,376,-244r160,0v-88,216,-257,372,-532,379v-312,7,-572,-271,-572,-582v0,-329,248,-579,578,-579xm1036,-625v-48,-225,-173,-370,-426,-372v-226,-2,-381,162,-407,372r833,0xm746,-1313r0,-164r143,0r0,164r-143,0xm377,-1313r0,-164r141,0r0,164r-141,0","w":1241},"\u00ed":{"d":"115,0r0,-1100r141,0r0,1100r-141,0xm153,-1247r-92,0r209,-350r152,0","w":371},"\u00ec":{"d":"115,0r0,-1100r141,0r0,1100r-141,0xm219,-1247r-269,-350r152,0r209,350r-92,0","w":371},"\u00ee":{"d":"115,0r0,-1100r141,0r0,1100r-141,0xm-90,-1247r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":371},"\u00ef":{"d":"115,0r0,-1100r141,0r0,1100r-141,0xm299,-1313r0,-164r143,0r0,164r-143,0xm-70,-1313r0,-164r141,0r0,164r-141,0","w":371},"\u00f1":{"d":"893,-616v-1,-247,-79,-371,-313,-371v-179,0,-297,95,-320,251v-29,192,-6,512,-10,736r-137,0r0,-1100r137,0r0,125v80,-93,185,-147,346,-147v230,0,385,113,420,312v38,215,10,556,16,810r-139,0r0,-616xm639,-1436v69,27,134,-1,152,-63r82,0v-30,121,-112,213,-256,174v-49,-13,-91,-39,-150,-39v-48,0,-75,34,-92,74r-80,0v23,-119,111,-212,248,-176","w":1143},"\u00f3":{"d":"610,-999v-227,0,-409,211,-409,448v0,243,183,447,422,447v237,0,417,-206,417,-449v0,-252,-182,-446,-430,-446xm623,31v-311,0,-570,-270,-570,-580v0,-307,259,-586,559,-586v308,0,576,267,576,572v0,314,-255,594,-565,594xm598,-1247r-92,0r209,-350r152,0","w":1241},"\u00f2":{"d":"610,-999v-227,0,-409,211,-409,448v0,243,183,447,422,447v237,0,417,-206,417,-449v0,-252,-182,-446,-430,-446xm623,31v-311,0,-570,-270,-570,-580v0,-307,259,-586,559,-586v308,0,576,267,576,572v0,314,-255,594,-565,594xm664,-1247r-269,-350r152,0r209,350r-92,0","w":1241},"\u00f4":{"d":"610,-999v-227,0,-409,211,-409,448v0,243,183,447,422,447v237,0,417,-206,417,-449v0,-252,-182,-446,-430,-446xm623,31v-311,0,-570,-270,-570,-580v0,-307,259,-586,559,-586v308,0,576,267,576,572v0,314,-255,594,-565,594xm355,-1247r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":1241},"\u00f6":{"d":"610,-999v-227,0,-409,211,-409,448v0,243,183,447,422,447v237,0,417,-206,417,-449v0,-252,-182,-446,-430,-446xm623,31v-311,0,-570,-270,-570,-580v0,-307,259,-586,559,-586v308,0,576,267,576,572v0,314,-255,594,-565,594xm744,-1313r0,-164r143,0r0,164r-143,0xm375,-1313r0,-164r141,0r0,164r-141,0","w":1241},"\u00f5":{"d":"610,-999v-227,0,-409,211,-409,448v0,243,183,447,422,447v237,0,417,-206,417,-449v0,-252,-182,-446,-430,-446xm623,31v-311,0,-570,-270,-570,-580v0,-307,259,-586,559,-586v308,0,576,267,576,572v0,314,-255,594,-565,594xm686,-1436v69,27,134,-1,152,-63r82,0v-30,121,-112,213,-256,174v-49,-13,-91,-39,-150,-39v-48,0,-75,34,-92,74r-80,0v23,-119,111,-212,248,-176","w":1241},"\u00fa":{"d":"557,29v-346,0,-448,-184,-448,-555r0,-574r139,0r0,584v3,275,63,412,313,412v178,0,295,-95,319,-252v30,-194,6,-517,11,-744r141,0r0,1100r-141,0r0,-119v-81,97,-169,148,-334,148xm532,-1247r-92,0r209,-350r152,0","w":1143},"\u00f9":{"d":"557,29v-346,0,-448,-184,-448,-555r0,-574r139,0r0,584v3,275,63,412,313,412v178,0,295,-95,319,-252v30,-194,6,-517,11,-744r141,0r0,1100r-141,0r0,-119v-81,97,-169,148,-334,148xm598,-1247r-269,-350r152,0r209,350r-92,0","w":1143},"\u00fb":{"d":"557,29v-346,0,-448,-184,-448,-555r0,-574r139,0r0,584v3,275,63,412,313,412v178,0,295,-95,319,-252v30,-194,6,-517,11,-744r141,0r0,1100r-141,0r0,-119v-81,97,-169,148,-334,148xm289,-1247r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":1143},"\u00fc":{"d":"557,29v-346,0,-448,-184,-448,-555r0,-574r139,0r0,584v3,275,63,412,313,412v178,0,295,-95,319,-252v30,-194,6,-517,11,-744r141,0r0,1100r-141,0r0,-119v-81,97,-169,148,-334,148xm678,-1313r0,-164r143,0r0,164r-143,0xm309,-1313r0,-164r141,0r0,164r-141,0","w":1143},"\u2020":{"d":"438,231r0,-1142r-364,0r0,-127r364,0r0,-418r146,0r0,418r366,0r0,127r-366,0r0,1142r-146,0"},"\u00b0":{"d":"338,-967v113,0,207,-94,207,-207v0,-112,-95,-208,-207,-208v-111,0,-209,97,-209,208v0,113,96,207,209,207xm59,-1174v0,-151,128,-278,279,-278v149,0,276,129,276,278v0,149,-129,279,-278,279v-152,0,-277,-127,-277,-279","w":674},"\u00a2":{"d":"70,-723v0,-298,203,-541,467,-575r0,-211r133,0r0,206v242,29,389,174,450,394r-147,0v-51,-165,-163,-269,-365,-271v-225,-3,-393,219,-393,457v0,242,170,456,403,453v186,-2,314,-121,355,-279r147,0v-69,219,-209,373,-450,402r0,229r-133,0r0,-232v-259,-28,-467,-285,-467,-573","w":1157},"\u00a3":{"d":"311,-1030v2,84,24,150,56,219r493,0r0,141r-385,0v49,89,80,167,80,291v0,110,-26,179,-71,252r114,6v230,-1,369,-70,369,-282v0,-43,-8,-79,-17,-127r142,0v50,245,-54,449,-244,506v-53,16,-124,24,-213,24r-514,0r0,-127r223,0v52,-65,80,-130,80,-238v0,-138,-40,-203,-105,-307r-251,0r0,-139r145,0v-24,-76,-39,-133,-41,-215v-5,-258,204,-461,465,-457v247,4,396,158,436,379r-131,0v-30,-146,-137,-250,-303,-252v-189,-3,-331,138,-328,326","w":1157},"\u00a7":{"d":"389,-909v-112,34,-188,173,-104,287v25,34,60,67,106,96r248,157v73,-51,127,-91,127,-190v0,-115,-64,-156,-156,-213xm498,219v-205,0,-347,-133,-328,-346r137,0v-4,138,64,222,195,223v109,1,186,-60,182,-166v-5,-121,-64,-147,-162,-213v-120,-80,-285,-155,-363,-265v-33,-47,-50,-95,-50,-146v0,-156,82,-235,198,-297v-65,-51,-102,-103,-104,-207v-2,-169,138,-287,313,-287v201,0,323,127,313,338r-128,0v-1,-133,-68,-214,-197,-219v-140,-5,-209,163,-127,270v69,89,209,146,309,211v133,86,225,141,225,314v0,142,-86,224,-194,280v62,55,104,123,106,228v2,168,-149,282,-325,282"},"\u2022":{"d":"602,-465v-160,0,-295,-138,-295,-297v0,-160,138,-295,297,-295v158,0,295,137,295,295v0,158,-139,297,-297,297","w":1208},"\u00b6":{"d":"84,-1130v-1,-215,169,-349,393,-349r463,0r0,70r-127,0r0,1409r-82,0r0,-1409r-186,0r0,1409r-84,0r0,-782v-216,-6,-376,-136,-377,-348"},"\u00df":{"d":"524,-1335v-167,0,-268,112,-268,282r0,695r139,0v47,147,124,251,293,256v155,5,303,-135,301,-287v-3,-246,-210,-311,-485,-297r0,-115v177,4,295,-98,295,-268v0,-155,-119,-266,-275,-266xm684,29v-240,-5,-355,-124,-428,-318r0,289r-141,0r0,-965v0,-321,111,-500,413,-505v239,-4,420,166,420,401v0,129,-53,232,-149,260v197,44,336,172,340,395v4,249,-204,449,-455,443","w":1200,"k":{"\u203a":36,"\u2019":36,"\u2018":149,"\u201d":36,"\u201c":149,"\u00bb":36,";":36,":":36,".":73,"-":-38,",":73}},"\u00ae":{"d":"1092,-915v0,-130,-94,-156,-242,-156r-158,0r0,303r158,0v153,-3,242,-17,242,-147xm1223,-924v3,124,-86,208,-199,222r188,389r-145,0r-178,-371r-197,0r0,371r-127,0r0,-844r309,0v209,1,345,50,349,233xm1458,-470v65,-152,63,-350,-1,-504v-95,-227,-297,-402,-605,-402v-307,0,-504,184,-600,404v-68,156,-70,340,-2,496v96,222,298,404,602,404v302,0,511,-176,606,-398xm572,-1402v173,-74,394,-73,566,1v250,107,447,333,447,678v0,349,-204,568,-453,677v-176,77,-385,76,-560,0v-248,-108,-451,-334,-451,-677v0,-338,202,-572,451,-679","w":1706},"\u00a9":{"d":"469,-727v0,-255,148,-449,391,-449v174,0,316,105,330,261r-117,0v-21,-101,-99,-168,-217,-168v-182,0,-258,159,-258,362v0,197,80,352,258,354v123,2,211,-79,229,-188r115,0v-12,167,-165,287,-350,285v-249,-2,-381,-193,-381,-457xm1458,-472v65,-154,64,-348,-2,-502v-96,-226,-296,-402,-604,-402v-308,0,-505,183,-601,404v-68,156,-69,340,-1,496v96,222,298,404,602,404v302,0,511,-176,606,-400xm572,-1402v173,-74,390,-72,564,2v251,107,449,331,449,677v0,349,-204,568,-453,677v-176,77,-382,76,-558,0v-249,-108,-453,-333,-453,-677v0,-339,202,-572,451,-679","w":1706},"\u2122":{"d":"938,-1454r166,422r156,-422r116,0r0,530r-71,0r0,-467r-177,467r-49,0r-186,-467r0,467r-72,0r0,-530r117,0xm694,-1454r0,57r-172,0r0,473r-82,0r0,-473r-176,0r0,-57r430,0","w":1706},"\u00b4":{"d":"479,-1247r-92,0r209,-350r152,0"},"\u00a8":{"d":"625,-1313r0,-164r143,0r0,164r-143,0xm256,-1313r0,-164r141,0r0,164r-141,0"},"\u2260":{"d":"1288,-1110r-205,264r369,0r0,96r-432,0r-215,277r647,0r0,98r-709,0r-254,324r-73,-60r205,-264r-367,0r0,-98r428,0r215,-277r-643,0r0,-96r707,0r253,-323","w":1706},"\u00c6":{"d":"465,-627r473,0r6,-686r-16,0xm367,-483r-330,483r-172,0r1001,-1456r824,0r0,143r-613,0r0,510r613,0r0,144r-613,0r0,518r613,0r0,141r-756,0r0,-483r-567,0","w":1810,"k":{"\u203a":36,"\u2039":36,"\u00bb":36,"\u00ab":36,";":73,":":73,".":36,"-":36,",":36}},"\u00d8":{"d":"817,-1346v-410,-9,-722,424,-560,850v28,75,68,139,120,193r770,-928v-97,-70,-182,-113,-330,-115xm803,-111v405,9,717,-424,557,-845v-26,-69,-68,-132,-123,-191r-768,924v98,66,191,109,334,112xm803,27v-191,-4,-301,-52,-426,-140r-207,250r-94,-78r207,-247v-129,-140,-220,-309,-220,-551v0,-351,211,-583,465,-693v86,-37,182,-53,285,-53v186,0,312,55,428,142r172,-207r96,75r-178,213v131,126,212,289,217,525v8,422,-328,772,-745,764","w":1612,"k":{"\u201e":112,"\u201a":112,"\u2019":-57,"\u2018":36,"\u201d":-57,"\u201c":36,"X":55,"T":73,";":36,":":36,".":112,",":112}},"\u221e":{"d":"1419,-627v0,-139,-88,-263,-219,-262v-57,0,-109,25,-155,74v-46,49,-95,135,-148,256v59,112,135,195,281,199v143,4,241,-119,241,-267xm289,-600v0,137,90,263,219,262v58,0,110,-25,156,-75v46,-50,96,-135,147,-255v-60,-112,-134,-192,-281,-196v-143,-4,-241,118,-241,264xm233,-612v0,-204,106,-376,293,-377v65,0,122,21,172,64v50,43,96,111,140,204v48,-96,98,-165,149,-206v51,-41,112,-62,182,-62v174,-1,306,183,306,373v0,204,-106,377,-293,378v-63,0,-119,-20,-168,-60v-49,-40,-97,-109,-146,-204v-47,93,-97,160,-148,202v-51,42,-109,62,-173,62v-184,2,-314,-178,-314,-374","w":1706},"\u00b1":{"d":"1452,-150r0,99r-1198,0r0,-99r1198,0xm903,-1169r0,348r549,0r0,98r-549,0r0,348r-98,0r0,-348r-551,0r0,-98r551,0r0,-348r98,0","w":1706},"\u2264":{"d":"1442,-139r0,98r-1178,0r0,-98r1178,0xm1442,-1075r-1010,338r1010,336r0,106r-1178,-401r0,-84r1178,-402r0,107","w":1706},"\u2265":{"d":"1442,-139r0,98r-1178,0r0,-98r1178,0xm1442,-780r0,84r-1178,401r0,-106r1010,-336r-1010,-338r0,-107","w":1706},"\u00a5":{"d":"852,-946r184,0r0,110r-243,0r-88,168r331,0r0,111r-389,0r0,557r-141,0r0,-557r-391,0r0,-111r334,0r-87,-168r-247,0r0,-110r188,0r-258,-500r162,0r375,748r368,-748r162,0","w":1157},"\u00b5":{"d":"412,25v-132,0,-222,-62,-269,-156r-114,557r-140,0r316,-1491r139,0r-125,592v-9,46,-16,89,-16,139v-1,151,77,244,225,244v83,0,155,-36,215,-108v60,-72,104,-175,133,-310r121,-557r139,0r-181,855v-20,79,13,129,99,112r-20,110v-25,6,-55,11,-86,11v-100,0,-140,-55,-137,-160v-51,96,-157,162,-299,162","w":1110},"\u2202":{"d":"496,-788v147,2,216,76,256,196v25,-168,46,-423,-16,-551v-51,-106,-148,-111,-223,-15v-37,47,-73,68,-103,68v-39,0,-75,-30,-74,-67v1,-92,114,-152,219,-152v110,0,201,49,264,151v232,376,50,1185,-370,1185v-199,0,-324,-174,-324,-385v0,-221,162,-433,371,-430xm272,-274v0,150,44,251,179,251v75,0,137,-41,186,-125v49,-84,74,-189,74,-315v0,-151,-44,-258,-179,-258v-75,0,-137,42,-186,125v-49,83,-74,190,-74,322","w":1034},"\u2211":{"d":"49,-1473r1223,0r0,144r-1014,0r705,766r-740,813r1057,0r0,143r-1266,0r0,-133r744,-821r-709,-772r0,-140","w":1317},"\u220f":{"d":"160,-1473r1188,0r0,1866r-168,0r0,-1718r-852,0r0,1718r-168,0r0,-1866","w":1509},"\u03c0":{"d":"-4,-813v37,-187,88,-252,303,-252r848,0r-27,121r-182,0r-115,541v-14,68,-25,128,-30,188v-10,116,105,115,202,97r-26,118v-32,9,-65,16,-101,16v-131,1,-219,-73,-213,-202v10,-240,99,-520,142,-758r-365,0r-199,944r-139,0r199,-944v-109,-8,-153,36,-166,131r-131,0","w":1171},"\u222b":{"d":"45,244v0,-91,101,-140,175,-94v26,16,43,40,47,84v3,25,11,38,26,38v69,0,111,-238,117,-713v4,-348,31,-732,102,-895v61,-140,147,-212,268,-212v87,0,158,51,158,133v0,64,-42,105,-107,104v-52,0,-86,-23,-103,-69v-17,-46,-28,-70,-34,-70v-70,0,-110,208,-116,623v-5,376,-29,814,-108,992v-60,136,-146,206,-267,206v-84,0,-158,-49,-158,-127","w":985},"\u00aa":{"d":"469,-758v165,0,313,-149,313,-317v0,-159,-153,-307,-311,-307v-173,0,-319,145,-319,319v0,167,150,305,317,305xm475,-1473v138,3,244,57,307,140r0,-123r103,0r0,770r-103,0r0,-123v-59,84,-180,141,-317,143v-231,4,-422,-176,-422,-401v0,-231,195,-411,432,-406","w":969},"\u00ba":{"d":"459,-1386v-168,0,-307,144,-307,315v0,174,140,311,315,311v174,0,313,-139,313,-313v0,-179,-141,-313,-321,-313xm467,-666v-229,0,-426,-183,-426,-405v0,-220,199,-410,418,-410v227,0,432,181,432,400v0,226,-196,415,-424,415","w":932},"\u03a9":{"d":"1460,-786v-7,312,-141,490,-342,647r344,0r0,139r-581,0r0,-127v236,-142,411,-340,419,-668v8,-326,-198,-581,-509,-581v-312,0,-519,254,-512,579v8,327,184,532,419,670r0,127r-581,0r0,-139r344,0v-200,-155,-333,-334,-340,-645v-9,-407,275,-729,670,-729v393,0,679,322,669,727","w":1579},"\u00e6":{"d":"1612,31v-202,0,-328,-69,-432,-185r0,154r-142,0r0,-154v-105,112,-222,181,-417,185v-316,7,-564,-260,-564,-576v0,-322,254,-587,576,-579v185,4,297,75,405,182r0,-158r142,0r0,162v109,-113,236,-184,436,-186v335,-3,572,269,559,622r-987,0v11,224,188,402,420,400v183,-2,312,-105,374,-242r158,0v-87,214,-256,375,-528,375xm2023,-625v-41,-213,-178,-372,-413,-372v-233,0,-385,160,-418,372r831,0xm625,-102v225,0,417,-220,417,-455v0,-221,-199,-440,-413,-440v-235,0,-426,215,-426,458v0,235,192,437,422,437","w":2228,"k":{"\u203a":36,"\u2018":149,"\u201c":149,"\u00bb":36,";":36,":":36,".":73,",":73}},"\u00f8":{"d":"610,31v-137,-3,-226,-42,-317,-105r-178,211r-84,-80r176,-211v-87,-90,-150,-231,-154,-395v-7,-314,257,-590,568,-584v131,3,237,42,319,101r168,-201r92,72r-172,207v92,92,157,229,160,399v6,315,-262,594,-578,586xm608,-104v303,7,507,-290,408,-605v-15,-48,-41,-95,-74,-141r-561,670v64,46,127,74,227,76xm623,-999v-292,0,-497,294,-399,604v16,48,40,93,71,135r557,-666v-51,-45,-135,-73,-229,-73","w":1241,"k":{"\u203a":36,"\u2018":149,"\u201c":149,"\u00bb":36,";":36,":":36,".":73,",":73}},"\u00bf":{"d":"453,29v-242,0,-408,-183,-408,-428v0,-133,80,-262,191,-359v96,-84,144,-151,151,-300r143,-1v-5,187,-98,306,-207,408v-84,79,-126,163,-126,252v0,168,98,281,264,280v186,-2,274,-133,280,-325r148,0v1,270,-172,473,-436,473xm530,-1456r0,266r-143,0r0,-266r143,0","w":948},"\u00a1":{"d":"223,-1456r142,0r0,266r-142,0r0,-266xm223,-1075r142,0r0,1075r-142,0r0,-1075","w":588},"\u00ac":{"d":"1452,-858r0,502r-96,0r0,-402r-1102,0r0,-100r1198,0","w":1706},"\u221a":{"d":"1276,-1636r0,71r-125,0r-594,1606r-41,0r-328,-899r-114,39r-19,-58r246,-86r272,746r525,-1419r178,0","w":1276},"\u0192":{"d":"963,-1350v-84,-7,-184,7,-217,37v-63,58,-66,296,-82,428r258,0r-13,133r-256,0r-71,799v-27,280,-127,376,-426,373r10,-133v187,3,258,-28,274,-205r74,-834r-256,0r10,-133r256,0r21,-225v23,-306,114,-371,428,-369","w":1157},"\u2248":{"d":"1143,-422v169,-11,254,-69,387,-158r0,111v-118,80,-225,134,-387,145v-117,8,-463,-148,-578,-139v-166,13,-252,72,-387,160r0,-111v118,-80,225,-133,387,-145v122,-9,465,144,578,137xm1143,-760v170,-11,249,-68,387,-158r0,111v-116,81,-224,134,-387,145v-119,8,-462,-148,-578,-139v-166,12,-252,72,-387,160r0,-113v116,-79,227,-133,387,-145v122,-9,465,147,578,139","w":1706},"\u2206":{"d":"1139,-139r-467,-1186r-465,1186r932,0xm766,-1473r590,1473r-1366,0r590,-1473r186,0","w":1346},"\u00ab":{"d":"664,-229r-246,-320r246,-321r137,0r-246,321r246,320r-137,0xm360,-229r-245,-320r245,-321r138,0r-248,321r248,320r-138,0","w":934,"k":{"\u0111":36,"\uf002":36,"\uf001":36,"\u0153":36,"\u00f8":36,"\u00e6":36,"x":73,"w":73,"v":73,"t":55,"o":36,"j":-38,"g":36,"f":36,"e":36,"d":36,"c":36,"a":36,"Z":36,"Y":149,"X":73,"W":112,"V":149,"U":55,"T":112,"J":36}},"\u00bb":{"d":"573,-229r-135,0r246,-320r-246,-321r135,0r248,321xm270,-229r-137,0r248,-320r-248,-321r137,0r246,321","w":934,"k":{"\u0142":36,"\uf002":36,"\uf001":36,"\u00c5":73,"z":73,"y":55,"x":112,"w":112,"v":112,"u":36,"t":73,"r":36,"p":36,"n":36,"m":36,"l":36,"k":36,"i":36,"h":36,"f":36,"b":36,"Z":73,"Y":225,"X":188,"W":149,"V":188,"U":36,"T":149,"S":73,"J":73,"A":73}},"\u2026":{"d":"413,0r-143,0r0,-266r143,0r0,266xm1095,0r-143,0r0,-266r143,0r0,266xm1779,0r-143,0r0,-266r143,0r0,266","w":2048},"\u00a0":{"w":1157},"\u00c0":{"d":"100,0r-151,0r565,-1456r172,0r563,1456r-153,0r-174,-457r-648,0xm872,-588r-276,-731r-272,731r548,0xm631,-1597r-269,-350r152,0r209,350r-92,0","w":1223},"\u00c3":{"d":"100,0r-151,0r565,-1456r172,0r563,1456r-153,0r-174,-457r-648,0xm872,-588r-276,-731r-272,731r548,0xm653,-1786v69,27,134,-1,152,-63r82,0v-30,121,-112,213,-256,174v-49,-13,-91,-39,-150,-39v-48,0,-75,34,-92,74r-80,0v23,-119,111,-212,248,-176","w":1223},"\u00d5":{"d":"1401,-739v0,-383,-385,-724,-795,-573v-221,82,-387,292,-395,577v-10,341,264,626,600,626v330,0,590,-292,590,-630xm120,-1027v73,-176,229,-333,404,-405v169,-70,394,-73,562,0v254,110,462,340,462,695v0,360,-194,596,-443,704v-649,281,-1238,-373,-985,-994xm862,-1786v69,27,134,-1,152,-63r82,0v-30,121,-112,213,-256,174v-49,-13,-91,-39,-150,-39v-48,0,-75,34,-92,74r-80,0v23,-119,111,-212,248,-176","w":1612},"\u0152":{"d":"803,-1485v274,0,464,119,590,291r0,-262r755,0r0,143r-612,0r0,510r612,0r0,144r-612,0r0,518r612,0r0,141r-755,0r0,-260v-147,173,-309,282,-592,289v-511,13,-894,-537,-681,-1056v73,-176,229,-334,404,-405v86,-35,179,-53,279,-53xm1401,-739v0,-383,-385,-724,-795,-573v-221,82,-387,292,-395,577v-10,341,264,626,600,626v330,0,590,-292,590,-630","w":2232,"k":{"\u203a":36,"\u2039":36,"\u00bb":36,"\u00ab":36,";":73,":":73,".":36,"-":36,",":36}},"\u0153":{"d":"1614,-1133v338,-4,571,277,561,631r-987,0v11,223,189,401,420,398v183,-2,312,-104,374,-240r158,0v-85,217,-261,375,-538,375v-245,0,-392,-124,-488,-299v-93,179,-242,293,-491,299v-312,7,-570,-269,-570,-580v0,-315,261,-590,574,-584v232,5,400,131,487,299v94,-166,265,-296,500,-299xm2023,-625v-41,-214,-179,-371,-413,-374v-226,-3,-397,165,-418,374r831,0xm610,-999v-227,0,-409,211,-409,448v0,243,183,447,422,447v237,0,417,-206,417,-449v0,-252,-182,-446,-430,-446","w":2228,"k":{"\u203a":36,"\u2018":149,"\u201c":149,"\u00bb":36,";":36,":":36,".":73,",":73}},"\u2013":{"d":"1024,-604r0,112r-1024,0r0,-112r1024,0"},"\u2014":{"d":"0,-492r0,-112r2048,0r0,112r-2048,0","w":2048},"\u201c":{"d":"526,-1028r-155,-428r143,0r154,428r-142,0xm231,-1028r-153,-428r141,0r156,428r-144,0","w":692,"k":{"\u00d0":-38,"\u0142":-75,"\u0141":-38,"\uf002":-114,"\uf001":-114,"\u0152":-57,"\u00d8":-57,"\u00c6":188,"\u00df":-75,"\u00c5":112,"z":-75,"y":-151,"x":-75,"w":-114,"v":-114,"u":-75,"t":-114,"s":-38,"r":-75,"p":-75,"n":-75,"m":-75,"l":-75,"k":-75,"j":-75,"i":-75,"h":-75,"f":-114,"b":-75,"Z":-38,"Y":-94,"X":-38,"W":-114,"V":-114,"U":-38,"T":-38,"S":-57,"R":-38,"Q":-94,"P":-38,"O":-57,"N":-38,"M":-38,"L":-38,"K":-38,"J":264,"I":-38,"H":-38,"G":-57,"F":-38,"E":-38,"D":-38,"C":-57,"B":-38,"A":112}},"\u201d":{"d":"461,-1028r-144,0r156,-428r141,0xm166,-1028r-141,0r153,-428r144,0","w":692},"\u2018":{"d":"375,-1028r-144,0r-153,-428r141,0","w":397,"k":{"\u00d0":-38,"\u0142":-75,"\u0141":-38,"\uf002":-114,"\uf001":-114,"\u0152":-57,"\u00d8":-57,"\u00c6":188,"\u00df":-75,"\u00c5":112,"z":-75,"y":-151,"x":-75,"w":-114,"v":-114,"u":-75,"t":-114,"s":-38,"r":-75,"p":-75,"n":-75,"m":-75,"l":-75,"k":-75,"j":-75,"i":-75,"h":-75,"f":-114,"b":-75,"Z":-38,"Y":-94,"X":-38,"W":-114,"V":-114,"U":-38,"T":-38,"S":-57,"R":-38,"Q":-94,"P":-38,"O":-57,"N":-38,"M":-38,"L":-38,"K":-38,"J":264,"I":-38,"H":-38,"G":-57,"F":-38,"E":-38,"D":-38,"C":-57,"B":-38,"A":112}},"\u2019":{"d":"166,-1028r-141,0r153,-428r144,0","w":397},"\u00f7":{"d":"748,-258v0,-57,49,-107,106,-107v59,0,107,49,107,107v0,58,-49,106,-107,106v-58,0,-106,-48,-106,-106xm1452,-659r0,98r-1198,0r0,-98r1198,0xm748,-963v0,-57,50,-108,106,-108v57,0,107,51,107,108v0,59,-49,107,-107,107v-59,0,-106,-47,-106,-107","w":1706},"\u25ca":{"d":"506,-1409r-385,817r385,825r385,-825xm506,-1653r500,1061r-500,1069r-500,-1069","w":1012},"\u00ff":{"d":"-33,-1100r162,0r340,893r356,-893r164,0r-594,1456r-151,0r147,-358xm586,-1313r0,-164r143,0r0,164r-143,0xm217,-1313r0,-164r141,0r0,164r-141,0","w":944},"\u0178":{"d":"557,-535r0,535r-141,0r0,-537r-465,-919r164,0r372,756r377,-756r160,0xm605,-1663r0,-164r143,0r0,164r-143,0xm236,-1663r0,-164r141,0r0,164r-141,0","w":981},"\u2215":{"d":"-221,29r-121,0r905,-1514r119,0","w":342},"\u00a4":{"d":"631,-98v186,0,306,-105,338,-264r147,0v-23,169,-122,273,-248,338v-136,70,-329,71,-466,2v-110,-55,-209,-144,-243,-282v-15,-57,-21,-140,-20,-228r-145,0r26,-111r119,0r0,-168r-137,0r27,-111r110,0v-1,-181,14,-271,86,-368v86,-115,221,-191,406,-197v256,-8,473,197,487,414r-145,0v-26,-173,-150,-285,-342,-285v-243,0,-366,172,-350,436r639,0r-27,111r-612,0r0,168r591,0r-26,111r-565,0v-15,264,107,433,350,434","w":1157},"\u2039":{"d":"360,-229r-245,-320r245,-321r138,0r-248,321r248,320r-138,0","w":631,"k":{"\u0111":36,"\uf002":36,"\uf001":36,"\u0153":36,"\u00f8":36,"\u00e6":36,"x":73,"w":73,"v":73,"t":55,"o":36,"j":-38,"g":36,"f":36,"e":36,"d":36,"c":36,"a":36,"Z":36,"Y":149,"X":73,"W":112,"V":149,"U":55,"T":112,"J":36}},"\u203a":{"d":"270,-229r-137,0r248,-320r-248,-321r137,0r246,321","w":631,"k":{"\u0142":36,"\uf002":36,"\uf001":36,"\u00c5":73,"z":73,"y":55,"x":112,"w":112,"v":112,"u":36,"t":73,"r":36,"p":36,"n":36,"m":36,"l":36,"k":36,"i":36,"h":36,"f":36,"b":36,"Z":73,"Y":225,"X":188,"W":149,"V":188,"U":36,"T":149,"S":73,"J":73,"A":73}},"\uf001":{"d":"674,0r0,-1100r141,0r0,1100r-141,0xm537,-1346v-176,1,-235,67,-230,246r230,0r0,123r-228,0r0,977r-137,0r0,-977r-147,0r0,-123r141,0v-8,-260,112,-378,371,-373r0,127xm815,-1229r-141,0r0,-227r141,0r0,227","w":952,"k":{"\u2039":36,"\u2019":-75,"\u201d":-75,"\u00ab":36,".":36,",":36}},"\uf002":{"d":"674,0r0,-1456r141,0r0,1456r-141,0xm537,-1346v-176,1,-235,67,-230,246r230,0r0,123r-228,0r0,977r-137,0r0,-977r-147,0r0,-123r141,0v-8,-260,112,-377,371,-373r0,127","w":952,"k":{"\u2039":36,"\u2019":-75,"\u201d":-75,"\u00ab":36,".":36,",":36}},"\u2021":{"d":"434,231r0,-417r-364,0r0,-127r364,0r0,-598r-364,0r0,-127r364,0r0,-418r146,0r0,418r374,0r0,127r-374,0r0,598r374,0r0,127r-374,0r0,417r-146,0"},"\u00b7":{"d":"289,-637v-50,0,-92,-42,-92,-92v0,-50,42,-94,92,-94v49,0,94,45,94,94v0,50,-44,92,-94,92","w":578},"\u201a":{"d":"166,162r-141,0r153,-428r144,0","w":397,"k":{"\u00c6":-114,"\u00df":-38,"\u00c5":-75,"z":-57,"y":36,"x":-38,"w":73,"v":112,"t":36,"s":-57,"r":-38,"p":-75,"j":-114,"g":-38,"e":-38,"b":-38,"Y":188,"W":149,"V":149,"T":73,"J":-75,"A":-75}},"\u201e":{"d":"461,162r-144,0r156,-428r141,0xm166,162r-141,0r153,-428r144,0","w":692,"k":{"\u00c6":-114,"\u00df":-38,"\u00c5":-75,"z":-57,"y":36,"x":-38,"w":73,"v":112,"t":36,"s":-57,"r":-38,"p":-75,"j":-114,"g":-38,"e":-38,"b":-38,"Y":188,"W":149,"V":149,"T":73,"J":-75,"A":-75}},"\u2030":{"d":"444,-1350v-123,0,-225,105,-225,228v0,123,102,227,225,227v123,0,228,-105,228,-227v0,-123,-105,-228,-228,-228xm451,-768v-196,0,-361,-163,-361,-358v0,-195,165,-359,361,-359v193,0,358,166,358,359v0,195,-163,358,-358,358xm2243,-555v-123,0,-228,105,-228,227v0,123,104,226,228,226v122,0,227,-103,227,-226v0,-120,-107,-227,-227,-227xm2247,29v-196,0,-359,-163,-359,-359v0,-194,165,-358,359,-358v193,0,358,165,358,358v0,196,-163,359,-358,359xm1231,-1485r115,0r-777,1514r-116,0xm1343,-555v-123,0,-227,102,-227,225v0,124,103,228,227,228v123,0,228,-105,228,-228v0,-123,-104,-225,-228,-225xm1346,29v-196,0,-359,-163,-359,-359v0,-194,165,-358,359,-358v193,0,358,165,358,358v0,196,-163,359,-358,359","w":2693},"\u00c2":{"d":"100,0r-151,0r565,-1456r172,0r563,1456r-153,0r-174,-457r-648,0xm872,-588r-276,-731r-272,731r548,0xm322,-1597r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":1223},"\u00ca":{"d":"279,-803r612,0r0,144r-612,0r0,518r612,0r0,141r-756,0r0,-1456r756,0r0,143r-612,0r0,510xm252,-1597r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":1028},"\u00c1":{"d":"100,0r-151,0r565,-1456r172,0r563,1456r-153,0r-174,-457r-648,0xm872,-588r-276,-731r-272,731r548,0xm565,-1597r-92,0r209,-350r152,0","w":1223},"\u00cb":{"d":"279,-803r612,0r0,144r-612,0r0,518r612,0r0,141r-756,0r0,-1456r756,0r0,143r-612,0r0,510xm641,-1663r0,-164r143,0r0,164r-143,0xm272,-1663r0,-164r141,0r0,164r-141,0","w":1028},"\u00c8":{"d":"279,-803r612,0r0,144r-612,0r0,518r612,0r0,141r-756,0r0,-1456r756,0r0,143r-612,0r0,510xm561,-1597r-269,-350r152,0r209,350r-92,0","w":1028},"\u00cd":{"d":"276,0r-143,0r0,-1456r143,0r0,1456xm174,-1597r-92,0r209,-350r152,0","w":412},"\u00ce":{"d":"276,0r-143,0r0,-1456r143,0r0,1456xm-69,-1597r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":412},"\u00cf":{"d":"276,0r-143,0r0,-1456r143,0r0,1456xm320,-1663r0,-164r143,0r0,164r-143,0xm-49,-1663r0,-164r141,0r0,164r-141,0","w":412},"\u00cc":{"d":"276,0r-143,0r0,-1456r143,0r0,1456xm240,-1597r-269,-350r152,0r209,350r-92,0","w":412},"\u00d3":{"d":"1401,-739v0,-383,-385,-724,-795,-573v-221,82,-387,292,-395,577v-10,341,264,626,600,626v330,0,590,-292,590,-630xm120,-1027v73,-176,229,-333,404,-405v169,-70,394,-73,562,0v254,110,462,340,462,695v0,360,-194,596,-443,704v-649,281,-1238,-373,-985,-994xm774,-1597r-92,0r209,-350r152,0","w":1612},"\u00d4":{"d":"1401,-739v0,-383,-385,-724,-795,-573v-221,82,-387,292,-395,577v-10,341,264,626,600,626v330,0,590,-292,590,-630xm120,-1027v73,-176,229,-333,404,-405v169,-70,394,-73,562,0v254,110,462,340,462,695v0,360,-194,596,-443,704v-649,281,-1238,-373,-985,-994xm531,-1597r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":1612},"\uf000":{"d":"860,-1214r-24,-2v-22,-205,151,-367,329,-398v2,21,0,34,2,62v11,155,-170,340,-307,338xm1272,-741v0,172,101,279,233,338v-76,165,-144,279,-205,343v-61,64,-129,95,-204,95v-57,0,-202,-71,-254,-66v-51,-6,-209,70,-258,66v-121,-10,-190,-85,-258,-176v-116,-156,-208,-360,-213,-596v-6,-278,179,-494,448,-494v72,0,222,68,279,68v52,0,208,-71,274,-68v168,9,273,63,359,162v-116,75,-201,163,-201,328","w":1618},"\u00d2":{"d":"1401,-739v0,-383,-385,-724,-795,-573v-221,82,-387,292,-395,577v-10,341,264,626,600,626v330,0,590,-292,590,-630xm120,-1027v73,-176,229,-333,404,-405v169,-70,394,-73,562,0v254,110,462,340,462,695v0,360,-194,596,-443,704v-649,281,-1238,-373,-985,-994xm840,-1597r-269,-350r152,0r209,350r-92,0","w":1612},"\u00da":{"d":"588,31v-347,0,-474,-196,-475,-561r0,-926r143,0r0,921v-6,206,38,308,152,384v49,33,107,47,170,47v250,0,322,-181,323,-461r0,-891r141,0r0,926v0,352,-124,561,-454,561xm547,-1597r-92,0r209,-350r152,0","w":1157},"\u00db":{"d":"588,31v-347,0,-474,-196,-475,-561r0,-926r143,0r0,921v-6,206,38,308,152,384v49,33,107,47,170,47v250,0,322,-181,323,-461r0,-891r141,0r0,926v0,352,-124,561,-454,561xm304,-1597r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0","w":1157},"\u00d9":{"d":"588,31v-347,0,-474,-196,-475,-561r0,-926r143,0r0,921v-6,206,38,308,152,384v49,33,107,47,170,47v250,0,322,-181,323,-461r0,-891r141,0r0,926v0,352,-124,561,-454,561xm613,-1597r-269,-350r152,0r209,350r-92,0","w":1157},"\u0131":{"d":"115,0r0,-1100r141,0r0,1100r-141,0","w":371},"\u02c6":{"d":"236,-1247r200,-350r152,0r200,350r-92,0r-184,-264r-184,264r-92,0"},"\u02dc":{"d":"567,-1436v69,27,134,-1,152,-63r82,0v-30,121,-112,213,-256,174v-49,-13,-91,-39,-150,-39v-48,0,-75,34,-92,74r-80,0v23,-119,111,-212,248,-176"},"\u00af":{"d":"256,-1346r0,-116r512,0r0,116r-512,0"},"\u02d8":{"d":"786,-1554v-13,177,-89,262,-274,262v-183,0,-262,-86,-274,-262r79,0v10,106,75,145,195,145v123,-1,181,-38,193,-145r81,0"},"\u02d9":{"d":"436,-1319r0,-176r152,0r0,176r-152,0"},"\u02da":{"d":"512,-1620v-82,0,-150,69,-150,152v0,82,68,149,150,149v80,0,150,-69,150,-149v0,-81,-69,-152,-150,-152xm512,-1229v-130,0,-240,-111,-240,-241v0,-131,109,-240,240,-240v130,0,242,110,242,240v0,129,-113,241,-242,241"},"\u00b8":{"d":"639,287v3,-98,-88,-111,-190,-103r0,-184r63,0r0,111v141,-5,240,44,240,172v0,122,-95,177,-228,176v-96,-1,-165,-15,-252,-39r0,-78v97,20,150,35,238,35v76,0,127,-22,129,-90"},"\u02dd":{"d":"571,-1247r168,-350r133,0r-227,350r-74,0xm336,-1247r149,-350r133,0r-208,350r-74,0"},"\u02db":{"d":"336,264v6,-119,92,-193,182,-264r62,0v-75,66,-138,130,-146,236v-7,96,91,86,184,86r0,104v-159,7,-290,-14,-282,-162"},"\u02c7":{"d":"236,-1597r92,0r184,262r184,-262r92,0r-200,348r-152,0"},"\u0141":{"d":"805,0r-655,0r0,-575r-150,106r0,-143r150,-105r0,-739r143,0r0,641r256,-178r0,145r-256,176r0,531r512,0r0,141","w":858,"k":{"\u201e":-38,"\u201a":-38,"\u203a":112,"\u2039":188,"\u2019":225,"\u2018":225,"\u201d":225,"\u201c":225,"\u00bb":112,"\u00ab":188,"y":112,"u":63,"o":63,"e":63,"a":63,"Y":112,"W":120,"V":188,"U":36,"T":83,"O":73,";":36,":":36,".":73,"-":149,",":73}},"\u0142":{"d":"133,0r0,-645r-133,92r0,-139r133,-94r0,-670r141,0r0,577r134,-94r0,142r-134,92r0,739r-141,0","w":389,"k":{"\u2039":36,"\u2019":-75,"\u201d":-75,"\u00ab":36,".":36,",":36}},"\u0160":{"d":"883,-442v3,269,-162,471,-422,471v-244,0,-404,-194,-403,-445r138,0v2,168,103,295,267,295v171,0,276,-120,276,-295v0,-140,-143,-246,-342,-311v-187,-61,-295,-143,-301,-360v-6,-227,163,-398,389,-396v230,2,356,156,367,385r-135,0v-12,-145,-85,-243,-232,-248v-176,-6,-304,182,-225,348v43,91,106,108,242,152v218,71,378,140,381,404xm201,-1947r92,0r184,262r184,-262r92,0r-200,348r-152,0","w":952},"\u0161":{"d":"741,-299v0,190,-156,328,-350,328v-214,0,-345,-159,-348,-375r145,0v-5,131,84,242,205,242v107,0,197,-78,193,-183v-6,-138,-76,-169,-201,-217v-121,-46,-202,-88,-239,-133v-37,-45,-56,-106,-56,-182v0,-169,149,-309,320,-309v190,0,307,117,313,303r-151,0v-6,-101,-66,-164,-171,-164v-121,0,-203,137,-142,245v33,58,93,84,179,108v127,36,197,71,254,151v34,48,49,111,49,186xm123,-1597r92,0r184,262r184,-262r92,0r-200,348r-152,0","w":797},"\u017d":{"d":"719,-1313r-639,0r0,-143r805,0r0,137r-682,1178r696,0r0,141r-860,0r0,-137xm193,-1947r92,0r184,262r184,-262r92,0r-200,348r-152,0","w":938},"\u017e":{"d":"780,0r-760,0r0,-133r574,-834r-510,0r0,-133r666,0r0,152r-562,807r592,0r0,141xm138,-1597r92,0r184,262r184,-262r92,0r-200,348r-152,0","w":825},"\u00a6":{"d":"567,-408r0,758r-108,0r0,-758r108,0xm567,-1432r0,758r-108,0r0,-758r108,0"},"\u00d0":{"d":"1165,-735v0,-351,-217,-586,-565,-582r-309,0r0,522r358,0r0,127r-358,0r0,531r336,0v334,3,538,-253,538,-598xm588,-1456v430,-7,737,304,731,733v-4,273,-123,474,-295,598v-139,100,-243,125,-496,125r-378,0r0,-668r-154,0r0,-127r154,0r0,-661r438,0","w":1380,"k":{"\u201e":112,"\u201a":112,"\u2019":-57,"\u2018":36,"\u201d":-57,"\u201c":36,";":36,":":36,".":112,"-":-38,",":112}},"\u00f0":{"d":"1040,-530v0,-230,-193,-406,-428,-406v-220,0,-409,194,-409,418v0,232,187,414,420,414v236,0,417,-188,417,-426xm53,-510v0,-349,371,-647,747,-510v59,22,120,56,183,105v-47,-127,-126,-230,-227,-308r-269,99r-36,-82r223,-84v-49,-30,-103,-59,-160,-86r43,-92v95,42,169,80,246,131r287,-103r34,80r-237,88v172,159,296,381,301,680v6,354,-226,621,-567,621v-302,0,-568,-245,-568,-539","w":1241},"\u00dd":{"d":"557,-535r0,535r-141,0r0,-537r-465,-919r164,0r372,756r377,-756r160,0xm459,-1597r-92,0r209,-350r152,0","w":981},"\u00fd":{"d":"-33,-1100r162,0r340,893r356,-893r164,0r-594,1456r-151,0r147,-358xm440,-1247r-92,0r209,-350r152,0","w":944},"\u00de":{"d":"473,-477v212,1,342,-80,342,-279v0,-138,-74,-234,-191,-262v-75,-17,-254,-11,-362,-12r0,553r211,0xm973,-762v0,279,-222,437,-520,432r-191,0r0,330r-143,0r0,-1456r143,0r0,282r193,0v252,-9,375,59,463,206v38,63,55,133,55,206","w":1034},"\u00fe":{"d":"1085,-539v0,-246,-188,-454,-426,-454v-219,0,-411,216,-411,442v0,229,195,449,416,449v229,0,421,-203,421,-437xm668,29v-192,-3,-335,-82,-416,-203r0,530r-143,0r0,-1812r143,0r-4,536v71,-115,232,-201,409,-204v317,-6,576,253,576,565v0,328,-241,593,-565,588","w":1290},"\u2212":{"d":"1452,-659r0,98r-1198,0r0,-98r1198,0","w":1706},"\u00d7":{"d":"856,-680r481,-481r70,69r-481,482r481,481r-70,70r-481,-482r-481,482r-70,-70r481,-481r-481,-482r70,-69","w":1706},"\u00b9":{"d":"446,-582r-100,0r0,-798r-168,0r0,-76r268,0r0,874","w":764},"\u00b2":{"d":"393,-1475v204,0,370,217,257,410v-24,41,-62,84,-113,127r-324,272r471,0r0,84r-596,0r0,-84r340,-295v65,-54,108,-99,132,-133v93,-135,-17,-306,-175,-301v-131,4,-215,90,-205,232r-92,0v-8,-186,126,-312,305,-312","w":764},"\u00b3":{"d":"291,-1116v127,11,231,-23,231,-141v0,-80,-62,-140,-143,-140v-95,0,-150,55,-152,148r-88,0v6,-136,102,-224,244,-224v124,0,240,97,238,216v-2,83,-37,123,-95,161v95,46,158,118,160,246v3,162,-140,285,-307,285v-184,0,-305,-104,-307,-283r96,0v-6,121,89,209,205,209v121,0,218,-84,217,-203v-2,-158,-124,-211,-299,-202r0,-72","w":764},"\u00bc":{"d":"1559,-227r4,-494r-342,494r338,0xm1645,0r-89,0r0,-158r-430,0r0,-69r416,-588r103,0r0,588r100,0r0,69r-100,0r0,158xm508,29r-121,0r905,-1514r119,0xm426,-641r-96,0r0,-745r-160,0r0,-70r256,0r0,815","w":1800},"\u00bd":{"d":"1446,-834v192,0,354,200,246,382v-23,39,-59,79,-109,120r-309,252r450,0r0,80r-569,0r0,-80r326,-272v64,-55,107,-98,127,-130v86,-127,-21,-278,-168,-278v-125,0,-206,83,-197,217r-88,0v-7,-175,121,-291,291,-291xm508,29r-121,0r905,-1514r119,0xm426,-641r-96,0r0,-745r-160,0r0,-70r256,0r0,815","w":1800},"\u00be":{"d":"1559,-227r4,-494r-342,494r338,0xm1645,0r-89,0r0,-158r-430,0r0,-69r416,-588r103,0r0,588r100,0r0,69r-100,0r0,158xm508,29r-121,0r905,-1514r119,0xm653,-891v2,152,-135,266,-293,266v-174,0,-289,-97,-292,-264r92,0v-5,112,87,195,196,195v115,0,208,-77,207,-189v-1,-150,-120,-198,-287,-190r1,-68v120,11,223,-20,223,-131v0,-75,-62,-131,-138,-131v-87,0,-146,51,-145,137r-84,0v7,-126,100,-207,234,-207v117,0,227,90,225,201v-2,78,-35,115,-88,152v90,42,147,109,149,229","w":1800},"\u20a3":{"d":"135,0r0,-1456r719,0r0,143r-578,0r0,510r578,0r0,144r-578,0r0,659r-141,0xm1493,-963v-182,19,-248,97,-248,299r0,664r-143,0r0,-1100r133,0r0,127v62,-86,128,-137,257,-143","w":1503},"\u011e":{"d":"213,-735v0,343,263,626,600,626v283,0,515,-213,565,-460r-735,0r0,-129r905,0v-13,404,-333,727,-747,727v-513,0,-901,-540,-682,-1056v109,-256,336,-458,700,-458v316,0,532,169,651,395r-176,0v-120,-150,-249,-250,-483,-256v-327,-9,-598,285,-598,611xm1081,-1904v-13,177,-89,262,-274,262v-183,0,-262,-86,-274,-262r79,0v10,106,75,145,195,145v123,-1,181,-38,193,-145r81,0","w":1612},"\u011f":{"d":"1174,-182v4,365,-192,612,-543,612v-249,0,-447,-139,-494,-340r164,0v40,124,158,204,320,203v266,0,429,-202,415,-488v-93,126,-213,216,-407,220v-323,7,-576,-256,-576,-578v0,-315,250,-579,563,-573v207,4,324,77,420,206r0,-180r138,0r0,918xm621,-997v-228,0,-418,203,-418,438v0,243,185,453,418,453v215,0,413,-216,413,-437v0,-235,-188,-454,-413,-454xm915,-1554v-13,177,-89,262,-274,262v-183,0,-262,-86,-274,-262r79,0v10,106,75,145,195,145v123,-1,181,-38,193,-145r81,0","w":1280},"\u0130":{"d":"276,0r-143,0r0,-1456r143,0r0,1456xm131,-1669r0,-176r152,0r0,176r-152,0","w":412},"\u015e":{"d":"883,-442v3,269,-162,471,-422,471v-244,0,-404,-194,-403,-445r138,0v2,168,103,295,267,295v171,0,276,-120,276,-295v0,-140,-143,-246,-342,-311v-187,-61,-295,-143,-301,-360v-6,-227,163,-398,389,-396v230,2,356,156,367,385r-135,0v-12,-145,-85,-243,-232,-248v-176,-6,-304,182,-225,348v43,91,106,108,242,152v218,71,378,140,381,404xm604,287v3,-98,-88,-111,-190,-103r0,-184r63,0r0,111v141,-5,240,44,240,172v0,122,-95,177,-228,176v-96,-1,-165,-15,-252,-39r0,-78v97,20,150,35,238,35v76,0,127,-22,129,-90","w":952},"\u015f":{"d":"741,-299v0,190,-156,328,-350,328v-214,0,-345,-159,-348,-375r145,0v-5,131,84,242,205,242v107,0,197,-78,193,-183v-6,-138,-76,-169,-201,-217v-121,-46,-202,-88,-239,-133v-37,-45,-56,-106,-56,-182v0,-169,149,-309,320,-309v190,0,307,117,313,303r-151,0v-6,-101,-66,-164,-171,-164v-121,0,-203,137,-142,245v33,58,93,84,179,108v127,36,197,71,254,151v34,48,49,111,49,186xm526,287v3,-98,-88,-111,-190,-103r0,-184r63,0r0,111v141,-5,240,44,240,172v0,122,-95,177,-228,176v-96,-1,-165,-15,-252,-39r0,-78v97,20,150,35,238,35v76,0,127,-22,129,-90","w":797},"\u0106":{"d":"811,29v-520,13,-912,-535,-692,-1056v106,-251,331,-458,684,-458v321,0,548,174,665,406r-172,0v-116,-159,-252,-258,-495,-264v-317,-8,-588,289,-588,608v0,335,262,632,588,626v230,-4,379,-103,485,-251r170,0v-117,222,-333,381,-645,389xm768,-1597r-92,0r209,-350r152,0","w":1540},"\u0107":{"d":"57,-547v0,-315,259,-589,572,-583v264,5,442,159,520,368r-156,0v-78,-143,-183,-231,-381,-235v-229,-4,-407,210,-407,448v0,241,179,448,413,445v186,-2,315,-102,375,-240r156,0v-75,217,-252,370,-524,375v-311,6,-568,-268,-568,-578xm588,-1247r-92,0r209,-350r152,0","w":1241},"\u010c":{"d":"811,29v-520,13,-912,-535,-692,-1056v106,-251,331,-458,684,-458v321,0,548,174,665,406r-172,0v-116,-159,-252,-258,-495,-264v-317,-8,-588,289,-588,608v0,335,262,632,588,626v230,-4,379,-103,485,-251r170,0v-117,222,-333,381,-645,389xm525,-1947r92,0r184,262r184,-262r92,0r-200,348r-152,0","w":1540},"\u010d":{"d":"57,-547v0,-315,259,-589,572,-583v264,5,442,159,520,368r-156,0v-78,-143,-183,-231,-381,-235v-229,-4,-407,210,-407,448v0,241,179,448,413,445v186,-2,315,-102,375,-240r156,0v-75,217,-252,370,-524,375v-311,6,-568,-268,-568,-578xm345,-1597r92,0r184,262r184,-262r92,0r-200,348r-152,0","w":1241},"\u0111":{"d":"629,-102v215,0,413,-217,413,-437v0,-235,-191,-454,-417,-454v-229,0,-422,202,-422,436v0,244,189,455,426,455xm621,-1124v193,4,330,81,423,198r-6,-268r-293,0r0,-109r293,0r0,-153r142,0r0,153r149,0r0,109r-149,0r0,1194r-138,0r0,-166v-90,111,-238,191,-421,195v-312,6,-564,-266,-564,-580v0,-315,248,-579,564,-573","w":1305,"k":{"\u2039":36,"\u2019":-75,"\u201d":-75,"\u00ab":36,".":36,",":36}},"\u00ad":{"d":"563,-616r0,133r-469,0r0,-133r469,0","w":659},"\u2219":{"d":"289,-637v-50,0,-92,-42,-92,-92v0,-50,42,-94,92,-94v49,0,94,45,94,94v0,50,-44,92,-94,92","w":578},"\u20ac":{"d":"631,-98v186,0,306,-105,338,-264r147,0v-23,169,-122,273,-248,338v-136,70,-329,71,-466,2v-110,-55,-209,-144,-243,-282v-15,-57,-21,-140,-20,-228r-145,0r26,-111r119,0r0,-168r-137,0r27,-111r110,0v-1,-181,14,-271,86,-368v86,-115,221,-191,406,-197v256,-8,473,197,487,414r-145,0v-26,-173,-150,-285,-342,-285v-243,0,-366,172,-350,436r639,0r-27,111r-612,0r0,168r591,0r-26,111r-565,0v-15,264,107,433,350,434","w":1157}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":1024,"face":{"font-family":"AvantGarde Bk BT","font-weight":400,"font-style":"oblique","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 4 2 2 2 2 9 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-342 -1974 2603.67 483","underline-thickness":"113","underline-position":"-122","slope":"-11","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":578},"!":{"d":"152,-375r210,-1081r144,0r-209,1081r-145,0xm80,0r43,-227r145,0r-45,227r-143,0","w":588},"\"":{"d":"473,-1434r0,553r-102,0r0,-553r102,0xm199,-1434r0,553r-101,0r0,-553r101,0","w":569},"#":{"d":"975,-864r-266,0r-97,276r267,0xm918,-1454r-168,483r264,0r172,-483r127,0r-170,483r315,0r-37,107r-317,0r-98,276r340,0r-37,109r-340,0r-170,479r-129,0r172,-479r-269,0r-172,479r-127,0r170,-479r-327,0r39,-109r325,0r101,-276r-353,0r35,-107r354,0r173,-483r127,0","w":1575},"$":{"d":"668,-1339v-169,-4,-301,155,-230,321v47,109,171,151,287,227v146,96,229,166,233,369v4,243,-169,384,-415,389r-43,223r-121,0r49,-235v-203,-50,-346,-184,-317,-432r139,0v-28,201,99,311,293,311v167,0,276,-97,276,-260v0,-105,-98,-215,-266,-309v-106,-60,-177,-117,-213,-169v-36,-52,-55,-115,-55,-192v-3,-212,162,-380,381,-372r36,-201r111,0r-39,209v177,38,283,172,275,391r-138,0v10,-165,-89,-266,-243,-270","w":1157},"%":{"d":"312,-795v-157,-64,-279,-258,-194,-469v50,-123,163,-221,331,-221v169,0,280,100,333,221v64,146,0,314,-80,392v-84,82,-249,135,-390,77xm446,-1352v-123,0,-227,103,-227,226v0,123,104,227,227,227v124,0,226,-104,226,-227v0,-125,-101,-226,-226,-226xm1229,-1487r117,0r-779,1518r-116,0xm1341,-555v-123,0,-227,102,-227,225v0,124,103,228,227,228v125,0,228,-103,228,-228v0,-124,-104,-225,-228,-225xm1092,-76v-83,-75,-140,-246,-78,-392v53,-123,163,-220,332,-220v168,0,278,98,331,220v61,145,2,314,-78,392v-85,83,-250,138,-391,78v-44,-18,-81,-46,-116,-78","w":1796},"&":{"d":"676,-1354v-123,0,-226,84,-223,203v2,109,58,184,127,244v90,-32,157,-71,202,-116v45,-45,68,-98,68,-157v0,-99,-75,-174,-174,-174xm174,-385v0,156,117,276,272,276v71,0,138,-26,202,-78v64,-52,125,-130,183,-235r-301,-321v-115,39,-203,90,-264,151v-61,61,-92,130,-92,207xm672,-1487v183,0,327,116,325,293v0,79,-28,152,-85,220v-57,68,-137,126,-242,173r243,256r244,-416r162,0r-307,521r305,342r-90,98r-297,-317v-69,115,-142,202,-222,259v-80,57,-167,85,-262,85v-232,0,-422,-186,-415,-418v8,-258,177,-380,397,-465v-64,-89,-115,-162,-119,-283v-6,-200,159,-348,363,-348","w":1389},"'":{"d":"199,-1434r0,553r-101,0r0,-553r101,0","w":295},"(":{"d":"256,416v-208,-38,-328,-254,-278,-513r188,-976v50,-253,185,-391,459,-412r-25,131v-200,41,-262,120,-303,330r-191,979r-10,88v1,130,77,215,185,244","w":541},")":{"d":"211,-1485v210,38,329,253,278,514r-190,977v-51,254,-184,388,-459,410r27,-129v200,-42,260,-121,301,-332r198,-1033v16,-150,-64,-246,-180,-278","w":541},"*":{"d":"571,-981r-182,264r-106,-74r198,-251r-297,-86r39,-121r291,98r0,-305r115,0r0,305r289,-94r40,115r-303,83r207,259r-104,69"},"+":{"d":"903,-1221r0,562r549,0r0,98r-549,0r0,561r-98,0r0,-561r-551,0r0,-98r551,0r0,-562r98,0","w":1706},",":{"d":"-72,147r254,-376r156,0r-254,376r-156,0","w":578},"-":{"d":"580,-616r-25,133r-471,0r25,-133r471,0","w":659,"k":{"\u00d0":-75,"\u0141":-75,"\u0153":-75,"\u0152":-75,"\u00f8":-75,"\u00d8":-75,"\u00c6":-57,"\u00df":-38,"w":-75,"o":-75,"Y":83,"X":73,"V":45,"T":102,"R":-75,"P":-75,"O":-75,"L":-75,"K":-75,"J":-114,"H":-75,"G":-75,"F":-75,"D":-75,"C":-38,"B":-75}},".":{"d":"92,0r45,-233r142,0r-43,233r-144,0","w":578},"\/":{"d":"461,-1485r119,0r-506,1675r-121,0","w":569},"0":{"d":"494,31v-305,5,-492,-172,-459,-486v3,-23,7,-49,12,-77r94,-480v55,-285,206,-471,518,-475v296,-4,499,173,461,479v-3,27,-8,55,-14,86r-94,478v-58,285,-205,470,-518,475xm172,-434v-35,215,114,336,317,332v261,-5,337,-122,385,-363r93,-471v11,-57,19,-99,20,-154v0,-166,-145,-268,-323,-264v-259,6,-338,123,-385,363r-93,473v-6,31,-10,59,-14,84","w":1157},"1":{"d":"653,0r-139,0r236,-1225r-451,490r-100,-86r583,-635r154,0","w":1157},"2":{"d":"664,-1485v230,-4,409,167,409,393v0,85,-24,168,-77,247v-143,212,-545,523,-767,726r729,0r-22,119r-930,0r25,-119r501,-436v269,-233,404,-415,404,-547v0,-152,-105,-253,-258,-250v-223,5,-315,155,-352,371r-138,0v27,-289,183,-499,476,-504","w":1157},"3":{"d":"643,-1364v-179,3,-256,100,-293,260r-133,0v52,-239,163,-376,430,-381v224,-4,387,144,385,363v-2,189,-109,291,-270,334v151,50,244,165,246,356v3,268,-222,463,-496,463v-289,0,-477,-175,-448,-475r135,0v-19,214,105,342,311,342v203,0,353,-134,350,-334v-3,-213,-140,-294,-360,-306r24,-124v206,8,367,-93,369,-279v1,-140,-104,-221,-250,-219","w":1157},"4":{"d":"170,-410r559,0r164,-831xm791,0r-142,0r53,-274r-712,0r30,-160r881,-1022r172,0r-203,1046r183,0r-27,136r-182,0","w":1157},"5":{"d":"516,29v-294,0,-482,-167,-477,-461r135,0v-12,207,140,330,338,330v244,0,395,-186,395,-439v0,-192,-142,-320,-338,-317v-152,2,-249,61,-319,156r-113,-39r260,-715r701,0r-33,129r-569,0r-138,397v81,-33,153,-59,248,-61v264,-4,436,198,436,467v0,316,-214,553,-526,553","w":1157},"6":{"d":"508,-104v241,0,405,-197,405,-445v0,-205,-143,-348,-348,-348v-234,0,-393,194,-393,436v0,206,135,357,336,357xm520,29v-316,0,-547,-263,-474,-607v42,-197,159,-304,316,-471r381,-405r172,0r-411,452v329,-44,547,139,547,449v0,319,-221,582,-531,582","w":1157},"7":{"d":"283,0r-158,0r825,-1319r-661,0r24,-137r838,0r-23,115","w":1157},"8":{"d":"616,-848v165,0,285,-113,285,-276v0,-140,-105,-227,-248,-228v-170,-1,-288,122,-288,293v0,132,112,211,251,211xm872,-442v0,-179,-132,-291,-317,-291v-207,0,-358,134,-358,338v0,174,126,291,303,291v196,0,372,-148,372,-338xm51,-397v1,-216,131,-365,307,-418v-72,-67,-126,-137,-129,-254v-6,-234,192,-416,430,-416v216,0,382,148,379,359v-3,173,-90,264,-225,321v124,71,198,166,201,344v5,273,-231,490,-508,490v-268,0,-457,-163,-455,-426","w":1157},"9":{"d":"649,-1352v-240,0,-405,199,-405,447v0,205,143,348,348,348v233,0,393,-195,393,-436v0,-207,-134,-359,-336,-359xm637,-1485v317,0,550,264,473,607v-9,43,-24,84,-41,126v-31,78,-166,230,-274,346r-381,406r-172,0r411,-452v-329,44,-547,-139,-547,-449v0,-320,222,-584,531,-584","w":1157},":":{"d":"96,0r45,-233r142,0r-45,233r-142,0xm262,-866r47,-234r142,0r-45,234r-144,0","w":588},";":{"d":"-61,147r254,-376r155,0r-254,376r-155,0xm256,-866r45,-234r141,0r-45,234r-141,0","w":588},"<":{"d":"1442,-1026r-1022,416r1022,413r0,109r-1178,-481r0,-82r1178,-484r0,109","w":1706},"=":{"d":"1452,-473r0,98r-1198,0r0,-98r1198,0xm1452,-846r0,98r-1198,0r0,-98r1198,0","w":1706},">":{"d":"1442,-651r0,82r-1178,481r0,-109r1022,-413r-1022,-416r0,-109","w":1706},"?":{"d":"272,0r45,-229r140,0r-45,229r-140,0xm569,-1485v283,-7,471,211,387,493v-59,198,-317,275,-413,452v-27,50,-47,106,-58,169r-141,0v26,-243,145,-351,308,-471v90,-66,118,-93,152,-174v74,-175,-59,-347,-237,-342v-198,5,-319,139,-352,320r-143,0v46,-256,216,-440,497,-447","w":948},"@":{"d":"1044,-999v134,1,215,62,254,163r60,-125r94,0r-152,625v-17,76,30,122,103,121v86,-2,155,-38,211,-82v123,-97,205,-273,205,-487v0,-356,-327,-580,-707,-580v-412,0,-671,214,-804,490v-92,190,-104,475,-15,667v112,241,374,406,729,406v254,0,473,-80,635,-193r39,55v-174,131,-378,219,-654,222v-423,4,-715,-184,-851,-459v-105,-213,-99,-527,12,-742v154,-302,454,-536,911,-536v361,1,629,160,752,396v90,172,84,416,3,590v-84,181,-238,335,-491,343v-130,4,-203,-52,-190,-180v-59,101,-152,179,-295,180v-207,2,-313,-118,-313,-328v0,-283,197,-549,464,-546xm702,-444v0,140,73,236,207,235v157,-1,267,-122,301,-260r62,-248v-20,-111,-94,-198,-215,-198v-221,0,-355,229,-355,471","w":2048},"A":{"d":"883,-586r-146,-770r-424,770r570,0xm-158,0r791,-1458r221,0r287,1458r-144,0r-88,-453r-667,0r-244,453r-156,0","w":1223,"k":{"\u201e":-114,"\u201a":-114,"\u203a":36,"\u2039":73,"\u2019":243,"\u2018":264,"\u201d":243,"\u201c":264,"\u0152":36,"\u00bb":36,"\u00ab":73,"\u00d8":36,"y":-38,"w":-38,"v":-38,"Y":73,"V":36,"T":73,"S":-38,"Q":36,"O":36,"G":36,"C":36,"A":-75,";":-38,":":-38,"-":45}},"B":{"d":"874,-1116v0,-193,-138,-215,-366,-219r-121,4r-96,506v49,5,99,8,153,8v256,0,430,-71,430,-299xm420,-688r-156,4r-108,553r250,0v271,-2,405,-69,405,-320v0,-211,-142,-232,-391,-237xm780,-754v113,56,189,163,189,322v0,218,-136,367,-321,412v-157,38,-454,16,-658,20r282,-1456r375,0v229,-3,390,126,387,346v-2,187,-108,288,-254,356","w":1085,"k":{"\u201e":36,"\u201a":36,"\u2018":55,"\u201c":55,"Y":36}},"C":{"d":"727,29v-398,5,-676,-262,-676,-656v0,-404,209,-668,489,-792v245,-109,578,-74,765,69v119,90,197,212,231,371r-158,0v-63,-223,-235,-369,-510,-369v-316,0,-517,182,-612,418v-35,87,-51,180,-51,277v0,331,205,555,532,551v268,-3,443,-135,557,-318r166,0v-121,264,-372,445,-733,449","w":1540,"k":{"\u203a":-38,"\u2019":-57,"\u2018":73,"\u201d":-57,"\u201c":73,"\u00bb":-38,"\u00c5":-38,"A":-38,"-":-47}},"D":{"d":"1143,-815v0,-331,-182,-511,-514,-510r-254,0r-230,1194r304,0v408,6,694,-279,694,-684xm1290,-823v0,491,-340,830,-833,823r-475,0r278,-1456r358,0v414,-3,672,226,672,633","w":1360,"k":{"\u201e":112,"\u201a":112,"\u2039":-38,"\u2019":36,"\u2018":149,"\u201d":36,"\u201c":149,"\u00ab":-38,"\u00c5":36,"Y":55,"W":36,"V":36,"A":36,"-":-65}},"E":{"d":"-8,0r280,-1456r748,0r-25,135r-606,0r-100,518r604,0r-25,133r-606,0r-104,537r606,0r-27,133r-745,0","w":1028},"F":{"d":"-8,0r280,-1456r748,0r-25,135r-606,0r-100,518r604,0r-25,133r-606,0r-129,670r-141,0","w":991,"k":{"\u201e":376,"\u201a":376,"\u203a":112,"\u2039":73,"\u2019":-38,"\u201d":-38,"\u0153":36,"\u00bb":112,"\u00ab":73,"\u00f8":36,"\u00e6":36,"\u00c5":149,"u":36,"r":36,"o":36,"i":36,"e":36,"a":36,"A":149,";":83,":":83,".":329,"-":102,",":329}},"G":{"d":"733,31v-409,0,-681,-261,-678,-668v3,-401,207,-662,489,-783v239,-103,583,-75,760,65v111,88,189,211,228,378r-152,0v-56,-220,-227,-369,-491,-369v-330,0,-541,179,-637,426v-33,85,-49,177,-49,275v0,318,212,536,528,536v307,0,555,-198,627,-446r-740,0r29,-133r889,0v-25,310,-199,510,-415,626v-118,63,-248,93,-388,93","w":1602,"k":{"\u201e":36,"\u201a":36,"\u2019":55,"\u2018":112,"\u201d":55,"\u201c":112,"Y":36,"T":36,"-":-47}},"H":{"d":"-10,0r282,-1456r140,0r-125,651r708,0r127,-651r140,0r-283,1456r-139,0r129,-672r-709,0r-131,672r-139,0","w":1251,"k":{".":36,",":36}},"I":{"d":"-4,0r283,-1456r141,0r-283,1456r-141,0","w":412},"J":{"d":"35,-332v-6,147,70,228,211,228v91,0,160,-32,209,-96v49,-64,91,-189,127,-378r170,-878r139,0r-193,1020v-55,283,-159,459,-454,465v-216,5,-370,-136,-348,-361r139,0","w":868,"k":{"\u2019":-38,"\u201d":-38,"-":36}},"K":{"d":"-10,0r282,-1456r140,0r-150,778r731,-778r181,0r-654,690r406,766r-158,0r-354,-647r-201,203r-84,444r-139,0","w":1014,"k":{"\u201e":-104,"\u201a":-104,"\u203a":36,"\u2039":131,"\u2018":-75,"\u201c":-75,"\u0153":73,"\u0152":45,"\u00bb":36,"\u00ab":131,"\u00f8":73,"\u00e6":73,"\u00d8":45,"\u00c5":-75,"y":36,"u":73,"o":73,"e":73,"a":73,"Y":-75,"W":-38,"T":-75,"O":45,"C":63,"A":-75,"-":102}},"L":{"d":"-8,0r280,-1456r140,0r-254,1323r606,0r-27,133r-745,0","w":844,"k":{"\u201e":-114,"\u201a":-114,"\u203a":73,"\u2039":73,"\u2019":348,"\u2018":415,"\u201d":348,"\u201c":415,"\u0153":36,"\u0152":112,"\u00bb":73,"\u00ab":73,"\u00f8":36,"\u00e6":36,"\u00d8":112,"\u00c5":-75,"y":73,"u":36,"o":36,"e":36,"a":36,"Y":73,"W":112,"V":112,"U":36,"T":112,"O":112,"A":-75,"-":36}},"M":{"d":"-14,0r282,-1456r197,0r317,1343r793,-1343r242,0r-283,1456r-148,0r265,-1327r-793,1327r-180,0r-303,-1286r-250,1286r-139,0","w":1802},"N":{"d":"-10,0r282,-1456r154,0r629,1257r239,-1257r142,0r-283,1456r-152,0r-628,-1257r-244,1257r-139,0","w":1427},"O":{"d":"721,29v-398,0,-668,-265,-664,-662v4,-410,206,-676,503,-795v97,-39,204,-57,319,-57v399,0,665,268,665,668v0,493,-333,846,-823,846xm1397,-819v0,-317,-211,-534,-527,-529v-313,5,-514,179,-610,409v-38,91,-55,193,-55,304v0,317,209,526,524,526v395,0,668,-306,668,-710","w":1602,"k":{"\u201e":112,"\u201a":112,"\u2019":36,"\u2018":112,"\u201d":36,"\u201c":112,"Y":55,"X":36,"V":36,";":-38,":":-38,".":83,"-":-57,",":83}},"P":{"d":"950,-1051v-5,-222,-135,-267,-385,-270r-178,0r-119,621v195,-5,429,20,543,-58v78,-53,142,-166,139,-293xm1102,-1042v0,318,-240,479,-580,475r-280,0r-111,567r-143,0r284,-1456v237,8,518,-27,658,76v97,72,172,182,172,338","w":1128,"k":{"\u201e":491,"\u201a":491,"\u203a":73,"\u2039":112,"\u2019":-47,"\u2018":36,"\u201d":-47,"\u201c":36,"\u0153":73,"\u00bb":73,"\u00ab":112,"\u00f8":73,"\u00e6":73,"\u00c5":149,"u":36,"s":36,"r":36,"o":73,"n":36,"i":73,"e":73,"a":73,"A":149,";":55,":":55,".":452,"-":159,",":452}},"Q":{"d":"1397,-819v3,-318,-209,-532,-527,-527v-332,6,-544,201,-631,465v-37,116,-44,253,-19,381v119,-43,233,-78,372,-78v273,0,445,125,598,289v129,-117,205,-293,207,-530xm1094,-213v-171,-173,-355,-290,-664,-228v-55,11,-113,30,-176,54v84,174,241,281,487,281v145,0,253,-44,353,-107xm1526,-45v-127,16,-251,-13,-320,-72v-128,92,-266,144,-471,146v-407,5,-681,-260,-678,-664v3,-411,210,-675,507,-793v97,-38,202,-57,315,-57v401,0,669,268,665,670v-3,274,-88,474,-233,618v66,34,141,57,233,42","w":1602},"R":{"d":"457,-662v313,12,563,-97,563,-372v0,-160,-93,-245,-228,-277v-65,-15,-280,-17,-405,-16r-256,1327r-143,0r282,-1456r344,0v344,0,553,113,553,430v0,288,-215,453,-497,481r299,545r-170,0","w":1204,"k":{"\u203a":36,"\u2039":73,"\u2018":73,"\u201c":73,"\u0153":36,"\u00bb":36,"\u00ab":73,"\u00f8":36,"\u00e6":36,"\u00c5":36,"u":36,"o":36,"e":36,"a":36,"T":36,"A":36,";":73,":":73,".":73,"-":92,",":73}},"S":{"d":"410,31v-260,0,-433,-175,-407,-445r142,1v-19,188,98,309,277,309v162,0,300,-129,293,-289v-7,-164,-78,-201,-211,-285v-174,-111,-346,-161,-354,-403v-7,-218,197,-400,419,-400v236,0,396,166,371,418r-143,0v15,-176,-68,-289,-236,-289v-144,0,-262,106,-262,246v0,95,85,195,260,290v158,86,307,191,311,413v4,237,-218,434,-460,434","w":977,"k":{"\u00c5":-38,"A":-38}},"T":{"d":"176,0r250,-1331r-342,0r25,-125r819,0r-23,125r-334,0r-256,1331r-139,0","w":786,"k":{"\u201e":149,"\u201a":149,"\u203a":167,"\u2039":188,"\u2018":-75,"\u201c":-75,"\u0153":167,"\u00bb":167,"\u00ab":188,"\u00f8":167,"\u00e6":167,"\u00c5":112,"y":131,"w":131,"u":167,"s":159,"r":131,"o":167,"e":167,"c":167,"a":167,"C":73,"A":112,";":131,":":131,".":225,"-":188,",":225}},"U":{"d":"481,29v-253,1,-411,-147,-411,-398v0,-38,8,-110,26,-206r166,-881r141,0r-184,948v-7,38,-12,78,-12,121v-1,184,106,288,291,287v105,0,185,-33,240,-100v55,-67,103,-200,141,-402r163,-854r142,0r-166,881v-39,193,-80,328,-125,403v-77,129,-212,200,-412,201","w":1186,"k":{"\u00c5":36,"A":36}},"V":{"d":"72,-1456r139,0r205,1247r684,-1247r151,0r-809,1456r-125,0","w":1096,"k":{"\u201e":264,"\u201a":264,"\u203a":159,"\u2039":225,"\u2019":-75,"\u2018":-114,"\u201d":-75,"\u201c":-114,"\u0153":120,"\u00bb":159,"\u00ab":225,"\u00f8":120,"\u00e6":120,"\u00c5":73,"y":36,"u":92,"o":120,"e":120,"a":120,"A":73,";":102,":":102,".":264,"-":167,",":264}},"W":{"d":"96,-1456r137,0r95,1302r598,-1302r123,0r88,1304r608,-1304r145,0r-688,1456r-176,0r-84,-1204r-553,1204r-176,0","w":1731,"k":{"\u201e":149,"\u201a":149,"\u203a":131,"\u2039":112,"\u2019":-94,"\u2018":-114,"\u201d":-94,"\u201c":-114,"\u0153":63,"\u00bb":131,"\u00ab":112,"\u00f8":63,"\u00e6":63,"\u00c5":36,"u":36,"r":45,"o":63,"e":63,"a":63,"A":36,";":45,":":45,".":178,"-":120,",":178}},"X":{"d":"-10,0r-168,0r643,-764r-320,-692r148,0r266,579r483,-579r166,0r-594,708r336,748r-149,0r-281,-629","w":1053,"k":{"\u201e":-114,"\u201a":-114,"\u2039":112,"\u2019":-38,"\u2018":-75,"\u201d":-38,"\u201c":-75,"\u0152":36,"\u00ab":112,"\u00d8":36,"\u00c5":-38,"e":73,"O":36,"C":36,"A":-38,"-":102}},"Y":{"d":"244,0r94,-481r-277,-975r158,0r221,799r523,-799r159,0r-637,977r-102,479r-139,0","w":948,"k":{"\u201e":225,"\u201a":225,"\u203a":188,"\u2039":225,"\u2019":-75,"\u2018":-114,"\u201d":-75,"\u201c":-114,"\u0153":112,"\u00bb":188,"\u00ab":225,"\u00f8":112,"\u00e6":112,"\u00c5":92,"u":112,"o":112,"i":36,"e":112,"a":112,"A":92,";":102,":":102,".":272,"-":167,",":272}},"Z":{"d":"-90,0r20,-133r990,-1198r-723,0r22,-125r907,0r-26,131r-989,1204r768,0r-23,121r-946,0","w":1014,"k":{"\u201e":-75,"\u201a":-75,"\u203a":36,"\u2039":73,"\u2019":-38,"\u2018":-75,"\u201d":-38,"\u201c":-75,"\u00bb":36,"\u00ab":73,"-":36}},"[":{"d":"-109,397r359,-1853r342,0r-25,133r-198,0r-310,1589r199,0r-27,131r-340,0","w":541},"\\":{"d":"301,190r-139,-1675r119,0r141,1675r-121,0","w":569},"]":{"d":"571,-1456r-358,1857r-340,0r25,-129r198,0r310,-1589r-201,0r26,-139r340,0","w":541},"^":{"d":"1094,-1458r530,557r-143,0r-457,-455r-459,455r-143,0r532,-557r140,0","w":2048},"_":{"d":"1024,383r0,100r-1024,0r0,-100r1024,0"},"`":{"d":"696,-1247r-88,0r-282,-350r147,0"},"a":{"d":"596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v224,1,364,85,447,235r41,-205r139,0r-211,1100r-145,0r18,-84v-101,65,-215,109,-366,111v-303,5,-533,-226,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43","w":1284},"b":{"d":"686,-1004v-258,0,-457,235,-457,502v0,292,251,488,539,383v183,-67,310,-244,315,-483v5,-234,-164,-402,-397,-402xm623,31v-225,-1,-363,-84,-447,-234r-43,203r-137,0r287,-1456r135,0r-88,459v96,-79,206,-129,364,-131v304,-6,539,226,533,530v-5,294,-160,495,-375,586v-71,30,-148,43,-229,43","w":1284},"c":{"d":"586,-92v217,-3,355,-126,424,-295r155,0v-86,244,-275,413,-579,418v-307,5,-539,-226,-533,-533v6,-298,166,-507,394,-592v192,-72,433,-38,567,78v91,78,151,184,176,322r-148,0v-25,-186,-170,-312,-378,-312v-265,0,-465,227,-465,498v0,241,151,418,387,416","w":1241},"d":{"d":"596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v225,2,362,87,453,235r111,-561r133,0r-287,1456r-145,0r24,-104v-97,77,-213,129,-370,131v-299,6,-529,-228,-523,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43","w":1284},"e":{"d":"1044,-629v-17,-221,-162,-380,-391,-379v-236,1,-400,171,-446,379r837,0xm573,-94v216,-3,338,-111,416,-273r160,0v-97,240,-265,391,-574,396v-305,5,-536,-226,-530,-531v6,-299,167,-506,395,-592v67,-25,140,-36,217,-36v339,-2,560,258,526,622r-993,0v-5,237,153,417,383,414","w":1241},"f":{"d":"293,-1100v32,-251,136,-377,409,-373r-24,117v-188,-2,-228,74,-254,256r180,0r-24,115r-183,0r-186,985r-133,0r190,-985r-176,0r27,-115r174,0","w":563,"k":{"\u201e":36,"\u201a":36,"\u2039":36,"\u2019":-141,"\u2018":-104,"\u201d":-141,"\u201c":-104,"\u00ab":36,"y":-38,"w":-38,"t":-38,".":73,"-":36,",":73}},"g":{"d":"659,-1130v224,1,364,85,447,235r39,-195r139,0r-187,955v-65,297,-88,419,-291,517v-175,85,-465,60,-602,-46v-86,-67,-140,-154,-157,-268r123,0v43,149,162,239,350,239v276,0,388,-139,424,-397v-94,70,-210,115,-362,117v-301,5,-533,-227,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43xm596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402","w":1284},"h":{"d":"912,-648v31,-203,-65,-347,-259,-343v-257,7,-357,163,-407,405r-119,586r-129,0r285,-1456r131,0r-92,461v94,-70,191,-122,329,-125v225,-5,402,142,400,360v0,90,-13,180,-29,260r-100,500r-136,0r113,-563v6,-30,9,-58,13,-85","w":1143},"i":{"d":"262,-1208r47,-248r131,0r-47,248r-131,0xm371,-1100r-213,1100r-131,0r215,-1100r129,0","w":412},"j":{"d":"-296,293v94,15,188,1,234,-55v34,-41,64,-113,85,-220r219,-1118r129,0r-217,1118v-31,154,-75,260,-130,322v-72,82,-211,109,-350,80xm262,-1208r47,-248r131,0r-47,248r-131,0","w":412},"k":{"d":"438,-1456r-186,964r579,-608r177,0r-504,522r356,578r-162,0r-297,-473r-192,199r-53,274r-131,0r282,-1456r131,0","w":938,"k":{"\u0153":36,"\u00f8":36,"\u00e6":36,"y":-38,"u":36,"o":36,"e":36,"a":36}},"l":{"d":"438,-1456r-282,1456r-131,0r282,-1456r131,0","w":412},"m":{"d":"912,-648v31,-203,-65,-347,-259,-343v-257,7,-357,163,-407,405r-119,586r-129,0r213,-1100r133,0r-22,105v94,-70,191,-125,329,-125v186,0,307,82,371,213v97,-126,224,-209,424,-213v223,-4,400,143,397,360v0,90,-11,181,-28,260r-101,500r-135,0r113,-564v11,-52,18,-104,18,-161v2,-166,-99,-269,-264,-266v-257,5,-359,163,-408,405r-116,586r-136,0r113,-563v6,-30,9,-58,13,-85","w":1929},"n":{"d":"912,-648v31,-203,-65,-347,-259,-343v-257,7,-357,163,-407,405r-119,586r-129,0r213,-1100r133,0r-22,105v94,-70,191,-122,329,-125v225,-5,402,142,400,360v0,90,-13,180,-29,260r-100,500r-136,0r113,-563v6,-30,9,-58,13,-85","w":1143,"k":{"\u201e":-75,"\u201a":-75,"\u2039":-38,"\u2019":112,"\u2018":188,"\u201d":112,"\u201c":188,"\u00ab":-38}},"o":{"d":"190,-492v0,275,258,479,540,372v184,-70,309,-246,314,-486v5,-237,-163,-406,-397,-406v-266,0,-457,241,-457,520xm565,31v-297,0,-525,-236,-520,-535v5,-306,172,-502,399,-592v68,-27,139,-39,213,-39v303,0,540,231,533,533v-6,294,-163,497,-380,588v-75,31,-156,45,-245,45","w":1241,"k":{"\u201e":-75,"\u201a":-75,"\u2018":188,"\u201c":188,"-":-75}},"p":{"d":"684,-1008v-258,0,-459,237,-459,504v0,292,254,485,541,380v184,-67,308,-242,313,-482v5,-235,-161,-402,-395,-402xm621,27v-226,-2,-362,-86,-453,-234r-111,563r-133,0r287,-1456r143,0r-26,111v89,-86,202,-138,364,-141v306,-5,539,225,533,530v-5,293,-161,494,-375,584v-70,29,-147,43,-229,43","w":1284},"q":{"d":"596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v224,1,364,85,447,235r39,-195r139,0r-285,1446r-135,0r88,-450v-99,72,-214,121,-368,123v-305,5,-535,-226,-529,-531v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43","w":1284},"r":{"d":"319,-1010v86,-83,195,-127,361,-123r-27,136v-240,0,-362,132,-403,344r-125,653r-129,0r213,-1100r129,0","w":635,"k":{"\u0111":36,"\u201e":120,"\u201a":120,"\u2039":112,"\u2019":-122,"\u201d":-122,"\u0153":36,"\u00ab":112,"\u00f8":36,"y":-75,"x":-38,"w":-75,"v":-75,"t":-38,"q":36,"o":36,"g":36,"e":36,"d":36,"c":36,".":206,"-":73,",":206}},"s":{"d":"319,31v-182,0,-324,-149,-298,-344r131,0v-4,121,69,215,182,215v99,0,186,-98,186,-199v0,-69,-64,-148,-172,-219v-92,-61,-151,-113,-179,-156v-28,-43,-42,-94,-42,-153v0,-169,133,-308,301,-308v172,0,287,120,266,305r-129,1v13,-104,-42,-181,-139,-181v-92,0,-164,72,-164,164v0,61,93,156,198,226v136,90,202,190,202,292v0,203,-143,357,-343,357","w":750},"t":{"d":"94,0r191,-977r-232,0r23,-123r231,0r70,-356r133,0r-70,356r232,0r-25,123r-231,0r-189,977r-133,0","w":573},"u":{"d":"214,-444v-30,204,66,347,259,342v259,-6,359,-161,408,-404r120,-594r129,0r-212,1100r-134,0r23,-104v-90,75,-190,130,-332,133v-226,4,-401,-142,-399,-361v0,-92,11,-181,28,-262r105,-506r133,0r-115,572v-6,30,-10,58,-13,84","w":1143},"v":{"d":"229,0r-221,-1100r148,0r170,924r499,-924r156,0r-608,1100r-144,0","w":887,"k":{".":159,",":159}},"w":{"d":"186,0r-161,-1100r145,0r113,914r440,-914r141,0r133,903r433,-903r143,0r-533,1100r-145,0r-129,-891r-434,891r-146,0","w":1497,"k":{"\u2019":-114,"\u2018":55,"\u201d":-114,"\u201c":55,".":149,",":149}},"x":{"d":"924,-1100r-449,539r262,561r-145,0r-207,-444r-367,444r-157,0r469,-557r-262,-543r147,0r203,426r352,-426r154,0","w":819},"y":{"d":"-41,356r277,-456r-189,-1000r127,0r158,846r508,-846r145,0r-881,1456r-145,0","w":877,"k":{"\u201e":149,"\u201a":149,"\u2019":-151,"\u2018":-38,"\u201d":-151,"\u201c":-38,".":178,"-":36,",":178}},"z":{"d":"-43,0r25,-129r698,-838r-535,0r27,-133r713,0r-23,119r-706,848r608,0r-25,133r-782,0","w":901},"{":{"d":"471,-1106v6,-291,57,-364,336,-371r47,0r0,107v-204,-3,-260,39,-260,254r0,242v-2,216,-39,293,-197,344v159,49,197,127,197,344r0,241v4,197,31,249,215,254r45,-2r0,107r-47,0v-281,-7,-330,-77,-336,-369r0,-244v4,-217,-83,-291,-297,-278r0,-109v212,13,297,-61,297,-278r0,-242"},"|":{"d":"567,-1565r0,2048r-108,0r0,-2048r108,0"},"}":{"d":"219,-1477v279,6,330,80,336,371r0,242v-4,217,83,291,297,278r0,109v-212,-13,-297,61,-297,278r0,244v-6,291,-56,362,-336,369r-47,0r0,-107v203,3,260,-38,260,-252r0,-241v3,-219,36,-294,197,-344v-160,-51,-197,-125,-197,-344r0,-242v-4,-198,-30,-251,-215,-256r-45,2r0,-107r47,0"},"~":{"d":"1143,-590v164,-8,261,-74,387,-160r0,113v-114,79,-225,135,-387,143v-142,7,-443,-145,-578,-137v-163,9,-259,74,-387,160r0,-113v117,-79,227,-136,387,-145v142,-8,442,145,578,139","w":1706},"\u00c4":{"d":"883,-586r-146,-770r-424,770r570,0xm-158,0r791,-1458r221,0r287,1458r-144,0r-88,-453r-667,0r-244,453r-156,0xm886,-1644r35,-164r142,0r-35,164r-142,0xm518,-1644r33,-164r143,0r-35,164r-141,0","w":1223},"\u00c5":{"d":"905,-1743v0,-121,-158,-196,-243,-103v-27,29,-44,63,-46,104v-3,75,68,143,144,143v79,0,145,-66,145,-144xm762,-1513v-126,0,-232,-104,-232,-230v0,-126,106,-231,232,-231v125,0,229,105,229,231v0,126,-103,230,-229,230xm883,-586r-146,-770r-424,770r570,0xm-158,0r791,-1458r221,0r287,1458r-144,0r-88,-453r-667,0r-244,453r-156,0","w":1223,"k":{"\u201e":-114,"\u201a":-114,"\u203a":36,"\u2039":73,"\u2019":243,"\u2018":264,"\u201d":243,"\u201c":264,"\u0152":36,"\u00bb":36,"\u00ab":73,"\u00d8":36,"y":-38,"w":-38,"v":-38,"Y":73,"V":36,"T":73,"S":-38,"Q":36,"O":36,"G":36,"C":36,";":-38,":":-38,"-":45}},"\u00c7":{"d":"727,29v-398,5,-676,-262,-676,-656v0,-404,209,-668,489,-792v245,-109,578,-74,765,69v119,90,197,212,231,371r-158,0v-63,-223,-235,-369,-510,-369v-316,0,-517,182,-612,418v-35,87,-51,180,-51,277v0,331,205,555,532,551v268,-3,443,-135,557,-318r166,0v-121,264,-372,445,-733,449xm920,266v3,172,-178,220,-354,184v-41,-8,-87,-19,-138,-34r27,-78v71,20,139,38,213,39v84,1,139,-33,139,-111v0,-89,-94,-87,-200,-88r61,-178r64,0r-37,111v131,-4,223,37,225,155","w":1540},"\u00c9":{"d":"-8,0r280,-1456r748,0r-25,135r-606,0r-100,518r604,0r-25,133r-606,0r-104,537r606,0r-27,133r-745,0xm621,-1597r-92,0r245,-350r146,0","w":1028},"\u00d1":{"d":"-10,0r282,-1456r154,0r629,1257r239,-1257r142,0r-283,1456r-152,0r-628,-1257r-244,1257r-139,0xm954,-1796v73,28,131,2,150,-61r80,0v-38,125,-111,210,-258,170v-47,-13,-87,-37,-140,-37v-49,0,-73,33,-90,74r-80,0v44,-122,98,-205,244,-175","w":1427},"\u00d6":{"d":"721,29v-398,0,-668,-265,-664,-662v4,-410,206,-676,503,-795v97,-39,204,-57,319,-57v399,0,665,268,665,668v0,493,-333,846,-823,846xm1397,-819v0,-317,-211,-534,-527,-529v-313,5,-514,179,-610,409v-38,91,-55,193,-55,304v0,317,209,526,524,526v395,0,668,-306,668,-710xm1036,-1644r35,-164r142,0r-35,164r-142,0xm668,-1644r33,-164r143,0r-35,164r-141,0","w":1602},"\u00dc":{"d":"481,29v-253,1,-411,-147,-411,-398v0,-38,8,-110,26,-206r166,-881r141,0r-184,948v-7,38,-12,78,-12,121v-1,184,106,288,291,287v105,0,185,-33,240,-100v55,-67,103,-200,141,-402r163,-854r142,0r-166,881v-39,193,-80,328,-125,403v-77,129,-212,200,-412,201xm862,-1644r35,-164r142,0r-35,164r-142,0xm494,-1644r33,-164r143,0r-35,164r-141,0","w":1186},"\u00e1":{"d":"596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v224,1,364,85,447,235r41,-205r139,0r-211,1100r-145,0r18,-84v-101,65,-215,109,-366,111v-303,5,-533,-226,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43xm727,-1247r-92,0r245,-350r146,0","w":1284},"\u00e0":{"d":"596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v224,1,364,85,447,235r41,-205r139,0r-211,1100r-145,0r18,-84v-101,65,-215,109,-366,111v-303,5,-533,-226,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43xm878,-1247r-88,0r-282,-350r147,0","w":1284},"\u00e2":{"d":"596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v224,1,364,85,447,235r41,-205r139,0r-211,1100r-145,0r18,-84v-101,65,-215,109,-366,111v-303,5,-533,-226,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43xm1034,-1247r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":1284},"\u00e4":{"d":"596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v224,1,364,85,447,235r41,-205r139,0r-211,1100r-145,0r18,-84v-101,65,-215,109,-366,111v-303,5,-533,-226,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43xm882,-1294r35,-164r142,0r-35,164r-142,0xm514,-1294r33,-164r143,0r-35,164r-141,0","w":1284},"\u00e3":{"d":"596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v224,1,364,85,447,235r41,-205r139,0r-211,1100r-145,0r18,-84v-101,65,-215,109,-366,111v-303,5,-533,-226,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43xm839,-1446v73,28,131,2,150,-61r80,0v-38,125,-111,210,-258,170v-47,-13,-87,-37,-140,-37v-49,0,-73,33,-90,74r-80,0v44,-122,98,-205,244,-175","w":1284},"\u00e5":{"d":"940,-1413v0,-121,-159,-192,-244,-102v-27,28,-43,61,-45,102v-3,76,68,145,144,145v78,0,145,-67,145,-145xm795,-1182v-126,0,-230,-103,-230,-229v0,-126,104,-231,230,-231v125,0,231,105,231,231v0,125,-105,229,-231,229xm596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm659,-1130v224,1,364,85,447,235r41,-205r139,0r-211,1100r-145,0r18,-84v-101,65,-215,109,-366,111v-303,5,-533,-226,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43","w":1284},"\u00e7":{"d":"586,-92v217,-3,355,-126,424,-295r155,0v-86,244,-275,413,-579,418v-307,5,-539,-226,-533,-533v6,-298,166,-507,394,-592v192,-72,433,-38,567,78v91,78,151,184,176,322r-148,0v-25,-186,-170,-312,-378,-312v-265,0,-465,227,-465,498v0,241,151,418,387,416xm778,266v3,172,-178,220,-354,184v-41,-8,-87,-19,-138,-34r27,-78v71,20,139,38,213,39v84,1,139,-33,139,-111v0,-89,-94,-87,-200,-88r61,-178r64,0r-37,111v131,-4,223,37,225,155","w":1241},"\u00e9":{"d":"1044,-629v-17,-221,-162,-380,-391,-379v-236,1,-400,171,-446,379r837,0xm573,-94v216,-3,338,-111,416,-273r160,0v-97,240,-265,391,-574,396v-305,5,-536,-226,-530,-531v6,-299,167,-506,395,-592v67,-25,140,-36,217,-36v339,-2,560,258,526,622r-993,0v-5,237,153,417,383,414xm660,-1247r-92,0r245,-350r146,0","w":1241},"\u00e8":{"d":"1044,-629v-17,-221,-162,-380,-391,-379v-236,1,-400,171,-446,379r837,0xm573,-94v216,-3,338,-111,416,-273r160,0v-97,240,-265,391,-574,396v-305,5,-536,-226,-530,-531v6,-299,167,-506,395,-592v67,-25,140,-36,217,-36v339,-2,560,258,526,622r-993,0v-5,237,153,417,383,414xm811,-1247r-88,0r-282,-350r147,0","w":1241},"\u00ea":{"d":"1044,-629v-17,-221,-162,-380,-391,-379v-236,1,-400,171,-446,379r837,0xm573,-94v216,-3,338,-111,416,-273r160,0v-97,240,-265,391,-574,396v-305,5,-536,-226,-530,-531v6,-299,167,-506,395,-592v67,-25,140,-36,217,-36v339,-2,560,258,526,622r-993,0v-5,237,153,417,383,414xm967,-1247r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":1241},"\u00eb":{"d":"1044,-629v-17,-221,-162,-380,-391,-379v-236,1,-400,171,-446,379r837,0xm573,-94v216,-3,338,-111,416,-273r160,0v-97,240,-265,391,-574,396v-305,5,-536,-226,-530,-531v6,-299,167,-506,395,-592v67,-25,140,-36,217,-36v339,-2,560,258,526,622r-993,0v-5,237,153,417,383,414xm815,-1294r35,-164r142,0r-35,164r-142,0xm447,-1294r33,-164r143,0r-35,164r-141,0","w":1241},"\u00ed":{"d":"371,-1100r-213,1100r-131,0r215,-1100r129,0xm291,-1247r-92,0r245,-350r146,0","w":412},"\u00ec":{"d":"371,-1100r-213,1100r-131,0r215,-1100r129,0xm442,-1247r-88,0r-282,-350r147,0","w":412},"\u00ee":{"d":"371,-1100r-213,1100r-131,0r215,-1100r129,0xm598,-1247r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":412},"\u00ef":{"d":"371,-1100r-213,1100r-131,0r215,-1100r129,0xm446,-1294r35,-164r142,0r-35,164r-142,0xm78,-1294r33,-164r143,0r-35,164r-141,0","w":412},"\u00f1":{"d":"912,-648v31,-203,-65,-347,-259,-343v-257,7,-357,163,-407,405r-119,586r-129,0r213,-1100r133,0r-22,105v94,-70,191,-122,329,-125v225,-5,402,142,400,360v0,90,-13,180,-29,260r-100,500r-136,0r113,-563v6,-30,9,-58,13,-85xm755,-1446v73,28,131,2,150,-61r80,0v-38,125,-111,210,-258,170v-47,-13,-87,-37,-140,-37v-49,0,-73,33,-90,74r-80,0v44,-122,98,-205,244,-175","w":1143},"\u00f3":{"d":"190,-492v0,275,258,479,540,372v184,-70,309,-246,314,-486v5,-237,-163,-406,-397,-406v-266,0,-457,241,-457,520xm565,31v-297,0,-525,-236,-520,-535v5,-306,172,-502,399,-592v68,-27,139,-39,213,-39v303,0,540,231,533,533v-6,294,-163,497,-380,588v-75,31,-156,45,-245,45xm660,-1247r-92,0r245,-350r146,0","w":1241},"\u00f2":{"d":"190,-492v0,275,258,479,540,372v184,-70,309,-246,314,-486v5,-237,-163,-406,-397,-406v-266,0,-457,241,-457,520xm565,31v-297,0,-525,-236,-520,-535v5,-306,172,-502,399,-592v68,-27,139,-39,213,-39v303,0,540,231,533,533v-6,294,-163,497,-380,588v-75,31,-156,45,-245,45xm811,-1247r-88,0r-282,-350r147,0","w":1241},"\u00f4":{"d":"190,-492v0,275,258,479,540,372v184,-70,309,-246,314,-486v5,-237,-163,-406,-397,-406v-266,0,-457,241,-457,520xm565,31v-297,0,-525,-236,-520,-535v5,-306,172,-502,399,-592v68,-27,139,-39,213,-39v303,0,540,231,533,533v-6,294,-163,497,-380,588v-75,31,-156,45,-245,45xm967,-1247r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":1241},"\u00f6":{"d":"190,-492v0,275,258,479,540,372v184,-70,309,-246,314,-486v5,-237,-163,-406,-397,-406v-266,0,-457,241,-457,520xm565,31v-297,0,-525,-236,-520,-535v5,-306,172,-502,399,-592v68,-27,139,-39,213,-39v303,0,540,231,533,533v-6,294,-163,497,-380,588v-75,31,-156,45,-245,45xm815,-1294r35,-164r142,0r-35,164r-142,0xm447,-1294r33,-164r143,0r-35,164r-141,0","w":1241},"\u00f5":{"d":"190,-492v0,275,258,479,540,372v184,-70,309,-246,314,-486v5,-237,-163,-406,-397,-406v-266,0,-457,241,-457,520xm565,31v-297,0,-525,-236,-520,-535v5,-306,172,-502,399,-592v68,-27,139,-39,213,-39v303,0,540,231,533,533v-6,294,-163,497,-380,588v-75,31,-156,45,-245,45xm772,-1446v73,28,131,2,150,-61r80,0v-38,125,-111,210,-258,170v-47,-13,-87,-37,-140,-37v-49,0,-73,33,-90,74r-80,0v44,-122,98,-205,244,-175","w":1241},"\u00fa":{"d":"214,-444v-30,204,66,347,259,342v259,-6,359,-161,408,-404r120,-594r129,0r-212,1100r-134,0r23,-104v-90,75,-190,130,-332,133v-226,4,-401,-142,-399,-361v0,-92,11,-181,28,-262r105,-506r133,0r-115,572v-6,30,-10,58,-13,84xm654,-1247r-92,0r245,-350r146,0","w":1143},"\u00f9":{"d":"214,-444v-30,204,66,347,259,342v259,-6,359,-161,408,-404r120,-594r129,0r-212,1100r-134,0r23,-104v-90,75,-190,130,-332,133v-226,4,-401,-142,-399,-361v0,-92,11,-181,28,-262r105,-506r133,0r-115,572v-6,30,-10,58,-13,84xm805,-1247r-88,0r-282,-350r147,0","w":1143},"\u00fb":{"d":"214,-444v-30,204,66,347,259,342v259,-6,359,-161,408,-404r120,-594r129,0r-212,1100r-134,0r23,-104v-90,75,-190,130,-332,133v-226,4,-401,-142,-399,-361v0,-92,11,-181,28,-262r105,-506r133,0r-115,572v-6,30,-10,58,-13,84xm961,-1247r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":1143},"\u00fc":{"d":"214,-444v-30,204,66,347,259,342v259,-6,359,-161,408,-404r120,-594r129,0r-212,1100r-134,0r23,-104v-90,75,-190,130,-332,133v-226,4,-401,-142,-399,-361v0,-92,11,-181,28,-262r105,-506r133,0r-115,572v-6,30,-10,58,-13,84xm809,-1294r35,-164r142,0r-35,164r-142,0xm441,-1294r33,-164r143,0r-35,164r-141,0","w":1143},"\u2020":{"d":"291,229r196,-1140r-342,0r25,-119r346,0r68,-424r141,0r-68,424r340,0r-20,119r-344,0r-199,1140r-143,0"},"\u00b0":{"d":"338,-967v113,0,207,-94,207,-207v0,-112,-95,-208,-207,-208v-111,0,-209,97,-209,208v0,113,96,207,209,207xm59,-1174v0,-151,128,-278,279,-278v149,0,276,129,276,278v0,149,-129,279,-278,279v-152,0,-277,-127,-277,-279","w":674},"\u00a2":{"d":"1087,-563v-86,254,-255,412,-569,416r-45,227r-115,0r45,-242v-216,-61,-370,-251,-370,-516v0,-288,151,-497,365,-583v67,-27,142,-38,227,-37r41,-209r114,0r-41,219v206,48,332,199,371,418r-139,0v-24,-177,-166,-312,-361,-312v-253,0,-438,234,-438,498v0,236,140,417,367,414v207,-2,337,-128,401,-293r147,0","w":1157},"\u00a3":{"d":"569,-135v238,-2,355,-149,379,-379r123,0v-8,234,-124,402,-284,472v-66,29,-167,42,-300,42r-559,0r25,-135r211,0v105,-92,188,-171,188,-330v0,-87,-25,-159,-55,-235r-238,0r27,-131r168,0v-21,-71,-38,-141,-39,-222v-4,-254,198,-432,457,-432v279,0,452,158,462,426r-137,0v-12,-185,-129,-293,-325,-293v-185,0,-327,138,-324,322v2,76,24,133,51,199r492,0r-25,131r-432,0v29,76,53,146,53,233v0,144,-68,235,-149,332r231,0","w":1157},"\u00a7":{"d":"391,-942v-92,43,-188,159,-112,268v71,102,237,227,337,322v76,-44,140,-102,148,-199v4,-47,-61,-120,-125,-176xm745,-92v2,185,-159,313,-352,313v-208,0,-340,-126,-338,-334r148,0v-4,127,65,208,186,209v106,1,199,-69,195,-170v-4,-109,-63,-163,-138,-227v-97,-85,-234,-178,-298,-283v-28,-46,-42,-92,-42,-139v0,-146,94,-229,207,-289v-23,-48,-40,-96,-41,-159v-3,-187,149,-316,340,-316v200,0,327,124,308,332r-138,0v7,-125,-58,-205,-172,-209v-140,-5,-236,141,-154,258v86,122,336,264,416,398v27,45,41,93,41,143v0,148,-99,239,-217,293v30,53,48,106,49,180"},"\u2022":{"d":"602,-465v-160,0,-295,-138,-295,-297v0,-160,138,-295,297,-295v158,0,295,137,295,295v0,158,-139,297,-297,297","w":1208},"\u00b6":{"d":"84,-1130v-1,-215,169,-349,393,-349r463,0r0,70r-127,0r0,1409r-82,0r0,-1409r-186,0r0,1409r-84,0r0,-782v-216,-6,-376,-136,-377,-348"},"\u00df":{"d":"868,-1128v1,-132,-102,-232,-235,-228v-198,6,-276,152,-314,346r-118,607r92,4v-8,169,103,295,260,297v157,2,280,-135,278,-295v-3,-210,-158,-305,-389,-295r23,-117v225,22,401,-115,403,-319xm551,31v-205,-3,-326,-106,-381,-269r-47,238r-131,0r215,-1090v42,-227,189,-383,440,-387v200,-3,362,154,359,353v-3,194,-106,324,-254,381v137,39,222,151,225,321v4,249,-182,456,-426,453","w":1085,"k":{"\u201e":-75,"\u201a":-75,"\u2019":36,"\u2018":73,"\u201d":36,"\u201c":73,"-":-38}},"\u00ae":{"d":"1092,-915v0,-130,-94,-156,-242,-156r-158,0r0,303r158,0v153,-3,242,-17,242,-147xm1223,-924v3,124,-86,208,-199,222r188,389r-145,0r-178,-371r-197,0r0,371r-127,0r0,-844r309,0v209,1,345,50,349,233xm1458,-470v65,-152,63,-350,-1,-504v-95,-227,-297,-402,-605,-402v-307,0,-504,184,-600,404v-68,156,-70,340,-2,496v96,222,298,404,602,404v302,0,511,-176,606,-398xm572,-1402v173,-74,394,-73,566,1v250,107,447,333,447,678v0,349,-204,568,-453,677v-176,77,-385,76,-560,0v-248,-108,-451,-334,-451,-677v0,-338,202,-572,451,-679","w":1706},"\u00a9":{"d":"469,-727v0,-255,148,-449,391,-449v174,0,316,105,330,261r-117,0v-21,-101,-99,-168,-217,-168v-182,0,-258,159,-258,362v0,197,80,352,258,354v123,2,211,-79,229,-188r115,0v-12,167,-165,287,-350,285v-249,-2,-381,-193,-381,-457xm1458,-472v65,-154,64,-348,-2,-502v-96,-226,-296,-402,-604,-402v-308,0,-505,183,-601,404v-68,156,-69,340,-1,496v96,222,298,404,602,404v302,0,511,-176,606,-400xm572,-1402v173,-74,390,-72,564,2v251,107,449,331,449,677v0,349,-204,568,-453,677v-176,77,-382,76,-558,0v-249,-108,-453,-333,-453,-677v0,-339,202,-572,451,-679","w":1706},"\u2122":{"d":"938,-1454r166,422r156,-422r116,0r0,530r-71,0r0,-467r-177,467r-49,0r-186,-467r0,467r-72,0r0,-530r117,0xm694,-1454r0,57r-172,0r0,473r-82,0r0,-473r-176,0r0,-57r430,0","w":1706},"\u00b4":{"d":"545,-1247r-92,0r245,-350r146,0"},"\u00a8":{"d":"700,-1294r35,-164r142,0r-35,164r-142,0xm332,-1294r33,-164r143,0r-35,164r-141,0"},"\u2260":{"d":"1288,-1110r-205,264r369,0r0,96r-432,0r-215,277r647,0r0,98r-709,0r-254,324r-73,-60r205,-264r-367,0r0,-98r428,0r215,-277r-643,0r0,-96r707,0r253,-323","w":1706},"\u00c6":{"d":"852,-586r137,-735r-80,0r-512,735r455,0xm307,-453r-309,453r-156,0r1010,-1456r915,0r-26,135r-606,0r-101,518r606,0r-26,133r-604,0r-105,537r604,0r-24,133r-748,0r88,-453r-518,0","w":1782,"k":{"\u201e":-38,"\u201a":-38,"\u203a":112,"\u2019":92,"\u201d":92,"\u00bb":112,"-":-38}},"\u00d8":{"d":"393,-211v121,110,401,132,585,59v250,-100,419,-321,419,-665v0,-148,-36,-254,-103,-338xm866,-1348v-446,-6,-758,431,-636,906v14,55,44,104,79,149r899,-946v-81,-70,-195,-107,-342,-109xm1043,-28v-241,95,-595,69,-750,-78r-193,202r-86,-78r193,-206v-94,-114,-150,-257,-150,-455v0,-375,183,-621,433,-755v243,-130,644,-111,823,52r172,-180r88,78r-178,184v91,119,149,256,149,451v0,403,-203,667,-501,785","w":1602,"k":{"\u201e":112,"\u201a":112,"\u2019":36,"\u2018":112,"\u201d":36,"\u201c":112,"Y":55,"X":36,"V":36,";":-38,":":-38,".":83,"-":-57,",":83}},"\u221e":{"d":"1419,-627v0,-139,-88,-263,-219,-262v-57,0,-109,25,-155,74v-46,49,-95,135,-148,256v59,112,135,195,281,199v143,4,241,-119,241,-267xm289,-600v0,137,90,263,219,262v58,0,110,-25,156,-75v46,-50,96,-135,147,-255v-60,-112,-134,-192,-281,-196v-143,-4,-241,118,-241,264xm233,-612v0,-204,106,-376,293,-377v65,0,122,21,172,64v50,43,96,111,140,204v48,-96,98,-165,149,-206v51,-41,112,-62,182,-62v174,-1,306,183,306,373v0,204,-106,377,-293,378v-63,0,-119,-20,-168,-60v-49,-40,-97,-109,-146,-204v-47,93,-97,160,-148,202v-51,42,-109,62,-173,62v-184,2,-314,-178,-314,-374","w":1706},"\u00b1":{"d":"1452,-150r0,99r-1198,0r0,-99r1198,0xm903,-1169r0,348r549,0r0,98r-549,0r0,348r-98,0r0,-348r-551,0r0,-98r551,0r0,-348r98,0","w":1706},"\u2264":{"d":"1442,-139r0,98r-1178,0r0,-98r1178,0xm1442,-1075r-1010,338r1010,336r0,106r-1178,-401r0,-84r1178,-402r0,107","w":1706},"\u2265":{"d":"1442,-139r0,98r-1178,0r0,-98r1178,0xm1442,-780r0,84r-1178,401r0,-106r1010,-336r-1010,-338r0,-107","w":1706},"\u00a5":{"d":"348,0r109,-557r-377,0r22,-111r318,0r-53,-168r-232,0r21,-110r174,0r-162,-502r156,0r225,768r514,-768r160,0r-349,502r177,0r-23,110r-231,0r-115,168r313,0r-20,111r-369,0r-119,557r-139,0","w":1157},"\u00b5":{"d":"412,25v-132,0,-222,-62,-269,-156r-114,557r-140,0r316,-1491r139,0r-125,592v-9,46,-16,89,-16,139v-1,151,77,244,225,244v83,0,155,-36,215,-108v60,-72,104,-175,133,-310r121,-557r139,0r-181,855v-20,79,13,129,99,112r-20,110v-25,6,-55,11,-86,11v-100,0,-140,-55,-137,-160v-51,96,-157,162,-299,162","w":1110},"\u2202":{"d":"496,-788v147,2,216,76,256,196v25,-168,46,-423,-16,-551v-51,-106,-148,-111,-223,-15v-37,47,-73,68,-103,68v-39,0,-75,-30,-74,-67v1,-92,114,-152,219,-152v110,0,201,49,264,151v232,376,50,1185,-370,1185v-199,0,-324,-174,-324,-385v0,-221,162,-433,371,-430xm272,-274v0,150,44,251,179,251v75,0,137,-41,186,-125v49,-84,74,-189,74,-315v0,-151,-44,-258,-179,-258v-75,0,-137,42,-186,125v-49,83,-74,190,-74,322","w":1034},"\u2211":{"d":"49,-1473r1223,0r0,144r-1014,0r705,766r-740,813r1057,0r0,143r-1266,0r0,-133r744,-821r-709,-772r0,-140","w":1317},"\u220f":{"d":"160,-1473r1188,0r0,1866r-168,0r0,-1718r-852,0r0,1718r-168,0r0,-1866","w":1509},"\u03c0":{"d":"-4,-813v37,-187,88,-252,303,-252r848,0r-27,121r-182,0r-115,541v-14,68,-25,128,-30,188v-10,116,105,115,202,97r-26,118v-32,9,-65,16,-101,16v-131,1,-219,-73,-213,-202v10,-240,99,-520,142,-758r-365,0r-199,944r-139,0r199,-944v-109,-8,-153,36,-166,131r-131,0","w":1171},"\u222b":{"d":"45,244v0,-91,101,-140,175,-94v26,16,43,40,47,84v3,25,11,38,26,38v69,0,111,-238,117,-713v4,-348,31,-732,102,-895v61,-140,147,-212,268,-212v87,0,158,51,158,133v0,64,-42,105,-107,104v-52,0,-86,-23,-103,-69v-17,-46,-28,-70,-34,-70v-70,0,-110,208,-116,623v-5,376,-29,814,-108,992v-60,136,-146,206,-267,206v-84,0,-158,-49,-158,-127","w":985},"\u00aa":{"d":"446,-754v190,0,345,-158,345,-350v0,-211,-194,-340,-405,-268v-135,46,-231,165,-234,338v-3,168,123,280,294,280xm496,-1477v164,0,271,58,333,164r31,-143r105,0r-158,770r-109,0r13,-59v-76,46,-163,75,-275,77v-221,4,-399,-153,-395,-370v4,-210,123,-346,281,-408v54,-21,112,-31,174,-31","w":963},"\u00ba":{"d":"143,-1030v0,199,200,332,406,259v135,-49,231,-167,235,-339v4,-171,-126,-285,-299,-285v-195,0,-342,164,-342,365xm424,-666v-217,0,-393,-158,-389,-372v3,-219,131,-355,298,-416v276,-100,568,75,560,346v-6,210,-122,349,-283,411v-56,22,-119,31,-186,31","w":932},"\u03a9":{"d":"1460,-786v-7,312,-141,490,-342,647r344,0r0,139r-581,0r0,-127v236,-142,411,-340,419,-668v8,-326,-198,-581,-509,-581v-312,0,-519,254,-512,579v8,327,184,532,419,670r0,127r-581,0r0,-139r344,0v-200,-155,-333,-334,-340,-645v-9,-407,275,-729,670,-729v393,0,679,322,669,727","w":1579},"\u00e6":{"d":"1548,29v-219,0,-354,-86,-446,-228r-41,213r-141,0r28,-120v-98,80,-211,132,-373,135v-304,5,-536,-227,-530,-531v6,-293,162,-495,377,-585v71,-30,148,-43,229,-43v223,1,364,86,447,235r37,-195r139,0r-33,117v91,-94,217,-156,389,-157v338,-2,558,259,524,622r-993,0v-15,240,157,414,379,414v218,0,340,-111,420,-273r160,0v-96,239,-266,396,-572,396xm2015,-629v-18,-220,-160,-380,-389,-379v-235,1,-402,172,-448,379r837,0xm588,-94v259,0,456,-237,456,-504v0,-237,-153,-415,-385,-410v-218,5,-349,128,-421,286v-32,71,-48,146,-48,224v0,235,165,404,398,404","w":2214},"\u00f8":{"d":"662,-1006v-306,-3,-536,289,-456,622v10,41,25,83,46,124r625,-680v-54,-40,-126,-66,-215,-66xm330,-176v82,87,273,101,409,50v208,-78,359,-336,285,-618v-11,-44,-34,-83,-63,-120xm817,-16v-189,81,-446,47,-575,-64r-203,223r-82,-84r205,-219v-116,-139,-154,-399,-66,-597v91,-204,277,-371,568,-371v127,0,221,33,303,88r143,-156r84,74r-141,157v81,92,135,205,135,365v0,293,-154,493,-371,584","w":1241,"k":{"\u201e":-75,"\u201a":-75,"\u2018":188,"\u201c":188,"-":-75}},"\u00bf":{"d":"393,29v-284,7,-467,-210,-385,-493v58,-201,318,-274,413,-452v27,-51,47,-106,56,-169r141,0v-25,244,-144,353,-306,471v-89,66,-118,93,-152,174v-74,174,56,347,235,342v200,-5,320,-139,355,-320r143,0v-47,257,-217,440,-500,447xm690,-1456r-43,229r-141,0r45,-229r139,0","w":948},"\u00a1":{"d":"432,-1081r-209,1081r-143,0r209,-1081r143,0xm506,-1456r-45,227r-144,0r45,-227r144,0","w":588},"\u00ac":{"d":"1452,-858r0,502r-96,0r0,-402r-1102,0r0,-100r1198,0","w":1706},"\u221a":{"d":"1276,-1636r0,71r-125,0r-594,1606r-41,0r-328,-899r-114,39r-19,-58r246,-86r272,746r525,-1419r178,0","w":1276},"\u0192":{"d":"154,287v87,7,180,-7,216,-43v31,-31,51,-83,58,-162r72,-834r-256,0r12,-133r256,0r21,-229v21,-293,141,-384,427,-365r-12,129v-213,2,-257,18,-276,228r-21,237r258,0r-12,133r-258,0r-70,799v-25,279,-129,377,-428,373","w":1157},"\u2248":{"d":"1143,-422v169,-11,254,-69,387,-158r0,111v-118,80,-225,134,-387,145v-117,8,-463,-148,-578,-139v-166,13,-252,72,-387,160r0,-111v118,-80,225,-133,387,-145v122,-9,465,144,578,137xm1143,-760v170,-11,249,-68,387,-158r0,111v-116,81,-224,134,-387,145v-119,8,-462,-148,-578,-139v-166,12,-252,72,-387,160r0,-113v116,-79,227,-133,387,-145v122,-9,465,147,578,139","w":1706},"\u2206":{"d":"1139,-139r-467,-1186r-465,1186r932,0xm766,-1473r590,1473r-1366,0r590,-1473r186,0","w":1346},"\u00ab":{"d":"596,-231r-211,-320r281,-317r131,0r-275,317r205,320r-131,0xm293,-231r-211,-320r280,-317r132,0r-275,317r205,320r-131,0","w":934,"k":{"Y":149,"W":112,"V":112,"T":112,"J":-38}},"\u00bb":{"d":"96,-236r271,-325r-203,-303r139,0r197,303r-267,325r-137,0xm383,-236r272,-325r-202,-303r139,0r194,303r-264,325r-139,0","w":934,"k":{"\u00c5":73,"Y":206,"X":112,"W":112,"V":188,"T":188,"J":-38,"A":73}},"\u2026":{"d":"145,0r45,-233r142,0r-43,233r-144,0xm827,0r45,-233r142,0r-43,233r-144,0xm1511,0r45,-233r142,0r-43,233r-144,0","w":2048},"\u00a0":{"w":1157},"\u00c0":{"d":"883,-586r-146,-770r-424,770r570,0xm-158,0r791,-1458r221,0r287,1458r-144,0r-88,-453r-667,0r-244,453r-156,0xm882,-1597r-88,0r-282,-350r147,0","w":1223},"\u00c3":{"d":"883,-586r-146,-770r-424,770r570,0xm-158,0r791,-1458r221,0r287,1458r-144,0r-88,-453r-667,0r-244,453r-156,0xm843,-1796v73,28,131,2,150,-61r80,0v-38,125,-111,210,-258,170v-47,-13,-87,-37,-140,-37v-49,0,-73,33,-90,74r-80,0v44,-122,98,-205,244,-175","w":1223},"\u00d5":{"d":"721,29v-398,0,-668,-265,-664,-662v4,-410,206,-676,503,-795v97,-39,204,-57,319,-57v399,0,665,268,665,668v0,493,-333,846,-823,846xm1397,-819v0,-317,-211,-534,-527,-529v-313,5,-514,179,-610,409v-38,91,-55,193,-55,304v0,317,209,526,524,526v395,0,668,-306,668,-710xm993,-1796v73,28,131,2,150,-61r80,0v-38,125,-111,210,-258,170v-47,-13,-87,-37,-140,-37v-49,0,-73,33,-90,74r-80,0v44,-122,98,-205,244,-175","w":1602},"\u0152":{"d":"868,-1348v-393,0,-663,311,-663,713v0,315,210,529,524,529v395,0,670,-310,670,-713v0,-320,-211,-529,-531,-529xm870,-1485v301,1,494,121,596,330r62,-301r747,0r-24,135r-606,0r-103,518r606,0r-24,133r-606,0r-105,537r606,0r-26,133r-746,0r35,-170v-149,121,-314,198,-559,201v-396,6,-671,-270,-666,-666v4,-382,178,-630,432,-762v115,-60,242,-88,381,-88","w":2286},"\u0153":{"d":"2017,-629v-15,-220,-163,-381,-391,-379v-237,2,-397,171,-448,379r839,0xm1532,29v-226,0,-366,-107,-451,-267v-111,160,-256,263,-501,267v-307,6,-540,-224,-533,-531v7,-297,169,-507,399,-592v69,-25,145,-36,226,-36v220,1,377,113,454,270v113,-160,260,-267,504,-270v338,-4,561,258,526,622r-993,0v-15,240,155,414,377,414v217,0,344,-111,422,-273r160,0v-99,244,-272,396,-590,396xm193,-502v0,235,152,412,382,408v221,-4,350,-125,422,-283v79,-173,59,-396,-62,-516v-74,-74,-167,-114,-282,-115v-263,-5,-460,235,-460,506","w":2214},"\u2013":{"d":"1024,-604r-23,112r-1001,0r23,-112r1001,0"},"\u2014":{"d":"2071,-604r-23,112r-2048,0r23,-112r2048,0","w":2048},"\u201c":{"d":"272,-1073r-73,-383r133,0r74,383r-134,0xm567,-1073r-73,-383r133,0r75,383r-135,0","w":692,"k":{"\uf002":-57,"\uf001":-57,"\u0152":-65,"\u00d8":-65,"\u00c6":282,"\u00c5":235,"y":-122,"w":-133,"r":-75,"f":-57,"Z":36,"Y":-65,"W":-86,"V":-94,"T":-38,"O":-65,"J":272,"A":235}},"\u201d":{"d":"420,-1071r239,-385r144,0r-240,385r-143,0xm102,-1071r240,-385r143,0r-239,385r-144,0","w":692},"\u2018":{"d":"270,-1073r-73,-383r133,0r76,383r-136,0","w":397,"k":{"\uf002":-57,"\uf001":-57,"\u0152":-65,"\u00d8":-65,"\u00c6":282,"\u00c5":235,"y":-122,"w":-133,"r":-75,"f":-57,"Z":36,"Y":-65,"W":-86,"V":-94,"T":-38,"O":-65,"J":272,"A":235}},"\u2019":{"d":"113,-1071r239,-385r144,0r-240,385r-143,0","w":397},"\u00f7":{"d":"748,-258v0,-57,49,-107,106,-107v59,0,107,49,107,107v0,58,-49,106,-107,106v-58,0,-106,-48,-106,-106xm1452,-659r0,98r-1198,0r0,-98r1198,0xm748,-963v0,-57,50,-108,106,-108v57,0,107,51,107,108v0,59,-49,107,-107,107v-59,0,-106,-47,-106,-107","w":1706},"\u25ca":{"d":"506,-1409r-385,817r385,825r385,-825xm506,-1653r500,1061r-500,1069r-500,-1069","w":1012},"\u00ff":{"d":"-41,356r277,-456r-189,-1000r127,0r158,846r508,-846r145,0r-881,1456r-145,0xm626,-1294r35,-164r142,0r-35,164r-142,0xm258,-1294r33,-164r143,0r-35,164r-141,0","w":877},"\u0178":{"d":"244,0r94,-481r-277,-975r158,0r221,799r523,-799r159,0r-637,977r-102,479r-139,0xm766,-1644r35,-164r142,0r-35,164r-142,0xm398,-1644r33,-164r143,0r-35,164r-141,0","w":948},"\u2215":{"d":"563,-1485r119,0r-903,1516r-121,0","w":342},"\u00a4":{"d":"1047,-1071v1,-181,-136,-283,-322,-283v-287,0,-352,172,-399,432r643,0r-27,111r-637,0r-33,168r635,0r-26,111r-631,0v-10,57,-21,109,-21,167v0,169,143,268,322,265v215,-3,305,-87,360,-262r144,0v-64,237,-218,390,-500,393v-282,3,-464,-145,-463,-418v0,-52,6,-96,17,-143r-117,0r26,-111r111,0r35,-170r-121,0r27,-111r114,0v32,-183,95,-348,196,-445v159,-152,520,-156,680,-9v82,75,126,175,126,305r-139,0","w":1157},"\u2039":{"d":"293,-231r-211,-320r280,-317r132,0r-275,317r205,320r-131,0","w":631,"k":{"Y":149,"W":112,"V":112,"T":112,"J":-38}},"\u203a":{"d":"96,-236r271,-325r-203,-303r139,0r197,303r-267,325r-137,0","w":631,"k":{"\u00c5":73,"Y":206,"X":112,"W":112,"V":188,"T":188,"J":-38,"A":73}},"\uf001":{"d":"922,-1100r-213,1100r-131,0r213,-1100r131,0xm811,-1208r49,-248r131,0r-49,248r-131,0xm293,-1100v32,-251,136,-377,409,-373r-24,117v-188,-2,-228,74,-254,256r180,0r-24,115r-183,0r-186,985r-133,0r190,-985r-176,0r27,-115r174,0","w":979},"\uf002":{"d":"991,-1456r-282,1456r-131,0r282,-1456r131,0xm293,-1100v32,-251,136,-377,409,-373r-24,117v-188,-2,-228,74,-254,256r180,0r-24,115r-183,0r-186,985r-133,0r190,-985r-176,0r27,-115r174,0","w":979},"\u2021":{"d":"270,229r70,-422r-342,0r25,-118r346,0r98,-600r-342,0r25,-119r346,0r69,-424r140,0r-66,424r338,0r-21,119r-342,0r-104,600r340,0r-21,118r-344,0r-71,422r-144,0"},"\u00b7":{"d":"291,-635v-50,0,-92,-42,-92,-92v0,-50,42,-94,92,-94v49,0,94,45,94,94v0,50,-44,92,-94,92","w":578},"\u201a":{"d":"-164,147r254,-376r156,0r-254,376r-156,0","w":397,"k":{"\u00d0":-38,"\u0141":-38,"\uf002":36,"\uf001":36,"\u0152":112,"\u00d8":112,"\u00c6":-151,"\u00df":-38,"\u00c5":-114,"y":36,"w":83,"f":36,"Z":-75,"Y":188,"X":-86,"W":139,"V":225,"T":131,"R":-38,"P":-38,"O":112,"L":-38,"K":-38,"J":-114,"H":-38,"G":73,"F":-38,"D":-38,"C":112,"B":-38,"A":-114}},"\u201e":{"d":"154,147r254,-376r155,0r-254,376r-155,0xm-164,147r254,-376r156,0r-254,376r-156,0","w":692,"k":{"\u00d0":-38,"\u0141":-38,"\uf002":36,"\uf001":36,"\u0152":112,"\u00d8":112,"\u00c6":-151,"\u00df":-38,"\u00c5":-114,"y":36,"w":83,"f":36,"Z":-75,"Y":188,"X":-86,"W":139,"V":225,"T":131,"R":-38,"P":-38,"O":112,"L":-38,"K":-38,"J":-114,"H":-38,"G":73,"F":-38,"D":-38,"C":112,"B":-38,"A":-114}},"\u2030":{"d":"2243,-555v-123,0,-228,105,-228,227v0,124,104,226,228,226v123,0,227,-103,227,-226v0,-123,-104,-227,-227,-227xm1993,-76v-83,-75,-140,-246,-78,-392v53,-123,163,-220,332,-220v168,0,279,97,331,220v62,145,2,314,-77,392v-85,84,-251,138,-393,78v-44,-18,-80,-46,-115,-78xm312,-795v-158,-64,-279,-258,-194,-469v50,-124,163,-221,333,-221v168,0,278,98,331,221v61,145,3,314,-77,392v-85,83,-251,135,-393,77xm444,-1350v-124,0,-225,101,-225,226v0,123,102,227,225,227v124,0,228,-103,228,-227v0,-124,-104,-226,-228,-226xm1231,-1487r115,0r-777,1518r-116,0xm1343,-555v-123,0,-227,101,-227,225v0,124,103,228,227,228v125,0,228,-103,228,-228v0,-124,-104,-225,-228,-225xm1092,-76v-83,-75,-140,-246,-78,-392v53,-123,163,-220,332,-220v168,0,278,98,331,220v61,145,2,314,-78,392v-85,83,-250,138,-391,78v-44,-18,-81,-46,-116,-78","w":2693},"\u00c2":{"d":"883,-586r-146,-770r-424,770r570,0xm-158,0r791,-1458r221,0r287,1458r-144,0r-88,-453r-667,0r-244,453r-156,0xm1038,-1597r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":1223},"\u00ca":{"d":"-8,0r280,-1456r748,0r-25,135r-606,0r-100,518r604,0r-25,133r-606,0r-104,537r606,0r-27,133r-745,0xm928,-1597r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":1028},"\u00c1":{"d":"883,-586r-146,-770r-424,770r570,0xm-158,0r791,-1458r221,0r287,1458r-144,0r-88,-453r-667,0r-244,453r-156,0xm731,-1597r-92,0r245,-350r146,0","w":1223},"\u00cb":{"d":"-8,0r280,-1456r748,0r-25,135r-606,0r-100,518r604,0r-25,133r-606,0r-104,537r606,0r-27,133r-745,0xm776,-1644r35,-164r142,0r-35,164r-142,0xm408,-1644r33,-164r143,0r-35,164r-141,0","w":1028},"\u00c8":{"d":"-8,0r280,-1456r748,0r-25,135r-606,0r-100,518r604,0r-25,133r-606,0r-104,537r606,0r-27,133r-745,0xm772,-1597r-88,0r-282,-350r147,0","w":1028},"\u00cd":{"d":"-4,0r283,-1456r141,0r-283,1456r-141,0xm342,-1597r-92,0r245,-350r146,0","w":412},"\u00ce":{"d":"-4,0r283,-1456r141,0r-283,1456r-141,0xm649,-1597r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":412},"\u00cf":{"d":"-4,0r283,-1456r141,0r-283,1456r-141,0xm497,-1644r35,-164r142,0r-35,164r-142,0xm129,-1644r33,-164r143,0r-35,164r-141,0","w":412},"\u00cc":{"d":"-4,0r283,-1456r141,0r-283,1456r-141,0xm493,-1597r-88,0r-282,-350r147,0","w":412},"\u00d3":{"d":"721,29v-398,0,-668,-265,-664,-662v4,-410,206,-676,503,-795v97,-39,204,-57,319,-57v399,0,665,268,665,668v0,493,-333,846,-823,846xm1397,-819v0,-317,-211,-534,-527,-529v-313,5,-514,179,-610,409v-38,91,-55,193,-55,304v0,317,209,526,524,526v395,0,668,-306,668,-710xm881,-1597r-92,0r245,-350r146,0","w":1602},"\u00d4":{"d":"721,29v-398,0,-668,-265,-664,-662v4,-410,206,-676,503,-795v97,-39,204,-57,319,-57v399,0,665,268,665,668v0,493,-333,846,-823,846xm1397,-819v0,-317,-211,-534,-527,-529v-313,5,-514,179,-610,409v-38,91,-55,193,-55,304v0,317,209,526,524,526v395,0,668,-306,668,-710xm1188,-1597r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":1602},"\uf000":{"d":"860,-1214r-24,-2v-22,-205,151,-367,329,-398v2,21,0,34,2,62v11,155,-170,340,-307,338xm1272,-741v0,172,101,279,233,338v-76,165,-144,279,-205,343v-61,64,-129,95,-204,95v-57,0,-202,-71,-254,-66v-51,-6,-209,70,-258,66v-121,-10,-190,-85,-258,-176v-116,-156,-208,-360,-213,-596v-6,-278,179,-494,448,-494v72,0,222,68,279,68v52,0,208,-71,274,-68v168,9,273,63,359,162v-116,75,-201,163,-201,328","w":1618},"\u00d2":{"d":"721,29v-398,0,-668,-265,-664,-662v4,-410,206,-676,503,-795v97,-39,204,-57,319,-57v399,0,665,268,665,668v0,493,-333,846,-823,846xm1397,-819v0,-317,-211,-534,-527,-529v-313,5,-514,179,-610,409v-38,91,-55,193,-55,304v0,317,209,526,524,526v395,0,668,-306,668,-710xm1032,-1597r-88,0r-282,-350r147,0","w":1602},"\u00da":{"d":"481,29v-253,1,-411,-147,-411,-398v0,-38,8,-110,26,-206r166,-881r141,0r-184,948v-7,38,-12,78,-12,121v-1,184,106,288,291,287v105,0,185,-33,240,-100v55,-67,103,-200,141,-402r163,-854r142,0r-166,881v-39,193,-80,328,-125,403v-77,129,-212,200,-412,201xm707,-1597r-92,0r245,-350r146,0","w":1186},"\u00db":{"d":"481,29v-253,1,-411,-147,-411,-398v0,-38,8,-110,26,-206r166,-881r141,0r-184,948v-7,38,-12,78,-12,121v-1,184,106,288,291,287v105,0,185,-33,240,-100v55,-67,103,-200,141,-402r163,-854r142,0r-166,881v-39,193,-80,328,-125,403v-77,129,-212,200,-412,201xm1014,-1597r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0","w":1186},"\u00d9":{"d":"481,29v-253,1,-411,-147,-411,-398v0,-38,8,-110,26,-206r166,-881r141,0r-184,948v-7,38,-12,78,-12,121v-1,184,106,288,291,287v105,0,185,-33,240,-100v55,-67,103,-200,141,-402r163,-854r142,0r-166,881v-39,193,-80,328,-125,403v-77,129,-212,200,-412,201xm858,-1597r-88,0r-282,-350r147,0","w":1186},"\u0131":{"d":"371,-1100r-213,1100r-131,0r215,-1100r129,0","w":412},"\u02c6":{"d":"852,-1247r-80,0r-145,-250r-236,250r-90,0r266,-350r131,0"},"\u02dc":{"d":"657,-1446v73,28,131,2,150,-61r80,0v-38,125,-111,210,-258,170v-47,-13,-87,-37,-140,-37v-49,0,-73,33,-90,74r-80,0v44,-122,98,-205,244,-175"},"\u00af":{"d":"332,-1348r24,-114r512,0r-24,114r-512,0"},"\u02d8":{"d":"584,-1288v-162,2,-241,-97,-224,-266r80,0v-6,103,50,151,150,151v128,-1,197,-56,239,-151r84,0v-48,160,-140,263,-329,266"},"\u02d9":{"d":"545,-1321r37,-172r149,0r-37,172r-149,0"},"\u02da":{"d":"623,-1624v-86,0,-154,68,-154,156v0,85,68,153,154,153v83,0,155,-70,155,-153v0,-85,-70,-156,-155,-156xm623,-1229v-131,0,-240,-110,-240,-241v0,-133,107,-240,240,-240v131,0,241,109,241,240v0,131,-110,241,-241,241"},"\u00b8":{"d":"596,266v3,172,-178,220,-354,184v-41,-8,-87,-19,-138,-34r27,-78v71,20,139,38,213,39v84,1,139,-33,139,-111v0,-89,-94,-87,-200,-88r61,-178r64,0r-37,111v131,-4,223,37,225,155"},"\u02dd":{"d":"879,-1597r127,0r-250,350r-74,0xm616,-1597r127,0r-231,350r-72,0"},"\u02db":{"d":"207,264v6,-119,92,-193,182,-264r62,0v-75,66,-138,130,-146,236v-8,100,101,85,197,86r-23,104v-155,6,-279,-18,-272,-162"},"\u02c7":{"d":"350,-1597r80,0r148,247r233,-247r92,0r-266,348r-133,0"},"\u0141":{"d":"12,0r115,-596r-154,92r23,-149r158,-90r139,-713r141,0r-121,635r301,-174r-28,153r-301,172r-105,537r606,0r-26,133r-748,0","w":858,"k":{"\u201e":-114,"\u201a":-114,"\u203a":73,"\u2039":73,"\u2019":348,"\u2018":415,"\u201d":348,"\u201c":415,"\u0153":36,"\u0152":112,"\u00bb":73,"\u00ab":73,"\u00f8":36,"\u00e6":36,"\u00d8":112,"\u00c5":-75,"y":73,"u":36,"o":36,"e":36,"a":36,"Y":73,"W":112,"V":112,"U":36,"T":112,"O":112,"A":-75,"-":36}},"\u0142":{"d":"459,-1456r-117,600r150,-84r-31,147r-146,84r-139,709r-131,0r123,-633r-150,84r31,-147r146,-86r133,-674r131,0","w":440},"\u0160":{"d":"410,31v-260,0,-433,-175,-407,-445r142,1v-19,188,98,309,277,309v162,0,300,-129,293,-289v-7,-164,-78,-201,-211,-285v-174,-111,-346,-161,-354,-403v-7,-218,197,-400,419,-400v236,0,396,166,371,418r-143,0v15,-176,-68,-289,-236,-289v-144,0,-262,106,-262,246v0,95,85,195,260,290v158,86,307,191,311,413v4,237,-218,434,-460,434xm430,-1947r80,0r148,247r233,-247r92,0r-266,348r-133,0","w":977},"\u0161":{"d":"319,31v-182,0,-324,-149,-298,-344r131,0v-4,121,69,215,182,215v99,0,186,-98,186,-199v0,-69,-64,-148,-172,-219v-92,-61,-151,-113,-179,-156v-28,-43,-42,-94,-42,-153v0,-169,133,-308,301,-308v172,0,287,120,266,305r-129,1v13,-104,-42,-181,-139,-181v-92,0,-164,72,-164,164v0,61,93,156,198,226v136,90,202,190,202,292v0,203,-143,357,-343,357xm213,-1597r80,0r148,247r233,-247r92,0r-266,348r-133,0","w":750},"\u017d":{"d":"-90,0r20,-133r990,-1198r-723,0r22,-125r907,0r-26,131r-989,1204r768,0r-23,121r-946,0xm448,-1947r80,0r148,247r233,-247r92,0r-266,348r-133,0","w":1014},"\u017e":{"d":"-43,0r25,-129r698,-838r-535,0r27,-133r713,0r-23,119r-706,848r608,0r-25,133r-782,0xm289,-1597r80,0r148,247r233,-247r92,0r-266,348r-133,0","w":901},"\u00a6":{"d":"567,-408r0,758r-108,0r0,-758r108,0xm567,-1432r0,758r-108,0r0,-758r108,0"},"\u00d0":{"d":"1309,-823v0,492,-340,831,-834,823r-473,0r127,-674r-131,0r25,-127r131,0r127,-655r358,0v413,-3,670,227,670,633xm1161,-815v0,-331,-180,-511,-512,-510r-256,0r-100,524r342,0r-23,127r-344,0r-104,543r303,0v409,7,694,-278,694,-684","w":1380,"k":{"\u201e":112,"\u201a":112,"\u2039":-38,"\u2019":36,"\u2018":149,"\u201d":36,"\u201c":149,"\u00ab":-38,"\u00c5":36,"Y":55,"W":36,"V":36,"A":36,"-":-65}},"\u00f0":{"d":"565,31v-300,4,-526,-232,-520,-535v6,-301,174,-502,399,-592v138,-55,330,-52,439,19r-109,-203r-336,70r-20,-97r311,-61r-59,-117r149,0r47,88r226,-47r22,94r-205,41v79,156,196,351,248,514v81,257,-14,515,-149,650v-103,103,-250,173,-443,176xm190,-492v0,275,258,479,540,372v185,-71,308,-243,312,-488v4,-235,-163,-404,-395,-404v-266,0,-457,241,-457,520","w":1241},"\u00dd":{"d":"244,0r94,-481r-277,-975r158,0r221,799r523,-799r159,0r-637,977r-102,479r-139,0xm611,-1597r-92,0r245,-350r146,0","w":948},"\u00fd":{"d":"-41,356r277,-456r-189,-1000r127,0r158,846r508,-846r145,0r-881,1456r-145,0xm471,-1247r-92,0r245,-350r146,0","w":877},"\u00de":{"d":"899,-788v0,-208,-143,-240,-385,-244r-182,0r-109,561r223,0v221,2,343,-25,414,-163v26,-49,39,-101,39,-154xm1051,-786v0,315,-242,468,-580,464r-276,0r-64,322r-143,0r284,-1456r140,0r-52,274r177,0v318,0,514,103,514,396","w":1128},"\u00fe":{"d":"684,-1008v-265,0,-459,238,-459,514v0,282,259,474,541,370v183,-68,308,-242,313,-482v5,-235,-161,-402,-395,-402xm621,27v-222,1,-383,-93,-451,-248r-113,577r-133,0r359,-1812r133,0r-94,479v88,-91,205,-151,368,-153v308,-6,540,223,535,530v-5,293,-161,494,-375,584v-70,29,-147,43,-229,43","w":1284},"\u2212":{"d":"1452,-659r0,98r-1198,0r0,-98r1198,0","w":1706},"\u00d7":{"d":"856,-680r481,-481r70,69r-481,482r481,481r-70,70r-481,-482r-481,482r-70,-70r481,-481r-481,-482r70,-69","w":1706},"\u00b9":{"d":"430,-582r-90,0r154,-735r-297,295r-66,-53r385,-381r102,0","w":764},"\u00b2":{"d":"438,-1473v148,-2,272,94,271,236v0,50,-16,99,-51,147v-95,129,-359,316,-506,437r481,0r-15,71r-614,0r16,-71r335,-265v175,-137,263,-246,263,-325v0,-95,-73,-152,-172,-150v-143,3,-205,91,-231,224r-90,0v17,-179,126,-302,313,-304","w":764},"\u00b3":{"d":"424,-1401v-115,1,-170,58,-193,158r-88,0v36,-148,113,-228,285,-230v142,-3,256,82,254,218v-1,116,-74,176,-178,200v96,30,161,96,162,213v2,167,-153,279,-328,279v-184,0,-310,-93,-297,-285r90,0v-14,131,75,205,205,205v131,0,233,-76,231,-201v-2,-130,-97,-176,-237,-182r16,-76v131,4,244,-52,244,-166v0,-86,-74,-135,-166,-133","w":764},"\u00bc":{"d":"1178,-229r352,0r104,-465xm1569,0r-88,0r32,-154r-448,0r18,-90r555,-571r109,0r-127,586r115,0r-17,75r-114,0xm1292,-1485r119,0r-903,1516r-121,0xm410,-639r-86,0r147,-686r-285,274r-61,-49r367,-354r96,0","w":1800},"\u00bd":{"d":"1489,-831v139,-2,259,89,258,221v0,47,-15,93,-48,137v-90,119,-344,293,-482,407r458,0r-14,66r-586,0r15,-66r313,-242v172,-131,258,-234,258,-308v1,-89,-69,-144,-162,-142v-137,2,-199,83,-223,209r-86,0v17,-167,123,-280,299,-282xm1292,-1485r119,0r-903,1516r-121,0xm410,-639r-86,0r147,-686r-285,274r-61,-49r367,-354r96,0","w":1800},"\u00be":{"d":"1178,-229r352,0r104,-465xm1569,0r-88,0r32,-154r-448,0r18,-90r555,-571r109,0r-127,586r115,0r-17,75r-114,0xm1292,-1485r119,0r-903,1516r-121,0xm406,-1403v-110,1,-161,53,-185,146r-84,0v34,-138,109,-211,271,-213v135,-2,244,75,243,202v-1,110,-73,165,-172,187v93,29,154,89,156,200v2,155,-147,258,-311,258v-176,0,-301,-88,-283,-266r84,0v-14,126,72,193,197,193v123,0,223,-70,221,-187v-2,-123,-94,-165,-228,-172r15,-69v124,4,233,-48,233,-156v0,-80,-70,-125,-157,-123","w":1800},"\u20a3":{"d":"-8,0r280,-1456r748,0r-25,135r-606,0r-100,518r604,0r-25,133r-606,0r-129,670r-141,0xm1310,-1010v86,-83,195,-127,361,-123r-27,136v-240,0,-362,132,-403,344r-125,653r-129,0r213,-1100r129,0","w":1626},"\u011e":{"d":"733,31v-409,0,-681,-261,-678,-668v3,-401,207,-662,489,-783v239,-103,583,-75,760,65v111,88,189,211,228,378r-152,0v-56,-220,-227,-369,-491,-369v-330,0,-541,179,-637,426v-33,85,-49,177,-49,275v0,318,212,536,528,536v307,0,555,-198,627,-446r-740,0r29,-133r889,0v-25,310,-199,510,-415,626v-118,63,-248,93,-388,93xm975,-1638v-162,2,-241,-97,-224,-266r80,0v-6,103,50,151,150,151v128,-1,197,-56,239,-151r84,0v-48,160,-140,263,-329,266","w":1602},"\u011f":{"d":"659,-1130v224,1,364,85,447,235r39,-195r139,0r-187,955v-65,297,-88,419,-291,517v-175,85,-465,60,-602,-46v-86,-67,-140,-154,-157,-268r123,0v43,149,162,239,350,239v276,0,388,-139,424,-397v-94,70,-210,115,-362,117v-301,5,-533,-227,-527,-529v5,-294,160,-495,375,-585v71,-30,148,-43,229,-43xm596,-96v259,0,457,-234,457,-502v0,-236,-152,-415,-383,-410v-219,5,-350,127,-422,286v-32,71,-47,146,-47,224v0,235,161,402,395,402xm715,-1288v-162,2,-241,-97,-224,-266r80,0v-6,103,50,151,150,151v128,-1,197,-56,239,-151r84,0v-48,160,-140,263,-329,266","w":1284},"\u0130":{"d":"-4,0r283,-1456r141,0r-283,1456r-141,0xm342,-1671r37,-172r149,0r-37,172r-149,0","w":412},"\u015e":{"d":"410,31v-260,0,-433,-175,-407,-445r142,1v-19,188,98,309,277,309v162,0,300,-129,293,-289v-7,-164,-78,-201,-211,-285v-174,-111,-346,-161,-354,-403v-7,-218,197,-400,419,-400v236,0,396,166,371,418r-143,0v15,-176,-68,-289,-236,-289v-144,0,-262,106,-262,246v0,95,85,195,260,290v158,86,307,191,311,413v4,237,-218,434,-460,434xm547,266v3,172,-178,220,-354,184v-41,-8,-87,-19,-138,-34r27,-78v71,20,139,38,213,39v84,1,139,-33,139,-111v0,-89,-94,-87,-200,-88r61,-178r64,0r-37,111v131,-4,223,37,225,155","w":977},"\u015f":{"d":"319,31v-182,0,-324,-149,-298,-344r131,0v-4,121,69,215,182,215v99,0,186,-98,186,-199v0,-69,-64,-148,-172,-219v-92,-61,-151,-113,-179,-156v-28,-43,-42,-94,-42,-153v0,-169,133,-308,301,-308v172,0,287,120,266,305r-129,1v13,-104,-42,-181,-139,-181v-92,0,-164,72,-164,164v0,61,93,156,198,226v136,90,202,190,202,292v0,203,-143,357,-343,357xm459,266v3,172,-178,220,-354,184v-41,-8,-87,-19,-138,-34r27,-78v71,20,139,38,213,39v84,1,139,-33,139,-111v0,-89,-94,-87,-200,-88r61,-178r64,0r-37,111v131,-4,223,37,225,155","w":750},"\u0106":{"d":"727,29v-398,5,-676,-262,-676,-656v0,-404,209,-668,489,-792v245,-109,578,-74,765,69v119,90,197,212,231,371r-158,0v-63,-223,-235,-369,-510,-369v-316,0,-517,182,-612,418v-35,87,-51,180,-51,277v0,331,205,555,532,551v268,-3,443,-135,557,-318r166,0v-121,264,-372,445,-733,449xm887,-1597r-92,0r245,-350r146,0","w":1540},"\u0107":{"d":"586,-92v217,-3,355,-126,424,-295r155,0v-86,244,-275,413,-579,418v-307,5,-539,-226,-533,-533v6,-298,166,-507,394,-592v192,-72,433,-38,567,78v91,78,151,184,176,322r-148,0v-25,-186,-170,-312,-378,-312v-265,0,-465,227,-465,498v0,241,151,418,387,416xm670,-1247r-92,0r245,-350r146,0","w":1241},"\u010c":{"d":"727,29v-398,5,-676,-262,-676,-656v0,-404,209,-668,489,-792v245,-109,578,-74,765,69v119,90,197,212,231,371r-158,0v-63,-223,-235,-369,-510,-369v-316,0,-517,182,-612,418v-35,87,-51,180,-51,277v0,331,205,555,532,551v268,-3,443,-135,557,-318r166,0v-121,264,-372,445,-733,449xm692,-1947r80,0r148,247r233,-247r92,0r-266,348r-133,0","w":1540},"\u010d":{"d":"586,-92v217,-3,355,-126,424,-295r155,0v-86,244,-275,413,-579,418v-307,5,-539,-226,-533,-533v6,-298,166,-507,394,-592v192,-72,433,-38,567,78v91,78,151,184,176,322r-148,0v-25,-186,-170,-312,-378,-312v-265,0,-465,227,-465,498v0,241,151,418,387,416xm475,-1597r80,0r148,247r233,-247r92,0r-266,348r-133,0","w":1241},"\u0111":{"d":"596,-96v257,0,457,-236,457,-502v0,-236,-153,-410,-383,-410v-263,0,-469,241,-469,510v0,235,161,402,395,402xm659,-1130v228,4,359,85,453,235r59,-301r-292,0r20,-107r293,0r31,-153r133,0r-31,153r141,0r-20,107r-141,0r-236,1196r-145,0r24,-104v-97,77,-213,128,-370,131v-298,5,-523,-230,-523,-529v0,-344,264,-634,604,-628","w":1298},"\u00ad":{"d":"580,-616r-25,133r-471,0r25,-133r471,0","w":659},"\u2219":{"d":"291,-635v-50,0,-92,-42,-92,-92v0,-50,42,-94,92,-94v49,0,94,45,94,94v0,50,-44,92,-94,92","w":578},"\u20ac":{"d":"1047,-1071v1,-181,-136,-283,-322,-283v-287,0,-352,172,-399,432r643,0r-27,111r-637,0r-33,168r635,0r-26,111r-631,0v-10,57,-21,109,-21,167v0,169,143,268,322,265v215,-3,305,-87,360,-262r144,0v-64,237,-218,390,-500,393v-282,3,-464,-145,-463,-418v0,-52,6,-96,17,-143r-117,0r26,-111r111,0r35,-170r-121,0r27,-111r114,0v32,-183,95,-348,196,-445v159,-152,520,-156,680,-9v82,75,126,175,126,305r-139,0","w":1157}}});
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();
