/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();

var ie6 = ($.browser.msie && $.browser.version.substr(0,1)<7);

var Cufon;

if(!ie6) {
  /*
   * Cufón
   * Copyright (c) 2009 Simo Kinnunen.
   * Licensed under the MIT license.
   */
  Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var b=Y.bbox.split(/\s+/);var a={minX:parseInt(b[0],10),minY:parseInt(b[1],10),maxX:parseInt(b[2],10),maxY:parseInt(b[3],10)};a.width=a.maxX-a.minX,a.height=a.maxY-a.minY;a.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return a})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{position:absolute;left:-10000in;font-size:1px}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:group,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}function B(C,D){return A(C,/(?:em|ex|%)$/i.test(D)?"1em":D)}function A(F,G){if(/px$/i.test(G)){return parseFloat(G)}var E=F.style.left,D=F.runtimeStyle.left;F.runtimeStyle.left=F.currentStyle.left;F.style.left=G;var C=F.style.pixelLeft;F.style.left=E;F.runtimeStyle.left=D;return C}return function(r,U,m,R,Y,s,h){var F=(U===null);if(F){U=Y.alt}var W=r.viewBox;var G=m.computedFontSize||(m.computedFontSize=new Cufon.CSS.Size(B(s,m.get("fontSize"))+"px",r.baseSize));var g=m.computedLSpacing;if(g==undefined){g=m.get("letterSpacing");m.computedLSpacing=g=(g=="normal")?0:~~G.convertFrom(A(s,g))}var O,H;if(F){O=Y;H=Y.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=U;H=document.createElement("span");H.className="cufon-vml-canvas";O.appendChild(H);if(R.printable){var p=document.createElement("span");p.className="cufon-alt";p.appendChild(document.createTextNode(U));O.appendChild(p)}if(!h){O.appendChild(document.createElement("cvml:group"))}}var x=O.style;var b=H.style;var D=G.convert(W.height),u=Math.ceil(D);var f=u/D;var e=W.minX,d=W.minY;b.height=u;b.top=Math.round(G.convert(d-r.ascent));b.left=Math.round(G.convert(e));x.height=G.convert(r.height)+"px";var K=R.enableTextDecoration?Cufon.CSS.textDecoration(s,m):{};var T=m.get("color");var v=Cufon.CSS.textTransform(U,m).split("");var C=0,c=0,L=null;var S,M,V=R.textShadow;for(var q=0,o=0,n=v.length;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(S){C+=L=~~(S.w||r.w)+g}}if(L===null){return null}var N=-e+C+(W.width-L);var w=G.convert(N*f),j=Math.round(w);var a=N+","+W.height,E;var X="r"+a+"nsnf";for(q=0;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(!S){continue}if(F){M=H.childNodes[o];if(M.firstChild){M.removeChild(M.firstChild)}}else{M=document.createElement("cvml:shape");H.appendChild(M)}M.stroked="f";M.coordsize=a;M.coordorigin=E=(e-c)+","+d;M.path=(S.d?"m"+S.d+"xe":"")+"m"+E+X;M.fillcolor=T;var t=M.style;t.width=j;t.height=u;if(V){var J=V[0],I=V[1];var Q=Cufon.CSS.color(J.color),P;var Z=document.createElement("cvml:shadow");Z.on="t";Z.color=Q.color;Z.offset=J.offX+","+J.offY;if(I){P=Cufon.CSS.color(I.color);Z.type="double";Z.color2=P.color;Z.offset2=I.offX+","+I.offY}Z.opacity=Q.opacity||(P&&P.opacity)||1;M.appendChild(Z)}c+=~~(S.w||r.w)+g;++o}x.width=Math.max(Math.ceil(G.convert(C*f)),0);return O}})());
  /* Auto 1 */
  Cufon.registerFont({"w":2896,"face":{"font-family":"Auto 1","font-weight":700,"font-stretch":"normal","units-per-em":"4096","panose-1":"2 11 10 3 4 0 0 2 0 3","ascent":"3154","descent":"-942","x-height":"33","bbox":"-262 -4051 4006 1113.15","underline-thickness":"82","underline-position":"-410","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":836},"!":{"d":"393,0r0,-643r737,0r0,643r-737,0xm1069,-1028r-623,0r-73,-1987r766,0","w":1405},"\"":{"d":"1139,-1577r0,-1298r569,0r0,1261xm262,-1577r0,-1298r569,0r0,1261","w":1966},"#":{"d":"2183,-1552r-336,0r-69,282r286,0r-16,352r-356,0r-111,439r-434,0r115,-439r-328,0r-119,439r-430,0r115,-439r-267,0r25,-352r336,0r70,-282r-295,0r24,-353r361,0r114,-450r443,0r-123,450r323,0r119,-450r430,0r-118,450r262,0xm1094,-1552r-70,282r324,0r69,-282r-323,0","w":2474},"$":{"d":"1012,-1507v-118,-7,-199,40,-162,141v25,38,72,54,132,72v39,12,92,26,157,41v254,66,474,138,583,335v64,124,59,323,10,464v-85,239,-276,389,-540,454r8,537r-504,0r4,-508v-225,-23,-419,-64,-598,-140r111,-507v200,79,452,143,717,151v92,-3,192,-19,192,-98v0,-59,-39,-71,-88,-89v-24,-8,-56,-17,-96,-26v-261,-63,-484,-124,-645,-264v-93,-85,-131,-201,-129,-375v5,-284,145,-462,323,-579v65,-42,136,-74,213,-97r-4,-545r504,0r-8,521v201,30,366,77,537,159r-177,484v-148,-65,-341,-121,-540,-131","w":1872},"%":{"d":"1565,246r-635,0r1655,-2450r639,0xm885,-2011v432,0,646,202,647,631v-5,325,-164,527,-410,620v-88,34,-191,51,-307,51v-418,-4,-636,-223,-643,-634v5,-327,173,-525,418,-619v88,-33,186,-49,295,-49xm848,-1057v147,-7,203,-134,201,-311v-2,-157,-36,-283,-189,-287v-150,4,-206,125,-205,295v1,181,38,296,193,303xm3359,-1266v430,0,646,203,647,627v-5,327,-162,528,-408,621v-89,34,-190,51,-305,51v-420,-3,-637,-219,-643,-631v6,-326,170,-526,415,-619v87,-33,185,-49,294,-49xm3322,-315v147,-7,203,-131,201,-308v-2,-158,-35,-283,-189,-286v-151,4,-202,124,-201,295v2,180,34,292,189,299","w":4182},"&":{"d":"1323,-2544v-181,6,-209,208,-143,372v22,63,59,133,110,210v112,-111,216,-181,221,-385v-4,-121,-64,-195,-188,-197xm987,-1135v-97,97,-188,159,-188,340v6,160,99,259,221,309v106,47,265,22,369,-6xm725,-1573v-136,-212,-252,-404,-258,-725v11,-306,160,-496,366,-616v125,-69,286,-114,482,-113v374,0,629,130,740,385v55,132,61,302,18,446v-95,271,-293,425,-508,611r442,725v123,-123,235,-226,293,-394v29,-101,27,-190,-36,-266v-36,-47,-93,-98,-171,-155r332,-414v233,85,409,206,486,431v76,271,-35,522,-148,704v-123,196,-290,371,-477,520r131,202r96,144v72,92,109,177,252,186v105,-6,216,-38,303,-65r156,467v-187,100,-428,174,-705,180v-272,3,-389,-119,-521,-271v-112,-131,-234,-316,-339,-466v-262,110,-720,149,-1028,59v-355,-95,-567,-359,-523,-822v43,-263,205,-395,374,-555v67,-60,148,-126,243,-198","w":3146},"'":{"d":"262,-1577r0,-1298r569,0r0,1261","w":1094},"(":{"d":"1241,1024v-378,-73,-647,-238,-811,-532v-215,-386,-269,-927,-270,-1557v3,-938,103,-1712,741,-1995v102,-45,215,-82,340,-110r139,463v-214,93,-378,215,-463,437v-154,401,-135,1052,-123,1602v21,447,61,839,306,1052v81,71,174,120,280,169","w":1511},")":{"d":"270,-3178v378,73,647,237,812,530v215,386,269,926,270,1554v-3,940,-103,1715,-741,2000v-102,45,-216,82,-341,110r-139,-471v213,-92,378,-213,463,-433v154,-402,134,-1054,124,-1603v-22,-448,-62,-842,-308,-1055v-80,-70,-173,-118,-279,-166","w":1511},"*":{"d":"1573,-1888r377,545r-520,237r-275,-577r-430,495r-438,-352r508,-451r-611,-213r242,-471r537,287r57,-647r586,65r-123,652r602,-152r123,512","w":2400},"+":{"d":"1991,-782r-623,0r0,610r-508,0r0,-610r-639,0r25,-443r614,0r0,-610r508,0r0,610r643,0","w":2232},",":{"d":"868,-647v163,193,273,608,142,911v-150,323,-477,480,-850,604r-205,-405v153,-72,267,-121,365,-206v57,-54,75,-102,77,-200v-15,-213,-65,-420,-118,-598","w":1315},"-":{"d":"1434,-786r-1278,0r24,-451r1278,0","w":1614},".":{"d":"274,0r0,-643r742,0r0,643r-742,0","w":1290},"\/":{"d":"586,0r-635,0r1188,-2875r635,0","w":1724},"0":{"d":"1229,-2023v677,0,1025,328,1028,995v-7,519,-257,837,-651,982v-141,53,-304,79,-488,79v-674,-1,-1012,-342,-1016,-1004v9,-516,270,-829,659,-975v139,-51,295,-77,468,-77xm815,-999v3,306,48,558,348,561v125,0,219,-48,283,-143v118,-164,134,-658,-1,-830v-53,-76,-130,-123,-245,-125v-287,12,-380,236,-385,537","w":2359},"1":{"d":"553,0r0,-1458r-479,-29r37,-450r1134,-41r0,1978r-692,0","w":1450},"2":{"d":"102,-1634v247,-201,485,-377,914,-381v360,1,602,130,709,381v52,125,66,297,26,442v-109,345,-458,494,-735,688r864,0r-49,504r-1679,0r-46,-406r320,-212r259,-176v73,-50,134,-94,184,-132v101,-83,186,-138,225,-262v36,-155,-46,-267,-201,-262v-246,4,-361,105,-520,217","w":1933},"3":{"d":"102,-1634v247,-201,485,-377,914,-381v359,1,603,127,709,377v49,119,66,281,29,420v-58,193,-182,319,-320,448v232,111,407,250,413,573v-9,456,-262,703,-631,818v-283,94,-749,88,-1014,-19v-54,-20,-105,-43,-153,-70r115,-458v166,69,365,112,594,114v239,2,373,-95,377,-315v-9,-277,-358,-256,-643,-242r-46,-499v158,-18,340,-22,517,-21v58,-104,133,-192,135,-348v-5,-123,-81,-189,-205,-193v-244,4,-353,108,-512,218","w":1942},"4":{"d":"2183,0r-299,0r0,655r-659,37r0,-692r-1028,0r-107,-430r1172,-1540r622,0r0,1491r344,0xm1225,-1192r-533,725r533,0r0,-725","w":2359},"5":{"d":"778,188v270,10,399,-152,356,-420v-81,-291,-566,-214,-909,-198r0,-1540r1581,0r-45,557r-1003,0r0,418v510,-12,887,115,1038,457v88,207,74,503,-18,699v-178,393,-638,562,-1232,521v-188,-16,-346,-59,-489,-125r103,-475v177,66,382,105,618,106","w":1950},"6":{"d":"1073,29v-713,1,-971,-449,-971,-1164v-3,-952,319,-1557,1266,-1552v280,4,546,60,725,168r-135,463v-183,-64,-414,-116,-651,-123v-360,-7,-443,233,-484,557v551,8,1045,63,1178,488v48,143,60,362,14,524v-92,321,-322,524,-655,607v-88,21,-184,32,-287,32xm1098,-475v202,-1,305,-128,303,-340v-4,-203,-150,-262,-335,-293v-75,-11,-161,-17,-259,-18v3,263,15,499,154,611v37,27,83,40,137,40","w":2150},"7":{"d":"852,668r-594,-50r918,-2031r-1127,0r49,-557r1757,0r25,430","w":1995},"8":{"d":"520,-1450v-155,-138,-272,-285,-270,-573v12,-342,220,-524,500,-615v199,-68,525,-70,735,-10v283,79,472,255,477,604v0,97,-28,201,-83,311v-55,110,-136,229,-241,357v131,113,231,204,316,328v113,155,93,434,5,609v-151,302,-474,468,-923,472v-554,0,-920,-178,-921,-725v6,-235,99,-368,209,-523v52,-70,117,-148,196,-235xm1257,-1610v70,-128,127,-244,136,-393v-1,-146,-88,-227,-242,-225v-176,-7,-283,134,-225,304v68,140,194,217,331,314xm1040,-446v169,0,257,-84,258,-250v-3,-101,-50,-164,-106,-227v-82,-87,-186,-161,-295,-236v-79,127,-159,254,-164,450v5,180,120,261,307,263","w":2146},"9":{"d":"1077,-2032v714,-1,972,451,971,1168v1,530,-99,929,-330,1202v-227,271,-633,386,-1126,338v-199,-25,-397,-75,-535,-160r136,-463v183,67,414,121,655,127v357,5,441,-236,483,-557v-551,-11,-1048,-64,-1182,-491v-48,-141,-60,-362,-14,-524v93,-319,322,-524,655,-608v89,-21,184,-32,287,-32xm1053,-1528v-203,0,-305,132,-303,344v12,286,297,295,593,307v-3,-262,-15,-499,-153,-611v-38,-27,-83,-40,-137,-40","w":2150},":":{"d":"274,-1257r0,-644r742,0r0,644r-742,0xm274,-70r0,-639r742,0r0,639r-742,0","w":1290},";":{"d":"274,-1257r0,-644r742,0r0,644r-742,0xm868,-647v163,193,273,608,142,911v-150,323,-477,480,-850,604r-205,-405v153,-72,267,-121,365,-206v57,-54,75,-102,77,-200v-15,-213,-65,-420,-118,-598","w":1290},"<":{"d":"1966,-1454r-1003,450r999,463r-45,557r-1733,-802r29,-390r1790,-831","w":2245},"=":{"d":"1991,-1200r-1770,0r25,-438r1765,0xm1991,-369r-1770,0r25,-438r1765,0","w":2232},">":{"d":"274,-532r1008,-451r-1003,-463r45,-557r1736,803r-28,389r-1790,831","w":2245},"?":{"d":"430,0r0,-643r733,0r0,643r-733,0xm980,-2392v-191,-91,-527,-87,-816,-74r57,-586v291,-40,707,-53,961,31v397,116,672,395,610,915v-51,355,-399,424,-686,547v-74,36,-134,47,-135,142v4,126,26,262,45,377r-561,49v-49,-182,-116,-394,-93,-621v31,-167,171,-209,320,-270v57,-21,124,-43,203,-68v88,-27,155,-51,211,-92v72,-49,60,-180,11,-250v-27,-40,-69,-74,-127,-100","w":1880},"@":{"d":"2441,29v-202,2,-319,-72,-319,-267r-124,100v-114,83,-194,171,-384,171v-168,0,-295,-60,-382,-181v-173,-214,-153,-804,-59,-1103v126,-424,409,-688,936,-695v261,6,523,57,738,115r-131,1393v455,-106,663,-491,671,-1045v-7,-520,-288,-792,-707,-915v-268,-78,-667,-98,-956,-14v-561,165,-906,577,-1046,1168v-102,476,-59,1123,173,1400v119,151,289,239,546,241v211,-6,405,-54,573,-110r127,368v-186,114,-431,197,-725,201v-575,2,-932,-210,-1110,-616v-177,-387,-218,-1088,-91,-1582v150,-584,490,-1014,959,-1283v290,-165,647,-273,1078,-275v555,-2,981,127,1269,378v258,224,403,561,406,1019v-11,636,-278,1058,-673,1319v-201,126,-454,213,-769,213xm1724,-799v-1,185,46,304,222,283v68,-15,117,-43,180,-74r82,-831v-104,-21,-249,-51,-326,17v-134,114,-156,347,-158,605","w":4006},"A":{"d":"1913,0r-205,-643r-844,0r-213,643r-704,0r1024,-2875r700,0r1032,2875r-790,0xm1012,-1102r544,0r-233,-758v-21,-67,-32,-139,-33,-213v-1,70,-16,151,-37,213","w":2662},"B":{"d":"1942,-1561v248,111,413,301,417,648v-10,489,-302,736,-701,851v-149,41,-318,62,-507,62r-942,0r0,-2875r1036,0v570,2,948,182,955,733v-10,260,-132,433,-258,581xm1425,-1712v46,-99,83,-191,82,-332v1,-234,-150,-312,-389,-311r-209,0r0,643r516,0xm1200,-528v279,-1,427,-95,430,-361v-6,-215,-140,-319,-360,-323r-361,0r0,684r291,0","w":2454},"C":{"d":"941,-2798v401,-163,1055,-122,1402,50r-57,950r-611,33r-20,-537v-256,-19,-458,38,-573,185v-124,152,-178,376,-177,671v3,453,110,785,465,876v51,12,102,17,154,17v282,-1,520,-81,729,-176r155,545v-294,137,-612,220,-1048,217v-876,-2,-1221,-533,-1221,-1422v3,-724,283,-1201,802,-1409","w":2531},"D":{"d":"2626,-1520v0,990,-459,1516,-1434,1520r-983,0r0,-2875r1061,0v682,-3,1114,212,1274,729v55,171,82,380,82,626xm918,-2331r0,1790v208,-2,430,13,580,-47v297,-113,391,-421,390,-846v0,-431,-78,-741,-384,-851v-149,-57,-378,-45,-586,-46","w":2765},"E":{"d":"217,0r0,-2875r1909,0r-49,540r-1147,0r0,606r1048,0r0,537r-1048,0r0,651r1159,0r53,541r-1925,0","w":2265},"F":{"d":"1995,-2335r-1073,0r0,664r987,0r-49,536r-938,0r0,1135r-705,0r0,-2875r1827,0","w":2146},"G":{"d":"2531,-250v-290,176,-680,280,-1142,283v-884,1,-1253,-505,-1250,-1405v2,-733,276,-1219,801,-1428v286,-120,720,-120,1074,-68v155,28,284,73,419,128r-176,557v-197,-82,-433,-130,-705,-131v-494,9,-662,348,-663,864v-1,317,55,558,182,726v105,137,261,205,485,208v110,1,194,-13,279,-37r0,-467r-414,0r45,-500r1065,0r0,1270","w":2736},"H":{"d":"1958,0r0,-1155r-1024,0r0,1155r-717,0r0,-2875r717,0r0,1159r1024,0r0,-1159r717,0r0,2875r-717,0","w":2892},"I":{"d":"1597,-2392r-376,29r0,1871r393,25r0,467r-1491,0r0,-467r389,-25r0,-1871r-369,-29r0,-483r1454,0r0,483","w":1737},"J":{"d":"369,217v160,4,234,-62,229,-221r0,-2359r-438,-29r0,-483r1454,0r0,483r-295,25r0,2236v-4,434,-194,709,-513,831v-260,105,-666,60,-904,-24r118,-504v100,27,228,43,349,45","w":1655},"K":{"d":"1778,0r-725,-1176r-148,181r0,995r-688,0r0,-2875r688,0r0,1138r860,-1138r734,0r-922,1216r1085,1659r-884,0","w":2572},"L":{"d":"217,0r0,-2875r717,0r0,2334r1028,0r45,541r-1790,0","w":2060},"M":{"d":"2626,0r-21,-1614v-19,73,-36,126,-65,197r-590,1343r-455,0r-611,-1355v-20,-47,-35,-91,-48,-144r-21,1573r-610,0r45,-2875r668,0r856,1855r860,-1855r651,0r41,2875r-700,0","w":3527},"N":{"d":"2114,0r-1193,-1606v-19,-26,-32,-48,-40,-69r0,1675r-664,0r0,-2875r610,0r1213,1697v15,21,24,35,33,56r0,-1753r659,0r0,2875r-618,0","w":2949},"O":{"d":"2611,-2310v142,295,186,822,109,1244v-108,542,-407,908,-918,1048v-351,93,-850,57,-1106,-86v-404,-207,-558,-663,-557,-1285v2,-722,265,-1205,783,-1411v357,-146,954,-132,1266,37v191,99,331,249,423,453xm1862,-774v140,-226,155,-732,99,-1076v-53,-282,-169,-483,-486,-489v-324,7,-463,206,-528,487v-69,341,-51,892,91,1116v78,132,194,201,387,204v220,-1,352,-94,437,-242"},"P":{"d":"2190,-2306v69,200,79,466,21,682v-108,388,-369,645,-759,752v-155,43,-331,36,-522,36r0,836r-713,0r0,-2875r1020,0v505,1,820,201,953,569xm1548,-1876v-1,-280,-109,-459,-393,-459r-225,0r0,992v150,-3,314,18,408,-45v145,-85,209,-264,210,-488","w":2327},"Q":{"d":"2855,639v-215,72,-511,112,-787,85v-266,-31,-366,-208,-456,-427v-30,-74,-61,-162,-92,-264v-475,15,-844,-71,-1065,-319v-225,-245,-317,-623,-316,-1103v2,-722,265,-1205,783,-1411v357,-146,954,-132,1266,37v406,208,570,658,569,1280v-5,667,-244,1123,-684,1360v49,98,80,172,137,236v40,41,80,50,157,51v138,-5,297,-27,422,-49xm1862,-774v140,-226,155,-732,99,-1076v-53,-282,-169,-483,-486,-489v-324,7,-463,206,-528,487v-69,341,-51,892,91,1116v78,132,194,201,387,204v220,-1,352,-94,437,-242"},"R":{"d":"1217,-2875v644,-3,1048,206,1044,843v0,139,-35,276,-105,408v-71,134,-178,271,-321,412r631,1212r-799,0r-463,-1028r-274,0r0,1028r-713,0r0,-2875r1000,0xm1405,-1528v106,-155,208,-363,151,-615v-47,-149,-191,-192,-397,-192r-229,0r0,807r475,0","w":2474},"S":{"d":"1257,-2331v-196,2,-336,61,-339,254v-2,141,65,192,172,233v140,53,391,93,524,144v294,100,519,234,571,563v41,257,-4,529,-111,691v-187,303,-519,480,-1009,483v-404,3,-695,-80,-983,-201r180,-594v233,101,509,185,828,193v165,-1,295,-43,358,-142v37,-55,33,-144,6,-202v-66,-121,-218,-148,-385,-185v-421,-82,-780,-202,-861,-620v-41,-206,-32,-463,46,-640v145,-342,454,-560,934,-566v371,-2,709,65,958,176r-164,549v-206,-70,-461,-128,-725,-136","w":2314},"T":{"d":"2281,-2335r-749,0r0,2335r-717,0r0,-2335r-790,0r45,-540r2257,0","w":2347},"U":{"d":"2560,-1126v-5,569,-263,918,-693,1072v-278,108,-759,107,-1047,16v-440,-135,-630,-499,-627,-1080r0,-1757r720,0r0,1785v-1,269,57,454,253,520v117,41,337,38,449,-6v197,-69,262,-259,261,-530r0,-1769r684,0r0,1749","w":2757},"V":{"d":"1929,-2875r680,0r-1044,2875r-688,0r-926,-2875r819,0r500,1769v17,64,27,140,28,209v2,-77,21,-148,41,-209","w":2560},"W":{"d":"1430,0r-762,0r-598,-2875r749,0r287,1818v10,66,20,142,20,209v1,-68,22,-145,37,-209r434,-1745r664,0r422,1745v17,64,28,140,29,209v0,-67,21,-146,32,-209r369,-1818r631,0r-668,2875r-745,0r-439,-1729v-17,-60,-27,-137,-28,-204v0,65,-16,143,-29,204","w":3817},"X":{"d":"1659,-1499r844,1499r-836,0r-463,-877r-487,877r-770,0r852,-1413r-807,-1462r811,0r450,856r492,-856r741,0","w":2449},"Y":{"d":"1581,-1217r0,1217r-717,0r0,-1217r-921,-1658r827,0r524,970r586,-970r700,0","w":2523},"Z":{"d":"2298,-2437r-1294,1896r1298,0r-33,541r-2060,0r-45,-528r1212,-1807r-1151,0r37,-540r2007,0","w":2425},"[":{"d":"1294,-2630r-487,0r0,3093r528,0r-41,467r-1085,0r0,-4022r1126,0","w":1434},"\\":{"d":"1135,0r-1184,-2875r639,0r1184,2875r-639,0","w":1724},"]":{"d":"102,930r37,-467r496,0r0,-3093r-533,0r37,-462r1094,0r0,4022r-1131,0","w":1434},"^":{"d":"1294,-1585r-196,-627v-34,-110,-57,-234,-74,-356v-10,126,-31,250,-66,356r-213,627r-606,0r672,-1696r590,0r606,1696r-713,0","w":2142},"_":{"d":"1602,0r-1516,0r29,-377r1519,0","w":1720},"`":{"d":"856,-2253r-586,-782r504,-111r524,819","w":1503},"a":{"d":"938,-406v121,-1,206,-48,270,-106r0,-299v-151,15,-280,24,-386,69v-48,23,-69,59,-68,128v3,124,62,203,184,208xm2015,20v-338,16,-686,12,-778,-225v-131,146,-292,240,-565,238v-276,-7,-446,-156,-528,-365v-62,-155,-71,-406,31,-520v131,-156,360,-210,623,-256v118,-19,255,-35,414,-47v-8,-165,45,-383,-139,-365v-273,7,-472,109,-647,222r-258,-410v276,-200,603,-332,1073,-332v445,-3,670,199,668,635r0,836v4,56,56,56,109,73v28,6,64,13,108,21","w":2154},"b":{"d":"1094,29v-334,-5,-658,-65,-885,-181r0,-2834r688,-37r0,1221v148,-126,306,-227,569,-230v372,6,564,209,652,517v35,121,53,267,53,438v-3,724,-360,1101,-1077,1106xm1122,-451v292,-4,341,-240,344,-544v-1,-211,-43,-376,-170,-451v-137,-70,-292,2,-387,74r0,893v60,17,136,28,213,28","w":2277},"c":{"d":"1749,-115v-271,136,-775,202,-1125,95v-358,-113,-515,-420,-513,-898v1,-540,206,-890,591,-1039v288,-109,740,-76,994,28r-135,487v-114,-36,-247,-55,-377,-57v-305,-2,-373,218,-373,528v1,272,77,465,344,467v166,0,303,-37,430,-86","w":1769},"d":{"d":"656,-1940v200,-91,505,-99,720,-26r0,-1020r697,-41r0,3002r-639,54v-17,-68,-31,-151,-33,-234v-139,124,-289,230,-524,234v-581,6,-769,-374,-766,-959v2,-507,194,-854,545,-1010xm908,-576v86,127,345,102,464,23r0,-930v-99,-36,-249,-64,-358,-16v-153,78,-198,270,-199,516v-1,182,25,314,93,407","w":2281},"e":{"d":"1962,-180v-235,127,-526,211,-885,213v-651,5,-971,-303,-966,-955v1,-539,211,-885,601,-1032v126,-46,267,-69,423,-69v574,1,789,365,790,942v-2,96,-10,209,-24,295r-1094,0v29,218,150,322,393,323v244,-4,443,-72,623,-143xm1331,-1176v3,-201,-50,-351,-225,-356v-211,4,-284,136,-295,356r520,0","w":2068},"f":{"d":"1036,-2531v-76,-2,-91,47,-90,123r0,438r402,0r-41,483r-361,0r0,1487r-696,0r0,-1487r-230,-16r37,-467r193,0v4,-339,-36,-719,140,-896v179,-222,715,-174,1015,-87r-90,459v-113,-25,-206,-37,-279,-37","w":1401},"g":{"d":"1702,-2258v107,-133,406,-93,575,-40r-49,586v-53,-6,-99,-10,-138,-13v-66,-2,-134,-16,-169,19v-15,14,-28,39,-41,72v91,130,138,385,66,570v-133,338,-486,470,-947,478v-12,33,-23,76,-24,119v-3,56,26,72,82,70r393,0v399,-4,644,126,639,524v-9,268,-144,435,-307,565v-209,158,-497,253,-864,254v-274,0,-507,-33,-678,-120v-135,-71,-228,-174,-232,-359v6,-194,103,-289,220,-392v54,-46,121,-96,202,-149v-58,-72,-41,-227,2,-308v44,-90,98,-162,166,-253v-222,-46,-383,-173,-458,-369v-65,-173,-43,-408,34,-560v148,-294,462,-452,899,-455v200,-1,348,42,483,106v36,-146,71,-258,146,-345xm1036,-1004v182,-2,282,-92,283,-278v0,-174,-86,-267,-262,-266v-195,-2,-285,96,-287,282v0,177,90,262,266,262xm668,115v-36,56,-74,158,-30,230v112,166,567,141,732,40v60,-35,107,-81,113,-152v-1,-80,-48,-118,-131,-118r-684,0","w":2261},"h":{"d":"1217,-1446v-126,9,-221,91,-312,164r0,1282r-696,0r0,-2986r688,-37r0,1262v105,-84,208,-150,310,-199v102,-48,202,-72,300,-72v378,-5,533,200,529,578r0,1454r-701,0r0,-1307v2,-92,-26,-142,-118,-139","w":2232},"i":{"d":"205,0r0,-1962r688,-33r0,1995r-688,0xm213,-2290r0,-581r664,0r0,581r-664,0","w":1090},"j":{"d":"233,-2290r0,-581r660,0r0,581r-660,0xm909,-53v3,451,-144,737,-458,869v-158,68,-349,99,-566,114r-102,-516v144,-18,268,-37,358,-97v54,-38,77,-96,76,-186r0,-2093r692,-33r0,1942","w":1118},"k":{"d":"1511,-1102r734,1102r-815,0r-533,-909r0,909r-688,0r0,-2986r688,-37r0,1839r582,-786r700,0","w":2204},"l":{"d":"1130,-29v-124,38,-296,52,-458,54v-306,1,-465,-139,-463,-447r0,-2564r688,-37r0,2462v1,54,50,48,107,55v32,1,73,2,126,2r0,475","w":1204},"m":{"d":"1499,-2032v272,-3,427,101,488,303v124,-112,280,-221,459,-277v216,-62,481,-10,582,112v85,94,113,231,114,411r0,1483r-676,0r0,-1307v1,-94,-39,-140,-131,-139v-141,14,-233,92,-324,164r0,1282r-672,0r0,-1307v1,-94,-39,-140,-131,-139v-142,14,-236,92,-327,164r0,1282r-672,0r0,-1978r598,-33v28,76,45,177,57,270v137,-114,288,-217,478,-269v53,-15,106,-22,157,-22","w":3338},"n":{"d":"1507,-2032v378,-5,533,200,529,578r0,1454r-701,0r0,-1307v2,-92,-26,-142,-118,-139v-126,9,-221,91,-312,164r0,1282r-696,0r0,-1978r614,-33v28,77,42,179,58,270v131,-115,285,-217,472,-269v54,-15,105,-22,154,-22","w":2232},"o":{"d":"1159,-2023v665,-5,983,322,979,987v-6,508,-234,838,-608,988v-134,54,-287,81,-461,81v-663,3,-971,-336,-967,-1000v5,-510,238,-834,614,-981v131,-50,278,-75,443,-75xm1106,-446v289,-6,305,-270,311,-570v-5,-280,-23,-516,-291,-520v-96,0,-170,42,-224,126v-52,84,-79,214,-79,390v1,185,10,335,62,448v41,85,104,124,221,126","w":2236},"p":{"d":"877,-1782v155,-146,322,-245,589,-250v375,7,565,214,652,527v79,277,73,736,-42,977v-144,337,-440,532,-925,532r-242,-8r0,827r-700,37r0,-2838r614,-33v25,70,39,147,54,229xm1122,-451v292,-4,341,-240,344,-544v-1,-211,-43,-376,-170,-451v-137,-70,-292,2,-387,74r0,893v60,17,136,28,213,28","w":2277},"q":{"d":"656,-1942v220,-98,557,-88,794,-20r618,-53r0,2838r-700,37r0,-1032v-126,104,-285,197,-512,201v-572,1,-752,-377,-750,-959v2,-512,190,-860,550,-1012xm908,-576v86,127,345,102,464,23r0,-930v-99,-36,-249,-64,-358,-16v-153,78,-198,270,-199,516v-1,182,25,314,93,407","w":2277},"r":{"d":"1233,-1389v-192,-3,-238,98,-336,201r0,1188r-692,0r0,-1978r553,-33v36,91,52,224,65,340v61,-118,112,-206,196,-275v107,-94,345,-62,484,-20r-73,594v-41,-4,-77,-8,-108,-12v-31,-3,-60,-5,-89,-5","w":1487},"s":{"d":"995,-1520v-115,-6,-201,54,-158,152v19,45,72,63,132,86v353,121,786,168,776,639v-7,355,-208,542,-494,631v-374,106,-870,25,-1165,-99r111,-499v198,82,450,143,716,151v116,2,223,-36,187,-141v-22,-64,-96,-81,-178,-100v-258,-62,-475,-130,-630,-274v-91,-88,-133,-205,-132,-378v6,-319,173,-494,394,-602v252,-125,699,-91,962,-1v65,21,131,47,200,79r-160,479v-152,-65,-357,-115,-561,-123","w":1851},"t":{"d":"1499,-86v-165,80,-398,121,-668,119v-379,3,-585,-157,-581,-537r0,-983r-230,-20r37,-463r213,0r70,-586r610,-53r0,639r516,0r-45,483r-471,0r0,959v1,47,22,52,74,53v128,-2,264,-21,365,-53","w":1552},"u":{"d":"1016,-545v138,-10,212,-85,303,-151r0,-1266r696,-29r0,1975r-614,36v-28,-78,-42,-179,-58,-270v-129,114,-286,215,-471,266v-216,53,-457,4,-556,-118v-87,-99,-119,-245,-119,-435r0,-1425r700,-29r0,1303v1,99,26,141,119,143","w":2224},"v":{"d":"1004,-958v20,66,35,140,36,213v1,-70,17,-151,37,-213r336,-1012r627,0r-742,1970r-630,0r-701,-1970r725,0","w":2007},"w":{"d":"1098,0r-541,0r-537,-1970r656,0r248,1116v6,38,10,69,10,96v1,-68,20,-150,37,-213r270,-979r533,-28r272,1124v6,38,10,69,10,96v1,-68,22,-150,37,-213r250,-999r602,0r-582,1970r-598,0r-282,-1024v-21,-66,-32,-139,-33,-213v-1,68,-20,150,-37,213","w":2953},"x":{"d":"1442,-1012r643,1012r-803,0r-332,-569r-311,569r-672,0r647,-1024r-610,-946r795,0r303,536r303,-536r663,0","w":2048},"y":{"d":"1004,-958v20,66,35,140,36,213v1,-70,17,-151,37,-213r328,-1012r614,0r-897,2363v-127,363,-427,522,-905,537r-111,-492v233,-30,420,-66,492,-245r78,-197r-684,-1966r700,0","w":2007},"z":{"d":"1753,-1602r-762,1110r787,0r-49,492r-1569,0r-37,-365r782,-1122r-762,0r54,-483r1519,0","w":1901},"{":{"d":"467,-1495v-7,-379,-131,-835,-3,-1169v136,-348,495,-456,949,-502r143,459r-198,56v-190,59,-351,111,-338,365v3,255,56,499,57,758v-5,179,-98,293,-218,366v-47,28,-100,48,-159,60v223,87,369,244,373,541v4,272,-68,512,-43,781v24,178,158,230,319,280v57,18,124,35,203,53r-139,467v-578,-59,-1008,-224,-1007,-848v-2,-239,57,-430,61,-659v-1,-163,-95,-219,-233,-257v-61,-16,-139,-29,-234,-38r37,-480v150,-4,262,-15,349,-62v59,-35,79,-86,81,-171","w":1683},"|":{"d":"590,856r0,-4231r500,0r0,4231r-500,0","w":1675},"}":{"d":"1278,-2318v2,239,-57,430,-61,659v0,162,93,216,231,253v61,16,139,29,235,38r-41,483v-148,4,-260,15,-344,63v-58,35,-80,86,-81,171v7,379,131,835,3,1169v-137,346,-495,456,-950,502r-139,-459v76,-21,142,-39,197,-57v189,-58,350,-111,336,-365v-3,-254,-53,-499,-54,-757v5,-179,97,-293,216,-366v47,-28,99,-48,157,-60v-224,-85,-366,-245,-369,-541v-3,-270,58,-513,34,-779v-23,-177,-155,-229,-314,-280v-55,-16,-122,-34,-199,-51r135,-471v579,59,1010,222,1008,848","w":1683},"~":{"d":"1425,-2382v-210,86,-469,-15,-704,-14v-78,0,-92,48,-117,109v-10,29,-22,66,-35,112r-434,-78v27,-221,86,-393,191,-519v97,-126,277,-175,490,-144v117,15,227,42,355,45v78,0,91,-49,116,-109v11,-30,23,-69,36,-117r438,74v-30,223,-84,398,-186,527v-44,52,-94,91,-150,114","w":1909},"\u00a0":{"w":836},"\u00c0":{"d":"1913,0r-205,-643r-844,0r-213,643r-704,0r1024,-2875r700,0r1032,2875r-790,0xm1012,-1102r544,0r-233,-758v-21,-67,-32,-139,-33,-213v-1,70,-16,151,-37,213xm1081,-3158r-585,-782r503,-111r525,819","w":2662},"\u00c1":{"d":"1913,0r-205,-643r-844,0r-213,643r-704,0r1024,-2875r700,0r1032,2875r-790,0xm1012,-1102r544,0r-233,-758v-21,-67,-32,-139,-33,-213v-1,70,-16,151,-37,213xm1507,-3158r-442,-74r520,-819r508,111","w":2662},"\u00c2":{"d":"1913,0r-205,-643r-844,0r-213,643r-704,0r1024,-2875r700,0r1032,2875r-790,0xm1012,-1102r544,0r-233,-758v-21,-67,-32,-139,-33,-213v-1,70,-16,151,-37,213xm1499,-3166r-205,-422r-221,422r-446,-37r499,-840r439,0r446,840","w":2662},"\u00c3":{"d":"1913,0r-205,-643r-844,0r-213,643r-704,0r1024,-2875r700,0r1032,2875r-790,0xm1012,-1102r544,0r-233,-758v-21,-67,-32,-139,-33,-213v-1,70,-16,151,-37,213xm879,-3804v199,-83,431,11,645,15v72,-1,87,-46,110,-104v10,-28,21,-64,33,-109r406,70v-27,209,-77,373,-173,492v-72,88,-168,136,-311,139v-171,0,-323,-43,-491,-45v-74,-1,-87,43,-109,101v-9,27,-20,63,-31,107r-409,-73v39,-280,123,-498,330,-593","w":2662},"\u00c4":{"d":"1913,0r-205,-643r-844,0r-213,643r-704,0r1024,-2875r700,0r1032,2875r-790,0xm1012,-1102r544,0r-233,-758v-21,-67,-32,-139,-33,-213v-1,70,-16,151,-37,213xm1454,-3224r0,-524r598,0r0,524r-598,0xm549,-3224r0,-524r598,0r0,524r-598,0","w":2662},"\u00c5":{"d":"1913,0r-205,-643r-844,0r-213,643r-704,0r1024,-2875r700,0r1032,2875r-790,0xm1012,-1102r544,0r-233,-758v-21,-67,-32,-139,-33,-213v-1,70,-16,151,-37,213xm1335,-4026v299,-2,483,138,484,426v-8,309,-195,457,-508,462v-301,-3,-482,-133,-484,-434v5,-223,125,-356,296,-420v63,-22,133,-34,212,-34xm1319,-3404v113,0,156,-71,156,-184v0,-100,-48,-165,-148,-164v-103,0,-157,72,-156,180v0,104,46,168,148,168","w":2662},"\u00c6":{"d":"1020,-643r-422,643r-762,0r2015,-2875r1966,0r-49,540r-1147,0r0,606r1049,0r0,537r-1049,0r0,651r1160,0r53,541r-1925,0r0,-643r-889,0xm1909,-1102r0,-905r-590,901","w":3990},"\u00c7":{"d":"941,-2798v401,-163,1055,-122,1402,50r-57,950r-611,33r-20,-537v-256,-19,-458,38,-573,185v-124,152,-178,376,-177,671v3,453,110,785,465,876v51,12,102,17,154,17v282,-1,520,-81,729,-176r155,545v-209,96,-424,173,-700,200v46,177,81,401,1,563v-79,156,-239,241,-451,289v-121,28,-270,45,-447,50r-74,-410v151,-12,262,-27,357,-69v90,-40,83,-115,68,-239v-5,-53,-13,-113,-23,-180v-713,-86,-1001,-600,-1000,-1409v3,-724,283,-1201,802,-1409","w":2531},"\u00d0":{"d":"1118,-541v208,-2,428,14,578,-47v298,-113,393,-421,393,-846v0,-433,-80,-741,-387,-851v-148,-57,-376,-46,-584,-46r0,689r520,-21r-8,422r-512,16r0,684xm2822,-1520v0,988,-457,1516,-1429,1520r-987,0r0,-1200r-377,20r8,-413r369,-21r0,-1261r1064,0v680,-3,1111,212,1270,729v55,171,82,380,82,626","w":2961},"\u00c8":{"d":"217,0r0,-2875r1909,0r-49,540r-1147,0r0,606r1048,0r0,537r-1048,0r0,651r1159,0r53,541r-1925,0xm946,-3158r-586,-782r504,-111r525,819","w":2265},"\u00c9":{"d":"217,0r0,-2875r1909,0r-49,540r-1147,0r0,606r1048,0r0,537r-1048,0r0,651r1159,0r53,541r-1925,0xm1372,-3158r-442,-74r520,-819r508,111","w":2265},"\u00ca":{"d":"217,0r0,-2875r1909,0r-49,540r-1147,0r0,606r1048,0r0,537r-1048,0r0,651r1159,0r53,541r-1925,0xm1339,-3166r-204,-422r-222,422r-446,-37r500,-840r438,0r446,840","w":2265},"\u00cb":{"d":"217,0r0,-2875r1909,0r-49,540r-1147,0r0,606r1048,0r0,537r-1048,0r0,651r1159,0r53,541r-1925,0xm1319,-3224r0,-524r598,0r0,524r-598,0xm414,-3224r0,-524r598,0r0,524r-598,0","w":2265},"\u00cc":{"d":"1597,-2392r-376,29r0,1871r393,25r0,467r-1491,0r0,-467r389,-25r0,-1871r-369,-29r0,-483r1454,0r0,483xm627,-3158r-586,-782r504,-111r524,819","w":1737},"\u00cd":{"d":"1597,-2392r-376,29r0,1871r393,25r0,467r-1491,0r0,-467r389,-25r0,-1871r-369,-29r0,-483r1454,0r0,483xm1053,-3158r-443,-74r520,-819r508,111","w":1737},"\u00ce":{"d":"1597,-2392r-376,29r0,1871r393,25r0,467r-1491,0r0,-467r389,-25r0,-1871r-369,-29r0,-483r1454,0r0,483xm1040,-3166r-204,-422r-222,422r-446,-37r500,-840r438,0r446,840","w":1737},"\u00cf":{"d":"1602,-2392r-377,29r0,1871r393,25r0,467r-1491,0r0,-467r389,-25r0,-1871r-369,-29r0,-483r1455,0r0,483xm1012,-3224r0,-524r598,0r0,524r-598,0xm106,-3224r0,-524r599,0r0,524r-599,0","w":1737},"\u00d1":{"d":"2114,0r-1193,-1606v-19,-26,-32,-48,-40,-69r0,1675r-664,0r0,-2875r610,0r1213,1697v15,21,24,35,33,56r0,-1753r659,0r0,2875r-618,0xm1010,-3804v199,-83,431,11,645,15v72,-1,87,-46,110,-104v10,-28,21,-64,33,-109r406,70v-27,209,-77,373,-173,492v-72,88,-168,136,-311,139v-171,0,-323,-43,-491,-45v-73,-1,-87,43,-109,101v-8,27,-19,63,-30,107r-410,-73v39,-280,123,-498,330,-593","w":2949},"\u00d2":{"d":"2611,-2310v142,295,186,822,109,1244v-108,542,-407,908,-918,1048v-351,93,-850,57,-1106,-86v-404,-207,-558,-663,-557,-1285v2,-722,265,-1205,783,-1411v357,-146,954,-132,1266,37v191,99,331,249,423,453xm1862,-774v140,-226,155,-732,99,-1076v-53,-282,-169,-483,-486,-489v-324,7,-463,206,-528,487v-69,341,-51,892,91,1116v78,132,194,201,387,204v220,-1,352,-94,437,-242xm1262,-3158r-586,-782r504,-111r524,819"},"\u00d3":{"d":"2611,-2310v142,295,186,822,109,1244v-108,542,-407,908,-918,1048v-351,93,-850,57,-1106,-86v-404,-207,-558,-663,-557,-1285v2,-722,265,-1205,783,-1411v357,-146,954,-132,1266,37v191,99,331,249,423,453xm1862,-774v140,-226,155,-732,99,-1076v-53,-282,-169,-483,-486,-489v-324,7,-463,206,-528,487v-69,341,-51,892,91,1116v78,132,194,201,387,204v220,-1,352,-94,437,-242xm1688,-3158r-443,-74r520,-819r508,111"},"\u00d4":{"d":"2611,-2310v142,295,186,822,109,1244v-108,542,-407,908,-918,1048v-351,93,-850,57,-1106,-86v-404,-207,-558,-663,-557,-1285v2,-722,265,-1205,783,-1411v357,-146,954,-132,1266,37v191,99,331,249,423,453xm1862,-774v140,-226,155,-732,99,-1076v-53,-282,-169,-483,-486,-489v-324,7,-463,206,-528,487v-69,341,-51,892,91,1116v78,132,194,201,387,204v220,-1,352,-94,437,-242xm1675,-3166r-205,-422r-221,422r-446,-37r500,-840r438,0r446,840"},"\u00d5":{"d":"2611,-2310v142,295,186,822,109,1244v-108,542,-407,908,-918,1048v-351,93,-850,57,-1106,-86v-404,-207,-558,-663,-557,-1285v2,-722,265,-1205,783,-1411v357,-146,954,-132,1266,37v191,99,331,249,423,453xm1862,-774v140,-226,155,-732,99,-1076v-53,-282,-169,-483,-486,-489v-324,7,-463,206,-528,487v-69,341,-51,892,91,1116v78,132,194,201,387,204v220,-1,352,-94,437,-242xm1076,-3804v198,-83,430,11,644,15v73,-1,88,-46,111,-104v10,-28,21,-64,33,-109r405,70v-27,209,-76,373,-172,492v-72,88,-168,136,-311,139v-172,0,-323,-43,-492,-45v-73,0,-88,43,-108,101v-10,27,-20,63,-31,107r-410,-73v39,-280,124,-497,331,-593"},"\u00d6":{"d":"2611,-2310v142,295,186,822,109,1244v-108,542,-407,908,-918,1048v-351,93,-850,57,-1106,-86v-404,-207,-558,-663,-557,-1285v2,-722,265,-1205,783,-1411v357,-146,954,-132,1266,37v191,99,331,249,423,453xm1862,-774v140,-226,155,-732,99,-1076v-53,-282,-169,-483,-486,-489v-324,7,-463,206,-528,487v-69,341,-51,892,91,1116v78,132,194,201,387,204v220,-1,352,-94,437,-242xm1634,-3224r0,-524r598,0r0,524r-598,0xm729,-3224r0,-524r598,0r0,524r-598,0"},"\u00d8":{"d":"2224,-2740v383,222,536,653,533,1265v-10,784,-326,1283,-951,1456v-203,55,-492,70,-716,27r-201,479r-463,0r246,-598v-382,-226,-538,-656,-533,-1278v2,-725,267,-1207,787,-1412v236,-95,573,-124,872,-78r197,-488r479,0xm1417,-512v513,-5,594,-425,598,-954v0,-236,-23,-455,-82,-619r-643,1565v33,4,89,8,127,8xm1589,-2347v-246,-32,-448,45,-549,199v-114,164,-160,399,-159,698v0,248,21,482,82,651"},"\u00de":{"d":"930,0r-713,0r0,-2970r713,0r0,402v278,-1,565,-10,760,70v353,129,555,417,559,884v-9,472,-227,765,-533,945v-151,84,-337,140,-561,141r-225,0r0,528xm1548,-1565v0,-281,-110,-458,-393,-458r-225,0r0,987v149,-3,314,18,408,-44v145,-84,209,-261,210,-485","w":2327},"\u00d9":{"d":"2560,-1126v-5,569,-263,918,-693,1072v-278,108,-759,107,-1047,16v-440,-135,-630,-499,-627,-1080r0,-1757r720,0r0,1785v-1,269,57,454,253,520v117,41,337,38,449,-6v197,-69,262,-259,261,-530r0,-1769r684,0r0,1749xm1159,-3158r-586,-782r504,-111r525,819","w":2757},"\u00da":{"d":"2560,-1126v-5,569,-263,918,-693,1072v-278,108,-759,107,-1047,16v-440,-135,-630,-499,-627,-1080r0,-1757r720,0r0,1785v-1,269,57,454,253,520v117,41,337,38,449,-6v197,-69,262,-259,261,-530r0,-1769r684,0r0,1749xm1585,-3158r-442,-74r520,-819r508,111","w":2757},"\u00db":{"d":"2560,-1126v-5,569,-263,918,-693,1072v-278,108,-759,107,-1047,16v-440,-135,-630,-499,-627,-1080r0,-1757r720,0r0,1785v-1,269,57,454,253,520v117,41,337,38,449,-6v197,-69,262,-259,261,-530r0,-1769r684,0r0,1749xm1581,-3166r-205,-422r-221,422r-446,-37r499,-840r439,0r446,840","w":2757},"\u00dc":{"d":"2560,-1126v-5,569,-263,918,-693,1072v-278,108,-759,107,-1047,16v-440,-135,-630,-499,-627,-1080r0,-1757r720,0r0,1785v-1,269,57,454,253,520v117,41,337,38,449,-6v197,-69,262,-259,261,-530r0,-1769r684,0r0,1749xm1532,-3224r0,-524r598,0r0,524r-598,0xm627,-3224r0,-524r598,0r0,524r-598,0","w":2757},"\u00dd":{"d":"1581,-1217r0,1217r-717,0r0,-1217r-921,-1658r827,0r524,970r586,-970r700,0xm1495,-3158r-442,-74r520,-819r508,111","w":2523},"\u00e0":{"d":"938,-406v121,-1,206,-48,270,-106r0,-299v-151,15,-280,24,-386,69v-48,23,-69,59,-68,128v3,124,62,203,184,208xm2015,20v-338,16,-686,12,-778,-225v-131,146,-292,240,-565,238v-276,-7,-446,-156,-528,-365v-62,-155,-71,-406,31,-520v131,-156,360,-210,623,-256v118,-19,255,-35,414,-47v-8,-165,45,-383,-139,-365v-273,7,-472,109,-647,222r-258,-410v276,-200,603,-332,1073,-332v445,-3,670,199,668,635r0,836v4,56,56,56,109,73v28,6,64,13,108,21xm942,-2253r-586,-782r504,-111r524,819","w":2154},"\u00e1":{"d":"938,-406v121,-1,206,-48,270,-106r0,-299v-151,15,-280,24,-386,69v-48,23,-69,59,-68,128v3,124,62,203,184,208xm2015,20v-338,16,-686,12,-778,-225v-131,146,-292,240,-565,238v-276,-7,-446,-156,-528,-365v-62,-155,-71,-406,31,-520v131,-156,360,-210,623,-256v118,-19,255,-35,414,-47v-8,-165,45,-383,-139,-365v-273,7,-472,109,-647,222r-258,-410v276,-200,603,-332,1073,-332v445,-3,670,199,668,635r0,836v4,56,56,56,109,73v28,6,64,13,108,21xm1368,-2253r-442,-74r520,-819r508,111","w":2154},"\u00e2":{"d":"938,-406v121,-1,206,-48,270,-106r0,-299v-151,15,-280,24,-386,69v-48,23,-69,59,-68,128v3,124,62,203,184,208xm2015,20v-338,16,-686,12,-778,-225v-131,146,-292,240,-565,238v-276,-7,-446,-156,-528,-365v-62,-155,-71,-406,31,-520v131,-156,360,-210,623,-256v118,-19,255,-35,414,-47v-8,-165,45,-383,-139,-365v-273,7,-472,109,-647,222r-258,-410v276,-200,603,-332,1073,-332v445,-3,670,199,668,635r0,836v4,56,56,56,109,73v28,6,64,13,108,21xm1286,-2261r-205,-422r-221,422r-446,-37r499,-840r439,0r446,840","w":2154},"\u00e3":{"d":"938,-406v121,-1,206,-48,270,-106r0,-299v-151,15,-280,24,-386,69v-48,23,-69,59,-68,128v3,124,62,203,184,208xm2015,20v-338,16,-686,12,-778,-225v-131,146,-292,240,-565,238v-276,-7,-446,-156,-528,-365v-62,-155,-71,-406,31,-520v131,-156,360,-210,623,-256v118,-19,255,-35,414,-47v-8,-165,45,-383,-139,-365v-273,7,-472,109,-647,222r-258,-410v276,-200,603,-332,1073,-332v445,-3,670,199,668,635r0,836v4,56,56,56,109,73v28,6,64,13,108,21xm724,-2899v198,-83,430,11,644,15v73,-1,87,-46,110,-104v10,-27,21,-64,33,-109r406,70v-27,209,-77,373,-173,492v-73,88,-167,136,-310,139v-172,0,-323,-43,-492,-45v-73,0,-87,44,-108,102v-10,27,-20,63,-31,107r-410,-74v39,-280,124,-497,331,-593","w":2154},"\u00e4":{"d":"938,-406v121,-1,206,-48,270,-106r0,-299v-151,15,-280,24,-386,69v-48,23,-69,59,-68,128v3,124,62,203,184,208xm2015,20v-338,16,-686,12,-778,-225v-131,146,-292,240,-565,238v-276,-7,-446,-156,-528,-365v-62,-155,-71,-406,31,-520v131,-156,360,-210,623,-256v118,-19,255,-35,414,-47v-8,-165,45,-383,-139,-365v-273,7,-472,109,-647,222r-258,-410v276,-200,603,-332,1073,-332v445,-3,670,199,668,635r0,836v4,56,56,56,109,73v28,6,64,13,108,21xm1298,-2318r0,-525r598,0r0,525r-598,0xm393,-2318r0,-525r598,0r0,525r-598,0","w":2154},"\u00e5":{"d":"938,-406v121,-1,206,-48,270,-106r0,-299v-151,15,-280,24,-386,69v-48,23,-69,59,-68,128v3,124,62,203,184,208xm2015,20v-338,16,-686,12,-778,-225v-131,146,-292,240,-565,238v-276,-7,-446,-156,-528,-365v-62,-155,-71,-406,31,-520v131,-156,360,-210,623,-256v118,-19,255,-35,414,-47v-8,-165,45,-383,-139,-365v-273,7,-472,109,-647,222r-258,-410v276,-200,603,-332,1073,-332v445,-3,670,199,668,635r0,836v4,56,56,56,109,73v28,6,64,13,108,21xm1130,-3121v299,-2,483,138,484,426v-7,310,-195,457,-508,463v-300,-3,-481,-133,-483,-434v5,-223,124,-357,295,-420v63,-24,133,-35,212,-35xm1114,-2499v114,0,156,-70,156,-184v0,-101,-47,-165,-148,-164v-104,0,-156,72,-155,181v0,103,46,167,147,167","w":2154},"\u00e6":{"d":"764,-686v-35,142,29,282,174,280v109,-1,183,-43,250,-86v-30,-96,-40,-200,-53,-315v-138,16,-238,27,-321,69v-26,14,-42,32,-50,52xm2347,-1176v6,-199,-47,-352,-221,-356v-212,4,-283,136,-295,356r516,0xm168,-1708v276,-200,603,-332,1073,-332v187,0,334,33,442,107v135,-60,283,-89,471,-90v575,1,790,365,791,942v-1,96,-10,210,-25,295r-1093,0v25,209,128,326,364,323v246,-4,470,-52,652,-123r139,426v-233,127,-555,193,-914,193v-313,-1,-544,-63,-700,-217v-158,131,-369,213,-647,217v-305,-3,-496,-139,-581,-365v-55,-153,-67,-399,30,-514v122,-153,336,-210,586,-256v111,-20,241,-36,391,-49v17,-122,45,-240,90,-336v-46,-17,-107,-33,-164,-33v-273,7,-472,109,-647,222","w":3088},"\u00e7":{"d":"1356,4v55,208,85,492,-39,640v-165,208,-487,260,-858,274r-74,-410v151,-12,262,-27,357,-69v91,-40,82,-116,68,-241v-5,-56,-13,-116,-24,-182v-472,-65,-678,-390,-675,-934v1,-540,206,-890,591,-1039v288,-109,740,-76,994,28r-135,487v-114,-36,-247,-55,-377,-57v-305,-2,-373,218,-373,528v1,272,77,465,344,467v166,0,303,-37,430,-86r164,475v-116,54,-244,99,-393,119","w":1769},"\u00f0":{"d":"1315,-1278v-78,-26,-213,-41,-290,0v-123,69,-160,226,-161,426v1,158,20,286,107,348v70,42,180,17,221,-33v123,-162,112,-449,123,-741xm1016,33v-563,2,-855,-262,-852,-828v4,-509,195,-834,595,-942v169,-40,381,-30,531,17v-5,-34,-10,-68,-17,-104r-45,-200v-8,-32,-16,-60,-24,-85r-454,114r-82,-385r381,-86v-67,-107,-146,-221,-230,-311r545,-324v123,126,252,291,340,447r381,-99r94,406r-324,78v93,268,163,594,168,946v2,448,-85,796,-271,1036v-159,204,-396,317,-736,320","w":2245},"\u00e8":{"d":"1962,-180v-235,127,-526,211,-885,213v-651,5,-971,-303,-966,-955v1,-539,211,-885,601,-1032v126,-46,267,-69,423,-69v574,1,789,365,790,942v-2,96,-10,209,-24,295r-1094,0v29,218,150,322,393,323v244,-4,443,-72,623,-143xm1331,-1176v3,-201,-50,-351,-225,-356v-211,4,-284,136,-295,356r520,0xm881,-2253r-586,-782r504,-111r524,819","w":2068},"\u00e9":{"d":"1962,-180v-235,127,-526,211,-885,213v-651,5,-971,-303,-966,-955v1,-539,211,-885,601,-1032v126,-46,267,-69,423,-69v574,1,789,365,790,942v-2,96,-10,209,-24,295r-1094,0v29,218,150,322,393,323v244,-4,443,-72,623,-143xm1331,-1176v3,-201,-50,-351,-225,-356v-211,4,-284,136,-295,356r520,0xm1303,-2253r-443,-74r520,-819r508,111","w":2068},"\u00ea":{"d":"1962,-180v-235,127,-526,211,-885,213v-651,5,-971,-303,-966,-955v1,-539,211,-885,601,-1032v126,-46,267,-69,423,-69v574,1,789,365,790,942v-2,96,-10,209,-24,295r-1094,0v29,218,150,322,393,323v244,-4,443,-72,623,-143xm1331,-1176v3,-201,-50,-351,-225,-356v-211,4,-284,136,-295,356r520,0xm1282,-2261r-205,-422r-221,422r-446,-37r499,-840r439,0r446,840","w":2068},"\u00eb":{"d":"1962,-180v-235,127,-526,211,-885,213v-651,5,-971,-303,-966,-955v1,-539,211,-885,601,-1032v126,-46,267,-69,423,-69v574,1,789,365,790,942v-2,96,-10,209,-24,295r-1094,0v29,218,150,322,393,323v244,-4,443,-72,623,-143xm1331,-1176v3,-201,-50,-351,-225,-356v-211,4,-284,136,-295,356r520,0xm1253,-2318r0,-525r598,0r0,525r-598,0xm348,-2318r0,-525r598,0r0,525r-598,0","w":2068},"\u00ec":{"d":"205,0r0,-1962r688,-33r0,1995r-688,0xm324,-2253r-586,-782r504,-111r524,819","w":1090},"\u00ed":{"d":"205,0r0,-1962r688,-33r0,1995r-688,0xm717,-2253r-443,-74r521,-819r508,111","w":1090},"\u00ee":{"d":"205,0r0,-1962r688,-33r0,1995r-688,0xm725,-2261r-205,-422r-221,422r-446,-37r499,-840r439,0r446,840","w":1090},"\u00ef":{"d":"205,0r0,-1962r688,-33r0,1995r-688,0xm668,-2318r0,-525r598,0r0,525r-598,0xm-180,-2318r0,-525r598,0r0,525r-598,0","w":1090},"\u00f1":{"d":"1507,-2032v378,-5,533,200,529,578r0,1454r-701,0r0,-1307v2,-92,-26,-142,-118,-139v-126,9,-221,91,-312,164r0,1282r-696,0r0,-1978r614,-33v28,77,42,179,58,270v131,-115,285,-217,472,-269v54,-15,105,-22,154,-22xm699,-2899v198,-82,430,11,644,15v72,-1,88,-46,111,-104v10,-27,21,-64,33,-109r405,70v-27,209,-76,373,-172,492v-72,88,-168,136,-311,139v-171,0,-323,-43,-491,-45v-73,0,-88,43,-110,102v-8,27,-19,63,-30,107r-409,-74v39,-280,123,-498,330,-593","w":2232},"\u00f2":{"d":"1159,-2023v665,-5,983,322,979,987v-6,508,-234,838,-608,988v-134,54,-287,81,-461,81v-663,3,-971,-336,-967,-1000v5,-510,238,-834,614,-981v131,-50,278,-75,443,-75xm1106,-446v289,-6,305,-270,311,-570v-5,-280,-23,-516,-291,-520v-96,0,-170,42,-224,126v-52,84,-79,214,-79,390v1,185,10,335,62,448v41,85,104,124,221,126xm901,-2253r-586,-782r504,-111r524,819","w":2236},"\u00f3":{"d":"1159,-2023v665,-5,983,322,979,987v-6,508,-234,838,-608,988v-134,54,-287,81,-461,81v-663,3,-971,-336,-967,-1000v5,-510,238,-834,614,-981v131,-50,278,-75,443,-75xm1106,-446v289,-6,305,-270,311,-570v-5,-280,-23,-516,-291,-520v-96,0,-170,42,-224,126v-52,84,-79,214,-79,390v1,185,10,335,62,448v41,85,104,124,221,126xm1323,-2253r-442,-74r520,-819r508,111","w":2236},"\u00f4":{"d":"1159,-2023v665,-5,983,322,979,987v-6,508,-234,838,-608,988v-134,54,-287,81,-461,81v-663,3,-971,-336,-967,-1000v5,-510,238,-834,614,-981v131,-50,278,-75,443,-75xm1106,-446v289,-6,305,-270,311,-570v-5,-280,-23,-516,-291,-520v-96,0,-170,42,-224,126v-52,84,-79,214,-79,390v1,185,10,335,62,448v41,85,104,124,221,126xm1352,-2261r-205,-422r-221,422r-447,-37r500,-840r438,0r447,840","w":2236},"\u00f5":{"d":"1159,-2023v665,-5,983,322,979,987v-6,508,-234,838,-608,988v-134,54,-287,81,-461,81v-663,3,-971,-336,-967,-1000v5,-510,238,-834,614,-981v131,-50,278,-75,443,-75xm1106,-446v289,-6,305,-270,311,-570v-5,-280,-23,-516,-291,-520v-96,0,-170,42,-224,126v-52,84,-79,214,-79,390v1,185,10,335,62,448v41,85,104,124,221,126xm715,-2899v199,-82,431,11,645,15v73,-1,87,-46,110,-104v10,-27,21,-64,33,-109r406,70v-27,209,-77,373,-173,492v-72,88,-168,136,-311,139v-171,0,-322,-43,-491,-45v-73,0,-87,44,-108,102v-10,27,-20,63,-31,107r-410,-74v39,-280,123,-498,330,-593","w":2236},"\u00f6":{"d":"1159,-2023v665,-5,983,322,979,987v-6,508,-234,838,-608,988v-134,54,-287,81,-461,81v-663,3,-971,-336,-967,-1000v5,-510,238,-834,614,-981v131,-50,278,-75,443,-75xm1106,-446v289,-6,305,-270,311,-570v-5,-280,-23,-516,-291,-520v-96,0,-170,42,-224,126v-52,84,-79,214,-79,390v1,185,10,335,62,448v41,85,104,124,221,126xm1298,-2318r0,-525r598,0r0,525r-598,0xm393,-2318r0,-525r598,0r0,525r-598,0","w":2236},"\u00f8":{"d":"1741,-1905v273,155,399,445,397,877v-6,512,-241,836,-618,984v-166,66,-365,87,-586,73r-193,471r-462,0r237,-578v-288,-145,-414,-448,-414,-889v5,-510,238,-834,614,-981v168,-66,369,-83,591,-71r196,-475r479,0xm1106,-446v289,-6,305,-270,311,-570v-5,-280,-23,-516,-291,-520v-96,0,-170,42,-224,126v-52,84,-79,214,-79,390v1,185,10,335,62,448v41,85,104,124,221,126","w":2236},"\u00df":{"d":"1225,-3031v528,4,916,133,925,643v-7,255,-126,379,-241,545v-28,37,-51,68,-69,94v-39,60,-92,118,-64,205v12,38,52,53,97,75v321,130,669,236,780,553v52,161,44,366,-24,514v-128,280,-412,437,-823,439v-301,-1,-559,-59,-786,-148r110,-507v201,79,451,143,717,151v93,-3,179,-21,193,-98v-5,-81,-64,-108,-124,-141v-245,-109,-520,-186,-693,-346v-138,-106,-160,-395,-73,-579v74,-182,206,-358,303,-529v24,-47,41,-89,42,-150v-4,-167,-123,-221,-303,-221v-187,4,-290,108,-295,295r0,2236r-692,0r0,-2085v7,-640,376,-940,1020,-946","w":2765},"\u00fe":{"d":"1147,4r-242,-8r0,827r-700,37r0,-3490r688,-32r0,860v148,-125,303,-227,565,-230v373,7,566,210,656,517v35,121,53,267,53,438v-5,691,-322,1079,-1020,1081xm1063,-462v329,31,397,-212,395,-533v-4,-253,-51,-459,-287,-471v-114,2,-187,51,-266,102r0,877r101,19v18,2,38,5,57,6","w":2265},"\u00f9":{"d":"1016,-545v138,-10,212,-85,303,-151r0,-1266r696,-29r0,1975r-614,36v-28,-78,-42,-179,-58,-270v-129,114,-286,215,-471,266v-216,53,-457,4,-556,-118v-87,-99,-119,-245,-119,-435r0,-1425r700,-29r0,1303v1,99,26,141,119,143xm885,-2253r-586,-782r504,-111r524,819","w":2224},"\u00fa":{"d":"1016,-545v138,-10,212,-85,303,-151r0,-1266r696,-29r0,1975r-614,36v-28,-78,-42,-179,-58,-270v-129,114,-286,215,-471,266v-216,53,-457,4,-556,-118v-87,-99,-119,-245,-119,-435r0,-1425r700,-29r0,1303v1,99,26,141,119,143xm1311,-2253r-443,-74r521,-819r507,111","w":2224},"\u00fb":{"d":"1016,-545v138,-10,212,-85,303,-151r0,-1266r696,-29r0,1975r-614,36v-28,-78,-42,-179,-58,-270v-129,114,-286,215,-471,266v-216,53,-457,4,-556,-118v-87,-99,-119,-245,-119,-435r0,-1425r700,-29r0,1303v1,99,26,141,119,143xm1286,-2261r-205,-422r-221,422r-446,-37r499,-840r439,0r446,840","w":2224},"\u00fc":{"d":"1016,-545v138,-10,212,-85,303,-151r0,-1266r696,-29r0,1975r-614,36v-28,-78,-42,-179,-58,-270v-129,114,-286,215,-471,266v-216,53,-457,4,-556,-118v-87,-99,-119,-245,-119,-435r0,-1425r700,-29r0,1303v1,99,26,141,119,143xm1278,-2318r0,-525r598,0r0,525r-598,0xm373,-2318r0,-525r598,0r0,525r-598,0","w":2224},"\u00fd":{"d":"1004,-958v20,66,35,140,36,213v1,-70,17,-151,37,-213r328,-1012r614,0r-897,2363v-127,363,-427,522,-905,537r-111,-492v233,-30,420,-66,492,-245r78,-197r-684,-1966r700,0xm1237,-2253r-442,-74r520,-819r508,111","w":2007},"\u00ff":{"d":"1004,-958v20,66,35,140,36,213v1,-70,17,-151,37,-213r328,-1012r614,0r-897,2363v-127,363,-427,522,-905,537r-111,-492v233,-30,420,-66,492,-245r78,-197r-684,-1966r700,0xm1184,-2318r0,-525r598,0r0,525r-598,0xm279,-2318r0,-525r598,0r0,525r-598,0","w":2007},"\u00b4":{"d":"647,-2253r-442,-74r520,-819r508,111","w":1503},"\u00a8":{"d":"1155,-2318r0,-525r598,0r0,525r-598,0xm250,-2318r0,-525r598,0r0,525r-598,0","w":1987},"\u00af":{"d":"1548,-2396r-1413,0r29,-451r1413,0","w":1712},"\u00b8":{"d":"1016,-209v64,176,109,362,114,561v-7,326,-213,448,-499,516v-121,28,-270,45,-447,50r-73,-410v151,-12,262,-27,357,-69v51,-25,74,-54,77,-115v-6,-172,-36,-348,-66,-504","w":1425},"\u00ad":{"d":"1434,-786r-1278,0r24,-451r1278,0","w":1614},"\u00a1":{"d":"1122,-1970r0,639r-741,0r0,-639r741,0xm446,-942r623,0r70,1986r-766,0","w":1405},"\u00bf":{"d":"1450,-1970r0,643r-733,0r0,-643r733,0xm900,422v191,91,527,87,816,74r-57,585v-290,42,-707,53,-961,-30v-397,-116,-672,-395,-610,-915v51,-355,400,-424,686,-547v74,-36,134,-47,135,-142v-4,-126,-26,-262,-45,-377r561,-49v49,181,116,394,93,621v-30,167,-171,209,-320,270v-57,21,-124,43,-203,68v-88,27,-155,51,-211,92v-72,49,-60,180,-11,250v27,40,69,74,127,100","w":1880},"\u00ab":{"d":"2019,-987r426,762r-614,135r-537,-868r611,-926r614,115xm889,-987r422,762r-615,135r-532,-868r606,-926r619,115","w":2757},"\u00bb":{"d":"1987,-90r-615,-119r500,-782r-426,-758r614,-135r537,864xm856,-90r-618,-119r495,-782r-418,-758r607,-135r536,864","w":2757},"\u00b7":{"d":"348,-717r0,-594r688,0r0,594r-688,0","w":1389},"\u00a7":{"d":"774,-2118v-92,61,-154,172,-156,312v11,282,134,484,241,688r292,504v130,233,259,477,307,782v92,-61,152,-161,156,-307v-11,-283,-134,-485,-241,-689r-292,-506v-130,-234,-260,-478,-307,-784xm1974,-446v52,198,42,413,-30,588v-134,321,-436,510,-891,513v-329,-3,-596,-90,-795,-225r127,-352v47,19,97,39,151,58v152,54,322,102,517,110v-60,-414,-275,-704,-451,-1010r-144,-246v-115,-217,-233,-439,-241,-751v8,-431,245,-675,579,-789v320,-111,784,-50,1030,72v60,28,116,59,165,94r-136,352v-197,-82,-417,-156,-684,-168v60,414,275,704,451,1010r144,246v86,153,161,317,208,498","w":2224},"\u00b6":{"d":"2781,-1495r-344,0r0,2318r-590,33r0,-2826r967,0xm1528,-455v-124,109,-308,189,-533,189v-477,-2,-677,-307,-676,-803v1,-446,156,-749,469,-879v203,-89,506,-59,740,-22r0,1515","w":3232},"\u00a6":{"d":"590,-1581r0,-1794r500,0r0,1794r-500,0xm590,856r0,-1831r500,0r0,1831r-500,0","w":1675},"\u00a9":{"d":"2584,-1497v83,217,103,496,44,749v-108,443,-385,746,-818,871v-266,78,-651,59,-892,-27v-419,-146,-657,-483,-660,-1038v6,-550,258,-878,626,-1068v281,-151,784,-191,1118,-60v278,104,478,298,582,573xm557,-991v-2,600,303,909,897,909v453,-4,728,-213,849,-552v78,-218,82,-534,0,-749v-119,-318,-387,-509,-816,-513v-448,3,-737,187,-865,515v-43,113,-65,243,-65,390xm1913,-508v-116,75,-275,115,-467,115v-358,3,-519,-179,-516,-541v1,-303,114,-500,330,-584v189,-69,469,-39,624,35r-90,295v-77,-35,-163,-51,-258,-53v-166,-3,-198,113,-197,283v1,143,40,248,181,249v115,0,212,-37,299,-73","w":2929},"\u00ae":{"d":"2315,-2704v112,278,78,683,-49,913v-173,331,-473,557,-972,562v-511,-1,-835,-201,-971,-575v-75,-204,-88,-507,-25,-732v107,-384,378,-622,777,-714v237,-52,521,-38,723,39v248,92,424,263,517,507xm504,-2257v-1,540,273,815,811,815v405,-4,652,-191,761,-494v70,-196,74,-481,0,-674v-108,-286,-347,-458,-733,-462v-404,2,-665,168,-780,463v-39,101,-59,219,-59,352xm1696,-2490v-7,143,-77,231,-176,311r262,438r-295,0r-193,-377r-102,0r0,377r-234,0r0,-1024r431,0v190,2,300,93,307,275xm1450,-2454v-1,-88,-41,-146,-131,-147r-127,0r0,320r184,0v49,-59,74,-116,74,-173","w":2638},"\u00a4":{"d":"2277,-168v-209,141,-477,203,-831,201v-581,4,-871,-270,-909,-811r-398,0r45,-402r369,0v61,-397,259,-669,597,-787v326,-106,817,-56,1078,66r-155,504v-131,-55,-289,-88,-467,-90v-227,-3,-327,113,-361,307r660,0r-41,402r-611,0v35,173,137,282,324,286v208,-1,391,-60,537,-135","w":2343},"\u00a2":{"d":"111,-918v2,-579,233,-944,684,-1069r-9,-553r504,0r-4,525v152,9,292,39,410,86r-135,487v-114,-36,-247,-55,-377,-57v-305,-2,-373,218,-373,528v1,272,77,465,344,467v166,0,303,-37,430,-86r164,475v-135,61,-288,111,-463,131r4,521r-504,0r9,-517v-474,-69,-687,-388,-684,-938","w":1769},"\u00a3":{"d":"1671,-451v209,-2,256,-138,344,-274r393,246v-107,249,-217,465,-532,501v-355,30,-765,-12,-1142,-14r-562,-8r-41,-446r385,-21v41,-154,14,-333,4,-520r-332,0r37,-402r262,0r-17,-225v-53,-675,414,-919,1086,-853v208,25,377,87,533,169r-184,467v-146,-56,-289,-104,-480,-106v-188,-6,-259,105,-244,303r11,245r610,0r-41,402r-532,0r15,252v4,91,-2,199,-15,272","w":2515},"\u00a5":{"d":"193,-688r602,0r0,-66r-131,-237r-500,0r29,-361r262,0r-349,-618r775,0r323,618r336,-618r655,0r-372,618r319,0r-24,361r-512,0r-127,217r0,86r663,0r-24,364r-639,0r0,324r-684,0r0,-324r-631,0","w":2310},"\u00aa":{"d":"909,-2654v272,-1,426,113,426,381r0,495v4,54,61,41,111,58r-66,303v-196,0,-404,14,-450,-131v-82,81,-196,131,-336,135v-254,-3,-386,-138,-389,-393v8,-247,215,-287,435,-332v70,-13,154,-22,249,-29r0,-69v-1,-65,-21,-81,-86,-82v-173,1,-287,49,-410,114r-143,-266v178,-112,373,-185,659,-184xm725,-1696v75,1,126,-34,164,-69r0,-177v-98,10,-169,16,-231,42v-34,16,-43,34,-44,77v0,73,36,128,111,127","w":1618},"\u00ba":{"d":"799,-2654v406,1,606,186,606,594v-5,308,-156,503,-385,594v-83,33,-176,49,-279,49v-402,0,-598,-196,-598,-598v4,-311,158,-502,388,-593v81,-30,170,-46,268,-46xm762,-1716v166,-5,185,-149,188,-324v-3,-160,-17,-297,-168,-303v-150,7,-181,135,-184,295v0,113,7,199,40,266v25,45,60,65,124,66","w":1552},"\u00b9":{"d":"467,-1020r0,-885r-377,-28r41,-369r864,-37r0,1319r-528,0","w":1245},"\u00b2":{"d":"152,-2097v169,-139,339,-259,626,-266v254,1,431,90,510,264v56,133,45,317,-38,416v-89,116,-202,200,-353,294r496,0r-29,369r-1171,0r-33,-299r274,-168v124,-76,217,-134,301,-213v43,-45,65,-76,68,-143v-3,-70,-53,-104,-123,-107v-152,6,-252,64,-356,131","w":1495},"\u00b3":{"d":"123,-2114v163,-133,327,-246,610,-249v244,1,422,83,507,241v54,102,49,253,-10,344v-49,81,-113,146,-194,213v162,63,278,176,287,385v-10,304,-197,461,-447,538v-194,62,-498,57,-676,-15v-36,-13,-70,-27,-102,-43r90,-344v119,40,230,72,381,73v128,0,215,-41,217,-159v-1,-157,-222,-159,-389,-140r-32,-360v92,-12,200,-12,303,-12v47,-60,93,-93,94,-189v-3,-73,-51,-109,-127,-111v-131,7,-230,49,-336,119","w":1470},"\u00bc":{"d":"3535,0r-238,0r0,492r-487,20r0,-512r-668,0r-49,-340r725,-922r479,0r0,906r267,0xm2810,-774r-320,418r320,0r0,-418xm1253,0r-610,0r1471,-1995r602,0xm467,-1020r0,-885r-377,-28r41,-369r864,-37r0,1319r-528,0","w":3740},"\u00bd":{"d":"1253,0r-610,0r1471,-1995r602,0xm2400,-1077v172,-138,342,-259,631,-266v254,1,431,90,509,264v57,133,47,316,-37,415v-89,115,-203,199,-353,295r495,0r-28,369r-1172,0r-32,-299r274,-168v124,-76,217,-134,301,-213v43,-45,65,-76,68,-143v-3,-70,-53,-104,-123,-107v-152,6,-252,64,-357,131xm467,-1020r0,-885r-377,-28r41,-369r864,-37r0,1319r-528,0","w":3748},"\u00be":{"d":"1602,0r-611,0r1471,-1995r602,0xm3875,0r-234,0r0,492r-491,20r0,-512r-664,0r-49,-340r725,-922r479,0r0,906r262,0xm3150,-774r-320,418r320,0r0,-418xm123,-2114v163,-133,327,-246,610,-249v244,1,422,83,507,241v54,102,49,253,-10,344v-49,81,-113,146,-194,213v162,63,278,176,287,385v-10,304,-197,461,-447,538v-194,62,-498,57,-676,-15v-36,-13,-70,-27,-102,-43r90,-344v119,40,230,72,381,73v128,0,215,-41,217,-159v-1,-157,-222,-159,-389,-140r-32,-360v92,-12,200,-12,303,-12v47,-60,93,-93,94,-189v-3,-73,-51,-109,-127,-111v-131,7,-230,49,-336,119","w":4084},"\u00b1":{"d":"1225,-2540r0,959r950,0r0,192r-950,0r0,951r-197,0r0,-951r-954,0r0,-192r954,0r0,-959r197,0xm2175,-197r0,197r-2101,0r0,-197r2101,0","w":2249},"\u00d7":{"d":"1135,-1372r417,-483r410,299r-504,536r504,541r-434,299r-434,-471r-430,471r-398,-287r508,-537r-508,-561r434,-290","w":2232},"\u00f7":{"d":"1208,-1893v94,38,169,161,118,291v-36,96,-161,170,-289,120v-95,-37,-170,-163,-120,-291v37,-95,163,-170,291,-120xm2175,-1151r0,197r-2101,0r0,-197r2101,0xm1122,-631v122,2,222,91,226,221v-8,135,-91,218,-226,226v-105,-2,-169,-65,-204,-140v-63,-153,60,-310,204,-307","w":2249},"\u00ac":{"d":"1487,-164r0,-618r-1266,0r25,-443r1749,0r0,1041","w":2232},"\u00b5":{"d":"606,647v6,133,-72,233,-180,238v-91,-3,-136,-72,-161,-143v-47,-145,30,-304,51,-420v36,-177,44,-368,49,-560r0,-1593r335,0r0,1151v2,247,26,349,156,438v80,46,179,72,290,38v166,-49,305,-135,423,-247r0,-1380r332,0r0,1204v5,183,-12,344,73,434v50,44,129,37,172,-20v28,-32,49,-98,62,-197r82,0v-33,265,-106,462,-381,471v-244,-3,-322,-164,-340,-401v-156,177,-323,309,-558,382v-199,65,-378,-19,-491,-116v-4,194,12,362,49,504v25,105,37,178,37,217","w":2359},"\u00b0":{"d":"1388,-2394v61,141,61,329,0,471v-95,205,-275,377,-569,379v-193,-2,-327,-75,-434,-180v-111,-106,-177,-239,-180,-435v3,-195,70,-328,180,-434v226,-240,644,-240,868,0v60,60,105,126,135,199xm1135,-1843v125,-121,167,-307,98,-487v-69,-149,-200,-275,-414,-275v-142,2,-238,50,-315,131v-81,77,-129,173,-131,315v0,214,126,344,275,414v102,44,240,44,343,0v53,-22,101,-55,144,-98","w":1638}}});Cufon.registerFont({"w":2064,"face":{"font-family":"Auto 1","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"4096","panose-1":"2 11 10 3 4 0 0 2 0 3","ascent":"3154","descent":"-942","bbox":"-389 -4051 3883 1188","underline-thickness":"82","underline-position":"-410","slope":"-12","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":803},"!":{"d":"967,-1028r-541,0r86,-1987r754,0xm283,0r61,-643r627,0r-62,643r-626,0","w":1290},"\"":{"d":"324,-1577r127,-1298r565,0r-127,1265xm1208,-1577r127,-1298r566,0r-127,1265","w":2114},"#":{"d":"2183,-1552r-336,0r-69,282r286,0r-16,352r-356,0r-111,439r-434,0r115,-439r-328,0r-119,439r-430,0r115,-439r-267,0r25,-352r336,0r70,-282r-295,0r24,-353r361,0r114,-450r443,0r-123,450r323,0r119,-450r430,0r-118,450r262,0xm1094,-1552r-70,282r324,0r69,-282r-323,0","w":2474},"$":{"d":"1200,-2011v120,20,218,48,320,86r-111,459v-139,-39,-273,-73,-434,-74v-117,-12,-146,133,-75,200v37,39,83,68,136,103v151,98,267,186,357,311v94,122,109,333,55,508v-71,217,-232,363,-465,422r-41,533r-479,0r61,-525v-160,-23,-292,-70,-418,-139r140,-471v147,51,313,114,487,131v95,2,165,-53,133,-145v-28,-81,-105,-108,-186,-158v-236,-142,-430,-278,-434,-635v7,-246,117,-419,276,-526v63,-43,137,-72,223,-88r41,-521r476,0","w":1655},"%":{"d":"1335,246r-594,0r1647,-2450r594,0xm823,-2011v374,-3,552,179,549,549v-1,338,-118,581,-354,688v-81,38,-179,57,-293,57v-378,5,-549,-185,-545,-561v2,-344,130,-578,372,-682v79,-34,170,-51,271,-51xm754,-1065v176,-9,201,-168,204,-360v-1,-143,-36,-230,-163,-234v-167,14,-192,175,-197,361v1,131,32,229,156,233xm3019,-1262v374,-3,551,180,549,549v-2,337,-118,581,-354,689v-82,38,-180,57,-294,57v-377,4,-548,-185,-544,-561v2,-344,130,-579,372,-684v79,-33,170,-50,271,-50xm2949,-315v177,-9,202,-169,205,-361v-1,-144,-36,-229,-164,-233v-166,15,-193,173,-197,360v1,132,33,229,156,234","w":3731},"&":{"d":"807,-1618v-112,-244,-198,-615,-87,-916v116,-304,392,-467,816,-468v163,0,350,24,561,73r-102,488v-134,-29,-269,-50,-398,-53v-178,-2,-264,82,-262,262v12,238,113,424,209,639r361,737v130,-186,227,-388,303,-631r-422,0r37,-483r1335,0r-41,459r-356,12v-118,453,-332,849,-602,1151r356,729r-692,127r-242,-545v-209,76,-554,111,-805,51v-375,-94,-597,-346,-608,-800v1,-251,108,-380,239,-514v116,-113,248,-213,400,-318xm804,-884v-45,259,108,432,382,402v56,-7,122,-11,170,-26r-316,-655v-104,87,-194,149,-236,279","w":3244},"'":{"d":"324,-1577r127,-1298r565,0r-127,1265","w":1171},"(":{"d":"1061,1008v-298,-85,-535,-203,-687,-431v-182,-265,-251,-638,-251,-1097v2,-824,76,-1547,351,-2065v182,-336,460,-521,898,-585r111,463v-230,77,-394,165,-489,377v-219,507,-246,1222,-253,1965v-5,430,125,703,407,845v30,17,61,33,93,48","w":1458},")":{"d":"397,-3170v298,84,536,203,688,430v182,264,250,639,250,1098v-2,824,-76,1546,-351,2064v-182,337,-461,520,-898,586r-111,-463v230,-77,394,-166,489,-378v219,-507,246,-1222,253,-1965v0,-382,-92,-641,-320,-793v-56,-36,-116,-69,-180,-100","w":1458},"*":{"d":"1618,-1888r377,545r-516,237r-275,-577r-430,495r-442,-352r508,-451r-607,-213r242,-471r537,287r57,-647r586,65r-123,652r598,-152r127,512","w":2408},"+":{"d":"1942,-782r-599,0r-57,598r-508,20r58,-618r-566,0r45,-443r570,0r57,-598r508,-24r-57,622r589,0","w":2232},",":{"d":"840,-647v83,173,155,381,164,622v-3,283,-137,419,-286,569v-121,119,-290,246,-431,357r-312,-315v125,-96,223,-172,311,-270v47,-56,75,-96,79,-177v-10,-241,-58,-462,-103,-684","w":1208},"-":{"d":"1352,-852r-1188,0r41,-405r1192,0","w":1561},".":{"d":"270,0r62,-643r626,0r-61,643r-627,0","w":1188},"\/":{"d":"721,0r-610,0r1343,-2875r610,0","w":1880},"0":{"d":"1155,-2040v599,-5,884,289,881,881v-6,608,-228,1013,-706,1151v-209,62,-537,52,-727,-14v-335,-109,-474,-400,-472,-846v3,-549,208,-924,593,-1091v127,-54,270,-81,431,-81xm778,-909v1,242,45,417,279,417v195,-9,268,-152,309,-330v18,-78,27,-174,27,-288v-1,-238,-52,-412,-283,-414v-194,8,-265,146,-306,324v-17,78,-26,175,-26,291","w":2150},"1":{"d":"1049,0r-643,0r151,-1511r-455,0r41,-459r1094,-53","w":1376},"2":{"d":"836,-1532v-206,2,-332,58,-496,119r-152,-459v239,-115,501,-191,807,-196v322,1,546,115,645,338v56,120,62,308,24,446v-82,250,-262,375,-460,539r-340,266r824,0r-46,479r-1519,0r-53,-430r684,-557v92,-76,162,-131,223,-209v36,-50,50,-90,51,-164v-1,-119,-70,-172,-192,-172","w":1839},"3":{"d":"954,-2068v424,4,685,183,693,598v-4,233,-98,363,-211,504v-51,61,-113,127,-187,200v192,87,335,218,399,420v49,177,15,363,-45,517v-147,342,-477,532,-968,534v-271,0,-524,-60,-725,-144r147,-483v187,66,368,124,611,127v191,0,309,-68,311,-254v-10,-195,-166,-250,-351,-287v-84,-15,-187,-23,-309,-24r54,-496r348,8v109,-126,208,-237,263,-396v48,-156,-20,-298,-189,-288v-206,2,-332,58,-496,119r-152,-459v239,-115,501,-191,807,-196","w":1819},"4":{"d":"66,-438r1011,-1532r742,-41r-148,1532r357,0r-46,479r-364,0r-53,680r-619,0r58,-680r-902,0xm586,-479r467,0r82,-889","w":2130},"5":{"d":"651,205v192,0,313,-68,316,-254v-4,-193,-131,-254,-284,-311v-149,-50,-324,-82,-527,-103r151,-1540r1368,0r-45,561r-868,0r-53,492v378,60,695,154,850,422v103,181,94,495,10,699v-141,343,-464,532,-951,534v-270,0,-523,-60,-724,-144r147,-483v187,65,368,124,610,127","w":1802},"6":{"d":"1040,29v-605,-4,-868,-357,-868,-975v-1,-555,91,-1009,300,-1329v200,-307,536,-481,1038,-433v173,16,334,53,468,107r-94,500v-171,-57,-370,-96,-590,-99v-306,4,-375,237,-426,508v333,38,610,111,804,272v133,113,211,267,212,502v-6,430,-187,731,-487,873v-105,49,-224,74,-357,74xm803,-1196v-19,306,-51,704,266,704v168,-11,217,-168,225,-339v-5,-279,-230,-335,-491,-365","w":1970},"7":{"d":"659,684r-593,-90r987,-2036r-893,0r53,-561r1507,0r54,430","w":1757},"8":{"d":"537,-1483v-128,-133,-225,-279,-222,-540v9,-342,204,-538,472,-632v231,-84,596,-62,779,41v232,112,380,370,312,717v-56,240,-180,410,-317,594v117,115,205,204,280,327v97,150,83,408,5,574v-137,287,-438,437,-863,439v-537,-1,-876,-188,-881,-709v-1,-306,133,-458,275,-634v45,-54,99,-113,160,-177xm1237,-1606v60,-131,91,-251,94,-413v-7,-123,-78,-197,-205,-201v-188,-12,-242,188,-167,336v53,107,188,196,278,278xm987,-471v187,5,295,-116,251,-301v-44,-118,-134,-181,-230,-268r-152,-131v-70,144,-134,256,-139,446v6,163,107,248,270,254","w":2011},"9":{"d":"963,-2040v605,4,868,357,868,975v1,555,-91,1009,-301,1329v-199,307,-535,482,-1037,432v-172,-16,-333,-52,-468,-106r94,-500v171,57,371,95,590,98v306,-4,375,-236,426,-507v-412,-51,-754,-144,-928,-417v-116,-180,-107,-503,-31,-727v76,-229,221,-406,430,-503v105,-49,224,-74,357,-74xm1200,-815v20,-306,50,-705,-266,-705v-166,12,-218,168,-225,340v8,274,222,335,491,365","w":1970},":":{"d":"221,-70r62,-643r626,0r-61,643r-627,0xm332,-1257r61,-644r627,0r-62,644r-626,0","w":1188},";":{"d":"332,-1257r61,-644r627,0r-62,644r-626,0xm840,-647v83,173,155,381,164,622v-3,283,-137,419,-286,569v-121,119,-290,246,-431,357r-312,-315v125,-96,223,-172,311,-270v47,-56,75,-96,79,-177v-10,-241,-58,-462,-103,-684","w":1188},"<":{"d":"1855,-561r-61,581r-1581,-790r45,-422r1733,-811r-54,586r-950,426","w":2232},"=":{"d":"2032,-1200r-1770,0r45,-438r1761,0xm1942,-369r-1770,0r45,-438r1765,0","w":2241},">":{"d":"377,-1430r61,-581r1581,786r-41,426r-1736,807r53,-581r950,-426","w":2232},"?":{"d":"512,-881v-67,-179,-122,-379,-131,-606v4,-156,92,-211,237,-242r340,-69v145,-36,280,-56,287,-221v-5,-120,-77,-164,-163,-217v-208,-110,-460,-173,-738,-242r193,-598v430,64,785,170,1051,359v193,142,321,322,329,612v10,566,-477,637,-934,753r41,398xm352,0r62,-643r626,0r-61,643r-627,0","w":2019},"@":{"d":"2441,29v-202,2,-319,-72,-319,-267r-124,100v-114,83,-194,171,-384,171v-168,0,-295,-60,-382,-181v-173,-214,-153,-804,-59,-1103v126,-424,409,-688,936,-695v261,6,523,57,738,115r-131,1393v455,-106,663,-491,671,-1045v-7,-520,-288,-792,-707,-915v-268,-78,-667,-98,-956,-14v-561,165,-906,577,-1046,1168v-102,476,-59,1123,173,1400v119,151,289,239,546,241v211,-6,405,-54,573,-110r127,368v-186,114,-431,197,-725,201v-575,2,-932,-210,-1110,-616v-177,-387,-218,-1088,-91,-1582v150,-584,490,-1014,959,-1283v290,-165,647,-273,1078,-275v555,-2,981,127,1269,378v258,224,403,561,406,1019v-11,636,-278,1058,-673,1319v-201,126,-454,213,-769,213xm2208,-1421v-104,-21,-249,-51,-326,17v-134,114,-156,347,-158,605v-1,185,46,304,222,283v68,-15,117,-43,180,-74","w":4006},"A":{"d":"-70,0r1274,-2875r660,0r655,2875r-729,0r-135,-627r-811,0r-250,627r-664,0xm1032,-1118r520,0r-151,-746v-16,-82,-25,-169,-21,-262v-3,95,-24,166,-53,238","w":2568},"B":{"d":"2290,-946v-9,723,-533,942,-1270,946r-860,0r266,-2875r897,0v310,-1,542,50,703,177v160,121,226,375,178,640v-54,214,-171,363,-299,526v234,100,384,264,385,586xm1585,-2101v1,-188,-95,-273,-287,-271r-233,0r-70,738r430,0v107,-181,160,-336,160,-467xm1589,-885v0,-193,-114,-270,-311,-270r-332,0r-61,651v297,0,619,26,683,-212v14,-48,21,-104,21,-169","w":2449},"C":{"d":"1372,-561v316,-8,530,-103,787,-189r127,545v-340,122,-627,236,-1057,242v-748,-3,-1056,-450,-1057,-1208v2,-797,243,-1373,786,-1623v383,-181,996,-130,1401,-4r-139,1045r-578,0r46,-606v-164,-13,-323,1,-434,61v-306,167,-362,573,-365,1065v0,225,39,394,119,505v78,111,200,167,364,167","w":2441},"D":{"d":"1835,-1688v1,-418,-157,-678,-582,-675r-184,0r-168,1851v171,-5,360,16,497,-25v294,-94,380,-394,420,-754v11,-116,17,-248,17,-397xm1417,-2875v774,-7,1147,377,1139,1151v-1,813,-250,1380,-814,1617v-175,71,-375,107,-599,107r-979,0r266,-2875r987,0","w":2638},"E":{"d":"2007,-532r-53,532r-1790,0r270,-2875r1671,0r-61,512r-950,0r-62,684r807,0r-53,508r-803,0r-61,639r1085,0","w":2146},"F":{"d":"1962,-2875r-53,512r-824,0r-65,761r696,0r-57,512r-692,0r-99,1090r-708,0r270,-2875r1532,0","w":1901},"G":{"d":"2249,-2261v-203,-49,-450,-86,-693,-90v-591,6,-663,509,-671,1118v1,320,84,558,288,665v161,80,390,36,547,-14r33,-458r-405,0r36,-467r1033,0r-111,1290v-350,123,-650,239,-1081,254v-744,-4,-1053,-449,-1053,-1208v2,-796,240,-1373,783,-1623v381,-179,1002,-134,1412,-12","w":2589},"H":{"d":"2388,0r-700,0r106,-1147r-819,0r-111,1147r-700,0r270,-2875r696,0r-106,1192r815,0r115,-1192r700,0","w":2744},"I":{"d":"1798,-2417r-414,25r-180,1925r426,29r-45,438r-1565,0r41,-438r426,-29r181,-1925r-402,-33r41,-450r1536,0","w":1782},"J":{"d":"-250,246v153,44,288,90,471,94v132,-3,155,-105,187,-218v26,-113,41,-240,55,-384r201,-2130r-463,-37r45,-446r1478,0r-45,462r-307,13r-205,2171v-32,371,-123,656,-299,857v-146,165,-351,250,-643,253v-233,-2,-447,-53,-614,-140","w":1536},"K":{"d":"1130,-2875r-106,1224r254,0r618,-1224r762,0r-823,1515r684,1360r-827,0r-488,-1094r-233,0r-107,1094r-704,0r270,-2875r700,0","w":2556},"L":{"d":"922,-532r974,0r-53,532r-1683,0r270,-2875r705,0","w":2003},"M":{"d":"1233,-2875r479,1605v26,88,37,171,33,275v7,-120,37,-207,78,-299r692,-1581r647,0r4,2875r-651,0r43,-1639r10,-126v-20,96,-64,192,-98,278r-590,1393r-483,0r-414,-1385v-25,-92,-49,-201,-53,-311r-25,311r-172,1479r-594,0r418,-2875r676,0","w":3437},"N":{"d":"1008,-2875r794,1482v41,78,75,167,86,271r2,-152r11,-164r127,-1437r602,0r-267,2875r-569,0r-807,-1507v-40,-75,-68,-161,-78,-262v4,87,-5,191,-12,274r-123,1495r-610,0r270,-2875r574,0","w":2720},"O":{"d":"2597,-2272v111,361,77,962,-19,1313v-111,423,-331,731,-688,891v-286,140,-786,145,-1102,44v-447,-144,-618,-540,-616,-1139v2,-791,230,-1380,760,-1639v282,-148,778,-158,1102,-54v289,93,473,287,563,584xm1790,-774v161,-261,197,-804,136,-1209v-48,-231,-176,-358,-451,-356v-375,9,-493,273,-555,617v-40,289,-79,813,66,1021v73,109,189,160,370,160v219,-1,347,-90,434,-233","w":2769},"P":{"d":"1585,-1991v1,-243,-94,-384,-340,-381r-172,0r-86,971v134,6,279,32,373,-32v159,-96,224,-301,225,-558xm1458,-2875v543,-4,803,258,799,798v-6,493,-205,818,-516,1011v-195,123,-487,182,-807,148r-90,918r-684,0r266,-2875r1032,0","w":2269},"Q":{"d":"2863,627v-202,112,-439,184,-717,188v-273,3,-396,-119,-516,-283v-102,-142,-187,-303,-278,-487v-612,13,-988,-187,-1116,-661v-100,-357,-75,-924,20,-1277v107,-422,326,-739,676,-909v282,-148,778,-158,1102,-54v445,143,634,529,632,1127v2,763,-205,1328,-663,1602v65,111,113,195,189,267v48,43,93,60,175,61v138,-4,241,-35,369,-86xm1790,-774v161,-261,197,-804,136,-1209v-48,-231,-176,-358,-451,-356v-375,9,-493,273,-555,617v-40,289,-79,813,66,1021v73,109,189,160,370,160v219,-1,347,-90,434,-233","w":2769},"R":{"d":"1479,-1479v88,-154,149,-301,155,-503v0,-255,-118,-391,-377,-390r-180,0r-82,893r484,0xm1622,29r-434,-1016r-242,0r-98,987r-684,0r266,-2875r995,0v568,-4,903,206,893,774v-4,315,-113,519,-257,714v-61,81,-135,165,-222,252r520,1102","w":2425},"S":{"d":"1249,-2355v-153,1,-248,57,-250,205v-1,126,51,174,121,248v104,102,309,249,410,346v160,147,294,279,376,478v70,182,52,437,-20,610v-134,318,-433,502,-882,505v-366,2,-659,-59,-906,-184r164,-541v242,85,468,153,737,160v173,2,281,-87,253,-262v-27,-88,-86,-134,-152,-198v-85,-76,-206,-166,-301,-241v-255,-209,-491,-399,-488,-856v8,-468,257,-712,649,-802v367,-73,784,3,1068,106r-132,536v-201,-53,-412,-109,-647,-110","w":2114},"T":{"d":"2224,-2339r-688,0r-225,2339r-705,0r221,-2339r-704,0r57,-536r2101,0","w":2146},"U":{"d":"1282,29v-690,5,-1103,-285,-1058,-1003r186,-1901r700,0r-182,1895v-24,291,125,439,399,439v366,6,469,-230,500,-565r172,-1769r663,0r-163,1749v-69,718,-433,1152,-1217,1155","w":2744},"V":{"d":"1278,-1012v14,82,26,170,20,262v6,-93,24,-165,54,-237r708,-1888r676,0r-1257,2875r-668,0r-635,-2875r733,0","w":2535},"W":{"d":"2404,-1241v16,83,33,186,29,287v9,-106,39,-211,61,-308r410,-1613r586,0r-811,2875r-639,0r-299,-1577r-549,1577r-635,0r-270,-2875r659,0r98,1671r2,172v0,28,-1,51,-2,69v9,-99,41,-183,74,-278r488,-1380r499,0","w":3330},"X":{"d":"1217,-983r-521,983r-716,0r917,-1487r-623,-1388r779,0r397,979r500,-979r671,0r-806,1433r622,1442r-807,0","w":2601},"Y":{"d":"1409,0r-704,0r110,-1225r-700,-1650r757,0r422,1089r623,-1089r647,0r-1036,1630","w":2347},"Z":{"d":"2060,0r-1990,0r-29,-487r1343,-1852r-1056,0r45,-536r1859,0r29,487r-1376,1851r1229,0","w":2302},"[":{"d":"1511,-2630r-585,0r-267,3093r578,0r-41,467r-1204,0r352,-4022r1204,0","w":1483},"\\":{"d":"1016,0r-1032,-2875r622,0r1032,2875r-622,0","w":1700},"]":{"d":"-74,463r586,0r262,-3093r-573,0r37,-462r1204,0r-352,4022r-1205,0","w":1434},"^":{"d":"1298,-1585r-143,-627v-5,-23,-9,-49,-14,-78v-11,-70,-21,-153,-15,-229r-376,934r-603,0r803,-1680r631,-28r426,1708r-709,0","w":2183},"_":{"d":"1602,0r-1516,0r29,-377r1519,0","w":1720},"`":{"d":"795,-2253r-484,-782r500,-111r426,819","w":1503},"a":{"d":"734,-1938v350,-146,856,-52,1195,42r-114,1273r12,607r-594,20r-16,-250r-148,107v-129,83,-217,171,-418,172v-172,0,-303,-62,-393,-187v-180,-221,-158,-833,-62,-1142v92,-310,264,-532,538,-642xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628"},"b":{"d":"1355,-40v-353,147,-865,50,-1208,-42r287,-2904r631,-29r-115,1229v136,-95,219,-176,382,-217v221,-31,394,30,499,179v180,221,158,832,61,1142v-91,310,-263,530,-537,642xm1323,-1151v1,-188,-50,-313,-231,-291v-70,15,-123,43,-187,74r-86,864v109,21,259,51,339,-19v139,-118,163,-360,165,-628","w":2089},"c":{"d":"1012,-524v175,-7,322,-61,458,-115r99,492v-224,104,-424,181,-738,180v-486,-13,-702,-309,-708,-807v1,-590,186,-1002,587,-1180v254,-115,640,-94,887,8r-106,496v-123,-29,-265,-55,-414,-57v-197,11,-247,175,-280,366v-15,183,-75,545,99,601v30,11,69,16,116,16","w":1679},"d":{"d":"123,-713v-2,-849,358,-1362,1196,-1294r94,-979r623,-29r-221,2397r12,602r-594,20r-16,-250r-148,107v-129,83,-217,171,-418,172v-172,0,-303,-62,-393,-187v-90,-125,-135,-311,-135,-559xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628"},"e":{"d":"1188,-1421v2,-90,-54,-152,-139,-152v-205,7,-230,193,-254,389r376,-16v11,-71,16,-155,17,-221xm1094,-2032v409,0,637,177,639,578v-4,209,-40,414,-74,598r-889,49v-7,213,54,346,242,348v245,-8,418,-82,610,-159r127,434v-253,128,-511,219,-889,217v-503,-6,-731,-303,-737,-807v2,-578,184,-991,571,-1176v119,-55,253,-82,400,-82","w":1860},"f":{"d":"1610,-2507v-119,-23,-254,-39,-389,-41v-144,4,-152,136,-168,275r-25,303r381,0r-45,463r-377,0r-225,2289r-635,33r229,-2326r-209,-21r41,-426r209,-12v46,-574,126,-1111,733,-1114v223,0,397,42,570,98","w":1331},"g":{"d":"360,-610v-99,-150,-168,-314,-172,-533v6,-422,205,-690,517,-814v213,-92,553,-79,770,-5r557,-152r82,492r-279,37v64,150,95,386,45,574v-124,413,-574,505,-1118,511v-18,25,-39,68,-23,99v4,3,10,6,19,8r774,102v242,33,379,140,385,389v-9,278,-164,441,-335,568v-191,134,-438,227,-751,231v-275,1,-490,-44,-645,-141v-129,-81,-213,-227,-176,-420v25,-74,71,-125,130,-188v38,-40,88,-88,151,-144v-110,-52,-192,-176,-147,-336v34,-119,127,-184,216,-278xm840,-905v244,-10,443,-38,450,-271v-3,-210,-53,-369,-246,-380v-298,-1,-280,419,-204,651xm692,115v-34,71,-69,126,-69,221v0,116,142,118,278,123v151,-2,289,-47,367,-123v40,-35,46,-96,16,-134v-14,-13,-39,-22,-76,-26","w":2138},"h":{"d":"1324,-1124v-1,-109,54,-271,-67,-273v-128,10,-242,59,-352,94r-127,1303r-631,0r295,-2986r627,-29r-123,1299r160,-109v148,-89,254,-188,475,-194v340,-14,445,246,401,594r-135,1425r-630,0","w":2142},"i":{"d":"782,0r-635,0r197,-1970r627,0xm377,-2290r53,-581r623,0r-54,581r-622,0","w":1081},"j":{"d":"-184,311v37,4,70,7,100,9v91,10,163,5,191,-60v27,-56,35,-127,45,-211r204,-2019r627,0r-188,1945v-41,392,-172,691,-465,821v-163,76,-418,65,-604,23xm393,-2290r53,-581r623,0r-53,581r-623,0","w":1098},"k":{"d":"1073,-3015r-184,1885r4,0r573,-840r635,0r-676,966r639,1004r-716,0r-488,-799r-4,0r-78,799r-631,0r295,-2986","w":2089},"l":{"d":"795,0r-648,0r295,-2986r648,-29","w":1102},"m":{"d":"1324,-1124v-1,-109,54,-271,-67,-273v-128,10,-242,59,-352,94r-127,1303r-631,0r197,-1970r623,0r-25,258r161,-110v149,-92,256,-190,478,-197v241,0,371,109,401,323r168,-114v49,-33,94,-61,134,-84v113,-63,204,-122,366,-125v341,-13,444,244,402,594r-136,1425r-630,0r118,-1303v0,-57,-19,-95,-77,-94v-130,10,-246,59,-357,94r-123,1303r-630,0","w":3211},"n":{"d":"1324,-1124v-1,-109,54,-271,-67,-273v-128,10,-242,59,-352,94r-127,1303r-631,0r197,-1970r623,0r-25,258r161,-110v149,-92,256,-190,478,-197v340,-14,445,246,401,594r-135,1425r-630,0","w":2142},"o":{"d":"1094,-2019v558,-4,831,266,827,823v-1,562,-174,969,-553,1147v-205,102,-550,104,-779,33v-324,-102,-467,-377,-466,-807v6,-598,212,-1011,673,-1156v90,-27,189,-40,298,-40xm758,-864v2,216,30,378,237,377v186,-13,237,-171,273,-351v15,-82,22,-181,22,-297v-1,-208,-41,-358,-237,-360v-181,13,-236,161,-272,335v-15,81,-23,179,-23,296","w":2044},"p":{"d":"1677,-301v-189,237,-501,347,-923,317r-70,766r-635,33r279,-2785r626,0r-20,209r166,-113v110,-68,192,-131,350,-137v398,6,506,301,508,713v2,432,-94,767,-281,997xm1315,-1147v1,-188,-50,-313,-231,-291v-70,15,-123,43,-187,74r-86,864v109,21,259,51,339,-19v139,-118,163,-360,165,-628","w":2081},"q":{"d":"734,-1938v353,-147,865,-51,1208,42r-263,2678r-635,33r103,-1012r-123,87v-111,73,-193,146,-373,143v-172,0,-303,-62,-393,-187v-180,-221,-158,-833,-62,-1142v92,-310,264,-532,538,-642xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628"},"r":{"d":"1491,-1401v-95,-10,-222,-37,-296,12v-133,99,-221,274,-323,414r-94,975r-631,0r197,-1970r533,0r-41,442v81,-123,172,-284,262,-385v69,-83,156,-118,300,-103v72,5,128,20,183,42","w":1503},"s":{"d":"692,-467v95,3,165,-53,133,-145v-28,-81,-105,-108,-186,-158v-236,-142,-430,-278,-434,-635v7,-252,118,-420,277,-527v94,-60,214,-101,366,-100v251,-1,453,36,631,107r-111,459v-139,-39,-273,-73,-434,-74v-117,-12,-146,133,-75,200v37,39,83,68,136,103v151,98,267,186,357,311v121,152,103,463,4,624v-117,205,-323,333,-643,335v-265,-2,-459,-60,-647,-160r139,-471v147,51,313,114,487,131","w":1573},"t":{"d":"1450,-131v-230,102,-464,172,-786,172v-306,6,-457,-128,-451,-438v0,-57,4,-123,12,-197r90,-917r-200,-21r41,-426r217,-12r143,-680r520,-16r-53,696r471,0r-45,463r-467,0r-70,891v-7,82,24,121,103,116v131,-7,265,-37,373,-73","w":1516},"u":{"d":"578,49v-340,13,-444,-245,-402,-594r135,-1425r635,0r-119,1245v-2,98,16,161,115,156v110,-7,197,-38,311,-82r123,-1319r635,0r-135,1347r12,607r-594,20r-16,-311r-241,168v-148,92,-251,180,-459,188","w":2142},"v":{"d":"745,-1966r156,1135v8,53,8,105,4,159v5,-56,19,-112,37,-159r471,-1139r569,0r-876,1970r-676,0r-311,-1966r626,0","w":1847},"w":{"d":"770,-1966r107,1155v4,44,8,112,4,160v4,-55,22,-112,37,-160r348,-1065r483,0r197,1069v7,42,16,111,16,160v0,-56,9,-118,25,-164r327,-1159r570,0r-709,1970r-590,0r-176,-967v-8,-42,-12,-109,-8,-159v-5,56,-19,112,-37,159r-324,967r-594,0r-274,-1966r598,0","w":2847},"x":{"d":"860,-614r-266,614r-614,0r614,-1069r-414,-897r729,0r230,573r250,-573r606,0r-598,1040r438,926r-725,0","w":1966},"y":{"d":"778,-1970r197,1089v8,54,4,104,4,160v0,-58,19,-113,37,-160r434,-1089r569,0r-1175,2781r-656,0r381,-819r-430,-1962r639,0","w":1962},"z":{"d":"1012,-1487r-705,0r33,-483r1487,0r16,434r-954,1053r835,0r-32,483r-1569,0r-17,-434","w":1921},"{":{"d":"553,-1589v-9,-301,-79,-644,-9,-927v95,-467,484,-629,1029,-646r110,467v-252,48,-495,85,-545,333v-46,235,23,495,21,744v-6,311,-174,472,-442,528v207,67,345,217,348,472v-9,315,-148,519,-152,839v-5,268,187,305,418,352r-164,447v-526,-35,-884,-176,-876,-729v4,-304,128,-515,143,-807v-6,-217,-188,-248,-405,-266r49,-480v271,-7,479,-51,475,-327","w":1683},"|":{"d":"377,856r385,-4231r520,0r-389,4231r-516,0","w":1675},"}":{"d":"1245,-1618v8,216,193,246,410,266r-49,475v-270,11,-481,52,-476,332v10,300,79,641,10,923v-96,468,-487,629,-1034,646r-110,-463v252,-50,496,-85,544,-335v47,-234,-22,-495,-20,-742v6,-315,176,-477,447,-533v-209,-65,-346,-216,-349,-471v6,-308,146,-525,148,-839v4,-264,-185,-307,-414,-353r164,-446v439,31,781,132,854,520v13,64,19,135,19,213v-2,295,-131,525,-144,807","w":1683},"~":{"d":"467,-2745v156,-187,551,-105,840,-102v78,-5,104,-58,135,-119v14,-30,28,-68,41,-114r422,102v-44,225,-91,396,-206,520v-94,96,-218,125,-405,127v-146,-2,-294,-24,-438,-28v-80,2,-102,53,-127,117v-11,29,-22,67,-33,112r-409,-78v30,-221,69,-411,180,-537","w":1909},"\u00a0":{"w":803},"\u00c0":{"d":"-70,0r1274,-2875r660,0r655,2875r-729,0r-135,-627r-811,0r-250,627r-664,0xm1032,-1118r520,0r-151,-746v-16,-82,-25,-169,-21,-262v-3,95,-24,166,-53,238xm1323,-3158r-483,-782r499,-111r426,819","w":2568},"\u00c1":{"d":"-70,0r1274,-2875r660,0r655,2875r-729,0r-135,-627r-811,0r-250,627r-664,0xm1032,-1118r520,0r-151,-746v-16,-82,-25,-169,-21,-262v-3,95,-24,166,-53,238xm1769,-3158r-442,-74r520,-819r508,111","w":2568},"\u00c2":{"d":"-70,0r1274,-2875r660,0r655,2875r-729,0r-135,-627r-811,0r-250,627r-664,0xm1032,-1118r520,0r-151,-746v-16,-82,-25,-169,-21,-262v-3,95,-24,166,-53,238xm1823,-4014r385,795r-496,45r-164,-353r-233,357r-418,-58r545,-786r381,0","w":2568},"\u00c3":{"d":"-70,0r1274,-2875r660,0r655,2875r-729,0r-135,-627r-811,0r-250,627r-664,0xm1032,-1118r520,0r-151,-746v-16,-82,-25,-169,-21,-262v-3,95,-24,166,-53,238xm1108,-3794v182,-62,423,-1,621,5v78,-2,99,-52,129,-111v13,-29,28,-67,43,-114r413,98v-66,346,-158,614,-557,611v-140,-3,-273,-35,-409,-41v-79,-1,-95,43,-120,104v-10,28,-22,66,-36,113r-401,-74v35,-212,78,-373,175,-494v40,-47,87,-79,142,-97","w":2568},"\u00c4":{"d":"-70,0r1274,-2875r660,0r655,2875r-729,0r-135,-627r-811,0r-250,627r-664,0xm1032,-1118r520,0r-151,-746v-16,-82,-25,-169,-21,-262v-3,95,-24,166,-53,238xm848,-3211r53,-566r561,0r-49,566r-565,0xm1679,-3211r54,-566r561,0r-49,566r-566,0","w":2568},"\u00c5":{"d":"-70,0r1274,-2875r660,0r655,2875r-729,0r-135,-627r-811,0r-250,627r-664,0xm1032,-1118r520,0r-151,-746v-16,-82,-25,-169,-21,-262v-3,95,-24,166,-53,238xm1552,-3146v-257,-5,-416,-129,-422,-385v4,-232,113,-383,286,-453v107,-45,276,-53,391,-10v148,55,246,173,249,369v-3,233,-116,377,-290,443v-63,24,-134,36,-214,36xm1606,-3748v-113,3,-147,89,-148,205v1,89,37,146,127,147v110,-2,142,-89,144,-200v-1,-91,-33,-152,-123,-152","w":2568},"\u00c6":{"d":"3391,-532r-53,532r-1782,0r58,-627r-729,0r-348,627r-742,0r1659,-2875r2036,0r-62,512r-950,0r-61,684r807,0r-54,508r-803,0r-61,639r1085,0xm1151,-1118r512,0r123,-1311v-18,93,-48,163,-86,238","w":3572},"\u00c7":{"d":"1372,-561v316,-8,530,-103,787,-189r127,545r-199,73r-175,58v-100,30,-195,56,-298,74v51,195,100,438,14,620v-79,157,-239,241,-450,289v-122,28,-271,44,-449,49r-70,-409v149,-12,262,-28,356,-69v122,-41,69,-215,58,-346v-5,-34,-10,-69,-16,-105v-624,-68,-885,-502,-885,-1200v2,-797,243,-1373,786,-1623v383,-181,996,-130,1401,-4r-139,1045r-578,0r46,-606v-164,-13,-323,1,-434,61v-306,167,-362,573,-365,1065v0,225,39,394,119,505v78,111,200,167,364,167","w":2441},"\u00d0":{"d":"1532,-2875v774,-7,1147,377,1139,1151v-1,813,-251,1379,-815,1617v-175,71,-375,107,-599,107r-978,0r114,-1241r-393,0r20,-414r410,0r115,-1220r987,0xm1950,-1688v1,-418,-157,-678,-582,-675r-184,0r-66,708r471,0r-24,410r-484,4r-65,729v172,-5,359,16,497,-25v294,-94,380,-393,419,-754v12,-116,18,-248,18,-397","w":2753},"\u00c8":{"d":"2007,-532r-53,532r-1790,0r270,-2875r1671,0r-61,512r-950,0r-62,684r807,0r-53,508r-803,0r-61,639r1085,0xm1159,-3158r-483,-782r500,-111r426,819","w":2146},"\u00c9":{"d":"2007,-532r-53,532r-1790,0r270,-2875r1671,0r-61,512r-950,0r-62,684r807,0r-53,508r-803,0r-61,639r1085,0xm1516,-3158r-443,-74r520,-819r508,111","w":2146},"\u00ca":{"d":"2007,-532r-53,532r-1790,0r270,-2875r1671,0r-61,512r-950,0r-62,684r807,0r-53,508r-803,0r-61,639r1085,0xm1642,-4014r386,795r-496,45r-164,-353r-233,357r-418,-58r545,-786r380,0","w":2146},"\u00cb":{"d":"2007,-532r-53,532r-1790,0r270,-2875r1671,0r-61,512r-950,0r-62,684r807,0r-53,508r-803,0r-61,639r1085,0xm635,-3211r53,-566r561,0r-49,566r-565,0xm1466,-3211r54,-566r561,0r-49,566r-566,0","w":2146},"\u00cc":{"d":"1798,-2417r-414,25r-180,1925r426,29r-45,438r-1565,0r41,-438r426,-29r181,-1925r-402,-33r41,-450r1536,0xm885,-3158r-484,-782r500,-111r426,819","w":1782},"\u00cd":{"d":"1798,-2417r-414,25r-180,1925r426,29r-45,438r-1565,0r41,-438r426,-29r181,-1925r-402,-33r41,-450r1536,0xm1311,-3158r-443,-74r521,-819r507,111","w":1782},"\u00ce":{"d":"1798,-2417r-414,25r-180,1925r426,29r-45,438r-1565,0r41,-438r426,-29r181,-1925r-402,-33r41,-450r1536,0xm1372,-4014r385,795r-495,45r-164,-353r-234,357r-418,-58r545,-786r381,0","w":1782},"\u00cf":{"d":"1798,-2417r-414,25r-180,1925r426,29r-45,438r-1565,0r41,-438r426,-29r181,-1925r-402,-33r41,-450r1536,0xm389,-3211r53,-566r562,0r-50,566r-565,0xm1221,-3211r53,-566r561,0r-49,566r-565,0","w":1782},"\u00d1":{"d":"1008,-2875r794,1482v41,78,75,167,86,271r2,-152r11,-164r127,-1437r602,0r-267,2875r-569,0r-807,-1507v-40,-75,-68,-161,-78,-262v4,87,-5,191,-12,274r-123,1495r-610,0r270,-2875r574,0xm1339,-3822v151,-1,286,30,430,33v78,-2,100,-52,130,-111v13,-29,28,-67,43,-114r413,98v-66,346,-158,614,-557,611v-140,-3,-273,-35,-409,-41v-79,-1,-95,43,-119,104v-11,28,-23,66,-37,113r-402,-74v61,-327,122,-626,508,-619","w":2720},"\u00d2":{"d":"2597,-2272v111,361,77,962,-19,1313v-111,423,-331,731,-688,891v-286,140,-786,145,-1102,44v-447,-144,-618,-540,-616,-1139v2,-791,230,-1380,760,-1639v282,-148,778,-158,1102,-54v289,93,473,287,563,584xm1790,-774v161,-261,197,-804,136,-1209v-48,-231,-176,-358,-451,-356v-375,9,-493,273,-555,617v-40,289,-79,813,66,1021v73,109,189,160,370,160v219,-1,347,-90,434,-233xm1364,-3158r-483,-782r499,-111r426,819","w":2769},"\u00d3":{"d":"2597,-2272v111,361,77,962,-19,1313v-111,423,-331,731,-688,891v-286,140,-786,145,-1102,44v-447,-144,-618,-540,-616,-1139v2,-791,230,-1380,760,-1639v282,-148,778,-158,1102,-54v289,93,473,287,563,584xm1790,-774v161,-261,197,-804,136,-1209v-48,-231,-176,-358,-451,-356v-375,9,-493,273,-555,617v-40,289,-79,813,66,1021v73,109,189,160,370,160v219,-1,347,-90,434,-233xm1815,-3158r-443,-74r520,-819r508,111","w":2769},"\u00d4":{"d":"2597,-2272v111,361,77,962,-19,1313v-111,423,-331,731,-688,891v-286,140,-786,145,-1102,44v-447,-144,-618,-540,-616,-1139v2,-791,230,-1380,760,-1639v282,-148,778,-158,1102,-54v289,93,473,287,563,584xm1790,-774v161,-261,197,-804,136,-1209v-48,-231,-176,-358,-451,-356v-375,9,-493,273,-555,617v-40,289,-79,813,66,1021v73,109,189,160,370,160v219,-1,347,-90,434,-233xm1892,-4014r385,795r-495,45r-164,-353r-234,357r-417,-58r544,-786r381,0","w":2769},"\u00d5":{"d":"2597,-2272v111,361,77,962,-19,1313v-111,423,-331,731,-688,891v-286,140,-786,145,-1102,44v-447,-144,-618,-540,-616,-1139v2,-791,230,-1380,760,-1639v282,-148,778,-158,1102,-54v289,93,473,287,563,584xm1790,-774v161,-261,197,-804,136,-1209v-48,-231,-176,-358,-451,-356v-375,9,-493,273,-555,617v-40,289,-79,813,66,1021v73,109,189,160,370,160v219,-1,347,-90,434,-233xm1202,-3794v182,-62,423,-1,621,5v78,-2,99,-52,129,-111v13,-29,28,-67,43,-114r413,98v-66,346,-158,614,-557,611v-140,-3,-272,-35,-409,-41v-79,-1,-95,43,-120,104v-10,28,-22,66,-36,113r-401,-74v37,-212,77,-373,175,-494v41,-47,88,-79,142,-97","w":2769},"\u00d6":{"d":"2597,-2272v111,361,77,962,-19,1313v-111,423,-331,731,-688,891v-286,140,-786,145,-1102,44v-447,-144,-618,-540,-616,-1139v2,-791,230,-1380,760,-1639v282,-148,778,-158,1102,-54v289,93,473,287,563,584xm1790,-774v161,-261,197,-804,136,-1209v-48,-231,-176,-358,-451,-356v-375,9,-493,273,-555,617v-40,289,-79,813,66,1021v73,109,189,160,370,160v219,-1,347,-90,434,-233xm909,-3211r54,-566r561,0r-49,566r-566,0xm1741,-3211r53,-566r561,0r-49,566r-565,0","w":2769},"\u00d8":{"d":"2331,-2691v230,202,332,519,331,962v-1,816,-224,1409,-776,1661v-291,140,-780,145,-1104,43r-303,517r-459,-82r386,-680v-171,-208,-238,-503,-238,-893v2,-791,230,-1380,760,-1639v258,-135,674,-152,1001,-82r299,-520r463,99xm1090,-586v102,60,296,70,432,31v283,-92,373,-376,416,-722v22,-208,36,-529,-9,-730xm1626,-2331v-143,-32,-312,-17,-418,49v-171,105,-255,304,-299,559v-31,178,-46,448,-32,679","w":2769},"\u00de":{"d":"1552,-1663v2,-244,-93,-384,-340,-381r-172,0r-86,971v134,6,279,32,374,-32v158,-95,223,-302,224,-558xm1425,-2548v543,-4,803,259,799,799v-6,492,-204,817,-516,1010v-196,124,-484,180,-807,149r-57,590r-684,0r270,-2945r696,-37r-36,434r335,0","w":2236},"\u00d9":{"d":"1364,-3158r-483,-782r499,-111r426,819xm1282,29v-690,5,-1103,-285,-1058,-1003r186,-1901r700,0r-182,1895v-24,291,125,439,399,439v366,6,469,-230,500,-565r172,-1769r663,0r-163,1749v-69,718,-433,1152,-1217,1155","w":2744},"\u00da":{"d":"1794,-3158r-442,-74r520,-819r508,111xm1282,29v-690,5,-1103,-285,-1058,-1003r186,-1901r700,0r-182,1895v-24,291,125,439,399,439v366,6,469,-230,500,-565r172,-1769r663,0r-163,1749v-69,718,-433,1152,-1217,1155","w":2744},"\u00db":{"d":"1864,-4014r385,795r-496,45r-164,-353r-233,357r-418,-58r545,-786r381,0xm1282,29v-690,5,-1103,-285,-1058,-1003r186,-1901r700,0r-182,1895v-24,291,125,439,399,439v366,6,469,-230,500,-565r172,-1769r663,0r-163,1749v-69,718,-433,1152,-1217,1155","w":2744},"\u00dc":{"d":"868,-3211r54,-566r561,0r-49,566r-566,0xm1700,-3211r53,-566r561,0r-49,566r-565,0xm1282,29v-690,5,-1103,-285,-1058,-1003r186,-1901r700,0r-182,1895v-24,291,125,439,399,439v366,6,469,-230,500,-565r172,-1769r663,0r-163,1749v-69,718,-433,1152,-1217,1155","w":2744},"\u00dd":{"d":"1409,0r-704,0r110,-1225r-700,-1650r757,0r422,1089r623,-1089r647,0r-1036,1630xm1651,-3158r-443,-74r521,-819r507,111","w":2347},"\u00e0":{"d":"734,-1938v350,-146,856,-52,1195,42r-114,1273r12,607r-594,20r-16,-250r-148,107v-129,83,-217,171,-418,172v-172,0,-303,-62,-393,-187v-180,-221,-158,-833,-62,-1142v92,-310,264,-532,538,-642xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628xm1024,-2253r-483,-782r499,-111r426,819"},"\u00e1":{"d":"734,-1938v350,-146,856,-52,1195,42r-114,1273r12,607r-594,20r-16,-250r-148,107v-129,83,-217,171,-418,172v-172,0,-303,-62,-393,-187v-180,-221,-158,-833,-62,-1142v92,-310,264,-532,538,-642xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628xm1389,-2253r-443,-74r520,-819r508,111"},"\u00e2":{"d":"734,-1938v350,-146,856,-52,1195,42r-114,1273r12,607r-594,20r-16,-250r-148,107v-129,83,-217,171,-418,172v-172,0,-303,-62,-393,-187v-180,-221,-158,-833,-62,-1142v92,-310,264,-532,538,-642xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628xm1503,-3109r385,795r-495,45r-164,-352r-234,356r-417,-57r544,-787r381,0"},"\u00e3":{"d":"734,-1938v350,-146,856,-52,1195,42r-114,1273r12,607r-594,20r-16,-250r-148,107v-129,83,-217,171,-418,172v-172,0,-303,-62,-393,-187v-180,-221,-158,-833,-62,-1142v92,-310,264,-532,538,-642xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628xm1450,-2400v-141,-3,-273,-35,-410,-41v-79,-1,-94,43,-118,103v-11,29,-23,67,-37,114r-402,-74v37,-211,78,-372,175,-493v117,-166,433,-126,674,-98v77,7,144,14,178,-37v36,-48,58,-107,83,-183r414,98v-67,345,-159,613,-557,611"},"\u00e4":{"d":"734,-1938v350,-146,856,-52,1195,42r-114,1273r12,607r-594,20r-16,-250r-148,107v-129,83,-217,171,-418,172v-172,0,-303,-62,-393,-187v-180,-221,-158,-833,-62,-1142v92,-310,264,-532,538,-642xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628xm504,-2306r53,-565r561,0r-49,565r-565,0xm1335,-2306r54,-565r561,0r-49,565r-566,0"},"\u00e5":{"d":"734,-1938v350,-146,856,-52,1195,42r-114,1273r12,607r-594,20r-16,-250r-148,107v-129,83,-217,171,-418,172v-172,0,-303,-62,-393,-187v-180,-221,-158,-833,-62,-1142v92,-310,264,-532,538,-642xm766,-827v-1,188,49,313,231,291v70,-15,123,-43,187,-74r86,-865v-110,-20,-259,-50,-340,20v-138,118,-162,360,-164,628xm1217,-2241v-257,-5,-416,-129,-422,-385v4,-232,113,-382,285,-452v107,-46,276,-54,391,-10v147,55,246,172,249,368v-3,233,-116,377,-290,444v-62,23,-133,35,-213,35xm1270,-2843v-113,3,-147,89,-148,205v0,90,37,147,127,148v110,-3,143,-89,144,-201v-1,-91,-33,-152,-123,-152"},"\u00e6":{"d":"2089,-2032v410,-1,637,177,639,578v-4,209,-40,414,-74,598r-889,49v-7,213,54,346,242,348v244,-8,419,-82,610,-159r127,434v-252,128,-511,219,-889,217v-252,0,-432,-76,-552,-213v-197,122,-369,218,-685,213v-356,-3,-510,-217,-512,-578v6,-401,310,-494,662,-562v108,-19,234,-32,379,-40v16,-94,41,-174,70,-254v-30,-79,-90,-128,-201,-127v-256,9,-411,116,-578,230r-229,-402v265,-189,533,-342,971,-344v188,-1,336,51,438,131v128,-74,277,-118,471,-119xm713,-565v-1,104,59,159,159,159v120,0,200,-40,275,-90v-22,-82,-29,-175,-29,-278v-141,11,-247,23,-332,68v-52,29,-71,69,-73,141xm2180,-1330v18,-141,-15,-239,-136,-243v-205,7,-230,193,-254,389r377,-16v6,-47,10,-91,13,-130","w":2855},"\u00e7":{"d":"1012,-524v175,-7,322,-61,458,-115r99,492v-134,61,-242,107,-381,143v56,192,104,440,18,624v-79,157,-239,241,-450,289v-122,28,-271,44,-449,49r-69,-409v149,-12,261,-28,355,-69v126,-43,67,-226,57,-361v-6,-36,-12,-73,-19,-111v-338,-84,-507,-353,-508,-782v1,-590,186,-1002,587,-1180v254,-115,640,-94,887,8r-106,496v-123,-29,-265,-55,-414,-57v-197,11,-247,175,-280,366v-15,183,-75,545,99,601v30,11,69,16,116,16","w":1679},"\u00f0":{"d":"1090,-2646v-59,-129,-128,-247,-201,-356r553,-213v98,121,176,232,246,372r372,-123r115,402r-328,106v75,265,131,542,135,861v1,498,-97,914,-291,1203v-168,250,-416,422,-798,427v-509,-1,-770,-238,-770,-746v2,-497,151,-879,467,-1059v100,-55,213,-83,340,-83v164,2,278,41,409,98v-15,-180,-48,-368,-98,-512r-471,155r-115,-385xm750,-786v1,180,38,306,208,307v115,-9,168,-93,217,-195v72,-161,114,-369,140,-604v-92,-46,-192,-90,-307,-94v-173,13,-214,173,-242,342v-11,73,-16,154,-16,244","w":2077},"\u00e8":{"d":"1188,-1421v2,-90,-54,-152,-139,-152v-205,7,-230,193,-254,389r376,-16v11,-71,16,-155,17,-221xm1094,-2032v409,0,637,177,639,578v-4,209,-40,414,-74,598r-889,49v-7,213,54,346,242,348v245,-8,418,-82,610,-159r127,434v-253,128,-511,219,-889,217v-503,-6,-731,-303,-737,-807v2,-578,184,-991,571,-1176v119,-55,253,-82,400,-82xm942,-2253r-483,-782r499,-111r426,819","w":1860},"\u00e9":{"d":"1188,-1421v2,-90,-54,-152,-139,-152v-205,7,-230,193,-254,389r376,-16v11,-71,16,-155,17,-221xm1094,-2032v409,0,637,177,639,578v-4,209,-40,414,-74,598r-889,49v-7,213,54,346,242,348v245,-8,418,-82,610,-159r127,434v-253,128,-511,219,-889,217v-503,-6,-731,-303,-737,-807v2,-578,184,-991,571,-1176v119,-55,253,-82,400,-82xm1274,-2253r-443,-74r521,-819r508,111","w":1860},"\u00ea":{"d":"1188,-1421v2,-90,-54,-152,-139,-152v-205,7,-230,193,-254,389r376,-16v11,-71,16,-155,17,-221xm1094,-2032v409,0,637,177,639,578v-4,209,-40,414,-74,598r-889,49v-7,213,54,346,242,348v245,-8,418,-82,610,-159r127,434v-253,128,-511,219,-889,217v-503,-6,-731,-303,-737,-807v2,-578,184,-991,571,-1176v119,-55,253,-82,400,-82xm1397,-3109r385,795r-496,45r-164,-352r-233,356r-418,-57r545,-787r381,0","w":1860},"\u00eb":{"d":"1188,-1421v2,-90,-54,-152,-139,-152v-205,7,-230,193,-254,389r376,-16v11,-71,16,-155,17,-221xm1094,-2032v409,0,637,177,639,578v-4,209,-40,414,-74,598r-889,49v-7,213,54,346,242,348v245,-8,418,-82,610,-159r127,434v-253,128,-511,219,-889,217v-503,-6,-731,-303,-737,-807v2,-578,184,-991,571,-1176v119,-55,253,-82,400,-82xm422,-2306r53,-565r561,0r-49,565r-565,0xm1253,-2306r54,-565r561,0r-49,565r-566,0","w":1860},"\u00ec":{"d":"782,0r-635,0r197,-1970r627,0xm467,-2253r-483,-782r499,-111r426,819","w":1081},"\u00ed":{"d":"782,0r-635,0r197,-1970r627,0xm913,-2253r-442,-74r520,-819r508,111","w":1081},"\u00ee":{"d":"782,0r-635,0r197,-1970r627,0xm950,-3109r385,795r-495,45r-164,-352r-234,356r-417,-57r544,-787r381,0","w":1081},"\u00ef":{"d":"-12,-2306r53,-565r561,0r-49,565r-565,0xm786,-2306r54,-565r561,0r-49,565r-566,0xm782,0r-635,0r197,-1970r627,0","w":1081},"\u00f1":{"d":"1324,-1124v-1,-109,54,-271,-67,-273v-128,10,-242,59,-352,94r-127,1303r-631,0r197,-1970r623,0r-25,258r161,-110v149,-92,256,-190,478,-197v340,-14,445,246,401,594r-135,1425r-630,0xm1462,-2400v-140,-3,-273,-35,-409,-41v-79,-1,-95,43,-119,103v-11,29,-23,67,-37,114r-401,-74v37,-211,78,-372,176,-493v116,-166,432,-126,672,-98v78,7,145,14,179,-37v36,-48,58,-107,83,-183r413,98v-66,346,-158,614,-557,611","w":2142},"\u00f2":{"d":"1094,-2019v558,-4,831,266,827,823v-1,562,-174,969,-553,1147v-205,102,-550,104,-779,33v-324,-102,-467,-377,-466,-807v6,-598,212,-1011,673,-1156v90,-27,189,-40,298,-40xm758,-864v2,216,30,378,237,377v186,-13,237,-171,273,-351v15,-82,22,-181,22,-297v-1,-208,-41,-358,-237,-360v-181,13,-236,161,-272,335v-15,81,-23,179,-23,296xm983,-2253r-483,-782r499,-111r426,819","w":2044},"\u00f3":{"d":"1094,-2019v558,-4,831,266,827,823v-1,562,-174,969,-553,1147v-205,102,-550,104,-779,33v-324,-102,-467,-377,-466,-807v6,-598,212,-1011,673,-1156v90,-27,189,-40,298,-40xm758,-864v2,216,30,378,237,377v186,-13,237,-171,273,-351v15,-82,22,-181,22,-297v-1,-208,-41,-358,-237,-360v-181,13,-236,161,-272,335v-15,81,-23,179,-23,296xm1389,-2253r-443,-74r520,-819r508,111","w":2044},"\u00f4":{"d":"1094,-2019v558,-4,831,266,827,823v-1,562,-174,969,-553,1147v-205,102,-550,104,-779,33v-324,-102,-467,-377,-466,-807v6,-598,212,-1011,673,-1156v90,-27,189,-40,298,-40xm758,-864v2,216,30,378,237,377v186,-13,237,-171,273,-351v15,-82,22,-181,22,-297v-1,-208,-41,-358,-237,-360v-181,13,-236,161,-272,335v-15,81,-23,179,-23,296xm1442,-3109r385,795r-496,45r-164,-352r-233,356r-418,-57r545,-787r381,0","w":2044},"\u00f5":{"d":"1094,-2019v558,-4,831,266,827,823v-1,562,-174,969,-553,1147v-205,102,-550,104,-779,33v-324,-102,-467,-377,-466,-807v6,-598,212,-1011,673,-1156v90,-27,189,-40,298,-40xm758,-864v2,216,30,378,237,377v186,-13,237,-171,273,-351v15,-82,22,-181,22,-297v-1,-208,-41,-358,-237,-360v-181,13,-236,161,-272,335v-15,81,-23,179,-23,296xm1405,-2400v-141,-3,-273,-35,-410,-41v-79,-1,-94,43,-119,103v-10,29,-22,67,-36,114r-402,-74v37,-211,78,-372,176,-493v116,-166,432,-126,672,-98v78,7,145,14,179,-37v36,-48,58,-107,83,-183r414,98v-67,345,-159,613,-557,611","w":2044},"\u00f6":{"d":"1094,-2019v558,-4,831,266,827,823v-1,562,-174,969,-553,1147v-205,102,-550,104,-779,33v-324,-102,-467,-377,-466,-807v6,-598,212,-1011,673,-1156v90,-27,189,-40,298,-40xm758,-864v2,216,30,378,237,377v186,-13,237,-171,273,-351v15,-82,22,-181,22,-297v-1,-208,-41,-358,-237,-360v-181,13,-236,161,-272,335v-15,81,-23,179,-23,296xm451,-2306r53,-565r561,0r-49,565r-565,0xm1282,-2306r53,-565r561,0r-49,565r-565,0","w":2044},"\u00f8":{"d":"1700,-1843v157,137,229,351,229,647v-1,562,-174,969,-553,1147v-162,77,-384,99,-598,69r-246,459r-471,-45r324,-561v-178,-141,-254,-371,-254,-696v6,-598,213,-1011,673,-1156v144,-44,343,-52,507,-24r299,-524r467,45xm766,-864v2,216,30,378,238,377v186,-13,237,-171,272,-351v15,-82,22,-181,22,-297v-1,-208,-41,-358,-237,-360v-181,13,-236,161,-272,335v-15,81,-23,179,-23,296","w":2044},"\u00df":{"d":"1495,-483v127,14,137,-124,83,-208v-115,-208,-294,-387,-373,-631v-33,-120,-30,-286,27,-380v75,-151,242,-275,336,-415v35,-52,48,-127,14,-191v-49,-105,-203,-172,-354,-126v-172,68,-208,268,-248,480v-13,75,-24,163,-34,262r-241,2474r-635,33r245,-2515v74,-713,305,-1273,1082,-1282v374,2,646,142,781,380v85,145,71,369,-6,499v-80,148,-216,277,-316,411v-47,53,-63,155,-22,230v124,234,332,425,395,709v28,136,20,300,-25,418v-90,236,-301,367,-627,368v-245,0,-427,-55,-602,-135r143,-480v106,41,243,88,377,99","w":2339},"\u00fe":{"d":"1677,-301v-189,237,-501,347,-923,317r-70,766r-635,33r344,-3469r631,-33r-90,926r166,-113v110,-68,192,-131,350,-137v398,6,506,301,508,713v2,432,-94,767,-281,997xm1315,-1147v1,-188,-50,-313,-231,-291v-70,15,-123,43,-187,74r-86,864v109,21,259,51,339,-19v139,-118,163,-360,165,-628","w":2089},"\u00f9":{"d":"610,49v-340,13,-443,-245,-401,-594r135,-1425r635,0r-119,1245v-2,98,16,161,115,156v110,-7,197,-38,311,-82r123,-1319r635,0r-135,1347r12,607r-594,20r-16,-311r-241,168v-148,92,-251,180,-460,188xm1012,-2253r-484,-782r500,-111r426,819","w":2191},"\u00fa":{"d":"610,49v-340,13,-443,-245,-401,-594r135,-1425r635,0r-119,1245v-2,98,16,161,115,156v110,-7,197,-38,311,-82r123,-1319r635,0r-135,1347r12,607r-594,20r-16,-311r-241,168v-148,92,-251,180,-460,188xm1421,-2253r-442,-74r520,-819r508,111","w":2191},"\u00fb":{"d":"610,49v-340,13,-443,-245,-401,-594r135,-1425r635,0r-119,1245v-2,98,16,161,115,156v110,-7,197,-38,311,-82r123,-1319r635,0r-135,1347r12,607r-594,20r-16,-311r-241,168v-148,92,-251,180,-460,188xm1511,-3109r385,795r-495,45r-164,-352r-233,356r-418,-57r544,-787r381,0","w":2191},"\u00fc":{"d":"610,49v-340,13,-443,-245,-401,-594r135,-1425r635,0r-119,1245v-2,98,16,161,115,156v110,-7,197,-38,311,-82r123,-1319r635,0r-135,1347r12,607r-594,20r-16,-311r-241,168v-148,92,-251,180,-460,188xm528,-2306r54,-565r561,0r-49,565r-566,0xm1360,-2306r53,-565r561,0r-49,565r-565,0","w":2191},"\u00fd":{"d":"778,-1970r197,1089v8,54,4,104,4,160v0,-58,19,-113,37,-160r434,-1089r569,0r-1175,2781r-656,0r381,-819r-430,-1962r639,0xm1356,-2253r-443,-74r521,-819r508,111","w":1962},"\u00ff":{"d":"778,-1970r197,1089v8,54,4,104,4,160v0,-58,19,-113,37,-160r434,-1089r569,0r-1175,2781r-656,0r381,-819r-430,-1962r639,0xm426,-2306r53,-565r561,0r-49,565r-565,0xm1257,-2306r54,-565r561,0r-49,565r-566,0","w":1962},"\u00b4":{"d":"647,-2253r-442,-74r520,-819r508,111","w":1503},"\u00a8":{"d":"225,-2306r54,-565r561,0r-49,565r-566,0xm1057,-2306r53,-565r561,0r-49,565r-565,0","w":1851},"\u00af":{"d":"1507,-2396r-1335,0r33,-451r1331,0","w":1712},"\u00b8":{"d":"1024,-168v64,176,110,362,115,561v-6,326,-212,448,-498,516v-121,28,-270,44,-448,49r-70,-409v149,-12,262,-28,355,-69v52,-25,76,-54,79,-115v-6,-173,-36,-350,-70,-504","w":1266},"\u00ad":{"d":"1352,-852r-1188,0r41,-405r1192,0","w":1561},"\u00a1":{"d":"324,-860r540,0r-86,1986r-753,0xm1008,-1888r-62,643r-627,0r62,-643r627,0","w":1290},"\u00bf":{"d":"1507,-1008v67,180,123,380,131,607v-4,155,-92,210,-237,241r-340,70v-144,36,-279,57,-287,221v5,120,77,164,164,217v206,110,460,173,737,242r-192,598v-430,-64,-786,-171,-1051,-360v-194,-142,-322,-321,-330,-611v-10,-566,479,-637,934,-754r-41,-397xm1667,-1888r-61,643r-627,0r61,-643r627,0","w":2019},"\u00ab":{"d":"1319,-225r-602,135r-484,-868r754,-926r627,115r-647,782xm2454,-225r-603,135r-483,-868r754,-926r626,115r-647,782","w":2830},"\u00bb":{"d":"1511,-1745r607,-135r483,864r-754,930r-630,-119r647,-782xm377,-1745r606,-135r483,864r-757,930r-627,-119r647,-782","w":2830},"\u00b7":{"d":"406,-692r61,-643r627,0r-62,643r-626,0","w":1540},"\u00a7":{"d":"852,-2138v-109,64,-172,182,-176,348v8,274,107,485,194,695r232,513v99,234,201,476,225,775v177,-75,212,-342,154,-573v-139,-546,-450,-951,-587,-1500v-22,-87,-36,-173,-42,-258xm339,-2110v164,-361,555,-533,1085,-483v223,18,437,61,604,139r-86,394v-209,-70,-425,-113,-676,-127v25,405,194,695,328,998r114,247v134,286,274,716,132,1084v-143,380,-554,551,-1104,502v-218,-18,-417,-61,-580,-136r86,-393v209,69,426,112,676,127v-26,-410,-199,-703,-337,-1008r-117,-248v-94,-219,-192,-440,-198,-735v0,-135,24,-256,73,-361","w":2245},"\u00b6":{"d":"1790,-1966r938,0r-45,418r-344,28r-217,2323r-611,0xm197,-1016v-2,-647,280,-1029,951,-988r247,20v43,4,85,9,125,14r-164,1519v-144,101,-357,172,-598,177v-430,-2,-559,-309,-561,-742","w":3113},"\u00a6":{"d":"614,-1581r164,-1794r520,0r-172,1794r-512,0xm389,856r172,-1831r512,0r-168,1831r-516,0","w":1675},"\u00a9":{"d":"2564,-1543v85,221,90,516,28,763v-121,457,-409,773,-854,906v-253,74,-590,54,-818,-24v-397,-136,-629,-448,-633,-970v10,-565,274,-910,638,-1124v172,-96,381,-161,631,-162v527,3,860,229,1008,611xm586,-909v2,554,288,831,848,831v393,-8,630,-197,776,-458v77,-143,125,-321,125,-537v-4,-538,-271,-826,-815,-828v-457,8,-735,244,-866,587v-45,121,-68,256,-68,405xm1507,-721v84,-2,180,-38,254,-65r62,290v-127,57,-240,104,-418,103v-275,-9,-416,-171,-418,-459v0,-337,116,-566,348,-666v146,-63,359,-52,504,2r-65,295v-83,-15,-219,-57,-298,-13v-81,59,-94,188,-96,337v2,114,22,174,127,176","w":2929},"\u00ae":{"d":"1266,-1229v-614,-5,-949,-303,-955,-913v7,-492,227,-800,541,-989v146,-84,328,-141,545,-142v467,1,758,192,881,536v107,302,51,723,-80,949v-131,248,-342,434,-634,519v-93,27,-193,40,-298,40xm553,-2179v-5,510,246,750,758,745v386,-9,615,-219,725,-516v41,-112,61,-238,61,-381v-2,-481,-235,-736,-721,-737v-408,6,-652,214,-764,524v-40,109,-59,231,-59,365xm1716,-2486v-4,172,-94,254,-192,340r213,405r-283,0r-156,-352r-110,-4r-29,356r-246,0r86,-1024r398,0v193,3,311,94,319,279xm1405,-2265v40,-62,62,-103,65,-184v-1,-99,-47,-153,-151,-152r-86,0r-29,328","w":2638},"\u00a4":{"d":"1298,-508v194,-6,359,-63,521,-139r102,479v-196,116,-440,197,-741,201v-554,9,-770,-318,-746,-893r-328,0r37,-402r340,0v95,-379,290,-658,628,-780v265,-95,634,-44,843,51r-103,467v-130,-36,-278,-66,-438,-69v-211,0,-259,149,-299,331r651,0r-28,402r-660,0v0,203,19,357,221,352","w":2171},"\u00a2":{"d":"1053,-524v175,-7,322,-62,458,-115r99,492v-158,74,-307,136,-504,163r-37,521r-479,0r61,-533v-326,-88,-486,-357,-487,-778v3,-641,213,-1079,708,-1221r41,-545r476,0r-62,517v109,12,218,43,311,77r-106,496v-123,-29,-265,-55,-414,-57v-197,11,-247,175,-280,366v-15,183,-75,545,98,601v31,11,70,16,117,16","w":1778},"\u00a3":{"d":"2310,-418v-146,317,-340,534,-794,529v-243,-10,-502,-48,-739,-71r-568,-60r-12,-410r327,-37v38,-153,49,-337,58,-520r-332,0r24,-402r332,0v10,-217,11,-440,72,-607v111,-324,384,-484,829,-482v247,-1,434,44,623,106r-94,480v-147,-33,-320,-67,-496,-70v-198,-10,-207,139,-213,328r-8,245r573,0r-32,402r-566,0r-12,192v-9,123,-30,245,-57,349v86,12,155,20,207,25v52,5,93,7,124,7v207,-3,283,-124,377,-250","w":2474},"\u00a5":{"d":"139,-688r627,0r8,-66r-119,-237r-495,0r37,-361r290,0r-299,-618r730,0r270,618r393,-618r668,0r-422,618r315,0r-37,361r-528,0r-147,217r-9,86r660,0r-33,364r-659,0r-29,324r-651,0r24,-324r-627,0","w":2236},"\u00aa":{"d":"852,-2654v164,3,329,33,459,74r-70,770r8,364r-356,12r-12,-151v-100,72,-158,143,-277,163v-276,46,-392,-157,-387,-446v3,-474,176,-778,635,-786xm610,-1937v-6,123,49,197,164,163v28,-8,53,-19,82,-32r53,-512v-34,-11,-86,-16,-123,-17v-61,0,-106,34,-134,101v-28,68,-42,167,-42,297","w":1417},"\u00ba":{"d":"815,-2654v336,-1,502,160,500,495v-1,342,-104,589,-335,697v-74,32,-157,49,-251,49v-345,3,-507,-170,-504,-516v1,-327,109,-564,331,-671v73,-36,160,-54,259,-54xm610,-1954v1,127,18,222,140,221v113,-7,145,-102,167,-211v9,-48,13,-108,13,-178v-1,-124,-27,-211,-144,-213v-109,8,-141,97,-162,203v-10,48,-14,107,-14,178","w":1417},"\u00b9":{"d":"905,-1020r-495,0r86,-889r-316,0r37,-393r807,-37","w":1282},"\u00b2":{"d":"295,-2269v242,-101,697,-160,897,17v105,77,155,248,110,416v-65,231,-282,330,-454,460r471,0r-33,356r-1040,0r-25,-307r426,-291v84,-60,160,-105,201,-193v37,-91,-14,-184,-115,-176v-134,2,-250,36,-356,70","w":1524},"\u00b3":{"d":"1044,-1552v137,76,237,187,246,381v-5,289,-160,453,-385,531v-231,78,-588,38,-782,-40r90,-373v116,50,264,77,426,78v84,0,148,-43,147,-127v-5,-110,-86,-144,-188,-170v-49,-12,-113,-19,-192,-22r49,-348r270,8v51,-72,100,-121,102,-234v1,-75,-51,-120,-127,-119v-134,2,-250,36,-356,70r-82,-352v242,-101,699,-161,896,19v78,64,126,158,128,288v-8,208,-125,299,-242,410","w":1466},"\u00bc":{"d":"1978,-344r631,-897r594,-29r-90,914r246,0r-37,356r-242,0r-45,520r-483,0r45,-520r-590,0xm2363,-356r275,0r37,-467xm905,-1020r-495,0r86,-889r-316,0r37,-393r807,-37xm1176,0r-549,0r1347,-1995r545,0","w":3543},"\u00bd":{"d":"905,-1020r-495,0r86,-889r-316,0r37,-393r807,-37xm2318,-1249v242,-101,697,-162,896,16v106,78,156,249,112,417v-67,230,-282,330,-455,460r471,0r-32,356r-1041,0r-24,-307r426,-291v83,-60,159,-105,201,-193v37,-91,-15,-184,-115,-176v-134,2,-251,36,-357,70xm1176,0r-549,0r1347,-1995r545,0","w":3576},"\u00be":{"d":"2363,-344r631,-897r594,-29r-90,914r246,0r-37,356r-242,0r-45,520r-483,0r45,-520r-590,0xm2748,-356r275,0r37,-467xm1561,0r-549,0r1347,-1995r545,0xm1044,-1552v137,76,237,187,246,381v-5,289,-160,453,-385,531v-231,78,-588,38,-782,-40r90,-373v116,50,264,77,426,78v84,0,148,-43,147,-127v-5,-110,-86,-144,-188,-170v-49,-12,-113,-19,-192,-22r49,-348r270,8v51,-72,100,-121,102,-234v1,-75,-51,-120,-127,-119v-134,2,-250,36,-356,70r-82,-352v242,-101,699,-161,896,19v78,64,126,158,128,288v-8,208,-125,299,-242,410","w":3928},"\u00b1":{"d":"1225,-2540r0,959r950,0r0,192r-950,0r0,951r-197,0r0,-951r-954,0r0,-192r954,0r0,-959r197,0xm2175,-197r0,197r-2101,0r0,-197r2101,0","w":2249},"\u00d7":{"d":"1098,-1389r450,-454r369,356r-500,483r406,529r-447,311r-348,-475r-463,459r-352,-340r504,-500r-410,-553r443,-299","w":2122},"\u00f7":{"d":"1208,-1893v94,38,169,161,118,291v-36,96,-161,170,-289,120v-95,-37,-170,-163,-120,-291v37,-95,163,-170,291,-120xm2175,-1151r0,197r-2101,0r0,-197r2101,0xm1122,-631v122,2,222,91,226,221v-8,135,-91,218,-226,226v-105,-2,-169,-65,-204,-140v-63,-153,60,-310,204,-307","w":2249},"\u00ac":{"d":"1393,-164r53,-618r-1229,0r45,-443r1733,0r-94,1041","w":2232},"\u00b5":{"d":"606,647v6,133,-72,233,-180,238v-91,-3,-136,-72,-161,-143v-47,-145,30,-304,51,-420v36,-177,44,-368,49,-560r0,-1593r335,0r0,1151v2,247,26,349,156,438v80,46,179,72,290,38v166,-49,305,-135,423,-247r0,-1380r332,0r0,1204v5,183,-12,344,73,434v50,44,129,37,172,-20v28,-32,49,-98,62,-197r82,0v-33,265,-106,462,-381,471v-244,-3,-322,-164,-340,-401v-156,177,-323,309,-558,382v-199,65,-378,-19,-491,-116v-4,194,12,362,49,504v25,105,37,178,37,217","w":2359},"\u00b0":{"d":"1388,-2394v61,141,61,329,0,471v-95,205,-275,377,-569,379v-193,-2,-327,-75,-434,-180v-111,-106,-177,-239,-180,-435v3,-195,70,-328,180,-434v226,-240,644,-240,868,0v60,60,105,126,135,199xm1135,-1843v125,-121,167,-307,98,-487v-69,-149,-200,-275,-414,-275v-142,2,-238,50,-315,131v-81,77,-129,173,-131,315v0,214,126,344,275,414v102,44,240,44,343,0v53,-22,101,-55,144,-98","w":1638}}});
  
  Cufon.replace('h1, h2, #content .vevent p.date, .vevent .sep');
  Cufon.replace('#navigation a, p.links a, .vevent h3, .submit', { hover: true });
}
else {
  Cufon = function() {};
  Cufon.now = function() {};
}

