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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/* $Id: jquery.hoverIntent.minified.js,v 1.1 2010/02/12 12:53:13 mehrpadin Exp $ */
/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
*
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;
/* $Id: jquery.bgiframe.min.js,v 1.1 2010/02/15 13:38:03 mehrpadin Exp $ */
/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;
/* $Id: superfish.js,v 1.1 2010/02/12 12:53:13 mehrpadin Exp $ */
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
  $.fn.superfish = function(op){

    var sf = $.fn.superfish,
      c = sf.c,
      $arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
      over = function(){
        var $$ = $(this), menu = getMenu($$);
        clearTimeout(menu.sfTimer);
        $$.showSuperfishUl().siblings().hideSuperfishUl();
      },
      out = function(){
        var $$ = $(this), menu = getMenu($$), o = sf.op;
        clearTimeout(menu.sfTimer);
        menu.sfTimer=setTimeout(function(){
          o.retainPath=($.inArray($$[0],o.$path)>-1);
          $$.hideSuperfishUl();
          if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
        },o.delay);
      },
      getMenu = function($menu){
        var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
        sf.op = sf.o[menu.serial];
        return menu;
      },
      addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };

    return this.each(function() {
      var s = this.serial = sf.o.length;
      var o = $.extend({},sf.defaults,op);
      o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
        $(this).addClass([o.hoverClass,c.bcClass].join(' '))
          .filter('li:has(ul)').removeClass(o.pathClass);
      });
      sf.o[s] = sf.op = o;

      $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
        if (o.autoArrows) addArrow( $('>a:first-child',this) );
      })
      .not('.'+c.bcClass)
        .hideSuperfishUl();

      var $a = $('a',this);
      $a.each(function(i){
        var $li = $a.eq(i).parents('li');
        $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
      });
      o.onInit.call(this);

    }).each(function() {
      var menuClasses = [c.menuClass];
      if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
      $(this).addClass(menuClasses.join(' '));
    });
  };

  var sf = $.fn.superfish;
  sf.o = [];
  sf.op = {};
  sf.IE7fix = function(){
    var o = sf.op;
    if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
      this.toggleClass(sf.c.shadowClass+'-off');
    };
  sf.c = {
    bcClass  : 'sf-breadcrumb',
    menuClass: 'sf-js-enabled',
    anchorClass : 'sf-with-ul',
    arrowClass  : 'sf-sub-indicator',
    shadowClass : 'sf-shadow'
  };
  sf.defaults = {
    hoverClass  : 'sfHover',
    pathClass  : 'overideThisToUse',
    pathLevels  : 1,
    delay : 800,
    animation  : {opacity:'show'},
    speed : 'normal',
    autoArrows  : true,
    dropShadows : true,
    disableHI  : false, // true disables hoverIntent detection
    onInit : function(){}, // callback functions
    onBeforeShow: function(){},
    onShow : function(){},
    onHide : function(){}
  };
  $.fn.extend({
    hideSuperfishUl : function(){
      var o = sf.op,
        not = (o.retainPath===true) ? o.$path : '';
      o.retainPath = false;
      var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
          .find('>ul').hide().css('visibility','hidden');
      o.onHide.call($ul);
      return this;
    },
    showSuperfishUl : function(){
      var o = sf.op,
        sh = sf.c.shadowClass+'-off',
        $ul = this.addClass(o.hoverClass)
          .find('>ul:hidden').css('visibility','visible');
      sf.IE7fix.call($ul);
      o.onBeforeShow.call($ul);
      $ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
      return this;
    }
  });

})(jQuery);
;
/* $Id: supersubs.js,v 1.1 2010/02/12 12:53:13 mehrpadin Exp $ */
/*
 * Supersubs v0.2b - jQuery plugin
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 *
 * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of
 * their longest list item children. If you use this, please expect bugs and report them
 * to the jQuery Google Group with the word 'Superfish' in the subject line.
 *
 */

;(function($){ // $ will refer to jQuery within this closure

  $.fn.supersubs = function(options){
    var opts = $.extend({}, $.fn.supersubs.defaults, options);
    // return original object to support chaining
    return this.each(function() {
      // cache selections
      var $$ = $(this);
      // support metadata
      var o = $.meta ? $.extend({}, opts, $$.data()) : opts;
      // get the font size of menu.
      // .css('fontSize') returns various results cross-browser, so measure an em dash instead
      var fontsize = $('<li id="menu-fontsize">&#8212;</li>').css({
        'padding' : 0,
        'position' : 'absolute',
        'top' : '-999em',
        'width' : 'auto'
      }).appendTo($$).width(); //clientWidth is faster, but was incorrect here
      // remove em dash
      $('#menu-fontsize').remove();
      // cache all ul elements
      $ULs = $$.find('ul');
      // loop through each ul in menu
      $ULs.each(function(i) {
        // cache this ul
        var $ul = $ULs.eq(i);
        // get all (li) children of this ul
        var $LIs = $ul.children();
        // get all anchor grand-children
        var $As = $LIs.children('a');
        // force content to one line and save current float property
        var liFloat = $LIs.css('white-space','nowrap').css('float');
        // remove width restrictions and floats so elements remain vertically stacked
        var emWidth = $ul.add($LIs).add($As).css({
          'float' : 'none',
          'width'  : 'auto'
        })
        // this ul will now be shrink-wrapped to longest li due to position:absolute
        // so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer
        .end().end()[0].clientWidth / fontsize;
        // add more width to ensure lines don't turn over at certain sizes in various browsers
        emWidth += o.extraWidth;
        // restrict to at least minWidth and at most maxWidth
        if (emWidth > o.maxWidth)    { emWidth = o.maxWidth; }
        else if (emWidth < o.minWidth)  { emWidth = o.minWidth; }
        emWidth += 'em';
        // set ul to width in ems
        $ul.css('width',emWidth);
        // restore li floats to avoid IE bugs
        // set li width to full width of this ul
        // revert white-space to normal
        $LIs.css({
          'float' : liFloat,
          'width' : '100%',
          'white-space' : 'normal'
        })
        // update offset position of descendant ul to reflect new width of parent
        .each(function(){
          var $childUl = $('>ul',this);
          var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right';
          $childUl.css(offsetDirection,emWidth);
        });
      });

    });
  };
  // expose defaults
  $.fn.supersubs.defaults = {
    minWidth: 9, // requires em unit.
    maxWidth: 25, // requires em unit.
    extraWidth: 0 // extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values
  };

})(jQuery); // plugin code ends
;
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

/**
 * jQuery Lightbox
 * @author
 *   Stella Power, <http://drupal.org/user/66894>
 *
 * Based on Lightbox v2.03.3 by Lokesh Dhakar
 * <http://www.huddletogether.com/projects/lightbox2/>
 * Also partially based on the jQuery Lightbox by Warren Krewenki
 *   <http://warren.mesozen.com>
 *
 * Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
 * maintainers to distribute this file via Drupal.org
 * Under GPL license.
 *
 * Slideshow, iframe and video functionality added by Stella Power.
 */

var Lightbox = {
  auto_modal : false,
  overlayOpacity : 0.8, // Controls transparency of shadow overlay.
  overlayColor : '000', // Controls colour of shadow overlay.
  disableCloseClick : true,
  // Controls the order of the lightbox resizing animation sequence.
  resizeSequence: 0, // 0: simultaneous, 1: width then height, 2: height then width.
  resizeSpeed: 'normal', // Controls the speed of the lightbox resizing animation.
  fadeInSpeed: 'normal', // Controls the speed of the image appearance.
  slideDownSpeed: 'slow', // Controls the speed of the image details appearance.
  minWidth: 240,
  borderSize : 10,
  boxColor : 'fff',
  fontColor : '000',
  topPosition : '',
  infoHeight: 20,
  alternative_layout : false,
  imageArray : [],
  imageNum : null,
  total : 0,
  activeImage : null,
  inprogress : false,
  disableResize : false,
  disableZoom : false,
  isZoomedIn : false,
  rtl : false,
  loopItems : false,
  keysClose : ['c', 'x', 27],
  keysPrevious : ['p', 37],
  keysNext : ['n', 39],
  keysZoom : ['z'],
  keysPlayPause : [32],

  // Slideshow options.
  slideInterval : 5000, // In milliseconds.
  showPlayPause : true,
  autoStart : true,
  autoExit : true,
  pauseOnNextClick : false, // True to pause the slideshow when the "Next" button is clicked.
  pauseOnPrevClick : true, // True to pause the slideshow when the "Prev" button is clicked.
  slideIdArray : [],
  slideIdCount : 0,
  isSlideshow : false,
  isPaused : false,
  loopSlides : false,

  // Iframe options.
  isLightframe : false,
  iframe_width : 600,
  iframe_height : 400,
  iframe_border : 1,

  // Video and modal options.
  enableVideo : false,
  flvPlayer : '/flvplayer.swf',
  flvFlashvars : '',
  isModal : false,
  isVideo : false,
  videoId : false,
  modalWidth : 400,
  modalHeight : 400,
  modalHTML : null,


  // initialize()
  // Constructor runs on completion of the DOM loading.
  // The function inserts html at the bottom of the page which is used
  // to display the shadow overlay and the image container.
  initialize: function() {

    var s = Drupal.settings.lightbox2;
    Lightbox.overlayOpacity = s.overlay_opacity;
    Lightbox.overlayColor = s.overlay_color;
    Lightbox.disableCloseClick = s.disable_close_click;
    Lightbox.resizeSequence = s.resize_sequence;
    Lightbox.resizeSpeed = s.resize_speed;
    Lightbox.fadeInSpeed = s.fade_in_speed;
    Lightbox.slideDownSpeed = s.slide_down_speed;
    Lightbox.borderSize = s.border_size;
    Lightbox.boxColor = s.box_color;
    Lightbox.fontColor = s.font_color;
    Lightbox.topPosition = s.top_position;
    Lightbox.rtl = s.rtl;
    Lightbox.loopItems = s.loop_items;
    Lightbox.keysClose = s.keys_close.split(" ");
    Lightbox.keysPrevious = s.keys_previous.split(" ");
    Lightbox.keysNext = s.keys_next.split(" ");
    Lightbox.keysZoom = s.keys_zoom.split(" ");
    Lightbox.keysPlayPause = s.keys_play_pause.split(" ");
    Lightbox.disableResize = s.disable_resize;
    Lightbox.disableZoom = s.disable_zoom;
    Lightbox.slideInterval = s.slideshow_interval;
    Lightbox.showPlayPause = s.show_play_pause;
    Lightbox.showCaption = s.show_caption;
    Lightbox.autoStart = s.slideshow_automatic_start;
    Lightbox.autoExit = s.slideshow_automatic_exit;
    Lightbox.pauseOnNextClick = s.pause_on_next_click;
    Lightbox.pauseOnPrevClick = s.pause_on_previous_click;
    Lightbox.loopSlides = s.loop_slides;
    Lightbox.alternative_layout = s.use_alt_layout;
    Lightbox.iframe_width = s.iframe_width;
    Lightbox.iframe_height = s.iframe_height;
    Lightbox.iframe_border = s.iframe_border;
    Lightbox.enableVideo = s.enable_video;
    if (s.enable_video) {
      Lightbox.flvPlayer = s.flvPlayer;
      Lightbox.flvFlashvars = s.flvFlashvars;
    }

    // Make the lightbox divs.
    var layout_class = (s.use_alt_layout ? 'lightbox2-alt-layout' : 'lightbox2-orig-layout');
    var output = '<div id="lightbox2-overlay" style="display: none;"></div>\
      <div id="lightbox" style="display: none;" class="' + layout_class + '">\
        <div id="outerImageContainer"></div>\
        <div id="imageDataContainer" class="clearfix">\
          <div id="imageData"></div>\
        </div>\
      </div>';
    var loading = '<div id="loading"><a href="#" id="loadingLink"></a></div>';
    var modal = '<div id="modalContainer" style="display: none;"></div>';
    var frame = '<div id="frameContainer" style="display: none;"></div>';
    var imageContainer = '<div id="imageContainer" style="display: none;"></div>';
    var details = '<div id="imageDetails"></div>';
    var bottomNav = '<div id="bottomNav"></div>';
    var image = '<img id="lightboxImage" alt="" />';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" href="#"></a><a id="nextLink" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" href="#"></a><a id="frameNextLink" href="#"></a></div>';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="nextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="frameNextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var caption = '<span id="caption"></span>';
    var numberDisplay = '<span id="numberDisplay"></span>';
    var close = '<a id="bottomNavClose" title="' + Drupal.t('Close') + '" href="#"></a>';
    var zoom = '<a id="bottomNavZoom" href="#"></a>';
    var zoomOut = '<a id="bottomNavZoomOut" href="#"></a>';
    var pause = '<a id="lightshowPause" title="' + Drupal.t('Pause Slideshow') + '" href="#" style="display: none;"></a>';
    var play = '<a id="lightshowPlay" title="' + Drupal.t('Play Slideshow') + '" href="#" style="display: none;"></a>';

    $("body").append(output);
    $('#outerImageContainer').append(modal + frame + imageContainer + loading);
    if (!s.use_alt_layout) {
      $('#imageContainer').append(image + hoverNav);
      $('#imageData').append(details + bottomNav);
      $('#imageDetails').append(caption + numberDisplay);
      $('#bottomNav').append(frameNav + close + zoom + zoomOut + pause + play);
    }
    else {
      $('#outerImageContainer').append(bottomNav);
      $('#imageContainer').append(image);
      $('#bottomNav').append(close + zoom + zoomOut);
      $('#imageData').append(hoverNav + details);
      $('#imageDetails').append(caption + numberDisplay + pause + play);
    }

    // Setup onclick handlers.
    if (Lightbox.disableCloseClick) {
      $('#lightbox2-overlay').click(function() { Lightbox.end(); return false; } ).hide();
    }
    $('#loadingLink, #bottomNavClose').click(function() { Lightbox.end('forceClose'); return false; } );
    $('#prevLink, #framePrevLink').click(function() { Lightbox.changeData(Lightbox.activeImage - 1); return false; } );
    $('#nextLink, #frameNextLink').click(function() { Lightbox.changeData(Lightbox.activeImage + 1); return false; } );
    $('#bottomNavZoom').click(function() { Lightbox.changeData(Lightbox.activeImage, true); return false; } );
    $('#bottomNavZoomOut').click(function() { Lightbox.changeData(Lightbox.activeImage, false); return false; } );
    $('#lightshowPause').click(function() { Lightbox.togglePlayPause("lightshowPause", "lightshowPlay"); return false; } );
    $('#lightshowPlay').click(function() { Lightbox.togglePlayPause("lightshowPlay", "lightshowPause"); return false; } );

    // Fix positioning.
    $('#prevLink, #nextLink, #framePrevLink, #frameNextLink').css({ 'paddingTop': Lightbox.borderSize + 'px'});
    $('#imageContainer, #frameContainer, #modalContainer').css({ 'padding': Lightbox.borderSize + 'px'});
    $('#outerImageContainer, #imageDataContainer, #bottomNavClose').css({'backgroundColor': '#' + Lightbox.boxColor, 'color': '#'+Lightbox.fontColor});
    if (Lightbox.alternative_layout) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'bottom': Lightbox.borderSize + 'px', 'right': Lightbox.borderSize + 'px'});
    }
    else if (Lightbox.rtl == 1 && $.browser.msie) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'left': '0px'});
    }

    // Force navigation links to always be displayed
    if (s.force_show_nav) {
      $('#prevLink, #nextLink').addClass("force_show_nav");
    }

  },

  // initList()
  // Loops through anchor tags looking for 'lightbox', 'lightshow' and
  // 'lightframe', etc, references and applies onclick events to appropriate
  // links. You can rerun after dynamically adding images w/ajax.
  initList : function(context) {

    if (context == undefined || context == null) {
      context = document;
    }

    // Attach lightbox to any links with rel 'lightbox', 'lightshow' or
    // 'lightframe', etc.
    $("a[rel^='lightbox']:not(.lightbox-processed), area[rel^='lightbox']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightshow']:not(.lightbox-processed), area[rel^='lightshow']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, true, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightframe']:not(.lightbox-processed), area[rel^='lightframe']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, true, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    if (Lightbox.enableVideo) {
      $("a[rel^='lightvideo']:not(.lightbox-processed), area[rel^='lightvideo']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
        if (Lightbox.disableCloseClick) {
          $('#lightbox').unbind('click');
          $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
        }
        Lightbox.start(this, false, false, true, false);
        if (e.preventDefault) { e.preventDefault(); }
        return false;
      });
    }
    $("a[rel^='lightmodal']:not(.lightbox-processed), area[rel^='lightmodal']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      $('#lightbox').unbind('click');
      // Add classes from the link to the lightbox div - don't include lightbox-processed
      $('#lightbox').addClass($(this).attr('class'));
      $('#lightbox').removeClass('lightbox-processed');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("#lightboxAutoModal:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      Lightbox.auto_modal = true;
      $('#lightbox').unbind('click');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
  },

  // start()
  // Display overlay and lightbox. If image is part of a set, add siblings to
  // imageArray.
  start: function(imageLink, slideshow, lightframe, lightvideo, lightmodal) {

    Lightbox.isPaused = !Lightbox.autoStart;

    // Replaces hideSelectBoxes() and hideFlash() calls in original lightbox2.
    Lightbox.toggleSelectsFlash('hide');

    // Stretch overlay to fill page and fade in.
    var arrayPageSize = Lightbox.getPageSize();
    $("#lightbox2-overlay").hide().css({
      'width': '100%',
      'zIndex': '10090',
      'height': arrayPageSize[1] + 'px',
      'backgroundColor' : '#' + Lightbox.overlayColor
    });
    // Detect OS X FF2 opacity + flash issue.
    if (lightvideo && this.detectMacFF2()) {
      $("#lightbox2-overlay").removeClass("overlay_default");
      $("#lightbox2-overlay").addClass("overlay_macff2");
      $("#lightbox2-overlay").css({'opacity' : null});
    }
    else {
      $("#lightbox2-overlay").removeClass("overlay_macff2");
      $("#lightbox2-overlay").addClass("overlay_default");
      $("#lightbox2-overlay").css({'opacity' : Lightbox.overlayOpacity});
    }
    $("#lightbox2-overlay").fadeIn(Lightbox.fadeInSpeed);


    Lightbox.isSlideshow = slideshow;
    Lightbox.isLightframe = lightframe;
    Lightbox.isVideo = lightvideo;
    Lightbox.isModal = lightmodal;
    Lightbox.imageArray = [];
    Lightbox.imageNum = 0;

    var anchors = $(imageLink.tagName);
    var anchor = null;
    var rel_parts = Lightbox.parseRel(imageLink);
    var rel = rel_parts["rel"];
    var rel_group = rel_parts["group"];
    var title = (rel_parts["title"] ? rel_parts["title"] : imageLink.title);
    var rel_style = null;
    var i = 0;

    if (rel_parts["flashvars"]) {
      Lightbox.flvFlashvars = Lightbox.flvFlashvars + '&' + rel_parts["flashvars"];
    }

    // Set the title for image alternative text.
    var alt = imageLink.title;
    if (!alt) {
      var img = $(imageLink).find("img");
      if (img && $(img).attr("alt")) {
        alt = $(img).attr("alt");
      }
      else {
        alt = title;
      }
    }

    if ($(imageLink).attr('id') == 'lightboxAutoModal') {
      rel_style = rel_parts["style"];
      Lightbox.imageArray.push(['#lightboxAutoModal > *', title, alt, rel_style, 1]);
    }
    else {
      // Handle lightbox images with no grouping.
      if ((rel == 'lightbox' || rel == 'lightshow') && !rel_group) {
        Lightbox.imageArray.push([imageLink.href, title, alt]);
      }

      // Handle other items with no grouping.
      else if (!rel_group) {
        rel_style = rel_parts["style"];
        Lightbox.imageArray.push([imageLink.href, title, alt, rel_style]);
      }

      // Handle grouped items.
      else {

        // Loop through anchors and add them to imageArray.
        for (i = 0; i < anchors.length; i++) {
          anchor = anchors[i];
          if (anchor.href && typeof(anchor.href) == "string" && $(anchor).attr('rel')) {
            var rel_data = Lightbox.parseRel(anchor);
            var anchor_title = (rel_data["title"] ? rel_data["title"] : anchor.title);
            img_alt = anchor.title;
            if (!img_alt) {
              var anchor_img = $(anchor).find("img");
              if (anchor_img && $(anchor_img).attr("alt")) {
                img_alt = $(anchor_img).attr("alt");
              }
              else {
                img_alt = title;
              }
            }
            if (rel_data["rel"] == rel) {
              if (rel_data["group"] == rel_group) {
                if (Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) {
                  rel_style = rel_data["style"];
                }
                Lightbox.imageArray.push([anchor.href, anchor_title, img_alt, rel_style]);
              }
            }
          }
        }

        // Remove duplicates.
        for (i = 0; i < Lightbox.imageArray.length; i++) {
          for (j = Lightbox.imageArray.length-1; j > i; j--) {
            if (Lightbox.imageArray[i][0] == Lightbox.imageArray[j][0]) {
              Lightbox.imageArray.splice(j,1);
            }
          }
        }
        while (Lightbox.imageArray[Lightbox.imageNum][0] != imageLink.href) {
          Lightbox.imageNum++;
        }
      }
    }

    if (Lightbox.isSlideshow && Lightbox.showPlayPause && Lightbox.isPaused) {
      $('#lightshowPlay').show();
      $('#lightshowPause').hide();
    }

    // Calculate top and left offset for the lightbox.
    var arrayPageScroll = Lightbox.getPageScroll();
    var lightboxTop = arrayPageScroll[1] + (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
    var lightboxLeft = arrayPageScroll[0];
    $('#frameContainer, #modalContainer, #lightboxImage').hide();
    $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
    $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();
    $('#outerImageContainer').css({'width': '250px', 'height': '250px'});
    $('#lightbox').css({
      'zIndex': '10500',
      'top': lightboxTop + 'px',
      'left': lightboxLeft + 'px'
    }).show();

    Lightbox.total = Lightbox.imageArray.length;
    Lightbox.changeData(Lightbox.imageNum);
  },

  // changeData()
  // Hide most elements and preload image in preparation for resizing image
  // container.
  changeData: function(imageNum, zoomIn) {

    if (Lightbox.inprogress === false) {
      if (Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) {
        if (imageNum >= Lightbox.total) imageNum = 0;
        if (imageNum < 0) imageNum = Lightbox.total - 1;
      }

      if (Lightbox.isSlideshow) {
        for (var i = 0; i < Lightbox.slideIdCount; i++) {
          window.clearTimeout(Lightbox.slideIdArray[i]);
        }
      }
      Lightbox.inprogress = true;
      Lightbox.activeImage = imageNum;

      if (Lightbox.disableResize && !Lightbox.isSlideshow) {
        zoomIn = true;
      }
      Lightbox.isZoomedIn = zoomIn;


      // Hide elements during transition.
      $('#loading').css({'zIndex': '10500'}).show();
      if (!Lightbox.alternative_layout) {
        $('#imageContainer').hide();
      }
      $('#frameContainer, #modalContainer, #lightboxImage').hide();
      $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
      $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();

      // Preload image content, but not iframe pages.
      if (!Lightbox.isLightframe && !Lightbox.isVideo && !Lightbox.isModal) {
        $("#lightbox #imageDataContainer").removeClass('lightbox2-alt-layout-data');
        imgPreloader = new Image();
        imgPreloader.onerror = function() { Lightbox.imgNodeLoadingError(this); };

        imgPreloader.onload = function() {
          var photo = document.getElementById('lightboxImage');
          photo.src = Lightbox.imageArray[Lightbox.activeImage][0];
          photo.alt = Lightbox.imageArray[Lightbox.activeImage][2];

          var imageWidth = imgPreloader.width;
          var imageHeight = imgPreloader.height;

          // Resize code.
          var arrayPageSize = Lightbox.getPageSize();
          var targ = { w:arrayPageSize[2] - (Lightbox.borderSize * 2), h:arrayPageSize[3] - (Lightbox.borderSize * 6) - (Lightbox.infoHeight * 4) - (arrayPageSize[3] / 10) };
          var orig = { w:imgPreloader.width, h:imgPreloader.height };

          // Image is very large, so show a smaller version of the larger image
          // with zoom button.
          if (zoomIn !== true) {
            var ratio = 1.0; // Shrink image with the same aspect.
            $('#bottomNavZoomOut, #bottomNavZoom').hide();
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              ratio = ((targ.w / orig.w) < (targ.h / orig.h)) ? targ.w / orig.w : targ.h / orig.h;
              if (!Lightbox.disableZoom && !Lightbox.isSlideshow) {
                $('#bottomNavZoom').css({'zIndex': '10500'}).show();
              }
            }

            imageWidth  = Math.floor(orig.w * ratio);
            imageHeight = Math.floor(orig.h * ratio);
          }

          else {
            $('#bottomNavZoom').hide();
            // Only display zoom out button if the image is zoomed in already.
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              // Only display zoom out button if not a slideshow and if the
              // buttons aren't disabled.
              if (!Lightbox.disableResize && Lightbox.isSlideshow === false && !Lightbox.disableZoom) {
                $('#bottomNavZoomOut').css({'zIndex': '10500'}).show();
              }
            }
          }

          photo.style.width = (imageWidth) + 'px';
          photo.style.height = (imageHeight) + 'px';
          Lightbox.resizeContainer(imageWidth, imageHeight);

          // Clear onLoad, IE behaves irratically with animated gifs otherwise.
          imgPreloader.onload = function() {};
        };

        imgPreloader.src = Lightbox.imageArray[Lightbox.activeImage][0];
        imgPreloader.alt = Lightbox.imageArray[Lightbox.activeImage][2];
      }

      // Set up frame size, etc.
      else if (Lightbox.isLightframe) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var src = Lightbox.imageArray[Lightbox.activeImage][0];
        $('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

        // Enable swf support in Gecko browsers.
        if ($.browser.mozilla && src.indexOf('.swf') != -1) {
          setTimeout(function () {
            document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
          }, 1000);
        }

        if (!Lightbox.iframe_border) {
          $('#lightboxFrame').css({'border': 'none'});
          $('#lightboxFrame').attr('frameborder', '0');
        }
        var iframe = document.getElementById('lightboxFrame');
        var iframeStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        iframe = Lightbox.setStyles(iframe, iframeStyles);
        Lightbox.resizeContainer(parseInt(iframe.width, 10), parseInt(iframe.height, 10));
      }
      else if (Lightbox.isVideo || Lightbox.isModal) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var container = document.getElementById('modalContainer');
        var modalStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        container = Lightbox.setStyles(container, modalStyles);
        if (Lightbox.isVideo) {
          Lightbox.modalHeight =  parseInt(container.height, 10) - 10;
          Lightbox.modalWidth =  parseInt(container.width, 10) - 10;
          Lightvideo.startVideo(Lightbox.imageArray[Lightbox.activeImage][0]);
        }
        Lightbox.resizeContainer(parseInt(container.width, 10), parseInt(container.height, 10));
      }
    }
  },

  // imgNodeLoadingError()
  imgNodeLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    var original_image = Lightbox.imageArray[Lightbox.activeImage][0];
    if (s.display_image_size !== "") {
      original_image = original_image.replace(new RegExp("."+s.display_image_size), "");
    }
    Lightbox.imageArray[Lightbox.activeImage][0] = original_image;
    image.onerror = function() { Lightbox.imgLoadingError(image); };
    image.src = original_image;
  },

  // imgLoadingError()
  imgLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    Lightbox.imageArray[Lightbox.activeImage][0] = s.default_image;
    image.src = s.default_image;
  },

  // resizeContainer()
  resizeContainer: function(imgWidth, imgHeight) {

    imgWidth = (imgWidth < Lightbox.minWidth ? Lightbox.minWidth : imgWidth);

    this.widthCurrent = $('#outerImageContainer').width();
    this.heightCurrent = $('#outerImageContainer').height();

    var widthNew = (imgWidth  + (Lightbox.borderSize * 2));
    var heightNew = (imgHeight  + (Lightbox.borderSize * 2));

    // Scalars based on change from old to new.
    this.xScale = ( widthNew / this.widthCurrent) * 100;
    this.yScale = ( heightNew / this.heightCurrent) * 100;

    // Calculate size difference between new and old image, and resize if
    // necessary.
    wDiff = this.widthCurrent - widthNew;
    hDiff = this.heightCurrent - heightNew;

    $('#modalContainer').css({'width': imgWidth, 'height': imgHeight});
    // Detect animation sequence.
    if (Lightbox.resizeSequence) {
      var animate1 = {width: widthNew};
      var animate2 = {height: heightNew};
      if (Lightbox.resizeSequence == 2) {
        animate1 = {height: heightNew};
        animate2 = {width: widthNew};
      }
      $('#outerImageContainer').animate(animate1, Lightbox.resizeSpeed).animate(animate2, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }
    // Simultaneous.
    else {
      $('#outerImageContainer').animate({'width': widthNew, 'height': heightNew}, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }

    // If new and old image are same size and no scaling transition is necessary
    // do a quick pause to prevent image flicker.
    if ((hDiff === 0) && (wDiff === 0)) {
      if ($.browser.msie) {
        Lightbox.pause(250);
      }
      else {
        Lightbox.pause(100);
      }
    }

    var s = Drupal.settings.lightbox2;
    if (!s.use_alt_layout) {
      $('#prevLink, #nextLink').css({'height': imgHeight + 'px'});
    }
    $('#imageDataContainer').css({'width': widthNew + 'px'});
  },

  // showData()
  // Display image and begin preloading neighbors.
  showData: function() {
    $('#loading').hide();

    if (Lightbox.isLightframe || Lightbox.isVideo || Lightbox.isModal) {
      Lightbox.updateDetails();
      if (Lightbox.isLightframe) {
        $('#frameContainer').show();
        if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
          $('#lightboxFrame').css({'zIndex': '10500'}).show();
        }
        else {
          $('#lightboxFrame').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
        }
      }
      else {
        if (Lightbox.isVideo) {
          $("#modalContainer").html(Lightbox.modalHTML).click(function(){return false;}).css('zIndex', '10500').show();
        }
        else {
          var src = unescape(Lightbox.imageArray[Lightbox.activeImage][0]);
          if (Lightbox.imageArray[Lightbox.activeImage][4]) {
            $(src).appendTo("#modalContainer");
            $('#modalContainer').css({'zIndex': '10500'}).show();
          }
          else {
            // Use a callback to show the new image, otherwise you get flicker.
            $("#modalContainer").hide().load(src, function () {$('#modalContainer').css({'zIndex': '10500'}).show();});
          }
          $('#modalContainer').unbind('click');
        }
        // This might be needed in the Lightframe section above.
        //$('#modalContainer').css({'zIndex': '10500'}).show();
      }
    }

    // Handle display of image content.
    else {
      $('#imageContainer').show();
      if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
        $('#lightboxImage').css({'zIndex': '10500'}).show();
      }
      else {
        $('#lightboxImage').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
      }
      Lightbox.updateDetails();
      this.preloadNeighborImages();
    }
    Lightbox.inprogress = false;

    // Slideshow specific stuff.
    if (Lightbox.isSlideshow) {
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        if (Lightbox.autoExit) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.end('slideshow');}, Lightbox.slideInterval);
        }
      }
      else {
        if (!Lightbox.isPaused && Lightbox.total > 1) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.changeData(Lightbox.activeImage + 1);}, Lightbox.slideInterval);
        }
      }
      if (Lightbox.showPlayPause && Lightbox.total > 1 && !Lightbox.isPaused) {
        $('#lightshowPause').show();
        $('#lightshowPlay').hide();
      }
      else if (Lightbox.showPlayPause && Lightbox.total > 1) {
        $('#lightshowPause').hide();
        $('#lightshowPlay').show();
      }
    }

    // Adjust the page overlay size.
    var arrayPageSize = Lightbox.getPageSize();
    var arrayPageScroll = Lightbox.getPageScroll();
    var pageHeight = arrayPageSize[1];
    if (Lightbox.isZoomedIn && arrayPageSize[1] > arrayPageSize[3]) {
      var lightboxTop = (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
      pageHeight = pageHeight + arrayPageScroll[1] + lightboxTop;
    }
    $('#lightbox2-overlay').css({'height': pageHeight + 'px', 'width': arrayPageSize[0] + 'px'});

    // Gecko browsers (e.g. Firefox, SeaMonkey, etc) don't handle pdfs as
    // expected.
    if ($.browser.mozilla) {
      if (Lightbox.imageArray[Lightbox.activeImage][0].indexOf(".pdf") != -1) {
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }
  },

  // updateDetails()
  // Display caption, image number, and bottom nav.
  updateDetails: function() {

    $("#imageDataContainer").hide();

    var s = Drupal.settings.lightbox2;

    if (s.show_caption) {
      var caption = Lightbox.filterXSS(Lightbox.imageArray[Lightbox.activeImage][1]);
      if (!caption) caption = '';
      $('#caption').html(caption).css({'zIndex': '10500'}).show();
    }

    // If image is part of set display 'Image x of x'.
    var numberDisplay = null;
    if (s.image_count && Lightbox.total > 1) {
      var currentImage = Lightbox.activeImage + 1;
      if (!Lightbox.isLightframe && !Lightbox.isModal && !Lightbox.isVideo) {
        numberDisplay = s.image_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else if (Lightbox.isVideo) {
        numberDisplay = s.video_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else {
        numberDisplay = s.page_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      $('#numberDisplay').html(numberDisplay).css({'zIndex': '10500'}).show();
    }
    else {
      $('#numberDisplay').hide();
    }

    $("#imageDataContainer").hide().slideDown(Lightbox.slideDownSpeed, function() {
      $("#bottomNav").show();
    });
    if (Lightbox.rtl == 1) {
      $("#bottomNav").css({'float': 'left'});
    }
    Lightbox.updateNav();
  },

  // updateNav()
  // Display appropriate previous and next hover navigation.
  updateNav: function() {

    $('#hoverNav').css({'zIndex': '10500'}).show();
    var prevLink = '#prevLink';
    var nextLink = '#nextLink';

    // Slideshow is separated as we need to show play / pause button.
    if (Lightbox.isSlideshow) {
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage !== 0) {
        $(prevLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnPrevClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage != (Lightbox.total - 1)) {
        $(nextLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnNextClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // All other types of content.
    else {

      if ((Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) && !Lightbox.alternative_layout) {
        $('#frameHoverNav').css({'zIndex': '10500'}).show();
        $('#hoverNav').css({'zIndex': '10500'}).hide();
        prevLink = '#framePrevLink';
        nextLink = '#frameNextLink';
      }

      // If not first image in set, display prev image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage !== 0) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(prevLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage != (Lightbox.total - 1)) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(nextLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // Don't enable keyboard shortcuts so forms will work.
    if (!Lightbox.isModal) {
      this.enableKeyboardNav();
    }
  },


  // enableKeyboardNav()
  enableKeyboardNav: function() {
    $(document).bind("keydown", this.keyboardAction);
  },

  // disableKeyboardNav()
  disableKeyboardNav: function() {
    $(document).unbind("keydown", this.keyboardAction);
  },

  // keyboardAction()
  keyboardAction: function(e) {
    if (e === null) { // IE.
      keycode = event.keyCode;
      escapeKey = 27;
    }
    else { // Mozilla.
      keycode = e.keyCode;
      escapeKey = e.DOM_VK_ESCAPE;
    }

    key = String.fromCharCode(keycode).toLowerCase();

    // Close lightbox.
    if (Lightbox.checkKey(Lightbox.keysClose, key, keycode)) {
      Lightbox.end('forceClose');
    }
    // Display previous image (p, <-).
    else if (Lightbox.checkKey(Lightbox.keysPrevious, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage !== 0) {
        Lightbox.changeData(Lightbox.activeImage - 1);
      }

    }
    // Display next image (n, ->).
    else if (Lightbox.checkKey(Lightbox.keysNext, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage != (Lightbox.total - 1)) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    // Zoom in.
    else if (Lightbox.checkKey(Lightbox.keysZoom, key, keycode) && !Lightbox.disableResize && !Lightbox.disableZoom && !Lightbox.isSlideshow && !Lightbox.isLightframe) {
      if (Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, false);
      }
      else if (!Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, true);
      }
      return false;
    }
    // Toggle play / pause (space).
    else if (Lightbox.checkKey(Lightbox.keysPlayPause, key, keycode) && Lightbox.isSlideshow) {

      if (Lightbox.isPaused) {
        Lightbox.togglePlayPause("lightshowPlay", "lightshowPause");
      }
      else {
        Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
      }
      return false;
    }
  },

  preloadNeighborImages: function() {

    if ((Lightbox.total - 1) > Lightbox.activeImage) {
      preloadNextImage = new Image();
      preloadNextImage.src = Lightbox.imageArray[Lightbox.activeImage + 1][0];
    }
    if (Lightbox.activeImage > 0) {
      preloadPrevImage = new Image();
      preloadPrevImage.src = Lightbox.imageArray[Lightbox.activeImage - 1][0];
    }

  },

  end: function(caller) {
    var closeClick = (caller == 'slideshow' ? false : true);
    if (Lightbox.isSlideshow && Lightbox.isPaused && !closeClick) {
      return;
    }
    // To prevent double clicks on navigation links.
    if (Lightbox.inprogress === true && caller != 'forceClose') {
      return;
    }
    Lightbox.disableKeyboardNav();
    $('#lightbox').hide();
    $("#lightbox2-overlay").fadeOut();
    Lightbox.isPaused = true;
    Lightbox.inprogress = false;
    // Replaces calls to showSelectBoxes() and showFlash() in original
    // lightbox2.
    Lightbox.toggleSelectsFlash('visible');
    if (Lightbox.isSlideshow) {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
      $('#lightshowPause, #lightshowPlay').hide();
    }
    else if (Lightbox.isLightframe) {
      $('#frameContainer').empty().hide();
    }
    else if (Lightbox.isVideo || Lightbox.isModal) {
      if (!Lightbox.auto_modal) {
        $('#modalContainer').hide().html("");
      }
      Lightbox.auto_modal = false;
    }
  },


  // getPageScroll()
  // Returns array with x,y page scroll values.
  // Core code from - quirksmode.com.
  getPageScroll : function() {

    var xScroll, yScroll;

    if (self.pageYOffset || self.pageXOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {  // Explorer 6 Strict.
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    }
    else if (document.body) {// All other Explorers.
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }

    arrayPageScroll = [xScroll,yScroll];
    return arrayPageScroll;
  },

  // getPageSize()
  // Returns array with page width, height and window width, height.
  // Core code from - quirksmode.com.
  // Edit for Firefox by pHaez.

  getPageSize : function() {

    var xScroll, yScroll;

    if (window.innerHeight && window.scrollMaxY) {
      xScroll = window.innerWidth + window.scrollMaxX;
      yScroll = window.innerHeight + window.scrollMaxY;
    }
    else if (document.body.scrollHeight > document.body.offsetHeight) { // All but Explorer Mac.
      xScroll = document.body.scrollWidth;
      yScroll = document.body.scrollHeight;
    }
    else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari.
      xScroll = document.body.offsetWidth;
      yScroll = document.body.offsetHeight;
    }

    var windowWidth, windowHeight;

    if (self.innerHeight) { // All except Explorer.
      if (document.documentElement.clientWidth) {
        windowWidth = document.documentElement.clientWidth;
      }
      else {
        windowWidth = self.innerWidth;
      }
      windowHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode.
      windowWidth = document.documentElement.clientWidth;
      windowHeight = document.documentElement.clientHeight;
    }
    else if (document.body) { // Other Explorers.
      windowWidth = document.body.clientWidth;
      windowHeight = document.body.clientHeight;
    }
    // For small pages with total height less than height of the viewport.
    if (yScroll < windowHeight) {
      pageHeight = windowHeight;
    }
    else {
      pageHeight = yScroll;
    }
    // For small pages with total width less than width of the viewport.
    if (xScroll < windowWidth) {
      pageWidth = xScroll;
    }
    else {
      pageWidth = windowWidth;
    }
    arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
    return arrayPageSize;
  },


  // pause(numberMillis)
  pause : function(ms) {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while (curDate - date < ms);
  },


  // toggleSelectsFlash()
  // Hide / unhide select lists and flash objects as they appear above the
  // lightbox in some browsers.
  toggleSelectsFlash: function (state) {
    if (state == 'visible') {
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").show();
    }
    else if (state == 'hide') {
      $("select:visible, embed:visible, object:visible").not('#lightboxAutoModal select, #lightboxAutoModal embed, #lightboxAutoModal object').addClass("lightbox_hidden");
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").hide();
    }
  },


  // parseRel()
  parseRel: function (link) {
    var parts = [];
    parts["rel"] = parts["title"] = parts["group"] = parts["style"] = parts["flashvars"] = null;
    if (!$(link).attr('rel')) return parts;
    parts["rel"] = $(link).attr('rel').match(/\w+/)[0];

    if ($(link).attr('rel').match(/\[(.*)\]/)) {
      var info = $(link).attr('rel').match(/\[(.*?)\]/)[1].split('|');
      parts["group"] = info[0];
      parts["style"] = info[1];
      if (parts["style"] != undefined && parts["style"].match(/flashvars:\s?(.*?);/)) {
        parts["flashvars"] = parts["style"].match(/flashvars:\s?(.*?);/)[1];
      }
    }
    if ($(link).attr('rel').match(/\[.*\]\[(.*)\]/)) {
      parts["title"] = $(link).attr('rel').match(/\[.*\]\[(.*)\]/)[1];
    }
    return parts;
  },

  // setStyles()
  setStyles: function(item, styles) {
    item.width = Lightbox.iframe_width;
    item.height = Lightbox.iframe_height;
    item.scrolling = "auto";

    if (!styles) return item;
    var stylesArray = styles.split(';');
    for (var i = 0; i< stylesArray.length; i++) {
      if (stylesArray[i].indexOf('width:') >= 0) {
        var w = stylesArray[i].replace('width:', '');
        item.width = jQuery.trim(w);
      }
      else if (stylesArray[i].indexOf('height:') >= 0) {
        var h = stylesArray[i].replace('height:', '');
        item.height = jQuery.trim(h);
      }
      else if (stylesArray[i].indexOf('scrolling:') >= 0) {
        var scrolling = stylesArray[i].replace('scrolling:', '');
        item.scrolling = jQuery.trim(scrolling);
      }
      else if (stylesArray[i].indexOf('overflow:') >= 0) {
        var overflow = stylesArray[i].replace('overflow:', '');
        item.overflow = jQuery.trim(overflow);
      }
    }
    return item;
  },


  // togglePlayPause()
  // Hide the pause / play button as appropriate.  If pausing the slideshow also
  // clear the timers, otherwise move onto the next image.
  togglePlayPause: function(hideId, showId) {
    if (Lightbox.isSlideshow && hideId == "lightshowPause") {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
    }
    $('#' + hideId).hide();
    $('#' + showId).show();

    if (hideId == "lightshowPlay") {
      Lightbox.isPaused = false;
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        Lightbox.end();
      }
      else if (Lightbox.total > 1) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    else {
      Lightbox.isPaused = true;
    }
  },

  triggerLightbox: function (rel_type, rel_group) {
    if (rel_type.length) {
      if (rel_group && rel_group.length) {
        $("a[rel^='" + rel_type +"\[" + rel_group + "\]'], area[rel^='" + rel_type +"\[" + rel_group + "\]']").eq(0).trigger("click");
      }
      else {
        $("a[rel^='" + rel_type +"'], area[rel^='" + rel_type +"']").eq(0).trigger("click");
      }
    }
  },

  detectMacFF2: function() {
    var ua = navigator.userAgent.toLowerCase();
    if (/firefox[\/\s](\d+\.\d+)/.test(ua)) {
      var ffversion = new Number(RegExp.$1);
      if (ffversion < 3 && ua.indexOf('mac') != -1) {
        return true;
      }
    }
    return false;
  },

  checkKey: function(keys, key, code) {
    return (jQuery.inArray(key, keys) != -1 || jQuery.inArray(String(code), keys) != -1);
  },

  filterXSS: function(str, allowed_tags) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str,
        'allowed_tags' : allowed_tags
      },
      type: "POST",
      async: false,
      dataType:  "json",
      success: function(data) {
        output = data;
      }
    });
    return output;
  }

};

// Initialize the lightbox.
Drupal.behaviors.initLightbox = function (context) {
  $('body:not(.lightbox-processed)', context).addClass('lightbox-processed').each(function() {
    Lightbox.initialize();
    return false; // Break the each loop.
  });

  // Attach lightbox to any links with lightbox rels.
  Lightbox.initList(context);
  $('#lightboxAutoModal', context).triggerHandler('click');
};

;
// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

/**
 * Checks to see if the cron should be automatically run.
 */
Drupal.behaviors.cronCheck = function(context) {
  if (Drupal.settings.cron.runNext || false) {
    $('body:not(.cron-check-processed)', context).addClass('cron-check-processed').each(function() {
      // Only execute the cron check if its the right time.
      if (Math.round(new Date().getTime() / 1000.0) >= Drupal.settings.cron.runNext) {
        $.get(Drupal.settings.cron.basePath + '/run-cron-check');
      }
    });
  }
};

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
Drupal.behaviors.template = function(){ 
	
	/**
	  * Set sitename 
	  */
	var ift = {
		/**
		  * Initialise functions within the  sitename
		  */
		init : function() {
			ift.searchReplace();
			ift.buttonReplace();
		},
		
		/**
		  *  Puts title text in the field on the search box
		  */	
		searchReplace : function() {

			var searchBox = $("#edit-search-block-form-1");
			var searchBoxDefault = "Enter keywords";
			searchBox.attr("value", searchBoxDefault);
				
			searchBox.focus(function(){  
			  if(jQuery.trim($(this).attr("value")) == searchBoxDefault) $(this).attr("value", "");  
			});  
			
			searchBox.blur(function(){  
			  if(jQuery.trim($(this).attr("value")) == "") $(this).attr("value", searchBoxDefault);  
			})
		},
		
		/**
		  *  Button Replacement Script 
		  */
		buttonReplace : function() {
    	$('span.buttonreplace input[type=image]').show().
    	 click(function (e) {
    	 // Pass the click on to our button sibing.
    	   $(this).siblings().click();
    	   return false;
    	   });
    	$('span.buttonreplace input[type=submit]').hide().
    	 click(function (e) {
    	   // The second click() function was sending a second click event
    	   //  which broke some forms, so I disabled it, and voila!
    	    //$(this).click();
    	   return true;
    	   });
	 	}
		
  }
	
	/**
	  *  Initialise sitename
	  */
	ift.init();
};
// $Id: uc_cart_block.js,v 1.8.2.5 2009/09/21 14:34:47 islandusurper Exp $

/**
 * @file
 * Adds effects and behaviors to the cart block.
 */

/**
 * Set the behavior to (un)collapse the cart block on a click
 */
Drupal.behaviors.ucCollapseBlock = function(context) {
  $('.cart-block-title-bar:not(.ucCollapseBlock-processed)', context).addClass('ucCollapseBlock-processed').click(
    function() {
      cart_block_toggle();
    }
  );
}

/**
 * Collapse the shopping cart block at page load.
 */
$(document).ready(
  function() {
    if (Drupal.settings.ucCollapsedBlock == true) {
      // Add the appropriate title bar class.
      $('.cart-block-title-bar').addClass('cart-block-toggle');

      // Add the appropriate arrow class.
      $('.cart-block-arrow').removeClass('arrow-down').addClass('arrow-up');
    }
    else {
      // Add the appropriate arrow class.
      $('.cart-block-arrow').removeClass('arrow-up').addClass('arrow-down');
    }
  }
);

/**
 * Toggle the shopping cart block open and closed.
 */
function cart_block_toggle() {
  // Toggle the display of the cart contents table.
  $('#cart-block-contents').toggle();

  // Toggle the class of the cart block arrow.
  if ($('.cart-block-arrow').hasClass('arrow-up')) {
    $('.cart-block-arrow').removeClass('arrow-up').addClass('arrow-down');
  }
  else {
    $('.cart-block-arrow').removeClass('arrow-down').addClass('arrow-up');
  }
}
;
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

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

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

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

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

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

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

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

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

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

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

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

  var $view = $(target);

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

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

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


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

        return false;
      });

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

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Design and data by The Monotype Corporation. © 1993. Microsoft Corporation. All
 * rights reserved.
 * 
 * Trademark:
 * News Gothic is a trademark of The Monotype Corporation.
 */
Cufon.registerFont({"w":1280,"face":{"font-family":"News Gothic MT","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 4 2 2 3 2 2 4","ascent":"1638","descent":"-410","x-height":"19","bbox":"-53 -1623 1990 440.412","underline-thickness":"102","underline-position":"-119","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":640},"!":{"d":"218,-1530r307,0r-64,984r-188,0xm218,-329r299,0r0,329r-299,0r0,-329","w":748},"\"":{"d":"165,-1039r-53,-273r0,-248r306,0r0,248r-46,273r-207,0xm616,-1039r-53,-273r0,-248r306,0r0,248r-46,273r-207,0","w":981},"#":{"d":"77,-1017r308,0r84,-383r189,0r-84,383r355,0r82,-383r189,0r-82,383r170,0r0,189r-206,0r-63,303r269,0r0,189r-305,0r-82,380r-190,0r83,-380r-359,0r-78,380r-191,0r81,-380r-170,0r0,-189r209,0r63,-303r-272,0r0,-189xm538,-828r-63,302r356,0r62,-302r-355,0","w":1366},"$":{"d":"610,-651v-263,-57,-467,-193,-467,-475v0,-207,148,-345,312,-401v34,-12,86,-23,155,-33r0,-63r148,0r0,63v199,41,296,107,424,241r-210,146v-63,-56,-135,-99,-214,-128r0,375v196,48,319,125,410,256v83,121,90,301,24,442v-55,118,-164,199,-290,238v-32,9,-80,16,-144,21r0,269r-148,0r0,-269v-256,-34,-379,-125,-505,-305r217,-151v85,118,181,187,288,207r0,-433xm610,-1315v-123,19,-215,69,-215,180v0,37,14,69,41,97v27,28,85,54,174,78r0,-355xm758,-211v124,-15,214,-82,214,-201v0,-122,-88,-168,-214,-205r0,406","w":1386},"%":{"d":"39,-910v7,-296,161,-542,452,-542v78,0,155,25,233,73v137,84,254,93,424,42v167,-50,187,-77,298,-203r161,0r-1136,1967r-170,0r990,-1706v-175,77,-277,115,-450,75v66,339,-132,676,-442,676v-213,0,-365,-160,-360,-382xm614,-1089v2,-114,-45,-190,-142,-190v-63,0,-109,36,-138,107v-38,95,-57,193,-57,294v0,97,47,171,131,171v158,0,204,-200,206,-382xm1060,-33v8,-284,162,-535,451,-536v223,-1,372,156,367,384v-7,292,-165,536,-462,538v-216,1,-362,-160,-356,-386xm1639,-193v0,-123,-44,-205,-145,-205v-107,0,-136,91,-166,196v-21,70,-28,140,-28,205v0,97,51,173,133,173v49,0,92,-25,129,-76v51,-71,77,-168,77,-293","w":1921},"&":{"d":"629,30v-266,5,-518,-170,-507,-425v11,-244,136,-365,313,-462v-74,-143,-111,-256,-111,-339v0,-210,189,-364,418,-364v207,0,366,130,367,320v0,79,-26,156,-79,228v-53,72,-140,148,-261,227v76,103,169,209,278,318v59,-88,113,-201,160,-338r222,69v-44,188,-92,306,-181,440v85,56,155,83,240,81r26,233v-205,26,-307,-37,-446,-125v-143,79,-255,134,-439,137xm733,-1373v-101,0,-179,77,-179,176v0,60,29,135,86,225v93,-51,156,-96,190,-136v34,-40,52,-81,52,-122v2,-79,-68,-143,-149,-143xm409,-441v0,111,130,227,247,227v75,0,145,-23,212,-69v-108,-115,-210,-237,-306,-367v-102,59,-153,129,-153,209","w":1599},"'":{"d":"145,-1039r-53,-273r0,-248r306,0r0,248r-46,273r-207,0","w":492},"(":{"d":"712,-1415v-199,203,-366,462,-366,858v0,226,66,423,155,565v33,53,104,144,211,273r-107,141v-183,-122,-319,-265,-417,-425v-185,-303,-190,-805,-11,-1115v90,-157,224,-302,405,-435","w":748},")":{"d":"153,-1553v241,172,367,310,471,575v97,247,96,582,-1,826v-100,251,-251,414,-481,576r-118,-135v142,-165,203,-245,288,-424v96,-202,105,-543,32,-773v-71,-223,-156,-339,-320,-508","w":748},"*":{"d":"356,-1553r122,371r126,-371r195,111r-270,290r384,-86r0,228r-384,-80r270,283r-195,117r-126,-374r-122,374r-200,-117r272,-283r-387,80r0,-228r387,86r-272,-290","w":961},"+":{"d":"125,-783r449,0r0,-451r215,0r0,451r451,0r0,215r-451,0r0,447r-215,0r0,-447r-449,0r0,-215","w":1366},",":{"d":"166,-333r300,0r0,333r-183,329r-106,0r162,-329r-173,0r0,-333","w":641},"-":{"d":"109,-677r529,0r0,255r-529,0r0,-255","w":748},".":{"d":"169,-331r300,0r0,331r-300,0r0,-331","w":641},"\/":{"d":"864,-1530r232,0r-765,1530r-232,0","w":1194},"0":{"d":"623,-1560v181,0,323,60,426,180v103,120,154,325,154,613v0,289,-50,494,-151,615v-101,121,-235,182,-404,182v-264,0,-400,-112,-485,-278v-63,-124,-91,-294,-91,-506v0,-292,51,-499,152,-622v101,-123,234,-184,399,-184xm829,-1206v-85,-115,-218,-142,-331,-52v-44,36,-77,90,-98,162v-21,72,-31,209,-31,408v0,176,27,299,80,368v85,113,213,141,329,52v46,-35,79,-88,100,-156v21,-68,31,-192,31,-373v0,-203,-28,-338,-80,-409"},"1":{"d":"194,-1378v190,-42,285,-76,432,-152r218,0r0,1309r303,0r0,221r-953,0r0,-221r384,0r0,-1036v-112,43,-240,70,-384,82r0,-203"},"2":{"d":"638,-1329v-161,8,-243,114,-287,267r-230,-61v37,-181,140,-306,279,-377v80,-40,164,-60,255,-60v330,0,613,280,462,598v-81,171,-154,214,-333,368v-178,153,-233,195,-349,344r717,0r0,250r-1063,0v-5,-229,79,-332,199,-477v35,-42,416,-374,474,-438v56,-62,99,-121,102,-212v4,-113,-104,-208,-226,-202"},"3":{"d":"857,-1136v1,-94,-109,-182,-213,-182v-100,0,-199,52,-296,156r-186,-178v163,-134,260,-210,499,-220v259,-10,482,160,482,396v0,180,-139,302,-308,341v182,90,328,207,328,435v0,255,-235,428,-526,418v-278,-10,-410,-117,-539,-294r219,-137v102,107,175,188,331,197v119,7,225,-96,225,-210v0,-73,-32,-132,-91,-184v-68,-61,-245,-79,-414,-74r0,-263v171,4,344,-16,416,-70v47,-35,73,-77,73,-131"},"4":{"d":"653,-1530r365,0r0,976r217,0r0,250r-217,0r0,304r-264,0r0,-304r-712,0r0,-250xm754,-1225r-416,671r416,0r0,-671"},"5":{"d":"632,-794v-120,0,-171,54,-245,131r-244,-47r80,-820r837,0r0,244r-609,0r-35,371v88,-57,185,-96,313,-100v268,-8,424,243,424,500v0,317,-222,550,-536,545v-252,-5,-380,-103,-514,-254r257,-135v68,99,148,148,239,148v153,0,261,-135,261,-302v0,-153,-94,-281,-228,-281"},"6":{"d":"1001,-1148v-73,-89,-133,-150,-267,-150v-251,0,-357,223,-375,495v108,-93,225,-166,396,-166v111,0,214,42,309,126v95,84,143,200,143,348v0,308,-219,525,-529,525v-149,0,-277,-50,-385,-151v-138,-128,-207,-319,-207,-574v0,-325,138,-642,331,-769v174,-114,370,-124,564,-39v65,29,129,76,190,139xm916,-473v0,-140,-93,-251,-227,-245v-162,7,-223,98,-307,229v37,160,125,270,292,275v141,4,242,-113,242,-259"},"7":{"d":"112,-1530r1036,0r0,261r-598,1269r-306,0r597,-1269r-729,0r0,-261"},"8":{"d":"59,-406v0,-213,131,-311,293,-395v-146,-79,-245,-163,-245,-359v0,-268,253,-400,532,-400v276,0,533,146,526,395v-5,196,-115,288,-263,375v174,65,311,186,311,386v0,119,-50,221,-149,306v-99,85,-243,128,-431,128v-313,0,-574,-140,-574,-436xm647,-1331v-140,0,-245,64,-245,183v0,47,16,91,49,130v33,39,91,78,174,119v89,-31,153,-69,191,-113v38,-44,56,-89,56,-134v-1,-112,-99,-185,-225,-185xm634,-209v158,0,286,-79,286,-212v0,-53,-18,-100,-55,-143v-37,-43,-113,-86,-230,-131v-111,41,-185,84,-223,128v-38,44,-57,92,-57,143v0,141,115,215,279,215"},"9":{"d":"71,-1042v7,-308,229,-518,536,-518v140,0,265,50,375,151v140,128,210,322,210,581v0,375,-138,676,-390,800v-249,123,-530,51,-699,-146r172,-219v121,158,285,206,451,93v119,-81,182,-227,197,-439v-109,93,-224,166,-394,170v-254,6,-464,-214,-458,-473xm365,-1068v0,139,91,251,221,246v161,-6,229,-102,312,-228v-40,-158,-128,-269,-292,-274v-143,-4,-241,107,-241,256"},":":{"d":"221,-1090r303,0r0,329r-303,0r0,-329xm221,-333r303,0r0,333r-303,0r0,-333","w":748},";":{"d":"220,-1090r300,0r0,328r-300,0r0,-328xm220,-330r300,0r0,330r-193,328r-107,0r164,-328r-164,0r0,-330","w":748},"<":{"d":"1238,-115r-1112,-464r0,-194r1112,-465r0,233r-819,328r819,329r0,233","w":1366},"=":{"d":"126,-1024r1112,0r0,215r-1112,0r0,-215xm126,-547r1112,0r0,216r-1112,0r0,-216","w":1366},">":{"d":"126,-1238r1112,464r0,194r-1112,465r0,-233r819,-328r-819,-329r0,-233","w":1366},"?":{"d":"472,-1305v-48,0,-137,60,-193,114r-179,-130v71,-89,136,-152,197,-187v61,-35,126,-52,197,-52v205,0,374,166,374,366v0,135,-72,261,-212,382v-96,83,-127,123,-135,278r-234,0v16,-280,33,-301,181,-460v72,-77,110,-140,110,-195v0,-60,-49,-116,-106,-116xm255,-328r298,0r0,328r-298,0r0,-328","w":961},"@":{"d":"1087,178v325,-3,546,-82,690,-265r213,0v-140,282,-452,449,-885,449v-441,0,-774,-155,-928,-442v-162,-302,-147,-696,15,-993v161,-296,466,-487,895,-487v498,0,834,284,850,764v13,378,-300,728,-656,728v-113,0,-163,-33,-187,-115v-79,77,-170,115,-275,115v-228,0,-382,-183,-382,-428v0,-148,43,-286,128,-415v107,-161,245,-241,412,-241v129,1,213,50,265,135r25,-110r264,0r-151,717v-9,45,-14,75,-14,88v-1,28,15,48,39,49v139,-27,248,-169,303,-292v33,-76,49,-154,49,-234v-3,-352,-287,-577,-676,-577v-371,0,-619,162,-741,419v-64,134,-97,273,-97,417v0,475,347,722,844,718xm1002,-972v-213,0,-299,263,-306,474v-5,146,58,246,179,246v95,0,171,-53,227,-159v56,-106,85,-216,85,-330v0,-134,-67,-231,-185,-231","w":2005},"A":{"d":"533,-1530r319,0r498,1530r-296,0r-116,-359r-489,0r-116,359r-296,0xm693,-1116r-175,534r348,0","w":1386,"k":{"y":41,"w":20,"v":43,"u":43,"Y":184,"W":35,"V":84,"U":63,"T":176,"Q":53,"O":70,"G":55,"C":53}},"B":{"d":"1380,-421v0,278,-217,421,-526,421r-673,0r0,-1530r652,0v155,0,270,24,345,71v108,68,162,166,162,294v0,188,-120,299,-287,353v147,42,224,104,284,217v30,56,43,115,43,174xm1029,-1117v-4,-124,-93,-181,-236,-181r-313,0r0,368r321,0v111,-2,232,-58,228,-187xm1066,-469v0,-144,-118,-225,-282,-225r-304,0r0,459r241,0v212,2,345,-62,345,-234","w":1473,"k":{"U":61,"A":49,".":20,",":20}},"C":{"d":"723,-244v167,0,289,-118,335,-273r277,79v-47,199,-137,312,-285,398v-83,48,-181,70,-291,70v-424,0,-662,-313,-662,-768v0,-470,229,-822,669,-822v289,0,491,162,555,418r-280,80v-34,-147,-128,-251,-290,-251v-107,0,-187,53,-249,155v-130,215,-121,722,65,858v49,36,100,56,156,56","w":1409},"D":{"d":"739,-1530v430,6,667,321,673,752v4,270,-107,505,-251,628v-101,87,-284,150,-471,150r-507,0r0,-1530r556,0xm1095,-785v6,-283,-187,-489,-460,-487r-147,0r0,1004r208,0v272,-7,394,-248,399,-517","w":1516,"k":{"Y":139,"W":23,"V":104,"A":125,".":143,",":123}},"E":{"d":"182,-1530r1026,0r0,266r-725,0r0,337r442,0r0,227r-442,0r0,436r725,0r0,264r-1026,0r0,-1530","w":1300},"F":{"d":"181,-1530r939,0r0,264r-636,0r0,400r367,0r0,264r-367,0r0,602r-303,0r0,-1530","w":1194,"k":{"r":123,"o":180,"l":-20,"e":176,"a":178,"A":201,".":348,",":328}},"G":{"d":"1149,-1030v-52,-168,-151,-274,-343,-274v-115,0,-210,39,-284,116v-74,77,-112,215,-112,416v0,256,46,391,183,489v146,104,378,45,471,-53v63,-66,86,-111,110,-217r-400,0r0,-229r642,0r0,782r-242,0r0,-187v-115,130,-259,217,-466,217v-246,0,-424,-131,-526,-316v-117,-212,-109,-712,5,-924v112,-209,322,-346,607,-350v236,-3,409,102,508,246v34,49,63,116,86,202","w":1536,"k":{".":-80,",":-100}},"H":{"d":"180,-1530r299,0r0,604r576,0r0,-604r302,0r0,1530r-302,0r0,-662r-576,0r0,662r-299,0r0,-1530","w":1536},"I":{"d":"202,-1530r300,0r0,1530r-300,0r0,-1530","w":705},"J":{"d":"425,-232v120,0,179,-115,178,-235r0,-1063r299,0r0,1063v11,281,-196,497,-460,497v-157,0,-303,-83,-438,-249r195,-173v82,95,109,160,226,160","w":1110,"k":{"y":41,"u":20,"o":41,"e":20,"a":43,"A":82,";":41,":":41,".":123,",":102}},"K":{"d":"183,-1530r301,0r0,677r551,-677r331,0r-478,591r514,939r-294,0r-395,-723r-229,286r0,437r-301,0r0,-1530","w":1450,"k":{"y":63,"w":41,"v":84,"u":102,"o":61,"e":63,"a":41,"O":61,"G":82,"C":63}},"L":{"d":"175,-1530r299,0r0,1266r632,0r0,264r-931,0r0,-1530","w":1174,"k":{"y":84,"w":102,"Y":205,"W":102,"V":143,"U":125,"T":184,"O":61,"G":82,"C":61}},"M":{"d":"174,-1530r478,0r254,948r256,-948r478,0r0,1530r-287,0r0,-1362r-368,1362r-159,0r-368,-1362r0,1362r-284,0r0,-1530","w":1812},"N":{"d":"178,-1530r318,0r628,1027r0,-1027r298,0r0,1530r-298,0r-645,-1067r0,1067r-301,0r0,-1530","w":1599,"k":{"A":20}},"O":{"d":"774,30v-436,0,-679,-317,-679,-794v0,-364,137,-635,399,-748v172,-75,452,-55,592,24v236,131,355,357,355,732v0,476,-232,786,-667,786xm1007,-1200v-131,-138,-378,-128,-495,26v-64,85,-101,219,-101,410v0,187,36,321,103,404v128,160,387,164,515,0v65,-83,101,-215,101,-401v0,-208,-42,-354,-123,-439","w":1536,"k":{"Y":98,"X":84,"W":20,"V":20,"T":82,"A":76,".":94,",":74}},"P":{"d":"178,-1530v277,5,678,-21,870,42v161,52,286,194,285,402v-2,154,-56,273,-151,349v-113,90,-240,137,-432,137r-268,0r0,600r-304,0r0,-1530xm1019,-1070v-4,-141,-110,-195,-283,-195r-254,0r0,415r246,0v146,-2,295,-64,291,-220","w":1430,"k":{"o":61,"e":61,"a":61,"A":199,".":512,",":492}},"Q":{"d":"892,18v37,148,117,192,316,193v31,0,62,-1,93,-4r0,191v-313,8,-592,-20,-674,-232v-16,-43,-29,-97,-34,-166v-214,-46,-357,-192,-433,-370v-92,-216,-84,-656,24,-848v110,-196,270,-342,573,-342v315,0,485,143,595,350v127,238,115,727,-24,940v-94,144,-225,263,-436,288xm1025,-1174v-126,-160,-386,-163,-514,0v-65,83,-101,214,-101,401v0,211,43,359,129,443v107,105,272,128,408,41v131,-84,180,-233,179,-466v0,-197,-35,-336,-101,-419","w":1536,"k":{"Y":119,"W":-25,"V":35,"U":14,"T":78,"A":55,".":82,",":63}},"R":{"d":"1328,-1051v0,221,-104,304,-286,380r275,671r-298,0r-256,-615r-276,0r0,615r-302,0r0,-1530v270,2,721,-11,873,50v157,63,270,220,270,429xm1014,-1065v-4,-137,-117,-198,-286,-198r-241,0r0,412r241,0v138,-1,290,-66,286,-214","w":1430,"k":{"w":-25,"u":20,"o":41,"e":41,"a":41,"Y":41,"W":-20,"U":41,"T":20,"Q":20,"O":20}},"S":{"d":"1223,-446v0,293,-233,482,-552,476v-305,-6,-464,-138,-573,-353r269,-105v88,129,147,202,323,209v141,6,254,-79,254,-200v0,-47,-18,-89,-53,-125v-36,-36,-116,-71,-241,-104v-170,-45,-292,-99,-365,-164v-91,-81,-137,-182,-137,-302v0,-272,219,-446,513,-446v185,0,327,71,423,162v32,31,64,74,96,129r-252,103v-73,-100,-138,-165,-280,-175v-170,-12,-296,185,-172,303v33,31,115,61,246,95v230,59,362,114,450,283v36,68,51,141,51,214","w":1343},"T":{"d":"71,-1530r1160,0r0,263r-431,0r0,1267r-300,0r0,-1267r-429,0r0,-263","w":1300,"k":{"z":123,"y":125,"w":102,"u":164,"s":145,"r":164,"o":164,"m":164,"h":20,"e":164,"c":164,"a":164,"Q":61,"O":61,"G":61,"C":61,"A":164,";":143,":":143,".":328,"-":184,",":307}},"U":{"d":"1387,-552v0,378,-216,585,-601,582v-171,0,-352,-41,-447,-130v-104,-98,-168,-227,-168,-444r0,-986r302,0r0,934v-3,217,101,349,301,349v208,0,309,-132,310,-349r0,-934r303,0r0,978","w":1556,"k":{"A":76,".":102,",":82}},"V":{"d":"28,-1530r293,0r319,1052r323,-1052r289,0r-466,1530r-291,0","k":{"y":41,"u":61,"r":41,"o":61,"i":20,"e":96,"a":96,"Q":55,"O":55,"G":55,"C":35,"A":59,";":61,":":61,".":266,"-":82,",":246}},"W":{"d":"29,-1530r288,0r208,876r210,-876r343,0r211,883r206,-883r289,0r-362,1530r-236,0r-277,-1168r-282,1168r-235,0","w":1812,"k":{"u":61,"r":35,"o":76,"e":53,"d":31,"a":53,"O":20,"G":20,"C":20,";":20,":":20,".":164,"-":41,",":143}},"X":{"d":"109,-1530r299,0r280,474r279,-474r299,0r-427,730r468,800r-300,0r-319,-543r-317,543r-303,0r470,-800","w":1386,"k":{"O":61,"G":82,"C":61}},"Y":{"d":"50,-1530r314,0r273,531r270,-531r314,0r-433,848r0,682r-303,0r0,-682","k":{"v":102,"u":164,"q":205,"p":166,"o":184,"i":61,"e":184,"d":164,"a":166,"S":43,"O":82,"G":82,"C":61,"A":180,";":164,":":164,".":328,"-":205,",":328}},"Z":{"d":"101,-1530r1085,0r0,235r-712,1031r730,0r0,264r-1140,0r0,-205r738,-1062r-701,0r0,-263"},"[":{"d":"124,-1530r554,0r0,171r-255,0r0,1592r255,0r0,173r-554,0r0,-1936","w":748},"\\":{"d":"99,-1530r232,0r764,1530r-232,0","w":1194},"]":{"d":"58,-1530r555,0r0,1934r-555,0r0,-173r256,0r0,-1590r-256,0r0,-171","w":748},"^":{"d":"115,-731r376,-799r223,0r366,799r-284,0r-198,-490r-197,490r-286,0","w":1194},"_":{"d":"-12,154r1048,0r0,102r-1048,0r0,-102","w":1024},"`":{"d":"-53,-1482r329,0r268,314r-203,0","w":682},"a":{"d":"752,-717v5,-144,-60,-202,-186,-202v-106,0,-195,48,-267,145r-164,-138v95,-115,243,-196,436,-197v252,-1,419,122,419,377r0,508v-1,63,21,178,38,224r-241,0v-11,-37,-20,-74,-26,-112v-85,74,-180,127,-318,131v-182,6,-346,-132,-339,-302v9,-231,183,-332,387,-390v65,-17,152,-32,261,-44xm495,-167v104,-5,179,-61,257,-121r0,-273v-159,30,-268,71,-328,123v-46,40,-69,84,-69,133v-2,79,61,142,140,138","w":1153,"k":{"y":41,"w":53,"v":61,"t":20,"p":20}},"b":{"d":"746,18v-132,0,-220,-68,-303,-146r0,128r-275,0r0,-1553r275,0r0,595v83,-85,160,-151,302,-151v174,0,310,122,365,273v85,233,52,565,-74,710v-64,73,-162,144,-290,144xm647,-881v-94,0,-151,51,-204,113r0,444v53,61,108,114,199,114v61,0,112,-27,154,-80v42,-53,63,-145,63,-275v0,-182,-67,-316,-212,-316","w":1260,"k":{"y":59,"w":49,"v":55,"u":20,"l":20,".":20,",":20}},"c":{"d":"604,-210v109,0,164,-82,194,-190r216,107v-54,137,-110,210,-222,269v-55,29,-121,42,-198,42v-297,0,-497,-248,-497,-559v0,-315,212,-569,507,-568v147,0,239,58,311,140v27,31,55,77,86,139r-234,62v-45,-71,-80,-121,-172,-121v-136,0,-199,131,-195,307v4,180,33,372,204,372","w":1087,"k":{"y":41,"l":61,"k":20,"h":84}},"d":{"d":"516,-1109v136,0,223,62,297,145r0,-589r276,0r0,1553r-276,0r0,-126v-77,81,-165,144,-300,144v-109,0,-199,-46,-276,-133v-134,-150,-174,-447,-97,-675v45,-135,110,-220,218,-280v47,-26,101,-39,158,-39xm622,-209v87,0,140,-48,191,-104r0,-458v-53,-56,-106,-106,-194,-106v-60,0,-110,26,-151,77v-41,51,-61,139,-61,264v0,187,68,327,215,327","w":1260,"k":{"y":61,"w":37,"v":49,"d":20}},"e":{"d":"622,-205v116,0,171,-66,216,-152r225,95v-88,167,-211,280,-443,280v-321,0,-519,-241,-519,-576v0,-318,203,-551,507,-551v329,0,514,248,476,612r-692,0v2,172,79,292,230,292xm838,-662v-3,-149,-89,-259,-227,-259v-136,0,-215,110,-220,259r447,0","w":1174,"k":{"z":20,"y":41,"x":41,"w":33,"v":61,"g":-20,"b":20,".":61,",":41}},"f":{"d":"654,-1359v-111,-6,-197,14,-196,112r0,157r165,0r0,198r-165,0r0,892r-277,0r0,-892r-125,0r0,-198r125,0v11,-196,23,-288,111,-378v69,-71,214,-94,362,-85r0,194","w":705,"k":{"o":41,"l":20,"f":-20,"e":41,"a":41,"?":-80,".":102,",":82,"!":-41," ":-178}},"g":{"d":"566,-1109v128,3,231,22,309,71v83,-60,162,-102,279,-102r0,182v-72,-2,-122,2,-175,31v35,56,52,121,52,194v-3,237,-189,377,-452,377v-45,0,-95,-3,-150,-10v-57,22,-103,99,-42,145v19,15,57,23,113,26v197,10,449,-6,549,92v54,53,84,117,84,198v0,101,-41,183,-123,247v-82,64,-223,97,-425,97v-257,0,-528,-40,-528,-284v0,-128,79,-187,199,-218v-76,-40,-132,-79,-132,-176v0,-94,65,-149,147,-178v-100,-69,-171,-162,-171,-314v0,-248,170,-384,466,-378xm774,-733v0,-107,-97,-203,-204,-203v-115,0,-211,91,-211,203v0,109,97,203,207,203v111,0,208,-94,208,-203xm397,-14v-55,26,-101,60,-101,127v0,36,20,63,53,89v81,63,425,64,511,3v58,-41,67,-121,8,-158v-76,-48,-355,-33,-471,-61","w":1174,"k":{"y":-59,"r":-41,"o":-20,"l":-20,"g":-80,"e":20,".":-20,",":20}},"h":{"d":"704,-886v-105,0,-174,69,-254,137r0,749r-276,0r0,-1553r276,0r0,611v108,-92,219,-162,385,-167v170,-5,243,123,243,277r0,832r-276,0r0,-765v1,-73,-33,-121,-98,-121","w":1217},"i":{"d":"194,-1553r274,0r0,275r-274,0r0,-275xm194,-1090r274,0r0,1090r-274,0r0,-1090","w":662,"k":{"v":53}},"j":{"d":"218,-1553r278,0r0,281r-278,0r0,-281xm10,243v144,-5,208,-30,208,-157r0,-1176r278,0r0,1215v-1,214,-142,311,-360,314r-126,0r0,-196","w":662},"k":{"d":"165,-1553r279,0r0,914r360,-451r285,0r-346,440r383,650r-261,0r-271,-460r-150,189r0,271r-279,0r0,-1553","w":1174,"k":{"y":20,"o":76,"e":94}},"l":{"d":"204,-1553r276,0r0,1553r-276,0r0,-1553","w":682,"k":{"y":39,"w":33}},"m":{"d":"693,-887v-117,0,-180,89,-247,179r0,708r-277,0r0,-1090r277,0r0,214v79,-91,147,-152,204,-184v57,-32,116,-49,177,-49v170,0,220,82,255,243v97,-106,170,-172,219,-201v79,-48,231,-60,309,-11v94,59,128,169,128,340r0,738r-275,0r0,-694v1,-117,-32,-185,-129,-185v-33,0,-67,11,-102,33v-35,22,-82,68,-141,138r0,708r-275,0r0,-682v2,-120,-33,-205,-123,-205","w":1878,"k":{"y":-20}},"n":{"d":"698,-884v-118,0,-161,59,-254,139r0,745r-276,0r0,-1090r276,0r0,149v102,-94,204,-165,378,-168v183,-4,250,112,250,279r0,830r-274,0r0,-760v1,-81,-28,-124,-100,-124","w":1217,"k":{"y":20,"v":20}},"o":{"d":"93,-550v0,-325,175,-557,468,-559v332,-3,520,214,520,557v0,329,-190,571,-490,571v-134,0,-250,-48,-349,-143v-99,-95,-149,-237,-149,-426xm810,-576v0,-175,-56,-351,-221,-351v-63,0,-109,27,-148,73v-87,101,-97,482,-8,588v45,53,94,83,154,83v182,0,223,-200,223,-393","w":1174,"k":{"y":20,"x":63,"w":31,"v":41,"g":-25}},"p":{"d":"746,18v-137,0,-185,-59,-291,-144r0,565r-279,0r0,-1529r279,0r0,114v79,-73,160,-133,286,-133v264,0,419,260,419,557v0,174,-44,313,-132,416v-88,103,-181,154,-282,154xm666,-870v-84,0,-146,40,-211,82r0,472v63,45,126,84,215,84v149,0,214,-138,214,-329v0,-175,-76,-309,-218,-309","w":1260,"k":{"z":41,"y":82,"w":41,".":61,",":61}},"q":{"d":"337,-1053v170,-110,351,-33,465,81r0,-118r274,0r0,1529r-274,0r0,-566v-125,119,-313,202,-492,77v-189,-132,-285,-536,-156,-800v42,-86,103,-152,183,-203xm592,-230v85,0,146,-41,210,-84r0,-472v-74,-49,-117,-83,-212,-83v-148,0,-223,137,-223,320v0,179,78,319,225,319","w":1237},"r":{"d":"802,-829v-182,-5,-298,103,-354,241r0,588r-278,0r0,-1090r278,0r0,261v62,-104,120,-175,175,-215v55,-40,114,-62,179,-65r0,280","w":874,"k":{"y":-23,"v":-45,"t":-61,"s":-25,"r":-25,"q":55,"p":20,"o":20,"n":-20,"m":-20,"l":-20,"k":20,"j":37,"e":35,"d":53,"c":31,"a":35,";":-41,":":-41,".":225,"-":41,",":205}},"s":{"d":"979,-331v0,220,-196,356,-452,349v-217,-6,-324,-75,-446,-198r167,-116v92,67,154,103,282,112v134,9,235,-98,139,-184v-26,-23,-82,-41,-169,-56v-143,-25,-245,-68,-304,-129v-59,-61,-89,-133,-89,-217v2,-193,199,-347,419,-339v187,7,283,53,409,154r-160,134v-120,-66,-130,-91,-246,-100v-120,-10,-220,121,-127,205v25,23,86,44,183,65v135,28,228,62,282,102v74,55,112,127,112,218","w":1087,"k":{"w":90,".":20,",":20}},"t":{"d":"582,19v-244,8,-371,-111,-371,-329r0,-582r-167,0r0,-198r167,0r0,-352r276,0r0,352r192,0r0,198r-192,0r0,582v10,93,64,96,192,102r0,225v-61,1,-94,2,-97,2","w":748},"u":{"d":"406,18v-169,0,-262,-125,-263,-305r0,-803r279,0r0,748v-2,72,46,128,113,124v112,-6,153,-59,233,-139r0,-733r277,0r0,1090r-277,0r0,-164v-95,98,-215,182,-362,182","w":1217},"v":{"d":"61,-1090r257,0r193,724r195,-724r258,0r-293,1090r-319,0","w":1024,"k":{"q":61,"o":61,"e":78,"d":41,"c":55,"a":41,".":164,",":143}},"w":{"d":"60,-1090r246,0r186,612r184,-612r205,0r186,619r184,-619r246,0r-326,1090r-193,0r-199,-657r-200,657r-193,0","w":1556,"k":{"q":74,"o":35,"h":41,"e":70,"d":49,"c":49,"a":53,".":123,",":102}},"x":{"d":"68,-1090r287,0r158,278r159,-278r283,0r-300,535r309,555r-280,0r-171,-299r-169,299r-285,0r313,-555","w":1024,"k":{"o":74,"e":90,"d":70,"c":86}},"y":{"d":"70,-1090r260,0r213,699r212,-699r257,0r-308,1024v-66,211,-107,319,-236,428v-78,66,-231,84,-389,77r0,-191v188,12,301,-64,334,-214","w":1067,"k":{"o":55,"g":20,"e":74,"d":53,"c":70,"a":55,".":164,",":143}},"z":{"d":"106,-1090r827,0r0,222r-547,644r547,0r0,224r-873,0r0,-224r551,-644r-505,0r0,-222","w":1004},"{":{"d":"279,-56v-1,-238,-6,-386,-219,-394r0,-240v214,-6,219,-161,219,-397v0,-340,84,-442,412,-443r53,0r0,239v-152,1,-201,2,-204,137v-2,63,-6,326,-35,400v-36,93,-70,130,-153,185v122,71,174,173,180,364r7,212v3,138,54,144,205,145r0,239v-245,10,-402,-36,-448,-217v-11,-49,-17,-125,-17,-230","w":788},"|":{"d":"489,-1530r217,0r0,1969r-217,0r0,-1969","w":1194},"}":{"d":"98,-1530v323,-4,412,112,412,447v0,123,5,203,15,240v31,106,76,146,204,153r0,240v-213,8,-219,161,-219,398v0,341,-84,442,-412,443r-53,0r0,-239v147,-1,200,-7,205,-138v2,-64,7,-328,34,-398v33,-86,77,-142,153,-185v-104,-66,-147,-127,-172,-261v-8,-41,-13,-143,-16,-308v-3,-153,-41,-149,-204,-153r0,-239r53,0","w":788},"~":{"d":"433,-908v181,0,330,160,501,160v85,0,182,-49,293,-148r0,223v-113,93,-214,140,-301,140v-167,0,-356,-161,-506,-161v-96,0,-197,49,-303,147r0,-224v106,-91,211,-137,316,-137","w":1343},"\u00a0":{"w":640}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved.
 * 
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is now the property of Heidelberger Druckmaschinen AG and its
 * licensors, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Heidelberger Druckmaschinen
 * AG.
 * 
 * Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Optima is a trademark of Heidelberger Druckmaschinen AG, which may be
 * registered in certain jurisdictions, exclusivly licensed through Linotype
 * Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.
 * 
 * Description:
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is copyrighted (c)  2000, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved. This software is now
 * the property of Heidelberger Druckmaschinen AG and its licensors and may not be
 * reproduced, used, displayed, modified, disclosed or transferred without the
 * express written approval of Heidelberger Druckmaschinen AG.
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Optima","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 6 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","cap-height":"1","bbox":"-10 -331 355 96.044","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":33,"W":13,"V":33,"T":27,"A":13}},"\t":{"w":100},"\r":{"w":100},"!":{"d":"60,-37v-11,0,-20,10,-20,21v0,11,9,19,20,19v12,0,21,-8,21,-19v0,-12,-9,-21,-21,-21xm42,-234r15,172r7,0r14,-172v0,-10,-8,-17,-18,-17v-10,0,-18,7,-18,17","w":119},"\"":{"d":"77,-251r0,103r19,0r0,-103r-19,0xm24,-251r0,103r18,0r0,-103r-18,0","w":119},"#":{"d":"129,-156r-16,75r-41,0r15,-75r42,0xm54,-185v-1,8,-3,23,-6,29r27,0r-16,75r-26,0v0,9,-3,24,-7,30r27,0r-13,51v27,6,17,-31,26,-51r41,0r-13,51v27,6,17,-31,26,-51r26,0v0,-9,3,-24,7,-30r-27,0r15,-75r26,0v1,-8,4,-22,7,-29r-26,0v4,-17,6,-37,12,-52v-5,4,-17,-4,-16,5r-9,47r-41,0v4,-17,6,-37,12,-52v-5,4,-17,-4,-16,5r-9,47r-27,0"},"$":{"d":"32,-176v0,43,32,53,63,67r0,101v-31,0,-46,-16,-58,-37r-4,0v-1,14,-2,21,-7,31v17,14,40,22,69,18v0,0,0,28,-2,39v9,-2,9,-3,18,0v-2,-13,-2,-26,-2,-40v37,-9,65,-31,65,-75v0,-43,-35,-50,-65,-64r0,-93v22,1,34,16,41,32r4,0v2,-12,5,-19,10,-28v-13,-11,-31,-16,-55,-17v0,-10,0,-20,2,-27v-9,2,-9,3,-18,0v3,8,2,18,2,28v-36,3,-63,28,-63,65xm95,-141v-44,-6,-46,-82,0,-87r0,87xm109,-104v46,9,48,85,0,94r0,-94"},"%":{"d":"218,-250r-134,263v8,-2,9,-3,17,0r134,-263v-8,3,-9,2,-17,0xm247,-3v-43,-1,-43,-101,0,-102v43,2,42,100,0,102xm247,-114v-36,0,-58,23,-58,60v0,37,21,59,58,59v37,0,58,-22,58,-59v0,-37,-22,-60,-58,-60xm73,-131v-43,-2,-43,-100,0,-102v44,1,43,101,0,102xm73,-242v-36,0,-58,23,-58,60v0,37,22,60,58,60v36,0,58,-23,58,-60v0,-37,-22,-60,-58,-60","w":320},"&":{"d":"165,-36v-27,38,-111,33,-110,-25v1,-35,19,-47,42,-62v22,33,44,56,68,87xm122,-242v-33,2,-55,21,-55,54v0,23,14,39,24,56v-32,14,-63,36,-65,78v-4,78,117,69,146,25r23,30v14,0,30,-2,43,0r-46,-51v20,-22,33,-43,49,-67v-5,-4,-12,-7,-14,-14v-12,28,-26,47,-43,71v-22,-25,-42,-53,-63,-79v21,-14,48,-29,49,-63v1,-27,-21,-41,-48,-40xm123,-232v51,7,22,75,-8,86v-23,-20,-38,-84,8,-86","w":259},"'":{"d":"41,-251r0,103r18,0r0,-103r-18,0","w":100},"(":{"d":"87,41v-59,-60,-57,-225,0,-286r-7,-6v-48,46,-77,146,-44,229v10,25,25,49,44,70","w":100},")":{"d":"13,-245v57,61,58,226,0,286r7,7v49,-48,76,-145,44,-229v-10,-26,-25,-49,-44,-70","w":100},"*":{"d":"141,-205v-5,-4,-10,-11,-11,-19r-45,34r6,-56v-6,1,-15,2,-21,0r5,56r-45,-34v0,8,-7,15,-11,19r52,24r-50,23v5,4,9,11,10,18r44,-32r-5,55v6,-2,15,-1,21,0r-6,-55r45,32v0,-8,7,-13,10,-18r-50,-24","w":159},"+":{"d":"18,-100r0,18r82,0r0,82r18,0r0,-82r82,0r0,-18r-82,0r0,-82r-18,0r0,82r-82,0","w":218},",":{"d":"62,-13v15,-14,-5,-39,-18,-23v-14,28,-21,64,-33,95r6,3","w":100},"-":{"d":"15,-94r0,22r90,0r0,-22r-90,0","w":119},".":{"d":"50,-37v-11,0,-20,10,-20,21v0,11,9,19,20,19v12,0,21,-9,21,-19v0,-11,-9,-21,-21,-21","w":100},"\/":{"d":"90,-253r-98,260v9,-3,9,-2,18,0r99,-260v-9,3,-10,2,-19,0","w":100},"0":{"d":"100,-242v-66,0,-84,56,-84,124v-1,70,16,123,84,123v64,0,83,-57,84,-123v1,-70,-16,-124,-84,-124xm100,-6v-51,0,-55,-59,-55,-112v0,-54,4,-112,55,-112v51,0,55,59,55,112v0,53,-4,112,-55,112"},"1":{"d":"116,-247v-26,14,-58,23,-82,40v5,3,8,7,11,12r42,-24r-2,220v11,0,23,-2,33,0v-4,-63,0,-132,-2,-199v0,-15,5,-37,0,-49"},"2":{"d":"132,-114v41,-42,30,-134,-43,-128v-33,3,-52,14,-66,36v5,5,7,14,15,17v4,-23,20,-40,46,-40v53,0,45,88,20,120v-28,36,-64,73,-97,105r0,5r155,0v-2,-11,-3,-16,0,-26r-116,3v25,-32,58,-63,86,-92"},"3":{"d":"150,-188v3,-60,-92,-69,-122,-32r9,19v9,-12,20,-30,43,-29v26,1,38,18,38,44v0,36,-17,62,-57,54v0,5,2,11,0,15v38,-10,67,10,67,51v0,61,-76,78,-106,36v-6,3,-3,19,-7,23v56,26,149,8,146,-64v-2,-37,-26,-53,-60,-55r0,-3v27,-7,47,-26,49,-59"},"4":{"d":"119,-207v4,37,0,82,1,121r-84,0xm120,-67v0,22,-1,51,-3,68v9,-1,23,-1,32,0v-2,-18,-2,-46,-2,-68r35,2v-2,-11,-3,-13,0,-24v-10,1,-23,3,-35,3r2,-154v-9,3,-14,2,-24,0r-117,169r0,7"},"5":{"d":"166,-76v0,-57,-61,-83,-109,-59r5,-81r98,4v-4,-8,4,-23,0,-27v-38,1,-83,-6,-118,-1v5,34,5,84,0,120v9,7,22,-11,41,-9v33,3,50,22,50,57v0,67,-81,86,-106,40v-8,3,-6,14,-8,23v57,33,147,6,147,-67"},"6":{"d":"104,-130v32,-2,47,29,46,62v-1,35,-12,62,-48,62v-34,-1,-48,-29,-48,-62v0,-35,17,-60,50,-62xm53,-108v-1,-63,27,-131,97,-121v-2,-9,-6,-14,-20,-13v-77,5,-105,65,-107,144v-1,62,23,103,79,103v51,0,77,-31,80,-81v5,-74,-107,-87,-129,-32"},"7":{"d":"183,-231r0,-6r-154,-3v2,9,1,23,0,32r125,-3r-127,212v8,-1,19,-1,27,0v30,-58,29,-58,62,-117"},"8":{"d":"100,-127v33,0,49,26,49,61v0,34,-15,60,-49,60v-34,0,-49,-27,-49,-60v0,-35,16,-61,49,-61xm100,-230v29,0,39,19,39,46v0,27,-12,46,-39,46v-26,0,-38,-19,-38,-46v0,-26,10,-46,38,-46xm72,-132v-33,10,-52,32,-52,68v0,46,32,69,80,69v49,0,78,-28,80,-78v2,-40,-27,-51,-51,-63v23,-6,40,-26,40,-53v0,-37,-30,-53,-69,-53v-39,0,-68,20,-68,57v0,28,18,44,40,50r0,3"},"9":{"d":"97,-230v30,0,49,24,48,56v-1,37,-14,67,-51,67v-33,0,-45,-21,-45,-58v0,-35,16,-65,48,-65xm74,-6v-16,0,-27,-7,-36,-15v-4,15,13,27,34,26v76,-5,105,-65,106,-143v1,-62,-23,-104,-80,-104v-49,0,-76,28,-80,77v-6,79,102,92,129,38v-3,58,-15,121,-73,121"},":":{"d":"50,-37v-11,0,-20,10,-20,21v0,11,9,19,20,19v12,0,21,-9,21,-19v0,-11,-9,-21,-21,-21xm50,-168v-11,0,-20,9,-20,20v0,29,40,24,41,0v-1,-11,-10,-20,-21,-20","w":100},";":{"d":"50,-168v-11,0,-20,9,-20,20v0,29,40,24,41,0v-1,-11,-10,-20,-21,-20xm62,-13v15,-14,-5,-39,-18,-23v-14,28,-21,64,-33,95r6,3","w":100},"<":{"d":"18,-101r0,19r182,85r0,-18r-165,-76r165,-76r0,-19","w":218},"=":{"d":"200,-47r0,-19r-182,0r0,19r182,0xm200,-117r0,-18r-182,0r0,18r182,0","w":218},">":{"d":"18,-15r0,18r182,-84r0,-19r-182,-86r0,19r165,76","w":218},"?":{"d":"66,-37v-12,0,-21,9,-21,21v0,11,9,19,21,19v11,0,20,-8,20,-19v0,-11,-9,-21,-20,-21xm119,-204v2,-45,-58,-60,-90,-35r2,18v14,-23,67,-23,64,13v-4,48,-62,52,-62,105v0,28,22,43,51,39v0,-4,6,-10,2,-12v-13,8,-33,-2,-31,-18v7,-48,61,-55,64,-110","w":140},"@":{"d":"149,-180v17,0,23,10,22,27v-1,34,-10,74,-42,77v-19,2,-22,-14,-22,-33v0,-32,11,-71,42,-71xm193,-72v-24,-10,-8,-37,-3,-63r11,-53r-19,0v-2,6,-1,15,-4,20v-1,-16,-13,-24,-29,-24v-43,0,-61,36,-64,81v-4,60,61,57,79,23v0,18,5,28,24,26v42,-5,69,-40,69,-87v0,-59,-39,-86,-102,-86v-73,0,-118,44,-124,113v-8,105,123,142,193,81r1,-12v-50,47,-178,40,-171,-57v5,-66,37,-111,100,-113v57,-2,87,25,86,81v-1,35,-18,63,-47,70","w":288},"A":{"d":"75,-111r79,0r-40,-92xm68,-95v-13,31,-26,67,-35,96v-8,-1,-19,-1,-27,0r113,-252r7,0r108,252v-13,0,-26,-2,-38,0r-37,-96r-91,0","w":240,"k":{"y":20,"w":20,"v":20,"u":6,"Y":27,"W":16,"V":20,"U":11,"T":27,"Q":11,"O":11,"G":16,"C":11}},"B":{"d":"160,-72v0,51,-39,66,-93,59r-2,-110v50,-1,95,1,95,51xm153,-188v-2,45,-41,53,-88,52r2,-95v40,-6,88,-2,86,43xm32,-247r3,155r-3,93v79,2,159,4,161,-72v1,-45,-30,-56,-69,-61v33,-8,61,-24,61,-63v0,-69,-91,-46,-153,-52","w":219,"k":{"A":13,".":9,",":9}},"C":{"d":"15,-122v-6,109,115,156,206,108v0,-7,6,-18,2,-23v-19,14,-40,30,-73,30v-68,0,-100,-45,-100,-115v0,-71,32,-114,100,-116v33,0,53,17,69,32v6,-4,4,-23,9,-29v-21,-10,-47,-16,-78,-16v-84,1,-131,46,-135,129","w":240,"k":{"A":16}},"D":{"d":"32,-247r3,156r-3,92v125,7,228,-7,228,-128v0,-100,-70,-129,-173,-118v-19,2,-38,-1,-55,-2xm225,-127v0,94,-65,128,-158,112r-2,-177v0,-13,1,-24,2,-36v91,-12,158,6,158,101","w":280,"k":{"Y":27,"W":6,"V":13,"A":20,".":16,",":16}},"E":{"d":"32,-247r3,155r-3,93r131,0v0,-7,-2,-15,0,-21v-27,5,-64,5,-97,5r-1,-106r88,3v-2,-7,-1,-15,0,-22r-88,4r1,-94r95,5v-2,-7,-1,-15,0,-22r-96,2v-11,0,-22,-2,-33,-2","w":180},"F":{"d":"32,-247r3,156r-3,92v12,-1,24,-1,36,0r-3,-123r93,3v-2,-7,-3,-15,0,-22v-30,3,-60,3,-93,4r0,-93r101,5v-2,-7,-1,-15,0,-22r-101,2v-11,0,-22,-2,-33,-2","w":180,"k":{"r":13,"o":16,"i":6,"e":16,"a":20,"A":20,".":40,",":40}},"G":{"d":"162,-238v37,0,62,16,80,35r4,0v0,-9,5,-21,8,-27v-24,-13,-53,-21,-92,-21v-87,1,-140,44,-140,129v0,87,51,128,139,127v33,0,67,-7,91,-16r1,-102v-11,2,-21,3,-32,0r1,93v-15,7,-35,12,-58,11v-70,-2,-107,-41,-107,-113v0,-73,35,-116,105,-116","w":280},"H":{"d":"212,-247r3,106r-150,0r3,-106v-9,3,-26,3,-36,0r3,156r-3,92v12,-1,24,-1,36,0r-3,-125r150,0r-3,125v12,-1,24,-1,36,0r-3,-154r3,-94v-9,3,-26,3,-36,0","w":280},"I":{"d":"32,-247r3,156r-3,92v12,-1,24,-1,36,0r-3,-154r3,-94v-9,3,-26,3,-36,0","w":100},"J":{"d":"35,-54v0,47,0,94,-45,95r3,10v92,0,72,-110,72,-204r3,-94v-9,3,-26,3,-36,0","w":100,"k":{"u":6,"o":4,"e":4,"a":4,"A":6}},"K":{"d":"32,-247v4,82,2,165,0,248v12,-1,24,-1,36,0v1,-41,-6,-89,-1,-126v38,37,72,87,108,126v14,0,28,-2,41,0r-119,-135r115,-113v-9,3,-23,3,-32,0r-82,89v-11,10,-19,20,-31,27v-6,-30,2,-78,1,-116v-9,3,-26,3,-36,0","w":219,"k":{"y":20,"u":11,"o":13,"e":9,"O":13}},"L":{"d":"32,-247r3,156r-3,92r133,0v-3,-8,-2,-13,0,-21v-34,5,-63,4,-99,5r-1,-138r3,-94v-9,3,-26,3,-36,0","w":180,"k":{"y":33,"Y":40,"W":33,"V":33,"T":33}},"M":{"d":"303,1r-30,-252r-4,0r-107,198r-104,-198r-6,0r-35,252v7,-1,18,-1,25,0v2,-60,11,-129,18,-185r93,184r3,0v28,-66,63,-123,95,-184r18,185v11,0,23,-2,34,0","w":320},"N":{"d":"39,-251v4,83,-1,174,-7,252v7,-1,19,-1,26,0r-2,-194r94,100v47,50,47,50,88,98v14,-50,-4,-177,10,-252v-11,2,-13,3,-24,0r3,190r-182,-194r-6,0","w":280,"k":{"A":6}},"O":{"d":"150,-251v-84,0,-135,46,-135,129v0,83,51,127,135,127v84,0,135,-44,135,-127v0,-83,-51,-129,-135,-129xm150,-238v67,0,99,44,99,116v0,71,-32,115,-99,115v-68,0,-100,-45,-100,-115v0,-71,32,-116,100,-116","w":299,"k":{"Y":27,"X":13,"W":6,"V":13,"T":13,"A":13,".":9,",":9}},"P":{"d":"158,-184v0,50,-45,68,-93,58r0,-107v50,-2,93,-1,93,49xm32,-247r3,156r-3,92v12,-1,24,-1,36,0r-3,-112v66,5,125,-10,126,-75v0,-77,-90,-56,-159,-61","k":{"o":16,"e":16,"a":33,"A":20,".":46,",":46}},"Q":{"d":"150,-251v-84,0,-135,46,-135,129v0,86,54,129,145,127v30,23,56,48,83,73v4,-7,16,-15,28,-15r-81,-62v59,-12,95,-54,95,-123v0,-83,-51,-129,-135,-129xm150,-238v67,0,99,44,99,116v0,71,-32,115,-99,115v-68,0,-100,-45,-100,-115v0,-71,32,-116,100,-116","w":299,"k":{".":9,",":9}},"R":{"d":"32,-247r3,156r-3,92v12,-1,24,-1,36,0r-3,-119v24,-2,25,17,39,29r68,90v14,0,29,-2,42,0r-98,-122v37,-8,72,-24,73,-69v0,-74,-90,-51,-157,-57xm158,-186v-1,47,-47,60,-93,53r2,-98v43,-7,92,0,91,45","w":219,"k":{"Y":13,"W":6,"V":13,"T":6}},"S":{"d":"84,-9v-31,0,-46,-17,-57,-37r-4,0v-1,15,-2,20,-7,32v48,39,148,16,148,-61v0,-77,-114,-48,-114,-118v0,-27,17,-45,47,-45v25,0,36,16,43,34r4,0v2,-13,5,-21,10,-30v-42,-35,-132,-15,-132,51v0,81,114,52,114,122v0,32,-19,51,-52,52","w":180},"T":{"d":"118,1r-2,-229r77,4v-3,-9,-2,-13,0,-23r-139,2v-15,0,-31,-2,-47,-2v2,10,3,14,0,23v23,-4,50,-4,77,-4r1,137r-3,92v12,-1,24,-1,36,0","k":{"y":27,"w":33,"u":36,"r":27,"o":36,"i":27,"h":16,"e":36,"a":36,"O":13,"A":27,";":33,":":33,".":40,"-":40,",":40}},"U":{"d":"137,5v127,0,100,-137,109,-252v-9,3,-17,3,-25,0v-5,99,30,237,-77,237v-109,0,-77,-135,-76,-237v-9,3,-25,3,-34,0r2,94v-9,92,5,158,101,158","w":280},"V":{"d":"107,1v6,-1,16,-1,23,0r104,-248v-10,3,-17,2,-27,0r-81,213r-65,-163v-6,-17,-12,-34,-17,-50v-10,3,-27,3,-38,0","w":240,"k":{"u":13,"o":20,"i":13,"e":20,"a":20,"O":13,"A":20,";":27,":":27,".":46,"-":27,",":46}},"W":{"d":"82,1v7,-1,19,-1,26,0r71,-205r66,205v8,-1,16,-1,24,0r86,-248v-6,3,-19,3,-25,0r-65,214r-69,-214v-11,2,-13,3,-24,0r-69,214r-49,-162r-13,-52v-9,3,-26,3,-36,0","w":360,"k":{"y":6,"u":6,"o":13,"i":6,"e":13,"a":13,"O":6,"A":16,";":27,":":27,".":33,"-":20,",":33}},"X":{"d":"115,-148r-56,-99v-11,3,-28,3,-39,0r76,125r-83,123v9,0,19,-2,27,0r65,-108v24,34,41,70,61,108v14,0,28,-2,41,0r-84,-135v24,-40,52,-76,79,-113v-10,2,-17,3,-27,0","w":219},"Y":{"d":"8,-247v29,66,87,109,87,202v0,18,-1,34,-2,46v12,-1,23,-1,35,0r-3,-105r87,-143v-13,2,-15,3,-28,0r-68,125r-68,-125v-11,3,-29,3,-40,0","w":219,"k":{"u":46,"o":46,"i":20,"e":40,"a":46,"O":20,"A":20,";":33,":":33,".":46,"-":54,",":46}},"Z":{"d":"23,-224r141,-5r-156,225v35,13,143,-2,204,5v-2,-8,-3,-16,0,-23v-46,6,-108,8,-158,6r138,-199v9,-16,20,-16,20,-32v-54,4,-135,2,-189,0v2,9,3,14,0,23","w":219},"[":{"d":"48,-246r2,190v0,34,-1,66,-2,98v18,-4,42,5,58,-2v-2,-3,0,-4,0,-8r-33,1v-4,-72,-1,-148,-2,-224v0,-15,1,-30,2,-45r33,1v-1,-4,0,-7,0,-11v-19,0,-40,2,-58,0","w":119},"\\":{"d":"31,-253r99,260v9,-2,10,-3,19,0r-99,-260v-9,2,-10,3,-19,0","w":180},"]":{"d":"14,32r0,10v19,0,40,-2,58,0r-2,-189v0,-34,1,-66,2,-99r-58,0r0,11r32,-1v5,84,5,182,0,269","w":119},"^":{"d":"100,-236r-85,163r19,0r75,-146r75,146r19,0r-84,-163r-19,0","w":218},"_":{"d":"0,46r180,0r0,-18r-180,0r0,18","w":180},"`":{"d":"15,-264v-16,1,-11,26,2,29v23,11,34,34,68,34v-23,-20,-40,-51,-70,-63","w":119},"a":{"d":"118,-35v-12,31,-73,37,-73,-9v0,-40,46,-35,75,-45xm15,-39v0,56,83,51,105,18v0,21,30,25,47,17r0,-8v-14,8,-21,-7,-21,-25r1,-84v2,-60,-83,-66,-116,-32r0,19r4,0v17,-40,100,-29,84,29v-28,24,-104,8,-104,66","w":180,"k":{"y":11,"w":6,"v":11}},"b":{"d":"105,-159v69,0,62,153,-3,153v-35,0,-53,-24,-53,-72v0,-47,13,-81,56,-81xm103,4v55,-2,82,-38,82,-93v0,-50,-24,-85,-73,-85v-32,0,-46,17,-62,38r4,-135v-11,3,-20,2,-33,0r0,271v15,-1,18,-15,30,-21v10,13,28,26,52,25","k":{"y":6,"v":4}},"c":{"d":"165,-158v-57,-36,-150,-8,-150,74v0,83,95,110,148,67v-1,-6,4,-15,0,-18v-12,14,-30,25,-54,25v-43,0,-63,-29,-62,-75v0,-45,17,-76,61,-77v24,0,37,14,46,28r3,0v2,-9,3,-17,8,-24","w":180,"k":{"y":9,"k":6,"h":6}},"d":{"d":"96,-8v-37,0,-50,-31,-49,-73v1,-41,11,-78,51,-78v38,0,53,29,52,71v-1,41,-13,80,-54,80xm88,4v34,2,48,-19,62,-37r-1,34v10,-1,17,-1,27,0r4,-272v-10,3,-23,3,-33,0r1,133v-10,-24,-28,-36,-55,-36v-50,0,-78,37,-78,91v0,53,23,85,73,87","k":{"y":9,"w":4,"v":9}},"e":{"d":"45,-100v-7,-59,83,-89,93,-21v1,7,2,15,2,21r-95,0xm95,-174v-56,0,-82,38,-82,95v0,77,94,105,147,62v0,-6,3,-14,1,-18v-34,45,-133,24,-116,-51r124,0v5,-53,-22,-87,-74,-88","w":180},"f":{"d":"59,-168v-5,-31,-13,-77,25,-78v8,0,16,5,22,4r1,-29v-54,-2,-72,51,-75,103r-26,0v0,5,2,10,0,14r26,-1r-3,156v10,0,22,-2,31,0r-1,-156r37,1v0,-5,-2,-10,0,-14r-37,0","w":100},"g":{"d":"91,0v35,0,55,7,55,39v0,33,-26,46,-58,47v-32,1,-53,-13,-53,-45v0,-32,23,-41,56,-41xm87,-163v26,-1,40,18,39,46v-1,29,-10,50,-39,51v-29,1,-41,-20,-41,-49v0,-28,14,-48,41,-48xm170,-173v-63,5,-152,-17,-152,58v0,29,16,43,35,54v-29,2,-34,55,-3,58v-18,9,-39,19,-38,48v1,36,34,52,75,51v51,0,85,-25,85,-73v0,-48,-53,-45,-101,-46v-15,0,-21,-5,-21,-18v0,-17,18,-18,37,-16v65,9,87,-75,43,-104v12,0,27,4,40,3r0,-15","w":180},"h":{"d":"173,-111v8,-74,-92,-77,-116,-30r3,-130v-15,3,-18,2,-33,0v5,83,5,186,0,272v12,-1,21,-1,33,0v0,-57,-23,-158,45,-156v60,2,36,100,37,156v10,-1,20,-1,30,0","k":{"y":13}},"i":{"d":"50,-251v-9,-1,-19,9,-18,18v-1,9,9,19,18,18v9,1,19,-9,18,-18v1,-9,-9,-19,-18,-18xm34,-170v4,53,4,118,0,171v12,-1,20,-1,32,0v-4,-53,-4,-118,0,-171v-15,2,-17,3,-32,0","w":100,"k":{"v":6}},"j":{"d":"50,-251v-9,-1,-19,9,-18,18v-1,9,9,19,18,18v9,1,19,-9,18,-18v1,-9,-9,-19,-18,-18xm1,96v105,-7,47,-158,65,-266v-15,2,-17,3,-32,0r3,187v0,33,-4,71,-37,67","w":100},"k":{"d":"141,-170v-25,26,-47,58,-80,75v-11,-43,-1,-120,-1,-176v-15,3,-18,2,-33,0v5,83,5,186,0,272v12,-1,21,-1,33,0v-2,-25,-7,-64,0,-88v30,23,51,61,78,88v13,0,26,-2,39,0r-87,-99r83,-72v-11,1,-21,3,-32,0","w":180,"k":{"y":6}},"l":{"d":"34,-271r0,272v12,-1,20,-1,32,0r0,-272v-15,2,-17,3,-32,0","w":100},"m":{"d":"162,-138v-14,-43,-86,-50,-107,-3v0,-10,0,-19,1,-29v-11,2,-18,3,-31,0v5,50,5,119,0,171v12,-1,21,-1,33,0v-1,-54,-23,-159,43,-156v58,3,31,98,33,156v12,-1,20,-1,32,0v4,-61,-25,-157,42,-156v65,1,28,100,35,156v10,0,22,-2,31,0v-5,-70,26,-178,-54,-175v-29,0,-47,15,-58,36","w":299,"k":{"y":4}},"n":{"d":"105,-155v60,2,36,100,37,156v10,-1,20,-1,30,0v-3,-73,23,-175,-57,-175v-30,0,-43,17,-58,33v0,-10,0,-19,1,-29v-11,2,-18,3,-31,0v5,50,5,119,0,171v12,-1,21,-1,33,0v-2,-55,-23,-158,45,-156","k":{"y":6,"v":4}},"o":{"d":"100,-6v-43,0,-56,-35,-56,-78v0,-42,12,-78,56,-78v44,0,56,36,56,78v0,43,-13,78,-56,78xm100,-174v-54,0,-88,31,-87,90v0,57,32,88,87,88v56,0,88,-32,88,-88v0,-58,-33,-90,-88,-90","k":{"y":4,"w":4,"v":4}},"p":{"d":"112,-174v-33,-1,-49,19,-62,39r3,-35v-15,2,-17,3,-32,0r0,265v15,-2,17,-1,32,0r-2,-125v11,23,30,34,56,34v51,0,78,-36,78,-89v0,-53,-24,-87,-73,-89xm104,-159v37,0,49,32,49,73v0,41,-10,78,-50,78v-35,0,-53,-25,-53,-75v0,-41,13,-76,54,-76","k":{"y":6}},"q":{"d":"150,-34r-3,129v15,-2,18,-1,33,0v-5,-80,-5,-182,0,-265v-15,2,-18,3,-33,0v0,11,4,26,2,35v-9,-23,-26,-41,-58,-39v-49,3,-71,37,-76,91v-8,87,104,116,135,49xm98,-159v73,0,68,151,-3,151v-36,0,-47,-34,-48,-72v-1,-46,12,-79,51,-79"},"r":{"d":"57,1v-5,-66,-12,-172,53,-142v5,-5,1,-24,5,-31v-29,-9,-41,10,-60,37v0,-14,0,-20,2,-35v-10,2,-20,2,-30,0r2,137v0,14,-1,26,-2,34v10,-1,20,-1,30,0","w":119,"k":{"c":4,"a":4,".":27,"-":20,",":27}},"s":{"d":"101,-40v4,43,-66,37,-75,7r-5,0v1,9,-5,21,-7,27v42,22,112,7,112,-45v0,-58,-81,-30,-85,-79v-3,-38,56,-38,62,-8v11,-2,8,-18,13,-26v-40,-20,-100,-8,-100,44v0,59,81,32,85,80","w":140,"k":{"w":4}},"t":{"d":"100,-9v-63,19,-44,-78,-43,-143v13,0,27,-1,38,1r0,-15r-38,1v-1,-17,6,-41,1,-54r-30,13r2,40v-5,0,-13,0,-24,-1v0,5,2,11,0,16r25,-1v2,68,-30,182,69,152r0,-9","w":100},"u":{"d":"96,-13v-64,0,-38,-99,-38,-157v-13,2,-17,3,-30,0r-1,116v-7,68,98,75,117,25r0,30v9,-1,19,-1,28,0r1,-171v-10,2,-20,2,-30,0v-4,65,20,157,-47,157"},"v":{"d":"77,1v8,-1,15,-1,23,0v21,-58,48,-115,72,-171v-9,2,-13,3,-22,0r-55,140v-11,-24,-20,-47,-29,-70v-9,-23,-18,-46,-25,-70v-11,2,-22,2,-33,0","w":180,"k":{"o":6,"e":4,"a":9,".":33,",":33}},"w":{"d":"137,-132v19,44,32,87,46,133v6,-1,14,-1,19,0v21,-59,45,-115,72,-171v-9,3,-13,2,-23,0r-51,138r-46,-138v-7,2,-12,3,-20,0r-48,138r-46,-138v-11,2,-23,2,-34,0r63,171v6,-1,15,-1,21,0","w":280,"k":{"o":4,"h":6,"a":6,".":27,",":27}},"x":{"d":"93,-103r-45,-67v-13,2,-26,2,-39,0r67,88v-22,31,-43,53,-67,83v8,-1,16,-1,24,0r51,-73r50,73v12,0,25,-2,37,0r-69,-94r66,-77v-10,3,-16,2,-25,0","w":180},"y":{"d":"80,1v-13,31,-29,63,-48,94v11,-2,13,-1,24,0r116,-265v-11,2,-13,3,-24,0v-14,46,-33,97,-53,138r-54,-138v-11,2,-22,2,-33,0","w":180,"k":{"o":6,"e":6,"a":9,".":33,",":33}},"z":{"d":"166,-18r-113,5r115,-152v-2,-13,-31,1,-47,-3r-90,-2v2,8,1,13,0,20r97,-5r-116,152r0,4r154,0v-2,-4,-1,-14,0,-19","w":180},"{":{"d":"99,-246v-103,-16,-12,134,-78,137r0,15v65,3,-25,153,78,136r0,-13v-45,9,-30,-51,-30,-87v0,-28,-15,-34,-32,-44v39,-7,32,-56,32,-102v0,-25,7,-30,30,-29r0,-13","w":119},"|":{"d":"51,-270r0,359r18,0r0,-359r-18,0","w":119},"}":{"d":"21,42v103,17,13,-132,78,-136r0,-15v-66,-3,25,-153,-78,-137r0,13v45,-8,30,52,30,88v0,27,15,34,31,44v-38,7,-31,56,-31,101v1,25,-7,31,-30,29r0,13","w":119},"~":{"d":"181,-115v-10,30,-50,29,-76,11v-27,-19,-68,-7,-78,21r10,16v6,-14,16,-27,36,-27v37,0,81,48,110,5v11,-8,5,-17,-2,-26","w":218},"\u00c4":{"d":"85,-310v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm156,-310v-9,0,-19,10,-19,19v0,9,9,18,19,18v9,0,18,-9,18,-18v0,-9,-9,-19,-18,-19xm114,-203r40,92r-79,0xm33,1v9,-29,22,-66,35,-96r91,0r37,96v13,0,26,-2,38,0r-108,-252r-7,0r-113,252v8,-1,19,-1,27,0","w":240},"\u00c5":{"d":"120,-273v-12,0,-22,-10,-22,-21v0,-12,11,-21,22,-22v12,0,22,10,22,22v0,12,-10,21,-22,21xm120,-331v-22,0,-37,15,-37,37v0,22,15,37,37,37v22,0,37,-15,37,-37v0,-22,-15,-37,-37,-37xm114,-203r40,92r-79,0xm33,1v9,-29,22,-66,35,-96r91,0r37,96v13,0,26,-2,38,0r-108,-252r-7,0r-113,252v8,-1,19,-1,27,0","w":240},"\u00c7":{"d":"15,-122v0,77,43,120,115,127r-14,34v7,3,39,-5,37,14v-1,19,-34,17,-48,11r-5,12v25,11,76,9,75,-25v0,-19,-19,-29,-40,-24v5,-7,1,-22,12,-22v30,-1,56,-7,74,-19v0,-7,6,-18,2,-23v-19,14,-40,30,-73,30v-68,0,-100,-45,-100,-115v0,-71,32,-114,100,-116v33,0,53,17,69,32v6,-4,4,-23,9,-29v-21,-10,-47,-16,-78,-16v-84,1,-135,46,-135,129","w":240},"\u00c9":{"d":"148,-304v9,-8,2,-24,-8,-21v-30,9,-46,44,-69,62v37,-2,51,-27,77,-41xm32,-247r3,155r-3,93r131,0v0,-7,-2,-15,0,-21v-27,5,-64,5,-97,5r-1,-106r88,3v-2,-7,-1,-15,0,-22r-88,4r1,-94r95,5v-2,-7,-1,-15,0,-22r-96,2v-11,0,-22,-2,-33,-2","w":180},"\u00d1":{"d":"195,-311v-15,51,-95,-42,-108,39r11,0v16,-48,94,45,107,-39r-10,0xm39,-251v4,83,-1,174,-7,252v7,-1,19,-1,26,0r-2,-194r94,100v47,50,47,50,88,98v14,-50,-4,-177,10,-252v-11,2,-13,3,-24,0r3,190r-182,-194r-6,0","w":280},"\u00d6":{"d":"133,-291v0,-28,-37,-21,-37,0v0,9,9,18,18,18v10,0,19,-9,19,-18xm185,-310v-9,0,-19,9,-18,19v-1,9,9,19,18,18v10,1,19,-9,19,-18v0,-9,-10,-19,-19,-19xm150,-251v-84,0,-135,46,-135,129v0,83,51,127,135,127v84,0,135,-44,135,-127v0,-83,-51,-129,-135,-129xm150,-238v67,0,99,44,99,116v0,71,-32,115,-99,115v-68,0,-100,-45,-100,-115v0,-71,32,-116,100,-116","w":299},"\u00dc":{"d":"105,-310v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm176,-310v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm137,5v127,0,100,-137,109,-252v-9,3,-17,3,-25,0v-5,99,30,237,-77,237v-109,0,-77,-135,-76,-237v-9,3,-25,3,-34,0r2,94v-9,92,5,158,101,158","w":280},"\u00e1":{"d":"134,-235v12,-4,19,-27,1,-29v-29,11,-46,44,-69,63v34,0,44,-24,68,-34xm118,-35v-12,31,-73,37,-73,-9v0,-40,46,-35,75,-45xm15,-39v0,56,83,51,105,18v0,21,30,25,47,17r0,-8v-14,8,-21,-7,-21,-25r1,-84v2,-60,-83,-66,-116,-32r0,19r4,0v17,-40,100,-29,84,29v-28,24,-104,8,-104,66","w":180},"\u00e0":{"d":"46,-264v-19,1,-11,24,1,29v24,10,34,34,68,34v-23,-20,-40,-50,-69,-63xm118,-35v-12,31,-73,37,-73,-9v0,-40,46,-35,75,-45xm15,-39v0,56,83,51,105,18v0,21,30,25,47,17r0,-8v-14,8,-21,-7,-21,-25r1,-84v2,-60,-83,-66,-116,-32r0,19r4,0v17,-40,100,-29,84,29v-28,24,-104,8,-104,66","w":180},"\u00e2":{"d":"90,-239r43,38r14,0r-45,-60r-24,0r-44,60r13,0xm118,-35v-12,31,-73,37,-73,-9v0,-40,46,-35,75,-45xm15,-39v0,56,83,51,105,18v0,21,30,25,47,17r0,-8v-14,8,-21,-7,-21,-25r1,-84v2,-60,-83,-66,-116,-32r0,19r4,0v17,-40,100,-29,84,29v-28,24,-104,8,-104,66","w":180},"\u00e4":{"d":"55,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm126,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm118,-35v-12,31,-73,37,-73,-9v0,-40,46,-35,75,-45xm15,-39v0,56,83,51,105,18v0,21,30,25,47,17r0,-8v-14,8,-21,-7,-21,-25r1,-84v2,-60,-83,-66,-116,-32r0,19r4,0v17,-40,100,-29,84,29v-28,24,-104,8,-104,66","w":180},"\u00e3":{"d":"139,-249v-17,51,-93,-43,-108,39r11,0v17,-49,94,45,107,-39r-10,0xm118,-35v-12,31,-73,37,-73,-9v0,-40,46,-35,75,-45xm15,-39v0,56,83,51,105,18v0,21,30,25,47,17r0,-8v-14,8,-21,-7,-21,-25r1,-84v2,-60,-83,-66,-116,-32r0,19r4,0v17,-40,100,-29,84,29v-28,24,-104,8,-104,66","w":180},"\u00e5":{"d":"90,-211v-12,0,-22,-10,-22,-21v0,-12,10,-22,22,-22v12,0,23,9,22,22v0,12,-10,21,-22,21xm90,-269v-22,0,-37,15,-37,37v0,22,15,37,37,37v22,0,37,-15,37,-37v0,-22,-14,-37,-37,-37xm118,-35v-12,31,-73,37,-73,-9v0,-40,46,-35,75,-45xm15,-39v0,56,83,51,105,18v0,21,30,25,47,17r0,-8v-14,8,-21,-7,-21,-25r1,-84v2,-60,-83,-66,-116,-32r0,19r4,0v17,-40,100,-29,84,29v-28,24,-104,8,-104,66","w":180},"\u00e7":{"d":"117,51v-1,19,-34,16,-47,11r-5,11v26,12,74,10,75,-24v0,-20,-20,-31,-41,-24r8,-21v22,-1,43,-11,56,-21v-1,-6,4,-15,0,-18v-12,14,-30,25,-54,25v-43,0,-63,-29,-62,-75v0,-45,17,-76,61,-77v24,0,37,14,46,28r3,0v2,-9,3,-17,8,-24v-57,-36,-155,-7,-150,74v3,54,31,82,79,88r-13,33v7,3,37,-6,36,14","w":180},"\u00e9":{"d":"139,-235v13,-5,19,-28,1,-29v-29,12,-46,44,-69,63v34,0,44,-25,68,-34xm45,-100v-7,-59,83,-89,93,-21v1,7,2,15,2,21r-95,0xm95,-174v-56,0,-82,38,-82,95v0,77,94,105,147,62v0,-6,3,-14,1,-18v-34,45,-133,24,-116,-51r124,0v5,-53,-22,-87,-74,-88","w":180},"\u00e8":{"d":"51,-264v-16,1,-11,26,2,29v23,11,34,34,68,34v-23,-20,-40,-51,-70,-63xm45,-100v-7,-59,83,-89,93,-21v1,7,2,15,2,21r-95,0xm95,-174v-56,0,-82,38,-82,95v0,77,94,105,147,62v0,-6,3,-14,1,-18v-34,45,-133,24,-116,-51r124,0v5,-53,-22,-87,-74,-88","w":180},"\u00ea":{"d":"96,-239r43,38r13,0r-44,-60r-24,0r-44,60r13,0xm45,-100v-7,-59,83,-89,93,-21v1,7,2,15,2,21r-95,0xm95,-174v-56,0,-82,38,-82,95v0,77,94,105,147,62v0,-6,3,-14,1,-18v-34,45,-133,24,-116,-51r124,0v5,-53,-22,-87,-74,-88","w":180},"\u00eb":{"d":"79,-229v0,-28,-37,-21,-37,0v0,9,9,18,18,18v10,0,19,-9,19,-18xm131,-248v-9,0,-19,9,-18,19v-1,9,9,19,18,18v10,1,19,-9,19,-18v0,-9,-10,-19,-19,-19xm45,-100v-7,-59,83,-89,93,-21v1,7,2,15,2,21r-95,0xm95,-174v-56,0,-82,38,-82,95v0,77,94,105,147,62v0,-6,3,-14,1,-18v-34,45,-133,24,-116,-51r124,0v5,-53,-22,-87,-74,-88","w":180},"\u00ed":{"d":"94,-235v12,-4,19,-27,1,-29v-29,11,-46,44,-69,63v34,0,44,-24,68,-34xm34,-170v4,53,4,118,0,171v12,-1,20,-1,32,0v-4,-53,-4,-118,0,-171v-15,2,-17,3,-32,0","w":100},"\u00ec":{"d":"22,-255v-12,-19,-37,-1,-23,13v17,17,41,27,61,41r15,0xm34,-170v4,53,4,118,0,171v12,-1,20,-1,32,0v-4,-53,-4,-118,0,-171v-15,2,-17,3,-32,0","w":100},"\u00ee":{"d":"50,-239r43,38r14,0r-45,-60r-24,0r-43,60r12,0xm34,-170v4,53,4,118,0,171v12,-1,20,-1,32,0v-4,-53,-4,-118,0,-171v-15,2,-17,3,-32,0","w":100},"\u00ef":{"d":"15,-248v-10,0,-18,9,-18,19v0,9,7,19,18,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm86,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm34,-170v4,53,4,118,0,171v12,-1,20,-1,32,0v-4,-53,-4,-118,0,-171v-15,2,-17,3,-32,0","w":100},"\u00f1":{"d":"149,-249v-17,51,-93,-43,-108,39r11,0v17,-49,94,45,107,-39r-10,0xm105,-155v60,2,36,100,37,156v10,-1,20,-1,30,0v-3,-73,23,-175,-57,-175v-30,0,-43,17,-58,33v0,-10,0,-19,1,-29v-11,2,-18,3,-31,0v5,50,5,119,0,171v12,-1,21,-1,33,0v-2,-55,-23,-158,45,-156"},"\u00f3":{"d":"144,-235v12,-4,19,-27,1,-29v-29,12,-46,44,-69,63v34,0,44,-24,68,-34xm100,-6v-43,0,-56,-35,-56,-78v0,-42,12,-78,56,-78v44,0,56,36,56,78v0,43,-13,78,-56,78xm100,-174v-54,0,-88,31,-87,90v0,57,32,88,87,88v56,0,88,-32,88,-88v0,-58,-33,-90,-88,-90"},"\u00f2":{"d":"56,-264v-19,1,-11,24,1,29v24,10,34,34,68,34v-23,-20,-40,-50,-69,-63xm100,-6v-43,0,-56,-35,-56,-78v0,-42,12,-78,56,-78v44,0,56,36,56,78v0,43,-13,78,-56,78xm100,-174v-54,0,-88,31,-87,90v0,57,32,88,87,88v56,0,88,-32,88,-88v0,-58,-33,-90,-88,-90"},"\u00f4":{"d":"100,-239r43,38r14,0r-45,-60r-24,0r-44,60r13,0xm100,-6v-43,0,-56,-35,-56,-78v0,-42,12,-78,56,-78v44,0,56,36,56,78v0,43,-13,78,-56,78xm100,-174v-54,0,-88,31,-87,90v0,57,32,88,87,88v56,0,88,-32,88,-88v0,-58,-33,-90,-88,-90"},"\u00f6":{"d":"65,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm136,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm100,-6v-43,0,-56,-35,-56,-78v0,-42,12,-78,56,-78v44,0,56,36,56,78v0,43,-13,78,-56,78xm100,-174v-54,0,-88,31,-87,90v0,57,32,88,87,88v56,0,88,-32,88,-88v0,-58,-33,-90,-88,-90"},"\u00f5":{"d":"149,-249v-17,51,-93,-43,-108,39r11,0v17,-49,94,45,107,-39r-10,0xm100,-6v-43,0,-56,-35,-56,-78v0,-42,12,-78,56,-78v44,0,56,36,56,78v0,43,-13,78,-56,78xm100,-174v-54,0,-88,31,-87,90v0,57,32,88,87,88v56,0,88,-32,88,-88v0,-58,-33,-90,-88,-90"},"\u00fa":{"d":"144,-235v12,-4,19,-27,1,-29v-29,12,-46,44,-69,63v34,0,44,-24,68,-34xm96,-13v-64,0,-38,-99,-38,-157v-13,2,-17,3,-30,0r-1,116v-7,68,98,75,117,25r0,30v9,-1,19,-1,28,0r1,-171v-10,2,-20,2,-30,0v-4,65,20,157,-47,157"},"\u00f9":{"d":"56,-264v-19,1,-11,24,1,29v24,10,34,34,68,34v-23,-20,-40,-50,-69,-63xm96,-13v-64,0,-38,-99,-38,-157v-13,2,-17,3,-30,0r-1,116v-7,68,98,75,117,25r0,30v9,-1,19,-1,28,0r1,-171v-10,2,-20,2,-30,0v-4,65,20,157,-47,157"},"\u00fb":{"d":"100,-239r43,38r14,0r-45,-60r-24,0r-44,60r13,0xm96,-13v-64,0,-38,-99,-38,-157v-13,2,-17,3,-30,0r-1,116v-7,68,98,75,117,25r0,30v9,-1,19,-1,28,0r1,-171v-10,2,-20,2,-30,0v-4,65,20,157,-47,157"},"\u00fc":{"d":"65,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm136,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm96,-13v-64,0,-38,-99,-38,-157v-13,2,-17,3,-30,0r-1,116v-7,68,98,75,117,25r0,30v9,-1,19,-1,28,0r1,-171v-10,2,-20,2,-30,0v-4,65,20,157,-47,157"},"\u00b0":{"d":"72,-151v-24,0,-39,-15,-39,-39v0,-24,16,-39,39,-39v24,0,39,15,39,39v0,24,-15,39,-39,39xm72,-242v-31,0,-52,21,-52,52v0,32,21,52,52,52v31,0,52,-20,52,-52v0,-31,-21,-52,-52,-52","w":144},"\u00a2":{"d":"106,-173v-47,7,-78,36,-78,89v0,54,30,82,78,88v0,13,0,29,-2,39v9,-2,10,-3,19,0r-2,-39v21,-1,42,-11,55,-21v-1,-6,4,-15,0,-18v-12,14,-30,24,-55,25r0,-152v24,0,38,12,46,28v9,-3,6,-17,11,-24v-10,-12,-39,-13,-57,-18r2,-34v-9,3,-10,2,-19,0v2,11,2,24,2,37xm106,-161r0,149v-62,-5,-61,-141,0,-149"},"\u00a3":{"d":"67,-119v8,48,6,104,-51,98v0,7,2,16,0,22r167,0v-2,-7,-1,-19,0,-27r-121,3v22,-16,41,-54,34,-96r54,1r0,-16r-55,2v-4,-46,-5,-96,41,-97v16,1,29,12,33,26r14,-20v-7,-12,-29,-19,-47,-19v-56,1,-80,49,-70,110r-34,-2v0,6,2,11,0,16"},"\u00a7":{"d":"52,-153v32,26,117,34,80,93v-37,-20,-124,-39,-80,-93xm76,45v56,4,96,-60,62,-101v10,-11,21,-26,21,-47v0,-65,-104,-40,-104,-99v0,-45,73,-45,79,-6r4,0v0,-7,6,-17,10,-21v-38,-54,-149,1,-102,71v-21,9,-32,49,-16,73v24,35,102,25,102,75v0,54,-87,51,-99,10r-4,0v0,8,-2,24,-4,30v13,9,30,13,51,15","w":180},"\u00b6":{"d":"54,-179v2,53,36,74,90,74r0,145r13,0r0,-266r23,-4r0,270r13,0r0,-272r27,-4r0,-9v-76,1,-169,-16,-166,66","w":288},"\u00df":{"d":"165,-46v3,42,-56,46,-75,22v-1,6,-4,16,-7,21v48,21,107,-9,107,-59v0,-53,-66,-48,-77,-91v8,-31,43,-40,43,-78v0,-27,-26,-41,-53,-41v-110,0,-59,161,-75,273v12,-1,21,-1,33,0r-3,-187v1,-42,5,-72,44,-74v34,-2,43,35,28,59v-12,21,-37,33,-41,61v6,49,73,42,76,94"},"\u00ae":{"d":"135,-7v-69,0,-114,-46,-114,-115v0,-69,44,-116,114,-116v70,0,114,47,114,116v0,69,-45,115,-114,115xm135,-251v-77,0,-129,51,-129,129v0,77,51,127,129,127v78,0,129,-50,129,-127v0,-78,-52,-129,-129,-129xm166,-166v0,31,-29,39,-60,35r2,-63v26,-6,58,-1,58,28xm189,-169v0,-48,-61,-32,-104,-36r0,161v10,-3,13,-2,23,0r-2,-77r11,0v23,25,40,49,58,77v11,-4,22,1,28,-2v-22,-22,-43,-54,-64,-78v27,-2,50,-18,50,-45","w":270},"\u00a9":{"d":"135,-238v70,0,114,47,114,116v0,69,-45,115,-114,115v-69,0,-114,-46,-114,-115v0,-69,44,-116,114,-116xm135,-251v-77,0,-129,51,-129,129v0,77,51,127,129,127v78,0,129,-50,129,-127v0,-78,-52,-129,-129,-129xm79,-121v-7,-71,70,-94,111,-58v0,-7,2,-13,5,-18v-59,-27,-140,0,-140,75v0,73,82,101,138,68v-2,-6,4,-14,0,-15v-13,9,-28,18,-49,19v-44,0,-61,-30,-65,-71","w":270},"\u00b4":{"d":"103,-235v13,-5,19,-28,1,-29v-29,12,-46,44,-69,63v34,0,44,-25,68,-34","w":119},"\u00a8":{"d":"43,-229v0,-28,-37,-21,-37,0v0,9,9,18,18,18v10,0,19,-9,19,-18xm95,-248v-9,0,-19,9,-18,19v-1,9,9,19,18,18v10,1,19,-9,19,-18v0,-9,-10,-19,-19,-19","w":119},"\u00c6":{"d":"162,-219r0,115r-75,-2r71,-113r4,0xm79,-91r83,2r-3,90r124,0v-3,-4,-3,-15,0,-20v-24,3,-51,4,-89,4r-2,-107r81,2v-2,-8,-3,-12,0,-20r-81,3r2,-93r86,6v-3,-9,-2,-14,0,-23r-90,2v-10,0,-21,-2,-31,-2r-160,248v10,-1,20,-1,30,0v15,-30,31,-61,50,-92","w":299},"\u00d8":{"d":"249,-122v0,103,-104,148,-170,87r149,-167v14,20,21,45,21,80xm150,-251v-84,1,-135,46,-135,129v0,45,16,76,41,98r-34,35v18,17,28,-22,42,-29v23,16,52,23,86,23v84,-1,135,-44,135,-127v0,-45,-16,-76,-41,-98v11,-11,22,-25,34,-35v-4,-2,-8,-6,-11,-9v-6,14,-22,27,-31,38v-23,-17,-51,-25,-86,-25xm50,-122v0,-102,104,-150,171,-88r-148,168v-14,-19,-23,-45,-23,-80","w":299},"\u00b1":{"d":"18,-19r0,19r182,0r0,-19r-182,0xm18,-117r0,19r82,0r0,66r18,0r0,-66r82,0r0,-19r-82,0r0,-65r-18,0r0,65r-82,0","w":218},"\u00a5":{"d":"85,-119r0,31r-62,0v0,5,2,11,0,15r62,-2r-3,76v11,-1,23,-1,34,0v-2,-23,-2,-50,-3,-76r63,2v0,-5,-2,-11,0,-15r-63,0r0,-31r63,1v0,-5,-2,-11,0,-15r-59,1r78,-115v-11,2,-13,3,-24,0r-64,106r-60,-106v-10,3,-27,3,-38,0r73,115r-59,-1v0,5,2,11,0,15"},"\u00b5":{"d":"54,-5v29,20,79,5,90,-24r0,30v9,-1,19,-1,28,0r1,-171v-10,2,-20,2,-30,0v-4,65,20,157,-47,157v-64,0,-38,-99,-38,-157v-13,2,-17,3,-30,0r-1,265v13,-2,18,-1,31,0v-5,-32,-4,-64,-4,-100"},"\u00aa":{"d":"76,-159v-7,15,-46,24,-46,-4v0,-26,28,-21,46,-29r0,33xm7,-161v1,36,56,31,70,11v0,16,22,20,32,11v-1,-11,-18,2,-14,-26v5,-38,6,-81,-37,-77v-17,2,-28,5,-39,11v1,5,-3,15,4,14v3,-8,15,-15,27,-15v20,0,28,13,25,32v-20,14,-69,5,-68,39","w":116},"\u00ba":{"d":"62,-143v-26,0,-35,-20,-35,-45v0,-25,9,-44,35,-45v42,0,46,90,0,90xm62,-242v-35,0,-58,18,-58,54v0,36,23,54,58,54v34,0,57,-18,57,-54v0,-36,-23,-54,-57,-54","w":122},"\u00e6":{"d":"145,-100v-7,-59,84,-90,93,-21v1,7,2,15,2,21r-95,0xm269,-86v18,-83,-90,-114,-129,-61v-20,-34,-84,-34,-112,-6r0,19r4,0v18,-40,100,-29,84,29v-26,25,-106,6,-103,66v1,28,18,43,47,43v37,1,56,-16,66,-41v14,46,99,53,134,20v0,-6,3,-14,1,-18v-34,45,-133,23,-116,-51r124,0xm117,-48v2,44,-77,53,-75,4v1,-39,46,-35,75,-45r0,41","w":280},"\u00f8":{"d":"51,-40v-14,-48,-9,-122,49,-122v20,0,34,9,42,21xm156,-157v-56,-38,-143,-9,-143,73v0,28,9,48,21,63v-9,11,-18,21,-28,29v3,1,6,4,9,8v7,-9,18,-20,27,-30v55,40,152,10,146,-70v-2,-30,-9,-51,-25,-66v8,-9,19,-22,27,-28v-4,-2,-7,-4,-9,-8v-5,9,-16,19,-25,29xm147,-132v18,46,12,128,-47,126v-22,-1,-35,-10,-44,-24"},"\u00bf":{"d":"75,-174v-12,0,-21,9,-21,21v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21xm56,-105v2,5,-7,10,-2,11v13,-8,33,2,31,18v-6,48,-62,55,-64,109v-2,46,57,60,90,36r-2,-18v-14,22,-67,22,-64,-13v4,-48,61,-52,62,-105v0,-29,-23,-45,-51,-38","w":140},"\u00a1":{"d":"60,-174v-12,0,-21,9,-21,21v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21xm60,81v39,-16,6,-102,6,-153v0,-19,-2,-19,-3,-36r-7,0r-14,171v0,11,8,18,18,18","w":119},"\u00ac":{"d":"181,-117r0,78r19,0r0,-96r-182,0r0,18r163,0","w":218},"\u00ab":{"d":"145,-141v-6,-1,-10,-7,-13,-10r-45,67r43,69v1,-4,8,-9,14,-9r-39,-60xm93,-141v-6,0,-11,-6,-13,-10r-45,67r43,69v1,-4,8,-9,13,-9r-38,-60","w":180},"\u00bb":{"d":"50,-152v-1,4,-8,9,-14,9r39,60r-40,57v6,1,10,7,13,10r45,-67xm102,-152v-1,4,-8,9,-13,9r38,60r-40,57v6,0,11,6,13,10r45,-67","w":180},"\u00a0":{"w":100},"\u00c0":{"d":"76,-325v-21,1,-10,24,1,28v24,10,34,34,68,34v-23,-19,-39,-50,-69,-62xm114,-203r40,92r-79,0xm33,1v9,-29,22,-66,35,-96r91,0r37,96v13,0,26,-2,38,0r-108,-252r-7,0r-113,252v8,-1,19,-1,27,0","w":240},"\u00c3":{"d":"169,-311v-15,50,-94,-42,-108,39r11,0v16,-48,94,45,107,-39r-10,0xm114,-203r40,92r-79,0xm33,1v9,-29,22,-66,35,-96r91,0r37,96v13,0,26,-2,38,0r-108,-252r-7,0r-113,252v8,-1,19,-1,27,0","w":240},"\u00d5":{"d":"199,-311v-13,47,-70,-23,-97,14v-6,7,-10,14,-11,25r11,0v16,-48,94,45,107,-39r-10,0xm150,-251v-84,0,-135,46,-135,129v0,83,51,127,135,127v84,0,135,-44,135,-127v0,-83,-51,-129,-135,-129xm150,-238v67,0,99,44,99,116v0,71,-32,115,-99,115v-68,0,-100,-45,-100,-115v0,-71,32,-116,100,-116","w":299},"\u00f7":{"d":"109,-41v-11,0,-20,9,-20,20v0,11,9,21,20,21v12,0,21,-10,21,-21v0,-11,-10,-20,-21,-20xm109,-182v-11,0,-20,9,-20,20v0,11,9,21,20,21v12,0,21,-10,21,-21v0,-11,-10,-20,-21,-20xm18,-100r0,18r182,0r0,-18r-182,0","w":218},"\u00ff":{"d":"55,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm126,-248v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm80,1v-13,31,-29,63,-48,94v11,-2,13,-1,24,0r116,-265v-11,2,-13,3,-24,0v-14,46,-33,97,-53,138r-54,-138v-11,2,-22,2,-33,0","w":180},"\u00b7":{"d":"72,-110v0,-27,-44,-28,-44,0v0,11,10,21,22,21v12,0,22,-10,22,-21","w":100},"\u00c2":{"d":"120,-301r43,38r13,0r-44,-60r-24,0r-44,60r13,0xm114,-203r40,92r-79,0xm33,1v9,-29,22,-66,35,-96r91,0r37,96v13,0,26,-2,38,0r-108,-252r-7,0r-113,252v8,-1,19,-1,27,0","w":240},"\u00ca":{"d":"96,-301r43,38r13,0r-44,-60r-24,0r-44,60r13,0xm32,-247r3,155r-3,93r131,0v0,-7,-2,-15,0,-21v-27,5,-64,5,-97,5r-1,-106r88,3v-2,-7,-1,-15,0,-22r-88,4r1,-94r95,5v-2,-7,-1,-15,0,-22r-96,2v-11,0,-22,-2,-33,-2","w":180},"\u00c1":{"d":"172,-304v8,-7,3,-24,-7,-21v-31,9,-47,43,-70,62v38,-2,51,-27,77,-41xm114,-203r40,92r-79,0xm33,1v9,-29,22,-66,35,-96r91,0r37,96v13,0,26,-2,38,0r-108,-252r-7,0r-113,252v8,-1,19,-1,27,0","w":240},"\u00cb":{"d":"79,-291v0,-28,-37,-21,-37,0v0,9,9,18,18,18v10,0,19,-9,19,-18xm131,-310v-9,0,-19,9,-18,19v-1,9,9,19,18,18v10,1,19,-9,19,-18v0,-9,-10,-19,-19,-19xm32,-247r3,155r-3,93r131,0v0,-7,-2,-15,0,-21v-27,5,-64,5,-97,5r-1,-106r88,3v-2,-7,-1,-15,0,-22r-88,4r1,-94r95,5v-2,-7,-1,-15,0,-22r-96,2v-11,0,-22,-2,-33,-2","w":180},"\u00c8":{"d":"51,-325v-20,2,-9,24,2,28v23,11,34,34,68,34v-23,-19,-39,-51,-70,-62xm32,-247r3,155r-3,93r131,0v0,-7,-2,-15,0,-21v-27,5,-64,5,-97,5r-1,-106r88,3v-2,-7,-1,-15,0,-22r-88,4r1,-94r95,5v-2,-7,-1,-15,0,-22r-96,2v-11,0,-22,-2,-33,-2","w":180},"\u00cd":{"d":"94,-297v11,-4,20,-27,1,-28v-30,10,-46,43,-69,62v34,0,44,-24,68,-34xm32,-247r3,156r-3,92v12,-1,24,-1,36,0r-3,-154r3,-94v-9,3,-26,3,-36,0","w":100},"\u00ce":{"d":"50,-301r43,38r14,0r-45,-60r-24,0r-43,60r12,0xm32,-247r3,156r-3,92v12,-1,24,-1,36,0r-3,-154r3,-94v-9,3,-26,3,-36,0","w":100},"\u00cf":{"d":"15,-310v-10,0,-18,9,-18,19v0,9,7,19,18,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm86,-310v-9,0,-19,10,-19,19v0,9,9,19,19,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm32,-247r3,156r-3,92v12,-1,24,-1,36,0r-3,-154r3,-94v-9,3,-26,3,-36,0","w":100},"\u00cc":{"d":"22,-317v-13,-18,-37,-1,-23,13v17,17,41,27,61,41r15,0xm32,-247r3,156r-3,92v12,-1,24,-1,36,0r-3,-154r3,-94v-9,3,-26,3,-36,0","w":100},"\u00d3":{"d":"202,-304v9,-8,2,-24,-8,-21v-30,9,-46,44,-69,62v37,-2,51,-27,77,-41xm150,-251v-84,0,-135,46,-135,129v0,83,51,127,135,127v84,0,135,-44,135,-127v0,-83,-51,-129,-135,-129xm150,-238v67,0,99,44,99,116v0,71,-32,115,-99,115v-68,0,-100,-45,-100,-115v0,-71,32,-116,100,-116","w":299},"\u00d4":{"d":"150,-301r43,38r13,0r-44,-60r-24,0r-44,60r13,0xm150,-251v-84,0,-135,46,-135,129v0,83,51,127,135,127v84,0,135,-44,135,-127v0,-83,-51,-129,-135,-129xm150,-238v67,0,99,44,99,116v0,71,-32,115,-99,115v-68,0,-100,-45,-100,-115v0,-71,32,-116,100,-116","w":299},"\u00d2":{"d":"105,-325v-20,2,-9,24,2,28v23,11,34,34,68,34v-23,-19,-39,-51,-70,-62xm150,-251v-84,0,-135,46,-135,129v0,83,51,127,135,127v84,0,135,-44,135,-127v0,-83,-51,-129,-135,-129xm150,-238v67,0,99,44,99,116v0,71,-32,115,-99,115v-68,0,-100,-45,-100,-115v0,-71,32,-116,100,-116","w":299},"\u00da":{"d":"184,-297v11,-4,20,-27,1,-28v-30,10,-46,43,-69,62v34,0,44,-24,68,-34xm137,5v127,0,100,-137,109,-252v-9,3,-17,3,-25,0v-5,99,30,237,-77,237v-109,0,-77,-135,-76,-237v-9,3,-25,3,-34,0r2,94v-9,92,5,158,101,158","w":280},"\u00db":{"d":"140,-301r43,38r14,0r-45,-60r-24,0r-44,60r13,0xm137,5v127,0,100,-137,109,-252v-9,3,-17,3,-25,0v-5,99,30,237,-77,237v-109,0,-77,-135,-76,-237v-9,3,-25,3,-34,0r2,94v-9,92,5,158,101,158","w":280},"\u00d9":{"d":"96,-325v-21,1,-10,24,1,28v24,10,34,34,68,34v-23,-19,-39,-50,-69,-62xm137,5v127,0,100,-137,109,-252v-9,3,-17,3,-25,0v-5,99,30,237,-77,237v-109,0,-77,-135,-76,-237v-9,3,-25,3,-34,0r2,94v-9,92,5,158,101,158","w":280},"\u00af":{"d":"11,-236r0,19r98,0r0,-19r-98,0","w":119},"\u00b8":{"d":"63,51v0,20,-34,16,-48,11r-5,11v25,11,76,11,75,-24v0,-20,-20,-31,-40,-24r9,-25r-13,0v-3,13,-15,28,-12,39v9,-4,37,-4,34,12","w":119},"\u00a4":{"d":"170,-62v25,-26,25,-89,-1,-112r20,-20r-13,-13r-20,19v-27,-25,-87,-24,-112,1r-20,-20r-13,13r20,20v-24,26,-28,82,-1,111r-19,20r13,13r20,-19v23,26,87,26,112,0r20,19r13,-13xm100,-190v44,0,71,30,71,72v0,42,-27,72,-71,72v-44,0,-70,-29,-70,-72v0,-43,26,-72,70,-72"},"\u00b9":{"d":"76,-242v-20,5,-37,18,-58,22v-1,7,6,6,8,11v9,-4,16,-10,27,-13r-2,128v11,-2,14,-1,25,0r-3,-92v0,-19,2,-38,3,-56","w":119},"\u00bc":{"d":"75,-242v-20,5,-37,18,-58,22v-1,7,5,6,7,11v10,-4,17,-10,28,-13r-2,128v11,-2,14,-1,25,0r-3,-92v0,-19,2,-38,3,-56xm177,-246r-100,255v8,-3,9,-2,17,0r99,-255v-8,2,-8,3,-16,0xm234,-123v3,21,0,48,1,71v-16,-2,-39,3,-51,-2v15,-24,34,-46,50,-69xm162,-45r0,8r73,-2v0,14,-1,28,-2,40v8,-1,16,-1,24,0r-1,-40v9,0,15,1,20,2v-1,-6,-2,-11,0,-17r-20,2r1,-92v-3,2,-15,1,-18,0","w":300},"\u00bd":{"d":"190,-114v5,-28,62,-35,58,7v-5,52,-48,72,-76,103r0,5r100,0v-2,-5,-1,-13,0,-18v-20,1,-53,5,-73,0v31,-32,66,-42,72,-91v5,-46,-72,-50,-89,-17xm75,-242v-20,5,-37,18,-58,22v-1,7,5,6,7,11v10,-4,17,-10,28,-13r-2,128v11,-2,14,-1,25,0r-3,-92v0,-19,2,-38,3,-56xm176,-246r-100,255v8,-3,9,-2,17,0r99,-255v-8,2,-8,3,-16,0","w":300},"\u00d0":{"d":"32,-247r3,102r-35,0v0,5,2,10,0,14r35,0r-3,132v125,7,228,-7,228,-128v0,-100,-70,-129,-173,-118v-19,2,-38,-1,-55,-2xm225,-127v0,94,-65,128,-158,112r-2,-116r69,1v-2,-5,-1,-11,0,-16r-69,1r2,-83v91,-12,158,6,158,101","w":280},"\u00a6":{"d":"51,-243r0,126r18,0r0,-126r-18,0xm51,-63r0,125r18,0r0,-125r-18,0","w":119},"\u00fe":{"d":"104,-159v37,0,49,32,49,73v0,41,-10,78,-50,78v-35,0,-53,-25,-53,-75v0,-41,13,-76,54,-76xm112,-174v-33,-1,-49,19,-62,39r3,-136v-15,2,-17,3,-32,0r0,366v15,-2,17,-1,32,0r-2,-125v11,23,30,34,56,34v51,0,78,-36,78,-89v0,-53,-24,-87,-73,-89"},"\u00fd":{"d":"134,-235v12,-4,19,-27,1,-29v-29,11,-46,44,-69,63v34,0,44,-24,68,-34xm80,1v-13,31,-29,63,-48,94v11,-2,13,-1,24,0r116,-265v-11,2,-13,3,-24,0v-14,46,-33,97,-53,138r-54,-138v-11,2,-22,2,-33,0","w":180},"\u00f0":{"d":"118,-172v-57,-8,-107,23,-105,88v2,57,32,88,87,88v56,0,88,-32,88,-88v0,-73,-46,-106,-88,-144r43,-12v-3,-4,-5,-9,-7,-13r-46,16v-14,-12,-30,-23,-46,-35r-25,7r44,36r-45,13v3,4,6,9,8,13r46,-16v17,15,31,30,46,47xm100,-162v44,0,56,36,56,78v0,43,-13,78,-56,78v-43,0,-56,-35,-56,-78v0,-42,12,-78,56,-78"},"\u00d7":{"d":"96,-91r-66,66r13,13r66,-66r67,66r13,-13r-67,-66r67,-67r-13,-13r-67,67r-66,-67r-13,13","w":218},"\u00b2":{"d":"106,-204v6,-45,-73,-49,-90,-17v3,3,5,12,10,10v5,-31,59,-29,56,8v-4,53,-48,72,-76,104r0,5r101,0v-2,-6,-3,-12,0,-18v-24,-1,-52,3,-74,0v31,-33,67,-44,73,-92","w":119},"\u00dd":{"d":"153,-293v13,-5,19,-28,1,-29v-28,12,-46,43,-69,62v34,0,44,-24,68,-33xm8,-247v29,66,87,109,87,202v0,18,-1,34,-2,46v12,-1,23,-1,35,0r-3,-105r87,-143v-13,2,-15,3,-28,0r-68,125r-68,-125v-11,3,-29,3,-40,0","w":219},"\u00b3":{"d":"82,-136v0,38,-49,40,-69,22r-4,13v34,17,97,7,97,-38v0,-24,-20,-31,-39,-35v17,-4,30,-15,31,-36v3,-37,-61,-40,-79,-19r5,12v8,-20,52,-24,52,9v0,23,-16,39,-37,29v1,4,2,9,0,13v24,-6,43,3,43,30","w":119},"\u00be":{"d":"82,-136v0,37,-50,41,-70,22r-3,13v34,17,96,6,96,-38v0,-25,-20,-30,-39,-35v17,-5,31,-15,32,-36v2,-38,-61,-39,-80,-19r5,12v9,-20,52,-24,52,9v0,23,-16,39,-37,29v1,4,2,9,0,13v24,-6,44,4,44,30xm188,-246r-99,255v8,-2,8,-3,16,0r100,-255v-8,3,-9,2,-17,0xm242,-123r0,71v-16,-2,-38,4,-50,-2v14,-25,33,-46,50,-69xm170,-45r0,8r72,-2v0,14,-1,28,-2,40v8,-1,16,-1,24,0r-1,-40v9,0,16,1,21,2v-2,-6,-3,-11,0,-17r-21,2r2,-92v-4,1,-15,2,-19,0","w":300},"\u00de":{"d":"32,-247r3,156r-3,92v12,-1,24,-1,36,0v-4,-18,-2,-47,-3,-71v64,5,121,-5,122,-67v1,-61,-59,-65,-122,-62v0,-16,2,-32,3,-48v-9,3,-26,3,-36,0xm154,-136v-1,44,-41,61,-89,52r0,-102v49,-3,89,5,89,50"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved.
 * 
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is now the property of Heidelberger Druckmaschinen AG and its
 * licensors, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Heidelberger Druckmaschinen
 * AG.
 * 
 * Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Optima is a trademark of Heidelberger Druckmaschinen AG, which may be
 * registered in certain jurisdictions, exclusivly licensed through Linotype
 * Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.
 * 
 * Description:
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is copyrighted (c)  2000, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved. This software is now
 * the property of Heidelberger Druckmaschinen AG and its licensors and may not be
 * reproduced, used, displayed, modified, disclosed or transferred without the
 * express written approval of Heidelberger Druckmaschinen AG.
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Optima","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 8 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","cap-height":"1","bbox":"-10 -332 355 96.0441","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":33,"W":13,"V":33,"T":27,"A":13}},"\t":{"w":100},"\r":{"w":100},"!":{"d":"60,-53v-15,0,-29,14,-29,30v0,16,14,28,29,28v15,0,30,-12,30,-28v0,-15,-15,-30,-30,-30xm30,-222v5,56,12,83,25,145r10,0v8,-49,21,-92,25,-145v1,-18,-13,-29,-30,-29v-17,0,-31,11,-30,29","w":119},"\"":{"d":"76,-255r0,123r36,0r0,-123r-36,0xm8,-255r0,123r36,0r0,-123r-36,0","w":119},"#":{"d":"80,-237r-9,49r-34,-2v-2,17,-3,24,-7,38r33,0r-14,68r-34,-1v-2,17,-3,24,-7,38r33,-1v-3,18,-6,34,-11,48r18,0r9,-48r57,0r-12,48r19,0r8,-48r34,2v2,-16,3,-26,7,-39r-33,1r14,-68r34,1v2,-16,3,-25,7,-38r-33,1r12,-49v-7,1,-12,1,-19,0v-1,17,-6,32,-9,49r-57,0r12,-49v-6,1,-11,0,-18,0xm136,-152r-15,68r-57,0r15,-68r57,0"},"$":{"d":"108,-93v47,1,46,81,0,80r0,-80xm87,-151v-34,-2,-43,-58,-11,-70v4,-1,7,-3,11,-3r0,73xm13,-170v0,49,35,62,74,73r0,84v-28,-5,-48,-22,-55,-47r-7,0r-9,42v16,14,43,22,71,23r-1,39v8,0,17,-2,24,0r-2,-39v46,-4,78,-29,79,-77v2,-52,-39,-62,-79,-74r0,-78v24,2,38,18,45,38v13,-4,10,-26,19,-37v-14,-12,-41,-17,-64,-19r2,-30v-8,2,-16,2,-24,0r1,30v-43,3,-74,30,-74,72"},"%":{"d":"233,-249r-125,261r19,0r125,-261r-19,0xm98,-230v34,0,34,95,-1,96v-23,0,-25,-19,-25,-43v0,-28,3,-53,26,-53xm97,-242v-36,0,-61,24,-61,61v0,39,24,59,61,59v38,0,61,-24,61,-62v0,-37,-23,-58,-61,-58xm264,-103v35,0,34,96,-1,97v-23,0,-25,-20,-25,-44v0,-28,3,-53,26,-53xm263,-114v-36,0,-60,23,-61,60v-1,37,24,59,61,59v39,0,61,-24,61,-61v0,-37,-23,-58,-61,-58","w":360},"&":{"d":"153,-35v-34,37,-117,-6,-84,-59v5,-7,12,-14,20,-20xm121,-153v-18,-19,-38,-72,4,-76v42,5,20,69,-4,76xm14,-51v-2,73,112,64,149,29v8,30,52,21,91,23r-53,-57r50,-63r-20,-21v-13,26,-28,51,-43,69r-57,-69v26,-17,46,-28,46,-61v0,-32,-26,-44,-58,-44v-38,0,-66,17,-66,58v1,26,14,40,26,59v-32,17,-64,32,-65,77","w":259},"'":{"d":"32,-255r0,123r36,0r0,-123r-36,0","w":100},"(":{"d":"113,40v-63,-59,-59,-226,1,-282r-10,-9v-77,39,-104,202,-31,271v10,9,20,20,31,29","w":119},")":{"d":"6,-242v61,56,64,224,0,282r10,9v78,-39,103,-204,30,-272v-10,-9,-20,-19,-31,-28","w":119},"*":{"d":"147,-199v-7,-7,-11,-16,-15,-26v-12,10,-31,26,-45,34r7,-56v-11,2,-17,3,-28,0v2,19,6,35,6,56v-15,-11,-32,-22,-45,-34v-3,11,-8,18,-14,26v17,7,36,13,51,22r-51,21v6,8,12,15,14,26r45,-34v0,20,-4,38,-6,56v11,-2,17,-3,28,0r-7,-56v15,8,34,24,45,34v4,-10,8,-19,15,-26r-52,-21","w":159},"+":{"d":"92,-182r0,74r-74,0r0,34r74,0r0,74r34,0r0,-74r74,0r0,-34r-74,0r0,-74r-34,0","w":218},",":{"d":"72,-9v24,-22,-2,-55,-28,-40v-21,28,-24,68,-36,115r9,3","w":100},"-":{"d":"15,-99r0,40r90,0r0,-40r-90,0","w":119},".":{"d":"50,-53v-15,0,-29,14,-29,30v0,16,14,28,29,28v15,0,30,-12,30,-28v0,-15,-15,-30,-30,-30","w":100},"\/":{"d":"107,-252r-103,258v10,-1,19,0,29,0r103,-258v-10,0,-20,2,-29,0","w":140},"0":{"d":"100,-227v48,10,29,106,29,163v0,28,-5,51,-29,54v-40,-8,-31,-64,-31,-113v0,-47,-5,-95,31,-104xm103,-242v-63,0,-90,52,-89,122v1,70,19,125,86,125v66,0,86,-58,86,-130v1,-69,-23,-117,-83,-117"},"1":{"d":"20,-198v9,6,14,27,29,14r30,-15r-4,200r57,0r1,-243r-7,-3v-36,20,-66,32,-106,47"},"2":{"d":"117,-174v0,81,-57,112,-102,160r0,15r159,0v-2,-15,-2,-31,0,-46r-103,2v45,-44,97,-66,103,-137v7,-78,-144,-81,-159,-16v11,7,19,22,31,23v2,-26,9,-53,35,-53v27,0,36,22,36,52"},"3":{"d":"114,-182v0,34,-16,55,-50,49r0,19v36,-9,57,15,57,51v0,50,-59,73,-75,26v-4,-5,0,-17,-9,-17r-22,32v37,47,161,32,161,-45v0,-43,-23,-54,-59,-59r0,-4v27,-10,48,-22,50,-55v4,-71,-125,-74,-146,-22v10,7,15,24,29,24v3,-23,8,-44,34,-44v21,0,30,19,30,45"},"4":{"d":"103,-201v4,32,0,71,1,105r-71,0xm104,-56r-4,57r55,0v-3,-17,-3,-37,-3,-58r32,2v-2,-14,-2,-28,0,-42r-32,3r4,-148v-16,2,-32,2,-47,0r-100,151v3,9,3,25,0,35r95,0"},"5":{"d":"172,-75v0,-57,-69,-82,-116,-57v1,-20,-1,-46,3,-63v35,-2,70,-2,103,2v-2,-15,-2,-31,0,-46v-42,2,-90,-4,-128,2v4,39,8,83,2,124r9,5v24,-31,72,-8,72,38v0,34,-11,60,-41,60v-27,0,-34,-17,-41,-41r-5,0r-18,37v53,38,160,17,160,-61"},"6":{"d":"103,-123v46,1,40,110,1,113v-41,0,-45,-111,-1,-113xm189,-75v6,-67,-82,-89,-116,-48v-3,-57,22,-116,83,-101v5,-11,-10,-20,-26,-18v-78,5,-110,64,-110,147v0,62,27,100,87,100v50,0,77,-31,82,-80"},"7":{"d":"65,1v36,-82,77,-156,121,-233v-31,-12,-116,0,-167,-7v3,14,3,35,0,50r123,-4r-59,97r-63,97v15,0,31,-2,45,0"},"8":{"d":"101,-227v39,1,37,91,-2,90v-17,-1,-28,-19,-27,-42v1,-27,3,-48,29,-48xm23,-183v0,29,22,42,42,52v-29,8,-50,29,-50,66v0,48,34,70,84,70v51,0,85,-24,86,-75v1,-36,-24,-52,-49,-63v25,-6,41,-22,41,-53v0,-40,-34,-56,-77,-56v-43,0,-77,17,-77,59xm99,-122v42,0,44,113,1,113v-24,0,-31,-25,-31,-57v0,-32,6,-56,30,-56"},"9":{"d":"96,-226v25,0,31,26,31,61v0,28,-6,52,-30,52v-45,0,-41,-113,-1,-113xm127,-112v10,63,-45,130,-94,88v-4,16,13,30,34,29v80,-5,113,-62,113,-146v0,-62,-27,-101,-87,-101v-52,0,-78,30,-82,81v-5,64,81,90,116,49"},":":{"d":"50,-171v-15,0,-29,14,-29,30v0,16,13,29,29,29v16,0,30,-14,30,-29v0,-15,-15,-30,-30,-30xm50,-53v-15,0,-29,14,-29,30v0,16,14,28,29,28v15,0,30,-12,30,-28v0,-15,-15,-30,-30,-30","w":100},";":{"d":"50,-171v-15,0,-29,14,-29,30v0,16,13,29,29,29v16,0,30,-14,30,-29v0,-15,-15,-30,-30,-30xm72,-9v24,-22,-2,-55,-28,-40v-21,28,-24,68,-36,115r9,3","w":100},"<":{"d":"18,-105r0,28r182,79r0,-33r-139,-60r139,-60r0,-34","w":218},"=":{"d":"18,-67r0,34r182,0r0,-34r-182,0xm18,-149r0,34r182,0r0,-34r-182,0","w":218},">":{"d":"18,-151r139,60r-139,60r0,33r182,-79r0,-28r-182,-80r0,34","w":218},"?":{"d":"78,-53v-15,0,-30,15,-30,30v0,16,15,28,30,28v15,0,29,-12,29,-28v0,-16,-14,-30,-29,-30xm136,-198v4,-55,-76,-65,-112,-40r1,25r5,0v5,-26,61,-29,58,5v-4,38,-50,45,-51,88v0,37,35,52,72,43v0,-6,10,-13,3,-16v-24,15,-45,-13,-25,-33v20,-19,47,-36,49,-72","w":159},"@":{"d":"143,-184v13,1,19,12,19,26v0,32,-8,70,-37,76v-13,-1,-18,-11,-18,-25v0,-35,8,-69,36,-77xm184,-91v3,-37,13,-65,19,-99v-11,1,-20,0,-31,0v-2,6,-1,15,-5,19v-6,-15,-13,-24,-33,-24v-42,0,-58,40,-59,86v-1,26,14,42,36,43v22,0,35,-18,46,-32v0,22,10,33,31,33v38,0,60,-35,60,-79v0,-58,-39,-91,-101,-91v-74,0,-121,45,-125,120v-6,102,121,132,188,74r1,-11v-17,16,-44,30,-73,30v-57,0,-89,-38,-89,-94v0,-63,38,-109,102,-109v55,0,81,36,81,90v0,30,-10,53,-35,58v-7,0,-14,-5,-13,-14","w":270},"A":{"d":"108,-179r-34,86r66,0xm64,-72v-9,24,-17,48,-24,73v-12,0,-24,-2,-35,0r103,-249v9,0,19,2,27,0r77,198v8,20,16,37,23,51r-62,0r-25,-73r-84,0","w":240,"k":{"y":20,"w":20,"v":20,"u":6,"Y":27,"W":16,"V":20,"U":11,"T":27,"Q":11,"O":11,"G":16,"C":11}},"B":{"d":"86,-117v37,-5,60,11,59,49v-1,36,-19,53,-59,49r0,-98xm87,-225v34,-6,57,8,56,41v-2,32,-20,49,-57,46xm196,-191v-1,-77,-98,-48,-167,-56r2,202v0,15,-1,31,-2,46v81,0,175,12,173,-71v-1,-39,-30,-56,-64,-61v29,-8,58,-23,58,-60","w":219,"k":{"A":13,".":9,",":9}},"C":{"d":"219,-9v-2,-12,13,-29,3,-34v-15,15,-36,27,-65,27v-57,0,-85,-41,-85,-103v0,-63,26,-110,82,-110v31,0,46,12,62,32r5,0v0,-14,4,-26,8,-37v-20,-8,-44,-17,-73,-17v-90,1,-140,45,-143,137v-3,105,115,142,206,105","w":240,"k":{"A":16}},"D":{"d":"206,-130v0,79,-39,120,-120,110r0,-204v73,-12,120,23,120,94xm262,-130v4,-118,-104,-122,-220,-115v-5,0,-9,-2,-13,-2r2,202v0,15,-1,31,-2,46r109,0v78,-4,122,-50,124,-131","w":280,"k":{"Y":27,"W":6,"V":13,"A":20,".":16,",":16}},"E":{"d":"165,-30v-26,4,-53,5,-82,5r-1,-91v27,0,55,1,82,3v0,-11,-4,-21,0,-31r-82,3r2,-79r81,5v-1,-10,-2,-23,0,-32v-39,4,-97,1,-139,0r2,202v0,15,-1,31,-2,46r139,0v0,-11,-2,-21,0,-31","w":180},"F":{"d":"26,-247r2,202v0,15,-1,31,-2,46r59,0r-3,-117v27,0,55,1,82,3v0,-11,-4,-21,0,-31r-82,3r2,-79r81,5v-1,-10,-2,-23,0,-32v-39,4,-97,1,-139,0","w":180,"k":{"r":13,"o":16,"i":6,"e":16,"a":20,"A":20,".":40,",":40}},"G":{"d":"167,-229v34,-2,56,16,71,36r5,0v2,-14,6,-25,10,-37v-26,-13,-48,-22,-87,-21v-91,2,-147,45,-149,137v-2,116,135,137,238,105r2,-100v-18,0,-39,2,-56,0v3,20,5,59,2,87v-71,22,-130,-20,-127,-94v2,-65,31,-110,91,-113","w":280},"H":{"d":"195,-118r-3,119r59,0r-2,-201v0,-15,1,-31,2,-47v-16,3,-42,3,-59,0r3,99r-110,0r3,-99v-16,3,-43,3,-59,0r2,202v0,15,-1,31,-2,46r59,0r-3,-119r110,0","w":280},"I":{"d":"31,-247v4,65,1,133,2,202v0,15,-1,31,-2,46r59,0v-5,-77,-5,-168,0,-248v-16,3,-43,3,-59,0","w":119},"J":{"d":"33,-200v0,95,25,210,-30,242r5,17v122,-6,64,-181,82,-306v-16,3,-43,3,-59,0v1,16,2,32,2,47","w":119,"k":{"u":6,"o":4,"e":4,"a":4,"A":6}},"K":{"d":"85,1v-3,-30,-5,-80,-2,-112r72,112r66,0r-98,-144r93,-104v-12,2,-30,3,-42,0v-27,38,-62,78,-92,115r3,-115v-16,3,-42,3,-59,0r2,202v0,15,-1,31,-2,46r59,0","w":219,"k":{"y":20,"u":11,"o":13,"e":9,"O":13}},"L":{"d":"29,-247r2,202v0,15,-1,31,-2,46r139,0v0,-11,-2,-21,0,-31v-26,4,-53,5,-82,5r2,-222v-16,3,-43,3,-59,0","w":180,"k":{"y":33,"Y":40,"W":33,"V":33,"T":33}},"M":{"d":"52,-80v3,-26,3,-57,10,-82r78,163v5,0,10,-2,14,0r80,-166r14,166r59,0r-31,-248v-13,2,-17,3,-30,0v-19,44,-20,44,-41,88v-21,44,-21,44,-43,84r-83,-172v-8,2,-20,3,-29,0r-37,248v11,0,23,-2,33,0","w":320},"N":{"d":"33,-247v4,80,-4,166,-5,248v11,0,23,-2,34,0r-2,-174v55,58,108,116,157,174v9,-1,20,-1,29,0r6,-248v-15,2,-17,3,-32,0r2,172r-156,-172v-15,3,-18,2,-33,0","w":280,"k":{"A":6}},"O":{"d":"150,-231v55,0,78,44,78,101v0,65,-22,114,-81,114v-56,0,-75,-44,-75,-103v0,-60,21,-112,78,-112xm151,-251v-83,0,-138,47,-138,129v0,87,52,127,137,127v83,0,137,-47,137,-128v0,-86,-53,-128,-136,-128","w":299,"k":{"Y":27,"X":13,"W":6,"V":13,"T":13,"A":13,".":9,",":9}},"P":{"d":"83,-226v58,-14,67,65,35,92v-9,8,-21,9,-36,9xm193,-183v2,-81,-94,-59,-167,-64r2,202v0,15,-1,31,-2,46r59,0r-3,-107v64,2,110,-15,111,-77","k":{"o":16,"e":16,"a":33,"A":20,".":46,",":46}},"Q":{"d":"150,-231v55,0,78,44,78,101v0,65,-22,114,-81,114v-56,0,-75,-44,-75,-103v0,-60,21,-112,78,-112xm287,-123v0,-86,-53,-128,-136,-128v-83,0,-138,47,-138,129v0,84,50,125,132,127r94,69v17,-9,31,-17,51,-20r-95,-54v51,-19,92,-55,92,-123","w":299,"k":{".":9,",":9}},"R":{"d":"86,-226v39,-2,56,8,56,47v0,36,-20,56,-57,51v0,-33,0,-65,1,-98xm197,-187v1,-79,-97,-54,-168,-60r2,202v0,15,-1,31,-2,46r59,0r-3,-114r4,0r64,114r65,0r-77,-122v33,-9,56,-26,56,-66","w":219,"k":{"Y":13,"W":6,"V":13,"T":6}},"S":{"d":"57,-197v0,-19,18,-32,38,-32v21,0,35,10,43,31r6,0r11,-36v-48,-37,-140,-12,-140,60v0,78,98,58,107,121v3,23,-17,38,-42,37v-28,0,-45,-15,-49,-39r-7,0v-2,17,-7,30,-11,46v56,31,154,10,154,-66v0,-80,-98,-58,-110,-122","w":180},"T":{"d":"8,-215r65,-5v4,70,2,152,-1,221r59,0r-2,-221r64,5v-3,-8,-3,-23,0,-32r-185,0v0,11,2,22,0,32","k":{"y":27,"w":33,"u":36,"r":27,"o":36,"i":27,"h":16,"e":36,"a":36,"O":13,"A":27,";":33,":":33,".":40,"-":40,",":40}},"U":{"d":"32,-247v3,126,-24,252,110,252v129,0,103,-134,111,-252v-10,3,-27,3,-37,0v-1,84,30,223,-58,229v-102,7,-69,-135,-67,-229v-17,3,-42,3,-59,0","w":280},"V":{"d":"136,-66r-64,-181v-19,3,-44,3,-64,0r97,248v9,-1,23,-1,32,0r98,-248v-12,3,-19,2,-31,0","w":240,"k":{"u":13,"o":20,"i":13,"e":20,"a":20,"O":13,"A":20,";":27,":":27,".":46,"-":27,",":46}},"W":{"d":"179,-175r31,88v10,29,18,59,26,88v12,-1,25,-1,37,0r82,-248v-9,3,-19,2,-31,0r-54,182r-57,-182v-9,3,-26,3,-36,0r-63,182r-47,-182v-17,3,-41,3,-59,0r72,248v12,-1,25,-1,37,0","w":360,"k":{"y":6,"u":6,"o":13,"i":6,"e":13,"a":13,"O":6,"A":16,";":27,":":27,".":33,"-":20,",":33}},"X":{"d":"100,-90r47,91r63,0r-75,-139r76,-109v-10,3,-27,3,-37,0r-53,88r-44,-88v-20,3,-45,3,-65,0r74,134r-77,114v12,-1,24,-1,36,0","w":219},"Y":{"d":"181,-247v-17,37,-31,79,-55,108v-18,-32,-37,-73,-53,-108v-20,3,-45,3,-65,0r77,146v2,35,-1,68,-3,102r61,0v-5,-36,-3,-72,-3,-110r75,-138v-9,3,-25,3,-34,0","w":219,"k":{"u":46,"o":46,"i":20,"e":40,"a":46,"O":20,"A":20,";":33,":":33,".":46,"-":54,",":46}},"Z":{"d":"67,-105v-20,37,-46,67,-63,106r203,0v-2,-10,-2,-19,0,-29r-126,2r61,-107r65,-107r0,-7r-188,0v2,11,2,20,0,31v35,-3,78,-5,113,-3","w":219},"[":{"d":"76,-229r39,2v0,-7,-2,-14,0,-20v-24,2,-54,4,-78,0v5,76,1,170,2,254r-2,38v23,-3,55,-3,78,0v0,-7,-2,-16,0,-21v-10,1,-26,3,-39,2r0,-255","w":119},"\\":{"d":"27,-252r103,258v10,-1,20,0,30,0r-103,-258v-10,0,-20,2,-30,0","w":187},"]":{"d":"5,-227r39,-2r0,255v-13,1,-29,-1,-39,-2v0,7,2,15,0,21v22,-3,54,-3,77,0r0,-292v-22,4,-53,2,-77,0v0,7,2,14,0,20","w":119},"^":{"d":"109,-194r50,103r36,0r-72,-145r-28,0r-72,145r36,0","w":218},"_":{"d":"0,26r0,18r180,0r0,-18r-180,0","w":180},"`":{"d":"39,-260v-14,-16,-41,-8,-34,14v14,18,44,30,64,45r20,0","w":119},"a":{"d":"80,-18v-28,1,-25,-51,-5,-60r32,-14v-1,32,5,74,-27,74xm153,-37v3,-72,10,-145,-65,-140v-28,2,-51,11,-67,25v3,7,1,18,7,22v15,-28,89,-27,77,19v-26,27,-96,11,-96,70v0,54,81,59,98,21v5,27,43,30,67,17r0,-9v-17,0,-22,-7,-21,-25","w":180,"k":{"y":11,"w":6,"v":11}},"b":{"d":"101,-10v-31,-3,-31,-40,-31,-74v0,-35,3,-71,34,-71v21,0,31,21,31,63v0,44,-4,77,-34,82xm119,-177v-24,-1,-40,14,-49,31r3,-125v-13,3,-40,3,-54,0r2,213v0,20,-1,40,-2,60v20,1,25,-16,40,-21v10,14,24,24,48,24v56,-1,81,-38,81,-96v0,-48,-23,-84,-69,-86","k":{"y":6,"v":4}},"c":{"d":"114,-159v23,0,33,16,36,36r9,0v1,-12,8,-28,13,-37v-61,-38,-157,-8,-157,75v0,76,79,112,143,76v0,-10,13,-20,3,-25v-5,9,-23,17,-37,17v-39,0,-53,-28,-53,-68v-1,-40,9,-72,43,-74","w":180,"k":{"y":9,"k":6,"h":6}},"d":{"d":"96,-16v-28,0,-31,-35,-31,-66v0,-35,3,-66,33,-70v47,3,43,136,-2,136xm81,5v31,1,40,-15,52,-33r-3,29v17,0,36,-2,51,0r-2,-212v0,-20,1,-40,2,-60v-13,3,-40,3,-54,0r2,121v-7,-15,-26,-29,-48,-27v-46,3,-69,40,-69,90v0,52,17,91,69,92","k":{"y":9,"w":4,"v":9}},"e":{"d":"12,-85v-5,80,81,112,142,75v1,-8,12,-19,4,-23v-41,36,-102,6,-93,-52r103,0v6,-54,-21,-94,-73,-92v-55,2,-79,35,-83,92xm65,-102v2,-26,4,-59,29,-59v23,0,26,31,27,59r-56,0","w":180},"f":{"d":"125,-270v-67,-11,-85,45,-93,100r-26,-1v2,7,3,12,0,19r26,0r-3,153v17,0,38,-2,54,0r-3,-154r34,1v0,-7,-2,-13,0,-19r-34,1v-10,-16,-34,-62,5,-62v15,0,26,10,38,9","w":113},"g":{"d":"87,-72v-19,-2,-24,-21,-24,-43v0,-32,9,-47,25,-47v32,1,33,93,-1,90xm59,-62v-30,4,-48,56,-13,65v-18,10,-36,18,-35,46v1,32,33,48,71,47v54,-1,94,-22,95,-77v1,-45,-38,-49,-85,-46v-25,2,-38,-24,-17,-32v70,15,112,-61,66,-100r33,1r0,-17v-70,-1,-161,-16,-161,56v0,32,19,50,46,57xm84,5v29,1,52,5,52,34v0,27,-19,43,-45,43v-27,0,-47,-13,-47,-42v1,-26,11,-36,40,-35","w":180},"h":{"d":"181,-111v10,-74,-88,-84,-110,-34v-2,-42,1,-83,2,-126v-13,3,-40,3,-54,0r2,213v0,20,-1,40,-2,59v17,0,38,-2,54,0v3,-52,-23,-141,29,-146v41,-4,26,67,28,102v0,17,-1,32,-3,44v17,0,38,-2,54,0r0,-112","k":{"y":13}},"i":{"d":"50,-269v-15,0,-28,14,-28,29v0,15,13,28,28,28v15,0,28,-13,28,-28v0,-15,-13,-29,-28,-29xm23,-172v4,55,4,118,0,173v17,0,38,-2,54,0v-4,-54,-4,-119,0,-173v-17,0,-38,2,-54,0","w":100,"k":{"v":6}},"j":{"d":"50,-269v-15,0,-28,14,-28,29v0,15,13,28,28,28v15,0,28,-13,28,-28v0,-15,-13,-29,-28,-29xm26,37v0,27,-7,40,-27,47r4,12v47,-5,71,-29,71,-80r3,-188v-17,0,-38,2,-54,0","w":100},"k":{"d":"19,-271r2,213v0,20,-1,40,-2,59v17,0,36,-2,52,0v1,-26,-8,-62,0,-83v19,23,34,58,51,83r56,0r-65,-107r64,-66v-12,0,-26,2,-37,0r-68,79v-6,-50,1,-123,1,-178v-13,3,-40,3,-54,0","w":180,"k":{"y":6}},"l":{"d":"23,-271r2,213v0,20,-1,40,-2,59v17,0,38,-2,54,0r-2,-212v0,-20,1,-40,2,-60v-13,3,-40,3,-54,0","w":100},"m":{"d":"123,-177v-28,-1,-41,17,-55,32r2,-27v-17,0,-36,2,-52,0r2,135v0,13,-1,26,-2,38v17,0,38,-2,54,0v1,-49,-21,-139,28,-146v46,6,21,94,23,146v18,0,38,-2,54,0v-3,-32,-2,-69,-2,-105v0,-22,6,-41,28,-41v41,-1,26,67,28,102v0,17,-1,32,-3,44v17,0,38,-2,54,0v-4,-74,22,-181,-57,-178v-25,1,-44,16,-55,34v-8,-19,-23,-33,-47,-34","w":299,"k":{"y":4}},"n":{"d":"181,-111v9,-76,-87,-81,-112,-34r2,-27v-17,0,-36,2,-52,0r2,135v0,13,-1,26,-2,38v17,0,38,-2,54,0v1,-49,-22,-142,29,-146v41,-3,26,67,28,102v0,17,-1,32,-3,44v17,0,38,-2,54,0r0,-112","k":{"y":6,"v":4}},"o":{"d":"101,-161v29,2,33,33,34,67v0,56,-12,84,-35,84v-32,0,-35,-38,-35,-71v0,-43,6,-74,36,-80xm100,-177v-56,2,-88,37,-88,96v0,56,32,86,88,86v58,0,88,-35,88,-94v0,-54,-33,-90,-88,-88","k":{"y":4,"w":4,"v":4}},"p":{"d":"67,-141r2,-31v-17,0,-34,2,-50,0r0,267v17,0,38,-2,54,0r-2,-115v7,17,23,25,46,25v52,-1,70,-40,71,-93v0,-54,-21,-86,-70,-89v-26,-1,-45,17,-51,36xm103,-155v46,3,44,138,-1,138v-27,0,-34,-28,-34,-64v0,-36,5,-69,35,-74","k":{"y":6}},"q":{"d":"97,-155v47,1,50,134,2,137v-47,-6,-48,-129,-2,-137xm82,5v22,1,40,-12,49,-25r-3,115v17,0,38,-2,54,0r-2,-208v0,-20,1,-39,2,-59v-17,0,-36,2,-51,0v0,10,4,22,2,30v-10,-21,-22,-35,-52,-35v-51,1,-69,41,-69,93v0,50,22,87,70,89"},"r":{"d":"131,-176v-35,0,-48,20,-60,48v-3,-12,1,-30,0,-44v-16,0,-34,2,-49,0v3,54,3,117,0,173v17,0,38,-2,54,0v-4,-50,-19,-152,50,-124v8,-9,-1,-37,5,-53","w":140,"k":{"c":4,"a":4,".":27,"-":20,",":27}},"s":{"d":"94,-35v-6,35,-67,21,-69,-9r-9,0v-1,12,-3,23,-6,35v38,26,123,17,120,-45v-2,-49,-51,-49,-79,-70v-16,-12,0,-36,19,-35v21,1,30,15,36,30r10,0v2,-11,4,-23,9,-31v-36,-31,-114,-19,-114,41v0,50,48,50,76,71v4,3,7,7,7,13","w":140,"k":{"w":4}},"t":{"d":"116,-18v-48,18,-35,-45,-36,-94r2,-41r32,1v-2,-7,-1,-12,0,-19r-32,1r3,-64v-16,-1,-35,17,-53,20r2,44r-25,-1v1,7,2,12,0,19r25,0v2,60,-24,157,43,157v14,0,30,-4,39,-8r0,-15","w":119},"u":{"d":"19,-60v-10,75,86,81,112,35r-2,26v17,0,36,-2,52,0v-4,-54,-4,-119,0,-173r-54,0v-3,52,23,142,-28,147v-40,4,-28,-66,-29,-102v0,-17,1,-32,3,-45v-17,0,-38,2,-54,0r0,112"},"v":{"d":"145,-172r-44,126r-40,-126r-56,0r63,173v13,0,27,-2,39,0v18,-62,45,-119,68,-173v-10,0,-20,2,-30,0","w":180,"k":{"o":6,"e":4,"a":9,".":33,",":33}},"w":{"d":"132,-172r-37,124r-36,-124r-54,0r56,173v14,0,29,-2,42,0r36,-118r36,118v13,0,28,-2,40,0r60,-173v-10,1,-19,2,-29,0r-37,124r-37,-124v-13,0,-28,2,-40,0","w":280,"k":{"o":4,"h":6,"a":6,".":27,",":27}},"x":{"d":"10,-172r57,95r-58,78v10,-1,21,-1,31,0r38,-60r34,60r59,0r-59,-98r58,-75v-11,0,-22,2,-32,0r-37,57r-31,-57r-60,0","w":180},"y":{"d":"103,-59r-43,-113v-18,0,-36,2,-54,0r72,173v-15,35,-29,61,-46,94v11,0,21,-2,31,0r111,-267v-10,0,-20,2,-30,0","w":180,"k":{"o":6,"e":6,"a":9,".":33,",":33}},"z":{"d":"22,-148r84,-4r-95,139v-3,15,3,13,21,13r134,1v-2,-6,-1,-17,0,-24r-92,4r95,-139r0,-14r-147,0v2,7,1,17,0,24","w":180},"{":{"d":"48,-201v1,40,5,88,-30,91r0,19v35,3,31,51,30,91v-1,37,29,46,68,43r0,-27v-17,0,-37,4,-36,-16v2,-46,5,-93,-34,-101v41,-6,34,-55,34,-100v0,-20,18,-17,36,-17r0,-27v-40,-2,-69,5,-68,44","w":119},"|":{"d":"95,-270r0,359r28,0r0,-359r-28,0","w":218},"}":{"d":"72,-149v4,-59,1,-108,-68,-96r0,27v18,0,37,-3,36,17v-1,46,-5,93,33,101v-40,6,-33,55,-33,100v0,20,-18,16,-36,16r0,27v39,3,69,-6,68,-43v-1,-40,-5,-88,30,-91r0,-19v-17,-3,-31,-18,-30,-39","w":119},"~":{"d":"178,-121v-26,65,-91,-25,-135,10v-7,6,-13,13,-18,23r15,27v8,-15,15,-25,32,-27v36,12,100,49,121,-6","w":218},"\u00c4":{"d":"158,-311v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,25,-12,23,-24v2,-12,-12,-23,-23,-23xm82,-311v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,25,-12,23,-24v2,-12,-12,-23,-23,-23xm140,-93r-66,0r34,-86xm40,1v7,-25,15,-49,24,-73r84,0r25,73r62,0r-49,-115r-51,-134v-9,0,-19,2,-27,0r-103,249v12,0,24,-2,35,0","w":240},"\u00c5":{"d":"120,-313v11,0,21,9,21,20v0,12,-9,21,-21,21v-12,0,-20,-9,-20,-21v0,-12,9,-20,20,-20xm120,-332v-22,3,-39,15,-39,39v0,23,16,39,39,39v23,0,39,-15,39,-39v0,-24,-17,-36,-39,-39xm140,-93r-66,0r34,-86xm40,1v7,-25,15,-49,24,-73r84,0r25,73r62,0r-49,-115r-51,-134v-9,0,-19,2,-27,0r-103,249v12,0,24,-2,35,0","w":240},"\u00c7":{"d":"150,47v0,20,-29,16,-42,10r-5,13v28,11,81,11,81,-25v0,-21,-22,-30,-44,-24r7,-16v29,0,53,-4,72,-14v-2,-12,13,-29,3,-34v-15,15,-36,27,-65,27v-57,0,-85,-41,-85,-103v0,-63,26,-110,82,-110v31,0,46,12,62,32r5,0v0,-14,4,-26,8,-37v-20,-8,-44,-17,-73,-17v-90,1,-143,45,-143,137v0,74,48,112,119,119v-2,10,-17,23,-8,30v10,-3,29,-1,26,12","w":240},"\u00c9":{"d":"146,-297v19,-9,4,-41,-15,-30v-23,13,-42,46,-61,66v37,2,53,-25,76,-36xm165,-30v-26,4,-53,5,-82,5r-1,-91v27,0,55,1,82,3v0,-11,-4,-21,0,-31r-82,3r2,-79r81,5v-1,-10,-2,-23,0,-32v-39,4,-97,1,-139,0r2,202v0,15,-1,31,-2,46r139,0v0,-11,-2,-21,0,-31","w":180},"\u00d1":{"d":"196,-314v-17,47,-73,-29,-103,14v-7,8,-12,19,-13,32r15,0v20,-49,104,49,116,-46r-15,0xm33,-247v4,80,-4,166,-5,248v11,0,23,-2,34,0r-2,-174v55,58,108,116,157,174v9,-1,20,-1,29,0r6,-248v-15,2,-17,3,-32,0r2,172r-156,-172v-15,3,-18,2,-33,0","w":280},"\u00d6":{"d":"188,-311v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,23,-12,23,-24v0,-11,-12,-23,-23,-23xm112,-311v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,25,-12,23,-24v2,-12,-12,-23,-23,-23xm150,-231v55,0,78,44,78,101v0,65,-22,114,-81,114v-56,0,-75,-44,-75,-103v0,-60,21,-112,78,-112xm151,-251v-83,0,-138,47,-138,129v0,87,52,127,137,127v83,0,137,-47,137,-128v0,-86,-53,-128,-136,-128","w":299},"\u00dc":{"d":"187,-311v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm111,-311v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm32,-247v3,126,-24,252,110,252v129,0,103,-134,111,-252v-10,3,-27,3,-37,0v-1,84,30,223,-58,229v-102,7,-69,-135,-67,-229v-17,3,-42,3,-59,0","w":280},"\u00e1":{"d":"142,-237v20,-10,4,-41,-15,-30v-23,13,-42,46,-61,66v37,2,53,-25,76,-36xm80,-18v-28,1,-25,-51,-5,-60r32,-14v-1,32,5,74,-27,74xm153,-37v3,-72,10,-145,-65,-140v-28,2,-51,11,-67,25v3,7,1,18,7,22v15,-28,89,-27,77,19v-26,27,-96,11,-96,70v0,54,81,59,98,21v5,27,43,30,67,17r0,-9v-17,0,-22,-7,-21,-25","w":180},"\u00e0":{"d":"71,-260v-13,-17,-45,-5,-33,14v12,19,44,31,64,45r20,0xm80,-18v-28,1,-25,-51,-5,-60r32,-14v-1,32,5,74,-27,74xm153,-37v3,-72,10,-145,-65,-140v-28,2,-51,11,-67,25v3,7,1,18,7,22v15,-28,89,-27,77,19v-26,27,-96,11,-96,70v0,54,81,59,98,21v5,27,43,30,67,17r0,-9v-17,0,-22,-7,-21,-25","w":180},"\u00e2":{"d":"90,-236r40,35r20,0r-43,-64r-34,0r-43,64r20,0xm80,-18v-28,1,-25,-51,-5,-60r32,-14v-1,32,5,74,-27,74xm153,-37v3,-72,10,-145,-65,-140v-28,2,-51,11,-67,25v3,7,1,18,7,22v15,-28,89,-27,77,19v-26,27,-96,11,-96,70v0,54,81,59,98,21v5,27,43,30,67,17r0,-9v-17,0,-22,-7,-21,-25","w":180},"\u00e4":{"d":"128,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm52,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm80,-18v-28,1,-25,-51,-5,-60r32,-14v-1,32,5,74,-27,74xm153,-37v3,-72,10,-145,-65,-140v-28,2,-51,11,-67,25v3,7,1,18,7,22v15,-28,89,-27,77,19v-26,27,-96,11,-96,70v0,54,81,59,98,21v5,27,43,30,67,17r0,-9v-17,0,-22,-7,-21,-25","w":180},"\u00e3":{"d":"140,-254v-19,49,-103,-49,-116,46r16,0v20,-49,103,48,116,-46r-16,0xm80,-18v-28,1,-25,-51,-5,-60r32,-14v-1,32,5,74,-27,74xm153,-37v3,-72,10,-145,-65,-140v-28,2,-51,11,-67,25v3,7,1,18,7,22v15,-28,89,-27,77,19v-26,27,-96,11,-96,70v0,54,81,59,98,21v5,27,43,30,67,17r0,-9v-17,0,-22,-7,-21,-25","w":180},"\u00e5":{"d":"90,-253v12,0,21,8,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21v0,-11,8,-20,20,-20xm129,-233v0,-55,-78,-45,-78,0v0,22,15,39,39,39v23,0,39,-15,39,-39xm80,-18v-28,1,-25,-51,-5,-60r32,-14v-1,32,5,74,-27,74xm153,-37v3,-72,10,-145,-65,-140v-28,2,-51,11,-67,25v3,7,1,18,7,22v15,-28,89,-27,77,19v-26,27,-96,11,-96,70v0,54,81,59,98,21v5,27,43,30,67,17r0,-9v-17,0,-22,-7,-21,-25","w":180},"\u00e7":{"d":"107,47v-2,19,-30,16,-43,10r-5,13v27,12,81,10,81,-25v0,-21,-22,-30,-44,-24v4,-5,2,-17,13,-16v32,1,52,-11,57,-35r-5,-4v-5,9,-23,17,-37,17v-39,0,-53,-28,-53,-68v-1,-40,9,-72,43,-74v23,0,33,16,36,36r9,0v1,-12,8,-28,13,-37v-61,-38,-162,-7,-157,75v3,50,27,81,73,89v-2,10,-17,24,-8,31v11,-3,28,-1,27,12","w":180},"\u00e9":{"d":"142,-237v20,-10,4,-41,-15,-30v-23,13,-42,46,-61,66v37,2,53,-25,76,-36xm12,-85v-5,80,81,112,142,75v1,-8,12,-19,4,-23v-41,36,-102,6,-93,-52r103,0v6,-54,-21,-94,-73,-92v-55,2,-79,35,-83,92xm65,-102v2,-26,4,-59,29,-59v23,0,26,31,27,59r-56,0","w":180},"\u00e8":{"d":"71,-260v-13,-17,-45,-5,-33,14v12,19,44,31,64,45r20,0xm12,-85v-5,80,81,112,142,75v1,-8,12,-19,4,-23v-41,36,-102,6,-93,-52r103,0v6,-54,-21,-94,-73,-92v-55,2,-79,35,-83,92xm65,-102v2,-26,4,-59,29,-59v23,0,26,31,27,59r-56,0","w":180},"\u00ea":{"d":"90,-236r40,35r20,0r-43,-64r-34,0r-43,64r20,0xm12,-85v-5,80,81,112,142,75v1,-8,12,-19,4,-23v-41,36,-102,6,-93,-52r103,0v6,-54,-21,-94,-73,-92v-55,2,-79,35,-83,92xm65,-102v2,-26,4,-59,29,-59v23,0,26,31,27,59r-56,0","w":180},"\u00eb":{"d":"128,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm52,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm12,-85v-5,80,81,112,142,75v1,-8,12,-19,4,-23v-41,36,-102,6,-93,-52r103,0v6,-54,-21,-94,-73,-92v-55,2,-79,35,-83,92xm65,-102v2,-26,4,-59,29,-59v23,0,26,31,27,59r-56,0","w":180},"\u00ed":{"d":"97,-237v19,-9,5,-40,-15,-30v-23,13,-41,46,-61,66v37,2,53,-25,76,-36xm23,-172v4,55,4,118,0,173v17,0,38,-2,54,0v-4,-54,-4,-119,0,-173v-17,0,-38,2,-54,0","w":100},"\u00ec":{"d":"29,-260v-13,-17,-43,-5,-32,14v11,19,44,31,63,45r20,0xm23,-172v4,55,4,118,0,173v17,0,38,-2,54,0v-4,-54,-4,-119,0,-173v-17,0,-38,2,-54,0","w":100},"\u00ee":{"d":"50,-236r40,35r21,0r-44,-64r-34,0r-42,64r19,0xm23,-172v4,55,4,118,0,173v17,0,38,-2,54,0v-4,-54,-4,-119,0,-173v-17,0,-38,2,-54,0","w":100},"\u00ef":{"d":"88,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm12,-251v-12,0,-22,11,-22,23v0,12,9,24,22,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm23,-172v4,55,4,118,0,173v17,0,38,-2,54,0v-4,-54,-4,-119,0,-173v-17,0,-38,2,-54,0","w":100},"\u00f1":{"d":"150,-254v-19,49,-103,-49,-115,46r15,0v20,-50,102,50,116,-46r-16,0xm181,-111v9,-76,-87,-81,-112,-34r2,-27v-17,0,-36,2,-52,0r2,135v0,13,-1,26,-2,38v17,0,38,-2,54,0v1,-49,-22,-142,29,-146v41,-3,26,67,28,102v0,17,-1,32,-3,44v17,0,38,-2,54,0r0,-112"},"\u00f3":{"d":"147,-237v19,-9,5,-40,-15,-30v-23,13,-41,46,-61,66v37,2,53,-25,76,-36xm101,-161v29,2,33,33,34,67v0,56,-12,84,-35,84v-32,0,-35,-38,-35,-71v0,-43,6,-74,36,-80xm100,-177v-56,2,-88,37,-88,96v0,56,32,86,88,86v58,0,88,-35,88,-94v0,-54,-33,-90,-88,-88"},"\u00f2":{"d":"79,-260v-13,-17,-45,-5,-33,14v12,19,44,31,64,45r20,0xm101,-161v29,2,33,33,34,67v0,56,-12,84,-35,84v-32,0,-35,-38,-35,-71v0,-43,6,-74,36,-80xm100,-177v-56,2,-88,37,-88,96v0,56,32,86,88,86v58,0,88,-35,88,-94v0,-54,-33,-90,-88,-88"},"\u00f4":{"d":"100,-236r40,35r21,0r-44,-64r-34,0r-43,64r20,0xm101,-161v29,2,33,33,34,67v0,56,-12,84,-35,84v-32,0,-35,-38,-35,-71v0,-43,6,-74,36,-80xm100,-177v-56,2,-88,37,-88,96v0,56,32,86,88,86v58,0,88,-35,88,-94v0,-54,-33,-90,-88,-88"},"\u00f6":{"d":"138,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm62,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm101,-161v29,2,33,33,34,67v0,56,-12,84,-35,84v-32,0,-35,-38,-35,-71v0,-43,6,-74,36,-80xm100,-177v-56,2,-88,37,-88,96v0,56,32,86,88,86v58,0,88,-35,88,-94v0,-54,-33,-90,-88,-88"},"\u00f5":{"d":"150,-254v-19,49,-103,-49,-115,46r15,0v20,-50,102,50,116,-46r-16,0xm101,-161v29,2,33,33,34,67v0,56,-12,84,-35,84v-32,0,-35,-38,-35,-71v0,-43,6,-74,36,-80xm100,-177v-56,2,-88,37,-88,96v0,56,32,86,88,86v58,0,88,-35,88,-94v0,-54,-33,-90,-88,-88"},"\u00fa":{"d":"147,-237v19,-9,5,-40,-15,-30v-23,13,-41,46,-61,66v37,2,53,-25,76,-36xm19,-60v-10,75,86,81,112,35r-2,26v17,0,36,-2,52,0v-4,-54,-4,-119,0,-173r-54,0v-3,52,23,142,-28,147v-40,4,-28,-66,-29,-102v0,-17,1,-32,3,-45v-17,0,-38,2,-54,0r0,112"},"\u00f9":{"d":"79,-260v-13,-17,-45,-5,-33,14v12,19,44,31,64,45r20,0xm19,-60v-10,75,86,81,112,35r-2,26v17,0,36,-2,52,0v-4,-54,-4,-119,0,-173r-54,0v-3,52,23,142,-28,147v-40,4,-28,-66,-29,-102v0,-17,1,-32,3,-45v-17,0,-38,2,-54,0r0,112"},"\u00fb":{"d":"100,-236r40,35r21,0r-44,-64r-34,0r-43,64r20,0xm19,-60v-10,75,86,81,112,35r-2,26v17,0,36,-2,52,0v-4,-54,-4,-119,0,-173r-54,0v-3,52,23,142,-28,147v-40,4,-28,-66,-29,-102v0,-17,1,-32,3,-45v-17,0,-38,2,-54,0r0,112"},"\u00fc":{"d":"138,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm62,-251v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm19,-60v-10,75,86,81,112,35r-2,26v17,0,36,-2,52,0v-4,-54,-4,-119,0,-173r-54,0v-3,52,23,142,-28,147v-40,4,-28,-66,-29,-102v0,-17,1,-32,3,-45v-17,0,-38,2,-54,0r0,112"},"\u00b0":{"d":"72,-220v15,0,29,14,29,30v0,16,-14,29,-29,29v-15,0,-29,-13,-29,-29v0,-16,14,-30,29,-30xm72,-242v-30,0,-51,19,-51,52v0,32,21,51,51,51v30,0,51,-19,51,-51v0,-33,-21,-52,-51,-52","w":144},"\u00a2":{"d":"174,-34v-7,10,-24,18,-42,17r0,-142v19,2,27,19,31,36r8,0v2,-12,9,-28,14,-37v-14,-8,-31,-17,-52,-17r2,-38v-8,0,-17,2,-24,0r2,38v-52,5,-85,37,-85,92v0,56,30,87,85,90r-2,42v8,-1,15,0,24,0v-1,-9,-4,-28,-3,-42v25,-3,42,-12,46,-35xm113,-157r0,135v-42,-13,-39,-121,0,-135"},"\u00a3":{"d":"132,-242v-63,-1,-92,47,-81,113r-28,-1v2,8,1,15,0,23r30,-1v4,38,-2,71,-40,69v3,11,2,28,0,40r175,0v-2,-15,-2,-31,0,-46r-124,2v19,-12,38,-37,41,-65r63,1r0,-24v-23,2,-40,2,-63,2v0,-38,-13,-97,28,-97v20,0,30,16,31,38v11,-1,14,-28,24,-35v-12,-12,-33,-19,-56,-19"},"\u00a7":{"d":"63,-147v27,24,109,31,77,82v-28,-21,-79,-22,-89,-60v0,-10,4,-16,12,-22xm103,-233v24,0,39,12,43,31r5,0r15,-30v-39,-34,-132,-22,-130,40v0,16,8,28,16,36v-17,10,-30,28,-30,53v0,66,95,48,109,101v-1,19,-17,30,-37,30v-28,0,-42,-18,-52,-37r-7,0v-2,13,-2,25,-6,37v44,32,142,21,142,-44v-1,-19,-8,-33,-21,-41v16,-13,28,-26,28,-50v0,-63,-88,-49,-103,-99v0,-15,12,-27,28,-27"},"\u00b6":{"d":"46,-179v1,51,36,73,89,74r0,147r15,0r0,-271r21,-2r0,273r15,0r0,-274r24,-3r0,-10r-102,0v-37,-1,-64,26,-62,66","w":252},"\u00df":{"d":"157,-36v-2,31,-49,25,-57,2r-6,0v0,11,-2,21,-8,33v50,19,103,-15,104,-67v1,-53,-58,-48,-65,-93v3,-26,37,-34,36,-65v-1,-31,-24,-46,-59,-46v-52,0,-84,28,-83,81r2,136v0,18,-1,36,-2,56v17,0,38,-2,54,0r-3,-210v1,-27,7,-48,33,-48v20,0,32,13,32,32v0,41,-45,58,-45,96v0,49,61,48,67,93"},"\u00ae":{"d":"135,-237v69,0,114,46,114,115v0,69,-46,114,-114,114v-68,0,-114,-46,-114,-114v0,-69,45,-115,114,-115xm135,-251v-77,0,-129,51,-129,129v0,77,51,127,129,127v78,0,129,-50,129,-127v0,-78,-52,-129,-129,-129xm120,-188v22,-3,33,8,33,28v0,23,-13,32,-34,32xm119,-118v19,13,20,37,40,67v13,0,28,-2,39,0r-46,-73v18,-2,36,-18,35,-39v1,-44,-56,-36,-100,-36v4,45,2,102,0,148v11,-2,23,-2,34,0","w":270},"\u00a9":{"d":"135,-237v69,0,114,46,114,115v0,69,-46,114,-114,114v-68,0,-114,-46,-114,-114v0,-69,45,-115,114,-115xm100,-121v-8,-58,59,-88,88,-46v6,-4,4,-15,8,-23v-57,-27,-132,-1,-132,68v0,67,68,87,124,66v0,-6,9,-17,2,-20v-32,31,-97,9,-90,-45xm135,-251v-77,0,-129,51,-129,129v0,77,51,127,129,127v78,0,129,-50,129,-127v0,-78,-52,-129,-129,-129","w":270},"\u00b4":{"d":"107,-237v19,-10,4,-41,-16,-30v-23,13,-42,46,-60,66v36,2,53,-24,76,-36","w":119},"\u00a8":{"d":"98,-251v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,23,-12,23,-24v0,-11,-12,-23,-23,-23xm22,-251v-12,0,-22,11,-22,23v0,12,9,24,22,24v12,0,25,-12,23,-24v2,-12,-12,-23,-23,-23","w":119},"\u00c6":{"d":"305,-30v-26,4,-53,5,-82,5r-1,-91v27,0,55,1,82,3v0,-11,-4,-21,0,-31r-82,3r2,-79r81,5v-1,-10,-2,-23,0,-32v-42,3,-110,3,-154,0r-148,248v12,-1,25,-1,37,0v13,-29,29,-57,44,-84v29,-2,57,-3,85,0r-3,84r139,0v0,-11,-2,-21,0,-31xm98,-108v23,-40,41,-78,70,-112r1,112r-71,0","w":320},"\u00d8":{"d":"284,-251r-14,-13r-34,36v-22,-15,-48,-24,-85,-23v-83,3,-136,47,-138,129v-1,44,13,73,35,94r-33,33v6,4,10,7,14,13r34,-35v22,16,51,22,87,22v83,0,137,-47,137,-128v0,-44,-13,-71,-36,-93xm81,-63v-30,-77,11,-201,103,-160v10,5,18,14,25,24xm219,-181v29,80,-10,193,-104,159v-10,-4,-18,-12,-25,-23","w":299},"\u00b1":{"d":"18,-30r0,30r182,0r0,-30r-182,0xm94,-182r0,53r-76,0r0,30r76,0r0,54r30,0r0,-54r76,0r0,-30r-76,0r0,-53r-30,0","w":218},"\u00a5":{"d":"70,-117r0,33r-65,-1r0,16r65,0r-2,70r57,0r-2,-70r67,0r0,-16r-67,1r0,-33r67,0r0,-16r-62,1r72,-115v-9,3,-25,3,-34,0v-17,43,-32,74,-53,115r-49,-115v-19,3,-45,3,-64,0r63,115r-58,-1r0,16r65,0"},"\u00b5":{"d":"70,0v26,14,50,-7,61,-25r-2,26v17,0,36,-2,52,0v-4,-54,-4,-119,0,-173r-54,0v-3,52,23,142,-28,147v-40,4,-28,-66,-29,-102v0,-17,1,-32,3,-45v-17,0,-38,2,-54,0r0,267v17,0,38,-2,54,0v-4,-26,-2,-64,-3,-95"},"\u00aa":{"d":"53,-148v-26,-11,-4,-40,15,-40v0,18,2,42,-15,40xm101,-158v0,-46,5,-84,-42,-84v-16,0,-34,7,-44,15v2,4,0,13,5,14v9,-13,47,-19,48,5v-11,25,-63,10,-63,48v0,33,54,36,66,12v4,18,30,20,44,10r0,-5v-12,-1,-14,-1,-14,-15","w":119},"\u00ba":{"d":"62,-230v17,0,21,18,21,38v0,33,-7,49,-21,49v-33,-2,-29,-86,0,-87xm62,-242v-35,0,-58,21,-58,58v0,36,24,51,58,52v34,1,57,-22,57,-57v0,-35,-22,-53,-57,-53","w":123},"\u00e6":{"d":"87,-17v-28,0,-29,-49,-11,-62v8,-6,21,-11,38,-15v0,34,5,77,-27,77xm189,-161v26,0,28,33,29,59r-59,0v-1,-30,5,-59,30,-59xm122,-33v12,40,93,50,129,23v1,-8,12,-19,4,-23v-42,36,-105,6,-96,-52r107,0v3,-56,-21,-92,-73,-92v-24,0,-42,9,-54,21v-21,-31,-87,-24,-108,4r5,18v17,-31,87,-25,77,22v-30,24,-104,11,-99,73v1,29,18,45,50,44v31,0,49,-16,58,-38","w":280},"\u00f8":{"d":"100,-177v-80,0,-112,103,-68,156r-27,29r12,11r27,-29v14,11,34,13,56,15v82,7,111,-99,68,-154r27,-31v-5,-2,-8,-6,-12,-10r-26,29v-15,-11,-34,-16,-57,-16xm66,-59v-6,-52,8,-124,54,-94v5,5,8,12,11,21xm70,-39r64,-72v4,60,-10,126,-53,94v-6,-4,-9,-13,-11,-22"},"\u00bf":{"d":"82,-177v-15,0,-29,13,-29,29v0,16,14,30,29,30v15,0,31,-15,30,-30v0,-15,-15,-29,-30,-29xm123,-50v0,-38,-35,-54,-73,-44v0,6,-8,14,-2,17v11,-10,35,-3,33,12v-5,39,-55,45,-57,92v-3,55,76,64,112,39r-1,-24r-5,0v-7,24,-60,28,-58,-6v3,-36,51,-44,51,-86","w":159},"\u00a1":{"d":"60,-177v-15,0,-30,14,-30,29v-1,15,15,30,30,30v15,0,29,-14,29,-30v0,-16,-14,-29,-29,-29xm90,51v-5,-51,-17,-96,-25,-144r-10,0v-8,49,-21,91,-25,144v-1,18,13,29,30,29v17,0,32,-11,30,-29","w":119},"\u00ac":{"d":"18,-149r0,34r148,0r0,76r34,0r0,-110r-182,0","w":218},"\u00ab":{"d":"83,-97r46,72v8,-6,15,-12,23,-16r-40,-56r40,-55v-8,-4,-15,-9,-23,-15xm30,-97r45,72v8,-6,16,-12,24,-16r-41,-56r41,-55v-8,-4,-16,-9,-24,-15","w":180},"\u00bb":{"d":"97,-97r-46,-70v-8,6,-15,11,-23,15r40,55v-13,20,-26,37,-40,56v8,4,15,10,23,16xm150,-97r-45,-70v-8,6,-16,11,-24,15r41,55r-41,56v8,4,16,10,24,16","w":180},"\u00a0":{"w":100},"\u00c0":{"d":"99,-319v-12,-19,-44,-7,-33,13v11,19,45,31,64,45r19,0xm140,-93r-66,0r34,-86xm40,1v7,-25,15,-49,24,-73r84,0r25,73r62,0r-49,-115r-51,-134v-9,0,-19,2,-27,0r-103,249v12,0,24,-2,35,0","w":240},"\u00c3":{"d":"170,-314v-20,49,-103,-48,-116,46r16,0v19,-49,103,49,116,-46r-16,0xm140,-93r-66,0r34,-86xm40,1v7,-25,15,-49,24,-73r84,0r25,73r62,0r-49,-115r-51,-134v-9,0,-19,2,-27,0r-103,249v12,0,24,-2,35,0","w":240},"\u00d5":{"d":"200,-314v-20,49,-103,-48,-116,46r16,0v19,-49,103,49,116,-46r-16,0xm150,-231v55,0,78,44,78,101v0,65,-22,114,-81,114v-56,0,-75,-44,-75,-103v0,-60,21,-112,78,-112xm151,-251v-83,0,-138,47,-138,129v0,87,52,127,137,127v83,0,137,-47,137,-128v0,-86,-53,-128,-136,-128","w":299},"\u00f7":{"d":"109,-195v-16,0,-29,13,-29,29v0,16,14,30,29,30v15,0,30,-15,30,-30v0,-15,-14,-29,-30,-29xm109,-46v-15,0,-29,14,-29,30v0,16,14,28,29,28v15,0,30,-12,30,-28v0,-15,-15,-30,-30,-30xm18,-108r0,34r182,0r0,-34r-182,0","w":218},"\u00ff":{"d":"132,-251v-12,0,-24,11,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24v0,-11,-12,-23,-23,-23xm56,-251v-12,0,-24,11,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24v0,-11,-12,-23,-23,-23xm103,-59r-43,-113v-18,0,-36,2,-54,0r72,173v-15,35,-29,61,-46,94v11,0,21,-2,31,0r111,-267v-10,0,-20,2,-30,0","w":180},"\u00b7":{"d":"50,-133v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,25,-11,25,-25v0,-14,-11,-25,-25,-25","w":100},"\u00c2":{"d":"120,-296r40,35r20,0r-43,-64r-34,0r-43,64r20,0xm140,-93r-66,0r34,-86xm40,1v7,-25,15,-49,24,-73r84,0r25,73r62,0r-49,-115r-51,-134v-9,0,-19,2,-27,0r-103,249v12,0,24,-2,35,0","w":240},"\u00ca":{"d":"90,-296r40,35r20,0r-43,-64r-34,0r-43,64r20,0xm165,-30v-26,4,-53,5,-82,5r-1,-91v27,0,55,1,82,3v0,-11,-4,-21,0,-31r-82,3r2,-79r81,5v-1,-10,-2,-23,0,-32v-39,4,-97,1,-139,0r2,202v0,15,-1,31,-2,46r139,0v0,-11,-2,-21,0,-31","w":180},"\u00c1":{"d":"167,-297v19,-9,4,-41,-15,-30v-23,13,-42,46,-61,66v37,2,53,-25,76,-36xm140,-93r-66,0r34,-86xm40,1v7,-25,15,-49,24,-73r84,0r25,73r62,0r-49,-115r-51,-134v-9,0,-19,2,-27,0r-103,249v12,0,24,-2,35,0","w":240},"\u00cb":{"d":"128,-311v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm52,-311v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24v0,-12,-12,-23,-24,-23xm165,-30v-26,4,-53,5,-82,5r-1,-91v27,0,55,1,82,3v0,-11,-4,-21,0,-31r-82,3r2,-79r81,5v-1,-10,-2,-23,0,-32v-39,4,-97,1,-139,0r2,202v0,15,-1,31,-2,46r139,0v0,-11,-2,-21,0,-31","w":180},"\u00c8":{"d":"78,-319v-12,-19,-45,-6,-33,13v12,19,44,31,64,45r20,0xm165,-30v-26,4,-53,5,-82,5r-1,-91v27,0,55,1,82,3v0,-11,-4,-21,0,-31r-82,3r2,-79r81,5v-1,-10,-2,-23,0,-32v-39,4,-97,1,-139,0r2,202v0,15,-1,31,-2,46r139,0v0,-11,-2,-21,0,-31","w":180},"\u00cd":{"d":"107,-297v19,-10,3,-42,-16,-30v-22,14,-42,45,-60,66v36,2,53,-24,76,-36xm31,-247v4,65,1,133,2,202v0,15,-1,31,-2,46r59,0v-5,-77,-5,-168,0,-248v-16,3,-43,3,-59,0","w":119},"\u00ce":{"d":"60,-296r40,35r20,0r-43,-64r-34,0r-43,64r20,0xm31,-247v4,65,1,133,2,202v0,15,-1,31,-2,46r59,0v-5,-77,-5,-168,0,-248v-16,3,-43,3,-59,0","w":119},"\u00cf":{"d":"98,-311v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,23,-12,23,-24v0,-11,-12,-23,-23,-23xm22,-311v-12,0,-22,11,-22,23v0,12,9,24,22,24v12,0,25,-12,23,-24v2,-12,-12,-23,-23,-23xm31,-247v4,65,1,133,2,202v0,15,-1,31,-2,46r59,0v-5,-77,-5,-168,0,-248v-16,3,-43,3,-59,0","w":119},"\u00cc":{"d":"39,-319v-13,-17,-41,-9,-34,13v14,18,44,30,64,45r20,0xm31,-247v4,65,1,133,2,202v0,15,-1,31,-2,46r59,0v-5,-77,-5,-168,0,-248v-16,3,-43,3,-59,0","w":119},"\u00d3":{"d":"197,-297v19,-10,3,-42,-16,-30v-22,14,-42,45,-60,66v36,2,53,-24,76,-36xm150,-231v55,0,78,44,78,101v0,65,-22,114,-81,114v-56,0,-75,-44,-75,-103v0,-60,21,-112,78,-112xm151,-251v-83,0,-138,47,-138,129v0,87,52,127,137,127v83,0,137,-47,137,-128v0,-86,-53,-128,-136,-128","w":299},"\u00d4":{"d":"150,-296r40,35r20,0r-43,-64r-34,0r-43,64r20,0xm150,-231v55,0,78,44,78,101v0,65,-22,114,-81,114v-56,0,-75,-44,-75,-103v0,-60,21,-112,78,-112xm151,-251v-83,0,-138,47,-138,129v0,87,52,127,137,127v83,0,137,-47,137,-128v0,-86,-53,-128,-136,-128","w":299},"\u00d2":{"d":"129,-319v-13,-17,-41,-9,-34,13v14,18,44,30,64,45r20,0xm150,-231v55,0,78,44,78,101v0,65,-22,114,-81,114v-56,0,-75,-44,-75,-103v0,-60,21,-112,78,-112xm151,-251v-83,0,-138,47,-138,129v0,87,52,127,137,127v83,0,137,-47,137,-128v0,-86,-53,-128,-136,-128","w":299},"\u00da":{"d":"199,-297v20,-11,4,-42,-15,-30v-22,14,-42,45,-61,66v37,2,53,-25,76,-36xm32,-247v3,126,-24,252,110,252v129,0,103,-134,111,-252v-10,3,-27,3,-37,0v-1,84,30,223,-58,229v-102,7,-69,-135,-67,-229v-17,3,-42,3,-59,0","w":280},"\u00db":{"d":"149,-296r40,35r21,0r-44,-64r-34,0r-43,64r20,0xm32,-247v3,126,-24,252,110,252v129,0,103,-134,111,-252v-10,3,-27,3,-37,0v-1,84,30,223,-58,229v-102,7,-69,-135,-67,-229v-17,3,-42,3,-59,0","w":280},"\u00d9":{"d":"128,-319v-12,-19,-45,-6,-33,13v12,19,44,31,64,45r20,0xm32,-247v3,126,-24,252,110,252v129,0,103,-134,111,-252v-10,3,-27,3,-37,0v-1,84,30,223,-58,229v-102,7,-69,-135,-67,-229v-17,3,-42,3,-59,0","w":280},"\u00af":{"d":"7,-240r0,25r106,0r0,-25r-106,0","w":119},"\u00b8":{"d":"89,45v0,-20,-22,-31,-44,-24r10,-22r-15,0r-16,33v7,6,34,-3,31,15v1,19,-29,16,-42,10r-6,13v27,12,82,10,82,-25","w":119},"\u00a4":{"d":"100,-166v28,0,48,20,48,48v0,28,-20,48,-48,48v-28,0,-48,-20,-48,-48v0,-28,20,-48,48,-48xm170,-72v18,-21,19,-70,0,-92r19,-19r-24,-24r-19,19v-21,-19,-71,-18,-92,0r-19,-19r-24,24r19,19v-17,23,-18,69,0,92r-19,19r24,24r19,-19v23,17,69,18,92,0r19,19r24,-24"},"\u00b9":{"d":"18,-203v10,-1,19,-13,26,-10r-3,117v14,-1,26,0,40,0r1,-146r-6,-2v-23,12,-45,17,-67,29","w":119},"\u00bc":{"d":"18,-203v10,-1,19,-13,26,-10r-3,117v14,-1,26,0,40,0r1,-146r-6,-2v-23,12,-45,17,-67,29xm175,-246r-104,254v8,-1,17,-2,25,0r105,-254v-9,2,-17,3,-26,0xm225,-118v3,17,0,41,1,60v-14,-1,-34,3,-44,-2xm226,-33r-2,33r37,0r-1,-33r19,1v0,-9,-2,-18,0,-26r-19,1r2,-88v-11,0,-22,2,-32,0v-24,29,-42,59,-64,90v1,8,0,14,0,22r60,0","w":300},"\u00bd":{"d":"18,-203v10,-1,19,-13,26,-10r-3,117v14,-1,26,0,40,0r1,-146r-6,-2v-23,12,-45,17,-67,29xm235,-104v-5,43,-31,64,-64,95r0,9r103,0v-2,-10,-2,-19,0,-29r-65,1v27,-20,60,-39,65,-76v7,-52,-92,-53,-103,-13v9,3,12,13,21,13v0,-16,7,-28,21,-30v13,2,24,10,22,30xm176,-246r-104,254v9,-2,17,-1,26,0r104,-254v-9,2,-17,3,-26,0","w":300},"\u00d0":{"d":"206,-130v0,79,-39,120,-120,110r-1,-108r54,1v-2,-7,-1,-14,0,-20r-54,1r1,-78v73,-12,120,23,120,94xm148,-246v-37,-2,-84,4,-119,-1r3,101v-10,-1,-21,-1,-32,-1v2,6,1,13,0,20r32,-2r-3,130r109,0v78,-4,124,-50,124,-131v0,-73,-39,-113,-114,-116","w":280},"\u00a6":{"d":"95,-243r0,126r28,0r0,-126r-28,0xm95,-63r0,125r28,0r0,-125r-28,0","w":218},"\u00fe":{"d":"188,-88v0,-54,-21,-87,-70,-89v-23,-1,-40,15,-48,31r3,-125v-13,3,-40,3,-54,0r0,366v17,0,38,-2,54,0r-2,-115v7,17,23,25,46,25v52,-1,70,-40,71,-93xm103,-155v46,3,44,138,-1,138v-27,0,-34,-28,-34,-64v0,-36,5,-69,35,-74"},"\u00fd":{"d":"137,-237v19,-9,5,-40,-15,-30v-23,13,-41,46,-61,66v37,2,53,-25,76,-36xm103,-59r-43,-113v-18,0,-36,2,-54,0r72,173v-15,35,-29,61,-46,94v11,0,21,-2,31,0r111,-267v-10,0,-20,2,-30,0","w":180},"\u00f0":{"d":"103,-172v-56,-4,-89,34,-89,91v0,56,32,86,88,86v58,0,88,-35,88,-94v0,-70,-44,-101,-83,-136v19,-5,19,-5,45,-11v-4,-5,-7,-10,-9,-15r-48,15r-52,-36v-11,4,-23,9,-35,11v19,11,35,22,50,36r-54,15v3,5,8,10,10,16r55,-20v13,11,26,26,34,42xm103,-158v29,2,33,30,34,64v0,56,-11,84,-34,84v-33,0,-36,-37,-36,-71v0,-42,5,-73,36,-77"},"\u00d7":{"d":"170,-175r-61,61r-60,-61r-25,24r61,61r-61,60r24,24r61,-60r61,60r24,-24r-61,-60r61,-61","w":218},"\u00b2":{"d":"64,-201v-4,44,-31,64,-64,95r0,10r103,0v0,-10,-2,-20,0,-30r-65,1v28,-19,60,-38,65,-76v6,-52,-92,-53,-103,-13v9,3,12,13,21,13v1,-15,6,-29,22,-29v13,0,23,9,21,29","w":119},"\u00dd":{"d":"169,-297v20,-10,4,-42,-15,-30v-22,14,-42,45,-61,66v37,2,53,-25,76,-36xm181,-247v-17,37,-31,79,-55,108v-18,-32,-37,-73,-53,-108v-20,3,-45,3,-65,0r77,146v2,35,-1,68,-3,102r61,0v-5,-36,-3,-72,-3,-110r75,-138v-9,3,-25,3,-34,0","w":219},"\u00b3":{"d":"44,-232v12,1,20,11,19,26v0,22,-12,33,-32,29v-1,8,-1,12,11,11v16,-1,25,15,25,32v0,16,-10,31,-25,31v-14,0,-23,-13,-24,-26v-11,2,-11,13,-18,19v23,30,106,19,106,-27v0,-29,-21,-29,-40,-38v18,-6,33,-13,33,-33v1,-44,-82,-43,-96,-13v7,5,9,15,20,15v2,-13,6,-27,21,-26","w":119},"\u00be":{"d":"48,-232v12,0,19,10,19,26v0,22,-12,33,-32,29v-1,8,0,12,11,11v16,-1,25,15,25,32v0,16,-10,31,-25,31v-14,0,-23,-13,-24,-26v-11,2,-12,13,-19,19v25,29,107,20,107,-27v0,-29,-21,-29,-40,-38v18,-6,33,-13,33,-33v2,-45,-82,-42,-96,-13v7,5,10,14,20,15v2,-13,6,-27,21,-26xm185,-246r-104,254v9,-2,17,-1,26,0r104,-254v-9,2,-17,3,-26,0xm225,-118v3,17,0,41,1,60v-14,-1,-34,3,-44,-2xm226,-33r-2,33r37,0r-1,-33r19,1v0,-9,-2,-18,0,-26r-19,1r2,-88v-11,0,-22,2,-32,0v-24,29,-42,59,-64,90v1,8,0,14,0,22r60,0","w":300},"\u00de":{"d":"82,-184v54,-12,62,54,39,85v-8,9,-22,13,-39,13r0,-98xm190,-141v0,-55,-46,-68,-107,-64r2,-42v-16,3,-42,3,-59,0r2,202v0,15,-1,31,-2,46r59,0v-2,-23,-2,-43,-3,-68v64,5,108,-16,108,-74"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved.
 * 
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is now the property of Heidelberger Druckmaschinen AG and its
 * licensors, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Heidelberger Druckmaschinen
 * AG.
 * 
 * Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Optima is a trademark of Heidelberger Druckmaschinen AG, which may be
 * registered in certain jurisdictions, exclusivly licensed through Linotype
 * Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.
 * 
 * Description:
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is copyrighted (c)  2000, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved. This software is now
 * the property of Heidelberger Druckmaschinen AG and its licensors and may not be
 * reproduced, used, displayed, modified, disclosed or transferred without the
 * express written approval of Heidelberger Druckmaschinen AG.
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Optima","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 9 0 3","ascent":"288","descent":"-72","x-height":"4","bbox":"-34.5445 -332 366 94.0468","underline-thickness":"18","underline-position":"-27","slope":"-12","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":33,"W":13,"V":33,"T":27,"A":13}},"\t":{"w":100},"\r":{"w":100},"!":{"d":"49,-33v-9,0,-19,10,-19,19v0,10,9,18,19,18v10,0,19,-8,19,-18v0,-9,-10,-19,-19,-19xm95,-247v-15,1,-17,15,-19,31r-23,158r8,0r48,-164v3,-14,0,-25,-14,-25","w":119},"\"":{"d":"113,-139r14,0r24,-101r-20,0xm59,-139r14,0r24,-101r-19,0","w":180},"#":{"d":"123,-91r-46,0r13,-58r46,0xm40,0r18,0r15,-75r47,0r-16,75r18,0r16,-75r38,0r3,-16r-38,0r13,-58r38,0r3,-16r-38,0r16,-75r-18,0r-16,75r-46,0r16,-75r-18,0r-16,75r-39,0r-3,16r38,0r-12,58r-38,0r-4,16r38,0"},"$":{"d":"109,-106v38,9,41,74,5,91v-7,4,-15,8,-26,9xm102,-140v-45,-14,-26,-92,19,-87xm163,-48v18,-45,-18,-73,-48,-85r20,-94v23,0,29,13,43,24v2,-12,3,-14,9,-23v-12,-9,-30,-14,-50,-14r7,-26v-5,0,-11,2,-15,0r-5,26v-43,6,-72,27,-74,71v-2,35,24,45,47,57r-22,106v-23,-2,-39,-13,-47,-31v-7,7,-8,19,-14,24v18,14,31,16,58,18v-4,18,-5,25,-10,38v4,-1,13,-2,17,0r7,-38v37,-7,64,-23,77,-53"},"%":{"d":"115,13r158,-260r-16,0r-158,260r16,0xm231,-38v-1,-37,29,-89,63,-59v14,33,0,92,-37,92v-19,0,-25,-15,-26,-33xm276,-114v-69,-8,-99,115,-18,116v68,7,94,-114,18,-116xm116,-228v19,-1,25,12,25,30v0,33,-11,68,-42,72v-19,-1,-26,-15,-26,-34v0,-31,12,-66,43,-68xm118,-236v-71,-7,-99,115,-19,118v67,5,95,-114,19,-118","w":360},"&":{"d":"103,-188v-8,-41,62,-61,62,-16v0,34,-28,47,-48,61v-7,-16,-15,-24,-14,-45xm44,-58v2,-36,23,-49,55,-65v15,31,35,60,53,88v-25,30,-112,39,-108,-23xm18,-48v-3,74,112,58,139,21v9,18,19,33,54,27v-14,-15,-22,-29,-33,-45v19,-15,35,-36,52,-54v-5,-4,-7,-8,-10,-14v-15,21,-28,45,-49,59r-50,-81v25,-15,61,-31,61,-70v0,-23,-16,-35,-41,-35v-56,-2,-76,67,-47,109v-35,18,-74,32,-76,83","w":240},"'":{"d":"47,-139r15,0r23,-101r-19,0","w":100},"(":{"d":"81,42v-48,-92,-5,-233,60,-283r-5,-6v-79,45,-127,194,-63,294","w":140},")":{"d":"65,-242v47,91,6,236,-60,283r6,6v80,-46,127,-194,62,-294","w":140},"*":{"d":"157,-197v-3,-4,-5,-11,-7,-18r-48,23r15,-51v-6,-1,-12,-1,-18,-3r-6,52r-37,-37v-3,7,-7,10,-12,15r43,30r-52,15r6,17r49,-24r-16,52v8,1,12,1,19,3r6,-53r36,37v4,-5,7,-11,13,-15r-44,-30","w":159},"+":{"d":"98,-78r0,78r18,0r0,-78r81,0r0,-18r-81,0r0,-78r-18,0r0,78r-81,0r0,18r81,0","w":213},",":{"d":"57,-11v21,-14,-2,-40,-14,-23v-19,26,-32,59,-48,88r5,4","w":100},"-":{"d":"96,-109r-78,0r-5,22r79,0","w":106},".":{"d":"40,-33v-9,0,-20,9,-19,19v-1,11,9,18,19,18v9,0,19,-7,18,-18v1,-10,-9,-19,-18,-19","w":100},"\/":{"d":"157,-255r-19,0r-133,268r19,0","w":140},"0":{"d":"135,-39v-22,52,-99,39,-90,-27v10,-69,14,-151,81,-163v74,14,29,144,9,190xm129,-239v-83,4,-110,82,-110,163v0,47,17,83,66,81v83,-3,108,-82,108,-163v0,-45,-16,-83,-64,-81"},"1":{"d":"153,-245v-22,16,-56,25,-81,38r10,9v14,-4,28,-15,41,-16r-37,174v-4,15,-7,28,-11,40r31,0r51,-243"},"2":{"d":"111,-228v58,0,36,83,13,107r-100,103v-8,10,-14,5,-14,18r143,0v0,-11,2,-14,5,-23v-36,-1,-80,5,-112,0r85,-81v22,-25,46,-42,48,-85v3,-63,-102,-63,-125,-21v6,4,6,13,10,16v8,-16,23,-34,47,-34"},"3":{"d":"175,-194v2,-54,-90,-56,-115,-22r7,17v12,-36,83,-43,80,8v-2,38,-24,64,-69,62r-3,15v28,-13,61,1,61,36v0,65,-77,96,-120,51r-7,21v67,28,157,-1,157,-74v0,-32,-23,-41,-49,-47v28,-13,56,-28,58,-67"},"4":{"d":"123,-87r-79,0v26,-43,69,-82,103,-116xm179,-67v0,-11,2,-13,5,-21r-36,1r33,-152v-6,2,-13,1,-18,0r-152,165r-1,6r110,0r-18,68r29,0v3,-24,9,-45,13,-68"},"5":{"d":"182,-212v0,-13,3,-15,6,-26r-112,0v-2,42,-13,82,-20,120v11,2,19,-13,37,-11v28,3,44,17,45,46v3,65,-78,102,-120,56r-8,20v68,32,158,-8,158,-81v0,-47,-54,-66,-96,-46r18,-81v31,-1,62,3,92,3"},"6":{"d":"96,-4v-30,0,-43,-21,-43,-52v0,-40,19,-72,59,-72v28,0,42,20,42,47v0,38,-18,77,-58,77xm60,-107v9,-59,40,-134,114,-119v-6,-27,-50,-11,-69,0v-44,28,-78,81,-78,152v0,48,19,79,69,79v88,0,126,-146,25,-146v-28,0,-48,13,-61,34"},"7":{"d":"55,-238v0,13,-2,17,-5,27v39,1,86,-6,121,0r-150,211v44,6,41,-24,61,-54r95,-143v9,-18,24,-24,28,-41r-150,0"},"8":{"d":"87,-5v-29,0,-42,-20,-42,-47v0,-38,19,-74,60,-75v28,0,42,18,42,45v0,40,-20,77,-60,77xm159,-193v10,53,-78,81,-79,20v-9,-54,78,-81,79,-20xm85,4v56,-1,88,-33,91,-85v2,-29,-21,-43,-41,-53v29,-8,52,-24,52,-59v0,-32,-23,-47,-58,-47v-45,1,-74,21,-76,63v-1,25,17,34,32,44v-39,9,-68,32,-68,79v0,41,27,59,68,58"},"9":{"d":"101,-108v-27,0,-40,-20,-40,-48v0,-39,19,-71,57,-73v26,-1,40,21,40,48v-2,39,-19,73,-57,73xm27,-21v-4,5,3,12,1,21v102,23,158,-68,158,-163v0,-47,-22,-77,-68,-77v-52,0,-82,35,-86,86v-5,72,99,74,121,24v-2,62,-62,161,-126,109"},":":{"d":"78,-164v-9,0,-20,9,-19,19v-1,10,10,19,19,19v9,0,19,-9,18,-19v1,-10,-9,-19,-18,-19xm50,-33v-9,0,-20,9,-19,19v-1,11,9,18,19,18v9,0,19,-7,18,-18v1,-10,-9,-19,-18,-19","w":119},";":{"d":"78,-164v-9,0,-20,9,-19,19v-1,10,10,19,19,19v9,0,19,-9,18,-19v1,-10,-9,-19,-18,-19xm64,-11v21,-13,-2,-40,-14,-23v-19,26,-33,60,-49,88r5,4","w":119},"<":{"d":"17,-96r0,19r179,71r0,-19r-156,-62r156,-62r0,-19","w":213},"=":{"d":"17,-63r0,18r179,0r0,-18r-179,0xm17,-129r0,18r179,0r0,-18r-179,0","w":213},">":{"d":"17,-6r179,-71r0,-19r-179,-72r0,19r157,62r-157,62r0,19","w":213},"?":{"d":"61,-33v-9,0,-19,10,-19,19v0,10,9,18,19,18v10,0,19,-8,19,-18v0,-10,-10,-19,-19,-19xm46,-96v0,26,20,41,46,37v1,-4,6,-8,4,-11v-33,12,-42,-25,-18,-44v29,-23,68,-36,71,-85v3,-43,-49,-58,-83,-41v2,7,-5,13,-1,19v16,-23,64,-21,64,14v0,58,-83,50,-83,111","w":159},"@":{"d":"102,-108v0,-41,33,-89,73,-64v24,34,-1,103,-42,103v-20,0,-31,-18,-31,-39xm17,-117v-6,121,159,156,241,87r-7,-9v-24,19,-55,35,-99,34v-74,-2,-123,-41,-123,-112v0,-75,51,-121,129,-121v61,0,104,31,104,90v0,40,-17,74,-54,79v-25,-3,-17,-26,-9,-52r20,-66r-17,0r-9,28v-3,-21,-19,-33,-42,-33v-69,0,-101,135,-23,135v28,0,42,-18,51,-37v-6,20,4,38,24,37v47,-4,71,-42,71,-91v0,-67,-47,-102,-116,-102v-84,0,-137,49,-141,133","w":277},"A":{"d":"145,-205v-23,30,-41,64,-63,95v28,2,55,1,83,0xm217,0r-33,0r-16,-96r-95,0v-18,27,-41,69,-57,96r-24,0r165,-249r7,0","w":240,"k":{"y":20,"w":20,"v":20,"u":6,"Y":27,"W":16,"V":20,"U":11,"T":27,"Q":11,"O":11,"G":16,"C":11}},"B":{"d":"76,-124v43,-2,88,2,88,43v0,55,-51,77,-110,68xm100,-232v38,-4,76,-3,76,36v0,49,-46,66,-98,60xm194,-81v0,-33,-27,-42,-54,-51v34,-8,66,-30,66,-68v0,-56,-76,-42,-133,-45r-52,245v87,5,173,-4,173,-81","w":219,"k":{"A":13,".":9,",":9}},"C":{"d":"24,-103v0,100,106,129,187,93v0,-9,7,-16,4,-21v-57,43,-167,24,-160,-68v6,-78,40,-138,118,-138v29,0,50,12,65,26v2,-8,6,-15,10,-24v-107,-42,-224,16,-224,132","w":240,"k":{"A":16}},"D":{"d":"102,-231v79,-8,142,8,139,84v-4,99,-74,148,-185,133xm21,0v145,10,246,-22,251,-147v4,-102,-95,-101,-198,-98r-38,187v-5,22,-10,41,-15,58","w":280,"k":{"Y":27,"W":6,"V":13,"A":20,".":16,",":16}},"E":{"d":"99,-230v28,0,59,0,82,5v1,-9,1,-13,4,-20r-113,0r-53,245r129,0v0,-8,0,-11,2,-18v-30,5,-62,4,-96,4r21,-108v28,1,59,-2,84,2v0,-8,2,-11,3,-18r-84,2","w":180},"F":{"d":"182,-225v-1,-9,1,-13,3,-20r-113,0r-38,187v-5,22,-10,41,-15,58r32,0r25,-122v28,1,58,-2,83,2v1,-8,1,-11,4,-18r-85,2r22,-93v29,-1,56,1,82,4","w":180,"k":{"r":13,"o":16,"i":6,"e":16,"a":20,"A":20,".":40,",":40}},"G":{"d":"184,-237v33,-1,56,12,73,26r12,-24v-22,-7,-45,-14,-79,-14v-98,2,-159,51,-164,145v-6,105,114,126,210,96v3,-29,11,-59,17,-84v-8,2,-20,3,-28,0r-15,77v-73,25,-159,-1,-153,-87v5,-81,46,-132,127,-135","w":280},"H":{"d":"229,-138r-149,0r25,-107v-10,0,-23,2,-32,0r-52,245r32,0r24,-124r149,0r-29,124r32,0r36,-180v5,-23,11,-44,17,-65v-11,0,-23,2,-33,0","w":286},"I":{"d":"15,0r33,0r37,-185v5,-22,10,-42,15,-60v-10,0,-23,2,-32,0r-38,188v-5,22,-10,40,-15,57","w":100},"J":{"d":"9,18v-5,19,-28,15,-24,32v95,-28,78,-171,110,-260v3,-11,6,-22,9,-35v-10,0,-23,2,-32,0r-52,239v-4,10,-7,18,-11,24","w":100,"k":{"u":6,"o":4,"e":4,"a":4,"A":6}},"K":{"d":"107,-133v38,-39,86,-71,123,-112v-7,2,-21,1,-28,0v-36,41,-80,82,-123,115v1,-34,18,-80,25,-115v-8,1,-23,2,-31,0r-52,245r30,0r24,-122v39,26,61,84,89,122r38,0r-48,-65v-17,-22,-33,-45,-47,-68","w":219,"k":{"y":20,"u":11,"o":13,"e":9,"O":13}},"L":{"d":"147,-19v-30,5,-61,4,-94,5v7,-39,14,-78,22,-116v8,-38,18,-76,28,-115v-7,1,-24,2,-32,0r-53,245r126,0v1,-8,1,-12,3,-19","w":159,"k":{"y":33,"Y":40,"W":33,"V":33,"T":33}},"M":{"d":"124,-48v7,16,8,51,18,52r138,-203r-46,199r33,0v11,-84,32,-171,51,-245v-7,2,-19,1,-26,0r-139,204r-56,-204v-8,0,-18,2,-25,0r-47,216v-3,12,-7,22,-9,29r25,0r38,-202","w":320},"N":{"d":"95,-222v-10,-12,-9,-24,-20,-26r-57,248r24,0r38,-195r138,199v11,0,7,-13,10,-26r49,-223v-8,0,-16,2,-23,0r-37,199","w":280,"k":{"A":6}},"O":{"d":"137,-5v-54,0,-84,-31,-84,-87v0,-82,42,-147,122,-147v55,0,87,33,87,91v0,78,-43,143,-125,143xm178,-250v-94,0,-156,57,-156,154v0,70,45,102,115,102v95,0,156,-62,156,-152v0,-69,-44,-104,-115,-104","w":299,"k":{"Y":27,"X":13,"W":6,"V":13,"T":13,"A":13,".":9,",":9}},"P":{"d":"99,-231v37,-5,78,-2,77,37v-2,51,-45,78,-101,68xm72,-113v77,5,130,-17,133,-83v2,-62,-75,-46,-134,-49r-53,245r32,0","k":{"o":16,"e":16,"a":33,"A":20,".":46,",":46}},"Q":{"d":"137,-5v-54,0,-84,-31,-84,-87v0,-82,42,-147,122,-147v55,0,87,33,87,91v0,78,-43,143,-125,143xm125,5v51,14,104,32,148,51r13,-23v-37,-10,-80,-15,-114,-28v65,-22,121,-67,121,-152v0,-67,-44,-103,-115,-103v-94,0,-154,58,-156,153v-2,65,39,100,103,102","w":299,"k":{".":9,",":9}},"R":{"d":"182,-195v-1,50,-50,72,-105,63r23,-98v37,-3,83,-6,82,35xm91,-120v29,34,57,84,83,120r37,0r-86,-122v47,-5,87,-30,87,-76v0,-59,-79,-45,-139,-47r-37,188v-5,22,-10,40,-15,57r30,0r24,-121","w":219,"k":{"Y":13,"W":6,"V":13,"T":6}},"S":{"d":"76,-168v-24,-59,70,-93,89,-42r2,0v4,-13,7,-15,13,-28v-53,-25,-134,-1,-134,63v0,63,77,50,81,108v4,59,-84,78,-109,32r-2,0v-2,10,-8,19,-12,28v67,35,172,-9,147,-93v-10,-35,-60,-35,-75,-68","w":180},"T":{"d":"146,-229r67,3r4,-19r-178,0r-4,19r80,-3v-12,75,-32,157,-49,229r32,0","k":{"y":27,"w":33,"u":36,"r":27,"o":36,"i":27,"h":16,"e":36,"a":36,"O":13,"A":27,";":33,":":33,".":40,"-":40,",":40}},"U":{"d":"71,-245v-7,66,-31,118,-35,185v-5,81,130,80,172,34v47,-52,44,-147,71,-219v-7,2,-19,1,-24,0r-32,156v-11,48,-36,78,-92,80v-58,3,-73,-46,-59,-105r31,-131v-8,2,-25,1,-32,0","w":280},"V":{"d":"178,-162v-24,40,-46,89,-75,128r-36,-211v-9,1,-22,2,-30,0r44,245v35,4,32,-21,46,-44r118,-201v-7,1,-19,2,-25,0","w":219,"k":{"u":13,"o":20,"i":13,"e":20,"a":20,"O":13,"A":20,";":27,":":27,".":46,"-":27,",":46}},"W":{"d":"191,-195r24,195r20,0r131,-245v-7,1,-19,2,-25,0r-102,206r-2,0v-11,-64,-19,-138,-24,-206v-3,2,-15,1,-18,0r-106,204r-2,0r-20,-204v-8,1,-22,2,-30,0r27,245r21,0r103,-195r3,0","w":339,"k":{"y":6,"u":6,"o":13,"i":6,"e":13,"a":13,"O":6,"A":16,";":27,":":27,".":33,"-":20,",":33}},"X":{"d":"102,-107r40,107r34,0v-22,-38,-38,-88,-55,-128v30,-41,66,-79,95,-117v-12,3,-31,-4,-32,9r-69,93r-38,-102v-8,2,-23,1,-32,0r51,123r-96,122r26,0"},"Y":{"d":"197,-245v-26,43,-56,89,-88,125r-47,-125v-10,1,-24,2,-33,0r62,149r-24,96r31,0r20,-107r104,-138v-8,0,-18,2,-25,0","k":{"u":46,"o":46,"i":20,"e":40,"a":46,"O":20,"A":20,";":33,":":33,".":46,"-":54,",":46}},"Z":{"d":"51,-245v1,10,-2,12,-4,19v44,1,95,-7,135,-2r-179,224r0,4r187,0v1,-9,1,-13,4,-20v-46,3,-102,9,-148,4r178,-222r0,-7r-173,0","w":219},"[":{"d":"83,-208v5,-23,6,-29,36,-24v0,-6,0,-7,2,-12r-55,0r-60,285v20,-2,39,-2,59,0v0,-5,0,-8,2,-12r-33,1v11,-79,34,-164,49,-238","w":100},"\\":{"d":"88,13r-19,-268r-17,0r19,268r17,0","w":140},"]":{"d":"24,5v-2,23,-8,29,-35,23v0,6,0,8,-2,13v15,-3,38,-3,54,0r60,-286v-20,2,-39,2,-59,0v0,5,0,8,-2,12v11,0,23,-2,33,0","w":100},"^":{"d":"100,-240r-60,150r20,0r49,-127r50,127r20,0r-60,-150r-19,0","w":213},"_":{"d":"0,26r0,18r180,0r0,-18r-180,0","w":180},"`":{"d":"45,-252v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0","w":86},"a":{"d":"90,-19v-27,23,-72,-5,-50,-38v15,-23,49,-26,81,-32v-6,27,-8,59,-31,70xm9,-34v0,53,83,43,100,11v-1,25,34,29,50,15v1,-10,-4,-4,-11,-4v-22,-2,-13,-30,-9,-48v5,-24,15,-46,15,-72v0,-50,-80,-48,-108,-21r-5,19v18,-7,25,-25,50,-24v32,-5,49,39,25,59v-45,12,-107,11,-107,65","w":180,"k":{"y":11,"w":6,"v":11}},"b":{"d":"48,-43v0,-62,34,-135,99,-103v11,8,18,21,18,41v0,51,-22,100,-75,100v-24,0,-42,-13,-42,-38xm193,-105v7,-78,-100,-78,-127,-33r31,-130v-7,2,-22,3,-29,0r-58,269v16,0,20,-13,31,-19v11,16,28,24,54,24v63,0,93,-49,98,-111","w":206,"k":{"y":6,"v":4}},"c":{"d":"15,-69v-4,71,78,87,134,61v0,-5,7,-13,3,-15v-38,26,-115,18,-108,-46v-8,-70,81,-124,121,-67v7,-5,6,-18,11,-26v-16,-6,-30,-10,-54,-10v-68,1,-103,40,-107,103","w":180,"k":{"y":9,"k":6,"h":6}},"d":{"d":"87,-8v-29,0,-45,-21,-43,-54v3,-48,19,-97,69,-97v30,0,44,20,44,49v0,50,-18,102,-70,102xm15,-64v-7,76,101,90,129,33r-8,31r26,0r42,-211r14,-57v-7,2,-21,3,-28,0v-10,43,-13,93,-27,132v-8,-21,-24,-37,-54,-36v-61,2,-88,49,-94,108","w":206,"k":{"y":9,"w":4,"v":9}},"e":{"d":"44,-99v8,-34,24,-63,60,-63v31,0,45,29,37,63r-97,0xm12,-69v-4,71,76,89,130,58v1,-5,6,-13,4,-16v-38,37,-128,17,-104,-58r123,1v13,-50,-9,-91,-61,-88v-60,3,-88,43,-92,103","w":180},"f":{"d":"140,-265v-62,-10,-80,47,-91,100r-26,-2r-2,15r26,-1r-34,153r28,0v8,-55,21,-101,31,-153r30,1r3,-15r-31,2r3,-50v-2,-31,35,-31,56,-24","w":100},"g":{"d":"61,84v-28,0,-47,-15,-43,-46v4,-32,36,-42,75,-38v18,2,33,8,33,27v0,36,-28,57,-65,57xm84,-67v-23,0,-33,-14,-33,-36v0,-30,15,-59,49,-59v20,0,33,13,32,34v-1,33,-15,59,-48,61xm55,-57v72,14,126,-42,94,-97r35,1v0,-5,-2,-11,0,-15v-31,3,-55,0,-82,-4v-65,-8,-107,78,-53,108v-11,12,-32,16,-31,39v0,14,14,16,20,23v-23,5,-42,24,-42,50v0,32,26,47,61,46v57,-1,93,-30,93,-85v0,-36,-52,-30,-92,-32v-10,0,-17,-3,-17,-14v0,-12,9,-15,14,-20","w":180},"h":{"d":"178,-124v7,-62,-90,-56,-111,-18v6,-44,18,-86,28,-126v-9,2,-22,3,-30,0r-56,268r30,0v18,-59,2,-155,76,-155v70,0,14,108,9,155r30,0v5,-41,20,-86,24,-124","k":{"y":13}},"i":{"d":"74,-243v-10,0,-17,7,-17,17v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-10,-7,-17,-17,-17xm46,-169v-9,55,-20,120,-37,169r31,0r36,-169v-8,2,-21,1,-30,0","w":86,"k":{"v":6}},"j":{"d":"73,-243v-10,0,-17,7,-17,17v0,10,7,17,17,17v10,0,18,-7,18,-17v0,-10,-8,-17,-18,-17xm-5,60v-3,20,-34,18,-29,34v82,-12,70,-124,94,-196r16,-67v-8,2,-21,1,-28,0r-44,202v-3,12,-6,20,-9,27","w":86},"k":{"d":"155,-169v-29,23,-59,56,-91,73v-8,-2,-2,-14,-1,-20r33,-152v-8,3,-20,2,-29,0r-40,205v-5,21,-10,42,-16,63r29,0r15,-82v24,-18,38,44,58,61v8,19,18,23,50,21v-27,-31,-51,-63,-70,-100r90,-69v-9,0,-20,2,-28,0","w":180,"k":{"y":6}},"l":{"d":"96,-268v-9,1,-22,3,-30,0r-56,268r29,0","w":86},"m":{"d":"169,-136v-2,-44,-76,-42,-95,-14v-3,2,-5,6,-9,8r7,-27v-9,0,-19,2,-27,0r-36,169r28,0v16,-57,6,-151,74,-154v20,-1,32,9,32,29v0,44,-17,87,-27,125r29,0v18,-57,5,-150,75,-154v20,-1,33,13,32,32v-3,42,-17,86,-28,122r30,0v5,-44,19,-88,25,-133v-2,-25,-20,-38,-47,-38v-32,0,-49,17,-63,35","w":299,"k":{"y":4}},"n":{"d":"177,-121v8,-65,-89,-58,-109,-21v-4,-6,5,-19,5,-27v-9,1,-19,2,-27,0r-36,169r28,0v17,-59,6,-154,77,-154v21,0,35,11,35,32v0,44,-16,88,-27,122r30,0v6,-40,19,-82,24,-121","k":{"y":6,"v":4}},"o":{"d":"86,-6v-32,2,-46,-23,-46,-53v0,-52,21,-102,72,-102v32,0,48,21,48,52v0,51,-22,101,-74,103xm112,-172v-62,0,-100,44,-100,105v0,46,27,71,75,71v64,0,102,-45,102,-106v0,-47,-29,-70,-77,-70","k":{"y":4,"w":4,"v":4}},"p":{"d":"165,-107v0,56,-40,121,-98,90v-9,-9,-18,-20,-16,-39v5,-47,18,-101,70,-101v29,0,44,19,44,50xm193,-107v6,-76,-98,-82,-126,-31r7,-31v-9,0,-20,2,-27,0r-53,263v7,-1,20,-2,26,0r25,-125v6,23,24,36,54,35v62,-3,89,-49,94,-111","w":206,"k":{"y":6}},"q":{"d":"86,-8v-31,1,-43,-24,-42,-54v2,-48,17,-95,66,-97v26,-1,47,19,45,47v-4,50,-16,102,-69,104xm15,-64v-6,72,93,89,124,37r-27,121v7,-2,21,-1,28,0r55,-263v-7,2,-20,1,-27,0v-3,10,-2,24,-6,33v-9,-21,-29,-36,-56,-36v-59,0,-86,47,-91,108","w":206},"r":{"d":"38,0v14,-59,12,-154,78,-141v8,-6,2,-20,7,-31v-34,-1,-41,28,-60,42v1,-14,7,-27,10,-39v-9,0,-20,2,-28,0v-8,58,-21,117,-35,169r28,0","w":119,"k":{"c":4,"a":4,".":27,"-":20,",":27}},"s":{"d":"51,-127v-4,-37,56,-48,63,-13r4,0v2,-10,3,-14,9,-26v-43,-21,-99,3,-99,50v0,47,58,33,62,71v4,42,-64,49,-75,16v-8,3,-7,19,-14,24v47,23,113,0,113,-53v0,-44,-59,-29,-63,-69","w":140,"k":{"w":4}},"t":{"d":"97,-15v-28,19,-54,-2,-46,-43r19,-95r38,2v0,-5,2,-10,3,-15r-38,1r12,-49r-31,11r-7,38r-23,-1v0,6,1,10,-2,14r24,-1r-25,124v-1,36,51,41,75,23","w":106},"u":{"d":"20,-36v1,56,94,46,112,12v2,7,-4,16,-5,24r27,0r36,-169v-8,1,-20,2,-29,0v-17,58,-5,157,-77,157v-61,0,-24,-85,-16,-126r9,-31v-8,2,-25,1,-32,0"},"v":{"d":"161,-169v-24,43,-46,95,-77,136r-31,-136v-7,1,-20,2,-27,0r40,169v21,2,20,-3,28,-20v23,-47,63,-107,90,-149v-5,1,-18,2,-23,0","w":180,"k":{"o":6,"e":4,"a":9,".":33,",":33}},"w":{"d":"148,-169v-22,44,-49,98,-76,134v-10,-44,-16,-88,-20,-134v-7,1,-22,2,-29,0r28,169r18,0r75,-131v17,34,17,88,26,131r17,0r103,-169v-6,2,-18,1,-24,0r-73,134v-15,-30,-19,-91,-25,-134v-5,2,-15,1,-20,0","w":280,"k":{"o":4,"h":6,"a":6,".":27,",":27}},"x":{"d":"86,-103r-29,-66v-11,0,-23,2,-33,0r45,86r-71,83r23,0r54,-71v12,23,21,48,34,71r32,0r-50,-91r69,-78v-45,-4,-47,46,-74,66","w":159},"y":{"d":"86,-32r-32,-137v-9,0,-21,2,-29,0r44,169r-59,94v5,-2,17,-1,22,0v46,-92,101,-179,153,-263v-16,1,-29,-2,-31,17v-24,39,-42,84,-68,120","w":180,"k":{"o":6,"e":6,"a":9,".":33,",":33}},"z":{"d":"36,-151r96,-5v-32,56,-94,105,-128,156r145,0r3,-15r-108,2r129,-151r1,-5r-136,0","w":180},"{":{"d":"49,-100v78,-1,27,-136,109,-134r3,-11v-86,-10,-66,85,-101,128v-8,6,-21,10,-36,10r-2,12v18,2,35,8,37,27v-7,44,-28,114,41,109r2,-11v-76,2,15,-119,-53,-130","w":129},"|":{"d":"30,-270r0,359r20,0r0,-359r-20,0","w":79},"}":{"d":"68,-207v0,39,-27,97,19,104v-77,2,-28,133,-108,133r-2,11v75,7,69,-68,90,-116v6,-14,24,-20,45,-21r2,-11v-86,2,32,-135,-78,-138r-2,11v18,1,34,8,34,27","w":129},"~":{"d":"27,-62v20,-88,152,67,174,-50r-13,0v-22,87,-153,-67,-175,50r14,0","w":213},"\u00c4":{"d":"195,-302v-9,0,-16,9,-16,17v0,9,6,16,16,16v10,1,17,-6,17,-16v0,-11,-7,-17,-17,-17xm125,-302v-10,0,-17,8,-17,17v0,10,7,16,17,16v10,1,17,-6,16,-16v0,-10,-6,-17,-16,-17xm144,-205v10,29,13,64,21,95v-28,2,-55,1,-83,0xm164,-249r-7,0r-165,249r24,0r57,-96r95,0r16,96r33,0","w":240},"\u00c5":{"d":"166,-270v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-11,25,-25,25xm166,-332v-22,0,-37,14,-37,37v0,23,15,37,37,37v22,0,37,-15,37,-37v0,-22,-15,-37,-37,-37xm144,-205v10,29,13,64,21,95v-28,2,-55,1,-83,0xm164,-249r-7,0r-165,249r24,0r57,-96r95,0r16,96r33,0","w":240},"\u00c7":{"d":"111,76v43,8,60,-54,14,-54r-8,0v6,-6,6,-18,20,-17v29,2,54,-8,71,-15v1,-7,6,-15,4,-21v-57,42,-160,26,-160,-68v0,-103,102,-178,182,-112r11,-24v-107,-42,-224,16,-224,132v0,67,38,98,95,107v-5,11,-20,21,-17,32v13,-4,30,-1,30,12v0,18,-28,19,-44,11r-7,10v9,4,18,8,33,7","w":240},"\u00c9":{"d":"173,-293v16,-6,16,-24,1,-27v-26,14,-44,41,-66,60v30,-3,42,-24,65,-33xm99,-230v28,0,59,0,82,5v1,-9,1,-13,4,-20r-113,0r-53,245r129,0v0,-8,0,-11,2,-18v-30,5,-62,4,-96,4r21,-108v28,1,59,-2,84,2v0,-8,2,-11,3,-18r-84,2","w":180},"\u00d1":{"d":"237,-312v-19,-3,-12,28,-38,14v-22,-12,-67,-23,-73,11v-2,4,-4,9,-5,13r10,0v17,-48,93,43,106,-38xm95,-222v-10,-12,-9,-24,-20,-26r-57,248r24,0r38,-195r138,199v11,0,7,-13,10,-26r49,-223v-8,0,-16,2,-23,0r-37,199","w":280},"\u00d6":{"d":"220,-302v-10,0,-17,8,-17,17v0,10,7,16,17,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm149,-302v-10,0,-17,8,-17,17v0,10,7,16,17,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm137,-5v-54,0,-84,-31,-84,-87v0,-82,42,-147,122,-147v55,0,87,33,87,91v0,78,-43,143,-125,143xm178,-250v-94,0,-156,57,-156,154v0,70,45,102,115,102v95,0,156,-62,156,-152v0,-69,-44,-104,-115,-104","w":299},"\u00dc":{"d":"210,-302v-10,0,-16,8,-16,17v0,9,6,16,16,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm139,-302v-10,0,-16,8,-16,17v0,9,6,16,16,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm71,-245v-7,66,-31,118,-35,185v-5,81,130,80,172,34v47,-52,44,-147,71,-219v-7,2,-19,1,-24,0r-32,156v-11,48,-36,78,-92,80v-58,3,-73,-46,-59,-105r31,-131v-8,2,-25,1,-32,0","w":280},"\u00e1":{"d":"154,-234v10,-10,-5,-27,-16,-17r-59,57v34,-4,50,-27,75,-40xm90,-19v-27,23,-72,-5,-50,-38v15,-23,49,-26,81,-32v-6,27,-8,59,-31,70xm9,-34v0,53,83,43,100,11v-1,25,34,29,50,15v1,-10,-4,-4,-11,-4v-22,-2,-13,-30,-9,-48v5,-24,15,-46,15,-72v0,-50,-80,-48,-108,-21r-5,19v18,-7,25,-25,50,-24v32,-5,49,39,25,59v-45,12,-107,11,-107,65","w":180},"\u00e0":{"d":"90,-252v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm90,-19v-27,23,-72,-5,-50,-38v15,-23,49,-26,81,-32v-6,27,-8,59,-31,70xm9,-34v0,53,83,43,100,11v-1,25,34,29,50,15v1,-10,-4,-4,-11,-4v-22,-2,-13,-30,-9,-48v5,-24,15,-46,15,-72v0,-50,-80,-48,-108,-21r-5,19v18,-7,25,-25,50,-24v32,-5,49,39,25,59v-45,12,-107,11,-107,65","w":180},"\u00e2":{"d":"122,-254r-14,0r-58,60r13,0r49,-38r30,38r12,0xm90,-19v-27,23,-72,-5,-50,-38v15,-23,49,-26,81,-32v-6,27,-8,59,-31,70xm9,-34v0,53,83,43,100,11v-1,25,34,29,50,15v1,-10,-4,-4,-11,-4v-22,-2,-13,-30,-9,-48v5,-24,15,-46,15,-72v0,-50,-80,-48,-108,-21r-5,19v18,-7,25,-25,50,-24v32,-5,49,39,25,59v-45,12,-107,11,-107,65","w":180},"\u00e4":{"d":"146,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm75,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm90,-19v-27,23,-72,-5,-50,-38v15,-23,49,-26,81,-32v-6,27,-8,59,-31,70xm9,-34v0,53,83,43,100,11v-1,25,34,29,50,15v1,-10,-4,-4,-11,-4v-22,-2,-13,-30,-9,-48v5,-24,15,-46,15,-72v0,-50,-80,-48,-108,-21r-5,19v18,-7,25,-25,50,-24v32,-5,49,39,25,59v-45,12,-107,11,-107,65","w":180},"\u00e3":{"d":"168,-246v-18,-2,-12,28,-37,14v-22,-12,-67,-23,-73,11v-2,4,-4,9,-5,13r10,0v17,-49,93,43,105,-38xm90,-19v-27,23,-72,-5,-50,-38v15,-23,49,-26,81,-32v-6,27,-8,59,-31,70xm9,-34v0,53,83,43,100,11v-1,25,34,29,50,15v1,-10,-4,-4,-11,-4v-22,-2,-13,-30,-9,-48v5,-24,15,-46,15,-72v0,-50,-80,-48,-108,-21r-5,19v18,-7,25,-25,50,-24v32,-5,49,39,25,59v-45,12,-107,11,-107,65","w":180},"\u00e5":{"d":"111,-204v-13,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-12,25,-25,25xm111,-266v-24,0,-38,15,-38,37v0,22,15,37,38,37v22,0,37,-15,37,-37v0,-22,-14,-37,-37,-37xm90,-19v-27,23,-72,-5,-50,-38v15,-23,49,-26,81,-32v-6,27,-8,59,-31,70xm9,-34v0,53,83,43,100,11v-1,25,34,29,50,15v1,-10,-4,-4,-11,-4v-22,-2,-13,-30,-9,-48v5,-24,15,-46,15,-72v0,-50,-80,-48,-108,-21r-5,19v18,-7,25,-25,50,-24v32,-5,49,39,25,59v-45,12,-107,11,-107,65","w":180},"\u00e7":{"d":"42,-69v-8,-71,80,-124,121,-67v7,-5,6,-18,11,-26v-74,-30,-164,10,-161,93v2,45,25,68,66,72r-20,30v8,5,34,-4,32,15v-2,19,-28,18,-44,11r-6,10v22,12,75,11,75,-23v0,-19,-17,-25,-37,-24r12,-18v23,0,40,-5,56,-12v0,-5,7,-13,3,-15v-38,26,-115,18,-108,-46","w":180},"\u00e9":{"d":"151,-227v15,-5,19,-25,2,-27v-28,14,-43,41,-67,60v30,-2,42,-24,65,-33xm44,-99v8,-34,24,-63,60,-63v31,0,45,29,37,63r-97,0xm12,-69v-4,71,76,89,130,58v1,-5,6,-13,4,-16v-38,37,-128,17,-104,-58r123,1v13,-50,-9,-91,-61,-88v-60,3,-88,43,-92,103","w":180},"\u00e8":{"d":"92,-252v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm44,-99v8,-34,24,-63,60,-63v31,0,45,29,37,63r-97,0xm12,-69v-4,71,76,89,130,58v1,-5,6,-13,4,-16v-38,37,-128,17,-104,-58r123,1v13,-50,-9,-91,-61,-88v-60,3,-88,43,-92,103","w":180},"\u00ea":{"d":"129,-254r-14,0r-57,60r12,0r50,-38r29,38r12,0xm44,-99v8,-34,24,-63,60,-63v31,0,45,29,37,63r-97,0xm12,-69v-4,71,76,89,130,58v1,-5,6,-13,4,-16v-38,37,-128,17,-104,-58r123,1v13,-50,-9,-91,-61,-88v-60,3,-88,43,-92,103","w":180},"\u00eb":{"d":"146,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm75,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm44,-99v8,-34,24,-63,60,-63v31,0,45,29,37,63r-97,0xm12,-69v-4,71,76,89,130,58v1,-5,6,-13,4,-16v-38,37,-128,17,-104,-58r123,1v13,-50,-9,-91,-61,-88v-60,3,-88,43,-92,103","w":180},"\u00ed":{"d":"112,-227v15,-5,17,-26,1,-27v-26,14,-44,41,-67,60v31,-2,42,-25,66,-33xm46,-169v-9,55,-20,120,-37,169r31,0r36,-169v-8,2,-21,1,-30,0","w":86},"\u00ec":{"d":"45,-252v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm46,-169v-9,55,-20,120,-37,169r31,0r36,-169v-8,2,-21,1,-30,0","w":86},"\u00ee":{"d":"82,-254r-14,0r-57,60r12,0r50,-38r30,38r11,0xm46,-169v-9,55,-20,120,-37,169r31,0r36,-169v-8,2,-21,1,-30,0","w":86},"\u00ef":{"d":"99,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm28,-236v-9,0,-16,7,-16,16v0,10,6,17,16,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm46,-169v-9,55,-20,120,-37,169r31,0r36,-169v-8,2,-21,1,-30,0","w":86},"\u00f1":{"d":"182,-246v-19,-2,-13,28,-37,14v-29,-17,-77,-17,-78,24v19,1,15,-29,40,-15v29,16,74,18,75,-23xm177,-121v8,-65,-89,-58,-109,-21v-4,-6,5,-19,5,-27v-9,1,-19,2,-27,0r-36,169r28,0v17,-59,6,-154,77,-154v21,0,35,11,35,32v0,44,-16,88,-27,122r30,0v6,-40,19,-82,24,-121"},"\u00f3":{"d":"168,-227v16,-5,19,-25,2,-27v-26,14,-44,41,-67,60v30,-2,42,-25,65,-33xm86,-6v-32,2,-46,-23,-46,-53v0,-52,21,-102,72,-102v32,0,48,21,48,52v0,51,-22,101,-74,103xm112,-172v-62,0,-100,44,-100,105v0,46,27,71,75,71v64,0,102,-45,102,-106v0,-47,-29,-70,-77,-70"},"\u00f2":{"d":"102,-252v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm86,-6v-32,2,-46,-23,-46,-53v0,-52,21,-102,72,-102v32,0,48,21,48,52v0,51,-22,101,-74,103xm112,-172v-62,0,-100,44,-100,105v0,46,27,71,75,71v64,0,102,-45,102,-106v0,-47,-29,-70,-77,-70"},"\u00f4":{"d":"139,-254r-14,0r-57,60r12,0r50,-38r29,38r12,0xm86,-6v-32,2,-46,-23,-46,-53v0,-52,21,-102,72,-102v32,0,48,21,48,52v0,51,-22,101,-74,103xm112,-172v-62,0,-100,44,-100,105v0,46,27,71,75,71v64,0,102,-45,102,-106v0,-47,-29,-70,-77,-70"},"\u00f6":{"d":"159,-236v-22,0,-19,33,0,33v10,0,17,-6,17,-17v0,-10,-8,-16,-17,-16xm89,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,16,-7,16,-17v0,-10,-7,-16,-16,-16xm86,-6v-32,2,-46,-23,-46,-53v0,-52,21,-102,72,-102v32,0,48,21,48,52v0,51,-22,101,-74,103xm112,-172v-62,0,-100,44,-100,105v0,46,27,71,75,71v64,0,102,-45,102,-106v0,-47,-29,-70,-77,-70"},"\u00f5":{"d":"182,-246v-19,-2,-13,28,-37,14v-29,-17,-77,-17,-78,24v19,1,15,-29,40,-15v29,16,74,18,75,-23xm86,-6v-32,2,-46,-23,-46,-53v0,-52,21,-102,72,-102v32,0,48,21,48,52v0,51,-22,101,-74,103xm112,-172v-62,0,-100,44,-100,105v0,46,27,71,75,71v64,0,102,-45,102,-106v0,-47,-29,-70,-77,-70"},"\u00fa":{"d":"165,-227v15,-5,17,-26,1,-27v-26,14,-44,41,-66,60v30,-2,42,-25,65,-33xm20,-36v1,56,94,46,112,12v2,7,-4,16,-5,24r27,0r36,-169v-8,1,-20,2,-29,0v-17,58,-5,157,-77,157v-61,0,-24,-85,-16,-126r9,-31v-8,2,-25,1,-32,0"},"\u00f9":{"d":"102,-252v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm20,-36v1,56,94,46,112,12v2,7,-4,16,-5,24r27,0r36,-169v-8,1,-20,2,-29,0v-17,58,-5,157,-77,157v-61,0,-24,-85,-16,-126r9,-31v-8,2,-25,1,-32,0"},"\u00fb":{"d":"139,-254r-14,0r-57,60r12,0r50,-38r29,38r12,0xm20,-36v1,56,94,46,112,12v2,7,-4,16,-5,24r27,0r36,-169v-8,1,-20,2,-29,0v-17,58,-5,157,-77,157v-61,0,-24,-85,-16,-126r9,-31v-8,2,-25,1,-32,0"},"\u00fc":{"d":"159,-236v-22,0,-19,33,0,33v10,0,17,-6,17,-17v0,-10,-8,-16,-17,-16xm89,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,16,-7,16,-17v0,-10,-7,-16,-16,-16xm20,-36v1,56,94,46,112,12v2,7,-4,16,-5,24r27,0r36,-169v-8,1,-20,2,-29,0v-17,58,-5,157,-77,157v-61,0,-24,-85,-16,-126r9,-31v-8,2,-25,1,-32,0"},"\u00b0":{"d":"50,-186v-1,-19,16,-37,36,-36v23,0,36,13,36,36v0,23,-15,36,-36,36v-21,0,-35,-15,-36,-36xm140,-186v0,-32,-22,-54,-54,-54v-32,0,-53,22,-53,54v0,32,21,53,53,53v32,0,54,-21,54,-53","w":144},"\u00a2":{"d":"85,-13v-51,-22,-26,-124,14,-139v10,-4,19,-9,31,-9xm165,-23v-18,7,-38,20,-68,14r46,-150v17,2,26,12,36,23r9,-26v-14,-5,-24,-8,-41,-10r14,-43v-5,0,-11,2,-16,0r-11,43v-68,0,-107,40,-107,103v0,40,20,63,54,70r-16,47r16,0v3,-17,7,-29,12,-45v26,3,46,-1,67,-11"},"\u00a3":{"d":"161,-227v22,-3,31,15,32,36v9,1,12,-12,19,-17v-7,-19,-23,-31,-50,-30v-62,3,-85,50,-92,109r-35,-1v-1,7,0,9,-4,14r38,-1v-6,48,-13,101,-66,97v0,10,-2,15,-4,20r179,0v1,-10,4,-13,7,-23v-43,4,-97,6,-141,1v31,-19,47,-47,52,-94r69,1v1,-6,1,-10,3,-14r-70,0v7,-50,16,-92,63,-98"},"\u00a7":{"d":"75,-158v22,27,100,39,73,91v-14,26,-33,-5,-50,-10v-21,-14,-59,-31,-39,-66v4,-6,10,-11,16,-15xm127,-236v24,-1,34,14,40,31v9,-5,6,-18,14,-26v-45,-41,-148,3,-111,66v-26,12,-52,56,-23,85v25,25,73,27,76,70v3,52,-85,55,-93,9r-4,0v-1,8,-6,20,-10,25v46,51,167,1,124,-70v17,-15,34,-24,34,-53v0,-59,-88,-46,-88,-100v0,-23,16,-37,41,-37"},"\u00b6":{"d":"18,-146v-2,36,23,62,59,62r-33,156r19,0r64,-301r45,0r-64,301r19,0r65,-301r19,0r4,-16r-86,0v-68,2,-108,34,-111,99"},"\u00df":{"d":"159,-66v19,47,-50,78,-76,42v-8,5,-5,17,-11,21v68,37,157,-58,82,-108v-13,-9,-25,-13,-26,-30v8,-38,56,-47,56,-92v0,-57,-98,-34,-115,2v-30,63,-34,159,-59,231r28,0v18,-77,30,-162,53,-232v10,-30,73,-38,73,4v-1,51,-52,55,-60,99v4,31,44,36,55,63"},"\u00ae":{"d":"76,-212v9,-3,23,-1,22,10v0,10,-12,12,-22,12r0,-22xm64,-154r12,0v1,-9,-2,-23,1,-30v12,8,19,36,39,28r-26,-29v10,-1,18,-7,19,-18v0,-22,-27,-13,-45,-16r0,65xm32,-186v0,-32,22,-54,54,-54v33,0,54,22,54,54v0,33,-21,55,-54,55v-31,0,-54,-22,-54,-55xm150,-186v0,-38,-25,-64,-64,-64v-38,0,-64,25,-64,64v0,39,26,64,64,64v39,0,64,-25,64,-64","w":136},"\u00a9":{"d":"89,-122v-6,-59,65,-84,100,-48v8,-1,4,-12,8,-18v-58,-24,-133,-1,-133,67v0,66,77,90,131,60v0,-5,5,-14,-1,-15v-36,32,-113,16,-105,-46xm141,-6v-70,0,-115,-46,-115,-116v0,-69,45,-115,115,-115v69,0,115,46,115,115v0,69,-45,116,-115,116xm141,-250v-76,0,-128,50,-128,128v0,79,52,128,128,128v77,0,128,-51,128,-128v0,-77,-51,-128,-128,-128","w":272},"\u00b4":{"d":"112,-227v15,-5,17,-26,1,-27v-26,14,-44,41,-67,60v31,-2,42,-25,66,-33","w":86},"\u00a8":{"d":"99,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm28,-236v-9,0,-16,7,-16,16v0,10,6,17,16,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16","w":86},"\u00c6":{"d":"150,-171v23,-26,20,-31,45,-54v-4,39,-15,77,-22,114r-71,0xm225,-230v28,0,59,0,82,5v1,-9,1,-13,4,-20r-121,0r-195,245v18,0,32,3,36,-13r60,-84r79,0r-25,97r129,0v0,-8,0,-11,2,-18v-32,4,-60,4,-95,4r21,-108v28,1,58,-2,83,2v0,-8,2,-11,3,-18r-83,2","w":306},"\u00d8":{"d":"68,-36v-46,-95,24,-232,141,-197v11,4,21,11,29,19xm246,-204v47,94,-24,226,-142,194v-10,-3,-20,-9,-28,-17xm293,-146v0,-35,-13,-59,-31,-75r28,-30r-9,-8r-28,30v-101,-57,-231,11,-231,132v0,35,11,61,30,78r-30,29r10,9r30,-31v21,12,45,18,75,18v95,-3,156,-62,156,-152","w":299},"\u00b1":{"d":"17,-14r0,16r180,0r0,-16r-180,0xm98,-95r0,64r18,0r0,-64r81,0r0,-17r-81,0r0,-64r-18,0r0,64r-81,0r0,17r81,0","w":213},"\u00a5":{"d":"98,0r9,-50r55,1v0,-8,0,-12,4,-17r-57,2r8,-31r55,1v0,-7,2,-10,3,-17v-16,2,-34,2,-52,2r98,-129v-8,0,-16,2,-24,0v-26,41,-53,84,-85,120r-45,-120v-8,2,-25,1,-33,0r54,129r-52,-2v0,8,0,10,-3,17r57,-1r-6,31r-58,-2v0,7,-1,12,-3,17r58,-1r-13,50r30,0"},"\u00b5":{"d":"39,-7v25,24,80,6,93,-17v2,7,-4,16,-5,24r27,0r36,-169v-8,1,-20,2,-29,0v-17,58,-5,157,-77,157v-71,0,-13,-113,-8,-157v-7,2,-23,1,-30,0r-53,263v8,-2,20,-1,28,0"},"\u00aa":{"d":"92,-187v4,24,-40,46,-47,16v2,-22,30,-22,49,-27v-1,4,-1,8,-2,11xm107,-165v5,-32,29,-87,-21,-85v-20,1,-39,5,-41,25v15,-1,16,-16,33,-13v16,-3,28,18,17,29v-24,10,-69,5,-69,41v0,30,51,29,62,10v1,15,26,14,35,6v1,-13,-18,2,-16,-13","w":118},"\u00ba":{"d":"76,-154v-19,0,-27,-10,-27,-28v0,-30,13,-57,44,-58v17,0,27,12,27,28v-1,30,-13,57,-44,58xm92,-250v-67,-8,-91,107,-16,106v67,9,95,-108,16,-106","w":131},"\u00e6":{"d":"145,-99v8,-34,24,-63,60,-63v32,0,45,28,37,63r-97,0xm33,-37v3,-44,52,-41,86,-52v-6,37,-16,76,-56,78v-15,1,-31,-10,-30,-26xm270,-113v5,-68,-92,-73,-125,-35v-17,-36,-79,-26,-101,-5r-5,20v16,-8,24,-24,50,-24v30,0,42,24,33,54v-41,20,-115,9,-115,71v0,25,18,35,43,36v37,2,53,-19,68,-40v15,45,84,50,125,25v1,-5,6,-13,4,-16v-38,36,-127,17,-104,-58r123,1","w":280},"\u00f8":{"d":"44,-33v-20,-69,37,-163,104,-113xm154,-136v17,55,-11,127,-68,130v-16,0,-28,-5,-36,-16xm86,4v81,4,130,-95,84,-157r25,-27r-9,-7r-25,27v-68,-36,-149,14,-149,92v0,22,7,40,18,52r-26,26r8,8r26,-27v11,9,30,13,48,13"},"\u00bf":{"d":"87,-139v9,0,20,-9,19,-19v1,-10,-10,-19,-19,-19v-9,0,-19,9,-18,19v-1,10,9,19,18,19xm103,-75v1,-27,-21,-41,-46,-38v-1,4,-6,8,-4,11v30,-12,45,27,18,44v-25,27,-68,35,-71,85v-3,42,51,59,83,40v0,-6,5,-16,1,-19v-16,22,-65,22,-63,-13v3,-59,79,-50,82,-110","w":159},"\u00a1":{"d":"78,-139v9,0,19,-10,19,-19v0,-9,-10,-19,-19,-19v-9,0,-19,10,-19,19v0,9,10,19,19,19xm32,74v15,-1,17,-15,19,-31r23,-157r-8,0r-49,173v0,8,4,16,15,15","w":119},"\u00ac":{"d":"17,-128r0,17r161,0r0,66r19,0r0,-83r-180,0","w":213},"\u00ab":{"d":"114,-18v6,-4,7,-5,16,-6r-26,-64r48,-55v-6,-3,-8,-5,-13,-9r-51,62xm61,-18v6,-3,9,-5,16,-6r-26,-64r48,-55v-7,-3,-7,-5,-13,-9r-51,62","w":180},"\u00bb":{"d":"63,-152v-6,3,-8,5,-16,5r25,65r-48,55r14,9r51,-62xm115,-152v-5,3,-7,5,-15,5r25,65r-48,55v6,3,8,5,13,9r51,-62","w":180},"\u00a0":{"w":100},"\u00c0":{"d":"138,-318v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm144,-205v10,29,13,64,21,95v-28,2,-55,1,-83,0xm164,-249r-7,0r-165,249r24,0r57,-96r95,0r16,96r33,0","w":240},"\u00c3":{"d":"218,-312v-19,-2,-13,28,-37,14v-29,-17,-77,-17,-78,24v19,1,15,-29,40,-15v29,15,75,19,75,-23xm144,-205v10,29,13,64,21,95v-28,2,-55,1,-83,0xm164,-249r-7,0r-165,249r24,0r57,-96r95,0r16,96r33,0","w":240},"\u00d5":{"d":"243,-312v-19,-3,-12,28,-38,14v-22,-12,-67,-23,-73,11v-2,4,-4,9,-5,13r10,0v17,-48,93,43,106,-38xm137,-5v-54,0,-84,-31,-84,-87v0,-82,42,-147,122,-147v55,0,87,33,87,91v0,78,-43,143,-125,143xm178,-250v-94,0,-156,57,-156,154v0,70,45,102,115,102v95,0,156,-62,156,-152v0,-69,-44,-104,-115,-104","w":299},"\u00f7":{"d":"124,-150v0,-10,-6,-17,-17,-17v-11,0,-17,7,-17,17v0,10,7,16,17,16v10,0,17,-6,17,-16xm124,-23v0,-10,-7,-17,-17,-17v-10,0,-17,7,-17,17v0,10,7,17,17,17v10,0,17,-7,17,-17xm17,-95r0,17r180,0r0,-17r-180,0","w":213},"\u00ff":{"d":"146,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm75,-236v-9,0,-17,8,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-9,-8,-16,-17,-16xm86,-32r-32,-137v-9,0,-21,2,-29,0r44,169r-59,94v5,-2,17,-1,22,0v46,-92,101,-179,153,-263v-16,1,-29,-2,-31,17v-24,39,-42,84,-68,120","w":180},"\u00b7":{"d":"54,-125v-9,0,-19,10,-19,19v0,9,10,19,19,19v9,0,19,-10,19,-19v0,-9,-10,-19,-19,-19","w":100},"\u00c2":{"d":"175,-320r-14,0r-57,60r12,0r50,-38r29,38r12,0xm144,-205v10,29,13,64,21,95v-28,2,-55,1,-83,0xm164,-249r-7,0r-165,249r24,0r57,-96r95,0r16,96r33,0","w":240},"\u00ca":{"d":"147,-320r-14,0r-57,60r12,0r50,-38r29,38r12,0xm99,-230v28,0,59,0,82,5v1,-9,1,-13,4,-20r-113,0r-53,245r129,0v0,-8,0,-11,2,-18v-30,5,-62,4,-96,4r21,-108v28,1,59,-2,84,2v0,-8,2,-11,3,-18r-84,2","w":180},"\u00c1":{"d":"199,-293v15,-5,17,-25,2,-27v-28,14,-43,41,-67,60v30,-2,42,-25,65,-33xm144,-205v10,29,13,64,21,95v-28,2,-55,1,-83,0xm164,-249r-7,0r-165,249r24,0r57,-96r95,0r16,96r33,0","w":240},"\u00cb":{"d":"166,-302v-10,0,-17,8,-17,17v0,10,7,16,17,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm95,-302v-10,0,-17,8,-17,17v0,10,7,16,17,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm99,-230v28,0,59,0,82,5v1,-9,1,-13,4,-20r-113,0r-53,245r129,0v0,-8,0,-11,2,-18v-30,5,-62,4,-96,4r21,-108v28,1,59,-2,84,2v0,-8,2,-11,3,-18r-84,2","w":180},"\u00c8":{"d":"108,-318v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm99,-230v28,0,59,0,82,5v1,-9,1,-13,4,-20r-113,0r-53,245r129,0v0,-8,0,-11,2,-18v-30,5,-62,4,-96,4r21,-108v28,1,59,-2,84,2v0,-8,2,-11,3,-18r-84,2","w":180},"\u00cd":{"d":"133,-293v16,-6,16,-24,1,-27v-26,14,-44,41,-66,60v30,-3,42,-24,65,-33xm15,0r33,0r37,-185v5,-22,10,-42,15,-60v-10,0,-23,2,-32,0r-38,188v-5,22,-10,40,-15,57","w":100},"\u00ce":{"d":"104,-320r-15,0r-57,60r13,0r49,-38r30,38r11,0xm15,0r33,0r37,-185v5,-22,10,-42,15,-60v-10,0,-23,2,-32,0r-38,188v-5,22,-10,40,-15,57","w":100},"\u00cf":{"d":"120,-302v-10,0,-16,8,-16,17v0,9,6,16,16,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm49,-302v-10,0,-16,8,-16,17v0,9,6,16,16,16v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17xm15,0r33,0r37,-185v5,-22,10,-42,15,-60v-10,0,-23,2,-32,0r-38,188v-5,22,-10,40,-15,57","w":100},"\u00cc":{"d":"66,-318v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm15,0r33,0r37,-185v5,-22,10,-42,15,-60v-10,0,-23,2,-32,0r-38,188v-5,22,-10,40,-15,57","w":100},"\u00d3":{"d":"225,-293v16,-6,18,-24,2,-27v-28,14,-43,41,-67,60v30,-2,42,-25,65,-33xm137,-5v-54,0,-84,-31,-84,-87v0,-82,42,-147,122,-147v55,0,87,33,87,91v0,78,-43,143,-125,143xm178,-250v-94,0,-156,57,-156,154v0,70,45,102,115,102v95,0,156,-62,156,-152v0,-69,-44,-104,-115,-104","w":299},"\u00d4":{"d":"203,-320r-14,0r-57,60r12,0r50,-38r30,38r11,0xm137,-5v-54,0,-84,-31,-84,-87v0,-82,42,-147,122,-147v55,0,87,33,87,91v0,78,-43,143,-125,143xm178,-250v-94,0,-156,57,-156,154v0,70,45,102,115,102v95,0,156,-62,156,-152v0,-69,-44,-104,-115,-104","w":299},"\u00d2":{"d":"166,-318v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm137,-5v-54,0,-84,-31,-84,-87v0,-82,42,-147,122,-147v55,0,87,33,87,91v0,78,-43,143,-125,143xm178,-250v-94,0,-156,57,-156,154v0,70,45,102,115,102v95,0,156,-62,156,-152v0,-69,-44,-104,-115,-104","w":299},"\u00da":{"d":"223,-293v16,-6,16,-24,1,-27v-26,14,-44,41,-66,60v30,-3,42,-24,65,-33xm71,-245v-7,66,-31,118,-35,185v-5,81,130,80,172,34v47,-52,44,-147,71,-219v-7,2,-19,1,-24,0r-32,156v-11,48,-36,78,-92,80v-58,3,-73,-46,-59,-105r31,-131v-8,2,-25,1,-32,0","w":280},"\u00db":{"d":"197,-320r-14,0r-57,60r12,0r50,-38r29,38r12,0xm71,-245v-7,66,-31,118,-35,185v-5,81,130,80,172,34v47,-52,44,-147,71,-219v-7,2,-19,1,-24,0r-32,156v-11,48,-36,78,-92,80v-58,3,-73,-46,-59,-105r31,-131v-8,2,-25,1,-32,0","w":280},"\u00d9":{"d":"165,-318v-10,-10,-28,5,-17,16v16,15,36,28,53,42r10,0xm71,-245v-7,66,-31,118,-35,185v-5,81,130,80,172,34v47,-52,44,-147,71,-219v-7,2,-19,1,-24,0r-32,156v-11,48,-36,78,-92,80v-58,3,-73,-46,-59,-105r31,-131v-8,2,-25,1,-32,0","w":280},"\u00af":{"d":"127,-228r-106,0r-4,17r107,0","w":86},"\u00b8":{"d":"21,76v47,7,58,-59,9,-54r-4,0r14,-22r-12,0v-5,12,-22,24,-20,36v13,-4,31,-2,30,12v0,19,-28,19,-43,11r-7,10v9,4,18,8,33,7","w":86},"\u00a4":{"d":"49,-116v0,-34,22,-57,57,-57v35,0,57,22,57,57v0,35,-24,57,-57,57v-34,0,-57,-23,-57,-57xm47,-163v-20,22,-21,72,0,94r-23,23r12,11r23,-22v23,20,72,21,94,0r23,23r12,-12r-23,-23v22,-21,21,-72,1,-94r22,-23r-12,-12r-23,22v-22,-20,-72,-21,-94,0r-23,-22r-12,12"},"\u00b9":{"d":"78,-95r32,-144v-15,-4,-36,17,-56,19v3,17,20,3,31,0r-30,125v8,0,18,-2,23,0","w":130},"\u00bc":{"d":"78,-95r32,-144v-15,-4,-36,17,-56,19v3,17,20,3,31,0r-30,125v8,0,18,-2,23,0xm89,13r157,-260r-16,0r-157,260r16,0xm253,-54r-46,0r60,-62xm261,0r8,-40r22,1v0,-8,0,-11,4,-16r-23,1r21,-89v-5,2,-9,3,-14,0r-96,97v2,15,42,1,67,6r-11,40r22,0","w":314},"\u00bd":{"d":"78,-95r32,-144v-15,-4,-36,17,-56,19v3,17,20,3,31,0r-30,125v8,0,18,-2,23,0xm219,-113v5,-24,53,-27,50,3v-5,50,-58,73,-86,104r-1,6r93,0v0,-8,0,-10,4,-17v-17,2,-47,2,-69,2v26,-30,76,-50,81,-96v4,-38,-66,-41,-82,-12v4,2,3,9,10,10xm89,13r157,-260r-16,0r-157,260r16,0","w":314},"\u00d0":{"d":"102,-231v79,-8,142,8,139,84v-4,99,-74,148,-185,133r23,-118r66,0r4,-15r-67,1xm21,0v145,10,246,-22,251,-147v4,-102,-95,-101,-198,-98r-19,99r-33,-1r-4,16r34,-1","w":280},"\u00a6":{"d":"30,-243r0,126r20,0r0,-126r-20,0xm30,-63r0,125r20,0r0,-125r-20,0","w":79},"\u00fe":{"d":"165,-107v0,56,-40,121,-98,90v-9,-9,-18,-20,-16,-39v5,-47,18,-101,70,-101v29,0,44,19,44,50xm193,-107v6,-74,-93,-82,-124,-34r28,-127v-9,2,-20,2,-29,0r-74,362v7,-1,20,-2,26,0r25,-125v6,23,24,36,54,35v62,-3,89,-49,94,-111","w":206},"\u00fd":{"d":"158,-227v16,-5,19,-25,2,-27v-28,14,-43,41,-67,60v30,-2,42,-25,65,-33xm86,-32r-32,-137v-9,0,-21,2,-29,0r44,169r-59,94v5,-2,17,-1,22,0v46,-92,101,-179,153,-263v-16,1,-29,-2,-31,17v-24,39,-42,84,-68,120","w":180},"\u00f0":{"d":"86,-6v-32,2,-46,-23,-46,-53v0,-52,21,-102,72,-102v32,0,48,21,48,52v0,51,-22,101,-74,103xm143,-166v-72,-23,-131,30,-131,99v0,46,27,71,75,71v64,0,102,-45,102,-106v0,-60,-30,-91,-60,-124r45,-14r-5,-12r-49,17v-12,-12,-27,-22,-40,-33r-22,7v13,10,26,23,38,35r-48,13v3,4,4,9,5,13r51,-17v14,15,28,31,39,51"},"\u00d7":{"d":"94,-87r-71,71r13,13r71,-71r70,71r14,-13r-71,-71r71,-71r-14,-13r-70,71r-71,-71r-13,13","w":213},"\u00b2":{"d":"54,-209v5,-25,52,-27,49,3v-6,50,-58,75,-86,104r0,7r92,0v0,-9,0,-11,4,-18r-69,2v25,-29,76,-50,81,-96v4,-38,-64,-40,-81,-13v4,2,2,11,10,11","w":130},"\u00dd":{"d":"174,-293v16,-6,16,-24,1,-27v-26,14,-44,41,-66,60v30,-2,42,-24,65,-33xm197,-245v-26,43,-56,89,-88,125r-47,-125v-10,1,-24,2,-33,0r62,149r-24,96r31,0r20,-107r104,-138v-8,0,-18,2,-25,0"},"\u00b3":{"d":"123,-211v0,-34,-59,-33,-74,-12v3,3,2,11,8,11v6,-20,47,-25,46,4v-1,22,-17,34,-42,34r-4,13v14,-9,42,-3,39,18v1,37,-48,54,-71,28v-7,2,-4,11,-8,15v40,18,101,1,101,-44v1,-18,-12,-24,-27,-28v15,-7,32,-16,32,-39","w":130},"\u00be":{"d":"123,-211v1,-33,-60,-33,-75,-12v3,3,2,11,8,11v7,-19,47,-25,46,4v-1,22,-17,34,-42,34r-3,13v14,-10,40,-2,39,18v-2,39,-48,52,-74,28r-6,15v41,18,102,1,102,-44v0,-17,-12,-24,-27,-28v16,-7,31,-17,32,-39xm91,13r157,-260r-16,0r-157,260r16,0xm253,-54r-46,0v16,-20,42,-45,60,-62xm261,0r8,-40r22,1v1,-8,0,-10,4,-16r-23,1r21,-89v-4,2,-10,3,-14,0r-96,97v2,15,42,1,67,6r-11,40r22,0","w":314},"\u00de":{"d":"167,-154v-3,52,-42,75,-100,68r23,-105v37,-4,79,-4,77,37xm195,-156v2,-49,-53,-54,-102,-48v2,-16,5,-26,10,-41v-7,1,-24,2,-32,0r-53,245r32,0r14,-74v73,6,129,-17,131,-82"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved.
 * 
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is now the property of Heidelberger Druckmaschinen AG and its
 * licensors, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Heidelberger Druckmaschinen
 * AG.
 * 
 * Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Optima is a trademark of Heidelberger Druckmaschinen AG, which may be
 * registered in certain jurisdictions, exclusivly licensed through Linotype
 * Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.
 * 
 * Description:
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is copyrighted (c)  2000, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved. This software is now
 * the property of Heidelberger Druckmaschinen AG and its licensors and may not be
 * reproduced, used, displayed, modified, disclosed or transferred without the
 * express written approval of Heidelberger Druckmaschinen AG.
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Optima","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"5","cap-height":"1","bbox":"-41 -335 366 94.081","underline-thickness":"18","underline-position":"-27","slope":"-12","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":33,"W":13,"V":33,"T":27,"A":13}},"\t":{"w":100},"\r":{"w":100},"!":{"d":"80,-23v0,-15,-14,-29,-29,-29v-15,0,-29,14,-29,29v0,16,14,28,29,28v15,0,29,-12,29,-28xm91,-245v-21,0,-29,12,-30,33r-6,135r9,0r56,-142v0,-15,-12,-27,-29,-26","w":119},"\"":{"d":"119,-131r20,0r38,-107r-45,0xm50,-131r20,0r38,-107r-45,0","w":180},"#":{"d":"121,-93r-39,0r11,-52r39,0xm34,0r28,0r15,-68r39,0r-14,68r28,0r14,-68r33,0r6,-25r-34,0r11,-52r33,0r6,-24r-33,0r14,-69r-28,0r-14,69r-40,0r15,-69r-28,0r-15,69r-33,0r-5,24r33,0r-11,52r-33,0r-6,25r34,0"},"$":{"d":"112,-89v34,7,35,71,-3,76v-5,1,-9,3,-13,3xm119,-225r-15,75v-39,-12,-27,-77,15,-75xm184,-68v0,-43,-33,-59,-62,-73r18,-84v20,5,36,18,38,42r5,0v4,-11,10,-26,16,-36v-16,-12,-34,-17,-56,-21r8,-30v-8,0,-17,2,-24,0r-5,30v-49,0,-87,24,-87,73v0,41,31,53,58,67r-17,90v-26,-4,-45,-19,-49,-47r-7,0v-4,14,-8,30,-15,41v17,13,39,18,67,21r-10,39v8,0,17,-2,24,0r7,-39v53,-1,91,-23,91,-73"},"%":{"d":"256,-249r-20,0r-161,259r19,0xm235,-8v-13,1,-19,-11,-19,-23v2,-29,8,-71,36,-71v17,0,21,13,19,31v-3,27,-8,60,-36,63xm252,-114v-72,-9,-100,117,-18,117v75,10,100,-117,18,-117xm118,-206v0,33,-17,89,-52,65v-10,-31,1,-88,33,-88v14,0,19,10,19,23xm98,-240v-74,-9,-98,117,-17,117v74,10,99,-119,17,-117","w":320},"&":{"d":"155,-37v-41,41,-130,-13,-83,-69v6,-8,15,-12,24,-16v17,28,40,61,59,85xm118,-195v-3,-37,52,-44,52,-8v1,25,-20,43,-39,50v-6,-12,-12,-26,-13,-42xm251,-105v-10,-8,-13,-15,-19,-27v-16,13,-15,52,-41,65r-51,-72v29,-10,64,-20,64,-59v0,-33,-26,-45,-63,-47v-65,-4,-89,65,-54,108v-31,14,-73,34,-74,81v-3,77,116,71,153,35v6,27,43,20,78,22r-41,-52v19,-15,36,-37,48,-54","w":259},"'":{"d":"45,-131r19,0r39,-107r-45,0","w":100},"(":{"d":"83,41v-44,-94,-2,-239,70,-279r-6,-10v-101,27,-158,205,-72,295","w":119},")":{"d":"43,-242v46,92,2,238,-68,279r5,10v102,-29,156,-203,72,-295","w":119},"*":{"d":"160,-190v-6,-11,-6,-15,-9,-27r-48,24r19,-52v-13,-1,-17,0,-28,-4r-5,54r-35,-44v-7,11,-12,15,-19,22r45,32r-53,10v6,10,7,15,10,27r42,-22v4,-2,6,-1,4,4r-17,48v13,0,20,2,28,4v1,-18,1,-40,4,-56v11,14,26,29,34,43v7,-10,12,-14,20,-21v-15,-10,-33,-20,-45,-32","w":159},"+":{"d":"91,-76r0,76r32,0r0,-76r76,0r0,-31r-76,0r0,-76r-32,0r0,76r-76,0r0,31r76,0","w":213},",":{"d":"60,-8v20,-12,19,-47,-9,-46v-14,0,-19,11,-25,22r-49,93r6,5","w":100},"-":{"d":"113,-115r-91,0r-8,37r90,0","w":119},".":{"d":"69,-23v0,-15,-14,-29,-28,-29v-15,0,-29,13,-29,29v0,16,14,28,29,28v15,0,28,-12,28,-28","w":100},"\/":{"d":"171,-256r-28,0r-157,269r27,0","w":140},"0":{"d":"105,-211v12,-24,48,-14,45,17v-6,66,-20,128,-43,174v-12,25,-47,9,-44,-21v7,-61,21,-124,42,-170xm124,-238v-82,4,-106,79,-106,158v0,48,22,85,75,84v78,-2,102,-85,102,-163v0,-45,-21,-81,-71,-79"},"1":{"d":"161,-244v-37,19,-74,31,-112,40v2,10,9,15,13,23v14,-5,27,-12,42,-16v-6,34,-13,67,-20,100v-7,33,-16,66,-25,98v18,0,39,-2,56,0r33,-169r20,-74"},"2":{"d":"108,-222v52,3,25,79,6,103v-32,41,-71,75,-113,107r0,13r156,0r10,-44v-32,-1,-72,6,-100,0v45,-41,120,-58,127,-133v7,-76,-126,-78,-154,-27v10,8,16,25,29,26v2,-25,12,-47,39,-45"},"3":{"d":"49,-209v10,9,14,13,22,25r5,0v1,-21,12,-40,33,-40v20,1,26,16,26,37v1,40,-22,61,-64,55v-1,9,-2,10,-4,19v27,-5,47,9,46,35v-2,33,-13,66,-46,67v-28,1,-36,-22,-39,-46v-14,5,-18,21,-29,30v38,48,166,45,166,-36v0,-30,-20,-47,-44,-54r0,-3v33,-5,65,-17,65,-58v0,-68,-109,-80,-137,-31"},"4":{"d":"115,-94v-23,-2,-54,4,-73,-2r90,-102r5,0xm193,-239v-15,0,-30,2,-44,0r-107,119v-24,20,-28,29,-34,65r98,-1r-14,57v17,0,35,-2,51,0v2,-19,6,-39,10,-57r33,1v0,-18,1,-27,8,-41v-11,2,-21,2,-34,2"},"5":{"d":"173,-74v2,-54,-51,-75,-101,-60r18,-64r103,4v2,-17,5,-31,10,-45v-40,1,-87,4,-123,0v-12,36,-16,87,-30,122v12,12,18,-6,36,-5v23,0,34,16,34,39v0,35,-12,72,-48,73v-28,1,-35,-23,-39,-46r-5,0v-6,14,-12,24,-20,35v18,15,42,26,77,25v53,-1,86,-28,88,-78"},"6":{"d":"132,-94v0,37,-11,94,-54,81v-28,-26,-10,-107,28,-111v18,-2,26,14,26,30xm184,-75v2,-55,-56,-78,-103,-58v14,-49,44,-105,109,-85v4,-4,-3,-11,-4,-17v-109,-18,-165,57,-165,159v0,50,27,81,78,80v52,-1,83,-28,85,-79"},"7":{"d":"48,-239v1,18,-1,34,-7,46r122,2v-44,72,-105,125,-153,192v15,0,32,-2,46,0v48,-80,105,-158,161,-231v-33,-15,-116,2,-169,-9"},"8":{"d":"106,-120v19,0,26,15,26,34v0,34,-9,74,-42,78v-20,2,-27,-15,-27,-32v0,-35,10,-80,43,-80xm130,-224v18,-1,24,14,24,30v0,27,-8,60,-36,60v-17,0,-25,-12,-24,-30v1,-27,8,-58,36,-60xm121,-238v-71,0,-96,82,-42,106r0,3v-38,5,-65,24,-65,66v0,48,35,67,84,67v82,0,110,-97,48,-125r0,-3v29,-6,54,-18,53,-53v-2,-42,-32,-61,-78,-61"},"9":{"d":"121,-224v18,0,24,15,24,34v0,34,-8,80,-40,80v-18,0,-25,-14,-25,-32v0,-34,8,-82,41,-82xm129,-103v-2,50,-56,126,-108,78v-6,7,4,15,5,25v113,21,166,-61,166,-167v0,-43,-28,-71,-77,-71v-53,1,-84,29,-86,79v-2,53,56,81,100,56"},":":{"d":"99,-141v0,-16,-14,-29,-29,-29v-15,0,-29,14,-29,29v0,15,14,29,29,29v15,0,29,-13,29,-29xm75,-23v0,-15,-14,-29,-29,-29v-15,0,-29,14,-29,29v0,16,14,28,29,28v15,0,29,-12,29,-28","w":119},";":{"d":"102,-141v0,-15,-14,-29,-29,-29v-15,0,-29,13,-29,29v0,16,14,29,29,29v15,0,29,-14,29,-29xm60,-9v20,-11,19,-46,-9,-45v-14,0,-19,12,-25,22r-49,93r5,5","w":119},"<":{"d":"15,-107r0,32r184,72r0,-34r-144,-54r144,-54r0,-34","w":213},"=":{"d":"15,-69r0,30r184,0r0,-30r-184,0xm15,-144r0,31r184,0r0,-31r-184,0","w":213},">":{"d":"15,-3r184,-72r0,-32r-184,-72r0,34r144,54r-144,54r0,34","w":213},"?":{"d":"90,-23v0,-16,-14,-29,-29,-29v-15,0,-29,14,-29,29v0,16,14,28,29,28v15,0,29,-12,29,-28xm133,-145v53,-35,16,-118,-57,-99v-4,1,-9,3,-15,5v-1,11,-3,13,-6,22v15,-1,16,-13,35,-13v33,0,35,42,10,52v-23,16,-56,25,-56,62v0,33,32,51,65,44v1,-5,10,-12,4,-15v-17,16,-47,-9,-26,-27v13,-11,32,-21,46,-31","w":159},"@":{"d":"108,-108v1,-35,23,-79,60,-61v4,5,10,11,9,21v-4,32,-12,73,-45,73v-16,0,-24,-16,-24,-33xm16,-118v-7,122,157,155,238,87r-9,-12v-27,18,-52,33,-95,33v-71,0,-117,-39,-117,-108v0,-72,49,-116,122,-116v57,0,98,28,98,85v0,37,-16,74,-51,73v-17,-1,-9,-27,-5,-38r21,-73r-25,0r-6,21v-6,-15,-17,-26,-40,-26v-70,0,-101,135,-22,135v25,0,41,-18,48,-33v-5,20,8,35,27,33v45,-4,70,-42,70,-91v0,-68,-48,-102,-115,-102v-83,0,-135,50,-139,132","w":268},"A":{"d":"78,-95r69,0r-18,-84xm66,-73v-16,26,-23,40,-40,74v-10,0,-23,-2,-32,0r144,-249v7,3,20,2,27,0r44,202v4,17,9,33,13,47r-60,0r-11,-74r-85,0","w":240,"k":{"y":20,"w":20,"v":20,"u":6,"Y":27,"W":16,"V":20,"U":11,"T":27,"Q":11,"O":11,"G":16,"C":11}},"B":{"d":"94,-119v33,-3,50,13,50,41v0,43,-26,66,-71,60xm116,-224v27,-5,48,4,48,32v0,37,-28,60,-66,53xm199,-71v0,-33,-21,-52,-53,-54r0,-4v42,-5,71,-25,71,-66v0,-68,-88,-44,-151,-50v-13,83,-30,170,-52,246v86,1,185,10,185,-72","w":219,"k":{"A":13,".":9,",":9}},"C":{"d":"175,-229v32,0,50,12,63,34r4,0v4,-10,9,-23,16,-32v-22,-13,-51,-23,-88,-22v-90,3,-145,53,-149,141v-4,93,88,130,180,104v2,-10,16,-24,10,-32v-16,13,-37,20,-63,21v-48,1,-72,-31,-72,-77v0,-71,27,-137,99,-137","w":240,"k":{"A":16}},"D":{"d":"118,-223v62,-7,102,16,101,75v-1,89,-49,138,-144,129xm13,1v137,5,262,-6,262,-139v0,-90,-73,-118,-171,-105r-37,-2","w":280,"k":{"Y":27,"W":6,"V":13,"A":20,".":16,",":16}},"E":{"d":"199,-217v-1,-13,1,-18,6,-28r-141,0v-11,85,-31,170,-51,246r141,0v-1,-11,2,-16,6,-26r-84,2r17,-95r82,3v1,-12,1,-17,6,-28r-83,2r19,-80","w":186},"F":{"d":"201,-216v0,-14,2,-17,7,-29r-140,0r-46,213v-4,13,-7,24,-10,33r60,0r23,-118v25,0,57,1,80,4v0,-13,2,-17,6,-29r-81,1r20,-79v28,-1,58,2,81,4","w":180,"k":{"r":13,"o":16,"i":6,"e":16,"a":20,"A":20,".":40,",":40}},"G":{"d":"185,-228v31,0,60,12,72,34r4,0v5,-15,7,-19,15,-33v-31,-14,-58,-22,-99,-22v-93,3,-151,53,-156,142v-6,107,112,128,211,101v4,-36,13,-70,23,-102v-18,0,-38,2,-55,0v-3,33,-13,62,-20,89v-58,15,-108,-12,-104,-74v4,-73,32,-135,109,-135","w":273},"H":{"d":"70,1r22,-118r109,0r-28,118r58,0r42,-202v4,-17,8,-32,12,-44v-18,2,-39,2,-57,0r-21,102r-109,0v5,-32,17,-71,25,-102v-19,2,-40,2,-58,0r-43,208v-4,14,-7,27,-11,38r59,0","w":280},"I":{"d":"66,-245v-14,87,-34,172,-56,246r60,0v12,-82,33,-172,56,-246v-20,2,-40,2,-60,0","w":119},"J":{"d":"72,1r54,-246v-20,2,-40,2,-58,0r-45,230v-8,29,-12,55,-47,55r2,17v51,1,85,-17,94,-56","w":119,"k":{"u":6,"o":4,"e":4,"a":4,"A":6}},"K":{"d":"74,1v7,-34,10,-82,22,-110v22,32,32,72,48,110r58,0r-61,-141r110,-103v-6,-5,-28,3,-41,-2v-30,34,-61,63,-92,95v-9,5,-10,15,-17,10r24,-105v-19,2,-38,2,-56,0r-53,246r58,0","w":219,"k":{"y":20,"u":11,"o":13,"e":9,"O":13}},"L":{"d":"67,-245r-36,183v-5,23,-10,44,-16,63r141,0v1,-11,3,-17,6,-26r-85,2r50,-222v-20,2,-40,2,-60,0","w":180,"k":{"y":33,"Y":40,"W":33,"V":33,"T":33}},"M":{"d":"122,5r11,0r86,-124r33,-40r-23,125v-3,13,-6,25,-9,35v18,0,38,-2,55,0r48,-246v-12,1,-25,3,-37,0r-129,171r-52,-171v-13,2,-23,3,-36,0r-63,246v10,0,19,-2,28,0v10,-56,28,-114,41,-165","w":320},"N":{"d":"99,-249v-9,3,-22,2,-31,0r-54,250v10,0,21,-2,30,0r36,-179r61,91v20,30,40,61,58,92v8,-3,20,-2,29,0r54,-250v-9,2,-20,3,-29,0r-37,177r-100,-151v-7,-11,-12,-21,-17,-30","w":280,"k":{"A":6}},"O":{"d":"196,-39v-43,41,-127,25,-121,-47v6,-75,27,-141,100,-144v101,-4,64,150,21,191xm172,-250v-91,0,-151,56,-151,146v0,74,49,109,122,109v93,0,153,-56,153,-145v0,-73,-51,-110,-124,-110","w":299,"k":{"Y":27,"X":13,"W":6,"V":13,"T":13,"A":13,".":9,",":9}},"P":{"d":"115,-225v28,-2,43,9,43,36v0,40,-22,70,-65,64xm67,1r23,-108v66,8,121,-11,121,-77v0,-77,-80,-57,-146,-61r-31,154v-7,31,-16,62,-24,92r57,0","w":206,"k":{"o":16,"e":16,"a":33,"A":20,".":46,",":46}},"Q":{"d":"140,-14v-43,0,-65,-27,-65,-72v0,-75,27,-144,100,-144v44,0,67,26,67,72v0,73,-30,144,-102,144xm172,-250v-91,0,-148,56,-151,145v-3,110,118,111,188,150v11,6,24,11,36,17v11,-13,26,-24,38,-32r-100,-29v64,-18,113,-62,113,-141v0,-74,-51,-110,-124,-110","w":299,"k":{".":9,",":9}},"R":{"d":"160,-188v0,40,-20,63,-66,59r20,-96v30,-3,46,9,46,37xm68,1r23,-114r7,0r40,114r59,0r-50,-119v38,-6,66,-25,66,-68v2,-74,-81,-55,-147,-59r-54,246r56,0","w":219,"k":{"Y":13,"W":6,"V":13,"T":6}},"S":{"d":"121,-228v26,0,40,17,43,40r8,0v4,-16,6,-27,15,-42v-51,-36,-151,-22,-151,56v0,69,73,66,83,124v-2,23,-18,35,-42,35v-28,0,-48,-17,-49,-45r-8,0v-3,14,-9,32,-15,44v54,38,165,26,162,-56v-2,-67,-83,-64,-83,-123v0,-21,16,-32,37,-33","w":186},"T":{"d":"110,1v12,-76,31,-153,49,-220v22,0,38,0,58,3v2,-13,3,-18,7,-29r-184,0v-1,12,-4,16,-7,28v23,-3,43,-2,68,-2r-33,157v-8,32,-9,32,-17,63r59,0","k":{"y":27,"w":33,"u":36,"r":27,"o":36,"i":27,"h":16,"e":36,"a":36,"O":13,"A":27,";":33,":":33,".":40,"-":40,",":40}},"U":{"d":"83,-59v0,-68,28,-128,42,-186v-19,2,-40,2,-59,0v-7,62,-32,120,-35,182v-4,88,155,82,190,30v37,-55,41,-146,65,-212v-12,3,-22,2,-33,0r-31,146v-12,44,-28,84,-86,82v-31,0,-53,-11,-53,-42","w":280},"V":{"d":"127,-60v-12,-61,-19,-120,-25,-185v-20,2,-42,2,-62,0r36,184v4,21,7,41,9,62v7,-1,25,-1,32,0r151,-246v-12,2,-25,2,-37,0v-29,64,-69,129,-104,185","w":240,"k":{"u":13,"o":20,"i":13,"e":20,"a":20,"O":13,"A":20,";":27,":":27,".":46,"-":27,",":46}},"W":{"d":"110,-68v-8,-52,-11,-119,-15,-177v-19,2,-40,2,-59,0r31,246v8,-1,28,-1,36,0r84,-167r21,167v12,0,25,-2,36,0r122,-246v-11,2,-24,3,-34,0r-79,177r-21,-177v-12,2,-24,3,-36,0v-25,59,-58,121,-86,177","w":339,"k":{"y":6,"u":6,"o":13,"i":6,"e":13,"a":13,"O":6,"A":16,";":27,":":27,".":33,"-":20,",":33}},"X":{"d":"133,-159v-12,-28,-21,-55,-31,-86v-20,2,-41,2,-60,0r53,129r-95,117v11,-1,31,-1,39,0r65,-92r36,92r61,0r-58,-135r92,-111v-12,2,-25,2,-37,0","w":219},"Y":{"d":"131,-128r-31,-117v-20,2,-41,3,-60,0r49,144v-5,34,-14,71,-22,102v18,0,39,-2,56,0v12,-47,12,-100,39,-133v28,-35,59,-80,87,-113v-13,2,-26,2,-38,0","w":219,"k":{"u":46,"o":46,"i":20,"e":40,"a":46,"O":20,"A":20,";":33,":":33,".":46,"-":54,",":46}},"Z":{"d":"57,-245v0,14,-2,18,-6,29r113,-4r-172,215r-2,6r200,0v0,-12,2,-20,7,-29v-39,5,-80,6,-125,5r125,-160v15,-21,37,-36,48,-62r-188,0","w":219},"[":{"d":"102,-228v13,-1,25,0,39,0v1,-9,1,-11,4,-17r-78,0r-62,290v25,-2,52,-2,77,0v1,-6,1,-12,3,-18v-13,0,-28,2,-40,0","w":119},"\\":{"d":"139,13r-99,-269r-27,0r99,269r27,0","w":140},"]":{"d":"25,27v-13,0,-26,2,-38,0r-4,17r77,0r62,-290v-22,3,-55,3,-78,0v-1,6,-1,12,-3,18v13,0,28,-2,40,0","w":119},"^":{"d":"98,-238r-63,152r33,0r44,-112r44,112r33,0r-62,-152r-29,0","w":213},"_":{"d":"0,26r0,18r180,0r0,-18r-180,0","w":180},"`":{"d":"69,-246v-11,-25,-49,-10,-35,11v16,15,38,26,56,39r17,0","w":100},"a":{"d":"98,-33v-8,22,-46,18,-41,-9v-1,-36,22,-44,55,-48v-4,21,-7,40,-14,57xm103,-22v1,28,44,32,63,17v-3,-13,-23,-2,-18,-30r18,-96v-2,-57,-81,-50,-119,-27v1,6,-5,17,0,20v23,-27,91,-10,64,32v-42,10,-104,8,-104,65v0,54,81,60,96,19","w":180,"k":{"y":11,"w":6,"v":11}},"b":{"d":"89,-12v-54,-12,-17,-107,3,-133v21,-17,53,-1,49,30v-5,44,-12,94,-52,103xm192,-107v6,-62,-74,-90,-110,-48r27,-115v-17,0,-36,2,-52,0r-46,230v-4,15,-8,28,-11,40v21,-3,27,-20,46,-25v9,17,25,30,53,29v62,-2,87,-53,93,-111","k":{"y":6,"v":4}},"c":{"d":"122,-159v23,2,37,15,36,42v19,-1,13,-28,27,-39v-19,-10,-41,-19,-71,-19v-65,1,-103,39,-105,101v-3,67,64,93,129,72v3,-10,4,-16,11,-26r-5,-4v-25,29,-88,16,-83,-34v5,-46,16,-88,61,-93","w":173,"k":{"y":9,"k":6,"h":6}},"d":{"d":"137,-120v-1,46,-14,110,-63,97v-9,-6,-15,-17,-15,-32v0,-42,9,-93,49,-98v19,-3,29,15,29,33xm93,-176v-55,4,-78,52,-84,111v-7,69,83,91,113,41r-6,25v15,0,33,-2,47,0r57,-271v-16,0,-35,2,-50,0r-24,122v-11,-16,-28,-30,-53,-28","k":{"y":9,"w":4,"v":9}},"e":{"d":"108,-159v29,-3,23,37,19,58v-20,0,-42,2,-60,0v6,-26,11,-56,41,-58xm13,-77v-5,72,77,99,135,67v0,-9,14,-24,3,-27v-32,38,-105,18,-87,-47r108,1v11,-52,-11,-95,-65,-92v-60,3,-90,40,-94,98","w":180},"f":{"d":"157,-270v-66,-14,-101,40,-107,99r-29,0r-4,19r29,-1r-28,125v-3,12,-7,22,-9,29v19,0,40,-2,58,0v8,-58,17,-104,28,-154r35,1r4,-19r-37,0v-3,-21,-25,-63,9,-66v18,-1,28,16,39,12","w":119},"g":{"d":"68,78v-51,0,-63,-66,-20,-72v33,-4,74,-4,73,30v-1,29,-21,42,-53,42xm91,-73v-16,1,-21,-12,-21,-27v1,-28,8,-62,35,-62v16,0,22,11,22,27v0,28,-8,60,-36,62xm54,-66v-30,1,-52,51,-18,63v-22,9,-47,18,-47,48v1,39,38,49,76,49v55,0,92,-27,94,-78v2,-37,-33,-45,-70,-45v-18,0,-33,1,-34,-15v-1,-19,25,-17,46,-16v53,3,94,-51,60,-94r30,1v1,-6,1,-12,3,-18v-35,6,-60,-5,-92,-5v-46,0,-77,20,-80,62v-2,27,17,36,32,48","w":186},"h":{"d":"190,-136v0,-56,-90,-44,-108,-7r31,-127v-18,0,-36,2,-53,0r-58,271v17,0,36,-2,52,0v15,-57,8,-136,67,-149v13,0,21,5,21,18v0,50,-20,88,-33,131v18,0,37,-2,54,0","k":{"y":13}},"i":{"d":"81,-265v-16,0,-28,12,-28,27v0,15,12,27,28,27v15,0,27,-12,27,-27v0,-15,-12,-27,-27,-27xm59,1v8,-55,23,-124,37,-172v-18,0,-37,2,-54,0v-7,57,-23,120,-37,172v18,0,37,-2,54,0","w":100,"k":{"v":6}},"j":{"d":"80,-265v-15,0,-27,13,-27,27v0,14,12,27,27,27v16,0,28,-11,28,-27v0,-16,-12,-27,-28,-27xm-41,81r2,13v119,4,93,-141,125,-231v5,-13,6,-25,9,-34v-17,0,-36,2,-52,0r-49,227v-6,15,-16,22,-35,25","w":93},"k":{"d":"75,-85v17,28,20,55,31,86v17,-2,41,2,53,-2v-14,-29,-28,-72,-41,-102v25,-21,49,-45,76,-63v-1,-11,-22,0,-35,-5v-26,27,-50,51,-81,72v-2,0,-3,-1,-3,-3r38,-168v-18,0,-36,2,-53,0r-34,171r-24,100v17,0,36,-2,52,0v7,-26,6,-66,21,-86","w":180,"k":{"y":6}},"l":{"d":"63,-270r-37,185r-23,86v19,0,38,-2,56,0r59,-271v-18,0,-38,2,-55,0","w":100},"m":{"d":"183,-141v-7,-50,-90,-36,-103,-3r6,-27v-15,0,-33,2,-47,0r-39,172v17,0,35,-2,51,0v12,-45,14,-105,39,-137v12,-14,48,-18,46,7v-4,42,-20,93,-31,130v17,0,36,-2,52,0v19,-52,7,-136,65,-149v13,0,20,8,20,20v0,43,-19,91,-31,129v18,0,36,-2,53,0r26,-136v-2,-59,-90,-42,-107,-6","w":299,"k":{"y":4}},"n":{"d":"121,-148v51,19,-9,108,-12,149v18,0,36,-2,53,0r28,-138v3,-39,-52,-47,-81,-29v-10,6,-19,14,-28,25v3,-11,4,-20,8,-30v-16,0,-34,2,-49,0r-29,137v-3,12,-7,24,-10,35v17,0,36,-2,52,0v12,-57,12,-138,68,-149","k":{"y":6,"v":4}},"o":{"d":"86,-8v-23,0,-29,-21,-28,-44v3,-49,11,-101,56,-109v23,1,28,21,28,44v0,49,-10,109,-56,109xm113,-175v-64,0,-104,41,-104,105v0,48,28,75,76,75v64,0,107,-40,107,-103v0,-49,-28,-77,-79,-77","k":{"y":4,"w":4,"v":4}},"p":{"d":"92,-17v-17,3,-29,-17,-28,-34v3,-44,11,-90,50,-99v18,0,29,14,27,33v-3,43,-9,94,-49,100xm107,5v89,4,124,-181,24,-181v-26,0,-40,12,-52,28r7,-23v-16,0,-34,2,-49,0r-53,264v15,-2,34,-3,48,0v6,-39,13,-76,23,-113v10,15,29,24,52,25","k":{"y":6}},"q":{"d":"86,-21v-20,2,-27,-14,-27,-32v0,-44,10,-93,50,-100v21,0,28,15,28,35v0,44,-10,92,-51,97xm94,-176v-58,0,-80,53,-85,112v-5,67,75,89,110,44v-6,38,-18,79,-27,113v17,-2,35,-2,52,0v13,-90,36,-180,56,-264v-16,0,-34,2,-49,0v-1,9,-4,16,-4,26v-12,-20,-29,-31,-53,-31"},"r":{"d":"56,1v14,-67,10,-145,82,-127v0,-20,4,-30,11,-45v-33,-14,-58,17,-69,40r9,-40v-15,0,-33,2,-47,0v-8,58,-24,118,-38,172v17,0,36,-2,52,0","w":140,"k":{"c":4,"a":4,".":27,"-":20,",":27}},"s":{"d":"83,-158v22,0,32,14,36,31r7,0v0,-12,6,-28,11,-37v-44,-22,-118,-10,-118,50v0,51,61,43,70,81v-6,36,-68,25,-69,-9r-7,0v-2,13,-5,25,-10,36v44,24,124,11,124,-49v0,-51,-63,-42,-74,-80v1,-14,14,-23,30,-23","w":140,"k":{"w":4}},"t":{"d":"37,-117v-13,49,-38,136,44,121v5,-1,9,-3,14,-4r4,-12v-26,10,-34,-12,-28,-40r22,-101r32,1v1,-7,1,-13,4,-19r-33,0r16,-59v-16,-6,-36,17,-57,19r-6,40r-25,0v-2,10,0,12,-3,19r24,-1","w":119},"u":{"d":"39,-171v-5,48,-23,88,-27,140v-4,49,84,42,102,13v3,-4,6,-6,8,-9v-2,13,-3,18,-8,28v17,0,33,-2,49,0r37,-172v-17,0,-35,2,-51,0v-19,54,-7,139,-68,151v-13,0,-25,-10,-21,-25r33,-126v-18,0,-37,2,-54,0"},"v":{"d":"24,-171r22,172v21,-2,42,5,47,-16r93,-156v-10,0,-21,2,-30,0r-69,125r-14,-125v-16,0,-34,2,-49,0","w":173,"k":{"o":6,"e":4,"a":9,".":33,",":33}},"w":{"d":"83,-50r-10,-121v-16,0,-33,2,-48,0r15,172v18,-3,41,7,44,-12r56,-101r8,113v12,-1,28,-1,38,0r101,-172v-9,2,-21,1,-31,0r-66,123r-7,-123v-12,0,-26,2,-37,0","w":273,"k":{"o":4,"h":6,"a":6,".":27,",":27}},"x":{"d":"140,1r-36,-96v23,-26,49,-48,70,-76v-9,1,-24,2,-32,0v-15,20,-28,39,-46,57r-22,-57v-16,2,-40,-2,-51,2r39,93r-75,77v19,-2,36,4,42,-11r40,-46v9,16,14,40,21,57v16,0,35,-2,50,0","w":166},"y":{"d":"93,-54r-16,-117v-16,0,-35,2,-50,0r30,171r-63,93v10,-3,23,-2,33,0r161,-264v-10,0,-20,2,-29,0","w":180,"k":{"o":6,"e":6,"a":9,".":33,",":33}},"z":{"d":"168,-138v12,-14,18,-11,17,-33r-148,0r-2,24r81,-4v-37,48,-83,95,-122,141r0,11r155,0v1,-9,0,-13,4,-22v-29,3,-61,3,-91,3v32,-41,73,-84,106,-120","w":180},"{":{"d":"107,27v-74,1,19,-120,-56,-126v82,2,28,-119,110,-128r4,-18v-72,-5,-83,45,-96,102v-5,22,-22,32,-48,35r-4,17v18,2,33,8,34,27v-10,50,-19,115,52,108","w":130},"|":{"d":"24,-270r0,359r32,0r0,-359r-32,0","w":79},"}":{"d":"31,-228v49,0,24,55,22,88v0,25,14,35,33,40v-81,-2,-28,116,-109,126r-3,18v72,6,81,-44,94,-101v5,-21,21,-32,48,-34r4,-18v-18,-2,-33,-8,-34,-27v9,-50,19,-116,-52,-109","w":130},"~":{"d":"181,-120v-23,79,-153,-71,-170,57r21,0v21,-79,154,73,170,-57r-21,0","w":213},"\u00c4":{"d":"217,-288v0,-12,-11,-24,-23,-24v-12,0,-24,12,-24,24v0,12,12,23,24,23v11,0,23,-12,23,-23xm142,-288v0,-14,-12,-24,-24,-24v-12,0,-23,10,-23,24v0,11,12,23,23,23v12,0,24,-11,24,-23xm129,-179r18,84r-69,0xm151,-73v5,23,9,50,11,74r60,0r-57,-249v-7,2,-20,3,-27,0r-144,249v10,-1,24,-1,32,0r40,-74r85,0","w":240},"\u00c5":{"d":"152,-272v-12,0,-23,-11,-23,-23v0,-13,12,-23,24,-23v11,0,23,11,23,23v0,13,-12,23,-24,23xm152,-335v-24,0,-40,16,-40,40v0,25,16,40,40,40v25,0,41,-15,41,-40v0,-24,-16,-40,-41,-40xm129,-179r18,84r-69,0xm151,-73v5,23,9,50,11,74r60,0r-57,-249v-7,2,-20,3,-27,0r-144,249v10,-1,24,-1,32,0r40,-74r85,0","w":240},"\u00c7":{"d":"175,-229v32,0,50,12,63,34r4,0v4,-10,9,-23,16,-32v-22,-13,-51,-23,-88,-22v-90,3,-149,53,-149,141v0,64,37,105,100,111r-21,29v8,10,35,-3,33,17v-2,18,-30,16,-45,8r-7,12v24,13,85,16,85,-23v0,-19,-22,-29,-43,-24v7,-7,7,-18,24,-18v24,0,37,-2,54,-8v2,-10,16,-24,10,-32v-16,13,-37,20,-63,21v-48,1,-72,-31,-72,-77v0,-71,27,-137,99,-137","w":240},"\u00c9":{"d":"193,-298v13,-7,1,-29,-13,-27v-30,11,-45,46,-68,65v38,-1,56,-24,81,-38xm199,-217v-1,-13,1,-18,6,-28r-141,0v-11,85,-31,170,-51,246r141,0v-1,-11,2,-16,6,-26r-84,2r17,-95r82,3v1,-12,1,-17,6,-28r-83,2r19,-80","w":186},"\u00d1":{"d":"237,-314v-14,41,-69,-21,-98,11v-7,8,-13,18,-17,33v19,5,15,-16,32,-16v38,18,93,25,97,-28r-14,0xm99,-249v-9,3,-22,2,-31,0r-54,250v10,0,21,-2,30,0r36,-179r61,91v20,30,40,61,58,92v8,-3,20,-2,29,0r54,-250v-9,2,-20,3,-29,0r-37,177r-100,-151v-7,-11,-12,-21,-17,-30","w":280},"\u00d6":{"d":"247,-288v0,-12,-11,-24,-23,-24v-12,0,-24,12,-24,24v0,12,12,23,24,23v11,0,23,-12,23,-23xm172,-288v0,-14,-12,-24,-24,-24v-12,0,-23,10,-23,24v0,11,12,23,23,23v12,0,24,-11,24,-23xm196,-39v-43,41,-127,25,-121,-47v6,-75,27,-141,100,-144v101,-4,64,150,21,191xm172,-250v-91,0,-151,56,-151,146v0,74,49,109,122,109v93,0,153,-56,153,-145v0,-73,-51,-110,-124,-110","w":299},"\u00dc":{"d":"244,-288v0,-12,-11,-24,-23,-24v-12,0,-24,12,-24,24v0,12,12,23,24,23v11,0,23,-12,23,-23xm169,-288v0,-14,-12,-24,-24,-24v-12,0,-23,10,-23,24v0,11,12,23,23,23v12,0,24,-11,24,-23xm83,-59v0,-68,28,-128,42,-186v-19,2,-40,2,-59,0v-7,62,-32,120,-35,182v-4,88,155,82,190,30v37,-55,41,-146,65,-212v-12,3,-22,2,-33,0r-31,146v-12,44,-28,84,-86,82v-31,0,-53,-11,-53,-42","w":280},"\u00e1":{"d":"172,-233v13,-13,-8,-37,-24,-24v-20,17,-40,43,-58,62v39,-1,54,-26,82,-38xm98,-33v-8,22,-46,18,-41,-9v-1,-36,22,-44,55,-48v-4,21,-7,40,-14,57xm103,-22v1,28,44,32,63,17v-3,-13,-23,-2,-18,-30r18,-96v-2,-57,-81,-50,-119,-27v1,6,-5,17,0,20v23,-27,91,-10,64,32v-42,10,-104,8,-104,65v0,54,81,60,96,19","w":180},"\u00e0":{"d":"109,-246v-11,-25,-49,-10,-35,11v16,15,38,26,56,39r17,0xm98,-33v-8,22,-46,18,-41,-9v-1,-36,22,-44,55,-48v-4,21,-7,40,-14,57xm103,-22v1,28,44,32,63,17v-3,-13,-23,-2,-18,-30r18,-96v-2,-57,-81,-50,-119,-27v1,6,-5,17,0,20v23,-27,91,-10,64,32v-42,10,-104,8,-104,65v0,54,81,60,96,19","w":180},"\u00e2":{"d":"141,-257r-30,0r-57,62r21,0r47,-35r32,35r18,0xm98,-33v-8,22,-46,18,-41,-9v-1,-36,22,-44,55,-48v-4,21,-7,40,-14,57xm103,-22v1,28,44,32,63,17v-3,-13,-23,-2,-18,-30r18,-96v-2,-57,-81,-50,-119,-27v1,6,-5,17,0,20v23,-27,91,-10,64,32v-42,10,-104,8,-104,65v0,54,81,60,96,19","w":180},"\u00e4":{"d":"181,-224v1,-11,-12,-23,-23,-23v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,25,-12,23,-24xm106,-224v0,-13,-12,-23,-23,-23v-12,0,-24,9,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24xm98,-33v-8,22,-46,18,-41,-9v-1,-36,22,-44,55,-48v-4,21,-7,40,-14,57xm103,-22v1,28,44,32,63,17v-3,-13,-23,-2,-18,-30r18,-96v-2,-57,-81,-50,-119,-27v1,6,-5,17,0,20v23,-27,91,-10,64,32v-42,10,-104,8,-104,65v0,54,81,60,96,19","w":180},"\u00e3":{"d":"70,-206v17,-40,73,26,101,-14v6,-8,12,-17,13,-29r-14,0v-13,39,-68,-20,-97,10v-8,7,-14,18,-18,33r15,0xm98,-33v-8,22,-46,18,-41,-9v-1,-36,22,-44,55,-48v-4,21,-7,40,-14,57xm103,-22v1,28,44,32,63,17v-3,-13,-23,-2,-18,-30r18,-96v-2,-57,-81,-50,-119,-27v1,6,-5,17,0,20v23,-27,91,-10,64,32v-42,10,-104,8,-104,65v0,54,81,60,96,19","w":180},"\u00e5":{"d":"117,-211v-12,0,-25,-10,-23,-23v-2,-13,12,-23,23,-23v11,0,23,11,23,23v0,12,-11,23,-23,23xm117,-274v-25,0,-38,17,-41,40v2,24,17,41,41,41v24,0,40,-16,40,-41v0,-24,-16,-40,-40,-40xm98,-33v-8,22,-46,18,-41,-9v-1,-36,22,-44,55,-48v-4,21,-7,40,-14,57xm103,-22v1,28,44,32,63,17v-3,-13,-23,-2,-18,-30r18,-96v-2,-57,-81,-50,-119,-27v1,6,-5,17,0,20v23,-27,91,-10,64,32v-42,10,-104,8,-104,65v0,54,81,60,96,19","w":180},"\u00e7":{"d":"113,46v0,-20,-21,-28,-42,-24v7,-7,7,-19,24,-17v19,2,33,-3,43,-7v2,-10,6,-17,12,-26r-6,-4v-25,29,-89,16,-83,-34v5,-45,16,-88,61,-93v23,2,37,15,36,42v19,-1,13,-28,27,-39v-19,-10,-41,-19,-70,-19v-65,2,-106,39,-106,101v0,41,22,70,60,77r-21,29v8,9,34,-2,33,17v-1,17,-33,17,-45,8r-8,12v23,12,85,17,85,-23","w":173},"\u00e9":{"d":"172,-233v13,-13,-8,-37,-24,-24v-20,17,-40,43,-58,62v39,-1,54,-26,82,-38xm108,-159v29,-3,23,37,19,58v-20,0,-42,2,-60,0v6,-26,11,-56,41,-58xm13,-77v-5,72,77,99,135,67v0,-9,14,-24,3,-27v-32,38,-105,18,-87,-47r108,1v11,-52,-11,-95,-65,-92v-60,3,-90,40,-94,98","w":180},"\u00e8":{"d":"108,-246v-11,-26,-53,-8,-35,11v15,16,38,26,56,39r16,0xm108,-159v29,-3,23,37,19,58v-20,0,-42,2,-60,0v6,-26,11,-56,41,-58xm13,-77v-5,72,77,99,135,67v0,-9,14,-24,3,-27v-32,38,-105,18,-87,-47r108,1v11,-52,-11,-95,-65,-92v-60,3,-90,40,-94,98","w":180},"\u00ea":{"d":"141,-257r-30,0r-57,62r21,0r47,-35r32,35r18,0xm108,-159v29,-3,23,37,19,58v-20,0,-42,2,-60,0v6,-26,11,-56,41,-58xm13,-77v-5,72,77,99,135,67v0,-9,14,-24,3,-27v-32,38,-105,18,-87,-47r108,1v11,-52,-11,-95,-65,-92v-60,3,-90,40,-94,98","w":180},"\u00eb":{"d":"181,-224v1,-11,-12,-23,-23,-23v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,25,-12,23,-24xm106,-224v0,-13,-12,-23,-23,-23v-12,0,-24,9,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24xm108,-159v29,-3,23,37,19,58v-20,0,-42,2,-60,0v6,-26,11,-56,41,-58xm13,-77v-5,72,77,99,135,67v0,-9,14,-24,3,-27v-32,38,-105,18,-87,-47r108,1v11,-52,-11,-95,-65,-92v-60,3,-90,40,-94,98","w":180},"\u00ed":{"d":"132,-233v13,-13,-8,-37,-24,-24v-20,17,-40,43,-58,62v39,-1,54,-26,82,-38xm59,1v8,-55,23,-124,37,-172v-18,0,-37,2,-54,0r-26,130v-4,16,-8,30,-12,42v18,0,38,-2,55,0","w":100},"\u00ec":{"d":"69,-246v-11,-25,-49,-10,-35,11v16,15,38,26,56,39r17,0xm59,1v8,-55,23,-124,37,-172v-18,0,-37,2,-54,0r-26,130v-4,16,-8,30,-12,42v18,0,38,-2,55,0","w":100},"\u00ee":{"d":"101,-257r-30,0r-57,62r21,0r47,-35r32,35r18,0xm59,1v8,-55,23,-124,37,-172v-18,0,-37,2,-54,0r-26,130v-4,16,-8,30,-12,42v18,0,38,-2,55,0","w":100},"\u00ef":{"d":"141,-224v1,-11,-12,-23,-23,-23v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,25,-12,23,-24xm66,-224v0,-13,-12,-23,-23,-23v-12,0,-24,9,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24xm59,1v8,-55,23,-124,37,-172v-18,0,-37,2,-54,0r-26,130v-4,16,-8,30,-12,42v18,0,38,-2,55,0","w":100},"\u00f1":{"d":"80,-206v17,-40,73,26,101,-14v6,-8,12,-17,13,-29r-14,0v-13,39,-68,-20,-97,10v-8,7,-13,18,-17,33r14,0xm121,-148v51,19,-9,108,-12,149v18,0,36,-2,53,0r28,-138v3,-39,-52,-47,-81,-29v-10,6,-19,14,-28,25v3,-11,4,-20,8,-30v-16,0,-34,2,-49,0r-29,137v-3,12,-7,24,-10,35v17,0,36,-2,52,0v12,-57,12,-138,68,-149"},"\u00f3":{"d":"182,-233v13,-14,-8,-38,-24,-24v-20,17,-40,43,-58,62v39,-1,54,-26,82,-38xm86,-8v-23,0,-29,-21,-28,-44v3,-49,11,-101,56,-109v23,1,28,21,28,44v0,49,-10,109,-56,109xm113,-175v-64,0,-104,41,-104,105v0,48,28,75,76,75v64,0,107,-40,107,-103v0,-49,-28,-77,-79,-77"},"\u00f2":{"d":"120,-246v-11,-25,-50,-11,-36,11v17,14,38,26,56,39r17,0xm86,-8v-23,0,-29,-21,-28,-44v3,-49,11,-101,56,-109v23,1,28,21,28,44v0,49,-10,109,-56,109xm113,-175v-64,0,-104,41,-104,105v0,48,28,75,76,75v64,0,107,-40,107,-103v0,-49,-28,-77,-79,-77"},"\u00f4":{"d":"151,-257r-30,0r-57,62r21,0r47,-35r32,35r18,0xm86,-8v-23,0,-29,-21,-28,-44v3,-49,11,-101,56,-109v23,1,28,21,28,44v0,49,-10,109,-56,109xm113,-175v-64,0,-104,41,-104,105v0,48,28,75,76,75v64,0,107,-40,107,-103v0,-49,-28,-77,-79,-77"},"\u00f6":{"d":"188,-224v0,-11,-12,-23,-23,-23v-12,0,-24,11,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24xm113,-224v0,-14,-12,-23,-24,-23v-11,0,-23,10,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24xm86,-8v-23,0,-29,-21,-28,-44v3,-49,11,-101,56,-109v23,1,28,21,28,44v0,49,-10,109,-56,109xm113,-175v-64,0,-104,41,-104,105v0,48,28,75,76,75v64,0,107,-40,107,-103v0,-49,-28,-77,-79,-77"},"\u00f5":{"d":"80,-206v17,-40,73,26,101,-14v6,-8,12,-17,13,-29r-14,0v-13,39,-68,-20,-97,10v-8,7,-13,18,-17,33r14,0xm86,-8v-23,0,-29,-21,-28,-44v3,-49,11,-101,56,-109v23,1,28,21,28,44v0,49,-10,109,-56,109xm113,-175v-64,0,-104,41,-104,105v0,48,28,75,76,75v64,0,107,-40,107,-103v0,-49,-28,-77,-79,-77"},"\u00fa":{"d":"182,-233v13,-14,-8,-38,-24,-24v-20,17,-40,43,-58,62v39,-1,54,-26,82,-38xm39,-171v-5,48,-23,88,-27,140v-4,49,84,42,102,13v3,-4,6,-6,8,-9v-2,13,-3,18,-8,28v17,0,33,-2,49,0r37,-172v-17,0,-35,2,-51,0v-19,54,-7,139,-68,151v-13,0,-25,-10,-21,-25r33,-126v-18,0,-37,2,-54,0"},"\u00f9":{"d":"118,-246v-11,-26,-53,-8,-35,11v15,16,38,26,56,39r16,0xm39,-171v-5,48,-23,88,-27,140v-4,49,84,42,102,13v3,-4,6,-6,8,-9v-2,13,-3,18,-8,28v17,0,33,-2,49,0r37,-172v-17,0,-35,2,-51,0v-19,54,-7,139,-68,151v-13,0,-25,-10,-21,-25r33,-126v-18,0,-37,2,-54,0"},"\u00fb":{"d":"151,-257r-30,0r-57,62r21,0r47,-35r32,35r18,0xm39,-171v-5,48,-23,88,-27,140v-4,49,84,42,102,13v3,-4,6,-6,8,-9v-2,13,-3,18,-8,28v17,0,33,-2,49,0r37,-172v-17,0,-35,2,-51,0v-19,54,-7,139,-68,151v-13,0,-25,-10,-21,-25r33,-126v-18,0,-37,2,-54,0"},"\u00fc":{"d":"188,-224v0,-11,-12,-23,-23,-23v-12,0,-24,11,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24xm113,-224v0,-14,-12,-23,-24,-23v-11,0,-23,10,-23,23v0,12,11,24,23,24v12,0,24,-12,24,-24xm39,-171v-5,48,-23,88,-27,140v-4,49,84,42,102,13v3,-4,6,-6,8,-9v-2,13,-3,18,-8,28v17,0,33,-2,49,0r37,-172v-17,0,-35,2,-51,0v-19,54,-7,139,-68,151v-13,0,-25,-10,-21,-25r33,-126v-18,0,-37,2,-54,0"},"\u00b0":{"d":"56,-181v-1,-17,14,-31,30,-31v16,0,32,14,31,31v-2,17,-12,30,-31,30v-16,1,-30,-15,-30,-30xm143,-181v0,-35,-22,-57,-57,-57v-35,0,-57,23,-57,57v0,34,23,57,57,57v34,0,57,-22,57,-57","w":144},"\u00a2":{"d":"104,-26v-39,-34,-15,-131,35,-133xm155,-158v14,6,24,17,23,38r8,0v5,-17,10,-26,17,-39v-15,-9,-27,-12,-44,-15r12,-41r-17,-5v-4,15,-6,30,-11,44v-66,-1,-110,36,-110,98v0,44,24,73,63,79r-13,45r17,4r12,-47v34,3,57,-7,62,-35v-15,-6,-29,24,-56,12"},"\u00a3":{"d":"151,-229v23,-1,30,17,28,40r5,0v9,-15,14,-21,23,-29v-15,-19,-32,-27,-63,-27v-65,0,-88,47,-86,116v-9,0,-20,1,-28,-1r-4,22v11,-1,20,-3,32,-2v0,40,-6,70,-43,73v0,16,-3,27,-10,38r176,0v-2,-20,4,-32,9,-46r-131,5v26,-14,41,-34,46,-70r62,2v1,-9,2,-13,4,-23r-63,2v6,-42,-2,-97,43,-100"},"\u00a7":{"d":"72,-151v21,21,49,37,70,54v17,14,4,38,-9,44v-22,-26,-66,-34,-79,-71v1,-13,9,-19,18,-27xm120,-245v-52,-4,-84,47,-56,86v-19,10,-38,26,-38,54v0,61,87,51,87,105v0,18,-15,31,-36,30v-30,0,-46,-20,-54,-44r-5,0v-3,15,-6,21,-11,34v34,41,145,40,145,-30v-1,-13,-6,-23,-11,-33v35,-13,53,-79,11,-102v-20,-19,-54,-25,-63,-56v4,-42,78,-31,78,7r7,0v2,-11,6,-21,11,-30v-16,-15,-37,-19,-65,-21"},"\u00b6":{"d":"9,-141v0,37,22,59,58,61r-33,155r30,0r63,-295r41,0r-63,295r30,0r63,-295r19,0r6,-25r-114,1v-59,6,-100,42,-100,103"},"\u00df":{"d":"158,-40v0,35,-55,32,-63,5r-4,0v-3,13,-7,16,-13,31v50,26,112,-10,112,-65v0,-46,-73,-52,-38,-94v15,-19,40,-34,40,-65v0,-52,-87,-51,-114,-22v-54,59,-46,176,-78,251r56,0v19,-78,29,-166,53,-238v9,-27,60,-25,58,11v-4,55,-59,60,-59,110v0,39,43,43,50,76"},"\u00ae":{"d":"77,-216v18,-4,21,16,13,24v-3,2,-7,3,-13,3r0,-27xm112,-205v1,-21,-29,-17,-52,-17r-1,72v7,0,13,-2,19,0v1,-11,-3,-25,0,-34r19,34v7,0,15,-2,21,0r-24,-36v11,-2,17,-8,18,-19xm85,-133v-32,0,-52,-21,-52,-53v0,-32,21,-52,52,-52v31,0,51,20,51,52v0,31,-20,53,-51,53xm85,-122v39,0,64,-25,64,-64v0,-38,-26,-64,-64,-64v-39,0,-65,25,-65,64v0,39,26,64,65,64","w":131},"\u00a9":{"d":"69,-121v0,63,64,84,115,62v0,-6,8,-16,2,-19v-29,31,-91,8,-84,-43v-8,-50,53,-80,81,-43v6,-3,4,-14,7,-20v-52,-25,-121,0,-121,63xm140,-10v-67,0,-112,-44,-112,-112v0,-68,45,-112,112,-112v67,0,112,45,112,112v0,67,-45,112,-112,112xm140,-250v-77,0,-128,51,-128,128v0,77,51,127,128,127v77,0,127,-50,127,-127v0,-77,-50,-128,-127,-128","w":271},"\u00b4":{"d":"132,-233v13,-13,-8,-37,-24,-24v-20,17,-40,43,-58,62v39,-1,54,-26,82,-38","w":100},"\u00a8":{"d":"141,-224v1,-11,-12,-23,-23,-23v-11,0,-23,12,-23,23v0,12,11,24,23,24v12,0,25,-12,23,-24xm66,-224v0,-13,-12,-23,-23,-23v-12,0,-24,9,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24","w":100},"\u00c6":{"d":"103,-106v32,-40,57,-82,94,-116r-23,116r-71,0xm330,-217v0,-13,2,-18,7,-28r-157,0r-192,246v11,-1,24,-1,35,0r64,-86r83,0r-22,86r137,0v0,-10,2,-15,6,-26r-80,2v3,-33,10,-65,17,-95r79,3v0,-13,0,-17,5,-28r-79,2r19,-80v26,1,54,0,78,4","w":320},"\u00d8":{"d":"79,-57v-17,-88,30,-197,127,-166v9,3,17,11,24,20xm238,-188v14,89,-32,196,-129,168v-9,-3,-16,-11,-23,-21xm143,5v93,0,153,-57,153,-145v0,-33,-11,-55,-29,-75r31,-29r-13,-12r-31,30v-22,-14,-49,-24,-82,-24v-91,0,-151,56,-151,146v0,34,10,55,28,75v-9,9,-19,19,-30,28v5,2,10,6,13,11r30,-28v22,17,46,23,81,23","w":299},"\u00b1":{"d":"15,-25r0,29r184,0r0,-29r-184,0xm91,-98r0,59r32,0r0,-59r76,0r0,-30r-76,0r0,-60r-32,0r0,60r-76,0r0,30r76,0","w":213},"\u00a5":{"d":"112,1r8,-46r53,2v0,-14,2,-15,6,-25r-54,1r6,-29v19,0,37,0,54,2v0,-12,1,-19,5,-27v-13,2,-33,2,-47,3r90,-119v-10,3,-27,2,-38,0v-20,38,-49,75,-74,110r-30,-110v-16,3,-41,3,-58,0r40,119r-43,-2v0,13,-2,16,-6,25r54,-1r-6,29r-54,-1v-1,12,-2,15,-5,25r55,-2r-11,46v18,0,39,-2,55,0"},"\u00b5":{"d":"81,-20v-30,0,-19,-37,-13,-60r24,-91v-18,0,-37,2,-53,0r-53,264v16,-2,33,-2,48,0r17,-89v34,4,54,-10,71,-31r-7,28v16,0,34,-2,49,0r36,-172v-18,0,-35,2,-52,0v-13,58,-9,138,-67,151"},"\u00aa":{"d":"84,-187v1,19,-19,52,-28,25v-1,-19,12,-23,28,-25xm84,-200v-27,4,-62,5,-62,38v0,32,45,38,59,15v3,16,29,15,39,6v1,-14,-14,2,-11,-17v6,-31,26,-84,-23,-81v-14,0,-28,3,-40,9v2,7,-5,16,3,15v10,-11,50,-8,35,15","w":118},"\u00ba":{"d":"76,-145v-13,0,-15,-11,-16,-23v4,-23,6,-57,31,-59v12,-1,15,8,15,18v-1,27,-6,59,-30,64xm73,-133v38,0,66,-23,66,-61v0,-29,-17,-45,-48,-45v-69,0,-91,106,-18,106","w":131},"\u00e6":{"d":"201,-159v33,-4,31,34,26,59r-66,0v6,-26,11,-56,40,-59xm46,-138v25,-26,97,-11,67,32v-43,10,-106,8,-106,65v0,28,19,46,47,46v37,0,53,-14,66,-40v11,40,88,53,128,27v1,-9,13,-23,3,-27v-35,37,-112,19,-93,-49r114,1v12,-53,-13,-94,-69,-92v-21,0,-38,6,-51,18v-22,-28,-73,-19,-104,-1xm100,-33v-10,21,-43,19,-43,-9v0,-36,23,-44,58,-48v-4,20,-8,41,-15,57","w":280},"\u00f8":{"d":"142,-126v-2,54,-9,109,-56,118v-12,0,-20,-8,-24,-17xm58,-43v2,-54,10,-108,56,-118v12,0,20,8,24,17xm45,-4v95,46,193,-76,123,-153v6,-10,14,-16,21,-24v-6,-3,-7,-8,-13,-11r-20,27v-72,-30,-149,18,-147,95v0,24,7,43,23,57v-7,11,-15,18,-22,26v5,3,9,6,13,10v6,-10,14,-20,22,-27"},"\u00bf":{"d":"70,-145v0,16,13,29,29,29v15,0,28,-14,28,-29v0,-15,-14,-29,-28,-29v-15,0,-29,13,-29,29xm26,-23v-53,34,-13,119,57,98v4,-1,10,-2,16,-4r5,-23v-14,1,-15,13,-34,13v-19,0,-26,-11,-29,-25v8,-43,75,-36,75,-87v0,-34,-32,-52,-66,-45v-2,8,-6,9,-4,15v18,-14,50,12,26,28","w":159},"\u00a1":{"d":"44,-145v0,16,13,29,29,29v16,0,29,-14,29,-29v0,-15,-14,-29,-29,-29v-15,0,-29,13,-29,29xm33,76v21,0,29,-14,30,-32r6,-135r-9,0r-56,141v0,16,12,26,29,26","w":119},"\u00ac":{"d":"15,-144r0,31r152,0r0,74r32,0r0,-105r-184,0","w":213},"\u00ab":{"d":"118,-23v8,-6,11,-6,24,-11r-27,-62r44,-53v-8,-4,-14,-11,-20,-16r-52,66xm61,-23v8,-6,12,-6,24,-11r-26,-62r43,-53v-8,-4,-14,-11,-20,-16r-52,66","w":180},"\u00bb":{"d":"65,-165r-24,11v10,21,19,38,26,61v-15,17,-28,37,-44,53v9,4,15,11,21,17r52,-67xm122,-165r-24,11v10,21,19,38,26,61r-44,53v9,4,15,11,21,17r52,-67","w":180},"\u00a0":{"w":100},"\u00c0":{"d":"149,-311v-11,-26,-53,-8,-35,11v15,16,38,26,56,39r16,0xm129,-179r18,84r-69,0xm151,-73v5,23,9,50,11,74r60,0r-57,-249v-7,2,-20,3,-27,0r-144,249v10,-1,24,-1,32,0r40,-74r85,0","w":240},"\u00c3":{"d":"206,-314v-14,40,-69,-20,-98,11v-7,8,-13,18,-17,33r14,0v21,-44,103,44,115,-44r-14,0xm129,-179r18,84r-69,0xm151,-73v5,23,9,50,11,74r60,0r-57,-249v-7,2,-20,3,-27,0r-144,249v10,-1,24,-1,32,0r40,-74r85,0","w":240},"\u00d5":{"d":"241,-314v-14,41,-68,-20,-97,11v-7,8,-14,18,-18,33v20,6,16,-15,33,-16v37,17,93,25,96,-28r-14,0xm196,-39v-43,41,-127,25,-121,-47v6,-75,27,-141,100,-144v101,-4,64,150,21,191xm172,-250v-91,0,-151,56,-151,146v0,74,49,109,122,109v93,0,153,-56,153,-145v0,-73,-51,-110,-124,-110","w":299},"\u00f7":{"d":"130,-157v0,-14,-11,-23,-23,-24v-12,-1,-25,12,-23,24v-2,12,12,23,23,23v11,0,23,-12,23,-23xm130,-25v0,-13,-11,-23,-23,-23v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,23,-12,23,-24xm15,-106r0,30r184,0r0,-30r-184,0","w":213},"\u00ff":{"d":"181,-224v1,-11,-12,-23,-23,-23v-11,0,-25,11,-23,23v-2,12,11,24,23,24v12,0,25,-12,23,-24xm106,-224v0,-13,-12,-23,-23,-23v-12,0,-24,9,-24,23v0,12,12,24,24,24v12,0,23,-12,23,-24xm93,-54r-16,-117v-16,0,-35,2,-50,0r30,171r-63,93v10,-3,23,-2,33,0r161,-264v-10,0,-20,2,-29,0","w":180},"\u00b7":{"d":"84,-107v0,-15,-13,-29,-29,-29v-16,0,-29,13,-29,29v0,16,14,29,29,29v15,0,29,-14,29,-29","w":100},"\u00c2":{"d":"177,-322r-30,0r-57,62r21,0r46,-35r33,35r17,0xm129,-179r18,84r-69,0xm151,-73v5,23,9,50,11,74r60,0r-57,-249v-7,2,-20,3,-27,0r-144,249v10,-1,24,-1,32,0r40,-74r85,0","w":240},"\u00ca":{"d":"163,-322r-30,0r-57,62v36,2,44,-24,67,-35r33,35r17,0xm199,-217v-1,-13,1,-18,6,-28r-141,0v-11,85,-31,170,-51,246r141,0v-1,-11,2,-16,6,-26r-84,2r17,-95r82,3v1,-12,1,-17,6,-28r-83,2r19,-80","w":186},"\u00c1":{"d":"202,-298v13,-13,-9,-39,-23,-24r-59,62v39,0,56,-25,82,-38xm129,-179r18,84r-69,0xm151,-73v5,23,9,50,11,74r60,0r-57,-249v-7,2,-20,3,-27,0r-144,249v10,-1,24,-1,32,0r40,-74r85,0","w":240},"\u00cb":{"d":"201,-288v0,-12,-11,-24,-23,-24v-12,0,-24,12,-24,24v0,12,12,23,24,23v11,0,23,-12,23,-23xm126,-288v0,-14,-11,-24,-23,-24v-12,0,-24,10,-24,24v0,12,12,23,24,23v11,0,23,-12,23,-23xm199,-217v-1,-13,1,-18,6,-28r-141,0v-11,85,-31,170,-51,246r141,0v-1,-11,2,-16,6,-26r-84,2r17,-95r82,3v1,-12,1,-17,6,-28r-83,2r19,-80","w":186},"\u00c8":{"d":"126,-311v-11,-26,-53,-8,-35,11v15,16,38,26,56,39r16,0xm199,-217v-1,-13,1,-18,6,-28r-141,0v-11,85,-31,170,-51,246r141,0v-1,-11,2,-16,6,-26r-84,2r17,-95r82,3v1,-12,1,-17,6,-28r-83,2r19,-80","w":186},"\u00cd":{"d":"154,-298v13,-7,1,-29,-13,-27v-30,11,-45,46,-68,65v38,-1,56,-24,81,-38xm66,-245v-14,87,-34,172,-56,246r60,0v12,-82,33,-172,56,-246v-20,2,-40,2,-60,0","w":119},"\u00ce":{"d":"124,-322r-30,0r-57,62r21,0r46,-35r33,35r17,0xm66,-245v-14,87,-34,172,-56,246r60,0v12,-82,33,-172,56,-246v-20,2,-40,2,-60,0","w":119},"\u00cf":{"d":"164,-288v0,-12,-11,-24,-23,-24v-12,0,-24,12,-24,24v0,12,12,23,24,23v11,0,23,-12,23,-23xm89,-288v0,-14,-11,-24,-23,-24v-12,0,-24,10,-24,24v0,12,12,23,24,23v11,0,23,-12,23,-23xm66,-245v-14,87,-34,172,-56,246r60,0v12,-82,33,-172,56,-246v-20,2,-40,2,-60,0","w":119},"\u00cc":{"d":"90,-311v-11,-25,-49,-10,-35,11v16,15,38,26,56,39r16,0xm66,-245v-14,87,-34,172,-56,246r60,0v12,-82,33,-172,56,-246v-20,2,-40,2,-60,0","w":119},"\u00d3":{"d":"242,-298v12,-7,1,-30,-12,-27v-32,8,-45,46,-69,65v38,-1,57,-23,81,-38xm196,-39v-43,41,-127,25,-121,-47v6,-75,27,-141,100,-144v101,-4,64,150,21,191xm172,-250v-91,0,-151,56,-151,146v0,74,49,109,122,109v93,0,153,-56,153,-145v0,-73,-51,-110,-124,-110","w":299},"\u00d4":{"d":"210,-322r-30,0r-57,62r21,0r47,-35r32,35r18,0xm196,-39v-43,41,-127,25,-121,-47v6,-75,27,-141,100,-144v101,-4,64,150,21,191xm172,-250v-91,0,-151,56,-151,146v0,74,49,109,122,109v93,0,153,-56,153,-145v0,-73,-51,-110,-124,-110","w":299},"\u00d2":{"d":"180,-311v-11,-25,-49,-10,-35,11v16,15,38,26,56,39r16,0xm196,-39v-43,41,-127,25,-121,-47v6,-75,27,-141,100,-144v101,-4,64,150,21,191xm172,-250v-91,0,-151,56,-151,146v0,74,49,109,122,109v93,0,153,-56,153,-145v0,-73,-51,-110,-124,-110","w":299},"\u00da":{"d":"243,-298v13,-7,1,-29,-13,-27v-30,11,-45,46,-68,65v38,-1,56,-24,81,-38xm83,-59v0,-68,28,-128,42,-186v-19,2,-40,2,-59,0v-7,62,-32,120,-35,182v-4,88,155,82,190,30v37,-55,41,-146,65,-212v-12,3,-22,2,-33,0r-31,146v-12,44,-28,84,-86,82v-31,0,-53,-11,-53,-42","w":280},"\u00db":{"d":"204,-322r-30,0r-57,62r21,0r46,-35r33,35r17,0xm83,-59v0,-68,28,-128,42,-186v-19,2,-40,2,-59,0v-7,62,-32,120,-35,182v-4,88,155,82,190,30v37,-55,41,-146,65,-212v-12,3,-22,2,-33,0r-31,146v-12,44,-28,84,-86,82v-31,0,-53,-11,-53,-42","w":280},"\u00d9":{"d":"160,-323v-16,-8,-34,7,-23,23v16,15,38,26,56,39r16,0v-16,-20,-31,-45,-49,-62xm83,-59v0,-68,28,-128,42,-186v-19,2,-40,2,-59,0v-7,62,-32,120,-35,182v-4,88,155,82,190,30v37,-55,41,-146,65,-212v-12,3,-22,2,-33,0r-31,146v-12,44,-28,84,-86,82v-31,0,-53,-11,-53,-42","w":280},"\u00af":{"d":"141,-235r-117,0r-6,25r117,0","w":100},"\u00b8":{"d":"30,78v46,8,63,-58,13,-57r-10,1r16,-22r-16,0r-23,32v8,9,34,-3,32,17v-1,18,-29,16,-43,8r-8,12v8,2,23,10,39,9","w":100},"\u00a4":{"d":"58,-116v0,-30,20,-49,49,-49v28,0,49,19,49,49v0,29,-19,48,-49,48v-30,0,-49,-19,-49,-48xm44,-161v-19,21,-19,68,0,89r-24,23r19,19r24,-24v25,18,63,19,88,0r23,24r19,-19r-23,-23v18,-22,18,-67,0,-89r23,-23r-19,-19r-23,24v-21,-19,-67,-18,-89,-1r-23,-23r-19,19"},"\u00b9":{"d":"111,-243v-21,11,-43,19,-70,25v-1,9,6,11,9,17v9,-2,18,-6,24,-9v-7,38,-17,76,-27,116v13,0,26,-2,38,0v8,-49,20,-101,33,-146","w":127},"\u00bc":{"d":"111,-243v-21,11,-43,19,-70,25v-1,9,6,11,9,17v9,-2,18,-6,24,-9v-7,38,-17,76,-27,116v13,0,26,-2,38,0v8,-49,20,-101,33,-146xm247,-247r-19,0r-161,260r20,0xm251,-59r-39,0v19,-17,34,-38,52,-56xm272,0v0,-10,4,-23,6,-32r20,1v1,-14,2,-19,7,-30v-8,2,-13,2,-22,2r20,-85v-10,1,-20,0,-30,0r-82,87r-6,26v20,0,42,-3,61,-1r-9,32r35,0","w":314},"\u00bd":{"d":"111,-243v-21,11,-43,19,-70,25v-1,9,6,11,9,17v9,-2,18,-6,24,-9v-7,38,-17,76,-27,116v13,0,26,-2,38,0v8,-49,20,-101,33,-146xm226,-103v-3,-30,43,-37,39,-5v-6,49,-53,71,-84,98r0,10r99,0r7,-29r-60,2v27,-24,71,-33,75,-78v4,-48,-82,-48,-98,-16v9,5,10,19,22,18xm247,-247r-19,0r-161,260r20,0","w":314},"\u00d0":{"d":"118,-223v62,-7,102,16,101,75v-1,89,-49,138,-144,129v5,-34,13,-66,19,-98r60,2v1,-11,0,-14,4,-25r-60,1xm13,1v137,5,262,-6,262,-139v0,-90,-73,-118,-171,-105r-37,-2v-4,38,-13,72,-20,106r-30,-1v0,10,-2,18,-5,25r30,-2","w":280},"\u00a6":{"d":"24,-243r0,126r32,0r0,-126r-32,0xm24,-63r0,125r32,0r0,-125r-32,0","w":79},"\u00fe":{"d":"92,-17v-17,3,-29,-17,-28,-34v3,-44,11,-90,50,-99v18,0,29,14,27,33v-3,43,-9,94,-49,100xm107,5v89,4,124,-175,24,-181v-27,-2,-40,14,-52,28r30,-122v-18,0,-36,2,-53,0r-72,363v15,-2,34,-3,48,0r23,-113v10,15,29,24,52,25"},"\u00fd":{"d":"172,-233v13,-13,-8,-37,-24,-24v-20,17,-40,43,-58,62v39,-1,54,-26,82,-38xm93,-54r-16,-117v-16,0,-35,2,-50,0r30,171r-63,93v10,-3,23,-2,33,0r161,-264v-10,0,-20,2,-29,0","w":180},"\u00f0":{"d":"86,-8v-23,0,-29,-21,-28,-44v3,-48,10,-108,56,-108v23,0,29,20,28,43v-3,49,-10,109,-56,109xm85,5v64,0,105,-41,107,-103v2,-64,-30,-94,-62,-128r50,-15r-6,-15r-53,19r-43,-37r-28,12r36,36v-16,6,-37,11,-54,16v4,5,6,7,8,13r55,-18v14,13,22,27,33,42v-70,-7,-119,36,-119,103v0,48,28,75,76,75"},"\u00d7":{"d":"85,-91r-66,66r22,22r66,-66r66,66r22,-22r-66,-66r66,-66r-22,-23r-66,67r-66,-67r-22,23","w":213},"\u00b2":{"d":"78,-225v36,10,5,59,-10,72v-17,16,-38,33,-57,48r0,11r99,0v1,-14,3,-19,7,-31v-17,2,-42,4,-60,2v28,-23,71,-33,75,-77v5,-48,-82,-48,-98,-16v8,5,11,20,22,17v0,-16,8,-26,22,-26","w":127},"\u00dd":{"d":"204,-298v12,-7,1,-30,-12,-27v-32,8,-45,46,-69,65v38,-1,57,-23,81,-38xm131,-128r-31,-117v-20,2,-41,3,-60,0r49,144v-5,34,-14,71,-22,102v18,0,39,-2,56,0v12,-47,12,-100,39,-133v28,-35,59,-80,87,-113v-13,2,-26,2,-38,0","w":219},"\u00b3":{"d":"84,-142v0,32,-42,51,-47,17v0,-5,0,-9,-6,-8v-6,8,-11,14,-18,20v21,30,109,31,107,-21v-1,-15,-10,-27,-25,-32v20,-3,37,-12,38,-35v2,-42,-71,-48,-89,-19v8,5,8,16,21,17v-2,-21,29,-33,32,-10v4,26,-10,40,-39,37r-3,15v16,-4,29,4,29,19","w":127},"\u00be":{"d":"84,-142v0,32,-42,51,-47,17v0,-5,0,-9,-6,-8v-6,8,-11,14,-18,20v21,30,109,31,107,-21v-1,-15,-10,-27,-25,-32v20,-3,37,-12,38,-35v2,-42,-71,-48,-89,-19v8,5,8,16,21,17v-2,-21,29,-33,32,-10v4,26,-10,40,-39,37r-3,15v16,-4,29,4,29,19xm251,-247r-20,0r-160,260r19,0xm251,-59r-39,0v19,-17,34,-38,52,-56xm272,0v0,-10,4,-23,6,-32r20,1v1,-14,2,-19,7,-30v-8,2,-13,2,-22,2r20,-85v-10,1,-20,0,-30,0r-82,87r-6,26v20,0,42,-3,61,-1r-9,32r35,0","w":314},"\u00de":{"d":"105,-182v29,-2,44,8,44,36v-1,41,-21,70,-65,64xm80,-64v68,6,121,-12,122,-77v1,-53,-40,-66,-92,-61v2,-15,6,-30,10,-43v-18,2,-37,2,-55,0r-31,154v-7,31,-16,62,-24,92r57,0","w":198}}});
;

