/*
 * 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")}})})();
/*
 * jQuery UI 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;
/*
 * jQuery UI Accordion 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Accordion
 *
 * Depends:
 *	ui.core.js
 */
(function(a){a.widget("ui.accordion",{_init:function(){var d=this.options,b=this;this.running=0;if(d.collapsible==a.ui.accordion.defaults.collapsible&&d.alwaysOpen!=a.ui.accordion.defaults.alwaysOpen){d.collapsible=!d.alwaysOpen}if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){if(c.filter(d.header).length){this.active=c}else{this.active=c.parent().parent().prev();c.addClass("ui-accordion-content-active")}}}this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");a("<span/>").addClass("ui-icon "+d.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(d.icons.header).toggleClass(d.icons.headerSelected);if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(e){return b._keydown(e)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(e){return b._clickHandler.call(b,e,this)})}},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}},_setData:function(b,c){if(b=="alwaysOpen"){b="collapsible";c=!c}a.widget.prototype._setData.apply(this,arguments)},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:return this._clickHandler({target:e.target},e.target)}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var e=this.options,d;if(e.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}d=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){d-=a(this).outerHeight()});var c=0;this.headers.next().each(function(){c=Math.max(c,a(this).innerHeight()-a(this).height())}).height(Math.max(0,d-c)).css("overflow","auto")}else{if(e.autoHeight){d=0;this.headers.next().each(function(){d=Math.max(d,a(this).outerHeight())}).height(d)}}},activate:function(b){var c=this._findActive(b)[0];this._clickHandler({target:c},c)},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return false}if(!b.target&&d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return false}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];if(this.running||(!d.collapsible&&i)){return false}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c.find("> *"),oldContent:h.find("> *")},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return false},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.7.2",defaults:{active:null,alwaysOpen:true,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-(parseInt(i.css("borderLeftWidth"),10)||0)-(parseInt(i.css("borderRightWidth"),10)||0));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})},easeslide:function(b){this.slide(b,{easing:"easeinout",duration:700})}}})})(jQuery);;
/*
 * jQuery UI Slider 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Slider
 *
 * Depends:
 *	ui.core.js
 */
