/*
 * 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")}})})();

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},gradient:I(function(d){var e={id:d,type:d.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},a=d.substr(d.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var c=0,Z=a.length,b;c<Z;++c){b=a[c].split("=",2).reverse();e.stops.push([b[1]||c/(Z-1),b[0]])}return e}),quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()},whiteSpace:(function(){var Z={inline:1,"inline-block":1,"run-in":1};return function(c,a,b){if(Z[a.get("display")]){return c}if(!b.previousSibling){c=c.replace(/^\s+/,"")}if(!b.nextSibling){c=c.replace(/\s+$/,"")}return c}})()};M.ready=(function(){var b=!M.recognizesMedia("all"),a=false;var Z=[],d=function(){b=true;for(var g;g=Z.shift();g()){}};var e=F("link"),f={stylesheet:1};function c(){var h,g,j;for(g=0;j=e[g];++g){if(j.disabled||!f[j.rel.toLowerCase()]||!M.recognizesMedia(j.media||"screen")){continue}h=j.sheet||j.styleSheet;if(!h||h.disabled){return false}}return true}V.ready(function(){if(!a){a=M.getStyle(document.body).isUsable()}if(b||(a&&c())){d()}else{setTimeout(arguments.callee,10)}});return function(g){if(b){g()}else{Z.push(g)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.isUsable=function(){return !!Z}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=M.whiteSpace(c.data,Z,c);if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/\s+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(typeof a.color=="string"&&/^-/.test(a.color)){a.textGradient=M.gradient(a.color)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode(".cufon-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{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(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(t,W,o,R,a,u){var I=(W===null);var Y=t.viewBox;var J=o.getSize("fontSize",t.baseSize);var m=o.get("letterSpacing");m=(m=="normal")?0:J.convertFrom(parseInt(m,10));var Z=0,n=0,k=0,T=0;var X=R.textShadow,h=[];if(X){for(var s=X.length;s--;){var c=X[s];var f=J.convertFrom(parseFloat(c.offX));var e=J.convertFrom(parseFloat(c.offY));h[s]=[f,e];if(e<Z){Z=e}if(f>n){n=f}if(e>k){k=e}if(f<T){T=f}}}var z=Cufon.CSS.textTransform(I?a.alt:W,o).split("");var G=0,U=null;for(var s=0,p=z.length;s<p;++s){var S=t.glyphs[z[s]]||t.missingGlyph;if(!S){continue}G+=U=Number(S.w||t.w)+m}if(U===null){return null}n+=(Y.width-U);T+=Y.minX;var Q,K;if(I){Q=a;K=a.firstChild}else{Q=document.createElement("span");Q.className="cufon cufon-canvas";Q.alt=W;K=document.createElement("canvas");Q.appendChild(K);if(R.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(W));Q.appendChild(q)}}var AA=Q.style;var d=K.style;var H=J.convert(Y.height);var w=Math.ceil(H);var j=w/H;K.width=Math.ceil(J.convert(G*j+n-T));K.height=Math.ceil(J.convert(Y.height-Z+k));Z+=Y.minY;d.top=Math.round(J.convert(Z-t.ascent))+"px";d.left=Math.round(J.convert(T))+"px";var P=Math.ceil(J.convert(G*j))+"px";if(A){AA.width=P;AA.height=J.convert(t.height)+"px"}else{AA.paddingLeft=P;AA.paddingBottom=(J.convert(t.height)-1)+"px"}var v=K.getContext("2d"),b=H/Y.height;v.scale(b,b*j);v.translate(-T,-Z);v.lineWidth=t.face["underline-thickness"];v.save();function L(i,g){v.strokeStyle=g;v.beginPath();v.moveTo(0,i);v.lineTo(G,i);v.stroke()}var M=R.enableTextDecoration?Cufon.CSS.textDecoration(u,o):{};if(M.underline){L(-t.face["underline-position"],M.underline)}if(M.overline){L(t.ascent,M.overline)}function r(){v.scale(j,1);for(var x=0,g=z.length;x<g;++x){var y=t.glyphs[z[x]]||t.missingGlyph;if(!y){continue}if(y.d){v.beginPath();if(y.code){C(y.code,v)}else{y.code=D("m"+y.d,v)}v.fill()}v.translate(Number(y.w||t.w)+m,0)}v.restore()}if(X){for(var s=X.length;s--;){var c=X[s];v.save();v.fillStyle=c.color;v.translate.apply(v,h[s]);r()}}var O=R.textGradient;if(O){var V=O.stops,N=v.createLinearGradient(0,Y.minY,0,Y.maxY);for(var s=0,p=V.length;s<p;++s){N.addColorStop.apply(N,V[s])}v.fillStyle=N}else{v.fillStyle=o.get("color")}r();if(M["line-through"]){L(-t.descent,M["line-through"])}return Q}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:fill,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 C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(v,Y,q,V,c,w,o){var I=(Y===null);if(I){Y=c.alt}var a=v.viewBox;var J=q.computedFontSize||(q.computedFontSize=new Cufon.CSS.Size(C(w,q.get("fontSize"))+"px",v.baseSize));var n=q.computedLSpacing;if(n==undefined){n=q.get("letterSpacing");q.computedLSpacing=n=(n=="normal")?0:~~J.convertFrom(A(w,n))}var S,K;if(I){S=c;K=c.firstChild}else{S=document.createElement("span");S.className="cufon cufon-vml";S.alt=Y;K=document.createElement("span");K.className="cufon-vml-canvas";S.appendChild(K);if(V.printable){var t=document.createElement("span");t.className="cufon-alt";t.appendChild(document.createTextNode(Y));S.appendChild(t)}if(!o){S.appendChild(document.createElement("cvml:shape"))}}var AB=S.style;var f=K.style;var G=J.convert(a.height),y=Math.ceil(G);var m=y/G;var j=a.minX,h=a.minY;f.height=y;f.top=Math.round(J.convert(h-v.ascent));f.left=Math.round(J.convert(j));AB.height=J.convert(v.height)+"px";var N=V.enableTextDecoration?Cufon.CSS.textDecoration(w,q):{};var X=q.get("color");var z=Cufon.CSS.textTransform(Y,q).split("");var F=0,g=0,O=null;var W,Q,Z=V.textShadow;for(var u=0,s=0,r=z.length;u<r;++u){W=v.glyphs[z[u]]||v.missingGlyph;if(W){F+=O=~~(W.w||v.w)+n}}if(O===null){return null}var R=-j+F+(a.width-O);var AA=J.convert(R*m),p=Math.round(AA);var e=R+","+a.height,H;var b="r"+e+"ns";var P=V.textGradient&&D(V.textGradient);for(u=0;u<r;++u){W=v.glyphs[z[u]]||v.missingGlyph;if(!W){continue}if(I){Q=K.childNodes[s];if(Q.firstChild){Q.removeChild(Q.firstChild)}}else{Q=document.createElement("cvml:shape");K.appendChild(Q)}Q.stroked="f";Q.coordsize=e;Q.coordorigin=H=(j-g)+","+h;Q.path=(W.d?"m"+W.d+"xe":"")+"m"+H+b;Q.fillcolor=X;if(P){Q.appendChild(P.cloneNode(false))}var x=Q.style;x.width=p;x.height=y;if(Z){var M=Z[0],L=Z[1];var U=Cufon.CSS.color(M.color),T;var d=document.createElement("cvml:shadow");d.on="t";d.color=U.color;d.offset=M.offX+","+M.offY;if(L){T=Cufon.CSS.color(L.color);d.type="double";d.color2=T.color;d.offset2=L.offX+","+L.offY}d.opacity=U.opacity||(T&&T.opacity)||1;Q.appendChild(d)}g+=~~(W.w||v.w)+n;++s}AB.width=Math.max(Math.ceil(J.convert(F*m)),0);return S}})());


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2000 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Trajan is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * TrajanPro-Regular
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":205,"face":{"font-family":"Trajan Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 5 2 5 5 6 2 3 1","ascent":"270","descent":"-90","x-height":"5","cap-height":"1","bbox":"-11 -338 546 91","underline-thickness":"18","underline-position":"-18","stemh":"13","stemv":"29","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":117},"!":{"d":"39,-245v5,-14,19,-26,34,-31v6,6,-2,20,-4,51v-1,15,-3,159,-12,170v-4,0,-5,-5,-6,-19r-5,-96v0,-8,-4,-62,-7,-75xm58,6v-25,-1,-24,-35,0,-37v10,0,18,8,18,18v0,11,-7,19,-18,19","w":115},"\"":{"d":"36,-187v-6,-18,-13,-85,-15,-80v0,-5,6,-5,15,-5v9,0,15,0,15,5xm81,-187v-6,-18,-13,-85,-15,-80v0,-5,6,-5,15,-5v9,0,15,0,15,5","w":117},"#":{"d":"194,-166r-43,0r-9,59r41,0r0,21r-44,0r-13,86r-13,0r14,-86r-59,0r-14,86r-12,0r13,-86r-43,0r0,-21r47,0r9,-59r-45,0r0,-20r48,0r11,-85r13,0r-11,85r57,0r12,-85r12,0r-11,85r40,0r0,20xm138,-166r-57,0r-9,59r58,0"},"$":{"d":"126,-273v21,2,39,-1,43,10v-1,10,3,43,-4,46v-7,-8,-1,-24,-13,-34v-6,-5,-18,-10,-27,-10r-11,107v34,22,63,42,63,82v0,54,-51,72,-76,72v-3,12,3,33,-13,34v-7,-6,1,-24,0,-34v-11,-1,-58,-2,-57,-22v2,-26,1,-41,8,-49v5,11,-1,31,11,41v9,11,25,16,39,16r11,-115v-40,-28,-61,-47,-61,-79v0,-44,43,-65,74,-65v2,-13,-1,-40,16,-33xm103,-163r9,-98v-13,0,-49,7,-49,43v0,22,14,37,40,55xm112,-121r-10,107v31,-1,49,-21,49,-50v0,-24,-15,-41,-39,-57"},"%":{"d":"233,0v-84,-3,-79,-130,2,-132v83,3,79,130,-2,132xm234,-10v28,0,39,-25,39,-54v0,-28,-13,-58,-39,-58v-27,0,-39,25,-39,54v0,28,13,58,39,58xm112,-3v-3,8,-14,4,-21,7v-4,1,-5,-2,-4,-4v36,-81,111,-256,114,-264v-23,1,-79,6,-85,6v40,29,29,122,-38,120v-85,-4,-78,-132,4,-132v64,0,128,-10,139,-7xm79,-148v28,0,38,-24,38,-53v0,-28,-13,-59,-39,-59v-27,0,-38,25,-38,54v0,28,13,58,39,58","w":313},"&":{"d":"214,-54v40,34,54,40,98,53v-53,4,-67,10,-117,-32v-8,8,-37,39,-90,39v-118,0,-101,-134,-32,-166v-40,-52,-12,-116,60,-116v22,0,44,2,48,18v-1,15,2,43,-6,47v-3,-25,-17,-54,-49,-53v-22,0,-46,13,-46,47v0,47,89,122,125,157v10,-14,18,-38,18,-60v0,-16,-17,-23,-29,-26v9,-3,48,-6,56,7v0,29,-20,66,-36,85xm186,-40v-46,-40,-74,-66,-108,-111v-57,29,-30,138,40,138v33,0,56,-14,68,-27","w":279},"(":{"d":"103,-265v-18,23,-54,72,-54,150v0,77,23,119,54,157v0,1,-2,3,-3,3v-32,-22,-78,-77,-78,-155v0,-80,51,-142,79,-158v1,0,2,2,2,3","w":129,"k":{"v":-8,"w":-3,"y":-12}},")":{"d":"26,42v20,-22,53,-72,54,-150v1,-77,-24,-118,-53,-157v0,-1,1,-3,2,-3v32,22,78,76,78,154v0,81,-51,141,-78,159v-1,0,-3,-2,-3,-3","w":129},"*":{"d":"59,-239v0,-10,-8,-33,-10,-41v0,-3,24,-18,26,-7v3,9,-12,37,-8,48v20,-6,30,-16,37,-22v2,0,17,24,6,26v-1,1,-35,0,-44,2v4,13,28,26,35,31v0,6,-14,18,-19,18v-11,-5,-14,-39,-23,-43v-3,7,-15,27,-16,38v-5,5,-29,0,-27,-3v1,-13,42,-31,38,-42v-11,-2,-32,-3,-38,-1v-2,0,-8,-26,-1,-27v14,-1,36,23,44,23","w":126},"+":{"d":"168,-87r-66,0r0,67r-19,0r0,-67r-68,0r0,-19r67,0r0,-67r19,0r0,67r67,0r0,19","w":183},",":{"d":"31,34v-5,-9,13,-25,9,-33v0,-17,-12,-22,-12,-26v0,-10,13,-19,22,-19v26,18,3,59,-19,78","w":90},"-":{"d":"128,-108v-18,14,-93,11,-113,25v-3,-6,-2,-30,11,-29v33,2,77,-5,102,4","w":140},".":{"d":"45,0v-27,-1,-27,-38,0,-40v11,0,20,7,20,19v0,12,-8,21,-20,21","w":90},"\/":{"d":"24,4v-4,3,-20,-3,-15,-12r166,-266v5,-4,16,4,16,9","w":198},"0":{"d":"15,-127v0,-85,32,-149,90,-149v66,0,85,86,85,133v0,83,-31,149,-90,149v-56,0,-85,-69,-85,-133xm98,-263v-73,3,-73,257,9,256v77,-3,69,-260,-9,-256"},"1":{"d":"40,-222v24,-20,52,-38,81,-54v11,24,-6,197,3,250v-4,23,28,18,42,25v-53,3,-63,2,-120,0v9,-9,47,3,47,-25r1,-200v-3,-33,-42,17,-54,4"},"2":{"d":"186,-63v2,16,1,63,-32,63r-136,0v-9,-1,-4,-10,1,-14v72,-64,126,-114,126,-183v0,-51,-34,-66,-58,-66v-35,0,-50,25,-54,54v-7,-4,-3,-33,-5,-49v10,-15,35,-18,67,-18v54,0,81,35,81,73v0,75,-80,141,-125,179v-2,1,-1,2,1,2v51,-2,126,10,130,-36v1,-4,2,-5,4,-5"},"3":{"d":"74,6v-20,0,-50,-2,-50,-19v0,-21,-1,-42,6,-50v7,28,14,54,56,54v36,0,65,-21,65,-64v0,-48,-43,-65,-66,-70v-7,-1,-10,-2,-10,-5v23,-9,64,-18,66,-67v0,-15,-10,-48,-52,-48v-31,0,-43,21,-48,47v-5,-8,-4,-32,-5,-40v7,-17,32,-20,63,-20v59,0,71,36,71,54v0,37,-38,59,-48,66v23,5,59,28,59,70v0,50,-43,92,-107,92"},"4":{"d":"150,-81v0,30,-10,84,32,77v2,0,3,2,3,3v-41,3,-55,2,-99,0v8,-6,40,-1,36,-25v1,-16,0,-43,0,-55r-109,0v-10,1,-9,-8,-5,-12v2,-3,119,-161,131,-177v3,-6,11,-10,11,0r0,170v12,0,38,0,42,-4v5,5,-1,24,-9,23r-33,0xm122,-100r0,-128v-5,9,-85,119,-92,128r92,0"},"5":{"d":"28,-10v0,-14,-3,-43,4,-52v2,0,3,2,3,6v0,39,24,46,50,46v30,0,63,-20,63,-70v0,-58,-63,-86,-91,-87v-7,0,-10,-3,-10,-7r8,-91v0,-4,3,-5,7,-5v37,-2,79,2,113,-3v7,3,2,31,-5,53v-5,-14,-1,-28,-34,-27r-68,0r-5,55v46,7,113,35,113,99v0,46,-35,99,-108,99v-14,0,-40,-2,-40,-16"},"6":{"d":"18,-98v1,-72,56,-153,132,-178v6,3,2,8,-4,10v-46,26,-97,83,-97,168v0,42,19,90,60,90v29,0,52,-22,52,-62v0,-65,-39,-88,-86,-70v-4,-13,21,-19,43,-19v50,0,72,41,72,73v0,55,-34,92,-88,92v-50,0,-84,-38,-84,-104"},"7":{"d":"171,-247v-54,3,-131,-16,-136,36v0,3,-1,5,-3,5v-4,-14,1,-63,7,-68v32,7,107,3,150,4v5,0,7,2,7,4v-28,55,-96,186,-96,250v0,6,-33,29,-39,19v13,-67,53,-144,110,-250"},"8":{"d":"19,-64v0,-40,31,-67,64,-80v-66,-29,-73,-132,26,-132v37,0,66,20,66,55v0,38,-31,59,-51,69v24,12,62,35,62,79v0,42,-34,79,-85,79v-45,0,-82,-26,-82,-70xm104,-8v33,0,55,-25,55,-57v0,-39,-32,-56,-64,-73v-27,13,-48,35,-48,71v0,32,24,59,57,59xm105,-264v-32,0,-47,25,-47,45v0,30,24,46,54,62v14,-8,38,-23,38,-60v0,-27,-17,-47,-45,-47"},"9":{"d":"133,-145v5,16,-31,22,-43,22v-51,0,-72,-39,-72,-69v0,-50,36,-84,86,-84v51,0,82,43,82,98v0,104,-79,165,-130,187v-4,-1,-4,-8,1,-9v42,-23,97,-83,97,-168v0,-63,-27,-95,-59,-95v-32,0,-49,27,-49,55v0,78,52,81,87,63"},":":{"d":"45,-11v-27,-1,-27,-38,0,-39v11,0,20,6,20,18v0,12,-8,21,-20,21xm45,-132v-27,-1,-27,-38,0,-40v11,0,20,7,20,19v0,12,-8,21,-20,21","w":90},";":{"d":"33,34v-5,-9,13,-25,9,-33v0,-17,-12,-22,-12,-26v0,-10,13,-19,22,-19v24,20,3,60,-19,78xm45,-132v-27,-1,-27,-38,0,-40v11,0,20,7,20,19v0,12,-8,21,-20,21","w":90},"<":{"d":"9,-85r0,-19r153,-71r0,19r-133,61r133,62r0,19","w":183},"=":{"d":"168,-118r-153,0r0,-19r153,0r0,19xm168,-55r-153,0r0,-18r153,0r0,18","w":183},">":{"d":"168,-85r-153,71r0,-19r134,-62r-134,-61r0,-19r153,71r0,19","w":183},"?":{"d":"58,-94v12,-38,72,-82,64,-123v0,-18,-9,-47,-42,-47v-38,0,-45,27,-50,54v-8,-5,-3,-28,-5,-46v9,-15,33,-20,64,-20v48,0,65,30,65,56v0,47,-60,85,-77,132v-3,8,16,23,7,28v-8,-2,-29,-25,-26,-34xm81,6v-25,-1,-24,-35,0,-37v10,0,18,8,18,18v0,11,-7,19,-18,19","w":175},"@":{"d":"209,-35v-26,0,-28,-25,-28,-55v-24,36,-51,54,-66,54v-10,0,-19,-16,-19,-35v0,-51,33,-77,43,-85v22,-17,44,-25,67,-16v3,-4,13,-14,20,-16v9,5,-7,14,-10,33v-5,30,-28,105,13,105v29,0,57,-35,57,-90v0,-52,-35,-94,-103,-94v-84,0,-135,66,-135,152v0,68,43,108,103,108v48,0,71,-14,95,-33v6,-5,8,-5,9,-3v-15,27,-59,49,-112,49v-64,0,-119,-37,-119,-118v0,-87,75,-164,162,-164v154,0,145,208,23,208xm196,-157v-44,-29,-76,34,-74,78v0,9,3,22,9,22v13,0,39,-30,52,-51v4,-21,6,-29,13,-49","w":326},"A":{"d":"34,-39r82,-223v8,-20,8,-20,16,-1v6,14,61,162,84,217v18,43,21,37,49,44v-8,7,-50,3,-75,0v2,-5,8,-3,5,-12v-13,-29,-21,-65,-37,-91v-26,2,-60,-4,-81,3v-9,28,-22,57,-27,88v-2,13,31,8,16,15v-24,-2,-58,4,-76,-3v22,-3,35,-12,44,-37xm85,-118r68,0v2,0,2,-2,2,-3r-34,-97v-2,-5,-4,-5,-6,0v-9,33,-26,69,-30,100","w":252,"k":{"m":-8,"s":-3,"t":23,"v":26,"w":15,"x":-3,"y":17,"M":-9,"S":-4,"T":25,"V":29,"W":16,"X":-4,"Y":18}},"B":{"d":"62,-25v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v30,-8,48,-3,85,-3v101,0,79,82,39,119v27,8,62,34,62,76v0,60,-69,76,-154,76v-9,0,-33,4,-24,-4v15,1,20,-6,21,-21xm163,-199v4,-38,-33,-78,-70,-56v2,32,-3,71,2,100v2,0,9,2,22,2v36,3,43,-18,46,-46xm188,-60v0,-39,-35,-95,-93,-84v-5,24,2,68,-2,101v-4,32,25,34,44,34v19,0,51,-10,51,-51","w":247,"k":{"v":14,"w":6,"y":12,"V":13,"W":5,"Y":11,"a":2,"b":6,"d":6,"e":6,"f":6,"h":6,"i":6,"k":6,"l":6,"n":6,"p":6,"r":6,"A":2,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5}},"C":{"d":"171,-262v-94,0,-116,49,-116,120v0,69,53,132,130,132v41,0,73,-16,76,-49v1,-6,7,-7,6,0v-1,7,-1,55,-17,57v-14,6,-42,8,-65,8v-141,0,-212,-137,-122,-244v33,-39,133,-44,199,-28v13,2,-3,50,2,61v0,5,-1,7,-3,7v-3,0,-3,-2,-3,-7v-2,-44,-36,-57,-87,-57","w":289,"k":{"t":2,"y":-6,"T":2,"Y":-5,"c":4,"g":4,"o":4,"q":4,"C":4,"O":4,"Q":4}},"D":{"d":"159,4v-39,0,-87,2,-121,-6v10,-4,24,-2,24,-23v0,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v37,-7,45,-3,95,-3v36,0,101,-3,144,41v18,19,35,48,35,91v0,45,-19,81,-39,102v-15,16,-48,41,-109,41xm122,-259v-12,0,-27,-2,-27,10r0,199v2,41,5,40,65,42v68,2,117,-46,115,-119v-2,-98,-75,-135,-153,-132","w":330,"k":{"m":2,"M":2,"a":4,"b":4,"d":4,"e":4,"f":4,"h":4,"i":4,"k":4,"l":4,"n":4,"p":4,"r":4,"A":4,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"j":4,"J":4}},"E":{"d":"190,-48v3,15,7,54,-22,50v-42,-6,-93,4,-130,-4v10,-4,24,-2,24,-23v0,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v36,-10,107,7,149,-6v3,6,-1,39,-6,48v-2,0,-2,-2,-2,-5v7,-32,-51,-25,-78,-26v-4,29,-3,77,0,107v18,-2,75,6,80,-11v3,5,-1,44,-5,53v-2,0,-3,-1,-3,-3v10,-33,-49,-25,-71,-27v-8,20,-3,63,-3,96v0,25,7,30,42,30v31,0,50,-9,54,-36","w":219,"k":{"v":-10,"w":-12,"x":-14,"y":-10,"V":-9,"W":-11,"X":-13,"Y":-9}},"F":{"d":"172,-110v7,-34,-49,-26,-75,-27v-8,20,-1,93,-1,112v0,20,19,20,33,23v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v38,-10,113,6,156,-6v3,6,-1,39,-6,48v-6,-13,-5,-30,-30,-30r-55,-1v-2,0,-4,1,-4,4r0,100v20,6,73,8,86,-8v1,16,-2,41,-5,54v-2,0,-3,-1,-3,-3","w":213,"k":{"y":-8,"Y":-7,"a":12,"A":11,",":36,".":36}},"G":{"d":"187,-9v18,0,48,-1,48,-21v0,-37,16,-107,-28,-99v-1,0,-3,-1,-3,-2v29,-8,46,1,81,-3v6,-1,8,4,3,5v-44,-1,-10,81,-27,119v-74,25,-124,30,-195,-22v-24,-17,-43,-58,-43,-103v-2,-96,73,-144,156,-141v43,2,60,5,88,13v0,5,-2,15,-2,51v0,11,-6,10,-6,2v0,-39,-33,-50,-92,-53v-58,-3,-118,41,-113,115v6,98,60,139,133,139","w":310},"H":{"d":"282,-244r1,219v-3,20,19,19,33,23v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v1,-19,6,-88,0,-118r-155,2r2,116v-3,20,19,20,33,23v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v29,-8,46,1,81,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22v1,28,-4,63,1,87r155,-2r0,-85v2,-19,-16,-20,-31,-24v30,-8,46,1,82,-3v6,-1,6,4,3,5v-15,0,-23,5,-23,22","w":345,"k":{"c":6,"g":6,"o":6,"q":6,"C":5,"O":9,"Q":9,"G":5}},"I":{"d":"95,-244r1,219v-3,20,19,20,33,23v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-20,-12,-21,-26,-24v25,-8,44,1,77,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22","w":158,"k":{"c":6,"g":6,"o":6,"q":6,"C":5,"O":9,"Q":9,"G":5}},"J":{"d":"12,89v38,-36,52,-40,52,-152r-1,-181v2,-19,-15,-20,-30,-24v29,-8,46,1,81,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22v0,18,-1,125,-1,164v0,113,-14,129,-80,171v-1,0,-2,-1,-2,-2","w":149,"k":{"c":4,"g":4,"o":4,"q":4,"O":4}},"K":{"d":"198,-258v1,-6,-6,-8,-8,-11v15,-3,47,-2,71,0v-53,12,-103,85,-141,118v29,28,115,127,152,142v12,6,21,3,27,7v-31,9,-77,2,-95,-20v-18,-12,-90,-99,-111,-117r2,114v-2,19,17,20,31,23v-31,8,-47,-1,-82,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v29,-8,46,1,80,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22r0,99v15,-19,91,-84,104,-113","w":270,"k":{"s":-2,"S":-2,"a":2,"A":2,"c":-1,"g":-1,"o":-1,"q":-1,"C":-1,"O":-1,"Q":-1,"G":-1}},"L":{"d":"202,-49v1,15,7,55,-26,51v-45,-5,-99,4,-138,-4v10,-4,24,-2,24,-23v0,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v30,-8,48,1,85,-3v6,-1,8,4,3,5v-16,0,-26,4,-26,22v0,9,-1,107,-1,141v0,84,-17,88,51,91v30,1,51,-8,53,-32v0,-3,2,-5,4,-5","w":213,"k":{"m":2,"t":24,"v":18,"w":10,"y":14,"M":2,"T":22,"V":16,"W":9,"Y":13,"a":-4,"A":-4,"c":9,"g":9,"o":9,"q":9,"C":9,"O":9,"G":9,"u":3,"U":2}},"M":{"d":"69,-35v-7,23,9,31,25,33v-23,8,-40,-1,-70,3v-7,1,-8,-5,-2,-5v19,2,23,-13,25,-31r26,-235v1,-8,6,-8,9,-1r110,227r106,-226v1,-3,2,-6,5,-6v3,0,4,3,5,10r24,221v1,13,4,33,19,38v12,5,22,0,27,5v-12,6,-66,4,-78,-3v3,-3,6,-6,4,-15r-17,-186r-2,0r-88,187v-14,26,-11,27,-23,3r-89,-186r-2,0","w":378,"k":{"t":8,"w":6,"y":5,"T":7,"W":5,"Y":4,"a":-8,"A":-7,"u":-1,"U":-1}},"N":{"d":"313,-269v-15,7,-26,5,-26,36r0,211v0,24,-1,26,-4,26v-72,-64,-147,-152,-214,-224r5,172v-1,45,11,40,35,46v-33,8,-40,-1,-79,3v-6,1,-8,-4,-3,-5v24,-1,25,-6,25,-48r1,-206v0,-14,1,-18,4,-18v24,20,174,188,213,229r-4,-183v4,-37,-16,-31,-35,-39v30,-4,50,-2,82,0","w":340,"k":{"c":6,"g":6,"o":6,"q":6,"C":5,"O":9,"Q":9,"G":5}},"O":{"d":"23,-135v0,-58,43,-141,142,-141v81,0,141,51,141,135v0,81,-56,147,-143,147v-99,0,-140,-76,-140,-141xm57,-145v0,84,50,137,115,137v32,0,100,-18,100,-123v0,-167,-215,-181,-215,-14","w":329,"k":{"m":4,"t":11,"v":4,"w":2,"x":10,"y":4,"M":4,"T":10,"V":4,"W":2,"X":9,"Y":4,"a":8,"b":12,"d":12,"e":12,"f":12,"h":12,"i":12,"k":12,"l":12,"n":12,"p":12,"r":12,"A":7,"B":11,"D":11,"E":11,"F":11,"H":11,"I":11,"K":11,"L":11,"N":11,"P":11,"R":11,"j":8,"J":7}},"P":{"d":"112,-260v-9,0,-18,-2,-18,9r1,226v-3,20,20,20,34,23v-34,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v32,-8,51,-3,92,-3v45,0,61,15,67,20v47,48,-9,150,-83,126v0,-3,2,-3,10,-3v59,-3,85,-67,42,-114v-18,-20,-41,-18,-49,-18","w":231,"k":{"s":-2,"S":-2,"a":18,"b":6,"d":6,"e":6,"f":6,"h":6,"i":6,"k":6,"l":6,"n":6,"p":6,"r":6,"A":16,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,",":58,".":58}},"Q":{"d":"546,47v-20,17,-62,26,-117,29v-60,4,-152,-51,-209,-82v-13,7,-37,12,-56,12v-100,0,-141,-76,-141,-141v0,-58,43,-141,142,-141v81,0,141,51,141,135v0,63,-39,106,-63,121r73,38v79,41,134,42,152,42v19,1,50,-7,76,-15v1,0,2,1,2,2xm57,-145v0,84,50,137,115,137v32,0,100,-18,100,-123v0,-167,-215,-181,-215,-14","w":331,"k":{"b":10,"d":10,"e":10,"f":10,"h":10,"i":10,"k":10,"l":10,"n":10,"p":10,"r":10,"B":9,"D":9,"E":9,"F":9,"H":9,"I":9,"K":9,"L":9,"N":9,"P":9,"R":9,")":-11,"]":-11,"}":-11}},"R":{"d":"39,-271v81,4,173,-19,173,65v0,27,-11,53,-43,83v48,54,68,111,136,121v-14,7,-61,3,-73,-4v-29,-17,-62,-81,-92,-108r-45,-1v-6,20,0,78,0,90v0,20,19,20,33,23v-34,8,-46,-1,-84,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v0,-2,2,-3,6,-3xm120,-260v-14,0,-24,0,-27,7r0,118v3,10,22,9,40,10v34,1,48,-25,49,-63v0,-45,-23,-72,-62,-72","w":271,"k":{"s":4,"t":20,"v":10,"w":1,"x":2,"y":8,"S":4,"T":18,"V":9,"W":1,"X":2,"Y":7,"a":-2,"A":-2,"c":-6,"g":-6,"o":-6,"q":-6,"C":-5,"O":-5,"Q":-5,"G":-5}},"S":{"d":"165,-222v-12,-23,-2,-42,-53,-42v-25,0,-44,16,-44,42v-5,21,25,47,54,69v42,33,52,55,52,84v0,15,-5,42,-30,60v-15,11,-36,15,-55,15v-19,0,-53,2,-53,-23v0,-23,-2,-36,4,-44v2,0,3,1,3,4v-1,34,26,50,54,50v35,0,52,-25,52,-48v0,-28,-31,-57,-58,-78v-38,-31,-47,-54,-47,-78v0,-56,66,-76,121,-60v8,5,0,12,2,41v0,6,0,8,-2,8","k":{"m":3,"v":1,"M":3,"V":1}},"T":{"d":"21,-276v60,11,154,8,214,2v5,11,1,43,-1,49v-8,-16,-2,-30,-48,-30r-45,-1r2,231v-3,20,19,20,33,23v-34,8,-48,-1,-86,3v-5,1,-7,-4,-3,-5v15,1,21,-6,22,-21v4,-60,1,-162,2,-231r-54,1v-32,-3,-35,13,-46,26v-5,-8,6,-41,10,-47","w":248,"k":{"m":6,"s":14,"t":-5,"w":-3,"x":-7,"y":-9,"M":5,"S":4,"T":-4,"W":-2,"X":-6,"Y":-8,"a":25,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"A":16,"c":10,"g":10,"o":10,"q":10,"C":9,"O":11,",":41,".":41,"G":9,":":11,";":11,"-":11}},"U":{"d":"156,-8v73,0,77,-77,77,-159r0,-77v0,-19,-16,-20,-31,-24v27,-8,43,1,74,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22v0,86,17,174,-34,223v-25,24,-53,27,-74,27v-12,0,-48,-1,-74,-25v-43,-13,-33,-174,-33,-225v0,-19,-15,-20,-30,-24v29,-8,48,1,83,-3v6,-1,6,4,3,5v-15,0,-23,5,-23,22r0,128v0,78,25,108,81,108","w":298,"k":{"m":6,"M":6,"a":7,"b":11,"d":11,"e":11,"f":11,"h":11,"i":11,"k":11,"l":11,"n":11,"p":11,"r":11,"A":6}},"V":{"d":"85,-269v-3,7,-26,2,-22,12r79,214v21,-48,67,-175,77,-200v8,-20,-4,-23,-19,-25v24,-6,50,-2,78,-1v-18,9,-26,2,-42,41r-87,207v-16,36,-15,38,-28,5r-88,-221v-8,-28,-22,-24,-42,-32v34,-4,59,-2,94,0","w":267,"k":{"y":-4,"Y":-4,"a":30,"A":27,"c":2,"g":2,"o":2,"q":2,"O":2,",":52,".":52,")":-9,"]":-9,"}":-9,"-":7}},"W":{"d":"88,-269v-4,8,-24,-1,-22,14v4,44,46,169,55,207r77,-205v9,-26,10,-21,18,0r71,204r2,0r55,-183v8,-28,6,-29,-20,-37v31,-4,48,-2,77,0v-1,6,-8,2,-15,5v-11,4,-16,19,-23,39r-67,200v-14,39,-15,43,-26,12r-71,-200r-75,200v-13,29,-14,27,-25,-9r-64,-214v-7,-29,-20,-25,-39,-33v37,-4,53,-2,92,0","w":396,"k":{"m":10,"t":8,"y":-4,"M":9,"T":7,"Y":-4,"a":22,"A":20,",":40,".":40,")":-4,"]":-4,"}":-4,":":-5,";":-5}},"X":{"d":"185,-258v2,-10,-18,-5,-20,-11v26,-3,46,-2,74,0v-17,7,-28,12,-43,34r-58,87v27,28,60,145,113,146v-19,7,-57,4,-74,-1v2,-4,8,-3,4,-12v-19,-35,-40,-72,-62,-108v-20,37,-45,69,-61,111v-1,9,13,4,15,11v-23,3,-47,2,-75,0v18,-8,30,-8,47,-34r65,-103r-58,-97v-10,-18,-20,-31,-43,-31v-2,0,-3,-2,-3,-3v27,-4,57,-2,88,0v-2,7,-20,0,-17,10v10,38,33,62,52,98v14,-23,54,-75,56,-97","w":249,"k":{"t":11,"w":-4,"x":-4,"y":-5,"T":10,"W":-4,"X":-4,"Y":-5,"a":8,"A":7,"c":8,"g":8,"o":8,"q":8,"C":7,"O":7,"Q":7,"G":7}},"Y":{"d":"81,-4v36,1,23,-52,23,-88v0,-19,-3,-28,-8,-38v-19,-21,-59,-128,-104,-136v-2,0,-3,-1,-3,-3v23,-3,47,-2,75,0v-7,4,-13,11,-5,24r66,114v11,-27,60,-95,66,-124v2,-9,-9,-9,-11,-14v19,-3,46,-2,69,0v-50,7,-89,105,-109,141v-11,20,-5,41,-6,67v-1,22,-3,67,32,57v2,0,3,1,3,2v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5","w":235,"k":{"m":3,"t":-2,"v":-9,"w":-11,"x":-5,"M":3,"T":-2,"V":-8,"W":-10,"X":-4,"a":18,"A":16,"c":14,"g":14,"o":14,"q":14,"C":4,"O":7,",":36,".":36,"G":4,")":-13,"]":-13,"}":-13,"-":11}},"Z":{"d":"35,-214v-5,-8,3,-50,9,-60v64,11,125,-3,185,7r-163,253r98,0v55,0,55,-13,67,-43v6,13,2,58,-15,59v-60,0,-120,-2,-183,-2v-4,0,-7,0,-7,-3r163,-253v-55,3,-140,-15,-150,35v-1,5,-2,7,-4,7","w":249,"k":{"a":4,"A":4,"c":12,"g":12,"o":12,"q":12,"O":11}},"[":{"d":"35,39r0,-302v0,-4,1,-5,6,-5v21,2,50,-4,66,3v-10,7,-33,3,-46,10v-5,78,0,171,-2,253v0,15,0,26,2,34v13,7,35,3,45,10v-15,8,-45,1,-65,3v-5,0,-6,-1,-6,-6","w":129,"k":{"v":-8,"w":-3,"y":-12}},"\\":{"d":"181,-7v3,8,-11,14,-15,11r-158,-259v4,-1,10,-9,15,-5","w":188},"]":{"d":"95,-262r0,302v0,4,-1,5,-6,5v-21,-2,-50,4,-66,-3v9,-7,33,-3,45,-10v6,-87,4,-198,0,-287v-13,-7,-35,-3,-45,-10v15,-8,45,-1,66,-3v5,0,6,1,6,6","w":129},"^":{"d":"82,-270r19,0r72,153r-20,0r-61,-134r-62,134r-19,0","w":183},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"30,-33r74,-191v7,-17,9,-15,15,-1v6,13,56,140,76,186v16,38,21,28,44,38v-9,5,-47,2,-69,-1v2,-3,8,-3,5,-10v-11,-23,-17,-52,-31,-72v-25,1,-55,-3,-76,2v-7,22,-20,46,-23,70v-1,10,14,5,17,11v-21,4,-44,2,-71,0v16,-7,31,-10,39,-32xm74,-99v15,4,50,3,66,0r-31,-84v-2,-5,-3,-5,-5,0","w":224},"b":{"d":"33,-1v42,-10,23,-82,23,-141v0,-48,0,-56,-1,-66v2,-18,-15,-15,-26,-20v20,-5,51,-2,79,-2v91,0,74,70,34,100v24,7,56,29,56,64v0,55,-65,78,-140,66v-8,-1,-21,4,-25,-1xm148,-171v4,-30,-31,-63,-65,-45v2,27,-3,61,2,84v34,5,67,-4,63,-39xm84,-36v-5,26,21,27,38,27v21,0,46,-8,46,-47v0,-27,-32,-77,-83,-65v-6,14,0,77,-1,85","w":221,"k":{"v":12,"w":5,"y":10,"a":2,"b":11,"d":11,"e":11,"f":11,"h":11,"i":11,"k":11,"l":11,"n":11,"p":11,"r":11}},"c":{"d":"150,-222v-80,-1,-99,41,-99,101v0,59,46,111,114,111v36,0,60,-13,64,-40v1,-5,6,-6,6,0v-2,5,-2,47,-15,48v-13,5,-36,7,-57,7v-86,0,-145,-56,-143,-123v2,-55,46,-123,132,-117v25,2,63,4,82,12v-2,18,2,42,-5,55v-6,-38,-29,-54,-79,-54","w":254,"k":{"t":2,"y":-5,"c":3,"g":3,"o":3,"q":3}},"d":{"d":"141,4v-35,0,-76,1,-108,-5v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v106,-2,237,-16,237,112v0,39,-16,68,-34,86v-14,14,-42,36,-96,36xm108,-219v-10,0,-23,-2,-23,8r0,169v3,34,5,32,56,34v57,2,101,-38,99,-100v-2,-84,-64,-113,-132,-111","w":291,"k":{"m":2,"a":3,"b":3,"d":3,"e":3,"f":3,"h":3,"i":3,"k":3,"l":3,"n":3,"p":3,"r":3,"j":3}},"e":{"d":"46,-5v22,-22,9,-158,9,-203v0,-14,-8,-19,-24,-17v-3,-2,-4,-5,3,-5v43,0,92,3,131,-3v1,6,0,34,-6,41v-2,0,-2,-1,-2,-4v7,-28,-48,-19,-71,-21v-2,26,-2,65,0,89v16,-2,68,5,73,-9v4,11,0,35,-5,45v-1,0,-2,-1,-2,-3v8,-28,-48,-18,-65,-21v-6,18,2,53,-2,80v-4,32,42,26,69,22v11,-2,10,-20,18,-26v3,12,5,49,-20,42v-39,-2,-84,2,-119,-3v0,-4,9,-3,13,-4","w":198,"k":{"v":-8,"w":-10,"x":-12,"y":-8}},"f":{"d":"46,-5v22,-22,9,-158,9,-203v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5r137,-3v3,1,0,50,-8,37v2,-30,-49,-18,-76,-21v-4,24,-3,66,0,90v26,-2,64,5,76,-10v3,5,-2,38,-5,46v-2,0,-2,-2,-2,-3v7,-29,-49,-19,-69,-21v-6,18,0,79,-1,93v-2,19,19,15,28,21v-32,4,-49,2,-81,0v0,-4,9,-3,13,-4","w":192,"k":{"y":-6,"a":10,",":33,".":33}},"g":{"d":"164,-9v15,0,38,0,41,-15v-5,-31,16,-92,-25,-85v-1,0,-2,-1,-2,-2v26,-8,41,1,73,-3v6,-1,6,4,3,5v-33,-2,-20,50,-20,84v0,14,-1,14,-5,16v-87,39,-206,-1,-209,-106v-3,-112,122,-138,215,-109v0,4,-2,13,-2,44v1,8,-6,8,-5,1v-6,-31,-27,-40,-81,-43v-49,-2,-101,32,-97,96v5,83,51,117,114,117","w":273},"h":{"d":"107,-228v-8,6,-22,1,-22,20r1,75v43,-2,95,4,134,-2r0,-73v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v23,1,52,-3,72,2v-5,6,-21,1,-21,20v0,27,-2,152,1,186v-4,19,18,15,28,21v-31,3,-50,2,-81,0v7,-6,21,-2,21,-21r0,-98v-43,2,-95,-4,-134,2r1,96v-3,19,19,15,28,21v-32,4,-49,2,-81,0v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v24,1,53,-3,73,2","w":304,"k":{"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"c":5,"g":5,"o":5,"q":5}},"i":{"d":"107,-228v-8,6,-22,1,-22,20r1,186v-3,19,19,15,28,21v-32,4,-49,2,-81,0v6,-6,23,-1,21,-21v3,-34,1,-158,1,-186v0,-18,-14,-14,-22,-20v17,-4,53,-3,74,0","w":140,"k":{"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"c":5,"g":5,"o":5,"q":5}},"j":{"d":"107,-228v-8,6,-22,1,-22,20r0,140v2,96,-13,110,-72,145v-1,0,-3,-1,-3,-2v34,-30,46,-33,46,-128r-1,-155v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v24,1,53,-3,73,2","w":132,"k":{"c":3,"g":3,"o":3,"q":3}},"k":{"d":"85,-123v13,-16,78,-73,91,-96v2,-8,-13,-6,-4,-11v19,1,43,-3,59,2v-47,11,-89,70,-122,99v35,28,97,121,152,125v2,0,4,2,4,3v-30,6,-66,2,-84,-17v-15,-11,-80,-83,-97,-100r1,96v-3,18,17,16,27,21v-29,3,-50,2,-79,0v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v23,1,52,-3,72,2v-6,6,-22,1,-22,20","w":239,"k":{"s":-2,"a":2,"c":-1,"g":-1,"o":-1,"q":-1}},"l":{"d":"182,-42v2,14,9,48,-23,44v-41,-5,-88,2,-126,-3v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v25,1,55,-3,76,2v-9,5,-25,1,-25,20r0,121v4,75,-14,72,48,76v30,2,42,-11,49,-31","w":192,"k":{"m":2,"t":20,"v":15,"w":8,"y":12,"a":-3,"c":8,"g":8,"o":8,"q":8,"u":2}},"m":{"d":"61,-14v-2,12,18,7,22,12v-19,7,-36,-1,-62,3v-5,1,-7,-5,-2,-5v16,1,20,-10,22,-26r23,-199v0,-8,7,-7,10,-1r96,190r92,-190v4,-7,8,-7,9,4r22,187v1,11,3,27,16,32v11,4,20,0,23,5v-8,7,-58,2,-69,-2v3,-3,4,-3,3,-13r-15,-155r-77,156v-11,22,-12,23,-22,2r-77,-154r-2,0","w":332,"k":{"t":6,"w":5,"y":4,"a":-6,"u":-1}},"n":{"d":"280,-228v-12,6,-23,3,-23,30r0,179v-2,41,0,21,-27,4r-164,-170r3,144v-2,40,13,32,31,40v-30,4,-44,2,-75,0v16,-9,24,0,24,-43r0,-175v-1,-25,10,-14,17,-6r175,183r-3,-153v2,-28,-8,-30,-28,-30v-2,0,-2,-2,-2,-3v17,-4,51,-3,72,0","w":299,"k":{"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"c":5,"g":5,"o":5,"q":5}},"o":{"d":"20,-115v0,-49,38,-120,125,-120v71,0,126,44,126,115v0,68,-51,125,-127,125v-87,0,-124,-65,-124,-120xm53,-123v0,71,43,115,100,115v28,0,85,-14,85,-103v0,-142,-185,-152,-185,-12","w":290,"k":{"m":3,"t":9,"v":3,"w":2,"x":9,"y":3,"a":6,"b":10,"d":10,"e":10,"f":10,"h":10,"i":10,"k":10,"l":10,"n":10,"p":10,"r":10,"j":6}},"p":{"d":"54,-22v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v42,-1,135,-2,142,17v44,42,-11,131,-78,106v0,-3,2,-3,8,-3v56,-2,82,-55,41,-96v-24,-24,-37,-14,-61,-12v-6,53,-1,141,-1,196v0,19,19,15,29,21v-32,3,-49,2,-81,0v6,-6,23,-1,21,-21","w":210,"k":{"s":-2,"a":15,"b":5,"d":5,"e":5,"f":5,"h":5,"i":5,"k":5,"l":5,"n":5,"p":5,"r":5,",":53,".":53}},"q":{"d":"481,40v-60,33,-162,34,-235,-16r-52,-28v-12,6,-33,9,-50,9v-87,0,-125,-65,-125,-120v0,-49,39,-120,126,-120v71,0,125,44,125,115v0,54,-34,90,-55,103r64,32v114,46,115,43,200,23v1,0,2,1,2,2xm52,-123v0,71,43,115,100,115v28,0,86,-15,86,-103v0,-141,-186,-152,-186,-12","w":291,"k":{"b":8,"d":8,"e":8,"f":8,"h":8,"i":8,"k":8,"l":8,"n":8,"p":8,"r":8,")":-10,"]":-10,"}":-10}},"r":{"d":"153,-105v40,42,58,95,113,101v2,0,3,2,3,3v-78,22,-106,-57,-139,-94v-13,-1,-36,-4,-47,0r2,73v-3,19,18,15,29,21v-32,3,-49,2,-81,0v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v70,3,158,-17,158,55v0,23,-9,45,-39,70xm108,-220v-12,0,-23,-1,-25,6r0,98v3,10,21,9,37,9v29,0,43,-19,43,-52v0,-38,-21,-61,-55,-61","w":241,"k":{"s":3,"t":17,"v":8,"w":1,"x":2,"y":6,"a":-2,"c":-5,"g":-5,"o":-5,"q":-5}},"s":{"d":"144,-189v-11,-20,-5,-34,-49,-34v-23,0,-42,11,-42,33v-4,19,23,41,50,58v39,26,52,48,52,74v0,33,-37,69,-80,63v-18,-3,-51,3,-51,-20v0,-19,-1,-31,5,-37v2,0,3,0,3,3v-2,31,26,42,51,42v31,0,47,-18,47,-41v0,-44,-110,-83,-99,-129v-5,-53,70,-69,117,-51v0,1,-1,12,-1,33v0,5,-1,6,-3,6","w":188,"k":{"m":3,"v":1,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7}},"t":{"d":"18,-235v52,9,136,6,190,2v6,7,-1,61,-5,34v4,-20,-51,-17,-78,-17r1,194v-3,18,19,15,30,21v-32,3,-52,2,-83,0v7,-6,22,-2,22,-21r1,-194r-46,0v-30,-2,-31,11,-40,23v-5,-6,5,-35,8,-42","w":219,"k":{"m":5,"s":4,"t":-4,"w":-2,"x":-6,"y":-7,"a":15,"c":8,"g":8,"o":8,"q":8,",":38,".":38,":":10,";":10,"-":10}},"u":{"d":"140,-8v63,0,67,-64,67,-134v0,-48,-1,-56,-1,-66v0,-18,-15,-15,-26,-20v17,-4,50,-3,71,0v-6,5,-25,2,-22,20v-4,75,15,150,-30,191v-22,21,-47,22,-66,22v-10,0,-44,-1,-66,-22v-36,-10,-26,-148,-28,-191v-1,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v24,1,53,-3,73,2v-5,6,-23,1,-21,20v-2,4,-1,81,-1,109v0,67,22,91,71,91","w":263,"k":{"m":5,"a":6}},"v":{"d":"75,-228v-2,7,-21,0,-18,9r68,180v18,-41,60,-145,67,-167v9,-17,-5,-18,-16,-22v15,-4,49,-3,68,0v-14,8,-22,1,-36,34v-26,65,-56,142,-90,199v-4,0,-6,-4,-12,-19r-78,-187v-9,-21,-14,-23,-34,-24v-2,0,-2,-2,-2,-3v20,-4,59,-3,83,0","w":235,"k":{"y":-3,"a":24,"c":2,"g":2,"o":2,"q":2,",":48,".":48,")":-8,"]":-8,"}":-8,"-":6}},"w":{"d":"78,-228v-3,7,-20,-2,-19,11v5,35,40,144,48,173r67,-171v9,-22,10,-18,17,0r63,171v9,-33,43,-123,51,-172v4,-8,-14,-6,-20,-12v16,-4,47,-2,68,-1v0,6,-7,3,-14,5v-9,3,-14,15,-20,32v-14,39,-45,137,-58,171v-12,33,-14,36,-24,10r-62,-167v-11,27,-53,139,-65,167v-11,25,-14,23,-24,-8r-56,-182v-4,-26,-18,-20,-34,-27v20,-4,58,-3,82,0","w":348,"k":{"m":8,"t":6,"y":-3,"a":18,",":36,".":36,")":-3,"]":-3,"}":-3,":":-5,";":-5}},"x":{"d":"162,-220v1,-8,-16,-2,-17,-8v15,-4,48,-3,66,0v-15,6,-25,9,-38,28r-51,74v22,22,53,122,96,122v3,1,3,5,-2,5v-21,-1,-47,2,-62,-3v1,-5,8,-3,4,-11r-54,-91v-17,32,-39,58,-52,94v-2,7,23,5,10,11r-61,0v-3,0,-2,-1,-2,-2v13,-8,26,-7,40,-29r57,-87r-51,-82v-7,-20,-24,-23,-40,-29v19,-4,56,-3,79,0v0,6,-16,-2,-16,8v13,30,27,52,45,82v12,-21,47,-64,49,-82","w":219,"k":{"t":9,"w":-3,"x":-3,"y":-4,"a":6,"c":6,"g":6,"o":6,"q":6}},"y":{"d":"72,-4v30,1,20,-44,20,-74v0,-17,-2,-23,-7,-32v-17,-17,-51,-109,-90,-115v-4,0,-6,-5,0,-5v20,1,46,-3,63,2v-8,2,-12,11,-4,20r57,95v9,-23,53,-79,57,-104v2,-7,-9,-8,-9,-12v16,-2,43,-2,62,0v-9,8,-26,7,-35,23v-20,37,-79,87,-65,154v-1,18,-2,57,27,48v2,0,3,2,3,3v-32,3,-50,2,-81,0v0,-1,0,-3,2,-3","w":207,"k":{"m":3,"t":-2,"v":-7,"w":-9,"x":-4,"a":15,"c":3,"g":3,"o":3,"q":3,",":33,".":33,")":-12,"]":-12,"}":-12,"-":10}},"z":{"d":"206,-49v3,13,2,50,-14,50v-53,0,-107,-1,-162,-1v-10,0,-6,-3,-1,-12r138,-205v-47,3,-121,-14,-130,29v-1,6,-6,10,-6,2v1,-6,3,-40,9,-47v56,10,111,-4,164,6r-142,214r84,0v50,2,46,-13,60,-36","w":219,"k":{"a":3,"c":10,"g":10,"o":10,"q":10}},"{":{"d":"73,-218v0,51,2,77,-25,92v21,15,25,36,25,83v0,69,14,74,35,86v0,1,-2,2,-7,2v-33,-10,-58,-34,-55,-107v0,-11,2,-26,2,-38v0,-20,-18,-17,-28,-23v0,-2,0,-4,4,-4v36,7,22,-41,22,-63v-2,-51,27,-78,61,-76v-12,7,-34,12,-34,48","w":129,"k":{"v":-8,"w":-3,"y":-12}},"|":{"d":"102,90r-20,0r0,-360r20,0r0,360","w":183},"}":{"d":"57,-43v0,-43,2,-70,24,-83v-25,-14,-24,-42,-24,-92v0,-36,-22,-41,-35,-48v34,-3,66,26,62,76v-2,24,-12,72,21,63v6,0,6,7,0,6v-32,-1,-23,31,-21,59v2,75,-21,96,-56,107v-5,0,-6,-1,-6,-2v20,-11,35,-16,35,-86","w":129},"~":{"d":"161,-114v-2,76,-70,26,-106,18v-10,0,-15,7,-15,24r-18,0v0,-75,72,-29,107,-19v10,0,15,-8,15,-23r17,0","w":183},"'":{"d":"36,-187v-6,-18,-13,-85,-15,-80v0,-5,6,-5,15,-5v9,0,15,0,15,5","w":72},"`":{"d":"138,-338v6,10,31,24,47,37v-12,5,-69,-19,-78,-25v7,-6,24,-8,31,-12","w":327},"\u00a0":{"w":117}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2000 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Trajan is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * TrajanPro-Bold
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Trajan Pro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 6 2 5 5 6 2 3 1","ascent":"270","descent":"-90","x-height":"5","cap-height":"1","bbox":"-22.9842 -352 550 94","underline-thickness":"18","underline-position":"-18","stemh":"17","stemv":"42","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"58,6v-27,-1,-27,-39,0,-41v12,0,20,8,20,20v0,12,-8,21,-20,21xm57,-59v-19,-53,-8,-129,-25,-185v8,-19,28,-29,48,-32v8,8,-2,18,-3,51v-4,15,-10,155,-20,166","w":115},"\"":{"d":"39,-180v-7,-20,-16,-93,-18,-86v0,-5,7,-6,18,-6v11,0,19,1,19,6xm90,-180v-7,-20,-16,-93,-18,-86v0,-5,7,-6,18,-6v11,0,19,1,19,6","w":129},"#":{"d":"206,-166r-43,0r-8,54r40,0r0,30r-44,0r-12,82r-21,0r11,-82r-54,0r-13,82r-21,0r12,-82r-43,0r0,-30r47,0r9,-54r-45,0r0,-29r48,0r12,-76r22,0r-12,76r54,0r12,-76r21,0r-11,76r39,0r0,29xm141,-166r-54,0r-8,54r55,0"},"$":{"d":"185,-257v-2,11,0,40,-8,44v-7,-9,1,-23,-14,-34v-6,-7,-19,-11,-25,-11r-11,97v36,24,60,47,60,87v0,55,-50,74,-78,74v-3,14,3,36,-18,34v-5,-7,2,-24,1,-34v-11,-2,-60,-1,-57,-23v2,-28,1,-43,10,-52v7,9,-1,32,13,42v10,11,26,16,36,16r11,-106v-40,-30,-59,-51,-59,-85v0,-44,44,-65,77,-65v1,-15,1,-41,21,-33r-4,33v23,3,42,0,45,16xm111,-171r10,-87v-13,0,-42,6,-42,40v0,20,15,33,32,47xm121,-112r-9,95v24,-1,41,-20,41,-46v0,-22,-14,-37,-32,-49"},"%":{"d":"232,0v-91,-4,-84,-130,3,-132v91,4,84,130,-3,132xm234,-12v22,0,34,-22,34,-52v0,-27,-13,-56,-35,-56v-23,0,-34,24,-34,52v0,26,14,56,35,56xm115,-3v-3,9,-18,4,-26,7v-5,1,-6,0,-4,-4v36,-80,111,-254,115,-262v-22,3,-75,3,-79,6v40,29,28,122,-44,118v-91,-4,-83,-132,4,-132v65,0,127,-10,141,-7xm78,-150v22,0,35,-21,35,-51v0,-27,-13,-56,-35,-56v-23,0,-34,23,-34,51v0,26,13,56,34,56","w":312},"&":{"d":"236,-53v37,30,51,40,89,48v3,0,5,0,5,3v-44,7,-92,6,-124,-25v-12,11,-36,33,-85,33v-77,0,-100,-48,-100,-79v0,-42,37,-76,59,-86v-40,-56,-20,-117,69,-117v22,0,46,0,49,17v-2,17,0,47,-8,52v-4,-27,-15,-55,-53,-53v-15,0,-38,10,-38,41v0,57,89,120,123,155v12,-15,32,-79,-7,-78v-2,0,-5,-1,-5,-3v8,-6,53,-5,61,6v0,28,-14,62,-35,86xm192,-38v-43,-38,-73,-68,-103,-107v-12,9,-25,26,-25,55v0,45,32,73,69,73v28,0,51,-14,59,-21","w":298},"(":{"d":"108,-266v-17,25,-52,77,-53,150v0,72,24,118,53,157v0,2,-2,3,-3,3v-32,-21,-84,-74,-84,-155v0,-82,57,-140,84,-158v1,0,3,2,3,3","w":129,"k":{"v":-11,"w":-4,"y":-11,"V":-11,"W":-4,"Y":-11}},")":{"d":"22,41v17,-25,51,-77,52,-150v1,-73,-25,-117,-52,-157v0,-2,1,-3,2,-3v34,20,85,74,85,155v0,81,-57,142,-85,158v-1,0,-2,-2,-2,-3","w":129},"*":{"d":"86,-184v-10,-6,-14,-32,-19,-44v-7,5,-12,29,-15,39v-5,9,-30,-4,-28,-6v-1,-15,41,-29,36,-39v-12,-1,-30,-1,-38,1v-3,0,-4,-18,-4,-26v0,-4,0,-5,4,-5v14,-2,38,30,44,23v-2,-17,-11,-31,-13,-40v1,-4,28,-16,30,-6v3,9,-14,37,-10,48v21,-7,28,-19,38,-25v2,0,13,27,5,31v-2,1,-35,-2,-44,0v6,13,28,25,36,30v0,5,-18,19,-22,19","w":136},"+":{"d":"183,-80r-73,0r0,73r-23,0r0,-73r-73,0r0,-22r73,0r0,-74r23,0r0,74r73,0r0,22","w":197},",":{"d":"28,47v-7,-10,15,-32,10,-41v0,-21,-15,-27,-15,-32v0,-13,16,-24,27,-24v34,24,3,73,-22,97","w":90},"-":{"d":"27,-113r102,0v6,0,12,1,12,5v-21,18,-101,15,-125,31v-5,-6,-4,-37,11,-36","w":153},".":{"d":"45,0v-30,-1,-29,-42,0,-44v12,0,22,8,22,21v0,13,-8,23,-22,23","w":90},"\/":{"d":"24,5v-5,6,-23,-5,-18,-13r165,-266v5,-6,18,3,18,10","w":195},"0":{"d":"201,-143v0,89,-34,149,-96,149v-71,0,-90,-82,-90,-133v0,-84,29,-149,96,-149v71,0,90,76,90,133xm112,-10v64,0,64,-251,-9,-250v-27,0,-46,37,-46,119v0,62,15,131,55,131"},"1":{"d":"37,-211v8,-11,74,-52,97,-65v10,22,-4,194,3,249v-4,25,31,15,42,25v-49,8,-68,-1,-128,3v-8,2,-7,-7,-3,-7v16,-1,48,2,43,-21v3,-44,2,-132,2,-186v0,-9,-1,-13,-6,-13v-11,-2,-41,27,-50,15"},"2":{"d":"202,-62v-7,19,5,74,-42,62r-141,0v-9,-2,-5,-10,2,-14v50,-44,122,-101,122,-177v0,-57,-31,-68,-49,-68v-29,0,-53,23,-53,47v0,4,-1,7,-5,7v-7,-5,-3,-34,-5,-50v10,-17,34,-21,69,-21v63,0,90,35,90,77v0,70,-77,130,-123,167v-2,1,-2,3,0,3v48,-3,123,9,128,-34v1,-4,2,-6,4,-6v3,0,3,3,3,7"},"3":{"d":"77,-148v18,-12,61,-17,63,-67v0,-15,-11,-44,-48,-44v-33,0,-49,21,-53,44v-4,-11,-12,-42,-1,-48v12,-6,34,-13,64,-13v69,0,82,36,82,53v0,36,-40,58,-53,66v27,6,64,27,64,71v0,50,-44,92,-114,92v-33,0,-55,0,-60,-19v2,-21,-2,-44,6,-51v2,0,4,2,4,5v0,23,18,47,54,47v36,0,65,-18,65,-61v0,-48,-43,-65,-61,-68v-9,-2,-12,-4,-12,-7"},"4":{"d":"163,-71v1,27,-7,73,32,65v2,0,4,1,4,4v-37,8,-59,-1,-106,3v-7,2,-8,-7,-3,-7v16,1,38,-3,34,-21v1,-16,1,-32,1,-44r-111,0v-12,2,-9,-11,-4,-15v11,-9,133,-185,149,-190v11,42,0,117,4,177v17,4,45,-9,48,1v-2,6,-3,27,-16,27r-32,0xm125,-99r-1,-111v-8,12,-68,95,-80,111r81,0"},"5":{"d":"28,-14v1,-14,-3,-44,6,-52v3,0,3,2,3,6v0,39,24,48,49,48v29,0,59,-19,59,-66v0,-58,-63,-81,-91,-85v-4,-1,-6,-2,-6,-7r8,-95v0,-4,3,-5,7,-5v38,-2,81,2,116,-3v8,11,1,25,-2,53v0,2,0,5,-3,5v-8,-11,1,-25,-35,-25r-66,0r-5,44v54,9,120,38,120,101v0,48,-35,101,-119,101v-17,0,-42,0,-41,-20"},"6":{"d":"82,-138v-3,-16,27,-21,48,-21v51,0,74,41,74,73v0,56,-41,92,-94,92v-55,0,-95,-38,-95,-103v0,-71,58,-153,141,-179v2,0,5,1,5,3v0,3,-5,6,-9,8v-42,24,-92,82,-92,168v0,42,18,87,54,87v25,0,46,-18,46,-60v0,-63,-35,-81,-78,-68"},"7":{"d":"171,-237v-52,5,-129,-17,-139,28v0,3,-2,5,-4,5v-7,-13,2,-63,6,-70v28,8,135,-1,173,7v-32,53,-94,188,-94,251v0,7,-30,22,-46,22v-4,0,-5,-1,-5,-4v11,-57,55,-142,109,-239"},"8":{"d":"105,6v-53,0,-90,-26,-90,-70v0,-40,31,-67,66,-81v-72,-29,-75,-131,33,-131v44,0,74,20,74,55v0,38,-33,59,-53,67v26,14,66,35,66,80v0,42,-36,80,-96,80xm56,-67v0,32,23,57,52,57v28,0,51,-22,51,-55v0,-36,-29,-52,-61,-71v-19,11,-42,32,-42,69xm150,-218v0,-27,-17,-43,-39,-43v-31,0,-44,23,-44,43v0,22,15,37,48,55v10,-5,35,-19,35,-55"},"9":{"d":"135,-147v8,16,-28,24,-46,24v-52,0,-74,-39,-74,-69v0,-49,37,-84,92,-84v59,0,91,43,91,98v0,103,-86,167,-139,186v-1,0,-4,-1,-4,-3v0,-3,3,-5,5,-6v37,-23,93,-82,93,-167v0,-64,-26,-92,-54,-92v-26,0,-44,23,-44,54v0,73,45,77,80,59"},":":{"d":"45,-11v-30,-1,-29,-42,0,-44v12,0,22,8,22,21v0,13,-8,23,-22,23xm45,-132v-30,-1,-29,-42,0,-44v12,0,22,7,22,20v0,13,-9,24,-22,24","w":90},";":{"d":"28,43v-7,-9,16,-32,10,-41v0,-21,-15,-26,-15,-31v0,-13,16,-25,27,-25v34,24,4,73,-22,97xm45,-132v-30,-1,-29,-43,0,-44v12,0,22,7,22,20v0,13,-9,24,-22,24","w":90},"<":{"d":"183,-7r-169,-72r0,-25r169,-72r0,24r-141,61r141,60r0,24","w":197},"=":{"d":"183,-114r-169,0r0,-22r169,0r0,22xm183,-46r-169,0r0,-22r169,0r0,22","w":197},">":{"d":"183,-79r-169,72r0,-24r142,-60r-142,-61r0,-24r169,72r0,25","w":197},"?":{"d":"22,-256v9,-15,32,-20,68,-20v59,0,76,32,76,54v0,56,-65,88,-79,134v-3,9,13,22,5,28v-14,-7,-50,-29,-27,-52v24,-24,55,-72,55,-103v0,-21,-10,-45,-43,-45v-37,0,-41,29,-50,51v-7,-5,-3,-28,-5,-47xm84,6v-27,-1,-27,-39,0,-41v12,0,20,8,20,20v0,12,-8,21,-20,21","w":191},"@":{"d":"302,-148v0,53,-44,104,-98,107v-21,2,-31,-26,-26,-55v-18,25,-42,54,-65,54v-17,0,-23,-18,-23,-31v-1,-56,53,-122,118,-110v4,-4,10,-10,17,-12v4,-1,5,2,4,5v-10,23,-18,66,-18,93v0,25,8,33,20,33v19,0,53,-25,53,-82v0,-51,-34,-93,-101,-93v-79,0,-133,65,-133,150v0,67,42,106,101,106v47,0,68,-15,93,-32v14,-10,15,0,5,9v-19,19,-58,39,-106,39v-64,0,-119,-38,-119,-119v0,-88,83,-165,162,-165v79,0,116,43,116,103xm196,-166v-43,-25,-70,38,-70,79v0,10,1,19,6,19v12,0,35,-28,49,-47v3,-13,8,-33,15,-51","w":324},"A":{"d":"157,-90v-21,-9,-58,0,-84,-3v-12,20,-22,52,-28,76v-3,11,17,11,26,14v-24,10,-44,0,-87,4v-7,1,-10,-6,-3,-6v25,0,34,-12,42,-34r90,-226v7,-18,11,-19,19,-2v9,20,66,166,90,221v19,44,22,35,51,43v-15,8,-66,5,-95,0v1,-4,11,-2,8,-11xm79,-113v17,4,52,3,70,0r-35,-92v-14,29,-23,62,-35,92","w":252,"k":{"m":-7,"s":4,"t":23,"u":2,"v":22,"w":16,"x":9,"y":13,"M":-7,"S":4,"T":23,"U":2,"V":22,"W":16,"X":9,"Y":13}},"B":{"d":"57,-27v4,-41,1,-181,1,-216v0,-22,-20,-19,-35,-25v29,-8,69,-3,100,-3v109,0,86,83,40,117v30,10,66,36,66,78v0,46,-48,87,-121,77r-73,0v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22xm117,-256v-8,0,-16,-3,-15,7v2,30,-5,68,3,92v36,7,57,-8,57,-44v0,-24,-14,-55,-45,-55xm102,-53v-4,37,15,38,39,39v16,0,44,-9,44,-46v0,-34,-25,-89,-81,-81v-6,24,1,60,-2,88","w":254,"k":{"m":2,"v":13,"w":11,"y":11,"M":2,"V":13,"W":11,"Y":11,"a":11,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"A":-2,"O":7,"c":7,"g":7,"o":7,"q":7,"B":7,"D":7,"E":7,"F":7,"H":7,"I":7,"K":7,"L":7,"N":7,"P":7,"R":7}},"C":{"d":"171,-258v-71,-2,-100,55,-100,115v0,86,65,128,113,128v44,0,70,-13,78,-44v0,-10,9,-9,8,-1v-1,8,-2,54,-17,58v-64,17,-146,8,-189,-31v-35,-31,-44,-71,-44,-106v0,-24,10,-64,42,-99v37,-39,138,-45,202,-28v13,4,-2,50,2,63v0,5,-1,8,-4,8v-3,0,-4,-3,-4,-8v-3,-40,-37,-53,-87,-55","w":288,"k":{"t":2,"y":-14,"T":2,"Y":-7,"a":-11,"A":-11}},"D":{"d":"157,4r-122,-3v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v4,-41,1,-181,1,-216v0,-22,-20,-19,-35,-25v38,-8,65,-3,115,-3v45,0,105,0,144,41v18,19,35,48,35,91v0,45,-19,80,-39,101v-17,17,-54,44,-121,42xm132,-254v-13,0,-28,-2,-28,10r1,190v0,35,8,39,51,41v74,4,113,-42,113,-115v0,-91,-75,-128,-137,-126","w":336,"k":{"m":2,"M":2,"j":14,"b":14,"d":14,"e":14,"f":14,"h":14,"i":14,"k":14,"l":14,"n":14,"p":14,"r":14,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"J":4}},"E":{"d":"202,-54v2,18,8,63,-22,56r-145,-1v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v4,-41,1,-181,1,-216v0,-22,-20,-19,-35,-25v43,-10,121,6,171,-6v5,3,-3,35,-3,50v0,2,0,4,-3,4v-3,0,-4,-2,-4,-5v7,-33,-47,-26,-77,-27v-9,24,0,65,-3,95v0,3,1,4,3,4v23,-1,73,5,81,-11v3,3,-1,50,-5,60v-3,0,-4,-1,-4,-3v7,-36,-42,-27,-72,-28v-8,18,2,57,-3,87v-6,37,47,33,77,26v12,-3,13,-22,21,-32","w":227,"k":{"v":-2,"x":-5,"y":-4,"V":-2,"X":-5,"Y":-4,"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7}},"F":{"d":"181,-111v6,-32,-49,-24,-74,-25v-8,19,-1,91,-1,109v0,22,22,20,38,24v-35,10,-65,-1,-108,4v-8,1,-12,-7,-2,-6v16,0,22,-5,23,-22v4,-39,1,-182,1,-216v0,-21,-18,-20,-35,-24v40,-13,125,6,175,-7v7,5,-3,35,-2,49v0,3,0,5,-3,5v-9,-12,-3,-31,-30,-31r-55,-1v-2,0,-4,1,-4,5v2,30,-5,69,3,94v29,-3,69,6,82,-11v8,4,-5,41,-2,52v0,3,1,7,-3,7v-2,0,-3,-3,-3,-6","w":223,"k":{"y":-5,"Y":-5,"a":22,"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"A":7,",":36,".":36}},"G":{"d":"306,-130v-10,7,-28,2,-28,24r0,83v0,10,-1,10,-5,13v-109,41,-253,6,-253,-125v0,-132,137,-159,251,-131v4,0,5,1,5,4v0,4,-2,14,-2,59v0,10,-8,10,-8,3v0,-39,-35,-55,-92,-58v-55,-3,-105,37,-105,110v0,77,50,136,126,136v14,0,39,-1,37,-18v-5,-38,19,-103,-30,-97v-3,0,-5,-1,-5,-3v28,-10,66,1,102,-4v5,0,7,1,7,4","w":318,"k":{"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7}},"H":{"d":"104,-159v40,5,101,3,142,0r-1,-84v3,-22,-20,-19,-35,-25v33,-8,64,1,104,-3v5,0,8,0,8,3v-8,7,-30,-1,-30,25r1,217v-3,22,23,18,38,23v-36,10,-65,-1,-109,4v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v1,-19,6,-82,0,-110v-45,2,-99,-4,-140,2r2,109v-3,22,23,18,38,23v-35,10,-65,-1,-109,4v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v4,-41,1,-181,1,-216v0,-22,-20,-19,-35,-25v33,-8,64,1,104,-3v9,-2,11,7,2,6v-16,0,-24,4,-24,22","w":349,"k":{"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"O":4,"c":4,"g":4,"o":4,"q":4,"C":4,"G":4,"Q":4}},"I":{"d":"57,-25v4,-40,1,-183,1,-218v0,-23,-18,-18,-31,-25v28,-8,63,1,100,-3v8,-1,10,7,2,6v-16,0,-25,5,-25,22r1,219v-2,21,25,16,39,21v-36,10,-65,-1,-109,4v-8,1,-10,-6,-1,-6v15,0,22,-3,23,-20","w":162,"k":{"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"O":4,"c":4,"g":4,"o":4,"q":4,"C":4,"G":4,"Q":4}},"J":{"d":"7,91v44,-28,52,-65,52,-154r-1,-180v3,-22,-20,-19,-35,-25v33,-8,64,1,104,-3v5,0,8,0,8,3v-9,7,-31,0,-31,25r1,194v2,76,-32,116,-95,143v-1,0,-3,-1,-3,-3","w":149,"k":{"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"O":4,"c":4,"g":4,"o":4,"q":4}},"K":{"d":"198,-257v2,-7,-9,-6,-10,-11v17,-8,56,1,85,-3v4,0,6,0,6,3v-56,7,-105,78,-143,112v48,47,101,136,176,153v-31,10,-89,7,-109,-20v-22,-18,-84,-101,-100,-113r1,110v-1,21,20,19,35,23v-32,10,-62,-1,-104,4v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v4,-41,1,-181,1,-216v0,-22,-20,-19,-35,-25v32,-8,64,1,102,-3v9,-2,9,7,2,6v-16,0,-23,5,-23,22v0,29,-5,67,1,92v22,-26,81,-76,93,-106","w":276,"k":{"s":-2,"S":-2,"a":4,"A":4,"O":-1,"c":-3,"g":-3,"o":-3,"q":-3,"C":-3,"G":-3,"Q":-1}},"L":{"d":"213,-49v-5,14,8,60,-28,51r-150,-1v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v4,-41,1,-181,1,-216v0,-21,-19,-19,-33,-25v31,-8,65,1,106,-3v5,0,8,0,8,3v-10,7,-38,-2,-34,25v-2,10,-1,106,-1,140v0,77,-15,82,51,85v31,2,48,-8,52,-32v0,-3,1,-5,4,-5v3,0,2,2,2,6","w":217,"k":{"t":17,"u":7,"v":18,"w":14,"y":14,"T":17,"U":7,"V":18,"W":14,"Y":14,"a":-7,"A":-7,"O":2,"c":2,"g":2,"o":2,"q":2,"C":2,"G":2}},"M":{"d":"63,-19v-1,16,22,11,31,16v-23,10,-50,0,-82,4v-7,1,-11,-7,-1,-6v19,2,24,-14,26,-30r35,-235v4,-14,9,-12,16,2r98,203r98,-205v5,-12,12,-13,15,2r33,223v0,39,21,36,45,42v-13,8,-78,4,-93,-2v3,-6,9,-3,6,-19v-9,-52,-10,-111,-23,-159r-78,164v-8,17,-11,20,-14,20v-39,-60,-56,-108,-91,-180r-2,0","w":375,"k":{"t":22,"u":5,"w":7,"y":11,"T":22,"U":5,"W":7,"Y":11,"a":-4,"A":-4,"O":2,"c":2,"g":2,"o":2,"q":2,"C":2,"G":2,"Q":2}},"N":{"d":"320,-268v-17,6,-30,3,-31,35r-4,227v0,18,-11,10,-17,3r-106,-105r-87,-91r4,151v1,45,11,39,38,45v-35,10,-47,0,-92,4v-8,1,-12,-6,-2,-6v26,0,26,-6,27,-47r3,-213v0,-19,10,-11,18,-1v16,19,148,152,191,198r2,0r-4,-162v3,-37,-16,-30,-37,-38v32,-8,48,1,88,-3v5,0,9,0,9,3","w":340,"k":{"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"O":4,"c":4,"g":4,"o":4,"q":4,"C":4,"G":4,"Q":4}},"O":{"d":"165,6v-103,0,-145,-77,-145,-141v0,-62,40,-141,148,-141v90,0,146,53,146,135v0,82,-58,147,-149,147xm180,-12v25,0,84,-12,84,-116v0,-81,-47,-131,-106,-131v-41,0,-89,23,-89,113v0,75,42,134,111,134","w":333,"k":{"m":2,"t":6,"x":7,"M":2,"T":6,"X":7,"j":14,"b":14,"d":14,"e":14,"f":14,"h":14,"i":14,"k":14,"l":14,"n":14,"p":14,"r":14,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"J":4}},"P":{"d":"120,-256v-9,1,-18,-1,-17,9r2,221v-2,22,22,19,38,23v-36,10,-64,-1,-108,4v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v4,-41,1,-181,1,-216v0,-22,-20,-19,-35,-25v34,-8,71,-3,112,-3v45,0,62,14,67,20v44,48,-2,142,-79,130v-2,0,-4,0,-4,-3v0,-3,2,-4,10,-4v39,-1,72,-75,27,-114v-13,-12,-28,-14,-36,-14","w":235,"k":{"s":-2,"y":-7,"S":-2,"a":25,"A":18,",":47,".":47}},"Q":{"d":"550,48v-22,17,-63,27,-118,31v-71,5,-151,-48,-209,-82v-14,5,-38,9,-57,9v-105,0,-146,-78,-146,-143v0,-59,42,-139,147,-139v86,0,146,52,146,136v0,63,-39,104,-62,119v48,30,189,91,220,80v20,1,52,-5,76,-15v2,0,3,2,3,4xm180,-12v29,0,83,-13,83,-118v0,-87,-54,-129,-104,-129v-47,0,-89,30,-89,114v0,86,52,133,110,133","w":334,"k":{"b":4,"d":4,"e":4,"f":4,"h":4,"i":4,"k":4,"l":4,"n":4,"p":4,"r":4,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,")":-11,"]":-11,"}":-11}},"R":{"d":"174,-126v48,54,71,112,133,123v-14,9,-64,3,-80,-3v-26,-10,-67,-91,-91,-105v-11,3,-35,-9,-34,7v0,33,-1,62,1,77v-3,21,21,20,36,24v-35,10,-62,-1,-104,4v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v4,-41,1,-181,1,-216v0,-22,-20,-19,-35,-25v32,-8,70,-1,108,-3v46,-3,88,13,90,65v0,27,-11,50,-47,80xm124,-254v-12,0,-21,-3,-22,6r0,110v1,12,20,10,30,10v39,0,47,-18,47,-60v0,-51,-34,-66,-55,-66","w":271,"k":{"s":5,"t":14,"u":2,"v":9,"w":4,"x":5,"y":7,"S":5,"T":14,"U":2,"V":9,"W":4,"X":5,"Y":7,"O":2,"c":2,"g":2,"o":2,"q":2,"C":2,"G":2,"Q":4}},"S":{"d":"183,-71v0,38,-46,82,-91,77v-24,-3,-56,2,-60,-21v2,-28,-3,-48,7,-57v3,0,3,3,3,6v-6,68,103,70,103,14v7,-21,-28,-54,-52,-71v-41,-30,-53,-56,-53,-85v0,-60,90,-84,136,-58v0,5,-1,16,-1,44v0,13,-8,13,-8,4v-3,-19,-15,-43,-49,-42v-27,0,-42,16,-42,38v-5,17,24,41,48,59v44,33,59,58,59,92","w":209,"k":{"m":3,"v":1,"M":3,"V":1,"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7}},"T":{"d":"17,-276v64,11,165,8,229,2v4,8,3,45,-2,55v-4,1,-4,-6,-4,-11v4,-19,-58,-22,-88,-21r2,225v-3,22,23,18,38,23v-36,10,-65,-1,-109,4v-8,1,-10,-6,-1,-6v16,1,22,-5,23,-22v4,-59,1,-156,2,-224v-34,4,-92,-8,-95,25v-1,3,-2,4,-4,4v-8,-9,4,-48,9,-54","w":255,"k":{"m":5,"s":11,"w":-7,"y":-14,"M":5,"Y":-2,"a":29,"A":22,"O":5,"c":5,"g":5,"o":5,"q":5,",":27,".":27,"C":5,"G":5,":":2,";":2,"-":4}},"U":{"d":"156,6v-58,1,-111,-32,-112,-120r-1,-129v3,-22,-21,-19,-36,-25v32,-8,66,1,105,-3v9,-2,11,7,2,6v-16,0,-24,5,-24,22r0,127v-2,75,24,100,73,103v68,4,70,-76,70,-154v0,-55,1,-64,0,-76v3,-21,-20,-19,-35,-25v34,-8,49,1,90,-3v5,0,8,0,8,3v-9,7,-31,0,-31,25v0,87,18,176,-35,223v-25,23,-51,26,-74,26","w":306,"k":{"m":6,"M":6,"a":5,"j":14,"b":14,"d":14,"e":14,"f":14,"h":14,"i":14,"k":14,"l":14,"n":14,"p":14,"r":14,"A":5}},"V":{"d":"217,-256v1,-12,-20,-6,-25,-11v24,-10,51,1,82,-4v5,0,7,0,7,3v-19,10,-26,2,-43,40r-91,207v-15,34,-17,39,-30,5r-91,-220v-9,-29,-25,-23,-46,-32v34,-8,63,2,106,-3v8,-1,11,7,3,6v-26,1,-18,16,-9,38r61,164r2,0","w":260,"k":{"y":-2,"Y":-2,"a":20,"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"A":20,",":47,".":47,")":-11,"]":-11,"}":-11,"-":-4}},"W":{"d":"291,-72r52,-182v5,-10,-17,-9,-23,-14v28,-8,43,1,75,-3v8,-1,10,7,2,6v-25,0,-22,13,-33,40v-17,45,-55,160,-72,214v-8,25,-13,22,-22,-1r-75,-180v-7,18,-55,146,-70,179v-10,23,-15,27,-22,6r-76,-229v-6,-19,-10,-28,-28,-29v-4,0,-5,0,-5,-3v36,-8,43,1,89,-3v10,-1,10,7,1,6v-6,1,-14,2,-13,10v9,40,42,151,55,186r70,-188v8,-21,12,-16,20,4","w":390,"k":{"m":5,"y":-2,"M":5,"Y":-2,"a":13,"A":13,",":27,".":27,")":-4,"]":-4,"}":-4,"-":-4}},"X":{"d":"189,-257v1,-11,-18,-4,-22,-11v24,-7,47,1,79,-3v7,-1,9,6,1,6v-21,0,-24,9,-40,31r-59,85v33,36,62,142,118,146v0,6,-11,3,-17,4v-7,-1,-61,3,-77,-4v0,-5,12,-2,5,-12v-20,-35,-39,-71,-56,-98v-19,34,-44,62,-59,101v1,8,16,4,20,10v-13,8,-57,-1,-84,3v-8,1,-8,-6,-1,-6v23,-2,27,-7,43,-29r69,-98r-62,-103v-11,-18,-23,-28,-45,-30v-2,0,-3,0,-3,-3v21,-8,63,1,100,-3v9,-2,9,7,2,6v-10,0,-18,6,-11,18r46,80v13,-25,50,-65,53,-90","w":256,"k":{"t":9,"x":5,"y":-2,"T":9,"X":5,"Y":-2,"a":7,"A":7,"O":4,"c":2,"g":2,"o":2,"q":2,"C":2,"G":2,"Q":4}},"Y":{"d":"75,-5v36,1,24,-51,24,-87v0,-19,-3,-28,-8,-38v-18,-21,-57,-128,-103,-135v-3,0,-6,0,-6,-3v20,-8,56,1,91,-3v4,0,5,1,5,3v-6,4,-19,10,-8,23v5,11,55,97,61,107v7,-20,56,-90,59,-117v3,-8,-12,-9,-14,-13v18,-8,52,1,79,-3v4,0,6,1,6,3v-13,7,-32,6,-42,25v-23,44,-88,104,-74,180v2,13,-5,57,16,56v7,1,35,3,16,8r-100,0v-8,1,-12,-7,-2,-6","w":241,"k":{"m":3,"t":-2,"v":-2,"M":3,"T":-2,"V":-2,"a":7,"j":11,"b":11,"d":11,"e":11,"f":11,"h":11,"i":11,"k":11,"l":11,"n":11,"p":11,"r":11,"A":7,"O":7,"c":5,"g":5,"o":5,"q":5,",":22,".":22,"C":5,"G":5,")":-11,"]":-11,"}":-11}},"Z":{"d":"33,-209v-7,-10,2,-54,8,-65v66,9,123,2,191,4v9,0,5,5,3,10r-155,240r88,0v54,0,54,-16,67,-43v9,14,2,61,-14,65v-60,0,-121,-2,-194,-2v-10,0,-6,-7,0,-14r152,-237v-54,2,-133,-13,-142,36v-1,5,-2,6,-4,6","w":255,"k":{"a":5,"A":5}},"[":{"d":"70,-254v-5,88,-3,194,0,284v12,8,37,2,45,11v0,3,-1,3,-4,3r-69,0v-5,0,-6,-1,-6,-6r0,-302v0,-4,1,-5,6,-5r69,0v3,0,4,1,4,4v-9,7,-33,3,-45,11","w":129,"k":{"v":-11,"w":-4,"y":-11,"V":-11,"W":-4,"Y":-11}},"\\":{"d":"189,-8v5,10,-12,16,-17,13r-166,-269v1,-6,14,-16,19,-10","w":195},"]":{"d":"59,30v6,-86,4,-196,0,-284v-12,-7,-34,-4,-44,-11v0,-3,1,-4,4,-4r68,0v5,0,6,1,6,6r0,302v0,4,-1,5,-6,5r-68,0v-3,0,-5,0,-5,-3v8,-9,32,-3,45,-11","w":129},"^":{"d":"180,-108r-24,0r-57,-134r-58,134r-24,0r69,-161r25,0","w":197},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"143,-74v-21,-4,-58,-3,-80,0v-7,18,-18,40,-22,60v-2,10,17,7,22,12v-22,8,-39,-1,-77,3v-7,2,-8,-6,-2,-6v21,0,28,-10,35,-28r83,-192v6,-16,13,-18,19,-3r81,189v18,39,20,28,43,37v-14,7,-54,3,-84,0v1,-5,10,-2,7,-10xm72,-93v20,-2,47,3,63,-2r-32,-80v-9,27,-26,57,-31,82","w":227},"b":{"d":"51,-207v0,-19,-21,-13,-31,-21v25,-5,64,-2,97,-2v98,0,75,72,32,99v26,8,58,30,58,66v0,50,-64,77,-136,65v-14,-2,-37,5,-46,-2v8,-6,25,0,25,-21v0,-35,1,-154,1,-184xm95,-134v28,7,54,-5,54,-36v0,-26,-19,-52,-53,-46v-6,19,-4,60,-1,82xm166,-56v0,-22,-29,-77,-73,-60r0,69v-4,32,13,34,34,34v17,0,39,-9,39,-43","w":230,"k":{"m":2,"v":13,"w":11,"y":11,"a":-2,"j":14,"b":14,"d":14,"e":14,"f":14,"h":14,"i":14,"k":14,"l":14,"n":14,"p":14,"r":14}},"c":{"d":"154,-218v-64,-3,-89,44,-89,97v0,73,56,107,98,107v38,0,61,-9,67,-37v0,-9,8,-7,8,0v-2,7,-2,46,-15,49v-56,14,-129,8,-166,-26v-90,-80,-19,-207,98,-207v32,0,53,6,78,9v4,0,4,1,4,3v-3,19,4,47,-7,58v-3,0,-3,-3,-3,-7v-3,-34,-30,-44,-73,-46","w":253,"k":{"t":2,"y":-7}},"d":{"d":"141,4v-38,0,-83,2,-116,-6v8,-6,25,0,25,-21v0,-35,1,-154,1,-184v0,-19,-21,-13,-31,-21v112,-6,261,-19,262,110v0,39,-17,68,-35,86v-14,14,-48,36,-106,36xm118,-215v-10,0,-23,-1,-23,9r0,160v1,30,7,32,45,34v61,4,96,-36,96,-97v0,-79,-65,-107,-118,-106","w":299,"k":{"m":2,"j":4,"b":4,"d":4,"e":4,"f":4,"h":4,"i":4,"k":4,"l":4,"n":4,"p":4,"r":4}},"e":{"d":"187,-40v-3,16,5,45,-21,42v-45,-5,-101,4,-141,-4v8,-6,25,0,25,-21v0,-35,1,-154,1,-184v0,-19,-21,-13,-31,-21v42,-8,111,4,157,-5v6,2,0,38,-5,48v-2,0,-3,-1,-3,-4v6,-30,-48,-22,-73,-24v-4,21,-3,60,0,82v20,-2,69,5,76,-9v6,2,0,45,-5,53v1,-31,-39,-28,-71,-27v-5,17,-2,48,-2,73v0,21,11,25,43,25v26,0,43,-9,47,-31v3,0,3,4,3,7","w":207,"k":{"v":-2,"x":-5,"y":-4,"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7}},"f":{"d":"173,-140v3,5,0,44,-6,51v-6,-8,-2,-24,-20,-24v-10,0,-50,-4,-53,1r2,89v-2,20,22,15,34,21v-33,8,-61,-1,-98,3v-7,1,-10,-6,-2,-6v15,0,19,-4,20,-18v3,-34,1,-155,1,-184v0,-19,-21,-13,-31,-21v43,-8,114,5,161,-5v3,6,-1,37,-5,48v-8,-9,-2,-26,-26,-26r-53,-1v-2,0,-3,0,-3,4v1,25,-3,56,2,77v27,-2,64,5,77,-9","w":204,"k":{"y":-5,"a":7,"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,",":36,".":36}},"g":{"d":"270,-111v-8,7,-24,1,-24,21r-1,71v0,8,0,8,-4,10v-95,35,-224,7,-224,-106v0,-114,133,-140,227,-108v0,4,-2,12,-2,51v1,7,-7,8,-8,2v-5,-32,-30,-46,-80,-48v-46,-3,-90,30,-90,92v0,66,42,114,110,114v11,0,31,0,29,-14v-5,-33,15,-87,-27,-82v-3,0,-5,-1,-5,-3v27,-8,61,1,93,-3v4,0,6,0,6,3","w":281},"h":{"d":"51,-207v3,-19,-21,-13,-31,-21v26,-4,71,-3,102,0v-5,9,-29,-1,-27,21v2,24,-4,55,1,76v39,-2,86,4,122,-2v-6,-34,17,-94,-27,-91v-4,0,-5,-2,-5,-4v26,-4,71,-3,102,0v-5,9,-27,-1,-27,21v0,29,-2,150,1,185v-3,20,22,13,34,20v-34,8,-60,-1,-99,3v-7,1,-10,-5,-2,-6v40,-1,16,-57,23,-106v-38,-2,-86,-2,-124,0r2,89v-3,21,23,13,34,20v-34,8,-59,-1,-99,3v-7,0,-9,-5,-1,-6v35,-2,22,-41,22,-83","w":312,"k":{"c":4,"g":4,"o":4,"q":4}},"i":{"d":"51,-207v0,-21,-19,-12,-27,-21v24,-4,68,-3,97,0v-4,10,-26,-1,-26,21v0,29,-2,152,1,186v-3,19,23,13,34,19v-34,8,-59,-1,-99,3v-7,0,-9,-5,-1,-6v14,0,19,-2,20,-16v3,-34,1,-156,1,-186","w":146,"k":{"c":4,"g":4,"o":4,"q":4}},"j":{"d":"6,77v38,-22,46,-55,46,-131r-1,-153v3,-19,-21,-13,-31,-21v26,-4,71,-3,102,0v-5,9,-30,0,-27,21v-2,26,-1,125,0,165v3,67,-29,100,-86,122v-1,0,-3,-2,-3,-3","w":134,"k":{"c":4,"g":4,"o":4,"q":4}},"k":{"d":"119,-228v-7,9,-27,0,-25,21v3,25,-5,58,1,79v20,-23,71,-64,82,-90v1,-6,-9,-5,-9,-10v19,-4,56,-3,80,0v-17,10,-37,8,-56,30v-9,10,-57,54,-67,65v42,39,88,116,153,131v-31,7,-78,5,-99,-17v-17,-18,-73,-85,-86,-97r1,94v-3,20,21,13,31,20v-31,8,-56,-1,-94,3v-7,0,-9,-5,-1,-6v35,-2,22,-41,22,-83r-1,-119v3,-19,-21,-13,-31,-21v25,-4,69,-3,99,0","w":246,"k":{"s":-2,"a":4,"c":-3,"g":-3,"o":-3,"q":-3}},"l":{"d":"51,-207v3,-18,-21,-13,-29,-21v26,-4,72,-3,103,0v-6,9,-33,-2,-30,21v-2,8,-1,90,-1,119v0,67,-11,70,49,71v26,0,42,-6,45,-27v0,-3,1,-5,4,-5v3,15,10,55,-22,51v-47,-5,-103,4,-145,-4v8,-6,25,0,25,-21v0,-35,2,-154,1,-184","w":198,"k":{"t":17,"u":7,"v":18,"w":14,"y":14,"a":-7,"c":7,"g":7,"o":7,"q":7}},"m":{"d":"58,-30v-7,21,11,24,25,27v-19,10,-45,0,-73,4v-3,0,-5,-1,-5,-4v12,-2,29,-7,27,-27r32,-199v3,-11,10,-11,16,1r85,171r84,-173v6,-9,13,-10,16,2r29,189v0,32,18,32,38,36v-7,10,-55,0,-74,2v-21,-4,3,-3,-4,-20v-8,-43,-8,-93,-19,-132r-68,136v-11,26,-15,22,-25,2r-69,-135","w":332,"k":{"t":22,"u":5,"w":7,"y":11,"a":-4,"c":2,"g":2,"o":2,"q":2}},"n":{"d":"279,-224v-16,0,-22,5,-22,26r-3,193v1,17,-13,8,-18,3r-93,-88v-36,-33,-66,-72,-75,-76r4,125v0,40,11,30,32,39v-33,8,-42,-1,-82,3v-8,2,-10,-6,-2,-6v22,-2,24,-3,24,-39r3,-181v1,-18,11,-10,19,-1r167,167r-3,-136v1,-27,-8,-28,-27,-29v-4,0,-5,-2,-5,-4v19,-5,63,-3,86,0v0,2,-1,4,-5,4","w":302,"k":{"c":4,"g":4,"o":4,"q":4}},"o":{"d":"147,5v-92,0,-130,-66,-130,-120v0,-52,37,-120,133,-120v80,0,130,45,130,115v0,70,-51,125,-133,125xm160,-12v22,0,73,-10,73,-97v0,-68,-41,-110,-92,-110v-35,0,-77,19,-77,95v0,63,36,112,96,112","w":297,"k":{"m":2,"t":6,"x":7,"j":11,"b":11,"d":11,"e":11,"f":11,"h":11,"i":11,"k":11,"l":11,"n":11,"p":11,"r":11}},"p":{"d":"110,-216v-8,1,-16,-2,-16,7r1,187v-3,20,23,14,34,20v-35,8,-59,-1,-98,3v-7,0,-9,-5,-1,-6v35,-2,22,-41,22,-83r-1,-119v3,-19,-21,-13,-31,-21v38,-5,150,-6,164,15v43,42,-12,133,-77,107v0,-3,4,-4,11,-4v35,0,63,-62,23,-95v-12,-10,-24,-11,-31,-11","w":214,"k":{"s":-2,"a":18,",":47,".":47}},"q":{"d":"486,40v-19,16,-57,25,-106,28v-64,5,-133,-40,-183,-71v-12,4,-33,8,-50,8v-93,0,-130,-66,-130,-121v0,-50,39,-119,132,-119v76,0,130,44,130,116v0,54,-36,88,-55,101v83,36,171,93,259,55v1,0,3,2,3,3xm159,-12v26,0,72,-10,72,-99v0,-73,-46,-108,-90,-108v-41,0,-77,26,-77,96v0,73,44,111,95,111","w":297,"k":{"b":4,"d":4,"e":4,"f":4,"h":4,"i":4,"k":4,"l":4,"n":4,"p":4,"r":4,")":-11,"]":-11,"}":-11}},"r":{"d":"158,-108v41,48,65,92,115,106v-13,7,-57,2,-71,-3v-19,-8,-61,-71,-73,-87v-9,-3,-29,-6,-37,0r2,69v-4,20,21,15,32,21v-33,8,-57,-1,-95,3v-7,0,-9,-5,-1,-6v35,-2,22,-41,22,-83r-1,-119v3,-19,-21,-13,-31,-21v26,-5,66,-2,100,-2v40,0,80,9,82,55v0,23,-13,42,-44,67xm114,-215v-11,0,-20,-1,-22,6r0,91v1,10,18,6,27,8v34,-1,43,-15,43,-50v0,-43,-29,-55,-48,-55","w":246,"k":{"s":5,"t":14,"u":2,"v":9,"w":4,"x":5,"y":7,"c":2,"g":2,"o":2,"q":2}},"s":{"d":"171,-65v0,57,-77,89,-136,62v-15,-7,-6,-52,-1,-59v3,0,3,3,3,5v-3,58,99,62,98,7v7,-16,-29,-43,-50,-54v-81,-37,-58,-131,30,-131v45,0,56,-9,48,46v1,10,-6,14,-7,4v-2,-16,-12,-35,-43,-34v-23,0,-44,12,-44,33v-5,15,25,35,47,47v42,22,55,46,55,74","w":194,"k":{"m":3,"v":1,"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7}},"t":{"d":"72,-5v36,-2,22,-41,22,-83r0,-124r-47,1v-29,-3,-30,13,-40,24v-8,-7,3,-43,8,-48v54,10,144,6,204,2v3,10,5,39,-1,49v-4,1,-4,-4,-4,-9v3,-18,-52,-20,-78,-19r2,190v-3,21,23,13,34,20v-34,8,-59,-1,-99,3v-7,0,-9,-5,-1,-6","w":227,"k":{"m":5,"w":-7,"y":-2,"a":22,"c":5,"g":5,"o":5,"q":5,",":27,".":27,":":2,";":2,"-":4}},"u":{"d":"206,-17v-67,52,-168,23,-168,-80r0,-110v3,-20,-23,-12,-32,-21v26,-4,71,-3,102,0v-6,9,-26,0,-26,21r0,108v-2,65,21,84,64,86v57,3,61,-62,61,-129v0,-46,-1,-55,-1,-65v0,-19,-22,-12,-30,-21v22,-4,62,-3,88,0v-7,9,-30,0,-27,21v-4,75,18,153,-31,190","w":273,"k":{"m":6,"a":5,"j":7,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7}},"v":{"d":"188,-206v9,-19,-11,-15,-20,-22v18,-4,56,-3,79,0v-14,10,-22,2,-37,34r-80,177v-14,29,-16,31,-28,4r-80,-188v-8,-21,-16,-22,-36,-23v-3,0,-3,-2,-3,-4v24,-5,72,-3,102,0v-2,8,-24,0,-21,12v15,53,41,110,62,160v14,-32,53,-130,62,-150","w":229,"k":{"y":-2,"a":20,",":47,".":47,")":-11,"]":-11,"}":-11,"-":-4}},"w":{"d":"65,-217v7,33,35,129,47,155r60,-156v7,-18,13,-13,20,3r64,151v6,-18,33,-98,42,-134v4,-15,10,-26,-13,-26v-3,0,-5,-2,-5,-4v17,-4,53,-3,74,0v-1,6,-10,3,-16,5v-8,3,-12,14,-18,32v-15,39,-47,136,-62,182v-7,21,-13,18,-21,-1r-66,-151v-5,13,-47,122,-60,150v-8,19,-14,23,-21,5r-67,-195v-6,-16,-7,-24,-24,-23v-3,0,-5,-2,-5,-4v21,-4,62,-3,88,0v-2,7,-19,1,-17,11","w":343,"k":{"m":5,"t":-7,"y":-2,"a":13,",":27,".":27,")":-4,"]":-4,"}":-4,"-":-4}},"x":{"d":"168,-218v0,-8,-18,-3,-20,-10v18,-4,55,-3,77,0v-14,9,-23,7,-39,29r-53,72v27,27,55,120,100,122v2,0,4,1,4,3v-13,7,-57,4,-85,-1v0,-5,10,-2,5,-10r-50,-82v-16,29,-38,53,-51,85v1,8,14,1,17,8v-13,8,-50,-1,-75,3v-3,0,-4,-1,-4,-3v14,-8,25,-5,41,-27r61,-84r-55,-87v-10,-15,-20,-23,-39,-24v-4,-2,-5,-7,3,-6v29,1,64,-3,90,2v-3,7,-26,3,-13,18v14,24,26,46,39,67v12,-21,42,-56,47,-75","w":228,"k":{"t":9,"x":5,"y":-2,"a":7,"c":2,"g":2,"o":2,"q":2}},"y":{"d":"64,-5v32,0,20,-42,22,-73v3,-47,-41,-81,-64,-121v-10,-17,-16,-22,-34,-25v-3,0,-4,-2,-4,-4v21,-4,61,-3,86,0v1,5,-13,2,-11,9v5,20,48,83,56,100v17,-33,40,-61,52,-98v2,-7,-12,-6,-13,-11v18,-4,54,-3,76,0v-9,8,-28,5,-36,22v-10,12,-56,85,-62,98v-7,18,-1,33,-3,55v-2,20,-1,57,29,48v4,0,5,2,5,3v-32,8,-60,-1,-97,3v-7,1,-10,-6,-2,-6","w":212,"k":{"m":3,"t":-2,"v":-2,"a":7,"c":5,"g":5,"o":5,"q":5,",":22,".":22,")":-11,"]":-11,"}":-11}},"z":{"d":"210,-227v-41,74,-93,142,-138,209r76,0v48,1,46,-14,59,-35v6,13,3,53,-13,54v-53,0,-107,-1,-171,-1v-9,0,-5,-5,-1,-12r133,-200v-53,0,-120,-8,-125,35v-10,-8,2,-45,6,-56v57,8,108,1,169,3v3,0,5,2,5,3","w":225,"k":{"a":5}},"{":{"d":"78,-219v0,53,1,79,-29,93v25,11,29,38,29,82v0,69,12,77,35,85v0,2,-2,3,-13,3v-34,-10,-59,-32,-56,-106v0,-11,2,-31,2,-39v0,-20,-21,-16,-29,-23v8,-9,36,-2,30,-27v-12,-64,10,-128,66,-115v-14,6,-35,10,-35,47","w":129,"k":{"v":-11,"w":-4,"y":-11,"V":-11,"W":-4,"Y":-11}},"|":{"d":"101,90r-22,0r0,-360r22,0r0,360","w":180},"}":{"d":"52,-44v0,-45,3,-71,29,-82v-30,-13,-29,-41,-29,-93v0,-37,-21,-42,-35,-47v53,-13,80,50,65,115v-4,17,14,24,25,23v4,0,5,1,5,4v-9,6,-29,4,-29,23v0,8,3,28,3,39v2,75,-21,95,-57,106v-11,0,-13,-1,-13,-3v23,-8,36,-15,36,-85","w":129},"~":{"d":"55,-123v24,0,68,30,91,30v12,0,18,-11,18,-30r20,0v-1,96,-87,31,-131,22v-12,0,-18,9,-19,30r-21,0v-1,-36,18,-52,42,-52","w":197},"'":{"d":"39,-180v-7,-20,-16,-93,-18,-86v0,-5,7,-6,18,-6v11,0,19,1,19,6","w":78},"`":{"d":"140,-352v8,11,34,34,53,51v-15,5,-79,-28,-89,-37v9,-6,26,-11,36,-14","w":333},"\u00a0":{"w":108}}});