function aLaCarte() {
  $('.alacarte .activiteit').each(function() {
    var activiteit = $(this);
    var description = activiteit.children('.description');
    var shortDescription = activiteit.children('.description-short');
    var price = activiteit.children('.price');
    var links = activiteit.children('.links');
    description.hide();
    price.hide();
    links.hide();
    
    var more = $('<a>');
    more.attr('href', 'javascript:;');
    more.text('Meer');
    activiteit.children('.title').append($('<p class="more">').append(more));
    
    more.click(function() {
      if(!more.is('.active')) {
        description.slideDown('fast');
        shortDescription.slideUp();
        description.slideDown();
        price.slideDown();
        links.slideDown();
        more.addClass('active');
        more.text('Minder');
      }
      else {
        description.slideUp('fast');
        shortDescription.slideDown();
        description.slideUp();
        price.slideUp();
        links.slideUp();
        more.removeClass('active');
        more.text('Meer');
      }
    });
  });
}

// ASP.Net stuff...
var theForm;
function __doPostBack (eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}

function WebForm_OnSubmit() {
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false;
return true;
}

var Page_ValidationActive = false;
function ValidatorOnSubmit() {
    if (Page_ValidationActive) {
        return ValidatorCommonOnSubmit();
    }
    else {
        return true;
    }
}

$(document).ready(function() {
    theForm = document.forms['aspnetForm'];
    if (!theForm) {
      theForm = document.aspnetForm;
    }
    if (typeof(ValidatorOnLoad) == "function") {
        ValidatorOnLoad();
    }
    aLaCarte();
    
    $('a').mouseup(function() {
      this.blur();
    });
});