(function(a){a.widget("ui.slider",a.extend({},a.ui.mouse,{_init:function(){var b=this,c=this.options;this._keySliding=false;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");this.range=a([]);if(c.range){if(c.range===true){this.range=a("<div></div>");if(!c.values){c.values=[this._valueMin(),this._valueMin()]}if(c.values.length&&c.values.length!=2){c.values=[c.values[0],c.values[0]]}}else{this.range=a("<div></div>")}this.range.appendTo(this.element).addClass("ui-slider-range");if(c.range=="min"||c.range=="max"){this.range.addClass("ui-slider-range-"+c.range)}this.range.addClass("ui-widget-header")}if(a(".ui-slider-handle",this.element).length==0){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}if(c.values&&c.values.length){while(a(".ui-slider-handle",this.element).length<c.values.length){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}}this.handles=a(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(d){d.preventDefault()}).hover(function(){if(!c.disabled){a(this).addClass("ui-state-hover")}},function(){a(this).removeClass("ui-state-hover")}).focus(function(){if(!c.disabled){a(".ui-slider .ui-state-focus").removeClass("ui-state-focus");a(this).addClass("ui-state-focus")}else{a(this).blur()}}).blur(function(){a(this).removeClass("ui-state-focus")});this.handles.each(function(d){a(this).data("index.ui-slider-handle",d)});this.handles.keydown(function(i){var f=true;var e=a(this).data("index.ui-slider-handle");if(b.options.disabled){return}switch(i.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:f=false;if(!b._keySliding){b._keySliding=true;a(this).addClass("ui-state-active");b._start(i,e)}break}var g,d,h=b._step();if(b.options.values&&b.options.values.length){g=d=b.values(e)}else{g=d=b.value()}switch(i.keyCode){case a.ui.keyCode.HOME:d=b._valueMin();break;case a.ui.keyCode.END:d=b._valueMax();break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g==b._valueMax()){return}d=g+h;break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g==b._valueMin()){return}d=g-h;break}b._slide(i,e,d);return f}).keyup(function(e){var d=a(this).data("index.ui-slider-handle");if(b._keySliding){b._stop(e,d);b._change(e,d);b._keySliding=false;a(this).removeClass("ui-state-active")}});this._refreshValue()},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy()},_mouseCapture:function(d){var e=this.options;if(e.disabled){return false}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();var h={x:d.pageX,y:d.pageY};var j=this._normValueFromMouse(h);var c=this._valueMax()-this._valueMin()+1,f;var k=this,i;this.handles.each(function(l){var m=Math.abs(j-k.values(l));if(c>m){c=m;f=a(this);i=l}});if(e.range==true&&this.values(1)==e.min){f=a(this.handles[++i])}this._start(d,i);k._handleIndex=i;f.addClass("ui-state-active").focus();var g=f.offset();var b=!a(d.target).parents().andSelf().is(".ui-slider-handle");this._clickOffset=b?{left:0,top:0}:{left:d.pageX-g.left-(f.width()/2),top:d.pageY-g.top-(f.height()/2)-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};j=this._normValueFromMouse(h);this._slide(d,i,j);return true},_mouseStart:function(b){return true},_mouseDrag:function(d){var b={x:d.pageX,y:d.pageY};var c=this._normValueFromMouse(b);this._slide(d,this._handleIndex,c);return false},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._handleIndex=null;this._clickOffset=null;return false},_detectOrientation:function(){this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(d){var c,h;if("horizontal"==this.orientation){c=this.elementSize.width;h=d.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{c=this.elementSize.height;h=d.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}var f=(h/c);if(f>1){f=1}if(f<0){f=0}if("vertical"==this.orientation){f=1-f}var e=this._valueMax()-this._valueMin(),i=f*e,b=i%this.options.step,g=this._valueMin()+i-b;if(b>(this.options.step/2)){g+=this.options.step}return parseFloat(g.toFixed(5))},_start:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("start",d,b)},_slide:function(f,e,d){var g=this.handles[e];if(this.options.values&&this.options.values.length){var b=this.values(e?0:1);if((this.options.values.length==2&&this.options.range===true)&&((e==0&&d>b)||(e==1&&d<b))){d=b}if(d!=this.values(e)){var c=this.values();c[e]=d;var h=this._trigger("slide",f,{handle:this.handles[e],value:d,values:c});var b=this.values(e?0:1);if(h!==false){this.values(e,d,(f.type=="mousedown"&&this.options.animate),true)}}}else{if(d!=this.value()){var h=this._trigger("slide",f,{handle:this.handles[e],value:d});if(h!==false){this._setData("value",d,(f.type=="mousedown"&&this.options.animate))}}}},_stop:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("stop",d,b)},_change:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("change",d,b)},value:function(b){if(arguments.length){this._setData("value",b);this._change(null,0)}return this._value()},values:function(b,e,c,d){if(arguments.length>1){this.options.values[b]=e;this._refreshValue(c);if(!d){this._change(null,b)}}if(arguments.length){if(this.options.values&&this.options.values.length){return this._values(b)}else{return this.value()}}else{return this._values()}},_setData:function(b,d,c){a.widget.prototype._setData.apply(this,arguments);switch(b){case"disabled":if(d){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled")}else{this.handles.removeAttr("disabled")}case"orientation":this._detectOrientation();this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue(c);break;case"value":this._refreshValue(c);break}},_step:function(){var b=this.options.step;return b},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin()}if(b>this._valueMax()){b=this._valueMax()}return b},_values:function(b){if(arguments.length){var c=this.options.values[b];if(c<this._valueMin()){c=this._valueMin()}if(c>this._valueMax()){c=this._valueMax()}return c}else{return this.options.values}},_valueMin:function(){var b=this.options.min;return b},_valueMax:function(){var b=this.options.max;return b},_refreshValue:function(c){var f=this.options.range,d=this.options,l=this;if(this.options.values&&this.options.values.length){var i,h;this.handles.each(function(p,n){var o=(l.values(p)-l._valueMin())/(l._valueMax()-l._valueMin())*100;var m={};m[l.orientation=="horizontal"?"left":"bottom"]=o+"%";a(this).stop(1,1)[c?"animate":"css"](m,d.animate);if(l.options.range===true){if(l.orientation=="horizontal"){(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({left:o+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({width:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}else{(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({bottom:(o)+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({height:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}}lastValPercent=o})}else{var j=this.value(),g=this._valueMin(),k=this._valueMax(),e=k!=g?(j-g)/(k-g)*100:0;var b={};b[l.orientation=="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[c?"animate":"css"](b,d.animate);(f=="min")&&(this.orientation=="horizontal")&&this.range.stop(1,1)[c?"animate":"css"]({width:e+"%"},d.animate);(f=="max")&&(this.orientation=="horizontal")&&this.range[c?"animate":"css"]({width:(100-e)+"%"},{queue:false,duration:d.animate});(f=="min")&&(this.orientation=="vertical")&&this.range.stop(1,1)[c?"animate":"css"]({height:e+"%"},d.animate);(f=="max")&&(this.orientation=="vertical")&&this.range[c?"animate":"css"]({height:(100-e)+"%"},{queue:false,duration:d.animate})}}}));a.extend(a.ui.slider,{getter:"value values",version:"1.7.2",eventPrefix:"slide",defaults:{animate:false,delay:0,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null}})})(jQuery);;
/*
 * jquery.tools 1.1.2 - The missing UI library for the Web
 * 
 * [tools.tabs-1.0.4, tools.scrollable-1.1.2, tools.scrollable.circular-0.5.1, tools.scrollable.autoscroll-1.0.1, tools.scrollable.navigator-1.0.2]
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 * 
 * -----
 * 
 * File generated: Mon Oct 19 07:57:52 GMT+00:00 2009
 */
(function(b){b.tools=b.tools||{};b.tools.scrollable={version:"1.1.2",conf:{size:5,vertical:false,speed:400,keyboard:true,keyboardSteps:null,disabledClass:"disabled",hoverClass:null,clickable:true,activeClass:"active",easing:"swing",loop:false,items:".items",item:null,prev:".prev",next:".next",prevPage:".prevPage",nextPage:".nextPage",api:false}};var c;function a(o,m){var r=this,p=b(this),d=!m.vertical,e=o.children(),k=0,i;if(!c){c=r}b.each(m,function(s,t){if(b.isFunction(t)){p.bind(s,t)}});if(e.length>1){e=b(m.items,o)}function l(t){var s=b(t);return m.globalNav?s:o.parent().find(t)}o.data("finder",l);var f=l(m.prev),h=l(m.next),g=l(m.prevPage),n=l(m.nextPage);b.extend(r,{getIndex:function(){return k},getClickIndex:function(){var s=r.getItems();return s.index(s.filter("."+m.activeClass))},getConf:function(){return m},getSize:function(){return r.getItems().size()},getPageAmount:function(){return Math.ceil(this.getSize()/m.size)},getPageIndex:function(){return Math.ceil(k/m.size)},getNaviButtons:function(){return f.add(h).add(g).add(n)},getRoot:function(){return o},getItemWrap:function(){return e},getItems:function(){return e.children(m.item)},getVisibleItems:function(){return r.getItems().slice(k,k+m.size)},seekTo:function(s,w,t){if(s<0){s=0}if(k===s){return r}if(b.isFunction(w)){t=w}if(s>r.getSize()-m.size){return m.loop?r.begin():this.end()}var u=r.getItems().eq(s);if(!u.length){return r}var v=b.Event("onBeforeSeek");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}if(w===undefined||b.isFunction(w)){w=m.speed}function x(){if(t){t.call(r,s)}p.trigger("onSeek",[s])}if(d){e.animate({left:-u.position().left},w,m.easing,x)}else{e.animate({top:-u.position().top},w,m.easing,x)}c=r;k=s;v=b.Event("onStart");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}f.add(g).toggleClass(m.disabledClass,s===0);h.add(n).toggleClass(m.disabledClass,s>=r.getSize()-m.size);return r},move:function(u,t,s){i=u>0;return this.seekTo(k+u,t,s)},next:function(t,s){return this.move(1,t,s)},prev:function(t,s){return this.move(-1,t,s)},movePage:function(w,v,u){i=w>0;var s=m.size*w;var t=k%m.size;if(t>0){s+=(w>0?-t:m.size-t)}return this.move(s,v,u)},prevPage:function(t,s){return this.movePage(-1,t,s)},nextPage:function(t,s){return this.movePage(1,t,s)},setPage:function(t,u,s){return this.seekTo(t*m.size,u,s)},begin:function(t,s){i=false;return this.seekTo(0,t,s)},end:function(t,s){i=true;var u=this.getSize()-m.size;return u>0?this.seekTo(u,t,s):r},reload:function(){p.trigger("onReload");return r},focus:function(){c=r;return r},click:function(u){var v=r.getItems().eq(u),s=m.activeClass,t=m.size;if(u<0||u>=r.getSize()){return r}if(t==1){if(m.loop){return r.next()}if(u===0||u==r.getSize()-1){i=(i===undefined)?true:!i}return i===false?r.prev():r.next()}if(t==2){if(u==k){u--}r.getItems().removeClass(s);v.addClass(s);return r.seekTo(u,time,fn)}if(!v.hasClass(s)){r.getItems().removeClass(s);v.addClass(s);var x=Math.floor(t/2);var w=u-x;if(w>r.getSize()-t){w=r.getSize()-t}if(w!==u){return r.seekTo(w)}}return r},bind:function(s,t){p.bind(s,t);return r},unbind:function(s){p.unbind(s);return r}});b.each("onBeforeSeek,onStart,onSeek,onReload".split(","),function(s,t){r[t]=function(u){return r.bind(t,u)}});f.addClass(m.disabledClass).click(function(){r.prev()});h.click(function(){r.next()});n.click(function(){r.nextPage()});if(r.getSize()<m.size){h.add(n).addClass(m.disabledClass)}g.addClass(m.disabledClass).click(function(){r.prevPage()});var j=m.hoverClass,q="keydown."+Math.random().toString().substring(10);r.onReload(function(){if(j){r.getItems().hover(function(){b(this).addClass(j)},function(){b(this).removeClass(j)})}if(m.clickable){r.getItems().each(function(s){b(this).unbind("click.scrollable").bind("click.scrollable",function(t){if(b(t.target).is("a")){return}return r.click(s)})})}if(m.keyboard){b(document).unbind(q).bind(q,function(t){if(t.altKey||t.ctrlKey){return}if(m.keyboard!="static"&&c!=r){return}var u=m.keyboardSteps;if(d&&(t.keyCode==37||t.keyCode==39)){r.move(t.keyCode==37?-u:u);return t.preventDefault()}if(!d&&(t.keyCode==38||t.keyCode==40)){r.move(t.keyCode==38?-u:u);return t.preventDefault()}return true})}else{b(document).unbind(q)}});r.reload()}b.fn.scrollable=function(d){var e=this.eq(typeof d=="number"?d:0).data("scrollable");if(e){return e}var f=b.extend({},b.tools.scrollable.conf);d=b.extend(f,d);d.keyboardSteps=d.keyboardSteps||d.size;this.each(function(){e=new a(b(this),d);b(this).data("scrollable",e)});return d.api?e:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.circular={version:"0.5.1",conf:{api:false,clonedClass:"cloned"}};b.fn.circular=function(e){var d=b.extend({},a.plugins.circular.conf),c;b.extend(d,e);this.each(function(){var i=b(this).scrollable(),n=i.getItems(),k=i.getConf(),f=i.getItemWrap(),j=0;if(i){c=i}if(n.length<k.size){return false}n.slice(0,k.size).each(function(o){b(this).clone().appendTo(f).click(function(){i.click(n.length+o)}).addClass(d.clonedClass)});var l=b.makeArray(n.slice(-k.size)).reverse();b(l).each(function(o){b(this).clone().prependTo(f).click(function(){i.click(-o-1)}).addClass(d.clonedClass)});var m=f.children(k.item);var h=k.hoverClass;if(h){m.hover(function(){b(this).addClass(h)},function(){b(this).removeClass(h)})}function g(o){var p=m.eq(o);if(k.vertical){f.css({top:-p.position().top})}else{f.css({left:-p.position().left})}}g(k.size);b.extend(i,{move:function(s,r,p,q){var u=j+s+k.size;var t=u>i.getSize()-k.size;if(u<=0||t){var o=j+k.size+(t?-n.length:n.length);g(o);u=o+s}if(q){m.removeClass(k.activeClass).eq(u+Math.floor(k.size/2)).addClass(k.activeClass)}if(u===j+k.size){return self}return i.seekTo(u,r,p)},begin:function(p,o){return this.seekTo(k.size,p,o)},end:function(p,o){return this.seekTo(n.length,p,o)},click:function(p,r,q){if(!k.clickable){return self}if(k.size==1){return this.next()}var s=p-j,o=k.activeClass;s-=Math.floor(k.size/2);return this.move(s,r,q,true)},getIndex:function(){return j},setPage:function(p,q,o){return this.seekTo(p*k.size+k.size,q,o)},getPageAmount:function(){return Math.ceil(n.length/k.size)},getPageIndex:function(){if(j<0){return this.getPageAmount()-1}if(j>=n.length){return 0}var o=(j+k.size)/k.size-1;return o},getVisibleItems:function(){var o=j+k.size;return m.slice(o,o+k.size)}});i.onStart(function(p,o){j=o-k.size;return false});i.getNaviButtons().removeClass(k.disabledClass)});return d.api?c:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.autoscroll={version:"1.0.1",conf:{autoplay:true,interval:3000,autopause:true,steps:1,api:false}};b.fn.autoscroll=function(d){if(typeof d=="number"){d={interval:d}}var e=b.extend({},a.plugins.autoscroll.conf),c;b.extend(e,d);this.each(function(){var g=b(this).scrollable();if(g){c=g}var i,f,h=true;g.play=function(){if(i){return}h=false;i=setInterval(function(){g.move(e.steps)},e.interval);g.move(e.steps)};g.pause=function(){i=clearInterval(i)};g.stop=function(){g.pause();h=true};if(e.autopause){g.getRoot().add(g.getNaviButtons()).hover(function(){g.pause();clearInterval(f)},function(){if(!h){f=setTimeout(g.play,e.interval)}})}if(e.autoplay){setTimeout(g.play,e.interval)}});return e.api?c:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.navigator={version:"1.0.2",conf:{navi:".navi",naviItem:null,activeClass:"active",indexed:false,api:false,idPrefix:null}};b.fn.navigator=function(d){var e=b.extend({},a.plugins.navigator.conf),c;if(typeof d=="string"){d={navi:d}}d=b.extend(e,d);this.each(function(){var i=b(this).scrollable(),f=i.getRoot(),l=f.data("finder").call(null,d.navi),g=null,k=i.getNaviButtons();if(i){c=i}i.getNaviButtons=function(){return k.add(l)};function j(){if(!l.children().length||l.data("navi")==i){l.empty();l.data("navi",i);for(var m=0;m<i.getPageAmount();m++){l.append(b("<"+(d.naviItem||"a")+"/>"))}g=l.children().each(function(n){var o=b(this);o.click(function(p){i.setPage(n);return p.preventDefault()});if(d.indexed){o.text(n)}if(d.idPrefix){o.attr("id",d.idPrefix+n)}})}else{g=d.naviItem?l.find(d.naviItem):l.children();g.each(function(n){var o=b(this);o.click(function(p){i.setPage(n);return p.preventDefault()})})}g.eq(0).addClass(d.activeClass)}i.onStart(function(o,n){var m=d.activeClass;g.removeClass(m).eq(i.getPageIndex()).addClass(m)});i.onReload(function(){j()});j();var h=g.filter("[href="+location.hash+"]");if(h.length){i.move(g.index(h))}});return d.api?c:this}})(jQuery);
/*
 * ColorBox v1.3.2 - a full featured, light-weight, customizable lightbox based on jQuery 1.3
 */
(function(z){var p="colorbox",n="hover",v=true,O=false,U,l=!z.support.opacity,Q=l&&!window.XMLHttpRequest,T="click.colorbox",w="cbox_open",I="cbox_load",s="cbox_complete",H="cbox_cleanup",m="cbox_closed",L="resize.cbox_resize",E,R,S,d,x,i,b,D,c,M,B,f,q,h,k,J,j,G,r,V,g,e,a,o,y,N,u,K,F,A={transition:"elastic",speed:350,width:O,height:O,innerWidth:O,innerHeight:O,initialWidth:"400",initialHeight:"400",maxWidth:O,maxHeight:O,scalePhotos:v,scrolling:v,inline:O,html:O,iframe:O,photo:O,href:O,title:O,rel:O,opacity:0.9,preloading:v,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:O,overlayClose:v,slideshow:O,slideshowAuto:v,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",preloadIMG:v};function C(W,X){X=X==="x"?document.documentElement.clientWidth:document.documentElement.clientHeight;return(typeof W==="string")?Math.round((W.match(/%/)?(X/100)*parseInt(W,10):parseInt(W,10))):W}function t(W){return N.photo||W.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i)}function P(){for(var W in N){if(typeof(N[W])==="function"){N[W]=N[W].call(o)}}}U=z.fn.colorbox=function(X,W){if(this.length){this.each(function(){var Y=z(this).data(p)?z.extend({},z(this).data(p),X):z.extend({},A,X);z(this).data(p,Y).addClass("cboxelement")})}else{z(this).data(p,z.extend({},A,X))}z(this).unbind(T).bind(T,function(Z){o=this;N=z(o).data(p);P();F=W||O;var Y=N.rel||o.rel;if(Y&&Y!=="nofollow"){c=z(".cboxelement").filter(function(){var aa=z(this).data(p).rel||this.rel;return(aa===Y)});y=c.index(o);if(y<0){c=c.add(o);y=c.length-1}}else{c=z(o);y=0}if(!u){u=v;K=v;z().bind("keydown.cbox_close",function(aa){if(aa.keyCode===27){aa.preventDefault();U.close()}}).bind("keydown.cbox_arrows",function(aa){if(aa.keyCode===37){aa.preventDefault();G.click()}else{if(aa.keyCode===39){aa.preventDefault();j.click()}}});if(N.overlayClose){E.css({cursor:"pointer"}).one("click",U.close)}o.blur();z.event.trigger(w);r.html(N.close);E.css({opacity:N.opacity}).show();N.w=C(N.initialWidth,"x");N.h=C(N.initialHeight,"y");U.position(0);if(Q){M.bind("resize.cboxie6 scroll.cboxie6",function(){E.css({width:M.width(),height:M.height(),top:M.scrollTop(),left:M.scrollLeft()})}).trigger("scroll.cboxie6")}}U.slideshow();U.load();Z.preventDefault()});if(X&&X.open){z(this).triggerHandler(T)}return this};U.init=function(){function W(X){return z('<div id="cbox'+X+'"/>')}M=z(window);R=z('<div id="colorbox"/>');E=W("Overlay").hide();S=W("Wrapper");d=W("Content").append(B=W("LoadedContent").css({width:0,height:0}),f=W("LoadingOverlay"),q=W("LoadingGraphic"),h=W("Title"),k=W("Current"),J=W("Slideshow"),j=W("Next"),G=W("Previous"),r=W("Close"));S.append(z("<div/>").append(W("TopLeft"),x=W("TopCenter"),W("TopRight")),z("<div/>").append(i=W("MiddleLeft"),d,b=W("MiddleRight")),z("<div/>").append(W("BottomLeft"),D=W("BottomCenter"),W("BottomRight"))).children().children().css({"float":"left"});z("body").prepend(E,R.append(S));if(l){R.addClass("cboxIE");if(Q){E.css("position","absolute")}}d.children().addClass(n).mouseover(function(){z(this).addClass(n)}).mouseout(function(){z(this).removeClass(n)}).hide();V=x.height()+D.height()+d.outerHeight(v)-d.height();g=i.width()+b.width()+d.outerWidth(v)-d.width();e=B.outerHeight(v);a=B.outerWidth(v);R.css({"padding-bottom":V,"padding-right":g}).hide();j.click(U.next);G.click(U.prev);r.click(U.close);d.children().removeClass(n)};U.position=function(ab,Y){var aa,X=document.documentElement.clientHeight,Z=Math.max(X-N.h-e-V,0)/2+M.scrollTop(),W=Math.max(document.documentElement.clientWidth-N.w-a-g,0)/2+M.scrollLeft();aa=(R.width()===N.w+a&&R.height()===N.h+e)?0:ab;S[0].style.width=S[0].style.height="9999px";function ac(ad){x[0].style.width=D[0].style.width=d[0].style.width=ad.style.width;q[0].style.height=f[0].style.height=d[0].style.height=i[0].style.height=b[0].style.height=ad.style.height}R.dequeue().animate({width:N.w+a,height:N.h+e,top:Z,left:W},{duration:aa,complete:function(){ac(this);K=O;S[0].style.width=(N.w+a+g)+"px";S[0].style.height=(N.h+e+V)+"px";if(Y){Y()}},step:function(){ac(this)}})};U.resize=function(aa){if(!u){return}var ab,Z,X,ad,ah,W,af,Y=N.transition==="none"?0:N.speed;M.unbind(L);if(!aa){af=setTimeout(function(){var ai=B.wrapInner("<div style='overflow:auto'></div>").children();N.h=ai.height();B.css({height:N.h});ai.replaceWith(ai.children());U.position(Y)},1);return}B.remove();B=z('<div id="cboxLoadedContent"/>').html(aa);function ae(){N.w=N.w||B.width();return N.w}function ac(){N.h=N.h||B.height();return N.h}B.hide().appendTo(E).css({width:ae(),overflow:N.scrolling?"auto":"hidden"}).css({height:ac()}).prependTo(d);z("#cboxPhoto").css({cssFloat:"none"});if(Q){z("select:not(#colorbox select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(H,function(){this.style.visibility="inherit"})}function ag(ai){U.position(ai,function(){if(!u){return}if(l){if(W){B.fadeIn(100)}R[0].style.removeAttribute("filter")}d.children().show();if(N.iframe){B.append("<iframe id='cboxIframe'"+(N.scrolling?" ":"scrolling='no'")+" name='iframe_"+new Date().getTime()+"' frameborder=0 src='"+(N.href||o.href)+"' />")}f.hide();q.hide();J.hide();if(c.length>1){k.html(N.current.replace(/\{current\}/,y+1).replace(/\{total\}/,c.length));j.html(N.next);G.html(N.previous);if(N.slideshow){J.show()}}else{k.hide();j.hide();G.hide()}h.html(N.title||o.title);z.event.trigger(s);if(F){F.call(o)}if(N.transition==="fade"){R.fadeTo(Y,1,function(){if(l){R[0].style.removeAttribute("filter")}})}M.bind(L,function(){U.position(0)})})}if((N.transition==="fade"&&R.fadeTo(Y,0,function(){ag(0)}))||ag(Y)){}if(N.preloading&&c.length>1){Z=y>0?c[y-1]:c[c.length-1];ad=y<c.length-1?c[y+1]:c[0];ah=z(ad).data(p).href||ad.href;X=z(Z).data(p).href||Z.href;if(t(ah)){z("<img />").attr("src",ah)}if(t(X)){z("<img />").attr("src",X)}}};U.load=function(){var X,W,aa,Z=U.resize;K=v;function Y(ad){var ac=z(ad),ae=ac.find("img"),ab=ae.length;(function af(){var ag=new Image();ab=ab-1;if(ab>=0&&N.preloadIMG){ag.onload=af;ag.src=ae[ab].src}else{Z(ac)}}())}o=c[y];N=z(o).data(p);P();z.event.trigger(I);N.h=N.height?C(N.height,"y")-e-V:N.innerHeight?C(N.innerHeight,"y"):O;N.w=N.width?C(N.width,"x")-a-g:N.innerWidth?C(N.innerWidth,"x"):O;N.mw=N.w;N.mh=N.h;if(N.maxWidth){N.mw=C(N.maxWidth,"x")-a-g;N.mw=N.w&&N.w<N.mw?N.w:N.mw}if(N.maxHeight){N.mh=C(N.maxHeight,"y")-e-V;N.mh=N.h&&N.h<N.mh?N.h:N.mh}X=N.href||o.href;f.show();q.show();r.show();if(N.inline){z('<div id="cboxInlineTemp" />').hide().insertBefore(z(X)[0]).bind(I+" "+H,function(){z(this).replaceWith(B.children())});Z(z(X))}else{if(N.iframe){Z(" ")}else{if(N.html){Y(N.html)}else{if(t(X)){W=new Image();W.onload=function(){var ab;W.onload=null;W.id="cboxPhoto";z(W).css({margin:"auto",border:"none",display:"block",cssFloat:"left"});if(N.scalePhotos){aa=function(){W.height-=W.height*ab;W.width-=W.width*ab};if(N.mw&&W.width>N.mw){ab=(W.width-N.mw)/W.width;aa()}if(N.mh&&W.height>N.mh){ab=(W.height-N.mh)/W.height;aa()}}if(N.h){W.style.marginTop=Math.max(N.h-W.height,0)/2+"px"}Z(W);if(c.length>1){z(W).css({cursor:"pointer"}).click(U.next)}if(l){W.style.msInterpolationMode="bicubic"}};W.src=X}else{z("<div />").load(X,function(ab,ac){if(ac==="success"){Y(this)}else{Z(z("<p>Request unsuccessful.</p>"))}})}}}}};U.next=function(){if(!K){y=y<c.length-1?y+1:0;U.load()}};U.prev=function(){if(!K){y=y>0?y-1:c.length-1;U.load()}};U.slideshow=function(){var X,W,Y="cboxSlideshow_";J.bind(m,function(){J.unbind();clearTimeout(W);R.removeClass(Y+"off "+Y+"on")});function Z(){J.text(N.slideshowStop).bind(s,function(){W=setTimeout(U.next,N.slideshowSpeed)}).bind(I,function(){clearTimeout(W)}).one("click",function(){X();z(this).removeClass(n)});R.removeClass(Y+"off").addClass(Y+"on")}X=function(){clearTimeout(W);J.text(N.slideshowStart).unbind(s+" "+I).one("click",function(){Z();W=setTimeout(U.next,N.slideshowSpeed);z(this).removeClass(n)});R.removeClass(Y+"on").addClass(Y+"off")};if(N.slideshow&&c.length>1){if(N.slideshowAuto){Z()}else{X()}}};U.close=function(){z.event.trigger(H);u=O;z().unbind("keydown.cbox_close keydown.cbox_arrows");M.unbind(L+" resize.cboxie6 scroll.cboxie6");E.css({cursor:"auto"}).fadeOut("fast");R.stop(v,O).fadeOut("fast",function(){B.remove();R.css({opacity:1});d.children().hide();z.event.trigger(m)})};U.element=function(){return o};U.settings=A;z(U.init)}(jQuery));
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2008 by Jos Buivenga/exljbris. All rights reserved.
 * 
 * Trademark:
 * Museo is a trademark of Jos Buivenga/exljbris.
 * 
 * Full name:
 * Museo-300
 * 
 * Description:
 * Copyright (c) 2008 by Jos Buivenga/exljbris. All rights reserved.
 * 
 * Manufacturer:
 * Jos Buivenga
 * 
 * Designer:
 * Jos Buivenga
 * 
 * Vendor URL:
 * http://www.josbuivenga.demon.nl
 */
Cufon.registerFont({"w":218,"face":{"font-family":"Museo 300","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-8 -318 334 76","underline-thickness":"18","underline-position":"-18","stemh":"22","stemv":"25","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":97,"k":{"\u00dd":13,"Y":13,"W":8,"V":8,"T":7,".":18,",":18}},"\u00a0":{"w":97},"!":{"d":"42,-66r-1,-187r25,0r-1,187r-23,0xm40,0r0,-28r28,0r0,28r-28,0","w":106},"\"":{"d":"67,-196r0,-61r22,0r0,61r-22,0xm24,-196r0,-61r21,0r0,61r-21,0","w":112,"k":{"X":-7,"4":18,"T":-7,"Y":-7,"\u00dd":-7,"V":-7,"W":-7,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"J":25,"M":8,"N":8,"s":4,"Z":-5}},"#":{"d":"54,0r12,-70r-51,0r3,-20r51,0r13,-71r-51,0r3,-20r51,0r13,-72r22,0r-13,72r63,0r12,-72r22,0r-12,72r50,0r-4,20r-50,0r-12,71r50,0r-4,20r-50,0r-12,70r-22,0r12,-70r-62,0r-12,70r-22,0xm91,-90r62,0r13,-71r-62,0","w":256},"$":{"d":"17,-43r18,-15v0,0,21,39,64,39v31,0,50,-20,50,-45v0,-63,-125,-49,-125,-130v0,-31,26,-57,65,-62r0,-35r20,0r0,34v30,2,67,17,59,61r-23,0v4,-27,-15,-38,-43,-38v-33,0,-52,18,-52,39v0,60,125,45,125,130v0,34,-25,65,-66,69r0,33r-20,0r0,-33v-50,-5,-72,-47,-72,-47","w":191,"k":{"7":7}},"%":{"d":"73,-157v-28,0,-51,-22,-51,-50v0,-27,23,-50,51,-50v28,0,50,23,50,50v0,28,-22,50,-50,50xm24,0r193,-253r26,0r-193,253r-26,0xm73,-177v17,0,29,-13,29,-30v0,-16,-12,-30,-29,-30v-17,0,-29,14,-29,30v0,17,12,30,29,30xm144,-45v0,-28,22,-51,50,-51v28,0,51,23,51,51v0,27,-23,49,-51,49v-28,0,-50,-22,-50,-49xm166,-46v0,17,11,30,28,30v17,0,30,-13,30,-30v0,-16,-13,-30,-30,-30v-17,0,-28,14,-28,30","w":267},"&":{"d":"102,4v-88,0,-117,-113,-40,-140v1,-3,-32,-10,-35,-57v-3,-47,56,-75,105,-60r-7,20v-32,-8,-72,7,-72,41v0,17,8,46,55,46r52,0r0,-35r25,0r0,35r34,0r0,22r-34,0v7,75,-19,128,-83,128xm42,-71v0,28,22,52,60,52v49,0,63,-46,58,-105v-58,-4,-118,2,-118,53","w":224},"'":{"d":"24,-196r0,-61r21,0r0,61r-21,0","w":68,"k":{"X":-7,"4":18,"T":-7,"Y":-7,"\u00dd":-7,"V":-7,"W":-7,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"J":25,"M":8,"N":8,"s":4,"Z":-5}},"(":{"d":"72,34v-51,-82,-57,-213,-3,-297r24,0v-56,90,-51,206,2,297r-23,0","w":111,"k":{"j":-6,"4":14}},")":{"d":"17,34v52,-91,57,-207,2,-297r23,0v55,84,49,215,-3,297r-22,0","w":111},"*":{"d":"55,-121r-19,-14r33,-44r-52,-15r7,-23r52,19r-3,-55r25,0r-3,55r53,-18r7,22v-17,6,-38,8,-53,16r34,43r-19,14v-11,-15,-20,-32,-32,-46","w":171},"+":{"d":"15,-92r0,-21r83,0r0,-91r22,0r0,91r83,0r0,21r-83,0r0,92r-22,0r0,-92r-83,0","k":{"7":7}},",":{"d":"29,-30r26,0r-26,65r-21,0","w":77,"k":{"9":2,"7":7,"6":4,"4":6,"0":7,"T":25,"Y":29,"\u00dd":29,"V":25,"W":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u00ad":30,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"J":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00ab":18,"\u00bb":18}},"-":{"d":"27,-91r0,-22r102,0r0,22r-102,0","w":155,"k":{"x":9,"X":4,"9":13,"7":25,"5":10,"3":14,"1":11}},"\u00ad":{"d":"27,-91r0,-22r102,0r0,22r-102,0","w":155,"k":{"T":22,"Y":22,"\u00dd":22,"V":11,"W":11,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00c7":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"\u00d6":-5,"\u00d8":-5,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u00c4":6,"\u00c5":6,"\u00c6":6,"z":6,"S":9,"Z":4}},".":{"d":"25,0r0,-29r28,0r0,29r-28,0","w":77,"k":{"9":2,"7":7,"6":4,"4":6,"0":7,"T":25,"Y":29,"\u00dd":29,"V":25,"W":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u00ad":30,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"J":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00ab":18,"\u00bb":18}},"\/":{"d":"1,15r92,-282r22,0r-91,282r-23,0","w":117,"k":{"7":-4}},"0":{"d":"108,4v-66,0,-87,-58,-87,-131v0,-73,21,-130,87,-130v66,0,88,57,88,130v0,73,-22,131,-88,131xm108,-19v48,0,62,-48,62,-108v0,-60,-14,-107,-62,-107v-48,0,-61,47,-61,107v0,60,13,108,61,108","w":216,"k":{".":14,",":14,"\u00b0":4,"8":4,"7":10,"3":3,"2":4,"1":5}},"1":{"d":"23,0r0,-22r57,0r-1,-200v-4,8,-30,33,-39,42r-16,-16r57,-57r24,0r0,231r55,0r0,22r-137,0","w":171,"k":{"-":18,"'":22,"\"":22,"\u00b0":25,"9":4,"8":3,"7":4,"6":4,"5":3,"4":6,"3":1,"0":5,"\/":-10,"%":8}},"2":{"d":"15,-25v0,-94,134,-86,134,-161v0,-52,-90,-63,-97,-20r0,12r-24,0v-9,-48,37,-63,70,-63v48,0,77,32,77,71v0,89,-134,86,-134,156v0,5,3,8,8,8r106,0v11,0,7,-15,8,-25r23,0v0,23,4,47,-21,47r-127,0v-17,0,-23,-7,-23,-25","w":203,"k":{"-":10,"9":6,"7":1,"4":7,"0":2}},"3":{"d":"9,-31r15,-19v0,0,27,31,67,31v30,0,57,-23,57,-55v0,-40,-36,-57,-79,-53r-6,-15r75,-90v-20,2,-62,1,-86,1v-11,0,-7,15,-8,25r-23,0v0,-23,-4,-47,21,-47r128,0r0,16r-74,88v32,2,78,20,78,74v0,43,-36,79,-84,79v-50,0,-81,-35,-81,-35","w":190,"k":{"9":2,"7":2}},"4":{"d":"5,-70r0,-16r124,-167r27,0r0,161r40,0r0,22r-40,0r0,70r-26,0r0,-70r-125,0xm131,-92r0,-128r-96,129v25,-2,67,-1,96,-1","w":202,"k":{".":4,",":4,"\u00b0":7,"9":4,"4":-11,"2":-7,"1":3}},"5":{"d":"19,-32r16,-17v0,0,19,30,59,30v36,0,63,-26,63,-59v0,-35,-30,-60,-66,-60v-42,0,-42,23,-61,9r11,-102v3,-40,69,-17,105,-22v25,-4,21,24,21,47r-23,0v-1,-10,3,-25,-8,-25r-64,0v-5,0,-7,3,-8,8v-2,23,-8,51,-8,72v0,0,16,-10,38,-10v51,0,89,37,89,83v0,45,-38,82,-89,82v-50,0,-75,-36,-75,-36","w":204,"k":{".":5,",":5,"\u00b0":7,"9":1,"7":6,"5":3,"3":3,"2":2,"1":7,"0":3}},"6":{"d":"107,4v-55,0,-92,-49,-92,-115v0,-64,34,-146,112,-146v28,0,46,10,46,10r-9,22v0,0,-16,-9,-37,-9v-52,-1,-83,55,-84,104v38,-57,143,-30,143,50v0,53,-35,84,-79,84xm42,-95v0,33,27,76,65,76v34,0,54,-26,54,-61v0,-35,-22,-58,-57,-58v-34,0,-62,22,-62,43","w":201,"k":{"-":5,"9":4,"7":3,"5":2,"3":2,"0":3}},"7":{"d":"28,0r125,-231r-111,0v-11,0,-6,15,-7,25r-24,0v0,-23,-4,-47,21,-47r150,0r0,17r-125,236r-29,0","w":184,"k":{"\u00bb":9,"\u00ab":9,">":14,"=":14,"<":14,";":5,":":5,".":43,"-":19,",":43,"+":14,"\u00b0":-11,"?":-6,"9":3,"8":3,"7":-2,"5":1,"4":21,"2":3,"0":7,"\/":22}},"8":{"d":"17,-71v0,-46,46,-65,45,-68v-57,-24,-39,-118,42,-118v48,0,77,28,77,67v0,39,-34,63,-34,63v72,27,39,131,-44,131v-45,0,-86,-27,-86,-75xm53,-191v-1,34,41,44,71,53v9,0,32,-25,32,-51v0,-27,-21,-45,-52,-45v-32,0,-51,19,-51,43xm162,-69v0,-35,-49,-49,-78,-58v-10,0,-41,24,-41,55v0,33,29,53,60,53v30,0,59,-20,59,-50","w":205,"k":{"9":3,"7":4,"4":-1,"0":4}},"9":{"d":"28,-6r10,-22v0,0,16,9,37,9v52,1,83,-55,83,-104v-38,57,-143,28,-143,-50v0,-53,36,-84,80,-84v55,0,91,49,91,115v0,64,-33,146,-111,146v-28,0,-47,-10,-47,-10xm98,-115v34,0,61,-22,61,-43v0,-33,-26,-76,-64,-76v-34,0,-54,26,-54,61v0,35,22,58,57,58","w":201,"k":{".":14,",":14,"8":2,"7":5,"3":2,"2":2,"0":2}},":":{"d":"37,-152r0,-29r28,0r0,29r-28,0xm37,0r0,-29r28,0r0,29r-28,0","w":101},";":{"d":"37,-152r0,-29r28,0r0,29r-28,0xm19,35r18,-65r26,0r-23,65r-21,0","w":101},"<":{"d":"25,-93r0,-18r163,-73r0,24r-133,58r133,57r0,24","k":{"7":7}},"=":{"d":"25,-123r0,-21r168,0r0,21r-168,0xm25,-60r0,-21r168,0r0,21r-168,0","k":{"7":7}},">":{"d":"28,-21r0,-24r132,-58r-132,-57r0,-24r162,73r0,18","k":{"7":7}},"?":{"d":"55,-66v-9,-70,62,-79,63,-127v0,-23,-19,-41,-47,-41v-24,0,-44,15,-44,15r-13,-18v0,0,22,-21,58,-21v41,0,72,27,72,64v-1,67,-74,62,-64,128r-25,0xm54,0r0,-28r27,0r0,28r-27,0","w":155},"@":{"d":"15,-87v0,-73,57,-132,128,-132v116,0,83,86,88,181r26,0r0,20r-97,0v-41,0,-72,-32,-72,-69v0,-54,53,-77,119,-69v-1,-22,-20,-42,-62,-42v-59,0,-105,51,-105,111v0,61,45,110,107,110r0,22v-75,0,-132,-59,-132,-132xm113,-87v0,44,44,54,94,49r0,-99v-50,-5,-94,5,-94,50","w":266},"A":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123","w":236,"k":{"X":3}},"B":{"d":"38,-22r0,-209r-24,0r0,-22v78,1,178,-17,176,64v0,28,-14,46,-32,55v26,7,43,32,43,63v0,70,-68,76,-141,71v-15,0,-22,-7,-22,-22xm63,-143v50,2,102,5,102,-45v0,-49,-54,-44,-102,-43r0,88xm63,-30v6,18,43,4,62,8v31,0,49,-20,49,-50v0,-55,-56,-52,-111,-50r0,92","k":{"\u00dd":9,"w":2,"v":2,"Y":9,"W":4,"V":4,"T":7,"'":2,"\"":2}},"C":{"d":"14,-129v0,-73,54,-128,125,-128v43,0,106,16,94,74r-23,0v8,-40,-37,-51,-71,-51v-56,0,-99,44,-99,105v0,60,42,110,100,110v52,0,83,-36,83,-36r15,18v0,0,-35,41,-98,41v-74,0,-126,-59,-126,-133","w":249,"k":{"Y":4,"\u00dd":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\"":-8,"'":-8,")":-9,"]":-9,"|":-9,"}":-9}},"D":{"d":"39,-22r0,-209r-24,0r0,-22r102,0v76,0,127,46,127,126v0,103,-74,127,-184,127v-15,0,-21,-7,-21,-22xm64,-30v3,16,34,5,50,8v62,0,103,-37,103,-105v0,-86,-62,-112,-153,-104r0,201","w":257,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"E":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22","w":200,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"F":{"d":"39,0r0,-231r-24,0r0,-22r135,0v25,-2,21,24,21,47r-23,0v-1,-10,3,-25,-8,-25r-76,0r0,95r92,0r0,23r-92,0r0,113r-25,0","w":179,"k":{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":17,"\u00c5":17,"\u00c4":17,"\u00c3":17,"\u00c2":17,"\u00c1":17,"\u00c0":17,"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"a":5,"Q":4,"O":4,"N":3,"M":3,"J":6,"G":4,"C":4,"A":17,"@":2,".":36,",":36,"'":-7,"\"":-7}},"G":{"d":"14,-127v0,-73,54,-130,126,-130v59,0,89,31,89,31r-15,18v0,0,-28,-26,-73,-26v-57,0,-101,46,-101,107v0,62,43,108,100,108v50,0,80,-38,80,-38v-1,-19,8,-46,-23,-39r0,-22v23,0,47,-3,47,22r0,96r-23,0r0,-30v0,0,-30,34,-83,34v-69,0,-124,-55,-124,-131","w":262,"k":{"T":6,"U":3,"\u00d9":3,"\u00da":3,"\u00db":3,"\u00dc":3,"a":-3,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00e4":-3,"\u00e5":-3,"\u00e6":-3,"\u00ad":-7,"\"":2,"'":2,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"\u00e7":-3,"\u00e8":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00f2":-3,"\u00f3":-3,"\u00f4":-3,"\u00f5":-3,"\u00f6":-3,"\u00f8":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2,"\u00c8":2,"\u00c9":2,"\u00ca":2,"\u00cb":2}},"H":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,93r145,0r0,-93v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-25,0r0,-116r-145,0r0,116r-25,0","w":272,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2}},"I":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0","w":105},"J":{"d":"80,4v-38,0,-75,-26,-71,-85r25,0v-3,42,20,62,46,62v22,0,46,-14,46,-53r0,-151v0,-5,-3,-8,-8,-8r-63,0r0,-22v34,5,96,-16,96,22r0,160v0,55,-36,75,-71,75","w":181,"k":{",":4,".":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,":":6,";":6}},"K":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,88v19,-1,43,5,51,-9r61,-101r29,0v-26,39,-49,86,-78,121v22,23,38,71,56,101v5,10,14,9,26,9r0,22v-26,0,-38,1,-48,-19r-47,-93v-7,-14,-31,-8,-50,-9r0,121r-25,0","w":212,"k":{"x":2,"C":8,"G":8,"O":8,"Q":8,"\u00c7":8,"\u00d2":8,"\u00d3":8,"\u00d4":8,"\u00d5":8,"\u00d6":8,"\u00d8":8,"v":11,"w":11,"y":7,"\u00fd":7,"\u00ff":7,"\u00ad":15,")":-9,"]":-9,"|":-9,"}":-9,",":-7,".":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,":":-11,";":-11,"z":4,"\u00ab":3,"\u00bb":3}},"L":{"d":"39,-22r0,-201v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,201v0,5,3,8,8,8r84,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-105,0v-15,0,-21,-7,-21,-22","w":190,"k":{"*":28,"T":36,"Y":29,"\u00dd":29,"V":14,"W":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"v":17,"w":17,"y":14,"\u00fd":14,"\u00ff":14,"\u00ad":11,"\"":29,"'":29,",":-4,".":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"b":5,"h":5,"k":5,"l":5}},"M":{"d":"8,0r0,-22v9,0,20,2,21,-8r18,-223r25,0r81,177r79,-177r25,0r18,223v0,10,12,8,22,8r0,22v-24,0,-45,3,-47,-22r-13,-189v-18,52,-51,113,-74,164r-22,0r-60,-129v-7,-13,-11,-37,-14,-36v-1,59,-13,131,-13,190v0,25,-22,23,-46,22","w":304,"k":{"\u00fc":-1,"\u00fb":-1,"\u00fa":-1,"\u00f9":-1,"\u00f1":-1,"u":-1,"r":-1,"p":-1,"n":-1,"m":-1,"T":6,"'":11,"\"":11}},"N":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v10,13,18,34,21,33v-4,-54,0,-132,-2,-191v-1,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-23,0r-129,-180v-9,-12,-21,-33,-21,-33v4,54,0,132,2,191v1,26,-25,22,-49,22","w":273,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2}},"O":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106","w":284,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"P":{"d":"39,0r0,-231r-24,0r0,-22r107,0v45,0,78,29,78,76v0,70,-61,85,-136,78r0,99r-25,0xm64,-122v57,2,110,3,110,-55v0,-56,-53,-57,-110,-54r0,109","w":208,"k":{"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00c6":21,"\u00c5":21,"\u00c4":21,"\u00c3":21,"\u00c2":21,"\u00c1":21,"\u00c0":21,"z":2,"s":4,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,"N":3,"M":3,"J":7,"A":21,"@":7,".":38,",":38,"'":-2,"\"":-2}},"Q":{"d":"14,-128v0,-73,56,-129,128,-129v110,0,168,137,98,216r31,31r-16,16r-31,-31v-79,69,-210,6,-210,-103xm40,-128v0,61,45,109,102,109v40,0,65,-23,65,-23r-31,-31r16,-16r30,31v53,-65,8,-175,-80,-175v-57,0,-102,45,-102,105","w":284,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"R":{"d":"39,0r0,-231r-24,0r0,-22r107,0v42,0,73,28,73,72v0,39,-24,63,-49,68v19,20,30,57,45,82v5,10,11,9,23,9r0,22v-25,0,-36,1,-46,-19r-36,-72v-9,-25,-39,-13,-68,-16r0,107r-25,0xm64,-129v54,2,105,4,105,-51v0,-54,-51,-54,-105,-51r0,102","w":217,"k":{"T":8,"Y":11,"\u00dd":11,"V":2,"W":2,"C":1,"G":1,"O":1,"Q":1,"\u00c7":1,"\u00d2":1,"\u00d3":1,"\u00d4":1,"\u00d5":1,"\u00d6":1,"\u00d8":1,",":-7,".":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"S":{"d":"13,-32r16,-18v0,0,25,31,65,31v28,0,50,-18,50,-45v0,-63,-125,-51,-125,-129v0,-35,31,-64,78,-64v30,0,78,14,68,61r-24,0v4,-28,-16,-38,-44,-38v-33,0,-52,19,-52,41v0,59,125,43,125,127v0,38,-28,70,-76,70v-52,0,-81,-36,-81,-36","w":186,"k":{"\u00ad":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"z":2}},"T":{"d":"99,0r0,-231r-63,0v-11,-1,-7,15,-8,25r-23,0v1,-23,-5,-47,21,-47r171,0v26,-3,21,24,21,47r-24,0v-1,-10,3,-25,-8,-25r-62,0r0,231r-25,0","w":223,"k":{"\u00ef":-11,"j":14,"i":13," ":7,"Y":-4,"\u00dd":-4,"V":-3,"W":-3,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u00e5":22,"\u00e6":22,"v":22,"w":22,"y":23,"\u00fd":23,"\u00ff":23,"\u00ad":22,"\"":-7,"'":-7,",":25,".":25,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"\u00e7":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"m":16,"n":16,"p":16,"r":16,"u":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"J":18,"z":22,"\u00ab":11,"\u00bb":11,"M":4,"N":4,"s":17}},"U":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91","w":258,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"V":{"d":"104,0r-83,-223v-3,-8,-8,-8,-17,-8r0,-22v23,0,34,1,41,21r73,203v18,-67,50,-138,72,-203v7,-21,17,-21,40,-21r0,22v-9,0,-13,0,-16,8r-83,223r-27,0","w":235,"k":{" ":8,"T":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u00ad":11,"\"":-7,"'":-7,",":25,".":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"J":12,"M":2,"N":2,"S":2}},"W":{"d":"82,0r-58,-223v-2,-8,-9,-8,-18,-8r0,-22v23,0,37,-1,42,21r50,201r63,-221r24,0r58,221v12,-65,35,-137,49,-201v5,-22,19,-21,42,-21r0,22v-9,0,-15,0,-17,8r-59,223r-29,0r-57,-213r-60,213r-30,0","w":340,"k":{" ":8,"T":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u00ad":11,"\"":-7,"'":-7,",":25,".":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"J":12,"M":2,"N":2,"S":2}},"X":{"d":"5,0r81,-132r-55,-89v-7,-10,-13,-10,-25,-10r0,-22v54,-8,57,47,80,74r17,29v9,-18,35,-61,48,-83v11,-21,22,-20,48,-20r0,22v-12,0,-18,0,-25,10r-55,89r81,132r-29,0r-69,-115r-68,115r-29,0","w":205,"k":{"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":3,"\u00c5":3,"\u00c4":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u00c0":3,"}":-7,"|":-7,"q":3,"o":3,"g":3,"e":3,"d":3,"c":3,"]":-7,"Q":4,"O":4,"G":4,"C":4,"A":3,"@":3,"-":4,")":-7,"'":-7,"\"":-7}},"Y":{"d":"94,0r0,-110r-68,-111v-6,-10,-10,-10,-22,-10r0,-22v23,0,31,-1,44,20r59,100v13,-27,41,-72,58,-100v13,-21,21,-20,45,-20r0,22v-11,0,-18,0,-23,10r-68,111r0,110r-25,0","w":213,"k":{" ":13,"T":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u00ad":22,"\"":-7,"'":-7,",":29,".":29,"A":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00c6":29,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"J":13,"z":11,"\u00ab":7,"\u00bb":7,"M":6,"N":6,"s":17}},"Z":{"d":"7,0r0,-18r154,-213r-119,0v-11,0,-7,15,-8,25r-24,0v0,-23,-3,-47,22,-47r160,0r0,18r-135,190v-9,13,-19,23,-19,23r128,0v11,0,7,-15,8,-25r23,0v0,23,3,47,-22,47r-168,0","w":207,"k":{"\u00ad":9,"\u00ab":4,"\u00bb":4}},"[":{"d":"36,12r0,-253v-2,-26,25,-22,49,-22r0,20v-10,1,-26,-4,-26,8r0,241v0,12,16,7,26,8r0,20v0,0,-49,4,-49,-22","w":109,"k":{"j":-6,"4":14}},"\\":{"d":"93,15r-91,-282r23,0r91,282r-23,0","w":114},"]":{"d":"24,14v10,-1,26,4,26,-8r0,-241v0,-12,-16,-7,-26,-8r0,-20v0,0,49,-4,49,22r0,253v2,26,-25,22,-49,22r0,-20","w":109},"^":{"d":"26,-90r72,-163r16,0r72,163r-24,0r-56,-133r-56,133r-24,0"},"_":{"d":"2,0r186,0r0,21r-186,0r0,-21","w":189},"`":{"d":"65,-271r-32,-43r28,0r25,43r-21,0","w":129},"a":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41","w":190,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"b":{"d":"30,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22v0,26,-3,56,0,80v0,0,15,-34,61,-34v49,0,79,39,79,95v0,57,-34,94,-82,94v-45,0,-57,-36,-60,-35r1,31r-24,0xm54,-90v0,36,19,73,58,73v32,0,58,-27,58,-73v0,-44,-24,-73,-57,-73v-30,0,-59,22,-59,73","w":210,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"c":{"d":"14,-90v0,-55,42,-95,96,-95v26,0,73,11,64,54r-23,0v5,-25,-22,-32,-41,-32v-39,0,-70,29,-70,73v0,45,33,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-25,29,-71,29v-54,0,-95,-38,-95,-94","w":190,"k":{"\u00ff":2,"\u00fd":2,"y":2,"l":1,"k":1,"h":1,"b":1,"T":11}},"d":{"d":"15,-91v0,-57,33,-94,81,-94v44,0,60,33,60,33r0,-72v0,-11,-14,-7,-24,-8r0,-21v24,0,48,-4,48,22r0,202v0,11,13,8,23,8r0,21v-30,4,-53,-4,-47,-32v0,0,-14,36,-62,36v-49,0,-79,-39,-79,-95xm98,-18v30,0,58,-22,58,-73v0,-37,-18,-72,-57,-72v-32,0,-59,26,-59,72v0,45,24,73,58,73","w":211},"e":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0","w":197,"k":{"T":14}},"f":{"d":"32,0r0,-161r-23,0r0,-20r23,0v0,-65,39,-80,73,-73r0,22v-24,-6,-50,6,-49,51r46,0r0,20r-46,0r0,161r-24,0","w":109,"k":{"T":-7,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u00ad":6,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"s":3}},"g":{"d":"15,-94v0,-54,30,-91,79,-91v49,0,60,31,60,31v-5,-28,20,-28,46,-27r0,21v-10,0,-23,-3,-23,8r0,148v0,83,-88,95,-146,65r10,-20v0,0,22,12,49,12v45,1,70,-29,63,-85v-11,20,-29,31,-57,31v-49,0,-81,-39,-81,-93xm99,-23v29,0,54,-18,54,-71v0,-53,-25,-69,-57,-69v-35,0,-56,26,-56,69v0,43,23,71,59,71","w":208},"h":{"d":"123,-162v-38,0,-68,30,-68,75r0,87r-25,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v23,0,48,-5,48,21r0,92v7,-17,30,-45,71,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-56,23,-140,-40,-140","w":217,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"i":{"d":"32,-222r0,-31r24,0r0,31r-24,0xm33,-22r0,-130v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22","w":90,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"j":{"d":"41,-222r0,-31r23,0r0,31r-23,0xm-8,52v24,0,49,-1,49,-46r0,-158v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22r0,166v-4,65,-42,69,-74,66r0,-21","w":96},"k":{"d":"30,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v23,0,48,-5,48,21r0,120v17,0,30,1,39,-9r46,-60r30,0v-20,24,-43,60,-66,79v14,13,32,52,44,73v3,9,15,8,27,8r0,21v-25,0,-38,1,-49,-18r-36,-65v-8,-11,-20,-7,-35,-8r0,91r-25,0","w":179,"k":{"\u00ff":4,"\u00fd":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":3,"\u00e5":3,"\u00e4":3,"\u00e3":3,"\u00e2":3,"\u00e1":3,"\u00e0":3,"y":4,"w":4,"v":4,"q":4,"o":4,"l":3,"k":3,"h":3,"g":4,"e":4,"d":4,"c":4,"b":3,"a":3,"T":7,"@":4}},"l":{"d":"31,-22r0,-202v0,-11,-13,-8,-23,-8r0,-21v23,0,47,-3,47,22r0,202v0,11,13,8,23,8r0,21v-23,0,-47,3,-47,-22","w":88},"m":{"d":"118,-163v-67,2,-65,89,-62,163r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v14,-50,116,-67,122,0v12,-22,35,-45,67,-45v77,0,61,85,61,156v0,11,13,7,23,8r0,21v-24,0,-48,4,-48,-22v0,-56,22,-141,-39,-141v-35,0,-61,36,-61,77r0,86r-24,0r0,-109v0,-27,-4,-54,-38,-54","w":335,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"n":{"d":"125,-162v-38,0,-69,30,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v6,-17,30,-45,72,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-55,24,-140,-39,-140","k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"o":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72","w":219,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"p":{"d":"31,72r0,-224v0,-11,-13,-8,-23,-8r0,-21v29,-4,53,2,47,31v0,0,14,-35,62,-35v49,0,79,39,79,95v0,57,-34,94,-81,94v-46,0,-57,-35,-60,-34v2,29,1,70,1,102r-25,0xm55,-90v0,36,20,73,58,73v32,0,58,-27,58,-73v0,-44,-23,-73,-57,-73v-30,0,-59,22,-59,73","w":211,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"q":{"d":"15,-91v0,-57,34,-94,82,-94v44,0,60,35,60,35v-6,-30,17,-33,46,-31r0,21v-10,0,-23,-3,-23,8r0,224r-24,0r0,-103v0,0,-16,35,-62,35v-49,0,-79,-39,-79,-95xm98,-18v30,0,59,-22,59,-73v0,-37,-19,-72,-58,-72v-32,0,-59,26,-59,72v0,45,24,73,58,73","w":211},"r":{"d":"122,-158v-73,-5,-68,83,-66,158r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v35,-4,54,4,47,46v10,-29,33,-53,67,-47r0,24","w":130,"k":{"a":12,"\u00e0":12,"\u00e1":12,"\u00e2":12,"\u00e3":12,"\u00e4":12,"\u00e5":12,"\u00e6":12,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u00ad":7,",":20,".":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"b":4,"h":4,"k":4,"l":4}},"s":{"d":"10,-27r14,-17v0,0,20,27,56,27v20,0,38,-10,38,-29v0,-40,-101,-32,-101,-90v0,-33,28,-49,64,-49v23,0,64,9,55,48r-23,0v4,-21,-15,-27,-31,-27v-25,0,-40,8,-40,26v0,41,101,32,101,92v0,30,-27,50,-63,50v-47,0,-70,-31,-70,-31","w":158},"t":{"d":"33,-66r0,-95r-23,0r0,-20r24,0r0,-50r24,0r0,50r45,0r0,20r-45,0r0,93v3,46,25,47,49,47r0,22v-35,1,-74,-2,-74,-67","w":120,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u00ad":5,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"b":3,"h":3,"k":3,"l":3}},"u":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45","w":217,"k":{"T":14}},"v":{"d":"80,0r-59,-152v-4,-7,-8,-8,-16,-8r0,-21v22,-1,32,1,39,20r50,134v13,-44,34,-91,50,-134v6,-19,15,-21,37,-20r0,21v-8,0,-13,1,-15,8r-59,152r-27,0","w":186,"k":{"T":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u00ad":6,",":14,".":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"w":{"d":"73,0r-52,-152v-3,-7,-8,-8,-17,-8r0,-21v22,0,34,-1,41,20r43,134r50,-153r24,0r51,153v11,-43,31,-91,43,-134v6,-21,18,-20,41,-20r0,21v-9,0,-15,0,-18,8r-52,152r-27,0r-50,-148r-50,148r-27,0","w":300,"k":{"T":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u00ad":6,",":14,".":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"x":{"d":"7,0r63,-94r-39,-58v-5,-8,-13,-8,-25,-8r0,-21v52,-8,57,43,80,71v21,-25,28,-79,79,-71r0,21v0,0,-19,-1,-24,7r-39,59r63,94r-29,0r-50,-77r-51,77r-28,0","w":171,"k":{"-":9}},"y":{"d":"14,40v0,0,12,14,27,14v26,0,35,-34,45,-55r-64,-151v-4,-7,-8,-8,-16,-8r0,-21v22,0,31,1,39,20r53,132v13,-43,36,-90,51,-132v7,-20,17,-21,39,-20r0,21v-8,0,-12,1,-16,8r-78,190v-9,23,-28,38,-52,38v-41,0,-45,-17,-28,-36","w":194,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u00ad":6,",":16,".":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"z":{"d":"14,0r0,-16r116,-144v-21,2,-60,1,-84,1v-11,0,-8,12,-8,21r-23,0v-1,-23,-2,-43,22,-43r126,0r0,16r-117,144v24,-2,66,-1,93,-1v10,0,8,-12,8,-22r23,0v1,23,2,44,-22,44r-134,0","w":179,"k":{"v":6,"w":6,"y":5,"\u00fd":5,"\u00ff":5,"\u00ad":6,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"{":{"d":"42,-30r0,-34v0,-37,-30,-41,-30,-41r0,-22v0,0,30,-4,30,-42r0,-29v3,-62,37,-65,60,-65r0,20v-16,0,-34,1,-37,45r0,36v0,37,-30,43,-29,46v0,0,29,9,29,46r0,39v2,43,22,45,37,45r0,21v-24,0,-56,-2,-60,-65","w":117,"k":{"j":-6,"4":14}},"|":{"d":"40,57r0,-341r23,0r0,341r-23,0","w":102,"k":{"j":-6,"4":14}},"}":{"d":"16,14v14,0,34,-2,36,-45r0,-39v0,-39,30,-44,29,-47v0,0,-29,-10,-29,-45r0,-36v-2,-44,-22,-45,-36,-45r0,-20v24,0,55,3,59,65r0,29v0,38,30,42,30,42r0,22v0,0,-30,4,-30,41r0,34v-3,63,-36,65,-59,65r0,-21","w":117},"~":{"d":"24,-75v0,-40,19,-56,46,-56v40,0,40,37,71,37v22,0,26,-23,26,-36r21,0v0,40,-18,56,-45,56v-40,0,-41,-37,-72,-37v-22,0,-26,23,-26,36r-21,0"},"\u00a1":{"d":"39,-153r0,-28r28,0r0,28r-28,0xm41,72r1,-187r23,0r1,187r-25,0","w":106},"\u00a2":{"d":"92,14r0,-40v-47,-5,-72,-48,-72,-101v0,-52,25,-95,72,-100r0,-40r21,0r0,40v31,4,51,24,64,53r-23,9v-28,-72,-109,-36,-109,38v0,44,19,78,59,78v25,0,40,-16,50,-39r23,9v-12,28,-33,50,-64,53r0,40r-21,0","w":196},"\u00a3":{"d":"19,0r0,-22r23,0r0,-95r-16,0r0,-20r16,0v-6,-69,8,-120,74,-120v34,0,57,20,57,20r-16,18v0,0,-17,-15,-41,-15v-53,1,-51,46,-49,97r69,0r0,20r-69,0r0,95r95,0v11,0,7,-15,8,-25r23,0v0,23,3,47,-22,47r-152,0","w":209,"k":{"7":6}},"\u00a5":{"d":"39,-77r0,-18r58,0v2,-16,-5,-23,-11,-32r-49,0r0,-18v12,-1,28,2,38,-1r-47,-77v-5,-7,-12,-8,-22,-8r0,-22v23,0,33,0,44,20r59,100r59,-100v11,-20,21,-20,44,-20r0,22v-10,0,-17,1,-22,8r-46,78r36,0r0,18r-48,0v-5,9,-12,16,-10,32r58,0r0,18r-58,0r0,77r-25,0r0,-77r-58,0","k":{"7":-4,"4":10}},"\u00a7":{"d":"52,-31r-26,-168v0,-33,25,-58,62,-58v25,0,42,15,42,15r-13,17v0,0,-12,-11,-29,-11v-26,0,-43,21,-38,50r24,155r-22,0xm63,22v-42,0,-48,-14,-29,-32v0,0,13,11,30,11v25,1,43,-21,38,-51r-24,-154r22,0r26,168v0,33,-26,58,-63,58","w":149},"\u00a8":{"d":"111,-283r0,-31r21,0r0,31r-21,0xm57,-283r0,-31r21,0r0,31r-21,0","w":177},"\u00a9":{"d":"15,-127v0,-73,57,-130,127,-130v72,0,129,57,129,130v0,73,-57,131,-129,131v-70,0,-127,-58,-127,-131xm36,-127v0,63,46,112,106,112v61,0,108,-49,108,-112v0,-62,-47,-111,-108,-111v-60,0,-106,49,-106,111xm71,-126v0,-38,26,-74,74,-74v40,0,59,33,59,33r-16,11v0,0,-15,-24,-42,-24v-35,0,-53,26,-53,54v0,28,18,54,53,54v27,0,42,-25,42,-25r16,11v0,0,-20,33,-59,33v-48,0,-74,-35,-74,-73","w":285},"\u00aa":{"d":"96,-158v-8,26,-77,27,-74,-14v2,-40,48,-40,73,-40v5,-30,-31,-34,-45,-20r0,8r-19,0v-7,-27,22,-34,38,-33v57,0,43,48,45,96v1,5,9,2,14,3r0,18v-17,0,-35,3,-32,-18xm64,-155v20,0,30,-20,31,-41v-19,0,-52,0,-53,23v0,9,8,18,22,18xm21,-95r0,-17r109,0r0,17r-109,0","w":149},"\u00ab":{"d":"78,-102r59,-74r27,0r-59,74r59,74r-27,0xm73,-28r-59,-74r59,-74r26,0r-59,74r59,74r-26,0","w":187,"k":{"7":12,"T":11,"Y":7,"\u00dd":7}},"\u00ac":{"d":"25,-123r0,-21r168,0r0,87r-22,0r0,-66r-146,0"},"\u00ae":{"d":"15,-127v0,-73,57,-130,127,-130v72,0,129,57,129,130v0,73,-57,131,-129,131v-70,0,-127,-58,-127,-131xm36,-127v0,63,46,112,106,112v61,0,108,-49,108,-112v0,-62,-47,-111,-108,-111v-60,0,-106,49,-106,111xm99,-57r0,-123r-13,0r0,-17v49,0,106,-8,106,42v0,22,-16,33,-27,38v16,7,13,44,37,44r0,16v-35,7,-38,-27,-50,-48v-7,-12,-18,-7,-32,-8r0,56r-21,0xm120,-129v27,1,51,1,51,-26v0,-26,-25,-26,-51,-25r0,51","w":285},"\u00af":{"d":"40,-283r0,-19r89,0r0,19r-89,0","w":165},"\u02c9":{"d":"40,-283r0,-19r89,0r0,19r-89,0","w":165},"\u00b0":{"d":"69,-157v-28,0,-51,-22,-51,-50v0,-27,23,-50,51,-50v28,0,51,23,51,50v0,28,-23,50,-51,50xm69,-177v17,0,29,-13,29,-30v0,-16,-12,-30,-29,-30v-17,0,-29,14,-29,30v0,17,12,30,29,30","w":137},"\u00b1":{"d":"15,-92r0,-21r83,0r0,-91r22,0r0,91r83,0r0,21r-83,0r0,92r-22,0r0,-92r-83,0xm22,37r175,0r0,21r-175,0r0,-21"},"\u00b2":{"d":"120,-211v0,53,-76,51,-81,95v17,6,45,0,66,2v4,-1,1,-10,2,-15r20,0v0,17,2,34,-16,34r-76,0v-12,0,-17,-4,-17,-18v-2,-55,81,-51,81,-98v0,-15,-10,-26,-28,-26v-18,0,-28,7,-25,24r-19,0v-7,-32,24,-43,44,-43v31,0,49,19,49,45","w":147},"\u00b3":{"d":"71,-93v-32,0,-53,-25,-53,-25r14,-14v0,0,17,20,40,20v16,0,31,-13,31,-31v-1,-22,-21,-31,-46,-29r-4,-12r43,-52v-12,7,-56,-13,-51,15r-19,0v0,-17,-3,-32,17,-32r79,0r0,14r-42,50v20,2,44,16,44,46v0,29,-25,50,-53,50","w":147},"\u00b4":{"d":"41,-271r26,-43r27,0r-31,43r-22,0","w":133},"\u00b5":{"d":"8,-160r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v0,0,-18,45,-71,45v-30,0,-40,-15,-40,-15v3,18,2,59,2,83r-22,0r0,-224v0,-11,-13,-8,-23,-8","w":217},"\u03bc":{"d":"8,-160r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v0,0,-18,45,-71,45v-30,0,-40,-15,-40,-15v3,18,2,59,2,83r-22,0r0,-224v0,-11,-13,-8,-23,-8","w":217},"\u00b6":{"d":"102,18r0,-105v-46,0,-87,-36,-87,-83v0,-47,40,-83,86,-83r86,0r0,22r-65,0r0,249r-20,0xm144,18r0,-227r21,0r0,227r-21,0","w":206},"\u00b7":{"d":"25,-89r0,-29r28,0r0,29r-28,0","w":77},"\u2219":{"d":"25,-89r0,-29r28,0r0,29r-28,0","w":77},"\u00b8":{"d":"57,-7v4,2,15,-1,14,5r-4,22v15,2,26,11,26,25v0,28,-33,32,-53,27r0,-17v6,2,36,6,33,-10v2,-9,-13,-15,-25,-12","w":148},"\u00b9":{"d":"29,-95r0,-19r34,0r-1,-111v-4,7,-15,16,-21,22r-13,-13r37,-37r19,0r0,139r33,0r0,19r-88,0","w":147},"\u00ba":{"d":"82,-138v-33,0,-60,-26,-60,-60v0,-33,27,-59,60,-59v33,0,60,26,60,59v0,34,-27,60,-60,60xm82,-156v22,0,40,-18,40,-42v0,-24,-18,-41,-40,-41v-22,0,-40,17,-40,41v0,24,18,42,40,42xm28,-95r0,-17r109,0r0,17r-109,0","w":164},"\u00bb":{"d":"89,-28r59,-74r-59,-74r26,0r59,74r-59,74r-26,0xm24,-28r59,-74r-59,-74r26,0r59,74r-59,74r-26,0","w":187,"k":{"7":12,"T":11,"Y":7,"\u00dd":7}},"\u00bc":{"d":"97,0r107,-253r22,0r-106,253r-23,0xm28,-95r0,-19r34,0r0,-111v-5,6,-15,16,-21,22r-13,-13r36,-37r18,0r0,139r34,0r0,19r-88,0xm179,-42r0,-13r74,-103r22,0r0,97r24,0r0,19r-24,0r0,42r-20,0r0,-42r-76,0xm208,-67v-5,6,-6,6,3,6r44,0r0,-69v-14,23,-32,42,-47,63","w":320},"\u00bd":{"d":"93,0r107,-253r22,0r-106,253r-23,0xm28,-95r0,-19r34,0r0,-111v-5,6,-15,16,-21,22r-13,-13r36,-37r18,0r0,139r34,0r0,19r-88,0xm288,-115v0,52,-76,50,-80,94v17,4,51,3,68,0r0,-13r19,0v0,17,2,34,-16,34r-76,0v-12,0,-16,-4,-16,-18v-3,-55,80,-50,80,-97v0,-15,-10,-26,-28,-26v-18,0,-26,6,-24,23r-20,0v-6,-31,24,-43,44,-43v31,0,49,20,49,46","w":320},"\u00be":{"d":"96,0r107,-253r23,0r-107,253r-23,0xm76,-93v-32,0,-54,-25,-54,-25r15,-14v0,0,16,20,39,20v16,0,32,-13,32,-31v-1,-22,-21,-32,-47,-29r-3,-12r42,-52v-10,2,-34,1,-47,1v-6,0,-2,9,-3,14r-20,0v0,-17,-3,-32,17,-32r80,0r0,14r-43,50v20,2,45,16,45,46v0,29,-25,50,-53,50xm179,-42r0,-13r74,-103r22,0r0,97r24,0r0,19r-24,0r0,42r-20,0r0,-42r-76,0xm208,-67v-5,6,-6,6,3,6r44,0r0,-69v-14,23,-32,42,-47,63","w":320},"\u00bf":{"d":"74,-153r0,-28r28,0r0,28r-28,0xm11,12v1,-65,74,-62,65,-127r24,0v9,70,-61,78,-63,126v0,23,19,41,47,41v24,0,44,-15,44,-15r13,18v0,0,-22,21,-58,21v-41,0,-72,-27,-72,-64","w":155},"\u00c0":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm108,-271r-32,-43r28,0r25,43r-21,0","w":236,"k":{"X":3}},"\u00c1":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm108,-271r25,-43r27,0r-31,43r-21,0","w":236,"k":{"X":3}},"\u00c2":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm76,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":236,"k":{"X":3}},"\u00c3":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm62,-272v0,-28,11,-42,33,-42v24,0,29,26,45,26v12,0,15,-16,15,-25r19,0v0,28,-12,42,-34,42v-24,0,-28,-25,-45,-25v-12,0,-15,15,-15,24r-18,0","w":236,"k":{"X":3}},"\u00c4":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm135,-283r0,-31r21,0r0,31r-21,0xm81,-283r0,-31r21,0r0,31r-21,0","w":236,"k":{"X":3}},"\u00c5":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v3,8,8,8,17,8r0,22v-54,8,-46,-51,-64,-81r-100,0v-18,30,-10,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123xm118,-267v-14,0,-26,-10,-26,-25v0,-15,12,-26,26,-26v14,0,27,11,27,26v0,15,-13,25,-27,25xm118,-280v7,0,12,-5,12,-12v0,-7,-5,-13,-12,-13v-7,0,-11,6,-11,13v0,7,4,12,11,12","w":236,"k":{"X":3}},"\u00c6":{"d":"4,0r0,-22v9,0,13,0,17,-8r85,-223r149,0v25,-2,22,23,22,47r-24,0v-1,-10,4,-25,-7,-25r-84,0r0,92r92,0r0,23r-92,0r0,86v0,7,3,8,10,8r84,0v11,0,7,-15,8,-25r24,0v0,23,3,47,-22,47r-104,0v-18,0,-25,-4,-25,-22r0,-94r-57,0r-36,95v-6,21,-17,22,-40,21xm88,-139r49,0r0,-92r-15,0","w":296},"\u00c7":{"d":"14,-129v0,-73,54,-128,125,-128v43,0,106,16,94,74r-23,0v8,-40,-37,-51,-71,-51v-56,0,-99,44,-99,105v0,60,41,110,99,110v52,0,84,-36,84,-36r15,18v0,0,-34,40,-96,41r-3,16v15,2,25,11,25,25v0,28,-32,32,-52,27r0,-17v6,2,36,6,33,-10v1,-9,-14,-15,-26,-12r7,-29v-67,-6,-112,-63,-112,-133","w":249,"k":{"Y":4,"\u00dd":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\"":-8,"'":-8,")":-9,"]":-9,"|":-9,"}":-9}},"\u00c8":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm95,-271r-31,-43r27,0r25,43r-21,0","w":200,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"\u00c9":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm95,-271r25,-43r28,0r-32,43r-21,0","w":200,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"\u00ca":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm63,-271r30,-43r25,0r30,43r-22,0v-7,-9,-12,-21,-21,-29r-19,29r-23,0","w":200,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"\u00cb":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-2,22,23,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,47,-22,47r-110,0v-15,0,-21,-7,-21,-22xm122,-283r0,-31r22,0r0,31r-22,0xm68,-283r0,-31r22,0r0,31r-22,0","w":200,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"\u00cc":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm42,-271r-32,-43r28,0r25,43r-21,0","w":105},"\u00cd":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm42,-271r25,-43r27,0r-31,43r-21,0","w":105},"\u00ce":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm10,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":105},"\u00cf":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0xm69,-283r0,-31r21,0r0,31r-21,0xm15,-283r0,-31r21,0r0,31r-21,0","w":105},"\u00d0":{"d":"39,-22r0,-94r-18,0r0,-22r18,0r0,-93r-24,0r0,-22r102,0v76,0,127,46,127,126v0,103,-74,127,-184,127v-15,0,-21,-7,-21,-22xm64,-30v3,16,34,5,50,8v62,0,103,-37,103,-105v0,-86,-62,-112,-153,-104r0,93r59,0r0,22r-59,0r0,86","w":257,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d1":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v10,13,18,34,21,33v-4,-54,0,-132,-2,-191v-1,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-23,0r-129,-180v-9,-12,-21,-33,-21,-33v4,54,0,132,2,191v1,26,-25,22,-49,22xm84,-272v0,-28,11,-42,33,-42v24,0,30,26,46,26v12,0,14,-16,14,-25r19,0v0,28,-11,42,-33,42v-24,0,-29,-25,-46,-25v-12,0,-14,15,-14,24r-19,0","w":273,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2}},"\u00d2":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm131,-271r-32,-43r28,0r25,43r-21,0","w":284,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d3":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm131,-271r25,-43r27,0r-31,43r-21,0","w":284,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d4":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm99,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":284,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d5":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm85,-272v0,-28,11,-42,33,-42v24,0,29,26,45,26v12,0,15,-16,15,-25r19,0v0,28,-12,42,-34,42v-24,0,-28,-25,-45,-25v-12,0,-15,15,-15,24r-18,0","w":284,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d6":{"d":"14,-128v0,-73,57,-129,129,-129v72,0,128,56,128,129v0,74,-56,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v57,0,102,-48,102,-109v0,-60,-45,-106,-102,-106v-57,0,-103,46,-103,106xm158,-283r0,-31r21,0r0,31r-21,0xm104,-283r0,-31r21,0r0,31r-21,0","w":284,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d7":{"d":"17,-15r78,-87r-78,-88r15,-14r77,86r77,-86r15,14r-78,88r78,87r-15,15r-77,-87r-77,87"},"\u00d8":{"d":"42,-2r17,-25v-28,-24,-45,-60,-45,-101v0,-99,111,-163,197,-110r17,-24r15,11r-17,23v28,24,46,59,46,100v0,100,-112,167,-198,112r-17,25xm75,-47r122,-171v-68,-44,-157,9,-157,90v0,33,14,62,35,81xm89,-36v68,46,157,-10,157,-92v0,-32,-14,-60,-35,-79","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d9":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm119,-271r-32,-43r28,0r25,43r-21,0","w":258,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"\u00da":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm119,-271r25,-43r27,0r-31,43r-21,0","w":258,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"\u00db":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm87,-271r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":258,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"\u00dc":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v0,0,49,-4,49,22r0,143v0,42,27,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-26,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91xm146,-283r0,-31r21,0r0,31r-21,0xm92,-283r0,-31r21,0r0,31r-21,0","w":258,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"\u00dd":{"d":"94,0r0,-110r-68,-111v-6,-10,-10,-10,-22,-10r0,-22v23,0,31,-1,44,20r59,100v13,-27,41,-72,58,-100v13,-21,21,-20,45,-20r0,22v-11,0,-18,0,-23,10r-68,111r0,110r-25,0xm96,-271r25,-43r28,0r-32,43r-21,0","w":213,"k":{" ":13,"T":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u00ad":22,"\"":-7,"'":-7,",":29,".":29,"A":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00c6":29,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"J":13,"z":11,"\u00ab":7,"\u00bb":7,"M":6,"N":6,"s":17}},"\u00de":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v0,0,51,-4,49,22r0,23v75,-6,136,7,136,77v0,69,-61,84,-136,77r0,54r-25,0xm64,-77v56,3,110,2,110,-54v0,-57,-53,-58,-110,-55r0,109","w":210},"\u00df":{"d":"7,0r0,-21v10,0,23,3,23,-8r0,-162v-6,-82,136,-85,135,-13v0,36,-40,46,-40,68v0,26,70,40,70,89v0,35,-28,51,-58,51v-50,0,-67,-16,-47,-40v0,0,20,18,45,18v18,0,36,-9,36,-30v0,-36,-71,-47,-71,-87v0,-30,40,-40,40,-68v0,-15,-13,-32,-39,-32v-23,0,-47,16,-47,46r0,167v2,25,-23,22,-47,22","w":200},"\u00e0":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm83,-210r-32,-43r28,0r25,43r-21,0","w":190,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e1":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm83,-210r25,-43r27,0r-31,43r-21,0","w":190,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e2":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm51,-210r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-19,29r-23,0","w":190,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e3":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm37,-211v0,-28,11,-42,33,-42v24,0,30,25,46,25v12,0,14,-15,14,-24r19,0v0,28,-11,42,-33,42v-24,0,-29,-26,-46,-26v-12,0,-15,16,-15,25r-18,0","w":190,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e4":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm110,-222r0,-31r21,0r0,31r-21,0xm56,-222r0,-31r21,0r0,31r-21,0","w":190,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e5":{"d":"14,-49v0,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,71,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v38,0,57,-38,55,-75v-35,0,-95,-3,-95,41xm94,-206v-14,0,-27,-11,-27,-26v0,-15,13,-25,27,-25v14,0,26,10,26,25v0,15,-12,26,-26,26xm94,-220v7,0,11,-5,11,-12v0,-7,-4,-12,-11,-12v-7,0,-12,5,-12,12v0,7,5,12,12,12","w":190,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e6":{"d":"14,-49v0,-63,73,-61,121,-61v1,-39,-13,-56,-46,-55v-13,0,-43,3,-36,27r-23,0v-8,-39,27,-47,59,-47v39,0,56,14,63,37v15,-25,39,-37,69,-37v55,2,80,44,73,95r-135,0v1,47,29,72,67,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-38,1,-65,-21,-80,-50v-3,9,-20,50,-68,50v-33,0,-63,-18,-63,-53xm161,-110r109,0v-2,-78,-104,-69,-109,0xm40,-51v0,18,13,34,40,34v37,-1,57,-36,55,-73v-41,0,-95,-5,-95,39","w":313,"k":{"T":14}},"\u00e7":{"d":"14,-90v0,-55,42,-95,96,-95v26,0,73,11,64,54r-23,0v5,-25,-22,-32,-41,-32v-39,0,-70,29,-70,73v0,45,33,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-24,29,-71,29r-3,16v15,2,25,11,25,25v0,28,-33,32,-53,27r0,-17v6,2,37,6,34,-10v1,-9,-14,-15,-26,-12r7,-30v-45,-6,-79,-43,-79,-93","w":190},"\u00e8":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm92,-210r-31,-43r27,0r25,43r-21,0","w":197,"k":{"T":14}},"\u00e9":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm92,-210r25,-43r28,0r-32,43r-21,0","w":197,"k":{"T":14}},"\u00ea":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm60,-210r30,-43r26,0r29,43r-22,0r-20,-29r-20,29r-23,0","w":197,"k":{"T":14}},"\u00eb":{"d":"14,-90v0,-59,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-38,-95,-94xm41,-109r113,0v-2,-80,-106,-69,-113,0xm120,-222r0,-31r21,0r0,31r-21,0xm66,-222r0,-31r21,0r0,31r-21,0","w":197,"k":{"T":14}},"\u00ec":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm32,-210r-31,-43r27,0r25,43r-21,0","w":90,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"\u00ed":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm32,-210r25,-43r28,0r-32,43r-21,0","w":90,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"\u00ee":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm0,-210r31,-43r24,0r31,43r-23,0v-7,-9,-12,-21,-20,-29r-20,29r-23,0","w":90,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"\u00ef":{"d":"33,-22r0,-130v1,-11,-13,-7,-23,-8r0,-21v24,0,48,-4,48,22r0,130v0,11,13,8,23,8r0,21v-24,0,-48,4,-48,-22xm54,-222r0,-31r22,0r0,31r-22,0xm9,-222r0,-31r22,0r0,31r-22,0","w":90,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"\u00f0":{"d":"96,4v-109,0,-112,-173,3,-172v37,0,50,20,53,19v-9,-25,-24,-43,-45,-57r-63,29r-5,-17r49,-23v-15,-8,-33,-14,-51,-18r7,-21v23,6,48,14,70,27r48,-21r4,17r-35,17v69,42,87,220,-35,220xm102,-147v-84,-2,-82,128,-5,129v45,0,64,-41,64,-76v0,-31,-24,-53,-59,-53","w":203},"\u00f1":{"d":"125,-162v-38,0,-69,30,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,54,1,47,41v6,-17,30,-45,72,-45v78,0,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-49,3,-47,-22v-7,-55,24,-140,-39,-140xm57,-211v0,-28,12,-42,34,-42v24,0,29,25,45,25v12,0,14,-15,14,-24r20,0v0,28,-12,42,-34,42v-24,0,-29,-26,-46,-26v-12,0,-14,16,-14,25r-19,0","k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00f2":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm99,-210r-31,-43r27,0r26,43r-22,0","w":219,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f3":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm99,-210r26,-43r27,0r-31,43r-22,0","w":219,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f4":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm68,-210r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-20,29r-22,0","w":219,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f5":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm53,-211v0,-28,12,-42,34,-42v24,0,29,25,45,25v12,0,15,-15,15,-24r19,0v0,28,-12,42,-34,42v-24,0,-29,-26,-46,-26v-12,0,-14,16,-14,25r-19,0","w":219,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f6":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,55,-43,95,-96,95v-53,0,-96,-40,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72xm127,-222r0,-31r21,0r0,31r-21,0xm73,-222r0,-31r21,0r0,31r-21,0","w":219,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f7":{"d":"93,-156r0,-27r27,0r0,27r-27,0xm18,-92r0,-21r176,0r0,21r-176,0xm93,-22r0,-27r27,0r0,27r-27,0"},"\u00f8":{"d":"35,1r14,-18v-21,-17,-35,-43,-35,-74v0,-72,82,-118,145,-81r14,-20r15,11r-14,19v63,51,23,166,-64,166v-17,0,-32,-3,-46,-11r-14,19xm62,-37r84,-116v-47,-28,-108,7,-106,62v0,22,8,41,22,54xm77,-26v49,24,104,-11,103,-65v0,-20,-8,-38,-21,-51","w":219,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f9":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm95,-210r-31,-43r27,0r26,43r-22,0","w":217,"k":{"T":14}},"\u00fa":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm95,-210r26,-43r27,0r-31,43r-22,0","w":217,"k":{"T":14}},"\u00fb":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm64,-210r30,-43r25,0r30,43r-23,0v-7,-9,-12,-21,-20,-29r-20,29r-22,0","w":217,"k":{"T":14}},"\u00fc":{"d":"91,4v-75,0,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,49,-4,47,21v7,56,-24,141,40,141v74,0,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-8,3,-14,0,-13v-7,18,-31,45,-71,45xm123,-222r0,-31r21,0r0,31r-21,0xm69,-222r0,-31r21,0r0,31r-21,0","w":217,"k":{"T":14}},"\u00fd":{"d":"14,40v0,0,12,14,27,14v26,0,35,-34,45,-55r-64,-151v-4,-7,-8,-8,-16,-8r0,-21v22,0,31,1,39,20r53,132v13,-43,36,-90,51,-132v7,-20,17,-21,39,-20r0,21v-8,0,-12,1,-16,8r-78,190v-9,23,-28,38,-52,38v-41,0,-45,-17,-28,-36xm86,-210r25,-43r27,0r-31,43r-21,0","w":194,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u00ad":6,",":16,".":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"\u00fe":{"d":"30,72r0,-296v0,-11,-13,-8,-23,-8r0,-21v24,0,48,-4,48,22v0,26,-3,56,0,80v11,-21,30,-34,61,-34v49,0,79,38,79,94v0,56,-30,95,-79,95v-48,0,-59,-35,-62,-34v2,29,1,70,1,102r-25,0xm54,-90v0,53,29,72,59,72v34,0,57,-29,57,-73v0,-44,-23,-72,-57,-72v-32,0,-59,20,-59,73","w":210,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00ff":{"d":"14,40v0,0,12,14,27,14v26,0,35,-34,45,-55r-64,-151v-4,-7,-8,-8,-16,-8r0,-21v22,0,31,1,39,20r53,132v13,-43,36,-90,51,-132v7,-20,17,-21,39,-20r0,21v-8,0,-12,1,-16,8r-78,190v-9,23,-28,38,-52,38v-41,0,-45,-17,-28,-36xm113,-222r0,-31r21,0r0,31r-21,0xm59,-222r0,-31r21,0r0,31r-21,0","w":194,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u00ad":6,",":16,".":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2008 by Jos Buivenga/exljbris. All rights reserved.
 * 
 * Trademark:
 * Museo is a trademark of Jos Buivenga/exljbris.
 * 
 * Full name:
 * Museo-500
 * 
 * Description:
 * Copyright (c) 2008 by Jos Buivenga/exljbris. All rights reserved.
 * 
 * Manufacturer:
 * Jos Buivenga
 * 
 * Designer:
 * Jos Buivenga
 * 
 * Vendor URL:
 * http://www.josbuivenga.demon.nl
 */
Cufon.registerFont({"w":220,"face":{"font-family":"Museo 500","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-7 -321 342 76","underline-thickness":"18","underline-position":"-18","stemh":"31","stemv":"35","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":96,"k":{"\u00dd":13,"Y":13,"W":8,"V":8,"T":7,".":18,",":18}},"\u00a0":{"w":96},"!":{"d":"41,-70r-2,-184r36,0r-3,184r-31,0xm39,0r0,-35r36,0r0,35r-36,0","w":113},"\"":{"d":"73,-191r0,-67r27,0r0,67r-27,0xm22,-191r0,-67r28,0r0,67r-28,0","w":122,"k":{"X":-7,"4":18,"T":-7,"Y":-7,"\u00dd":-7,"V":-7,"W":-7,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"J":25,"M":8,"N":8,"s":4,"Z":-5}},"#":{"d":"48,0r12,-69r-47,0r5,-26r47,0r10,-61r-46,0r4,-26r47,0r13,-72r29,0r-13,72r56,0r12,-72r30,0r-13,72r47,0r-4,26r-47,0r-11,61r47,0r-5,26r-46,0r-13,69r-29,0r12,-69r-56,0r-12,69r-29,0xm94,-95r56,0r11,-61r-56,0","w":254},"$":{"d":"15,-45r26,-21v0,0,20,38,61,38v26,0,44,-16,44,-38v0,-54,-123,-45,-123,-127v0,-33,27,-59,66,-64r0,-34r27,0r0,33v33,3,67,20,59,67r-33,0v4,-25,-13,-35,-38,-35v-27,0,-44,15,-44,33v0,53,122,40,122,126v0,35,-25,65,-66,70r0,34r-27,0r0,-33v-51,-6,-74,-49,-74,-49","w":196,"k":{"7":7}},"%":{"d":"76,-152v-30,0,-55,-23,-55,-53v0,-29,25,-53,55,-53v30,0,54,24,54,53v0,30,-24,53,-54,53xm27,0r194,-254r34,0r-195,254r-33,0xm76,-179v15,0,26,-11,26,-26v0,-15,-11,-27,-26,-27v-15,0,-27,12,-27,27v0,15,12,26,27,26xm152,-49v0,-29,23,-53,54,-53v30,0,55,24,55,53v0,30,-25,53,-55,53v-31,0,-54,-23,-54,-53xm180,-49v0,15,11,27,26,27v15,0,27,-12,27,-27v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27","w":281},"&":{"d":"104,4v-89,0,-121,-111,-44,-140v1,-3,-30,-11,-33,-57v-3,-50,58,-74,108,-62r-9,29v-27,-10,-63,7,-63,37v0,16,8,40,47,40r46,0r0,-33r34,0r0,33r32,0r0,31r-32,0v7,74,-21,122,-86,122xm52,-73v0,24,20,45,52,45v43,0,57,-39,52,-90v-50,-3,-104,0,-104,45","w":229},"'":{"d":"22,-191r0,-67r28,0r0,67r-28,0","w":72,"k":{"X":-7,"4":18,"T":-7,"Y":-7,"\u00dd":-7,"V":-7,"W":-7,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4,"J":25,"M":8,"N":8,"s":4,"Z":-5}},"(":{"d":"72,34v-54,-83,-57,-216,-1,-299r30,0v-55,92,-50,206,2,299r-31,0","w":118,"k":{"j":-7,"4":14}},")":{"d":"16,34v52,-93,57,-207,2,-299r30,0v56,83,53,216,-1,299r-31,0","w":118},"*":{"d":"58,-118r-26,-19r32,-40r-49,-14r9,-30r48,18r-2,-51r33,0r-3,51r48,-18r10,30r-50,14r32,40r-26,19v-10,-14,-17,-30,-28,-43","w":172},"+":{"d":"15,-89r0,-28r81,0r0,-88r29,0r0,88r81,0r0,28r-81,0r0,89r-29,0r0,-89r-81,0","k":{"7":6}},",":{"d":"30,-38r36,0r-31,74r-27,0","w":86,"k":{"9":2,"7":6,"6":4,"4":5,"0":7,"T":25,"Y":29,"\u00dd":29,"V":25,"W":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u00ad":28,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"J":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00ab":18,"\u00bb":18}},"-":{"d":"25,-87r0,-31r105,0r0,31r-105,0","w":155,"k":{"x":8,"X":4,"9":12,"7":23,"5":9,"3":14,"1":11}},"\u00ad":{"d":"25,-87r0,-31r105,0r0,31r-105,0","w":155,"k":{"T":22,"Y":22,"\u00dd":22,"V":11,"W":11,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00c7":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"\u00d6":-5,"\u00d8":-5,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"z":6,"S":8,"Z":4}},".":{"d":"25,0r0,-37r36,0r0,37r-36,0","w":86,"k":{"9":2,"7":6,"6":4,"4":5,"0":7,"T":25,"Y":29,"\u00dd":29,"V":25,"W":25,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u00ad":28,"@":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"\u00e7":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u00f8":5,"J":-9,"B":7,"D":7,"E":7,"F":7,"H":7,"K":7,"L":7,"P":7,"R":7,"\u00c8":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00ab":18,"\u00bb":18}},"\/":{"d":"0,15r92,-283r31,0r-92,283r-31,0","w":124,"k":{"7":-5}},"0":{"d":"109,4v-68,0,-90,-58,-90,-131v0,-73,22,-131,90,-131v68,0,90,58,90,131v0,73,-22,131,-90,131xm109,-28v41,0,54,-44,54,-99v0,-55,-13,-99,-54,-99v-42,0,-53,44,-53,99v0,55,11,99,53,99","w":218,"k":{".":14,",":14,"\u00b0":4,"8":4,"7":9,"3":3,"2":4,"1":5}},"1":{"d":"23,0r0,-31r56,0r-1,-180v-3,8,-26,30,-35,38r-22,-22r61,-59r33,0r0,223r55,0r0,31r-147,0","w":181,"k":{"-":18,"'":22,"\"":22,"\u00b0":25,"9":4,"8":3,"7":4,"6":4,"5":3,"4":6,"3":1,"0":5,"\/":-9,"%":9}},"2":{"d":"14,-29v0,-94,129,-87,129,-156v0,-23,-18,-40,-45,-40v-28,0,-42,10,-39,35r-33,0v-10,-51,35,-67,74,-68v46,0,80,29,80,73v0,87,-129,88,-129,147v0,5,3,7,9,7r90,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-130,0v-20,0,-24,-8,-24,-29","w":206,"k":{"-":8,"9":6,"7":1,"4":7,"0":2}},"3":{"d":"9,-31r20,-27v0,0,25,28,64,28v27,0,51,-19,51,-46v-1,-34,-33,-49,-73,-45r-8,-19r68,-84v-13,1,-53,1,-71,1v-11,0,-6,15,-7,24r-34,0v1,-25,-7,-55,22,-55r134,0r0,23r-67,80v33,4,72,26,72,75v0,42,-34,80,-87,80v-53,0,-84,-35,-84,-35","w":194,"k":{"9":2,"7":2}},"4":{"d":"6,-67r0,-23r115,-164r41,0r0,156r39,0r0,31r-39,0r0,67r-36,0r0,-67r-120,0xm126,-98r1,-114v-21,37,-57,81,-82,115v18,-2,58,-1,81,-1","w":207,"k":{".":4,",":4,"\u00b0":7,"9":4,"4":-11,"2":-7,"1":3}},"5":{"d":"18,-31r20,-27v0,0,20,28,59,28v32,0,55,-22,55,-50v0,-32,-28,-52,-61,-52v-44,1,-43,22,-63,6r11,-105v3,-43,73,-17,111,-23v29,-4,23,29,23,55r-33,0v-1,-10,3,-25,-8,-24v-20,3,-54,-9,-61,8v-1,19,-7,42,-6,59v0,0,14,-7,33,-7v55,0,91,37,91,83v0,45,-37,84,-92,84v-53,0,-79,-35,-79,-35","w":209,"k":{".":5,",":5,"\u00b0":7,"9":1,"7":6,"5":3,"3":3,"2":2,"1":7,"0":3}},"6":{"d":"109,4v-54,0,-95,-46,-95,-117v0,-66,35,-145,114,-145v30,0,49,10,49,10r-11,31v0,0,-16,-9,-36,-9v-45,-1,-75,45,-76,87v41,-51,136,-14,136,58v0,50,-33,85,-81,85xm51,-98v0,32,25,70,57,70v30,0,47,-23,47,-53v0,-31,-19,-52,-52,-52v-28,0,-52,17,-52,35","w":204,"k":{"-":5,"9":4,"7":3,"5":2,"3":2,"0":3}},"7":{"d":"23,0r122,-224v-24,2,-67,1,-95,1v-11,0,-7,14,-8,24r-33,0v1,-25,-7,-55,22,-55r155,0r0,24r-123,230r-40,0","w":189,"k":{"\u00bb":6,"\u00ab":6,">":14,"=":14,"<":14,";":5,":":5,".":43,"-":19,",":43,"+":14,"\u00b0":-11,"?":-6,"9":3,"8":3,"7":-2,"5":1,"4":21,"2":3,"1":1,"0":7,"\/":22}},"8":{"d":"15,-73v0,-44,43,-63,42,-66v0,0,-31,-16,-31,-51v0,-35,28,-68,79,-68v49,0,79,28,79,68v0,37,-30,61,-30,61v69,34,36,133,-50,133v-48,0,-89,-30,-89,-77xm61,-190v-1,27,35,38,61,46v9,0,27,-21,27,-44v0,-23,-18,-38,-44,-38v-28,0,-44,16,-44,36xm155,-71v0,-29,-45,-43,-69,-51v-9,0,-35,20,-35,47v0,28,25,47,53,47v27,0,51,-18,51,-43","w":207,"k":{"9":3,"7":4,"4":-1,"0":4}},"9":{"d":"27,-6r11,-31v0,0,17,9,37,9v45,1,74,-46,75,-88v-41,53,-136,14,-136,-58v0,-50,33,-84,81,-84v54,0,95,46,95,117v0,66,-35,145,-114,145v-30,0,-49,-10,-49,-10xm101,-121v28,0,52,-18,52,-36v0,-33,-25,-69,-57,-69v-30,0,-47,22,-47,52v0,30,19,53,52,53","w":204,"k":{".":14,",":14,"8":2,"7":5,"3":2,"2":2,"1":1,"0":2}},":":{"d":"35,-145r0,-37r36,0r0,37r-36,0xm35,0r0,-37r36,0r0,37r-36,0","w":105},";":{"d":"35,-145r0,-37r36,0r0,37r-36,0xm16,36r19,-74r34,0r-26,74r-27,0","w":105},"<":{"d":"24,-91r0,-23r168,-75r0,32r-129,55r129,54r0,32","k":{"7":6}},"=":{"d":"24,-122r0,-28r172,0r0,28r-172,0xm24,-54r0,-28r172,0r0,28r-172,0","k":{"7":6}},">":{"d":"27,-16r0,-32r128,-55r-128,-54r0,-32r167,75r0,23","k":{"7":6}},"?":{"d":"54,-70v-10,-68,59,-77,61,-121v0,-20,-17,-35,-41,-35v-23,0,-41,15,-41,15r-20,-25v0,0,24,-23,63,-23v41,0,76,26,76,66v-1,66,-73,61,-64,123r-34,0xm53,0r0,-35r36,0r0,35r-36,0","w":163},"@":{"d":"14,-87v0,-74,59,-133,132,-133v116,1,91,79,93,175r26,0r0,26r-98,0v-45,0,-74,-32,-74,-68v-1,-49,50,-75,113,-67v-1,-21,-21,-37,-58,-37v-56,0,-99,48,-99,104v0,57,42,104,103,104r0,28v-81,0,-138,-59,-138,-132xm128,-87v0,37,36,47,78,42r0,-85v-42,-4,-79,5,-78,43","w":274},"A":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113","w":239,"k":{"X":3}},"B":{"d":"37,-23r0,-200r-24,0r0,-31v80,1,183,-16,183,65v0,29,-17,45,-32,55v27,8,42,34,42,62v-1,72,-71,76,-146,72v-16,0,-23,-7,-23,-23xm73,-147v42,2,86,3,86,-39v0,-41,-45,-38,-86,-37r0,76xm73,-39v4,16,36,8,53,8v27,0,43,-17,43,-43v2,-47,-48,-46,-96,-44r0,79","w":222,"k":{"\u00dd":9,"w":2,"v":2,"Y":9,"W":4,"V":4,"T":7,"'":2,"\"":2}},"C":{"d":"12,-129v0,-73,55,-129,128,-129v42,1,108,16,95,79r-33,0v7,-37,-30,-46,-62,-46v-51,0,-90,39,-90,96v0,55,39,99,91,99v50,0,81,-34,81,-34r19,26v0,0,-36,42,-100,42v-76,0,-129,-58,-129,-133","w":252,"k":{"Y":4,"\u00dd":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\"":-8,"'":-8,")":-8,"]":-8,"|":-8,"}":-8}},"D":{"d":"37,-23r0,-200r-23,0r0,-31r103,0v77,0,128,47,128,127v0,103,-75,127,-185,127v-16,0,-23,-7,-23,-23xm73,-39v1,15,27,8,41,8v57,0,94,-33,94,-96v-1,-78,-54,-103,-135,-96r0,184","w":257,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"E":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23","w":204,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"F":{"d":"37,0r0,-223r-23,0r0,-31r140,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-63,0r0,83r87,0r0,31r-87,0r0,109r-36,0","w":184,"k":{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":17,"\u00c5":17,"\u00c4":17,"\u00c3":17,"\u00c2":17,"\u00c1":17,"\u00c0":17,"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"a":5,"Q":4,"O":4,"N":3,"M":3,"J":6,"G":4,"C":4,"A":17,"@":2,".":36,",":36,"'":-7,"\"":-7}},"G":{"d":"13,-128v0,-73,55,-130,128,-130v61,0,90,31,90,31r-20,26v0,0,-28,-24,-70,-24v-51,0,-91,40,-91,97v0,59,41,98,92,98v45,0,73,-31,73,-31v0,-19,5,-40,-24,-34r0,-31v26,1,57,-7,57,23r0,103r-32,0r0,-27v0,0,-29,31,-80,31v-68,0,-123,-53,-123,-132","w":264,"k":{"T":6,"U":3,"\u00d9":3,"\u00da":3,"\u00db":3,"\u00dc":3,"a":-3,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00e4":-3,"\u00e5":-3,"\u00e6":-3,"\u00ad":-7,"\"":2,"'":2,"@":-3,"c":-3,"d":-3,"e":-3,"g":-3,"o":-3,"q":-3,"\u00e7":-3,"\u00e8":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00f2":-3,"\u00f3":-3,"\u00f4":-3,"\u00f5":-3,"\u00f6":-3,"\u00f8":-3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,":":-10,";":-10,"B":2,"D":2,"E":2,"F":2,"H":2,"K":2,"L":2,"P":2,"R":2,"\u00c8":2,"\u00c9":2,"\u00ca":2,"\u00cb":2}},"H":{"d":"37,0r0,-215v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,89r129,0r0,-89v-3,-31,33,-22,60,-23r0,31v-10,1,-24,-3,-24,8r0,215r-36,0r0,-112r-129,0r0,112r-36,0","w":275,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2}},"I":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0","w":114},"J":{"d":"84,4v-41,0,-81,-29,-76,-90r36,0v-3,38,17,56,40,56v20,0,39,-12,39,-45r0,-140v0,-5,-2,-8,-7,-8r-63,0r0,-31r83,0v16,0,23,7,23,23r0,158v0,55,-38,77,-75,77","w":187,"k":{",":4,".":4,"A":4,"\u00c0":4,"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,":":6,";":6}},"K":{"d":"37,0r0,-215v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,84v18,-1,38,4,45,-9r57,-98r40,0v-25,39,-47,88,-76,122v18,16,38,65,53,93v4,10,12,8,24,8r0,31v-27,0,-44,3,-55,-19r-44,-88v-6,-14,-26,-9,-44,-10r0,117r-36,0","w":219,"k":{"x":2,"C":8,"G":8,"O":8,"Q":8,"\u00c7":8,"\u00d2":8,"\u00d3":8,"\u00d4":8,"\u00d5":8,"\u00d6":8,"\u00d8":8,"v":11,"w":11,"y":7,"\u00fd":7,"\u00ff":7,"\u00ad":13,")":-9,"]":-9,"|":-9,"}":-9,",":-7,".":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,":":-11,";":-11,"z":4,"\u00ab":3,"\u00bb":3}},"L":{"d":"37,-23r0,-192v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,192v0,5,3,8,8,8r70,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-109,0v-16,0,-23,-7,-23,-23","w":195,"k":{"*":27,"T":36,"Y":29,"\u00dd":29,"V":14,"W":14,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"U":13,"\u00d9":13,"\u00da":13,"\u00db":13,"\u00dc":13,"v":17,"w":17,"y":14,"\u00fd":14,"\u00ff":14,"\u00ad":9,"\"":29,"'":29,",":-4,".":-4,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"m":2,"n":2,"p":2,"r":2,"u":2,"\u00f1":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"B":11,"D":11,"E":11,"F":11,"H":11,"K":11,"L":11,"P":11,"R":11,"\u00c8":11,"\u00c9":11,"\u00ca":11,"\u00cb":11,"b":5,"h":5,"k":5,"l":5}},"M":{"d":"7,0r0,-31v9,0,19,2,20,-8r18,-215r37,0r73,167v18,-52,50,-116,72,-167r37,0r18,215v-1,10,10,8,19,8r0,31v-26,-1,-53,6,-55,-23r-12,-172v-13,46,-45,105,-64,149r-31,0r-51,-111v-7,-13,-12,-39,-15,-38v1,52,-10,119,-10,172v0,29,-30,23,-56,23","w":308,"k":{"\u00fc":-1,"\u00fb":-1,"\u00fa":-1,"\u00f9":-1,"\u00f1":-1,"u":-1,"r":-1,"p":-1,"n":-1,"m":-1,"T":6,"'":11,"\"":11}},"N":{"d":"14,0r0,-31v10,0,23,3,23,-8r0,-215r33,0r113,161v8,11,13,24,22,34v-6,-46,-1,-119,-3,-172v-1,-30,33,-22,60,-23r0,31v-10,1,-24,-3,-24,8r0,215r-32,0r-113,-161v-8,-11,-13,-24,-22,-34v4,47,0,119,2,172v1,30,-33,22,-59,23","w":275,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2}},"O":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"P":{"d":"37,0r0,-223r-23,0r0,-31r112,0v46,0,79,31,79,79v0,69,-57,89,-132,81r0,94r-36,0xm73,-125v51,3,95,1,95,-50v0,-50,-45,-50,-95,-48r0,98","w":213,"k":{"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00c6":21,"\u00c5":21,"\u00c4":21,"\u00c3":21,"\u00c2":21,"\u00c1":21,"\u00c0":21,"z":2,"s":4,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,"N":3,"M":3,"J":6,"A":21,"@":7,".":38,",":38,"'":-2,"\"":-2}},"Q":{"d":"12,-129v0,-73,57,-129,130,-129v110,0,170,133,101,213r30,28r-22,23r-29,-29v-82,67,-210,1,-210,-106xm50,-129v0,56,40,99,92,99v33,0,54,-17,54,-17r-28,-28r21,-23r28,29v46,-60,3,-156,-75,-156v-52,0,-92,41,-92,96","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"R":{"d":"37,0r0,-223r-23,0r0,-31r111,0v45,0,76,28,76,74v0,42,-28,64,-46,68v17,15,29,51,41,73v4,10,12,8,23,8r0,31v-26,0,-42,2,-53,-19r-35,-68v-7,-21,-34,-12,-58,-14r0,101r-36,0xm73,-132v47,2,90,2,90,-46v0,-48,-43,-47,-90,-45r0,91","w":222,"k":{"T":8,"Y":11,"\u00dd":11,"V":2,"W":2,"C":1,"G":1,"O":1,"Q":1,"\u00c7":1,"\u00d2":1,"\u00d3":1,"\u00d4":1,"\u00d5":1,"\u00d6":1,"\u00d8":1,",":-7,".":-7,"A":-4,"\u00c0":-4,"\u00c1":-4,"\u00c2":-4,"\u00c3":-4,"\u00c4":-4,"\u00c5":-4,"\u00c6":-4,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"S":{"d":"12,-33r21,-26v0,0,26,31,64,31v24,0,44,-15,44,-38v0,-53,-123,-45,-123,-124v0,-38,33,-68,81,-68v34,0,84,15,73,67r-33,0v4,-26,-15,-35,-40,-35v-27,0,-44,15,-44,34v0,51,122,40,122,124v0,39,-31,72,-81,72v-54,0,-84,-37,-84,-37","w":191,"k":{"\u00ad":-3,"\"":-3,"'":-3,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-2,"n":-2,"p":-2,"r":-2,"u":-2,"\u00f1":-2,"\u00f9":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"z":2}},"T":{"d":"96,0r0,-223v-23,5,-67,-16,-59,24r-32,0v1,-25,-8,-55,22,-55r175,0v30,-4,21,30,22,55r-32,0v-1,-10,3,-24,-8,-24r-52,0r0,223r-36,0","w":228,"k":{"\u00ef":-11,"j":14,"i":12," ":7,"Y":-4,"\u00dd":-4,"V":-3,"W":-3,"C":7,"G":7,"O":7,"Q":7,"\u00c7":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"\u00d6":7,"\u00d8":7,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u00e5":22,"\u00e6":22,"v":22,"w":22,"y":23,"\u00fd":23,"\u00ff":23,"\u00ad":22,"\"":-7,"'":-7,",":25,".":25,"A":31,"\u00c0":31,"\u00c1":31,"\u00c2":31,"\u00c3":31,"\u00c4":31,"\u00c5":31,"\u00c6":31,"@":27,"c":27,"d":27,"e":27,"g":27,"o":27,"q":27,"\u00e7":27,"\u00e8":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00f2":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"\u00f6":27,"\u00f8":27,"m":16,"n":16,"p":16,"r":16,"u":16,"\u00f1":16,"\u00f9":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"J":18,"z":22,"\u00ab":11,"\u00bb":11,"M":4,"N":4,"s":17}},"U":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93","w":262,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"V":{"d":"101,0r-80,-215v-2,-8,-8,-8,-17,-8r0,-31v26,0,42,-2,50,21r56,156v6,14,8,36,11,35v15,-63,46,-130,65,-191v7,-24,24,-21,50,-21r0,31v-9,0,-15,0,-17,8r-80,215r-38,0","w":240,"k":{" ":8,"T":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u00ad":11,"\"":-7,"'":-7,",":25,".":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"J":11,"M":2,"N":2,"S":2}},"W":{"d":"80,0r-56,-215v-3,-8,-9,-8,-18,-8r0,-31v26,0,46,-3,52,21r45,190r57,-210r33,0r53,210r45,-190v4,-24,25,-21,51,-21r0,31v-9,0,-15,0,-17,8r-56,215r-42,0r-51,-195r-54,195r-42,0","w":348,"k":{" ":8,"T":-3,"C":4,"G":4,"O":4,"Q":4,"\u00c7":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u00d8":4,"a":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u00e6":17,"\u00ad":11,"\"":-7,"'":-7,",":25,".":25,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"@":19,"c":19,"d":19,"e":19,"g":19,"o":19,"q":19,"\u00e7":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u00eb":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"m":7,"n":7,"p":7,"r":7,"u":7,"\u00f1":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"J":11,"M":2,"N":2,"S":2}},"X":{"d":"4,0r80,-131r-52,-83v-7,-11,-13,-9,-26,-9r0,-31v27,0,43,-3,56,19r45,78v7,-16,34,-58,44,-78v11,-22,28,-19,55,-19r0,31v-13,0,-20,-2,-26,9r-51,83r80,131r-41,0r-63,-106v-14,29,-43,76,-61,106r-40,0","w":212,"k":{"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":3,"\u00c5":3,"\u00c4":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u00c0":3,"}":-7,"|":-7,"q":3,"o":3,"g":3,"e":3,"d":3,"c":3,"]":-7,"Q":4,"O":4,"G":4,"C":4,"A":3,"@":3,"-":4,")":-7,"'":-7,"\"":-7}},"Y":{"d":"91,0r0,-111r-65,-103v-6,-10,-10,-9,-22,-9r0,-31v26,0,37,-3,50,19r55,93v11,-22,39,-68,54,-93v12,-22,24,-19,50,-19r0,31v-12,0,-16,-1,-22,9r-64,103r0,111r-36,0","w":217,"k":{" ":13,"T":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u00ad":22,"\"":-7,"'":-7,",":29,".":29,"A":28,"\u00c0":28,"\u00c1":28,"\u00c2":28,"\u00c3":28,"\u00c4":28,"\u00c5":28,"\u00c6":28,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"J":13,"z":11,"\u00ab":7,"\u00bb":7,"M":6,"N":6,"s":17}},"Z":{"d":"6,0r0,-24r145,-200v-26,2,-71,1,-101,1v-11,0,-7,14,-8,24r-33,0v1,-26,-6,-55,23,-55r163,0r0,23r-125,177v-10,15,-19,21,-19,24v28,-2,76,-1,108,-1v11,0,7,-14,8,-24r34,0v0,26,5,55,-24,55r-171,0","w":209,"k":{"\u00ad":8,"\u00ab":4,"\u00bb":4}},"[":{"d":"35,11r0,-253v-3,-30,33,-22,59,-23r0,27v-11,1,-29,-5,-28,8r0,230v-1,13,17,7,28,8r0,26v-26,-1,-59,7,-59,-23","w":117,"k":{"j":-7,"4":14}},"\\":{"d":"93,15r-91,-283r31,0r91,283r-31,0","w":122},"]":{"d":"23,8v11,-1,29,4,29,-8r0,-230v0,-12,-18,-7,-29,-8r0,-27v26,1,60,-8,60,23r0,253v3,31,-34,22,-60,23r0,-26","w":117},"^":{"d":"25,-89r72,-165r23,0r71,165r-31,0r-52,-127r-51,127r-32,0"},"_":{"d":"2,0r193,0r0,28r-193,0r0,-28","w":197},"`":{"d":"64,-272r-34,-46r35,0r26,46r-27,0","w":136},"a":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35","w":195,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"b":{"d":"29,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23v0,24,-3,52,0,74v0,0,16,-29,59,-29v49,0,80,38,80,95v0,58,-35,95,-83,95v-43,0,-55,-31,-58,-30r1,26r-34,0xm63,-90v0,32,17,64,52,64v29,0,52,-24,52,-65v0,-40,-20,-65,-51,-65v-27,0,-53,20,-53,66","w":216,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"c":{"d":"13,-91v0,-54,39,-95,98,-95v29,0,75,12,65,58r-31,0v5,-23,-17,-28,-34,-29v-36,0,-62,27,-62,66v0,41,30,64,64,64v34,0,56,-25,56,-25r15,25v0,0,-26,31,-74,31v-57,0,-97,-40,-97,-95","w":191,"k":{"\u00ff":2,"\u00fd":2,"y":2,"l":1,"k":1,"h":1,"b":1,"T":11}},"d":{"d":"13,-91v0,-58,35,-95,83,-95v44,0,54,29,57,28v-2,-14,-1,-41,-1,-58v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23r0,193v0,11,13,8,23,8r0,30v-29,1,-62,5,-57,-29v0,0,-14,33,-59,33v-49,0,-81,-38,-81,-95xm100,-26v27,0,53,-19,53,-65v0,-32,-17,-65,-52,-65v-28,0,-52,24,-52,65v0,40,21,65,51,65","w":217},"e":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0","w":198,"k":{"T":14}},"f":{"d":"31,0r0,-154r-23,0r0,-28r23,0v1,-67,43,-79,82,-73r0,30v-22,-5,-49,3,-47,43r43,0r0,28r-43,0r0,154r-35,0","w":117,"k":{"T":-7,"a":7,"\u00e0":7,"\u00e1":7,"\u00e2":7,"\u00e3":7,"\u00e4":7,"\u00e5":7,"\u00e6":7,"\u00ad":6,")":-5,"]":-5,"|":-5,"}":-5,",":18,".":18,"@":8,"c":8,"d":8,"e":8,"g":8,"o":8,"q":8,"\u00e7":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00f2":8,"\u00f3":8,"\u00f4":8,"\u00f5":8,"\u00f6":8,"\u00f8":8,"s":3}},"g":{"d":"13,-95v0,-52,29,-91,80,-91v45,0,59,28,59,28v-6,-29,28,-24,54,-24r0,30v-9,1,-22,-3,-22,7r0,137v-1,86,-93,100,-154,68r12,-28v0,0,22,13,49,13v41,0,65,-29,58,-75v-11,18,-27,28,-54,28v-50,0,-82,-40,-82,-93xm102,-32v25,0,48,-15,48,-63v0,-48,-23,-61,-51,-61v-32,0,-50,23,-50,60v0,38,20,64,53,64","w":214},"h":{"d":"125,-154v-35,0,-62,28,-61,69r0,85r-35,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,22r0,86v8,-18,32,-40,68,-40v74,0,62,79,62,148v0,11,13,8,23,8r0,30v-26,-1,-60,6,-58,-23v-7,-50,22,-131,-34,-131","w":223,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"i":{"d":"33,-218r0,-36r31,0r0,36r-31,0xm32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23","w":99,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"j":{"d":"40,-218r0,-36r32,0r0,36r-32,0xm-7,44v22,0,47,0,47,-40r0,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-6,58,23r0,165v-4,66,-47,70,-82,67r0,-29","w":102},"k":{"d":"29,0r0,-216v0,-11,-13,-8,-23,-8r0,-30v25,2,58,-8,58,21r0,118v15,0,27,3,35,-8r42,-59r40,0v-19,25,-41,62,-63,82v14,9,29,46,40,63v3,9,15,7,26,7r0,30v-26,-1,-44,3,-55,-17r-33,-61v-7,-11,-18,-7,-32,-8r0,86r-35,0","w":189,"k":{"\u00ff":4,"\u00fd":4,"\u00f8":3,"\u00f6":3,"\u00f5":3,"\u00f4":3,"\u00f3":3,"\u00f2":3,"\u00eb":3,"\u00ea":3,"\u00e9":3,"\u00e8":3,"\u00e7":3,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e1":2,"\u00e0":2,"y":4,"w":4,"v":4,"q":3,"o":3,"l":3,"k":3,"h":3,"g":3,"e":3,"d":3,"c":3,"b":3,"a":2,"T":7,"@":3}},"l":{"d":"30,-23r0,-193v0,-11,-13,-8,-23,-8r0,-30v26,1,58,-7,58,23r0,193v0,10,12,8,22,8r0,30v-26,-1,-57,7,-57,-23","w":96},"m":{"d":"120,-155v-62,1,-55,87,-54,155r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v33,-2,63,-3,57,37v13,-46,109,-60,117,0v12,-20,34,-41,65,-41v71,0,60,80,60,148v0,11,13,8,23,8r0,30v-26,-1,-60,7,-57,-23v-6,-49,20,-132,-33,-132v-61,0,-56,87,-54,155r-34,0r0,-109v0,-24,-4,-46,-32,-46","w":337,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"n":{"d":"126,-154v-36,0,-60,27,-60,69r0,85r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v32,-1,65,-5,56,37v7,-16,29,-41,69,-41v74,0,62,79,62,148v0,11,13,8,23,8r0,30v-26,-1,-60,7,-57,-23v-6,-50,22,-131,-35,-131","w":225,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"o":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65","w":222,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"p":{"d":"31,72r0,-216v0,-11,-13,-8,-23,-8r0,-30v27,1,63,-7,55,28v0,0,16,-32,61,-32v49,0,80,38,80,95v0,58,-35,95,-83,95v-42,0,-53,-30,-56,-29v2,27,1,67,1,97r-35,0xm64,-90v0,32,18,64,52,64v29,0,52,-24,52,-65v0,-40,-21,-65,-51,-65v-27,0,-53,20,-53,66","w":217,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"q":{"d":"14,-91v0,-58,34,-95,82,-95v45,0,56,31,59,30v-7,-31,28,-26,55,-26r0,30v-10,0,-23,-3,-23,8r0,216r-35,0r0,-98v0,0,-15,30,-58,30v-49,0,-80,-38,-80,-95xm101,-26v27,0,52,-19,52,-65v0,-32,-16,-65,-51,-65v-29,0,-53,24,-53,65v0,40,21,65,52,65","w":217},"r":{"d":"131,-149v-39,-8,-65,29,-65,74r0,75r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v36,-2,66,-4,56,45v11,-30,31,-50,67,-47r0,35","w":139,"k":{"a":11,"\u00e0":11,"\u00e1":11,"\u00e2":11,"\u00e3":11,"\u00e4":11,"\u00e5":11,"\u00e6":11,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u00ad":7,",":20,".":20,"@":7,"c":7,"d":7,"e":7,"g":7,"o":7,"q":7,"\u00e7":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u00f8":7,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3,"b":4,"h":4,"k":4,"l":4}},"s":{"d":"10,-28r18,-23v0,0,22,27,55,27v17,0,31,-8,31,-24v0,-33,-99,-28,-99,-87v0,-35,31,-51,68,-51v28,0,69,10,60,52r-32,0v4,-19,-12,-24,-27,-24v-21,0,-34,7,-34,21v0,35,99,27,99,88v0,32,-29,53,-67,53v-49,0,-72,-32,-72,-32","w":163},"t":{"d":"32,-67r0,-87r-24,0r0,-28r25,0r0,-50r34,0r0,50r44,0r0,28r-44,0r0,83v3,40,24,42,47,41r0,31v-37,1,-82,-1,-82,-68","w":126,"k":{"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u00ad":5,"@":3,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"\u00e7":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u00f6":3,"\u00f8":3,"b":3,"h":3,"k":3,"l":3}},"u":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41","w":223,"k":{"T":14}},"v":{"d":"76,0r-57,-145v-2,-6,-6,-7,-14,-7r0,-30v23,0,38,-1,45,18r47,129v10,-43,32,-88,45,-129v6,-19,22,-18,45,-18r0,30v-8,0,-14,1,-16,7r-55,145r-40,0","w":191,"k":{"T":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u00ad":6,",":14,".":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"w":{"d":"68,0r-48,-145v-2,-8,-8,-7,-16,-7r0,-30v24,0,43,-3,49,19r37,128r44,-146r32,0r45,146r37,-128v5,-23,24,-19,49,-19r0,30v-8,0,-15,-1,-17,7r-47,145r-40,0r-43,-137v-11,45,-30,93,-43,137r-39,0","w":300,"k":{"T":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"\u00ad":6,",":14,".":14,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"x":{"d":"5,0r62,-94r-35,-51v-5,-9,-14,-7,-26,-7r0,-30v27,1,42,-4,54,18v8,15,22,32,29,47v18,-28,27,-76,83,-65r0,30v-11,0,-21,-2,-26,6r-35,52r61,94r-39,0r-44,-69r-44,69r-40,0","w":177,"k":{"-":8}},"y":{"d":"16,32v0,0,12,13,27,13v22,1,33,-27,40,-46r-62,-144v-4,-7,-8,-7,-16,-7r0,-30v23,0,38,-3,46,18r49,125v10,-41,31,-85,44,-125v7,-21,24,-18,48,-18r0,30v-9,0,-13,-1,-17,7r-72,178v-11,28,-32,43,-58,43v-27,0,-43,-18,-43,-18","w":196,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u00ad":6,",":16,".":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"z":{"d":"12,0r0,-20r108,-133v-14,2,-49,1,-67,1v-10,-1,-8,11,-8,20r-32,0v0,-25,-4,-50,23,-50r130,0r0,20r-108,133v17,-2,55,-1,76,-1v9,0,7,-11,7,-20r32,0v0,25,4,50,-23,50r-138,0","w":181,"k":{"v":6,"w":6,"y":5,"\u00fd":5,"\u00ff":5,"\u00ad":6,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"{":{"d":"41,-28r0,-34v0,-37,-31,-40,-31,-40r0,-30v0,0,31,-3,31,-40r0,-31v4,-61,39,-62,67,-62r0,27v-16,0,-36,-1,-36,37r0,38v0,38,-31,43,-30,46v0,0,30,9,30,46r0,41v2,38,20,38,36,38r0,27v-29,0,-62,-2,-67,-63","w":122,"k":{"j":-7,"4":14}},"|":{"d":"39,57r0,-342r30,0r0,342r-30,0","w":107,"k":{"j":-7,"4":14}},"}":{"d":"14,8v16,0,36,0,36,-38r0,-41v0,-39,31,-44,30,-47v0,0,-30,-9,-30,-45r0,-38v-2,-38,-20,-37,-36,-37r0,-27v29,0,62,1,67,62r0,31v0,37,31,40,31,40r0,30v0,0,-31,3,-31,40r0,34v-4,61,-39,63,-67,63r0,-27","w":122},"~":{"d":"22,-73v0,-42,20,-61,51,-61v38,0,41,35,68,35v19,0,25,-19,25,-34r28,0v0,42,-19,61,-50,61v-38,0,-42,-35,-69,-35v-19,0,-24,19,-24,34r-29,0"},"\u00a1":{"d":"39,-147r0,-35r35,0r0,35r-35,0xm39,72r2,-184r31,0r3,184r-36,0","w":113},"\u00a2":{"d":"93,14r0,-40v-46,-6,-73,-49,-73,-101v0,-52,27,-95,73,-101r0,-40r27,0r0,40v31,5,53,26,65,56r-32,12v-23,-65,-98,-34,-98,33v0,70,79,93,98,33r32,12v-11,27,-32,52,-65,56r0,40r-27,0","w":203},"\u00a3":{"d":"18,0r0,-31r22,0r0,-84r-16,0r0,-25r16,0v-7,-70,12,-117,78,-118v36,0,60,23,60,23r-20,24v0,0,-18,-15,-40,-15v-47,0,-43,42,-42,86r66,0r0,25r-66,0r0,84r78,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-24,55r-153,0","w":210,"k":{"7":5}},"\u00a5":{"d":"35,-73r0,-23r58,0v2,-16,-5,-23,-11,-31r-48,0r0,-22v11,-1,25,2,34,-1r-41,-65v-5,-9,-11,-8,-22,-8r0,-31v26,0,38,-2,51,19r55,92v11,-23,40,-67,54,-92v13,-22,25,-19,51,-19r0,31v-11,0,-18,-1,-23,8r-40,66r33,0r0,22r-48,0v-5,8,-11,16,-9,31r57,0r0,23r-57,0r0,73r-36,0r0,-73r-58,0","w":221,"k":{"7":-5,"4":9}},"\u00a7":{"d":"55,-40r-28,-157v0,-35,26,-61,68,-61v31,0,51,18,51,18r-16,23v0,0,-15,-12,-35,-12v-27,0,-41,21,-36,50r25,139r-29,0xm22,4r16,-24v0,0,15,13,35,13v27,0,41,-23,36,-54r-24,-135r28,0r27,156v0,36,-25,62,-67,62v-31,0,-51,-18,-51,-18","w":165},"\u00a8":{"d":"111,-281r0,-37r26,0r0,37r-26,0xm51,-281r0,-37r27,0r0,37r-27,0","w":180},"\u00a9":{"d":"13,-127v0,-73,57,-131,128,-131v72,0,129,58,129,131v0,73,-57,131,-129,131v-71,0,-128,-58,-128,-131xm40,-127v0,60,44,107,101,107v58,0,103,-47,103,-107v0,-60,-45,-107,-103,-107v-57,0,-101,47,-101,107xm73,-127v0,-38,27,-72,71,-72v41,0,58,36,58,36r-22,12v-15,-41,-80,-20,-80,24v0,26,16,47,45,47v24,0,35,-22,35,-22r22,12v0,0,-17,35,-58,35v-44,0,-71,-34,-71,-72","w":283},"\u00aa":{"d":"93,-157v-8,24,-76,26,-73,-17v2,-38,46,-38,71,-38v2,-25,-24,-31,-37,-18r0,7r-25,0v-7,-29,23,-36,40,-35v57,1,47,42,48,91v0,7,9,3,14,4r0,23v-18,-1,-39,5,-38,-17xm64,-159v17,0,26,-17,27,-35v-17,0,-44,0,-45,19v0,8,6,16,18,16xm19,-95r0,-21r113,0r0,21r-113,0","w":149},"\u00ab":{"d":"87,-102r60,-74r34,0r-59,74r59,74r-34,0xm74,-28r-59,-74r59,-74r35,0r-59,74r59,74r-35,0","w":204,"k":{"7":12,"T":11,"Y":7,"\u00dd":7}},"\u00ac":{"d":"24,-122r0,-28r172,0r0,96r-29,0r0,-68r-143,0"},"\u00ae":{"d":"13,-127v0,-73,57,-131,128,-131v72,0,129,58,129,131v0,73,-57,131,-129,131v-71,0,-128,-58,-128,-131xm40,-127v0,60,44,107,101,107v58,0,103,-47,103,-107v0,-60,-45,-107,-103,-107v-57,0,-101,47,-101,107xm97,-60r0,-116r-12,0r0,-19v48,0,107,-9,107,41v0,22,-16,32,-25,37v15,5,13,40,35,39r0,18v-16,-1,-28,3,-34,-10v-12,-16,-11,-48,-45,-42r0,52r-26,0xm123,-131v23,2,43,0,43,-23v0,-22,-20,-23,-43,-22r0,45","w":283},"\u00af":{"d":"39,-282r0,-25r91,0r0,25r-91,0","w":167},"\u02c9":{"d":"39,-282r0,-25r91,0r0,25r-91,0","w":167},"\u00b0":{"d":"71,-152v-30,0,-54,-23,-54,-53v0,-29,24,-53,54,-53v30,0,55,24,55,53v0,30,-25,53,-55,53xm71,-179v15,0,27,-11,27,-26v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27v0,15,11,26,26,26","w":142},"\u00b1":{"d":"15,-89r0,-28r81,0r0,-88r29,0r0,88r81,0r0,28r-81,0r0,89r-29,0r0,-89r-81,0xm21,34r179,0r0,28r-179,0r0,-28"},"\u00b2":{"d":"124,-211v0,51,-70,51,-78,89v14,4,44,4,59,0r0,-12r26,0v0,18,4,38,-17,38r-78,0v-13,0,-18,-4,-18,-21v-2,-54,78,-51,78,-94v0,-12,-9,-21,-24,-21v-16,0,-23,7,-21,21r-25,0v-7,-34,24,-46,47,-46v30,0,51,18,51,46","w":152},"\u00b3":{"d":"75,-93v-34,0,-56,-29,-56,-29r19,-17v0,0,15,21,37,21v15,0,27,-11,27,-26v0,-19,-19,-26,-41,-24r-4,-16r38,-47r-40,0v-5,0,-3,9,-3,13r-26,0v0,-18,-3,-36,18,-36r83,0r0,18r-37,46v21,3,40,21,40,46v0,31,-26,51,-55,51","w":152},"\u00b4":{"d":"43,-272r26,-46r35,0r-34,46r-27,0","w":139},"\u00b5":{"d":"7,-152r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v0,0,-17,41,-67,41v-26,0,-31,-11,-34,-11v3,15,3,57,3,79r-31,0r0,-216v0,-11,-13,-8,-23,-8","w":223},"\u03bc":{"d":"7,-152r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v0,0,-17,41,-67,41v-26,0,-31,-11,-34,-11v3,15,3,57,3,79r-31,0r0,-216v0,-11,-13,-8,-23,-8","w":223},"\u00b6":{"d":"100,18r0,-105v-46,0,-85,-37,-85,-84v0,-47,39,-83,85,-83r98,0r0,31r-71,0r0,241r-27,0xm149,18r0,-221r27,0r0,221r-27,0","w":215},"\u00b7":{"d":"25,-86r0,-37r36,0r0,37r-36,0","w":86},"\u2219":{"d":"25,-86r0,-37r36,0r0,37r-36,0","w":86},"\u00b8":{"d":"58,-8v5,3,16,-1,17,6r-4,20v14,2,26,11,26,26v0,30,-36,35,-57,28r0,-21v5,3,36,6,33,-9v1,-10,-15,-13,-25,-10","w":149},"\u00b9":{"d":"27,-96r0,-24r34,0r-1,-99v-2,7,-13,15,-18,20r-17,-17r39,-38r24,0r0,134r33,0r0,24r-94,0","w":152},"\u00ba":{"d":"82,-138v-34,0,-61,-26,-61,-61v0,-34,27,-59,61,-59v34,0,62,25,62,59v0,35,-28,61,-62,61xm82,-161v19,0,35,-16,35,-38v0,-21,-16,-36,-35,-36v-20,0,-36,15,-36,36v0,22,16,38,36,38xm26,-95r0,-21r113,0r0,21r-113,0","w":164},"\u00bb":{"d":"95,-28r59,-74r-59,-74r35,0r59,74r-59,74r-35,0xm22,-28r59,-74r-59,-74r35,0r59,74r-59,74r-35,0","w":204,"k":{"7":12,"T":11,"Y":7,"\u00dd":7}},"\u00bc":{"d":"102,0r104,-254r28,0r-103,254r-29,0xm28,-96r0,-24r34,0r-1,-99v-2,7,-14,15,-19,20r-16,-17r39,-38r24,0r0,134r32,0r0,24r-93,0xm186,-41r0,-16r69,-102r31,0r0,94r24,0r0,24r-24,0r0,41r-27,0r0,-41r-73,0xm221,-71v-5,6,-7,7,2,6r36,0v-1,-20,3,-44,0,-62v-12,20,-25,37,-38,56","w":329},"\u00bd":{"d":"98,0r104,-254r28,0r-103,254r-29,0xm28,-96r0,-24r34,0r-1,-99v-2,7,-14,15,-19,20r-16,-17r39,-38r24,0r0,134r32,0r0,24r-93,0xm301,-115v0,51,-70,51,-78,89v14,5,39,0,57,2v4,-1,1,-10,2,-15r26,0v0,19,4,39,-17,39r-79,0v-13,0,-17,-4,-17,-21v-2,-54,78,-50,78,-94v0,-13,-9,-21,-24,-21v-16,0,-22,6,-20,21r-26,0v-7,-34,24,-47,47,-47v30,0,51,19,51,47","w":329},"\u00be":{"d":"102,0r103,-254r29,0r-103,254r-29,0xm78,-93v-34,0,-56,-29,-56,-29r18,-17v0,0,16,21,38,21v15,0,27,-11,27,-26v0,-20,-19,-26,-42,-24r-4,-16r38,-47r-39,0v-6,0,-2,9,-3,13r-26,0v0,-18,-4,-36,17,-36r84,0r0,18r-38,46v21,3,41,21,41,46v0,31,-26,51,-55,51xm186,-41r0,-16r69,-102r31,0r0,94r24,0r0,24r-24,0r0,41r-27,0r0,-41r-73,0xm221,-71v-5,6,-7,7,2,6r36,0v-1,-20,3,-44,0,-62v-12,20,-25,37,-38,56","w":329},"\u00bf":{"d":"75,-147r0,-35r35,0r0,35r-35,0xm12,10v1,-65,71,-62,63,-122r34,0v9,67,-60,75,-61,119v0,20,17,36,41,36v23,0,41,-15,41,-15r19,25v0,0,-23,23,-62,23v-41,0,-75,-26,-75,-66","w":163},"\u00c0":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm106,-272r-34,-46r35,0r26,46r-27,0","w":239,"k":{"X":3}},"\u00c1":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm106,-272r26,-46r35,0r-34,46r-27,0","w":239,"k":{"X":3}},"\u00c2":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm72,-272r32,-46r32,0r31,46r-28,0r-19,-29r-20,29r-28,0","w":239,"k":{"X":3}},"\u00c3":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm59,-272v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,14,-14,14,-24r24,0v0,30,-13,46,-37,46v-24,0,-30,-25,-46,-25v-11,0,-15,13,-15,24r-23,0","w":239,"k":{"X":3}},"\u00c4":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm136,-281r0,-37r27,0r0,37r-27,0xm77,-281r0,-37r27,0r0,37r-27,0","w":239,"k":{"X":3}},"\u00c5":{"d":"4,0r0,-31v9,0,15,0,17,-8r80,-215r38,0r79,215v2,8,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113xm120,-267v-15,0,-29,-10,-29,-27v0,-17,14,-27,29,-27v15,0,29,10,29,27v0,17,-14,27,-29,27xm120,-282v7,0,12,-5,12,-12v0,-8,-5,-13,-12,-13v-7,0,-12,5,-12,13v0,7,5,12,12,12","w":239,"k":{"X":3}},"\u00c6":{"d":"4,0r0,-31v9,0,13,-1,17,-8r85,-215r161,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-70,0r0,79r87,0r0,31r-87,0r0,74v0,6,4,8,10,8r70,0v11,0,7,-14,8,-24r33,0v-1,26,7,55,-23,55r-109,0v-18,0,-25,-5,-25,-23r0,-90r-57,0r-35,92v-6,24,-21,21,-47,21xm98,-144r45,0r0,-79r-16,0","w":308},"\u00c7":{"d":"12,-129v0,-73,55,-129,128,-129v42,1,108,16,95,79r-33,0v7,-37,-30,-46,-62,-46v-51,0,-90,39,-90,96v0,55,38,99,90,99v51,0,82,-34,82,-34r19,26v0,0,-34,40,-97,42r-3,14v15,2,26,11,26,26v0,30,-37,35,-57,28r0,-21v5,3,36,6,33,-9v1,-10,-16,-13,-26,-10r8,-28v-68,-7,-113,-63,-113,-133","w":252,"k":{"Y":4,"\u00dd":4,"C":2,"G":2,"O":2,"Q":2,"\u00c7":2,"\u00d2":2,"\u00d3":2,"\u00d4":2,"\u00d5":2,"\u00d6":2,"\u00d8":2,"\"":-8,"'":-8,")":-8,"]":-8,"|":-8,"}":-8}},"\u00c8":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23xm92,-272r-34,-46r35,0r27,46r-28,0","w":204,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"\u00c9":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23xm92,-272r26,-46r36,0r-34,46r-28,0","w":204,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"\u00ca":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23xm59,-272r31,-46r32,0r32,46r-28,0v-7,-9,-12,-21,-20,-29r-19,29r-28,0","w":204,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"\u00cb":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-24,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,55,-23,55r-113,0v-16,0,-23,-7,-23,-23xm123,-281r0,-37r26,0r0,37r-26,0xm64,-281r0,-37r26,0r0,37r-26,0","w":204,"k":{"T":3,"V":5,"W":5,"v":1,"w":1,"J":-3,"f":-2}},"\u00cc":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0xm43,-272r-34,-46r35,0r26,46r-27,0","w":114},"\u00cd":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0xm43,-272r26,-46r35,0r-34,46r-27,0","w":114},"\u00ce":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0xm9,-272r32,-46r32,0r31,46r-28,0r-19,-29r-20,29r-28,0","w":114},"\u00cf":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0xm73,-281r0,-37r27,0r0,37r-27,0xm14,-281r0,-37r27,0r0,37r-27,0","w":114},"\u00d0":{"d":"37,-23r0,-89r-18,0r0,-30r18,0r0,-81r-23,0r0,-31r103,0v77,0,128,47,128,127v0,103,-75,127,-185,127v-16,0,-23,-7,-23,-23xm73,-39v1,15,27,8,41,8v57,0,94,-33,94,-96v-1,-78,-54,-103,-135,-96r0,81r52,0r0,30r-52,0r0,73","w":257,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d1":{"d":"14,0r0,-31v10,0,23,3,23,-8r0,-215r33,0r113,161v8,11,13,24,22,34v-6,-46,-1,-119,-3,-172v-1,-30,33,-22,60,-23r0,31v-10,1,-24,-3,-24,8r0,215r-32,0r-113,-161v-8,-11,-13,-24,-22,-34v4,47,0,119,2,172v1,30,-33,22,-59,23xm80,-272v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,15,-14,15,-24r24,0v0,30,-13,46,-37,46v-24,0,-31,-25,-47,-25v-11,0,-14,13,-14,24r-24,0","w":275,"k":{"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u00e5":4,"\u00e6":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,",":7,".":7,"@":2,"c":2,"d":2,"e":2,"g":2,"o":2,"q":2,"\u00e7":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u00f6":2,"\u00f8":2}},"\u00d2":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm127,-272r-34,-46r36,0r26,46r-28,0","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d3":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm128,-272r26,-46r35,0r-34,46r-27,0","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d4":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm94,-272r32,-46r32,0r31,46r-28,0v-7,-9,-12,-21,-20,-29r-19,29r-28,0","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d5":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm81,-272v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,14,-14,14,-24r24,0v0,30,-13,46,-37,46v-24,0,-30,-25,-46,-25v-11,0,-15,13,-15,24r-23,0","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d6":{"d":"12,-129v0,-73,58,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-73,0,-131,-58,-131,-133xm50,-129v0,56,42,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-51,0,-93,42,-93,96xm158,-281r0,-37r27,0r0,37r-27,0xm99,-281r0,-37r27,0r0,37r-27,0","w":285,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d7":{"d":"17,-20r74,-83r-74,-82r20,-20r73,82r74,-82r20,20r-75,82r75,83r-20,20r-74,-82r-73,82"},"\u00d8":{"d":"40,-3r18,-24v-28,-24,-45,-61,-45,-102v0,-98,111,-162,198,-111r17,-24r17,13r-16,23v27,24,45,59,45,99v0,101,-112,167,-199,114r-17,24xm79,-57r111,-155v-62,-37,-142,11,-140,83v0,29,11,54,29,72xm95,-43v64,38,143,-12,141,-86v0,-28,-11,-52,-29,-69","w":286,"k":{"i":-3,"X":4,"T":7,"Y":13,"\u00dd":13,"V":4,"W":4,"a":-2,"\u00e0":-2,"\u00e1":-2,"\u00e2":-2,"\u00e3":-2,"\u00e4":-2,"\u00e5":-2,"\u00e6":-2,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u00ad":-5,"\"":4,"'":4,",":5,".":5,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"@":-2,"c":-2,"d":-2,"e":-2,"g":-2,"o":-2,"q":-2,"\u00e7":-2,"\u00e8":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00f2":-2,"\u00f3":-2,"\u00f4":-2,"\u00f5":-2,"\u00f6":-2,"\u00f8":-2,"m":-3,"n":-3,"p":-3,"r":-3,"u":-3,"\u00f1":-3,"\u00f9":-3,"\u00fa":-3,"\u00fb":-3,"\u00fc":-3}},"\u00d9":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93xm117,-272r-34,-46r35,0r27,46r-28,0","w":262,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"\u00da":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93xm117,-272r27,-46r35,0r-34,46r-28,0","w":262,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"\u00db":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93xm84,-272r31,-46r32,0r32,46r-29,0v-7,-9,-11,-21,-19,-29r-19,29r-28,0","w":262,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"\u00dc":{"d":"34,-89r0,-126v0,-11,-13,-8,-23,-8r0,-31v26,1,59,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,0,-23,-3,-23,8r0,126v0,55,-39,93,-97,93v-58,0,-97,-38,-97,-93xm148,-281r0,-37r26,0r0,37r-26,0xm89,-281r0,-37r26,0r0,37r-26,0","w":262,"k":{",":4,".":4,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"M":2,"N":2}},"\u00dd":{"d":"91,0r0,-111r-65,-103v-6,-10,-10,-9,-22,-9r0,-31v26,0,37,-3,50,19r55,93v11,-22,39,-68,54,-93v12,-22,24,-19,50,-19r0,31v-12,0,-16,-1,-22,9r-64,103r0,111r-36,0xm95,-272r26,-46r35,0r-34,46r-27,0","w":217,"k":{" ":13,"T":-4,"a":16,"\u00e0":16,"\u00e1":16,"\u00e2":16,"\u00e3":16,"\u00e4":16,"\u00e5":16,"\u00e6":16,"\u00ad":22,"\"":-7,"'":-7,",":29,".":29,"A":28,"\u00c0":28,"\u00c1":28,"\u00c2":28,"\u00c3":28,"\u00c4":28,"\u00c5":28,"\u00c6":28,"@":25,"c":25,"d":25,"e":25,"g":25,"o":25,"q":25,"\u00e7":25,"\u00e8":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00f2":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"\u00f6":25,"\u00f8":25,"m":13,"n":13,"p":13,"r":13,"u":13,"\u00f1":13,"\u00f9":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"J":13,"z":11,"\u00ab":7,"\u00bb":7,"M":6,"N":6,"s":17}},"\u00de":{"d":"37,0r0,-215v0,-11,-13,-8,-23,-8r0,-31v26,1,62,-7,59,23r0,20v75,-7,132,11,132,80v0,68,-57,88,-132,80r0,51r-36,0xm73,-82v50,2,95,2,95,-49v0,-50,-45,-52,-95,-49r0,98","w":214},"\u00df":{"d":"7,0r0,-30v9,0,21,3,21,-8r0,-153v-4,-85,148,-87,147,-10v0,34,-36,45,-36,66v0,24,64,37,64,85v0,37,-30,54,-62,54v-57,0,-60,-14,-45,-45v0,0,19,15,41,15v16,0,30,-7,30,-26v0,-31,-64,-42,-64,-82v0,-29,36,-40,36,-66v0,-14,-11,-28,-34,-28v-21,0,-42,13,-42,40r0,165v3,29,-30,22,-56,23","w":208},"\u00e0":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm81,-208r-34,-46r35,0r27,46r-28,0","w":195,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e1":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm81,-208r27,-46r35,0r-34,46r-28,0","w":195,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e2":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm48,-208r32,-46r32,0r31,46r-28,0v-7,-9,-12,-21,-20,-29r-19,29r-28,0","w":195,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e3":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm35,-209v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,14,-13,14,-23r24,0v0,30,-13,45,-37,45v-24,0,-30,-24,-46,-24v-11,0,-15,12,-15,23r-23,0","w":195,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e4":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm112,-218r0,-36r27,0r0,36r-27,0xm53,-218r0,-36r27,0r0,36r-27,0","w":195,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e5":{"d":"13,-51v0,-65,84,-58,118,-64v0,-32,-12,-44,-40,-44v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-52,63,-52v92,0,73,70,75,148v0,11,13,8,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v32,-1,50,-32,48,-64v-32,0,-82,-1,-82,35xm96,-204v-15,0,-29,-10,-29,-27v0,-17,14,-27,29,-27v15,0,29,10,29,27v0,17,-14,27,-29,27xm96,-219v7,0,12,-5,12,-12v0,-8,-5,-12,-12,-12v-7,0,-12,4,-12,12v0,7,5,12,12,12","w":195,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00e6":{"d":"13,-51v0,-61,74,-61,118,-61v1,-33,-12,-48,-40,-47v-13,0,-36,4,-30,25r-33,0v-8,-42,28,-52,63,-52v37,-1,52,14,63,32v14,-21,37,-32,65,-32v55,1,83,44,76,99r-130,0v2,40,27,61,60,61v31,0,54,-21,54,-21r15,25v0,0,-27,26,-70,26v-38,1,-64,-19,-80,-45v-3,9,-21,45,-68,45v-33,0,-63,-20,-63,-55xm166,-112r95,0v-1,-30,-21,-47,-43,-47v-27,0,-47,17,-52,47xm49,-53v0,15,11,29,34,29v32,-1,49,-32,48,-63v-35,0,-82,-1,-82,34","w":312,"k":{"T":14}},"\u00e7":{"d":"13,-91v0,-54,39,-95,98,-95v29,0,75,12,65,58r-31,0v5,-23,-17,-28,-34,-29v-36,0,-62,27,-62,66v0,41,30,64,64,64v34,0,56,-25,56,-25r15,25v0,0,-25,31,-73,31r-3,14v15,2,26,11,26,26v0,30,-37,35,-57,28r0,-21v5,3,35,5,32,-9v1,-10,-15,-13,-25,-10r7,-29v-46,-8,-78,-45,-78,-94","w":191},"\u00e8":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0xm89,-208r-34,-46r35,0r26,46r-27,0","w":198,"k":{"T":14}},"\u00e9":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0xm89,-208r27,-46r35,0r-34,46r-28,0","w":198,"k":{"T":14}},"\u00ea":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0xm56,-208r31,-46r32,0r32,46r-29,0v-7,-9,-11,-21,-19,-29r-19,29r-28,0","w":198,"k":{"T":14}},"\u00eb":{"d":"13,-91v0,-58,39,-95,91,-95v55,1,84,44,78,99r-133,0v2,39,31,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-1,-67,-92,-57,-97,0xm120,-218r0,-36r26,0r0,36r-26,0xm60,-218r0,-36r27,0r0,36r-27,0","w":198,"k":{"T":14}},"\u00ec":{"d":"32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23xm33,-208r-34,-46r35,0r26,46r-27,0","w":99,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"\u00ed":{"d":"32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23xm33,-208r26,-46r36,0r-35,46r-27,0","w":99,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"\u00ee":{"d":"32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23xm0,-208r31,-46r32,0r32,46r-29,0v-7,-10,-11,-22,-19,-30r-19,30r-28,0","w":99,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"\u00ef":{"d":"32,-23r0,-121v0,-10,-12,-8,-22,-8r0,-30v26,1,57,-7,57,23r0,121v0,11,13,8,23,8r0,30v-26,-1,-58,7,-58,-23xm58,-218r0,-36r27,0r0,36r-27,0xm8,-218r0,-36r27,0r0,36r-27,0","w":99,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2}},"\u00f0":{"d":"99,4v-111,0,-114,-173,0,-172v31,0,42,15,45,15v-8,-20,-21,-36,-39,-48r-65,29r-4,-22r45,-20v-14,-7,-31,-12,-47,-16r10,-29v26,6,51,15,74,29r50,-22r4,22r-33,15v66,46,82,219,-40,219xm104,-140v-74,-2,-71,113,-4,114v68,0,77,-116,4,-114","w":207},"\u00f1":{"d":"126,-154v-36,0,-60,27,-60,69r0,85r-35,0r0,-144v0,-11,-13,-8,-23,-8r0,-30v32,-1,65,-5,56,37v7,-16,29,-41,69,-41v74,0,62,79,62,148v0,11,13,8,23,8r0,30v-26,-1,-60,7,-57,-23v-6,-50,22,-131,-35,-131xm55,-209v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,15,-13,15,-23r23,0v0,30,-13,45,-37,45v-24,0,-30,-24,-46,-24v-11,0,-14,12,-14,23r-24,0","w":225,"k":{"T":31,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":25,"'":25}},"\u00f2":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm97,-208r-34,-46r35,0r26,46r-27,0","w":222,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f3":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm97,-208r26,-46r35,0r-34,46r-27,0","w":222,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f4":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm64,-208r31,-46r32,0r32,46r-29,0v-7,-9,-11,-21,-19,-29r-19,29r-28,0","w":222,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f5":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm50,-209v0,-30,13,-46,37,-46v25,0,30,25,46,25v11,0,15,-13,15,-23r23,0v0,30,-13,45,-37,45v-24,0,-30,-24,-46,-24v-11,0,-14,12,-14,23r-24,0","w":222,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f6":{"d":"13,-91v0,-55,44,-95,98,-95v54,0,98,40,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v35,0,63,-27,63,-65v0,-38,-28,-65,-63,-65v-34,0,-62,27,-62,65xm128,-218r0,-36r26,0r0,36r-26,0xm68,-218r0,-36r27,0r0,36r-27,0","w":222,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f7":{"d":"91,-157r0,-32r34,0r0,32r-34,0xm17,-89r0,-28r182,0r0,28r-182,0xm91,-16r0,-33r34,0r0,33r-34,0"},"\u00f8":{"d":"34,1r14,-19v-21,-17,-35,-42,-35,-73v0,-73,82,-118,147,-83r14,-20r17,12r-14,19v19,17,32,43,32,72v2,71,-77,116,-144,85r-14,20xm67,-45r74,-103v-42,-23,-93,8,-92,57v0,19,6,34,18,46xm84,-32v61,31,120,-53,73,-103","w":222,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00f9":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41xm95,-208r-34,-46r35,0r27,46r-28,0","w":223,"k":{"T":14}},"\u00fa":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41xm95,-208r27,-46r35,0r-34,46r-28,0","w":223,"k":{"T":14}},"\u00fb":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41xm62,-208r31,-46r32,0r32,46r-28,0v-7,-9,-12,-21,-20,-29r-19,29r-28,0","w":223,"k":{"T":14}},"\u00fc":{"d":"92,4v-71,0,-64,-78,-62,-148v0,-11,-13,-8,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,132,34,132v68,0,60,-84,59,-154r35,0r0,144v0,11,13,8,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41xm126,-218r0,-36r26,0r0,36r-26,0xm67,-218r0,-36r26,0r0,36r-26,0","w":223,"k":{"T":14}},"\u00fd":{"d":"16,32v0,0,12,13,27,13v22,1,33,-27,40,-46r-62,-144v-4,-7,-8,-7,-16,-7r0,-30v23,0,38,-3,46,18r49,125v10,-41,31,-85,44,-125v7,-21,24,-18,48,-18r0,30v-9,0,-13,-1,-17,7r-72,178v-11,28,-32,43,-58,43v-27,0,-43,-18,-43,-18xm84,-208r27,-46r35,0r-34,46r-28,0","w":196,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u00ad":6,",":16,".":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}},"\u00fe":{"d":"30,72r0,-288v0,-11,-13,-8,-23,-8r0,-30v26,1,57,-7,57,23r0,74v11,-19,30,-29,58,-29v50,0,81,39,81,95v0,55,-31,95,-81,95v-43,0,-58,-29,-58,-29r0,97r-34,0xm63,-91v0,48,26,65,53,65v31,0,51,-26,51,-65v0,-39,-20,-65,-51,-65v-28,0,-53,17,-53,65","w":216,"k":{"T":14,"Y":11,"\u00dd":11,"a":2,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00e4":2,"\u00e5":2,"\u00e6":2,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\"":4,"'":4,",":5,".":5,"z":4,"b":3,"h":3,"k":3,"l":3}},"\u00ff":{"d":"16,32v0,0,12,13,27,13v22,1,33,-27,40,-46r-62,-144v-4,-7,-8,-7,-16,-7r0,-30v23,0,38,-3,46,18r49,125v10,-41,31,-85,44,-125v7,-21,24,-18,48,-18r0,30v-9,0,-13,-1,-17,7r-72,178v-11,28,-32,43,-58,43v-27,0,-43,-18,-43,-18xm115,-218r0,-36r26,0r0,36r-26,0xm55,-218r0,-36r27,0r0,36r-27,0","w":196,"k":{"a":3,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00e4":3,"\u00e5":3,"\u00e6":3,"\u00ad":6,",":16,".":16,"@":4,"c":4,"d":4,"e":4,"g":4,"o":4,"q":4,"\u00e7":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u00f8":4}}}});

Cufon.replace('h1', { fontFamily: 'Museo 500' });
Cufon.replace('h2:not(".menu h2, .article h2, .event-theme #visual-intro h2")', { fontFamily: 'Museo 300' });
Cufon.replace('#visual-intro h2:not(".event-theme #visual-intro h2")', { fontFamily: 'Museo 500' });
Cufon.replace('#content h3', { fontFamily: 'Museo 300' });
Cufon.replace('#testimonial h3', { fontFamily: 'Museo 300' });
Cufon.replace('#discover label', { fontFamily: 'Museo 500' });
