/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/
jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(B,C,A,E,D){return jQuery.easing[jQuery.easing.def](B,C,A,E,D)},easeInQuad:function(B,C,A,E,D){return E*(C/=D)*C+A},easeOutQuad:function(B,C,A,E,D){return -E*(C/=D)*(C-2)+A},easeInOutQuad:function(B,C,A,E,D){if((C/=D/2)<1){return E/2*C*C+A}return -E/2*((--C)*(C-2)-1)+A},easeInCubic:function(B,C,A,E,D){return E*(C/=D)*C*C+A},easeOutCubic:function(B,C,A,E,D){return E*((C=C/D-1)*C*C+1)+A},easeInOutCubic:function(B,C,A,E,D){if((C/=D/2)<1){return E/2*C*C*C+A}return E/2*((C-=2)*C*C+2)+A},easeInQuart:function(B,C,A,E,D){return E*(C/=D)*C*C*C+A},easeOutQuart:function(B,C,A,E,D){return -E*((C=C/D-1)*C*C*C-1)+A},easeInOutQuart:function(B,C,A,E,D){if((C/=D/2)<1){return E/2*C*C*C*C+A}return -E/2*((C-=2)*C*C*C-2)+A},easeInQuint:function(B,C,A,E,D){return E*(C/=D)*C*C*C*C+A},easeOutQuint:function(B,C,A,E,D){return E*((C=C/D-1)*C*C*C*C+1)+A},easeInOutQuint:function(B,C,A,E,D){if((C/=D/2)<1){return E/2*C*C*C*C*C+A}return E/2*((C-=2)*C*C*C*C+2)+A},easeInSine:function(B,C,A,E,D){return -E*Math.cos(C/D*(Math.PI/2))+E+A},easeOutSine:function(B,C,A,E,D){return E*Math.sin(C/D*(Math.PI/2))+A},easeInOutSine:function(B,C,A,E,D){return -E/2*(Math.cos(Math.PI*C/D)-1)+A},easeInExpo:function(B,C,A,E,D){return(C==0)?A:E*Math.pow(2,10*(C/D-1))+A},easeOutExpo:function(B,C,A,E,D){return(C==D)?A+E:E*(-Math.pow(2,-10*C/D)+1)+A},easeInOutExpo:function(B,C,A,E,D){if(C==0){return A}if(C==D){return A+E}if((C/=D/2)<1){return E/2*Math.pow(2,10*(C-1))+A}return E/2*(-Math.pow(2,-10*--C)+2)+A},easeInCirc:function(B,C,A,E,D){return -E*(Math.sqrt(1-(C/=D)*C)-1)+A},easeOutCirc:function(B,C,A,E,D){return E*Math.sqrt(1-(C=C/D-1)*C)+A},easeInOutCirc:function(B,C,A,E,D){if((C/=D/2)<1){return -E/2*(Math.sqrt(1-C*C)-1)+A}return E/2*(Math.sqrt(1-(C-=2)*C)+1)+A},easeInElastic:function(B,D,A,H,G){var E=1.70158;var F=0;var C=H;if(D==0){return A}if((D/=G)==1){return A+H}if(!F){F=G*0.3}if(C<Math.abs(H)){C=H;var E=F/4}else{var E=F/(2*Math.PI)*Math.asin(H/C)}return -(C*Math.pow(2,10*(D-=1))*Math.sin((D*G-E)*(2*Math.PI)/F))+A},easeOutElastic:function(B,D,A,H,G){var E=1.70158;var F=0;var C=H;if(D==0){return A}if((D/=G)==1){return A+H}if(!F){F=G*0.3}if(C<Math.abs(H)){C=H;var E=F/4}else{var E=F/(2*Math.PI)*Math.asin(H/C)}return C*Math.pow(2,-10*D)*Math.sin((D*G-E)*(2*Math.PI)/F)+H+A},easeInOutElastic:function(B,D,A,H,G){var E=1.70158;var F=0;var C=H;if(D==0){return A}if((D/=G/2)==2){return A+H}if(!F){F=G*(0.3*1.5)}if(C<Math.abs(H)){C=H;var E=F/4}else{var E=F/(2*Math.PI)*Math.asin(H/C)}if(D<1){return -0.5*(C*Math.pow(2,10*(D-=1))*Math.sin((D*G-E)*(2*Math.PI)/F))+A}return C*Math.pow(2,-10*(D-=1))*Math.sin((D*G-E)*(2*Math.PI)/F)*0.5+H+A},easeInBack:function(B,C,A,F,E,D){if(D==undefined){D=1.70158}return F*(C/=E)*C*((D+1)*C-D)+A},easeOutBack:function(B,C,A,F,E,D){if(D==undefined){D=1.70158}return F*((C=C/E-1)*C*((D+1)*C+D)+1)+A},easeInOutBack:function(B,C,A,F,E,D){if(D==undefined){D=1.70158}if((C/=E/2)<1){return F/2*(C*C*(((D*=(1.525))+1)*C-D))+A}return F/2*((C-=2)*C*(((D*=(1.525))+1)*C+D)+2)+A},easeInBounce:function(B,C,A,E,D){return E-jQuery.easing.easeOutBounce(B,D-C,0,E,D)+A},easeOutBounce:function(B,C,A,E,D){if((C/=D)<(1/2.75)){return E*(7.5625*C*C)+A}else{if(C<(2/2.75)){return E*(7.5625*(C-=(1.5/2.75))*C+0.75)+A}else{if(C<(2.5/2.75)){return E*(7.5625*(C-=(2.25/2.75))*C+0.9375)+A}else{return E*(7.5625*(C-=(2.625/2.75))*C+0.984375)+A}}}},easeInOutBounce:function(B,C,A,E,D){if(C<D/2){return jQuery.easing.easeInBounce(B,C*2,0,E,D)*0.5+A}return jQuery.easing.easeOutBounce(B,C*2-D,0,E,D)*0.5+E*0.5+A}});
/**
 * Flash (http://jquery.lukelutman.com/plugins/flash)
 * A jQuery plugin for embedding Flash movies.
 * 
 * Version 1.0
 * November 9th, 2006
 *
 * Copyright (c) 2006 Luke Lutman (http://www.lukelutman.com)
 * Dual licensed under the MIT and GPL licenses.
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.opensource.org/licenses/gpl-license.php
 */
(function(){var b;b=jQuery.fn.flash=function(g,f,d,i){var h=d||b.replace;f=b.copy(b.pluginOptions,f);if(!b.hasFlash(f.version)){if(f.expressInstall&&b.hasFlash(6,0,65)){var e={flashvars:{MMredirectURL:location,MMplayerType:"PlugIn",MMdoctitle:jQuery("title").text()}}}else{if(f.update){h=i||b.update}else{return this}}}g=b.copy(b.htmlOptions,e,g);return this.each(function(){h.call(this,b.copy(g))})};b.copy=function(){var f={},e={};for(var g=0;g<arguments.length;g++){var d=arguments[g];if(d==undefined){continue}jQuery.extend(f,d);if(d.flashvars==undefined){continue}jQuery.extend(e,d.flashvars)}f.flashvars=e;return f};b.hasFlash=function(){if(/hasFlash\=true/.test(location)){return true}if(/hasFlash\=false/.test(location)){return false}var e=b.hasFlash.playerVersion().match(/\d+/g);var f=String([arguments[0],arguments[1],arguments[2]]).match(/\d+/g)||String(b.pluginOptions.version).match(/\d+/g);for(var d=0;d<3;d++){e[d]=parseInt(e[d]||0);f[d]=parseInt(f[d]||0);if(e[d]<f[d]){return false}if(e[d]>f[d]){return true}}return true};b.hasFlash.playerVersion=function(){try{try{var d=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");try{d.AllowScriptAccess="always"}catch(f){return"6,0,0"}}catch(f){}return new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version").replace(/\D+/g,",").match(/^,?(.+),?$/)[1]}catch(f){try{if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){return(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g,",").match(/^,?(.+),?$/)[1]}}catch(f){}}return"0,0,0"};b.htmlOptions={height:240,flashvars:{},pluginspage:"http://www.adobe.com/go/getflashplayer",src:"#",type:"application/x-shockwave-flash",width:320};b.pluginOptions={expressInstall:false,update:true,version:"6.0.65"};b.replace=function(d){this.innerHTML='<div class="alt">'+this.innerHTML+"</div>";jQuery(this).addClass("flash-replaced").prepend(b.transform(d))};b.update=function(e){var d=String(location).split("?");d.splice(1,0,"?hasFlash=true&");d=d.join("");var f='<p>Indholdet kræver at Flash er installeret. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Har du allerede Flash installeret? <a href="'+d+'">Klik her.</a></p>';this.innerHTML='<span class="alt">'+this.innerHTML+"</span>";jQuery(this).addClass("flash-update").css('height', 'auto').prepend(f)};function a(){var e="";for(var d in this){if(typeof this[d]!="function"){e+=d+'="'+this[d]+'" '}}return e}function c(){var e="";for(var d in this){if(typeof this[d]!="function"){e+=d+"="+encodeURIComponent(this[d])+"&"}}return e.replace(/&$/,"")}b.transform=function(d){d.toString=a;if(d.flashvars){d.flashvars.toString=c}return"<embed "+String(d)+"/>"};if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}})();
/*
 * Metadata - jQuery plugin for parsing metadata from elements
 *
 * Copyright (c) 2006 John Resig, Yehuda Katz, Jörn Zaefferer, Paul McLanahan
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Revision: $Id: jquery.metadata.js 3640 2007-10-11 18:34:38Z pmclanahan $
 *
 */
(function($){$.extend({metadata:{defaults:{type:"class",name:"metadata",cre:/({.*})/,single:"metadata"},setType:function(type,name){this.defaults.type=type;this.defaults.name=name},get:function(elem,opts){var settings=$.extend({},this.defaults,opts);if(!settings.single.length){settings.single="metadata"}var data=$.data(elem,settings.single);if(data){return data}data="{}";var getData=function(data){if(typeof data!="string"){return data}if(data.indexOf("{")<0){data=eval("("+data+")")}};var getObject=function(data){if(typeof data!="string"){return data}data=eval("("+data+")");return data};if(settings.type=="html5"){var object={};$(elem.attributes).each(function(){var name=this.nodeName;if(name.match(/^data-/)){name=name.replace(/^data-/,"")}else{return true}object[name]=getObject(this.nodeValue)})}else{if(settings.type=="class"){var m=settings.cre.exec(elem.className);if(m){data=m[1]}}else{if(settings.type=="elem"){if(!elem.getElementsByTagName){return}var e=elem.getElementsByTagName(settings.name);if(e.length){data=$.trim(e[0].innerHTML)}}else{if(elem.getAttribute!=undefined){var attr=elem.getAttribute(settings.name);if(attr){data=attr}}}}object=getObject(data.indexOf("{")<0?"{"+data+"}":data)}$.data(elem,settings.single,object);return object}}});$.fn.metadata=function(opts){return $.metadata.get(this[0],opts)}})(jQuery);
/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
/**
 * jQuery.LocalScroll - Animated scrolling navigation, using anchors.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/11/2009
 * @author Ariel Flesler
 * @version 1.2.7
 **/
;(function($){var l=location.href.replace(/#.*/,'');var g=$.localScroll=function(a){$('body').localScroll(a)};g.defaults={duration:1e3,axis:'y',event:'click',stop:true,target:window,reset:true};g.hash=function(a){if(location.hash){a=$.extend({},g.defaults,a);a.hash=false;if(a.reset){var e=a.duration;delete a.duration;$(a.target).scrollTo(0,a);a.duration=e}i(0,location,a)}};$.fn.localScroll=function(b){b=$.extend({},g.defaults,b);return b.lazy?this.bind(b.event,function(a){var e=$([a.target,a.target.parentNode]).filter(d)[0];if(e)i(a,e,b)}):this.find('a,area').filter(d).bind(b.event,function(a){i(a,this,b)}).end().end();function d(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,'')==l&&(!b.filter||$(this).is(b.filter))}};function i(a,e,b){var d=e.hash.slice(1),f=document.getElementById(d)||document.getElementsByName(d)[0];if(!f)return;if(a)a.preventDefault();var h=$(b.target);if(b.lock&&h.is(':animated')||b.onBefore&&b.onBefore.call(b,a,f,h)===false)return;if(b.stop)h.stop(true);if(b.hash){var j=f.id==d?'id':'name',k=$('<a> </a>').attr(j,d).css({position:'absolute',top:$(window).scrollTop(),left:$(window).scrollLeft()});f[j]='';$('body').prepend(k);location=e.hash;k.remove();f[j]=d}h.scrollTo(f,b).trigger('notify.serialScroll',[f])}})(jQuery);
/**
* 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);
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),fontStretch:I(function(a){if(typeof a=="number"){return a}if(/%$/.test(a)){return parseFloat(a)/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}[a]||1}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(g){var d=document.createElement("style"),c,b,a;d.type="text/css";d.media=g;try{d.appendChild(document.createTextNode("/**/"))}catch(f){}b=F("head")[0];b.insertBefore(d,b.firstChild);c=(d.sheet||d.styleSheet);a=c&&!c.disabled;b.removeChild(d);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={};b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var a=!M.recognizesMedia("all"),d=false;var c=[],g=function(){a=true;for(var j;j=c.shift();j()){}};var h=F("link"),i=F("style");function b(j){return j.disabled||f(j.sheet,j.media||"screen")}function f(m,p){if(!M.recognizesMedia(p||"all")){return true}if(!m||m.disabled){return false}try{var q=m.cssRules,o;if(q){search:for(var k=0,j=q.length;o=q[k],k<j;++k){switch(o.type){case 2:break;case 3:if(!f(o.styleSheet,o.media.mediaText)){return false}break;default:break search}}}}catch(n){}return true}function e(){if(document.createStyleSheet){return true}var k,j;for(j=0;k=h[j];++j){if(k.rel.toLowerCase()=="stylesheet"&&!b(k)){return false}}for(j=0;k=i[j];++j){if(!b(k)){return false}}return true}W.ready(function(){if(!d){d=M.getStyle(document.body).isUsable()}if(a||(d&&e())){g()}else{setTimeout(arguments.callee,10)}});return function(j){if(a){j()}else{c.push(j)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX;c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return !!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(b.hover){b.forceHitArea=true}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(E?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AF,Z,w,V,d,AG){var I=(Z===null);if(I){Z=d.alt}var b=AF.viewBox;var K=w.getSize("fontSize",AF.baseSize);var u=w.get("letterSpacing");u=(u=="normal")?0:K.convertFrom(parseInt(u,10));var c=0,v=0,t=0,X=0;var a=V.textShadow,r=[];if(a){for(var AE=a.length;AE--;){var h=a[AE];var q=K.convertFrom(parseFloat(h.offX));var o=K.convertFrom(parseFloat(h.offY));r[AE]=[q,o];if(o<c){c=o}if(q>v){v=q}if(o>t){t=o}if(q<X){X=q}}}var AJ=Cufon.CSS.textTransform(Z,w).split(""),T;var J=AF.glyphs,W,M,AA;var G=0,P,f=[];for(var AE=0,AC=0,z=AJ.length;AE<z;++AE){W=J[T=AJ[AE]]||AF.missingGlyph;if(!W){continue}if(M){G-=AA=M[T]||0;f[AC-1]-=AA}G+=P=f[AC++]=~~(W.w||AF.w)+u;M=W.k}if(P===undefined){return null}v+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var AB=document.createElement("span");AB.className="cufon-alt";AB.appendChild(document.createTextNode(Z));U.appendChild(AB)}}var AK=U.style;var n=L.style;var H=K.convert(b.height);var AI=Math.ceil(H);var s=AI/H;var m=s*Cufon.CSS.fontStretch(w.get("fontStretch"));var p=G*m;L.width=Math.ceil(K.convert(p+v-X));L.height=Math.ceil(K.convert(b.height-c+t));c+=b.minY;n.top=Math.round(K.convert(c-AF.ascent))+"px";n.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(p))+"px";if(A){AK.width=S;AK.height=K.convert(AF.height)+"px"}else{AK.paddingLeft=S;AK.paddingBottom=(K.convert(AF.height)-1)+"px"}var AH=L.getContext("2d"),e=H/b.height;AH.scale(e,e*s);AH.translate(-X,-c);AH.lineWidth=AF.face["underline-thickness"];AH.save();function N(i,g){AH.strokeStyle=g;AH.beginPath();AH.moveTo(0,i);AH.lineTo(G,i);AH.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AG,w):{};if(O.underline){N(-AF.face["underline-position"],O.underline)}if(O.overline){N(AF.ascent,O.overline)}function AD(){AH.scale(m,1);for(var x=0,k=0,g=AJ.length;x<g;++x){var y=J[AJ[x]]||AF.missingGlyph;if(!y){continue}if(y.d){AH.beginPath();if(y.code){C(y.code,AH)}else{y.code=D("m"+y.d,AH)}AH.fill()}AH.translate(f[k++],0)}AH.restore()}if(a){for(var AE=a.length;AE--;){var h=a[AE];AH.save();AH.fillStyle=h.color;AH.translate.apply(AH,r[AE]);AD()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AH.createLinearGradient(0,b.minY,0,b.maxY);for(var AE=0,z=Y.length;AE<z;++AE){Q.addColorStop.apply(Q,Y[AE])}AH.fillStyle=Q}else{AH.fillStyle=w.get("color")}AD();if(O["line-through"]){N(-AF.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AF,d,z,a,h,AG,x){var I=(d===null);if(I){d=h.alt}var f=AF.viewBox;var K=z.computedFontSize||(z.computedFontSize=new Cufon.CSS.Size(C(AG,z.get("fontSize"))+"px",AF.baseSize));var w=z.computedLSpacing;if(w==undefined){w=z.get("letterSpacing");z.computedLSpacing=w=(w=="normal")?0:~~K.convertFrom(A(AG,w))}var W,L;if(I){W=h;L=h.firstChild}else{W=document.createElement("span");W.className="cufon cufon-vml";W.alt=d;L=document.createElement("span");L.className="cufon-vml-canvas";W.appendChild(L);if(a.printable){var AC=document.createElement("span");AC.className="cufon-alt";AC.appendChild(document.createTextNode(d));W.appendChild(AC)}if(!x){W.appendChild(document.createElement("cvml:shape"))}}var AL=W.style;var r=L.style;var G=K.convert(f.height),AI=Math.ceil(G);var v=AI/G;var q=v*Cufon.CSS.fontStretch(z.get("fontStretch"));var u=f.minX,t=f.minY;r.height=AI;r.top=Math.round(K.convert(t-AF.ascent));r.left=Math.round(K.convert(u));AL.height=K.convert(AF.height)+"px";var P=a.enableTextDecoration?Cufon.CSS.textDecoration(AG,z):{};var c=z.get("color");var AK=Cufon.CSS.textTransform(d,z).split(""),V;var J=AF.glyphs,b,M,AB;var F=0,m=[],s=0,R;var T,e=a.textShadow;for(var AE=0,AD=0,AA=AK.length;AE<AA;++AE){b=J[V=AK[AE]]||AF.missingGlyph;if(!b){continue}if(M){F-=AB=M[V]||0;m[AD-1]-=AB}F+=R=m[AD++]=~~(b.w||AF.w)+w;M=b.k}if(R===undefined){return null}var U=-u+F+(f.width-R);var AJ=K.convert(U*q),y=Math.round(AJ);var p=U+","+f.height,H;var g="r"+p+"ns";var S=a.textGradient&&D(a.textGradient);for(AE=0,AD=0;AE<AA;++AE){b=J[AK[AE]]||AF.missingGlyph;if(!b){continue}if(I){T=L.childNodes[AD];while(T.firstChild){T.removeChild(T.firstChild)}}else{T=document.createElement("cvml:shape");L.appendChild(T)}T.stroked="f";T.coordsize=p;T.coordorigin=H=(u-s)+","+t;T.path=(b.d?"m"+b.d+"xe":"")+"m"+H+g;T.fillcolor=c;if(S){T.appendChild(S.cloneNode(false))}var AH=T.style;AH.width=y;AH.height=AI;if(e){var O=e[0],N=e[1];var Z=Cufon.CSS.color(O.color),X;var o=document.createElement("cvml:shadow");o.on="t";o.color=Z.color;o.offset=O.offX+","+O.offY;if(N){X=Cufon.CSS.color(N.color);o.type="double";o.color2=X.color;o.offset2=N.offX+","+N.offY}o.opacity=Z.opacity||(X&&X.opacity)||1;T.appendChild(o)}s+=m[AD++]}var n=T.nextSibling,Q,Y;if(a.forceHitArea){if(!n){n=document.createElement("cvml:rect");n.stroked="f";n.className="cufon-vml-cover";Q=document.createElement("cvml:fill");Q.opacity=0;n.appendChild(Q);L.appendChild(n)}Y=n.style;Y.width=y;Y.height=AI}else{if(n){L.removeChild(n)}}AL.width=Math.max(Math.ceil(K.convert(F*q)),0);return W}})());

Cufon.registerFont({"w":194,"face":{"font-family":"book","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 3 5 3 2 2 4","ascent":"247","descent":"-113","x-height":"4","bbox":"-27 -329 332 90","underline-thickness":"18","underline-position":"-18","stemh":"22","stemv":"28","unicode-range":"U+0020-U+2026"},"glyphs":{" ":{"w":108},"!":{"d":"33,-39r38,0r0,39r-38,0r0,-39xm60,-62r-16,0r-13,-185r43,0","w":108},"\"":{"d":"37,-247r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89xm94,-247r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89","w":165},"#":{"d":"84,-247r24,0r-13,70r48,0r13,-70r24,0r-12,70r35,0r0,23r-41,0r-9,57r38,0r0,22r-44,0r-14,75r-24,0r14,-75r-48,0r-15,75r-23,0r13,-75r-37,0r0,-22r43,0r10,-57r-40,0r0,-23r45,0xm90,-154r-10,57r48,0r10,-57r-48,0","w":216},"$":{"d":"195,-74v0,38,-35,66,-74,66r0,35r-22,0r0,-35v-36,-4,-66,-20,-78,-56r25,-10v8,23,28,40,53,41r0,-84v-32,-5,-69,-25,-68,-61v0,-41,31,-60,68,-65r0,-30r22,0r0,30v32,3,57,17,69,48r-24,8v-6,-21,-24,-31,-45,-32r0,78v37,3,74,28,74,67xm121,-112r0,79v23,0,46,-14,46,-39v0,-27,-23,-37,-46,-40xm99,-145r0,-74v-21,1,-41,13,-41,36v0,24,20,34,41,38","w":216},"%":{"d":"191,-125v69,0,70,128,1,129v-69,-1,-71,-128,-1,-129xm191,-107v-24,0,-29,26,-29,47v0,18,5,45,30,45v25,0,29,-27,29,-45v0,-21,-6,-47,-30,-47xm60,-251v69,1,70,128,0,129v-68,-1,-69,-128,0,-129xm60,-232v-24,0,-29,25,-29,46v0,18,4,46,29,46v25,0,30,-28,30,-46v0,-21,-6,-46,-30,-46xm64,0r-26,0r150,-247r26,0","w":252},"&":{"d":"150,-39r-60,-87v-25,11,-44,25,-44,55v0,55,73,65,104,32xm111,-228v-44,0,-30,51,-8,75v18,-9,41,-19,41,-44v0,-18,-15,-31,-33,-31xm164,-21v-48,49,-150,21,-149,-48v0,-37,28,-61,63,-75v-34,-34,-30,-109,32,-107v32,0,58,20,58,53v0,33,-25,50,-52,62r52,79v18,-22,28,-50,33,-78r27,5v-7,33,-23,66,-46,92v12,15,27,14,50,11r0,26v-32,5,-52,1,-68,-20","w":244},"\u2019":{"d":"71,-247r0,37r-24,43r-13,0r18,-43r-18,0r0,-37r37,0","w":108,"k":{"\u2019":54,"v":14,"r":31,"l":22,"s":43,"t":11,"d":36}},"(":{"d":"90,62r-18,0v-72,-87,-70,-221,-1,-309r19,0v-61,91,-59,217,0,309","w":108},")":{"d":"36,62r-18,0v59,-92,61,-218,0,-309r19,0v69,88,71,222,-1,309","w":108},"*":{"d":"169,-124r-52,-33r3,62r-22,0r3,-62r-53,33r-11,-18r55,-29r-55,-29r11,-18r53,33r-3,-62r22,0r-3,62r52,-33r10,18r-56,29r56,29","w":216},"+":{"d":"96,-197r24,0r0,81r81,0r0,24r-81,0r0,81r-24,0r0,-81r-81,0r0,-24r81,0r0,-81","w":216},",":{"d":"77,-41r0,37r-27,50r-16,0r22,-46r-19,0r0,-41r40,0","w":108,"k":{"\u201d":36,"\u2019":36," ":18}},"-":{"d":"77,-104r0,23r-77,0r0,-23r77,0","w":79},".":{"d":"76,-41r0,41r-40,0r0,-41r40,0","w":108,"k":{"\u201d":36,"\u2019":36}},"\/":{"d":"165,-247r-150,309r-24,0r149,-309r25,0","w":187},"0":{"d":"106,-251v64,0,96,68,96,129v0,55,-27,126,-93,126v-68,0,-95,-70,-95,-127v0,-56,24,-128,92,-128xm109,-20v50,0,61,-59,61,-98v0,-41,-10,-109,-64,-109v-51,0,-60,63,-60,102v0,41,10,105,63,105","w":216},"1":{"d":"200,-23r0,23r-173,0r0,-23r74,0r0,-187v-20,21,-42,40,-68,53r0,-31v29,-15,56,-33,76,-59r22,0r0,224r69,0","w":216},"2":{"d":"193,-26r0,26r-175,0r0,-26r100,-78v22,-20,44,-41,44,-73v0,-31,-28,-49,-56,-49v-32,0,-58,25,-59,56r-29,-8v8,-94,175,-98,175,1v0,78,-89,108,-136,151r136,0","w":216},"3":{"d":"166,-69v0,-41,-47,-51,-94,-47r0,-24v43,4,85,-6,85,-43v0,-60,-99,-53,-109,-3r-28,-8v14,-37,49,-57,88,-57v41,0,81,22,81,67v0,27,-22,50,-48,54v32,5,57,27,57,61v0,91,-164,99,-187,13r29,-10v10,63,126,58,126,-3","w":216},"4":{"d":"164,0r-30,0r0,-58r-122,0r0,-20r113,-169r39,0r0,166r40,0r0,23r-40,0r0,58xm134,-81r0,-142r-90,142r90,0","w":216},"5":{"d":"183,-247r-3,27r-121,0r-6,79v47,-53,146,-18,146,57v0,101,-156,118,-182,29r27,-9v16,64,125,54,125,-20v0,-65,-91,-78,-116,-25r-25,-5r8,-133r147,0","w":216},"6":{"d":"112,4v-142,0,-119,-255,5,-255v39,0,67,19,79,55r-28,8v-9,-23,-25,-37,-51,-37v-61,0,-72,65,-72,113v12,-30,41,-49,74,-49v46,0,81,35,81,80v0,49,-40,85,-88,85xm52,-76v-1,30,29,55,60,55v33,0,59,-25,59,-58v0,-31,-25,-58,-57,-58v-33,0,-62,27,-62,61","w":216},"7":{"d":"191,-228v-48,56,-88,132,-88,228r-31,0v0,-81,35,-160,87,-220r-134,0r3,-27r163,0r0,19","w":216},"8":{"d":"173,-62v0,-33,-41,-46,-68,-53v-26,5,-62,20,-62,51v0,35,38,45,66,45v26,0,64,-11,64,-43xm203,-66v-2,97,-190,90,-190,3v0,-35,28,-54,58,-65v-25,-9,-46,-30,-46,-59v2,-88,167,-83,168,-2v0,30,-21,48,-48,57v30,13,58,30,58,66xm56,-190v0,26,31,42,53,47v23,-6,57,-17,57,-45v0,-31,-29,-40,-55,-40v-23,0,-55,10,-55,38","w":216},"9":{"d":"22,-46r25,-9v9,22,29,34,53,34v56,1,73,-66,70,-109v-31,73,-153,48,-153,-37v0,-48,37,-84,85,-84v73,0,97,59,97,122v0,62,-25,133,-99,133v-35,0,-66,-16,-78,-50xm105,-111v32,0,60,-26,60,-57v0,-34,-26,-57,-60,-57v-35,0,-59,25,-59,59v0,34,26,55,59,55","w":216},":":{"d":"76,-41r0,41r-40,0r0,-41r40,0xm76,-183r0,41r-40,0r0,-41r40,0","w":108},";":{"d":"77,-41r0,37r-27,50r-16,0r22,-46r-19,0r0,-41r40,0xm77,-183r0,41r-40,0r0,-41r40,0","w":108},"<":{"d":"196,-184r0,22r-142,58r142,59r0,22r-176,-75r0,-12","w":216},"=":{"d":"15,-127r0,-23r186,0r0,23r-186,0xm15,-57r0,-24r186,0r0,24r-186,0","w":216},">":{"d":"196,-110r0,12r-176,75r0,-22r141,-59r-141,-58r0,-22","w":216},"?":{"d":"106,-61r-26,0v-4,-40,7,-62,39,-77v18,-8,30,-22,30,-43v0,-29,-23,-44,-50,-44v-33,0,-51,23,-56,53r-27,-6v2,-92,162,-99,165,-3v1,43,-41,60,-69,80v-9,11,-5,24,-6,40xm112,-35r0,35r-36,0r0,-35r36,0"},"@":{"d":"78,-107v0,-40,28,-79,74,-82v11,0,28,5,35,26r7,-19r23,0r-29,95v0,8,5,13,14,13v23,0,51,-35,51,-74v0,-35,-37,-80,-103,-82v-58,-2,-120,62,-113,121v9,79,91,108,162,81r9,19v-81,33,-185,-2,-195,-89v-9,-82,61,-157,148,-153v54,3,111,42,114,100v3,58,-40,97,-76,97v-13,0,-32,-3,-34,-22v-3,6,-22,21,-42,21v-26,0,-45,-25,-45,-52xm133,-73v30,-3,44,-44,44,-74v0,-10,-6,-22,-25,-22v-30,0,-47,37,-48,60v-1,15,15,38,29,36","w":288},"A":{"d":"118,-247r81,247r-32,0r-25,-72r-91,0r-22,72r-26,0r80,-247r35,0xm135,-95r-37,-119r-39,119r76,0","w":201,"k":{"v":7,"w":5,"y":4,"\u00fd":4,"\u00ff":4,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":14,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"B":{"d":"176,-69v1,-52,-58,-51,-116,-48r0,91v54,1,115,7,116,-43xm168,-183v0,-46,-58,-40,-108,-39r0,81v52,1,108,7,108,-42xm207,-68v0,43,-41,68,-85,68r-93,0r0,-247r93,0v39,-4,77,23,77,60v0,28,-16,50,-43,56v31,6,51,31,51,63","w":223},"C":{"d":"49,-123v-1,48,20,101,67,101v38,0,55,-29,63,-61r28,6v-12,47,-39,81,-91,81v-136,0,-138,-256,2,-255v50,0,79,34,89,79r-29,6v-9,-31,-24,-59,-61,-59v-54,0,-68,59,-68,102","w":223},"D":{"d":"224,-124v0,61,-41,124,-105,124r-88,0r0,-247r78,0v68,-7,115,59,115,123xm192,-124v0,-49,-31,-104,-85,-97r-45,0r0,195r45,0v52,6,85,-47,85,-98","w":237,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,",":14,".":14}},"E":{"d":"190,-27r0,27r-159,0r0,-247r156,0r0,27r-125,0r0,78r99,0r0,25r-99,0r0,90r128,0","w":201},"F":{"d":"60,0r-30,0r0,-247r151,0r0,27r-121,0r0,78r100,0r0,25r-100,0r0,117","w":172,"k":{"\u00eb":7,"\u00e0":14,"\u00e4":14,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,",":45,".":45,"a":14,"\u00e6":14,"\u00e1":14,"\u00e2":14,"\u00e5":14,"e":7,"\u00e9":7,"\u00ea":7,"\u00e8":7,"i":-9,"\u00ef":-9,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"r":11}},"G":{"d":"51,-122v0,48,23,102,71,100v43,-1,66,-31,62,-77r-61,0r0,-26r93,0r0,127r-19,0r-8,-31v-15,23,-42,33,-69,33v-63,0,-103,-63,-103,-125v0,-65,34,-130,107,-130v47,0,77,27,89,71r-29,8v-6,-31,-30,-53,-62,-53v-56,0,-71,58,-71,103","w":237},"H":{"d":"207,0r-31,0r0,-117r-114,0r0,117r-31,0r0,-247r31,0r0,103r114,0r0,-103r31,0r0,247","w":237},"I":{"d":"62,0r-31,0r0,-247r31,0r0,247","w":93},"J":{"d":"116,-81v7,63,-46,102,-110,80r0,-26v25,5,56,10,71,-10v10,-12,8,-29,8,-44r0,-166r31,0r0,166","w":144},"K":{"d":"226,0r-34,0r-74,-136r-56,70r0,66r-31,0r0,-247r31,0r0,143r111,-143r34,0r-67,86","w":223,"k":{"y":14,"\u00fd":14,"\u00ff":14,"O":9,"\u00d8":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5}},"L":{"d":"176,-27r0,27r-146,0r0,-247r31,0r0,220r115,0","w":180,"k":{"y":9,"\u00fd":9,"\u00ff":9,"T":25,"V":40,"W":25,"Y":47,"\u00dd":47,"\u201d":27,"\u2019":27}},"M":{"d":"267,-247r0,247r-31,0r-1,-216r-78,216r-21,0r-80,-216r-2,0r0,216r-26,0r0,-247r47,0r74,198r73,-198r45,0","w":295},"N":{"d":"210,-247r0,247r-30,0r-126,-215r0,215r-26,0r0,-247r39,0r117,201r0,-201r26,0","w":237},"O":{"d":"119,4v-139,-1,-136,-255,0,-255v69,0,101,64,101,125v0,60,-31,130,-101,130xm188,-125v0,-46,-21,-101,-68,-100v-55,0,-70,60,-70,104v0,42,17,99,69,99v53,0,69,-61,69,-103","w":237,"k":{"V":18,"W":13,"Y":27,"\u00dd":27,",":27,".":27,"X":9}},"P":{"d":"190,-173v-2,64,-62,81,-136,73r0,100r-31,0r0,-247r83,0v45,-5,85,31,84,74xm159,-173v0,-27,-21,-48,-51,-48r-54,0r0,95v53,3,105,2,105,-47","w":201,"k":{"\u00e4":9,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,",":126,".":126,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e0":9,"\u00e5":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9}},"Q":{"d":"119,-225v-48,0,-70,54,-70,104v0,43,15,99,68,99v57,0,71,-54,71,-101v0,-46,-16,-102,-69,-102xm119,4v-144,-1,-131,-258,0,-255v130,3,136,220,25,251v-3,35,31,35,61,30r0,24v-42,14,-88,-4,-86,-50","w":237},"R":{"d":"122,-247v43,-4,82,28,82,69v0,29,-17,56,-46,64r49,114r-33,0r-45,-107r-69,0r0,107r-31,0r0,-247r93,0xm173,-178v0,-49,-60,-43,-113,-42r0,88v55,2,113,6,113,-46","w":223,"k":{"O":4,"\u00d8":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"V":7,"W":7,"Y":7,"\u00dd":7}},"S":{"d":"185,-120v55,50,1,124,-69,124v-50,0,-84,-23,-101,-71r28,-6v10,34,38,50,73,50v29,0,64,-14,60,-44v-9,-73,-147,-21,-148,-116v0,-48,41,-68,84,-68v41,0,74,21,87,61r-28,7v-5,-27,-34,-43,-60,-43v-23,0,-53,12,-53,39v0,59,90,34,127,67","w":223},"T":{"d":"105,-220r0,220r-30,0r0,-220r-71,0r0,-27r172,0r0,27r-71,0","w":180,"k":{"\u00fc":36,"\u00f2":36,"\u00f6":36,"\u00e8":36,"\u00eb":36,"\u00ea":36,"\u00e5":36,"\u00e0":36,"\u00e4":36,"\u00e2":36,"w":36,"y":36,"\u00fd":36,"\u00ff":36,"A":23,"\u00c6":23,"\u00c1":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u00c5":23,",":54,".":54,"a":36,"\u00e6":36,"\u00e1":36,"e":36,"\u00e9":36,"o":36,"\u00f8":36,"\u00f3":36,"\u00f4":36,"r":36,"u":36,"\u00fa":36,"\u00fb":36,"\u00f9":36,"-":14}},"U":{"d":"71,-43v38,43,117,11,104,-48r0,-156r26,0r0,156v13,81,-96,132,-151,71v-44,-49,-13,-147,-20,-227r31,0v4,69,-11,150,10,204","w":230},"V":{"d":"199,-247r-83,247r-30,0r-83,-247r32,0r69,204r68,-204r27,0","w":201,"k":{"\u00f6":22,"\u00f4":22,"\u00e8":22,"\u00eb":22,"\u00ea":22,"\u00e5":18,"\u00e0":18,"\u00e4":18,"\u00e2":18,"G":11,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,",":54,".":54,"a":18,"\u00e6":18,"\u00e1":18,"e":22,"\u00e9":22,"i":-9,"\u00ef":-9,"o":22,"\u00f8":22,"\u00f3":22,"\u00f2":22,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13}},"W":{"d":"292,-247r-59,247r-31,0r-54,-192r-50,192r-32,0r-62,-247r31,0r50,200r53,-200r24,0r57,200r46,-200r27,0","w":295,"k":{"\u00fc":11,"\u00f6":14,"\u00ea":14,"\u00e4":20,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,",":27,".":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e0":20,"\u00e5":20,"e":14,"\u00e9":14,"\u00eb":14,"\u00e8":14,"o":14,"\u00f8":14,"\u00f3":14,"\u00f4":14,"\u00f2":14,"u":11,"\u00fa":11,"\u00fb":11,"\u00f9":11}},"X":{"d":"183,-247r-69,113r79,134r-35,0r-63,-105r-64,105r-29,0r79,-128r-71,-119r35,0r54,91r55,-91r29,0"},"Y":{"d":"199,-247r-83,143r0,104r-31,0r0,-104r-82,-143r36,0r65,114r67,-114r28,0","w":201,"k":{"\u00fc":22,"\u00f6":36,"O":22,"\u00d8":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,",":63,".":63,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u00f3":36,"\u00f4":36,"\u00f2":36,"u":22,"\u00fa":22,"\u00fb":22,"\u00f9":22}},"Z":{"d":"184,-27r0,27r-174,0r0,-27r134,-194r-128,0r0,-26r164,0r0,21r-135,199r139,0"},"[":{"d":"87,62r-64,0r0,-309r64,0r0,18r-39,0r0,271r39,0r0,20","w":108},"\\":{"d":"45,-247r149,309r-24,0r-149,-309r24,0","w":187},"]":{"d":"85,-247r0,309r-64,0r0,-20r39,0r0,-271r-39,0r0,-18r64,0","w":108},"^":{"d":"37,-93r63,-154r16,0r63,154r-22,0r-49,-120r-49,120r-22,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"\u2018":{"d":"37,-167r0,-37r24,-43r13,0r-18,43r18,0r0,37r-37,0","w":108,"k":{"\u2018":54,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25}},"a":{"d":"84,-18v39,-1,60,-33,57,-74v-42,0,-97,-4,-97,42v0,23,20,32,40,32xm14,-52v0,-54,67,-66,127,-61v2,-36,-11,-54,-46,-53v-23,0,-45,8,-50,33r-26,-5v11,-56,95,-65,135,-32v31,41,4,110,19,170r-28,0r-4,-34v-22,56,-127,50,-127,-18"},"b":{"d":"50,-105v0,48,12,86,50,86v37,0,49,-40,49,-70v0,-31,-10,-76,-49,-76v-29,0,-50,29,-50,60xm105,-188v46,-2,74,47,74,94v0,46,-22,98,-76,98v-24,0,-46,-14,-57,-35r-10,31r-14,0r0,-247r28,0v2,30,-4,68,2,94v12,-22,27,-35,53,-35","k":{"v":13,"y":7,"\u00fd":7,"\u00ff":7}},"c":{"d":"135,-65r26,5v-6,37,-32,64,-71,64v-54,0,-78,-47,-78,-95v0,-48,24,-97,78,-97v40,0,65,26,71,64r-26,4v-3,-24,-18,-44,-44,-44v-38,0,-49,40,-49,71v0,30,9,72,47,72v27,0,41,-19,46,-44","w":172},"d":{"d":"91,-20v39,0,57,-40,51,-88v3,-32,-21,-58,-50,-57v-32,1,-49,36,-48,70v0,30,8,75,47,75xm87,4v-46,1,-73,-49,-73,-95v0,-46,22,-97,75,-97v23,0,40,12,53,30r0,-89r28,0r0,247r-25,0v-1,-10,2,-24,-1,-32v-12,23,-30,36,-57,36","k":{"w":7}},"e":{"d":"45,-89v-3,36,21,69,54,69v24,0,41,-13,49,-35r27,5v-11,33,-43,54,-78,54v-55,0,-84,-44,-84,-95v0,-50,30,-97,85,-97v57,0,81,48,80,99r-133,0xm46,-110r101,0v0,-30,-17,-56,-49,-56v-31,0,-51,27,-52,56","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"f":{"d":"107,-183r0,22r-43,0r0,161r-28,0r0,-161r-32,0r0,-22r32,0v-4,-50,27,-79,81,-65r0,23v-8,-1,-15,-3,-23,-3v-31,0,-30,22,-30,45r43,0","w":108,"k":{"\u201d":-9,"\u2019":-9}},"g":{"d":"89,69v-39,0,-85,-10,-85,-47v0,-19,11,-31,28,-37v-26,-13,-22,-55,8,-62v-65,-52,11,-141,83,-103v5,-29,20,-32,49,-31r1,23v-19,0,-32,1,-35,21v45,48,-7,125,-78,101v-20,-1,-26,30,-5,33v48,7,125,-7,125,50v0,46,-56,52,-91,52xm45,-125v0,25,16,40,41,40v24,0,41,-16,41,-40v0,-23,-19,-40,-41,-40v-24,0,-41,17,-41,40xm90,47v24,-1,63,-4,63,-29v-8,-35,-60,-17,-101,-25v-11,5,-20,12,-20,25v0,25,39,29,58,29","w":180,"k":{"y":-7,"\u00fd":-7,"\u00ff":-7,",":-9,".":-5}},"h":{"d":"111,-188v39,0,58,39,58,81r0,107r-28,0v-6,-62,23,-165,-37,-165v-31,0,-51,36,-51,71r0,94r-28,0r0,-247r28,0r1,98v12,-24,29,-39,57,-39","k":{"y":9,"\u00fd":9,"\u00ff":9}},"i":{"d":"57,-183r0,183r-28,0r0,-183r28,0xm59,-247r0,32r-31,0r0,-32r31,0","w":86},"j":{"d":"51,3v6,45,-33,75,-78,58r0,-22v30,8,50,-4,50,-36r0,-186r28,0r0,186xm53,-247r0,32r-31,0r0,-32r31,0","w":79},"k":{"d":"177,0r-30,0r-53,-102r-39,45r0,57r-28,0r0,-247r28,0r0,158r84,-93r31,0r-57,64","w":180,"k":{"y":13,"\u00fd":13,"\u00ff":13,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7}},"l":{"d":"57,0r-28,0r0,-247r28,0r0,247","w":86},"m":{"d":"97,-165v-62,0,-41,99,-44,165r-29,0r0,-183r26,0v1,11,-2,26,1,35v14,-50,98,-54,106,4v10,-25,31,-44,59,-44v74,2,52,109,55,188r-28,0v-6,-63,22,-165,-36,-165v-62,0,-42,98,-45,165r-28,0v-6,-62,22,-165,-37,-165","w":295,"k":{"y":9,"\u00fd":9,"\u00ff":9}},"n":{"d":"105,-163v-67,0,-51,92,-52,163r-28,0r0,-183r26,0v1,11,-2,25,1,34v10,-23,31,-39,57,-39v41,0,61,40,61,87r0,101r-29,0v-7,-61,23,-163,-36,-163","k":{"v":7,"y":9,"\u00fd":9,"\u00ff":9}},"o":{"d":"15,-93v0,-51,29,-95,84,-95v54,0,80,47,80,95v0,51,-30,97,-85,97v-55,0,-79,-49,-79,-97xm97,-165v-34,0,-51,36,-51,72v0,36,15,73,51,73v35,0,51,-37,51,-73v0,-34,-17,-72,-51,-72","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"p":{"d":"104,-20v33,1,48,-37,48,-72v0,-30,-10,-71,-48,-71v-38,0,-48,39,-48,86v0,31,21,57,48,57xm111,-188v101,3,92,191,0,192v-25,0,-42,-12,-55,-33r0,89r-28,0r0,-243r26,0r0,35v9,-24,30,-40,57,-40","k":{"y":5,"\u00fd":5,"\u00ff":5}},"q":{"d":"93,-21v65,0,68,-144,0,-144v-37,0,-48,43,-48,73v0,30,11,71,48,71xm144,-153r12,-30r14,0r0,243r-28,0r-1,-95v-9,23,-29,39,-55,39v-102,0,-95,-189,3,-192v28,0,41,13,55,35"},"r":{"d":"116,-160v-74,-4,-62,86,-62,160r-28,0r0,-183r25,0v1,14,-2,31,1,43v10,-28,27,-53,64,-47r0,27","w":115,"k":{"v":-18,"y":-18,"\u00fd":-18,"\u00ff":-18,",":36,".":36,"r":-5,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"k":-7,"l":-7,"m":-5,"n":-5,"p":-5,"s":-5,"t":-18,":":-14,";":-14}},"s":{"d":"15,-49r28,-5v4,25,33,34,55,34v19,0,44,-7,44,-30v0,-30,-39,-28,-65,-33v-28,-6,-54,-19,-54,-51v0,-73,127,-71,141,-7r-26,5v-7,-20,-26,-29,-47,-29v-17,0,-39,7,-39,27v0,42,69,21,98,44v13,11,22,24,22,41v0,79,-143,74,-157,4","w":187},"t":{"d":"112,-21r0,22v-47,11,-79,-9,-79,-57r0,-106r-32,0r0,-22r32,0r0,-46r29,-3r0,49r40,0r0,22r-40,0r0,111v-4,30,22,36,50,30","w":115},"u":{"d":"89,-21v65,0,50,-93,51,-162r28,0r0,183r-25,0v-1,-11,2,-27,-1,-36v-9,23,-31,40,-56,40v-38,0,-61,-36,-61,-76r0,-111r28,0v6,61,-23,162,36,162"},"v":{"d":"158,-183r-63,183r-29,0r-66,-183r32,0r51,149r50,-149r25,0","w":158,"k":{",":22,".":22}},"w":{"d":"235,-183r-53,183r-23,0r-41,-136r-37,136r-23,0r-55,-183r28,0r40,137r38,-137r21,0r41,137r41,-137r23,0","w":237,"k":{",":22,".":22,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7}},"x":{"d":"157,0r-34,0r-46,-74r-47,74r-28,0r61,-95r-55,-88r33,0r39,63r40,-63r27,0r-53,82","w":158},"y":{"d":"153,-183r-72,200v-7,31,-35,59,-76,45r0,-23v35,12,53,-13,59,-42r-63,-180r29,0r49,138r50,-138r24,0","w":151,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7}},"z":{"d":"143,-183r0,16r-101,145r101,0r0,22r-135,0r0,-22r97,-139r-89,0r0,-22r127,0","w":151},"{":{"d":"12,-84r0,-22v67,-6,-20,-159,84,-145r0,22v-16,2,-29,0,-29,23r0,58v0,36,-23,51,-26,53v3,3,26,18,26,54v0,33,-16,86,29,81r0,22v-32,-1,-52,-2,-56,-41v-4,-42,13,-99,-28,-105","w":108},"|":{"d":"58,-270r0,360r-22,0r0,-360r22,0","w":93},"}":{"d":"96,-106r0,22v-67,7,20,160,-84,146r0,-22v16,-2,29,-2,29,-23r0,-58v0,-36,23,-51,26,-54v-3,-2,-26,-17,-26,-53v0,-33,16,-86,-29,-81r0,-22v32,0,52,3,56,41v4,42,-13,99,28,104","w":108},"~":{"d":"45,-76r-25,0v1,-17,7,-33,14,-42v20,-25,44,-12,51,-9v23,9,51,42,80,28v4,-6,6,-19,6,-26r24,0v1,43,-30,69,-74,45r-43,-24v-22,-13,-33,5,-33,28","w":216},"'":{"d":"37,-247r34,0v2,35,-4,62,-10,89r-14,0v-6,-27,-12,-54,-10,-89","w":108},"\u201c":{"d":"89,-168r0,-31r29,-48r14,0r-21,43r14,0r0,36r-36,0xm35,-168r0,-31r29,-48r13,0r-21,43r15,0r0,36r-36,0","w":165,"k":{"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25}},"\u2013":{"d":"180,-104r0,23r-180,0r0,-23r180,0","w":180},"\u201d":{"d":"131,-247r0,31r-29,48r-13,0r21,-43r-15,0r0,-36r36,0xm76,-247r0,31r-28,48r-14,0r21,-43r-15,0r0,-36r36,0","w":165},"\u2026":{"d":"80,-41r0,41r-40,0r0,-41r40,0xm200,-41r0,41r-40,0r0,-41r40,0xm320,-41r0,41r-40,0r0,-41r40,0","w":360},"`":{"d":"102,-201r-77,-33r12,-24r72,43","w":136},"\u00b4":{"d":"127,-234r-77,33r-7,-14r72,-43","w":136},"\u00a8":{"d":"118,-240v0,11,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,18,8,18,18xm63,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18","w":144},"\u00c6":{"d":"332,-27r0,27r-170,0r0,-76r-83,0r-45,76r-30,0r147,-247r176,0r0,27r-134,0r0,78r109,0r0,25r-109,0r0,90r139,0xm162,-100r0,-119r-69,119r69,0","w":345},"\u00d8":{"d":"175,-189r-101,147v10,12,25,20,45,20v75,0,82,-107,56,-167xm62,-60r100,-146v-11,-12,-25,-19,-42,-19v-76,0,-82,103,-58,165xm225,-262r-32,47v53,72,29,215,-74,219v-26,0,-46,-9,-62,-23r-22,33r-24,0r33,-47v-52,-73,-30,-216,75,-218v24,0,45,8,60,21r22,-32r24,0","w":237,"k":{"V":18,"W":13,"Y":27,"\u00dd":27,",":27,".":27,"X":9}},"\u00e6":{"d":"174,-110r100,0v-1,-29,-15,-56,-48,-56v-31,0,-51,27,-52,56xm145,-91v-43,-2,-95,-1,-95,38v0,47,67,39,85,7v9,-16,10,-28,10,-45xm20,-51v0,-55,65,-66,126,-62v13,-63,-79,-71,-93,-22r-26,-4v15,-57,104,-66,140,-23v14,-17,36,-26,58,-26v57,0,80,49,80,99r-132,0v-2,35,15,69,55,69v23,0,39,-14,48,-35r26,5v-18,66,-126,71,-150,7v-15,62,-132,65,-132,-8","w":324},"\u00f8":{"d":"129,-152v-60,-44,-102,34,-76,100xm63,-34v40,38,85,-5,85,-59v0,-14,-2,-29,-8,-42xm194,-207r-36,48v44,57,17,165,-64,163v-20,0,-35,-7,-47,-17r-25,33r-24,0r35,-48v-38,-59,-15,-163,66,-160v18,0,33,6,45,15r26,-34r24,0","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00c1":{"d":"118,-247r81,247r-32,0r-25,-72r-91,0r-22,72r-26,0r80,-247r35,0xm135,-95r-37,-119r-39,119r76,0xm165,-298r-77,33r-7,-14r72,-43","w":201,"k":{"v":7,"w":5,"y":4,"\u00fd":4,"\u00ff":4,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":14,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c2":{"d":"118,-247r81,247r-32,0r-25,-72r-91,0r-22,72r-26,0r80,-247r35,0xm135,-95r-37,-119r-39,119r76,0xm161,-278r-25,4r-33,-22r-36,22r-26,-4r62,-44","w":201,"k":{"v":7,"w":5,"y":4,"\u00fd":4,"\u00ff":4,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":14,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c4":{"d":"118,-247r81,247r-32,0r-25,-72r-91,0r-22,72r-26,0r80,-247r35,0xm135,-95r-37,-119r-39,119r76,0xm147,-297v0,11,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,18,8,18,18xm91,-297v0,11,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,18,8,18,18","w":201,"k":{"v":7,"w":5,"y":4,"\u00fd":4,"\u00ff":4,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":14,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c0":{"d":"118,-247r81,247r-32,0r-25,-72r-91,0r-22,72r-26,0r80,-247r35,0xm135,-95r-37,-119r-39,119r76,0xm113,-265r-77,-33r12,-24r72,43","w":201,"k":{"v":7,"w":5,"y":4,"\u00fd":4,"\u00ff":4,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":14,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c5":{"d":"118,-247r81,247r-32,0r-25,-72r-91,0r-22,72r-26,0r80,-247r35,0xm135,-95r-37,-119r-39,119r76,0xm100,-264v-17,0,-32,-14,-32,-32v0,-18,14,-33,32,-33v18,0,33,15,33,33v0,18,-15,32,-33,32xm101,-280v9,0,16,-7,16,-16v0,-9,-7,-17,-16,-17v-9,0,-17,8,-17,17v0,9,8,16,17,16","w":201,"k":{"v":7,"w":5,"y":4,"\u00fd":4,"\u00ff":4,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":14,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c9":{"d":"190,-27r0,27r-159,0r0,-247r156,0r0,27r-125,0r0,78r99,0r0,25r-99,0r0,90r128,0xm174,-298r-77,33r-7,-14r72,-43","w":201},"\u00ca":{"d":"190,-27r0,27r-159,0r0,-247r156,0r0,27r-125,0r0,78r99,0r0,25r-99,0r0,90r128,0xm168,-278r-25,4r-33,-22r-35,22r-27,-4r62,-44","w":201},"\u00cb":{"d":"190,-27r0,27r-159,0r0,-247r156,0r0,27r-125,0r0,78r99,0r0,25r-99,0r0,90r128,0xm154,-297v0,11,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,18,8,18,18xm99,-297v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18","w":201},"\u00c8":{"d":"190,-27r0,27r-159,0r0,-247r156,0r0,27r-125,0r0,78r99,0r0,25r-99,0r0,90r128,0xm127,-265r-77,-33r12,-24r73,43","w":201},"\u00cf":{"d":"62,0r-31,0r0,-247r31,0r0,247xm90,-297v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18xm34,-297v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18","w":93},"\u00d3":{"d":"119,4v-139,-1,-136,-255,0,-255v69,0,101,64,101,125v0,60,-31,130,-101,130xm188,-125v0,-46,-21,-101,-68,-100v-55,0,-70,60,-70,104v0,42,17,99,69,99v53,0,69,-61,69,-103xm181,-298r-77,33r-7,-14r72,-43","w":237,"k":{"V":18,"W":13,"Y":27,"\u00dd":27,",":27,".":27,"X":9}},"\u00d4":{"d":"119,4v-139,-1,-136,-255,0,-255v69,0,101,64,101,125v0,60,-31,130,-101,130xm188,-125v0,-46,-21,-101,-68,-100v-55,0,-70,60,-70,104v0,42,17,99,69,99v53,0,69,-61,69,-103xm179,-278r-25,4r-33,-22r-36,22r-26,-4r62,-44","w":237,"k":{"V":18,"W":13,"Y":27,"\u00dd":27,",":27,".":27,"X":9}},"\u00d6":{"d":"119,4v-139,-1,-136,-255,0,-255v69,0,101,64,101,125v0,60,-31,130,-101,130xm188,-125v0,-46,-21,-101,-68,-100v-55,0,-70,60,-70,104v0,42,17,99,69,99v53,0,69,-61,69,-103xm165,-297v0,11,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,18,8,18,18xm109,-297v0,11,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,18,8,18,18","w":237,"k":{"V":18,"W":13,"Y":27,"\u00dd":27,",":27,".":27,"X":9}},"\u00d2":{"d":"119,4v-139,-1,-136,-255,0,-255v69,0,101,64,101,125v0,60,-31,130,-101,130xm188,-125v0,-46,-21,-101,-68,-100v-55,0,-70,60,-70,104v0,42,17,99,69,99v53,0,69,-61,69,-103xm127,-265r-77,-33r12,-24r73,43","w":237,"k":{"V":18,"W":13,"Y":27,"\u00dd":27,",":27,".":27,"X":9}},"\u00da":{"d":"71,-43v38,43,117,11,104,-48r0,-156r26,0r0,156v13,81,-96,132,-151,71v-44,-49,-13,-147,-20,-227r31,0v4,69,-11,150,10,204xm189,-298r-78,33r-7,-14r72,-43","w":230},"\u00db":{"d":"71,-43v38,43,117,11,104,-48r0,-156r26,0r0,156v13,81,-96,132,-151,71v-44,-49,-13,-147,-20,-227r31,0v4,69,-11,150,10,204xm175,-278r-25,4r-33,-22r-35,22r-27,-4r62,-44","w":230},"\u00dc":{"d":"71,-43v38,43,117,11,104,-48r0,-156r26,0r0,156v13,81,-96,132,-151,71v-44,-49,-13,-147,-20,-227r31,0v4,69,-11,150,10,204xm162,-297v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18xm106,-297v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18","w":230},"\u00d9":{"d":"71,-43v38,43,117,11,104,-48r0,-156r26,0r0,156v13,81,-96,132,-151,71v-44,-49,-13,-147,-20,-227r31,0v4,69,-11,150,10,204xm142,-265r-78,-33r13,-24r72,43","w":230},"\u00dd":{"d":"199,-247r-83,143r0,104r-31,0r0,-104r-82,-143r36,0r65,114r67,-114r28,0xm174,-298r-77,33r-7,-14r72,-43","w":201,"k":{"O":22,"\u00d8":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,",":63,".":63,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"e":36,"\u00e9":36,"\u00ea":36,"\u00eb":36,"\u00e8":36,"o":36,"\u00f8":36,"\u00f3":36,"\u00f4":36,"\u00f6":36,"\u00f2":36,"u":22,"\u00fa":22,"\u00fb":22,"\u00fc":22,"\u00f9":22}},"\u00e1":{"d":"84,-18v39,-1,60,-33,57,-74v-42,0,-97,-4,-97,42v0,23,20,32,40,32xm14,-52v0,-54,67,-66,127,-61v2,-36,-11,-54,-46,-53v-23,0,-45,8,-50,33r-26,-5v11,-56,95,-65,135,-32v31,41,4,110,19,170r-28,0r-4,-34v-22,56,-127,50,-127,-18xm162,-234r-78,33r-7,-14r72,-43"},"\u00e2":{"d":"84,-18v39,-1,60,-33,57,-74v-42,0,-97,-4,-97,42v0,23,20,32,40,32xm14,-52v0,-54,67,-66,127,-61v2,-36,-11,-54,-46,-53v-23,0,-45,8,-50,33r-26,-5v11,-56,95,-65,135,-32v31,41,4,110,19,170r-28,0r-4,-34v-22,56,-127,50,-127,-18xm154,-213r-25,3r-34,-22r-35,22r-26,-3r61,-45"},"\u00e4":{"d":"84,-18v39,-1,60,-33,57,-74v-42,0,-97,-4,-97,42v0,23,20,32,40,32xm14,-52v0,-54,67,-66,127,-61v2,-36,-11,-54,-46,-53v-23,0,-45,8,-50,33r-26,-5v11,-56,95,-65,135,-32v31,41,4,110,19,170r-28,0r-4,-34v-22,56,-127,50,-127,-18xm144,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18xm88,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18"},"\u00e0":{"d":"84,-18v39,-1,60,-33,57,-74v-42,0,-97,-4,-97,42v0,23,20,32,40,32xm14,-52v0,-54,67,-66,127,-61v2,-36,-11,-54,-46,-53v-23,0,-45,8,-50,33r-26,-5v11,-56,95,-65,135,-32v31,41,4,110,19,170r-28,0r-4,-34v-22,56,-127,50,-127,-18xm131,-201r-77,-33r12,-24r72,43"},"\u00e5":{"d":"84,-18v39,-1,60,-33,57,-74v-42,0,-97,-4,-97,42v0,23,20,32,40,32xm14,-52v0,-54,67,-66,127,-61v2,-36,-11,-54,-46,-53v-23,0,-45,8,-50,33r-26,-5v11,-56,95,-65,135,-32v31,41,4,110,19,170r-28,0r-4,-34v-22,56,-127,50,-127,-18xm104,-204v-17,0,-32,-14,-32,-32v0,-18,14,-33,32,-33v18,0,33,15,33,33v0,18,-15,32,-33,32xm104,-220v9,0,17,-7,17,-16v0,-9,-8,-16,-17,-16v-9,0,-16,7,-16,16v0,9,7,16,16,16"},"\u00e9":{"d":"45,-89v-3,36,21,69,54,69v24,0,41,-13,49,-35r27,5v-11,33,-43,54,-78,54v-55,0,-84,-44,-84,-95v0,-50,30,-97,85,-97v57,0,81,48,80,99r-133,0xm46,-110r101,0v0,-30,-17,-56,-49,-56v-31,0,-51,27,-52,56xm156,-234r-77,33r-7,-14r72,-43","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00ea":{"d":"45,-89v-3,36,21,69,54,69v24,0,41,-13,49,-35r27,5v-11,33,-43,54,-78,54v-55,0,-84,-44,-84,-95v0,-50,30,-97,85,-97v57,0,81,48,80,99r-133,0xm46,-110r101,0v0,-30,-17,-56,-49,-56v-31,0,-51,27,-52,56xm157,-213r-25,3r-33,-22r-35,22r-27,-3r62,-45","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00eb":{"d":"45,-89v-3,36,21,69,54,69v24,0,41,-13,49,-35r27,5v-11,33,-43,54,-78,54v-55,0,-84,-44,-84,-95v0,-50,30,-97,85,-97v57,0,81,48,80,99r-133,0xm46,-110r101,0v0,-30,-17,-56,-49,-56v-31,0,-51,27,-52,56xm144,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18xm88,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00e8":{"d":"45,-89v-3,36,21,69,54,69v24,0,41,-13,49,-35r27,5v-11,33,-43,54,-78,54v-55,0,-84,-44,-84,-95v0,-50,30,-97,85,-97v57,0,81,48,80,99r-133,0xm46,-110r101,0v0,-30,-17,-56,-49,-56v-31,0,-51,27,-52,56xm124,-201r-78,-33r13,-24r72,43","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00ef":{"d":"57,-183r0,183r-28,0r0,-183r28,0xm90,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18xm34,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18","w":86},"\u00f3":{"d":"15,-93v0,-51,29,-95,84,-95v54,0,80,47,80,95v0,51,-30,97,-85,97v-55,0,-79,-49,-79,-97xm97,-165v-34,0,-51,36,-51,72v0,36,15,73,51,73v35,0,51,-37,51,-73v0,-34,-17,-72,-51,-72xm156,-234r-77,33r-7,-14r72,-43","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f4":{"d":"15,-93v0,-51,29,-95,84,-95v54,0,80,47,80,95v0,51,-30,97,-85,97v-55,0,-79,-49,-79,-97xm97,-165v-34,0,-51,36,-51,72v0,36,15,73,51,73v35,0,51,-37,51,-73v0,-34,-17,-72,-51,-72xm161,-213r-25,3r-33,-22r-36,22r-26,-3r62,-45","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f6":{"d":"15,-93v0,-51,29,-95,84,-95v54,0,80,47,80,95v0,51,-30,97,-85,97v-55,0,-79,-49,-79,-97xm97,-165v-34,0,-51,36,-51,72v0,36,15,73,51,73v35,0,51,-37,51,-73v0,-34,-17,-72,-51,-72xm144,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18xm88,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f2":{"d":"15,-93v0,-51,29,-95,84,-95v54,0,80,47,80,95v0,51,-30,97,-85,97v-55,0,-79,-49,-79,-97xm97,-165v-34,0,-51,36,-51,72v0,36,15,73,51,73v35,0,51,-37,51,-73v0,-34,-17,-72,-51,-72xm124,-201r-78,-33r13,-24r72,43","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00fa":{"d":"89,-21v65,0,50,-93,51,-162r28,0r0,183r-25,0v-1,-11,2,-27,-1,-36v-9,23,-31,40,-56,40v-38,0,-61,-36,-61,-76r0,-111r28,0v6,61,-23,162,36,162xm171,-234r-78,33r-7,-14r72,-43"},"\u00fb":{"d":"89,-21v65,0,50,-93,51,-162r28,0r0,183r-25,0v-1,-11,2,-27,-1,-36v-9,23,-31,40,-56,40v-38,0,-61,-36,-61,-76r0,-111r28,0v6,61,-23,162,36,162xm157,-213r-25,3r-33,-22r-35,22r-27,-3r62,-45"},"\u00fc":{"d":"89,-21v65,0,50,-93,51,-162r28,0r0,183r-25,0v-1,-11,2,-27,-1,-36v-9,23,-31,40,-56,40v-38,0,-61,-36,-61,-76r0,-111r28,0v6,61,-23,162,36,162xm144,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18xm88,-240v0,11,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18v10,0,19,8,19,18"},"\u00f9":{"d":"89,-21v65,0,50,-93,51,-162r28,0r0,183r-25,0v-1,-11,2,-27,-1,-36v-9,23,-31,40,-56,40v-38,0,-61,-36,-61,-76r0,-111r28,0v6,61,-23,162,36,162xm106,-201r-78,-33r13,-24r72,43"},"\u00fd":{"d":"153,-183r-72,200v-7,31,-35,59,-76,45r0,-23v35,12,53,-13,59,-42r-63,-180r29,0r49,138r50,-138r24,0xm142,-234r-78,33r-7,-14r73,-43","w":151,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7}},"\u00ff":{"d":"153,-183r-72,200v-7,31,-35,59,-76,45r0,-23v35,12,53,-13,59,-42r-63,-180r29,0r49,138r50,-138r24,0xm122,-240v0,11,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,19,8,19,18xm66,-240v0,11,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,18,8,18,18","w":151,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7}},"\u00a0":{"w":108}}});Cufon.registerFont({"w":194,"face":{"font-family":"book","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 4 3 5 2 2 2 4","ascent":"247","descent":"-113","x-height":"4","bbox":"-15 -336 328 90","underline-thickness":"18","underline-position":"-18","stemh":"41","stemv":"53","unicode-range":"U+0020-U+2026"},"glyphs":{" ":{"w":108},"!":{"d":"86,0r-56,0r0,-56r56,0r0,56xm41,-74r-18,-173r70,0r-18,173r-34,0","w":115},"\"":{"d":"15,-247r50,0v3,39,-5,67,-15,93r-19,0v-11,-26,-19,-53,-16,-93xm100,-247r50,0v3,39,-5,67,-15,93r-19,0v-11,-26,-19,-53,-16,-93","w":165},"#":{"d":"80,-251r38,0r-14,71r36,0r14,-71r38,0r-14,71r29,0r0,39r-35,0r-9,42r34,0r0,39r-43,0r-11,60r-39,0r12,-60r-36,0r-12,60r-38,0r12,-60r-33,0r0,-39r41,0r8,-42r-34,0r0,-39r42,0xm96,-141r-8,42r37,0r9,-42r-38,0","w":216},"$":{"d":"123,-7r0,34r-30,0r0,-34v-38,-4,-70,-24,-79,-63r50,-11v6,24,24,32,47,32v16,0,36,-6,36,-25v0,-19,-26,-22,-40,-25v-41,-9,-81,-21,-81,-71v0,-39,30,-67,67,-72r0,-29r30,0r0,29v34,3,61,20,72,53r-45,15v-7,-19,-18,-27,-39,-27v-14,0,-32,3,-32,21v9,36,64,24,91,41v61,38,23,136,-47,132","w":216},"%":{"d":"79,-182v-1,-17,1,-44,-19,-43v-19,0,-17,28,-17,41v0,13,-1,41,17,41v19,0,19,-26,19,-39xm43,0r138,-247r28,0r-137,247r-29,0xm211,-62v-1,-17,1,-44,-18,-43v-19,0,-18,28,-18,41v0,13,0,41,18,41v19,0,18,-26,18,-39xm60,-120v-36,0,-50,-32,-50,-64v0,-32,14,-63,50,-63v36,0,52,31,52,63v0,32,-16,64,-52,64xm193,0v-36,0,-51,-32,-51,-64v0,-32,15,-63,51,-63v36,0,51,31,51,63v0,32,-15,64,-51,64","w":252},"&":{"d":"120,-213v-35,3,-23,37,1,52v30,-4,36,-53,-1,-52xm175,-23v-55,52,-171,28,-171,-52v0,-36,29,-58,61,-69v-12,-15,-23,-29,-23,-49v2,-79,152,-78,150,4v0,30,-20,48,-46,58r34,38v12,-13,18,-31,22,-48r51,6v-6,29,-21,56,-40,78v11,12,20,14,40,11r0,43v-32,7,-59,2,-78,-20xm145,-56r-50,-56v-17,6,-29,15,-29,35v1,39,54,44,79,21","w":259},"\u2019":{"d":"30,-146r25,-49r-25,0r0,-52r52,0r0,45r-32,56r-20,0","w":108,"k":{"\u2019":36,"v":14,"r":31,"l":14,"s":29,"t":11,"d":32}},"(":{"d":"66,-247r40,0v-57,92,-57,217,-1,309r-39,0v-67,-88,-70,-221,0,-309","w":136},")":{"d":"15,-247r40,0v70,87,69,221,1,309r-39,0v55,-93,55,-217,-2,-309","w":136},"*":{"d":"95,-193r-1,-54r28,0r-1,54r51,-18r9,27r-52,16r33,42r-23,17r-31,-45r-30,46r-24,-18r34,-42r-53,-16r9,-27","w":216},"+":{"d":"86,-191r44,0r0,66r65,0r0,43r-65,0r0,65r-44,0r0,-65r-65,0r0,-43r65,0r0,-66","w":216},",":{"d":"82,-56r0,51r-36,63r-20,0r28,-58r-28,0r0,-56r56,0","w":108,"k":{"\u201d":36,"\u2019":36," ":18}},"-":{"d":"0,-112r84,0r0,39r-84,0r0,-39","w":86},".":{"d":"82,0r-56,0r0,-56r56,0r0,56","w":108,"k":{"\u201d":36,"\u2019":36}},"\/":{"d":"31,62r-36,0r176,-309r36,0","w":216},"0":{"d":"107,4v-69,0,-95,-69,-95,-128v0,-59,26,-127,95,-127v71,0,97,66,97,127v0,61,-26,128,-97,128xm145,-121v0,-36,1,-88,-38,-88v-38,0,-35,59,-35,85v0,36,0,85,35,85v37,0,38,-47,38,-82","w":216},"1":{"d":"19,-147r0,-51v31,-9,66,-22,84,-49r42,0r0,202r68,0r0,45r-200,0r0,-45r75,0r0,-139","w":216},"2":{"d":"111,-251v47,0,91,32,89,77v-2,68,-71,94,-115,125r119,0r-5,49r-185,0r0,-48r92,-70v17,-15,35,-31,35,-55v0,-19,-14,-32,-33,-32v-28,0,-40,22,-43,47r-51,-11v10,-52,43,-82,97,-82","w":216},"3":{"d":"142,-73v2,-31,-35,-36,-69,-33r0,-43v33,2,65,-1,64,-30v0,-17,-16,-29,-34,-29v-21,0,-33,13,-37,32r-51,-9v10,-43,47,-66,90,-66v42,0,89,20,89,68v1,28,-20,45,-43,54v30,6,50,26,50,58v0,71,-104,98,-160,56v-18,-14,-30,-34,-34,-57r53,-7v1,45,79,54,82,6","w":216},"4":{"d":"51,-99r68,0r0,-104xm174,-99r34,0r0,42r-34,0r0,57r-58,0r0,-57r-108,0r0,-42r100,-148r66,0r0,148","w":216},"5":{"d":"202,-83v0,104,-175,122,-193,16r54,-8v4,45,81,43,81,-4v0,-40,-57,-53,-75,-20r-47,-8r10,-140r156,0r-7,51r-108,0r-4,55v46,-49,133,-9,133,58","w":216},"6":{"d":"12,-122v0,-64,36,-129,102,-129v43,0,77,24,86,66r-50,14v-3,-19,-14,-38,-36,-38v-41,1,-47,49,-43,82v35,-57,132,-21,132,48v0,46,-42,83,-89,83v-74,0,-102,-60,-102,-126xm110,-37v24,0,37,-19,37,-41v0,-21,-16,-37,-37,-37v-21,0,-38,17,-38,38v0,22,15,40,38,40","w":216},"7":{"d":"65,0v1,-82,38,-150,84,-196r-126,0r5,-51r173,0r0,44v-42,49,-73,116,-70,203r-66,0","w":216},"8":{"d":"122,-149v44,-10,25,-64,-15,-64v-17,0,-33,7,-33,26v0,24,30,31,48,38xm150,-62v-1,-27,-35,-35,-57,-41v-17,5,-31,15,-31,34v0,26,25,33,46,33v17,0,42,-5,42,-26xm19,-177v-1,-44,45,-74,90,-74v41,0,89,18,89,66v0,24,-15,43,-37,52v27,12,45,29,45,60v0,50,-53,77,-102,77v-46,0,-94,-26,-94,-71v0,-30,18,-45,44,-55v-21,-11,-35,-30,-35,-55","w":216},"9":{"d":"202,-127v0,64,-34,131,-101,131v-41,0,-71,-20,-81,-60r51,-10v5,32,52,34,65,7v7,-13,9,-38,9,-60v-40,52,-131,20,-131,-50v0,-54,41,-82,91,-82v72,0,97,61,97,124xm105,-210v-21,0,-36,17,-36,38v0,22,15,37,36,37v21,0,38,-17,38,-37v0,-21,-17,-38,-38,-38","w":216},":":{"d":"84,0r-57,0r0,-56r57,0r0,56xm84,-127r-57,0r0,-56r57,0r0,56","w":108},";":{"d":"82,-56r0,51r-36,63r-20,0r28,-58r-28,0r0,-56r56,0xm82,-127r-56,0r0,-56r56,0r0,56","w":108},"<":{"d":"20,-82r0,-43r176,-66r0,47r-113,40r113,41r0,46","w":216},"=":{"d":"21,-168r174,0r0,43r-174,0r0,-43xm21,-82r174,0r0,43r-174,0r0,-43","w":216},">":{"d":"20,-191r176,66r0,43r-176,65r0,-46r113,-41r-113,-40r0,-47","w":216},"?":{"d":"72,-70v0,-42,-2,-53,33,-73v26,-15,28,-64,-10,-63v-26,0,-34,24,-35,45r-50,-7v6,-49,39,-83,90,-83v44,0,84,27,84,74v0,29,-17,50,-40,65v-20,13,-26,16,-25,42r-47,0xm124,0r-57,0r0,-56r57,0r0,56"},"@":{"d":"147,-153v-36,-2,-48,65,-7,67v38,2,48,-66,7,-67xm150,-251v59,-1,116,45,116,103v0,72,-55,98,-83,98v-11,0,-21,-5,-20,-17v-32,36,-89,4,-89,-44v0,-58,70,-105,109,-57r4,-17r32,0r-17,98v-1,6,-2,12,4,12v8,0,33,-28,33,-62v0,-54,-39,-84,-90,-84v-57,0,-94,42,-94,97v0,88,104,123,164,75r18,17v-18,19,-47,36,-85,36v-72,0,-130,-54,-130,-128v0,-72,57,-127,128,-127","w":288},"A":{"d":"148,-247r78,247r-63,0r-15,-51r-80,0r-15,51r-51,0r79,-247r67,0xm82,-96r53,0r-26,-87","w":230,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":13,"W":7,"Y":20,"\u00dd":20,"\u201d":36,"\u2019":25}},"B":{"d":"228,-67v0,42,-46,67,-94,67r-111,0r0,-247r111,0v45,-5,87,24,87,65v0,29,-21,46,-45,54v31,6,52,29,52,61xm161,-177v0,-33,-45,-26,-80,-26r0,54v37,0,80,6,80,-28xm167,-77v-1,-34,-48,-28,-86,-28r0,59v40,0,87,7,86,-31","w":237},"C":{"d":"222,-155r-60,4v0,-27,-10,-53,-42,-53v-41,0,-44,53,-44,83v0,34,3,77,47,77v27,0,40,-22,43,-46r56,4v-6,57,-45,90,-102,90v-73,0,-109,-60,-109,-127v0,-68,37,-128,111,-128v62,0,94,37,100,96","w":237},"D":{"d":"225,-124v0,67,-51,124,-122,124r-81,0r0,-247r71,0v75,-10,132,54,132,123xm165,-126v0,-46,-28,-87,-86,-76r0,156v59,10,86,-31,86,-80","w":237,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,",":14,".":14}},"E":{"d":"199,-199r-119,0r0,50r94,0r0,46r-94,0r0,55r119,0r0,48r-177,0r0,-247r177,0r0,48","w":208},"F":{"d":"198,-199r-118,0r0,56r94,0r0,47r-94,0r0,96r-58,0r0,-247r176,0r0,48","k":{"\u00eb":7,"\u00e0":14,"\u00e4":14,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,",":45,".":45,"a":14,"\u00e6":14,"\u00e1":14,"\u00e2":14,"\u00e5":14,"e":7,"\u00e9":7,"\u00ea":7,"\u00e8":7,"i":-9,"\u00ef":-9,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"r":18}},"G":{"d":"160,-86r-47,0r0,-46r102,0r0,132r-26,0r-9,-28v-18,22,-38,32,-67,32v-72,0,-102,-60,-102,-125v0,-67,32,-130,107,-130v53,0,89,33,97,85r-55,8v-3,-25,-15,-46,-43,-46v-41,0,-47,52,-47,83v0,32,9,78,49,78v25,0,42,-18,41,-43","w":237},"H":{"d":"213,-247r0,247r-57,0r0,-102r-77,0r0,102r-57,0r0,-247r57,0r0,97r77,0r0,-97r57,0","w":237},"I":{"d":"81,-247r0,247r-58,0r0,-247r58,0","w":108},"J":{"d":"5,-48v33,9,59,0,59,-35r0,-164r58,0r0,171v6,71,-50,89,-117,76r0,-48","w":144},"K":{"d":"80,-247r0,116r77,-116r55,0r-59,88r74,159r-64,0r-49,-107r-34,50r0,57r-57,0r0,-247r57,0","w":230,"k":{"y":14,"\u00fd":14,"\u00ff":14,"O":9,"\u00d8":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5}},"L":{"d":"78,-49r100,0r0,49r-157,0r0,-247r57,0r0,198","w":180,"k":{"y":9,"\u00fd":9,"\u00ff":9,"T":25,"V":27,"W":18,"Y":32,"\u00dd":32,"\u201d":27,"\u2019":27}},"M":{"d":"234,-201r-62,201r-40,0r-61,-201r0,201r-48,0r0,-247r90,0r43,148r46,-148r90,0r0,247r-58,0r0,-201","w":316},"N":{"d":"212,-247r0,247r-49,0r-96,-166r0,166r-45,0r0,-247r63,0r83,145r0,-145r44,0","w":237},"O":{"d":"223,-124v0,64,-41,128,-105,128v-66,0,-106,-64,-106,-128v0,-66,33,-127,106,-127v65,0,105,64,105,127xm162,-123v0,-34,-7,-80,-44,-80v-37,0,-46,44,-46,79v0,31,5,80,46,80v38,0,44,-44,44,-79","w":237,"k":{"V":7,"W":7,"Y":20,"\u00dd":20,",":7,".":7,"X":9}},"P":{"d":"214,-171v0,49,-45,88,-97,80r-37,0r0,91r-58,0r0,-247r93,0v52,-6,99,27,99,76xm156,-169v1,-34,-38,-35,-76,-33r0,66v38,2,75,3,76,-33","w":223,"k":{"\u00e4":9,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,",":63,".":63,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e0":9,"\u00e5":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9}},"Q":{"d":"118,-203v-37,0,-46,44,-46,79v0,31,5,80,46,80v38,0,44,-44,44,-79v0,-34,-7,-80,-44,-80xm137,2v-80,17,-125,-56,-125,-126v0,-66,33,-127,106,-127v113,0,142,185,53,239v-1,23,24,22,44,17r0,44v-41,9,-77,-2,-78,-47","w":237},"R":{"d":"127,-247v51,-6,95,26,95,74v0,28,-16,54,-43,64r46,109r-64,0r-38,-98r-42,0r0,98r-58,0r0,-247r104,0xm162,-173v-1,-35,-44,-31,-81,-30r0,63v40,1,82,4,81,-33","w":237,"k":{"O":4,"\u00d8":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"V":7,"W":7,"Y":7,"\u00dd":7}},"S":{"d":"14,-172v0,-91,157,-111,182,-21r-49,17v-7,-21,-20,-30,-42,-30v-15,0,-34,4,-34,23v0,18,21,23,35,25v45,6,97,29,97,80v0,99,-183,114,-202,13r53,-12v7,26,26,35,52,35v17,0,38,-6,38,-27v0,-21,-28,-24,-43,-27v-44,-9,-87,-22,-87,-76","w":216},"T":{"d":"187,-247r0,49r-62,0r0,198r-58,0r0,-198r-62,0r0,-49r182,0","k":{"\u00fc":20,"\u00f2":22,"\u00f6":22,"\u00e8":22,"\u00eb":22,"\u00ea":22,"\u00e5":22,"\u00e0":22,"\u00e4":22,"\u00e2":22,"w":20,"y":18,"\u00fd":18,"\u00ff":18,"A":23,"\u00c6":23,"\u00c1":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u00c5":23,",":27,".":18,"a":22,"\u00e6":22,"\u00e1":22,"e":22,"\u00e9":22,"i":-9,"\u00ef":-9,"o":22,"\u00f8":22,"\u00f3":22,"\u00f4":22,"r":20,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,"-":14}},"U":{"d":"81,-98v-10,48,44,73,78,42v17,-51,2,-127,7,-191r50,0r0,149v0,27,1,56,-20,76v-40,36,-110,36,-152,4v-25,-19,-25,-50,-25,-80r0,-149r62,0r0,149","w":237},"V":{"d":"213,-247r-74,247r-62,0r-74,-247r61,0r50,176r51,-176r48,0","w":216,"k":{"\u00f6":22,"\u00f4":22,"\u00e8":22,"\u00eb":22,"\u00ea":22,"\u00e5":18,"\u00e0":18,"\u00e4":18,"\u00e2":18,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,",":27,".":27,"a":18,"\u00e6":18,"\u00e1":18,"e":22,"\u00e9":22,"i":-9,"\u00ef":-9,"o":22,"\u00f8":22,"\u00f3":22,"\u00f2":22,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13}},"W":{"d":"320,-247r-62,247r-57,0r-41,-163r-39,163r-56,0r-64,-247r59,0r39,166r40,-166r53,0r42,166r38,-166r48,0","w":324,"k":{"\u00fc":11,"\u00f6":14,"\u00ea":14,"\u00e4":20,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,",":27,".":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e0":20,"\u00e5":20,"e":14,"\u00e9":14,"\u00eb":14,"\u00e8":14,"o":14,"\u00f8":14,"\u00f3":14,"\u00f4":14,"\u00f2":14,"u":11,"\u00fa":11,"\u00fb":11,"\u00f9":11}},"X":{"d":"216,-247r-68,115r77,132r-67,0r-50,-90r-49,90r-55,0r76,-131r-68,-116r68,0r40,75r42,-75r54,0","w":230},"Y":{"d":"215,-247r-78,143r0,104r-57,0r0,-104r-79,-143r67,0r48,94r47,-94r52,0","w":216,"k":{"\u00fc":22,"\u00f6":27,"C":20,"O":20,"\u00d8":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,",":32,".":32,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"i":-7,"\u00ef":-7,"o":27,"\u00f8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"u":22,"\u00fa":22,"\u00fb":22,"\u00f9":22}},"Z":{"d":"220,-204r-125,157r129,0r0,47r-199,0r0,-42r124,-158r-116,0r0,-47r187,0r0,43","w":237},"[":{"d":"107,39r0,23r-77,0r0,-309r77,0r0,23r-36,0r0,263r36,0","w":136},"\\":{"d":"221,62r-36,0r-176,-309r36,0","w":216},"]":{"d":"30,62r0,-23r36,0r0,-263r-36,0r0,-23r77,0r0,309r-77,0","w":136},"^":{"d":"25,-94r60,-153r45,0r61,153r-41,0r-42,-108r-42,108r-41,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"\u2018":{"d":"82,-247r-25,49r25,0r0,52r-52,0r0,-46r32,-55r20,0","w":108,"k":{"\u2018":36,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25}},"a":{"d":"124,-114v3,-21,-5,-37,-26,-37v-17,0,-32,8,-32,26r-50,-4v9,-64,97,-70,145,-41v38,36,4,110,21,170r-53,0v-2,-9,-2,-19,-2,-28v-24,47,-116,44,-116,-20v0,-53,62,-65,113,-66xm90,-30v26,0,38,-29,34,-57v-20,2,-57,6,-57,33v0,14,8,24,23,24"},"b":{"d":"74,-103v-1,33,-2,70,28,70v30,0,30,-38,30,-58v0,-21,0,-59,-29,-59v-26,0,-29,28,-29,47xm20,0r0,-247r53,0v2,28,-4,63,2,87v9,-18,23,-26,44,-26v52,0,68,52,68,95v0,48,-19,95,-74,95v-26,0,-39,-10,-52,-32v-6,8,-9,18,-12,28r-29,0","k":{"v":13,"y":7,"\u00fd":7,"\u00ff":7}},"c":{"d":"181,-116r-50,3v0,-17,-9,-33,-28,-33v-29,0,-32,29,-32,52v0,22,0,54,30,54v19,0,28,-15,30,-32r50,3v-4,45,-38,73,-83,73v-55,0,-88,-40,-88,-94v0,-56,34,-96,92,-96v42,0,75,27,79,70"},"d":{"d":"176,0r-50,0v-1,-9,2,-21,-1,-28v-10,19,-25,32,-48,32v-51,0,-66,-51,-66,-93v0,-44,14,-97,67,-97v21,0,33,6,45,23r0,-84r53,0r0,247xm96,-35v29,0,28,-35,27,-67v0,-18,-1,-47,-25,-47v-30,0,-31,39,-31,61v0,20,3,53,29,53","k":{"w":7}},"e":{"d":"184,-82r-118,0v-12,51,62,66,68,19r49,4v0,9,-22,63,-84,63v-55,0,-90,-39,-90,-93v0,-54,32,-97,89,-97v53,0,90,50,86,104xm66,-114r65,0v-1,-20,-8,-38,-31,-38v-23,0,-32,17,-34,38","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"f":{"d":"25,-178v-6,-54,32,-86,90,-70r0,40v-25,-5,-42,2,-37,30r32,0r0,41r-32,0r0,137r-53,0r0,-137r-21,0r0,-41r21,0","w":108,"k":{"\u201d":-9,"\u2019":-9}},"g":{"d":"202,5v-1,46,-57,59,-106,59v-29,0,-94,-1,-94,-42v0,-19,14,-29,31,-33v-39,-16,-21,-68,14,-74v-20,-8,-33,-22,-33,-44v0,-61,81,-65,133,-50v3,-34,23,-37,56,-34r0,34v-16,-3,-33,-2,-35,14v10,11,14,21,14,36v-3,53,-64,61,-112,53v-5,3,-9,8,-9,14v3,26,46,15,73,18v32,4,68,9,68,49xm98,-157v-17,0,-30,10,-30,27v0,18,12,28,30,28v17,0,31,-9,31,-28v0,-18,-14,-27,-31,-27xm49,14v1,21,35,18,53,18v13,0,50,1,50,-18v0,-10,-12,-11,-20,-12v-13,-1,-48,-1,-72,-3v-6,3,-11,8,-11,15","w":201,"k":{"y":-7,"\u00fd":-7,"\u00ff":-7,",":-9,".":-5}},"h":{"d":"72,-158v28,-54,121,-24,104,42r0,116r-53,0r0,-99v0,-16,2,-45,-21,-45v-52,0,-23,91,-30,144r-53,0r0,-247r53,0r0,89","k":{"y":9,"\u00fd":9,"\u00ff":9}},"i":{"d":"73,-183r0,183r-53,0r0,-183r53,0xm73,-251r0,52r-53,0r0,-52r53,0","w":93},"j":{"d":"72,-16v9,77,-30,84,-87,77r0,-42v26,7,34,-14,34,-35r0,-167r53,0r0,167xm72,-251r0,52r-53,0r0,-52r53,0","w":93},"k":{"d":"141,-121r60,121r-60,0r-38,-83r-30,36r0,47r-53,0r0,-247r53,0r0,148v20,-30,45,-56,68,-84r52,0","w":201,"k":{"y":13,"\u00fd":13,"\u00ff":13,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7}},"l":{"d":"20,0r0,-247r53,0r0,247r-53,0","w":93},"m":{"d":"201,-144v-48,7,-20,92,-27,144r-53,0r0,-97v0,-19,3,-47,-24,-47v-28,0,-26,27,-26,47r0,97r-53,0r0,-183r50,0v1,9,-2,21,1,28v16,-42,85,-42,101,0v9,-22,30,-31,53,-31v37,0,62,34,54,72r0,114r-53,0r0,-97v2,-21,1,-50,-23,-47","w":295,"k":{"y":9,"\u00fd":9,"\u00ff":9}},"n":{"d":"99,-144v-48,0,-21,93,-28,144r-53,0r0,-183r50,0v1,10,-2,23,1,31v11,-23,25,-34,52,-34v76,0,52,107,55,186r-53,0r0,-98v0,-19,3,-46,-24,-46","k":{"v":7,"y":9,"\u00fd":9,"\u00ff":9}},"o":{"d":"96,-186v57,0,89,42,89,96v0,52,-35,94,-89,94v-56,0,-86,-43,-86,-96v0,-53,30,-94,86,-94xm128,-90v0,-25,-3,-62,-31,-62v-28,0,-30,34,-30,55v0,21,-1,65,29,65v30,0,32,-36,32,-58","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"p":{"d":"103,-149v-27,1,-32,33,-29,64v-3,24,6,52,29,51v27,0,28,-40,28,-59v0,-19,-1,-56,-28,-56xm119,-186v46,0,67,48,67,95v0,45,-16,95,-69,95v-19,1,-33,-10,-43,-24r0,82r-53,0r0,-245r50,0r0,27v10,-20,25,-30,48,-30","k":{"y":5,"\u00fd":5,"\u00ff":5}},"q":{"d":"95,-34v29,-1,30,-39,30,-73v0,-19,-5,-43,-29,-43v-30,0,-29,37,-29,58v0,26,3,59,28,58xm124,62r0,-81v-10,15,-22,23,-42,23v-55,0,-72,-49,-72,-96v0,-47,21,-94,75,-94v25,0,39,7,52,29v6,-8,11,-17,14,-26r29,0v-7,74,-1,165,-3,245r-53,0"},"r":{"d":"21,-183r50,0r0,34v6,-22,19,-41,49,-37r0,53v-64,0,-42,75,-46,133r-53,0r0,-183","w":122,"k":{"v":-18,"y":-18,"\u00fd":-18,"\u00ff":-18,",":22,".":22,"r":-5,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"k":-7,"l":-7,"m":-5,"n":-5,"p":-5,"s":-5,"t":-18,":":-14,";":-14}},"s":{"d":"168,-59v-1,78,-147,89,-164,9r45,-7v4,19,24,25,41,25v10,0,32,-4,32,-18v-6,-26,-54,-13,-75,-26v-22,-8,-36,-26,-36,-49v2,-79,133,-82,150,-14r-39,11v-5,-17,-19,-25,-36,-25v-11,0,-27,4,-27,17v0,34,109,-5,109,77","w":180},"t":{"d":"124,-183r0,42r-39,0r0,73v-5,33,16,30,42,28r0,40v-28,6,-59,7,-81,-8v-27,-29,-9,-85,-14,-133r-30,0r0,-42r32,0r5,-54r46,-3r0,57r39,0","w":136},"u":{"d":"93,-39v49,0,23,-92,29,-144r53,0r0,183r-49,0v-1,-10,2,-23,-1,-31v-9,23,-27,35,-52,35v-77,0,-50,-108,-54,-187r53,0r0,115v0,15,2,29,21,29"},"v":{"d":"170,-183r-62,183r-42,0r-63,-183r56,0r35,116r36,-116r40,0","w":172,"k":{",":22,".":22}},"w":{"d":"264,-183r-55,183r-48,0r-29,-117r-28,117r-46,0r-56,-183r56,0r30,112r28,-112r49,0r27,112r30,-112r42,0","w":266,"k":{",":22,".":22,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7}},"x":{"d":"178,-183r-52,85r61,98r-61,0r-38,-63r-38,63r-46,0r61,-98r-52,-85r61,0r29,50r29,-50r46,0"},"y":{"d":"170,-183r-56,171v-12,50,-34,87,-99,74r0,-42v25,4,52,8,56,-20r-67,-183r58,0r34,109r34,-109r40,0","w":172,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7}},"z":{"d":"144,-183r0,34r-82,110r85,0r0,39r-144,0r0,-39r81,-107r-74,0r0,-37r134,0","w":151},"{":{"d":"48,-126r0,-76v3,-40,32,-48,71,-45r0,32v-18,-2,-35,3,-30,18r0,70v0,27,-26,29,-35,33v11,1,35,3,35,35r0,71v-5,13,12,21,30,18r0,32v-39,3,-71,-5,-71,-46r0,-75v0,-21,-23,-21,-30,-21r0,-30v7,0,30,1,30,-16","w":136},"|":{"d":"32,-270r44,0r0,360r-44,0r0,-360","w":108},"}":{"d":"89,-59r0,75v-3,40,-32,49,-71,46r0,-32v49,9,27,-49,30,-89v3,-33,25,-32,34,-36v-11,-1,-34,-6,-34,-32r0,-70v4,-14,-12,-21,-30,-18r0,-32v39,-3,71,4,71,45r0,76v0,17,23,16,30,16r0,30v-7,0,-30,0,-30,21","w":136},"~":{"d":"51,-83r-35,0v-2,-39,27,-79,74,-53r40,24v33,20,36,-4,36,-20r34,0v1,38,-27,79,-74,53r-45,-24v-31,-17,-30,8,-30,20","w":216},"'":{"d":"29,-247r50,0v3,39,-5,67,-15,93r-20,0v-10,-26,-18,-54,-15,-93","w":108},"\u201c":{"d":"77,-247r-25,49r25,0r0,52r-52,0r0,-46r32,-55r20,0xm148,-247r-25,49r25,0r0,52r-53,0r0,-46r33,-55r20,0","w":172,"k":{"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25}},"\u2013":{"d":"0,-112r180,0r0,39r-180,0r0,-39","w":180},"\u201d":{"d":"116,-146r-21,0r26,-49r-26,0r0,-52r53,0r0,45xm45,-146r-20,0r25,-49r-25,0r0,-52r52,0r0,45","w":172},"\u2026":{"d":"88,0r-56,0r0,-56r56,0r0,56xm208,0r-56,0r0,-56r56,0r0,56xm328,0r-57,0r0,-56r57,0r0,56","w":360},"`":{"d":"34,-261r79,39r-8,21r-82,-29","w":136},"\u00b4":{"d":"105,-261r12,31r-81,29r-9,-21","w":144},"\u00a8":{"d":"104,-212v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21xm46,-212v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,21,10,21,21v0,12,-9,21,-21,21","w":151},"\u00c6":{"d":"137,0r0,-57r-57,0r-26,57r-50,0r113,-247r192,0r0,48r-114,0r0,50r91,0r0,46r-91,0r0,55r114,0r0,48r-172,0xm97,-98r40,0r-1,-89","w":324},"\u00d8":{"d":"46,-23v-68,-75,-32,-228,74,-228v16,0,31,3,45,10r14,-28r33,0r-23,47v66,74,31,232,-74,226v-16,0,-30,-3,-45,-10r-18,31r-33,0xm158,-167r-64,117v6,4,14,7,22,7v54,-6,49,-78,42,-124xm77,-78r65,-119v-7,-5,-15,-7,-23,-7v-53,6,-52,80,-42,126","w":237,"k":{"V":7,"W":7,"Y":20,"\u00dd":20,",":7,".":7,"X":9}},"\u00e6":{"d":"172,-114r63,0v-2,-20,-7,-38,-31,-38v-22,0,-30,19,-32,38xm89,-30v25,0,38,-29,34,-57v-21,1,-57,6,-57,33v0,14,9,24,23,24xm123,-114v3,-23,-6,-38,-27,-38v-17,0,-29,11,-30,28r-49,-4v7,-60,90,-74,136,-42v36,-28,92,-19,115,17v14,21,16,47,16,71r-113,0v-1,24,6,47,34,47v18,0,29,-11,32,-28r47,4v-11,71,-111,83,-150,30v-28,48,-123,45,-123,-19v0,-60,68,-62,112,-66","w":295},"\u00f8":{"d":"68,-66r46,-80v-4,-4,-9,-6,-17,-6v-38,0,-30,50,-29,86xm126,-118r-45,81v42,20,55,-37,45,-81xm174,-203r-21,36v59,49,32,176,-57,171v-13,0,-25,-2,-35,-7r-14,25r-28,0r21,-38v-55,-48,-34,-176,56,-170v14,0,27,2,37,7r14,-24r27,0","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00c1":{"d":"148,-247r78,247r-63,0r-15,-51r-80,0r-15,51r-51,0r79,-247r67,0xm82,-96r53,0r-26,-87xm156,-325r12,31r-82,29r-9,-21","w":230,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":13,"W":7,"Y":20,"\u00dd":20,"\u201d":36,"\u2019":25}},"\u00c2":{"d":"148,-247r78,247r-63,0r-15,-51r-80,0r-15,51r-51,0r79,-247r67,0xm82,-96r53,0r-26,-87xm184,-271r-39,0r-31,-20r-30,20r-37,0r67,-54","w":230,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":13,"W":7,"Y":20,"\u00dd":20,"\u201d":36,"\u2019":25}},"\u00c4":{"d":"148,-247r78,247r-63,0r-15,-51r-80,0r-15,51r-51,0r79,-247r67,0xm82,-96r53,0r-26,-87xm144,-276v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,21,10,21,21v0,12,-9,21,-21,21xm85,-276v-12,0,-19,-10,-19,-21v0,-12,8,-21,20,-21v11,0,20,10,20,21v0,12,-9,21,-21,21","w":230,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":13,"W":7,"Y":20,"\u00dd":20,"\u201d":36,"\u2019":25}},"\u00c0":{"d":"148,-247r78,247r-63,0r-15,-51r-80,0r-15,51r-51,0r79,-247r67,0xm82,-96r53,0r-26,-87xm74,-325r79,38r-9,22r-81,-29","w":230,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":13,"W":7,"Y":20,"\u00dd":20,"\u201d":36,"\u2019":25}},"\u00c5":{"d":"148,-247r78,247r-63,0r-15,-51r-80,0r-15,51r-51,0r79,-247r67,0xm82,-96r53,0r-26,-87xm114,-265v-46,0,-41,-71,0,-71v20,0,35,15,35,35v0,20,-16,36,-35,36xm115,-287v8,0,14,-6,14,-14v0,-7,-6,-13,-14,-13v-8,0,-13,6,-13,14v0,7,6,13,13,13","w":230,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":13,"W":7,"Y":20,"\u00dd":20,"\u201d":36,"\u2019":25}},"\u00c9":{"d":"199,-199r-119,0r0,50r94,0r0,46r-94,0r0,55r119,0r0,48r-177,0r0,-247r177,0r0,48xm145,-325r12,31r-82,29r-9,-21","w":208},"\u00ca":{"d":"199,-199r-119,0r0,50r94,0r0,46r-94,0r0,55r119,0r0,48r-177,0r0,-247r177,0r0,48xm180,-271r-38,0r-31,-20r-31,20r-37,0r68,-54","w":208},"\u00cb":{"d":"199,-199r-119,0r0,50r94,0r0,46r-94,0r0,55r119,0r0,48r-177,0r0,-247r177,0r0,48xm140,-276v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21xm82,-276v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,21,10,21,21v0,12,-9,21,-21,21","w":208},"\u00c8":{"d":"199,-199r-119,0r0,50r94,0r0,46r-94,0r0,55r119,0r0,48r-177,0r0,-247r177,0r0,48xm70,-325r79,38r-8,22r-82,-29","w":208},"\u00cf":{"d":"81,-247r0,247r-58,0r0,-247r58,0xm81,-276v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,21,10,21,21v0,12,-9,21,-21,21xm22,-276v-12,0,-19,-10,-19,-21v0,-12,8,-21,20,-21v11,0,20,10,20,21v0,12,-9,21,-21,21","w":108},"\u00d3":{"d":"223,-124v0,64,-41,128,-105,128v-66,0,-106,-64,-106,-128v0,-66,33,-127,106,-127v65,0,105,64,105,127xm162,-123v0,-34,-7,-80,-44,-80v-37,0,-46,44,-46,79v0,31,5,80,46,80v38,0,44,-44,44,-79xm152,-325r12,31r-82,29r-9,-21","w":237,"k":{"V":7,"W":7,"Y":20,"\u00dd":20,",":7,".":7,"X":9}},"\u00d4":{"d":"223,-124v0,64,-41,128,-105,128v-66,0,-106,-64,-106,-128v0,-66,33,-127,106,-127v65,0,105,64,105,127xm162,-123v0,-34,-7,-80,-44,-80v-37,0,-46,44,-46,79v0,31,5,80,46,80v38,0,44,-44,44,-79xm187,-271r-38,0r-31,-20r-31,20r-37,0r68,-54","w":237,"k":{"V":7,"W":7,"Y":20,"\u00dd":20,",":7,".":7,"X":9}},"\u00d6":{"d":"223,-124v0,64,-41,128,-105,128v-66,0,-106,-64,-106,-128v0,-66,33,-127,106,-127v65,0,105,64,105,127xm162,-123v0,-34,-7,-80,-44,-80v-37,0,-46,44,-46,79v0,31,5,80,46,80v38,0,44,-44,44,-79xm147,-276v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21xm89,-276v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21","w":237,"k":{"V":7,"W":7,"Y":20,"\u00dd":20,",":7,".":7,"X":9}},"\u00d2":{"d":"223,-124v0,64,-41,128,-105,128v-66,0,-106,-64,-106,-128v0,-66,33,-127,106,-127v65,0,105,64,105,127xm162,-123v0,-34,-7,-80,-44,-80v-37,0,-46,44,-46,79v0,31,5,80,46,80v38,0,44,-44,44,-79xm58,-325r79,38r-9,22r-81,-29","w":237,"k":{"V":7,"W":7,"Y":20,"\u00dd":20,",":7,".":7,"X":9}},"\u00da":{"d":"81,-98v-10,48,44,73,78,42v17,-51,2,-127,7,-191r50,0r0,149v0,27,1,56,-20,76v-40,36,-110,36,-152,4v-25,-19,-25,-50,-25,-80r0,-149r62,0r0,149xm188,-325r12,31r-82,29r-9,-21","w":237},"\u00db":{"d":"81,-98v-10,48,44,73,78,42v17,-51,2,-127,7,-191r50,0r0,149v0,27,1,56,-20,76v-40,36,-110,36,-152,4v-25,-19,-25,-50,-25,-80r0,-149r62,0r0,149xm191,-271r-38,0r-32,-20r-30,20r-37,0r67,-54","w":237},"\u00dc":{"d":"81,-98v-10,48,44,73,78,42v17,-51,2,-127,7,-191r50,0r0,149v0,27,1,56,-20,76v-40,36,-110,36,-152,4v-25,-19,-25,-50,-25,-80r0,-149r62,0r0,149xm151,-276v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21xm93,-276v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,20,10,20,21v0,12,-8,21,-20,21","w":237},"\u00d9":{"d":"81,-98v-10,48,44,73,78,42v17,-51,2,-127,7,-191r50,0r0,149v0,27,1,56,-20,76v-40,36,-110,36,-152,4v-25,-19,-25,-50,-25,-80r0,-149r62,0r0,149xm59,-325r80,38r-9,22r-81,-29","w":237},"\u00dd":{"d":"215,-247r-78,143r0,104r-57,0r0,-104r-79,-143r67,0r48,94r47,-94r52,0xm161,-325r12,31r-82,29r-9,-21","w":216,"k":{"C":20,"O":20,"\u00d8":20,"\u00d3":20,"\u00d4":20,"\u00d6":20,"\u00d2":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,",":32,".":32,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"i":-7,"\u00ef":-7,"o":27,"\u00f8":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"u":22,"\u00fa":22,"\u00fb":22,"\u00fc":22,"\u00f9":22}},"\u00e1":{"d":"124,-114v3,-21,-5,-37,-26,-37v-17,0,-32,8,-32,26r-50,-4v9,-64,97,-70,145,-41v38,36,4,110,21,170r-53,0v-2,-9,-2,-19,-2,-28v-24,47,-116,44,-116,-20v0,-53,62,-65,113,-66xm90,-30v26,0,38,-29,34,-57v-20,2,-57,6,-57,33v0,14,8,24,23,24xm157,-261r13,31r-82,29r-9,-21"},"\u00e2":{"d":"124,-114v3,-21,-5,-37,-26,-37v-17,0,-32,8,-32,26r-50,-4v9,-64,97,-70,145,-41v38,36,4,110,21,170r-53,0v-2,-9,-2,-19,-2,-28v-24,47,-116,44,-116,-20v0,-53,62,-65,113,-66xm90,-30v26,0,38,-29,34,-57v-20,2,-57,6,-57,33v0,14,8,24,23,24xm169,-207r-38,0r-31,-20r-31,20r-37,0r68,-54"},"\u00e4":{"d":"124,-114v3,-21,-5,-37,-26,-37v-17,0,-32,8,-32,26r-50,-4v9,-64,97,-70,145,-41v38,36,4,110,21,170r-53,0v-2,-9,-2,-19,-2,-28v-24,47,-116,44,-116,-20v0,-53,62,-65,113,-66xm90,-30v26,0,38,-29,34,-57v-20,2,-57,6,-57,33v0,14,8,24,23,24xm133,-212v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21xm75,-212v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,20,10,20,21v0,12,-8,21,-20,21"},"\u00e0":{"d":"124,-114v3,-21,-5,-37,-26,-37v-17,0,-32,8,-32,26r-50,-4v9,-64,97,-70,145,-41v38,36,4,110,21,170r-53,0v-2,-9,-2,-19,-2,-28v-24,47,-116,44,-116,-20v0,-53,62,-65,113,-66xm90,-30v26,0,38,-29,34,-57v-20,2,-57,6,-57,33v0,14,8,24,23,24xm56,-261r79,39r-9,21r-81,-29"},"\u00e5":{"d":"124,-114v3,-21,-5,-37,-26,-37v-17,0,-32,8,-32,26r-50,-4v9,-64,97,-70,145,-41v38,36,4,110,21,170r-53,0v-2,-9,-2,-19,-2,-28v-24,47,-116,44,-116,-20v0,-53,62,-65,113,-66xm90,-30v26,0,38,-29,34,-57v-20,2,-57,6,-57,33v0,14,8,24,23,24xm104,-208v-48,0,-41,-71,0,-71v20,0,35,15,35,35v0,20,-16,36,-35,36xm104,-230v8,0,14,-6,14,-14v0,-7,-6,-13,-14,-13v-8,0,-13,6,-13,14v0,7,6,13,13,13"},"\u00e9":{"d":"184,-82r-118,0v-12,51,62,66,68,19r49,4v0,9,-22,63,-84,63v-55,0,-90,-39,-90,-93v0,-54,32,-97,89,-97v53,0,90,50,86,104xm66,-114r65,0v-1,-20,-8,-38,-31,-38v-23,0,-32,17,-34,38xm138,-261r12,31r-82,29r-9,-21","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00ea":{"d":"184,-82r-118,0v-12,51,62,66,68,19r49,4v0,9,-22,63,-84,63v-55,0,-90,-39,-90,-93v0,-54,32,-97,89,-97v53,0,90,50,86,104xm66,-114r65,0v-1,-20,-8,-38,-31,-38v-23,0,-32,17,-34,38xm166,-207r-39,0r-31,-20r-30,20r-37,0r67,-54","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00eb":{"d":"184,-82r-118,0v-12,51,62,66,68,19r49,4v0,9,-22,63,-84,63v-55,0,-90,-39,-90,-93v0,-54,32,-97,89,-97v53,0,90,50,86,104xm66,-114r65,0v-1,-20,-8,-38,-31,-38v-23,0,-32,17,-34,38xm126,-212v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,21,10,21,21v0,12,-9,21,-21,21xm67,-212v-12,0,-19,-10,-19,-21v0,-12,8,-21,20,-21v11,0,20,10,20,21v0,12,-9,21,-21,21","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00e8":{"d":"184,-82r-118,0v-12,51,62,66,68,19r49,4v0,9,-22,63,-84,63v-55,0,-90,-39,-90,-93v0,-54,32,-97,89,-97v53,0,90,50,86,104xm66,-114r65,0v-1,-20,-8,-38,-31,-38v-23,0,-32,17,-34,38xm56,-261r79,39r-9,21r-81,-29","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00ef":{"d":"73,-183r0,183r-53,0r0,-183r53,0xm75,-212v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21xm17,-212v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21","w":93},"\u00f3":{"d":"96,-186v57,0,89,42,89,96v0,52,-35,94,-89,94v-56,0,-86,-43,-86,-96v0,-53,30,-94,86,-94xm128,-90v0,-25,-3,-62,-31,-62v-28,0,-30,34,-30,55v0,21,-1,65,29,65v30,0,32,-36,32,-58xm138,-261r12,31r-82,29r-9,-21","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f4":{"d":"96,-186v57,0,89,42,89,96v0,52,-35,94,-89,94v-56,0,-86,-43,-86,-96v0,-53,30,-94,86,-94xm128,-90v0,-25,-3,-62,-31,-62v-28,0,-30,34,-30,55v0,21,-1,65,29,65v30,0,32,-36,32,-58xm166,-207r-39,0r-31,-20r-30,20r-37,0r67,-54","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f6":{"d":"96,-186v57,0,89,42,89,96v0,52,-35,94,-89,94v-56,0,-86,-43,-86,-96v0,-53,30,-94,86,-94xm128,-90v0,-25,-3,-62,-31,-62v-28,0,-30,34,-30,55v0,21,-1,65,29,65v30,0,32,-36,32,-58xm126,-212v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,21,10,21,21v0,12,-9,21,-21,21xm67,-212v-12,0,-19,-10,-19,-21v0,-12,8,-21,20,-21v11,0,20,10,20,21v0,12,-9,21,-21,21","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f2":{"d":"96,-186v57,0,89,42,89,96v0,52,-35,94,-89,94v-56,0,-86,-43,-86,-96v0,-53,30,-94,86,-94xm128,-90v0,-25,-3,-62,-31,-62v-28,0,-30,34,-30,55v0,21,-1,65,29,65v30,0,32,-36,32,-58xm56,-261r79,39r-9,21r-81,-29","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00fa":{"d":"93,-39v49,0,23,-92,29,-144r53,0r0,183r-49,0v-1,-10,2,-23,-1,-31v-9,23,-27,35,-52,35v-77,0,-50,-108,-54,-187r53,0r0,115v0,15,2,29,21,29xm157,-261r13,31r-82,29r-9,-21"},"\u00fb":{"d":"93,-39v49,0,23,-92,29,-144r53,0r0,183r-49,0v-1,-10,2,-23,-1,-31v-9,23,-27,35,-52,35v-77,0,-50,-108,-54,-187r53,0r0,115v0,15,2,29,21,29xm166,-207r-39,0r-31,-20r-30,20r-37,0r67,-54"},"\u00fc":{"d":"93,-39v49,0,23,-92,29,-144r53,0r0,183r-49,0v-1,-10,2,-23,-1,-31v-9,23,-27,35,-52,35v-77,0,-50,-108,-54,-187r53,0r0,115v0,15,2,29,21,29xm126,-212v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,21,10,21,21v0,12,-9,21,-21,21xm67,-212v-12,0,-19,-10,-19,-21v0,-12,8,-21,20,-21v11,0,20,10,20,21v0,12,-9,21,-21,21"},"\u00f9":{"d":"93,-39v49,0,23,-92,29,-144r53,0r0,183r-49,0v-1,-10,2,-23,-1,-31v-9,23,-27,35,-52,35v-77,0,-50,-108,-54,-187r53,0r0,115v0,15,2,29,21,29xm34,-261r79,39r-8,21r-82,-29"},"\u00fd":{"d":"170,-183r-56,171v-12,50,-34,87,-99,74r0,-42v25,4,52,8,56,-20r-67,-183r58,0r34,109r34,-109r40,0xm156,-261r12,31r-82,29r-9,-21","w":172,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7}},"\u00ff":{"d":"170,-183r-56,171v-12,50,-34,87,-99,74r0,-42v25,4,52,8,56,-20r-67,-183r58,0r34,109r34,-109r40,0xm122,-212v-12,0,-20,-10,-20,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,12,-9,21,-21,21xm64,-212v-12,0,-20,-10,-20,-21v0,-12,8,-21,20,-21v11,0,21,10,21,21v0,12,-9,21,-21,21","w":172,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7}},"\u00a0":{"w":108}}});
Cufon.registerFont({"w":216,"face":{"font-family":"heavy","font-weight":750,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 9 4 3 5 2 2 2 4","ascent":"247","descent":"-113","x-height":"4","bbox":"-20 -335 334 90","underline-thickness":"18","underline-position":"-18","stemh":"46","stemv":"71","unicode-range":"U+0020-U+2026"},"glyphs":{" ":{"w":108},"!":{"d":"100,-247r-20,164r-46,0r-19,-164r85,0xm92,-66r0,66r-69,0r0,-66r69,0","w":115},"\"":{"d":"102,-247r56,0r0,53r-17,51r-22,0r-17,-51r0,-53xm29,-247r56,0r0,53r-17,51r-22,0r-17,-51r0,-53","w":187},"#":{"d":"76,-251r43,0r-16,70r40,0r15,-70r43,0r-17,70r33,0r0,39r-40,0r-9,44r38,0r0,38r-48,0r-13,60r-41,0r13,-60r-41,0r-12,60r-42,0r12,-60r-35,0r0,-38r44,0r10,-44r-38,0r0,-39r46,0xm95,-141r-10,43r41,0r10,-43r-41,0"},"$":{"d":"208,-84v0,49,-42,70,-83,77r0,31r-34,0r0,-32v-40,-4,-74,-28,-83,-68r64,-12v6,20,20,28,40,28v9,0,26,-2,26,-15v0,-14,-17,-16,-27,-18v-43,-9,-91,-21,-91,-75v0,-41,32,-69,71,-74r0,-30r34,0v1,9,-2,23,1,30v36,4,63,21,76,56r-57,17v-6,-17,-19,-23,-36,-23v-10,0,-22,3,-22,15v0,12,16,14,25,16v45,7,96,26,96,77"},"%":{"d":"225,-247r-150,247r-34,0r151,-247r33,0xm216,-63v0,-47,-25,-54,-25,-3v0,33,5,39,12,39v8,0,13,-7,13,-36xm76,-183v0,-48,-26,-54,-26,-3v0,33,5,39,12,39v8,0,14,-7,14,-36xm203,0v-68,0,-68,-127,0,-127v37,0,50,32,50,64v0,32,-15,63,-50,63xm113,-183v0,32,-15,63,-50,63v-68,0,-68,-127,0,-127v37,0,50,32,50,64","w":266},"&":{"d":"142,-60r-41,-45v-29,10,-21,55,13,55v10,0,21,-3,28,-10xm130,-206v-26,1,-16,34,1,41v21,-3,26,-42,-1,-41xm159,-129r26,26v11,-11,15,-26,18,-41r64,7v-6,28,-18,57,-40,77v13,9,23,6,40,5r0,54v-33,9,-63,3,-87,-16v-56,40,-168,26,-170,-55v0,-37,25,-56,57,-68v-11,-14,-20,-30,-20,-49v1,-84,158,-85,159,-1v0,30,-19,52,-47,61","w":280},"\u2019":{"d":"87,-247r0,52r-34,55r-29,0r25,-49r-25,0r0,-58r63,0","w":108,"k":{"\u2019":36,"v":14,"r":31,"l":14,"s":40,"t":11,"d":31}},"(":{"d":"73,-247r49,0v-66,84,-56,227,0,305v-16,-2,-40,4,-51,-3v-67,-74,-76,-224,2,-302","w":136},")":{"d":"14,-247r49,0v79,79,69,231,0,305r-49,0v56,-80,66,-220,0,-305","w":136},"*":{"d":"172,-121r-36,26r-29,-48r-28,48r-36,-26r36,-40r-53,-13r14,-39r51,21r-5,-55r43,0r-5,55r53,-21r13,39r-54,13"},"+":{"d":"81,-131r0,-65r54,0r0,65r65,0r0,54r-65,0r0,65r-54,0r0,-65r-65,0r0,-54r65,0"},",":{"d":"88,-66r0,61r-40,68r-28,0r28,-63r-28,0r0,-66r68,0","w":108,"k":{"\u201d":36,"\u2019":36," ":18}},"-":{"d":"91,-127r0,56r-91,0r0,-56r91,0","w":93},".":{"d":"89,-66r0,66r-69,0r0,-66r69,0","w":108,"k":{"\u201d":36,"\u2019":36}},"\/":{"d":"204,-247r-176,309r-48,0r177,-309r47,0"},"0":{"d":"10,-122v0,-62,25,-129,98,-129v73,0,98,67,98,129v0,61,-27,126,-98,126v-71,0,-98,-65,-98,-126xm135,-121v0,-56,-7,-78,-27,-78v-12,0,-27,5,-27,78v0,69,17,73,27,73v9,0,27,-1,27,-73"},"1":{"d":"145,-55r58,0r0,55r-190,0r0,-55r61,0r0,-117v-18,7,-35,15,-54,18r0,-56v26,-6,57,-18,71,-41r54,0r0,196"},"2":{"d":"202,-60r-3,60r-188,0r0,-57r84,-63v15,-13,33,-27,33,-49v0,-14,-9,-26,-24,-26v-23,0,-30,24,-31,43r-62,-13v7,-53,45,-86,98,-86v49,0,91,27,91,80v0,59,-60,81,-95,111r97,0"},"3":{"d":"110,-251v44,0,88,26,88,69v0,24,-12,45,-36,53v28,9,44,27,44,58v0,55,-50,75,-98,75v-54,0,-92,-25,-105,-79r64,-9v-1,37,65,50,67,8v1,-26,-32,-26,-62,-24r0,-52v27,1,59,2,57,-22v-3,-34,-56,-28,-57,5r-60,-10v11,-48,50,-72,98,-72"},"4":{"d":"210,-54r-35,0r0,54r-68,0r0,-54r-101,0r0,-54r93,-143r76,0r0,143r35,0r0,54xm107,-108r0,-74r-47,74r47,0"},"5":{"d":"79,-151v53,-37,125,4,125,67v0,56,-47,88,-99,88v-49,0,-91,-26,-100,-76r63,-8v4,35,65,37,65,-2v0,-33,-47,-41,-60,-15r-56,-8r10,-142r165,0r-6,61r-104,0"},"6":{"d":"200,-177r-63,7v-1,-15,-6,-29,-24,-29v-28,0,-31,43,-31,64v39,-51,125,-12,125,54v0,53,-45,85,-95,85v-71,0,-103,-57,-103,-121v0,-65,28,-134,103,-134v46,0,82,27,88,74xm111,-46v35,0,34,-60,0,-60v-17,0,-29,14,-29,30v0,17,12,30,29,30"},"7":{"d":"199,-247r0,46v-42,54,-69,127,-64,201r-82,0v2,-68,33,-135,78,-185r-114,0r5,-62r177,0"},"8":{"d":"15,-175v-2,-46,48,-76,95,-76v40,0,91,18,91,66v0,25,-12,38,-32,51v25,13,40,31,40,60v0,59,-55,78,-105,78v-47,0,-99,-23,-97,-69v0,-27,15,-46,39,-56v-21,-12,-31,-31,-31,-54xm82,-183v2,20,26,21,40,30v27,-10,15,-49,-16,-49v-12,0,-24,6,-24,19xm138,-63v0,-23,-31,-24,-49,-33v-29,12,-15,52,19,52v12,0,30,-4,30,-19"},"9":{"d":"206,-129v0,67,-37,133,-106,133v-43,0,-76,-22,-83,-66r63,-10v2,12,10,22,23,22v30,-1,35,-37,32,-61v-38,53,-125,11,-125,-55v0,-55,44,-85,95,-85v73,0,101,56,101,122xm103,-140v18,0,29,-13,29,-30v0,-16,-10,-30,-27,-30v-18,0,-26,14,-26,30v0,15,7,30,24,30"},":":{"d":"89,-184r0,66r-69,0r0,-66r69,0xm89,-66r0,66r-69,0r0,-66r69,0","w":108},";":{"d":"88,-66r0,61r-39,68r-29,0r29,-63r-29,0r0,-66r68,0xm89,-184r0,66r-69,0r0,-66r69,0","w":108},"<":{"d":"199,-65r0,60r-183,-71r0,-57r183,-71r0,60r-107,40"},"=":{"d":"16,-120r0,-54r184,0r0,54r-184,0xm16,-33r0,-54r184,0r0,54r-184,0"},">":{"d":"16,-5r0,-60r107,-39r-107,-40r0,-60r183,71r0,57"},"?":{"d":"80,-78v-10,-51,45,-59,47,-99v0,-13,-7,-23,-20,-23v-23,1,-27,22,-27,42r-66,-8v10,-55,41,-85,98,-85v48,0,91,26,91,78v0,50,-52,54,-63,95r-60,0xm147,-66r0,66r-69,0r0,-66r69,0"},"@":{"d":"146,-148v-30,-1,-40,55,-6,57v33,3,41,-56,6,-57xm150,-251v59,-1,116,45,116,103v0,77,-62,98,-84,98v-11,0,-20,-5,-19,-17v-32,36,-89,4,-89,-44v0,-56,68,-103,106,-60r4,-14r35,0r-17,98v-1,6,-3,12,4,12v12,0,29,-25,29,-62v0,-54,-35,-80,-86,-80v-56,0,-90,38,-90,93v0,85,93,115,153,79r20,18v-20,17,-43,31,-80,31v-72,0,-130,-54,-130,-128v0,-72,57,-127,128,-127","w":288},"A":{"d":"160,0r-14,-49r-66,0r-15,49r-62,0r77,-247r80,0r77,247r-77,0xm93,-103r40,0r-20,-71","w":237,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":22,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"B":{"d":"140,-247v43,-4,80,26,80,65v0,27,-19,46,-42,54v54,6,65,86,23,114v-46,30,-117,9,-182,14r0,-247r121,0xm153,-77v0,-26,-35,-24,-64,-23r0,45v29,0,64,5,64,-22xm89,-152v27,0,60,5,59,-21v-2,-28,-33,-20,-59,-21r0,42","w":237},"C":{"d":"155,-94r69,4v-5,57,-46,94,-103,94v-74,0,-113,-54,-113,-124v0,-71,34,-131,112,-131v63,0,99,37,104,99r-70,4v1,-21,-7,-47,-33,-47v-33,0,-35,52,-35,75v0,25,2,67,36,67v23,0,32,-20,33,-41","w":237,"k":{"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7}},"D":{"d":"239,-123v0,66,-54,123,-124,123r-96,0r0,-247r91,0v73,-8,129,55,129,124xm159,-125v0,-36,-19,-76,-64,-66r0,134v48,7,64,-28,64,-68","w":244,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,",":14,".":14}},"E":{"d":"204,-59r0,59r-185,0r0,-247r185,0r0,57r-111,0r0,36r90,0r0,55r-90,0r0,40r111,0"},"F":{"d":"173,-93r-80,0r0,93r-74,0r0,-247r179,0r0,59r-105,0r0,40r80,0r0,55","w":194,"k":{"\u00eb":7,"\u00e0":14,"\u00e4":14,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,",":45,".":45,"a":14,"\u00e6":14,"\u00e1":14,"\u00e2":14,"\u00e5":14,"e":7,"\u00e9":7,"\u00ea":7,"\u00e8":7,"i":-9,"\u00ef":-9,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"r":18}},"G":{"d":"88,-124v-1,32,9,69,41,69v19,0,33,-12,33,-31r-40,0r0,-52r111,0r0,138r-37,0r-10,-26v-15,21,-41,30,-67,30v-72,0,-111,-56,-111,-124v0,-68,49,-131,119,-131v57,0,95,29,106,86r-74,8v-3,-20,-11,-39,-34,-39v-35,0,-37,47,-37,72","w":244},"H":{"d":"228,-247r0,247r-75,0r0,-96r-59,0r0,96r-75,0r0,-247r75,0r0,91r59,0r0,-91r75,0","w":244},"I":{"d":"97,-247r0,247r-76,0r0,-247r76,0","w":115},"J":{"d":"8,-61v32,12,60,1,60,-35r0,-151r72,0v-5,79,14,167,-14,225v-26,34,-74,28,-118,20r0,-59","w":158},"K":{"d":"241,0r-83,0r-42,-93r-26,36r0,57r-72,0r0,-247r72,0r0,102r68,-102r68,0r-62,90","w":237,"k":{"y":14,"\u00fd":14,"\u00ff":14,"O":9,"\u00d8":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5}},"L":{"d":"194,-60r0,60r-173,0r0,-247r77,0r0,187r96,0","w":194,"k":{"y":9,"\u00fd":9,"\u00ff":9,"T":25,"V":27,"W":18,"Y":32,"\u00dd":32,"\u201d":27,"\u2019":27}},"M":{"d":"289,-247r0,247r-71,0r-1,-176r-45,176r-48,0r-47,-176r0,176r-57,0r0,-247r99,0r36,131r34,-131r100,0","w":309},"N":{"d":"232,0r-62,0r-71,-116r-22,-43v10,46,3,105,5,159r-61,0r0,-247r72,0r82,138v2,-20,-4,-47,-4,-69r0,-69r61,0r0,247","w":252},"O":{"d":"127,-251v75,0,118,54,118,128v0,70,-43,127,-118,127v-75,0,-118,-57,-118,-127v0,-74,43,-128,118,-128xm127,-195v-33,0,-37,49,-37,73v0,24,2,69,37,69v35,0,37,-45,37,-69v0,-24,-4,-73,-37,-73","w":252,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,",":7,".":7,"X":9}},"P":{"d":"229,-169v-2,62,-61,88,-134,79r0,90r-76,0r0,-247r101,0v56,-5,110,26,109,78xm95,-143v27,-1,58,6,58,-24v0,-30,-32,-22,-58,-23r0,47","w":237,"k":{"\u00e4":9,"A":32,"\u00c6":32,"\u00c1":32,"\u00c2":32,"\u00c4":32,"\u00c0":32,"\u00c5":32,",":63,".":63,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e0":9,"\u00e5":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9}},"Q":{"d":"163,-118v-1,-33,-2,-78,-37,-77v-37,0,-36,44,-36,71v0,27,-2,71,37,71v35,0,36,-39,36,-65xm8,-122v0,-67,50,-129,119,-129v120,0,157,165,72,228v5,17,29,14,44,10r0,56v-47,6,-82,1,-91,-43v-86,21,-144,-45,-144,-122","w":252},"R":{"d":"144,-247v49,-4,94,26,94,74v0,32,-15,52,-44,65r45,108r-84,0r-36,-94r-24,0r0,94r-77,0r0,-247r126,0xm159,-171v1,-26,-35,-24,-64,-23r0,47v29,-1,62,7,64,-24","w":244,"k":{"O":4,"\u00d8":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"V":7,"W":7,"Y":7,"\u00dd":7}},"S":{"d":"17,-170v-1,-96,174,-112,202,-20r-63,19v-7,-18,-21,-25,-40,-25v-10,0,-24,3,-24,16v0,13,18,16,27,18v49,6,110,27,107,82v-7,112,-203,112,-222,8r71,-12v6,22,23,30,45,30v10,0,29,-1,29,-15v0,-15,-20,-19,-31,-21v-46,-9,-101,-21,-101,-80","w":237},"T":{"d":"126,-188r0,188r-72,0r0,-188r-52,0r0,-59r175,0r0,59r-51,0","w":180,"k":{"\u00fc":20,"\u00f2":22,"\u00f6":22,"\u00e8":22,"\u00eb":22,"\u00ea":22,"\u00e5":22,"\u00e0":22,"\u00e4":22,"\u00e2":22,"w":20,"y":18,"\u00fd":18,"\u00ff":18,"A":23,"\u00c6":23,"\u00c1":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u00c5":23,",":27,".":18,"a":22,"\u00e6":22,"\u00e1":22,"e":22,"\u00e9":22,"i":-9,"\u00ef":-9,"o":22,"\u00f8":22,"\u00f3":22,"\u00f4":22,"r":20,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,"-":14}},"U":{"d":"125,-55v23,2,34,-18,34,-41r0,-151r60,0r0,159v9,57,-46,92,-101,92v-54,0,-102,-31,-102,-88r0,-163r77,0r0,154v-3,21,11,41,32,38","w":237},"V":{"d":"237,-247r-76,247r-78,0r-79,-247r79,0r46,158r46,-158r62,0","w":237,"k":{"\u00f6":22,"\u00f4":22,"\u00e8":22,"\u00eb":22,"\u00ea":22,"\u00e5":18,"\u00e0":18,"\u00e4":18,"\u00e2":18,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,",":27,".":27,"a":18,"\u00e6":18,"\u00e1":18,"e":22,"\u00e9":22,"i":-9,"\u00ef":-9,"o":22,"\u00f8":22,"\u00f3":22,"\u00f2":22,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13}},"W":{"d":"331,-247r-66,247r-63,0r-35,-136r-32,136r-67,0r-65,-247r71,0r35,143r33,-143r60,0r37,143r34,-143r58,0","w":331,"k":{"\u00fc":11,"\u00f6":14,"\u00ea":14,"\u00e4":20,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,",":27,".":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e0":20,"\u00e5":20,"e":14,"\u00e9":14,"\u00eb":14,"\u00e8":14,"o":14,"\u00f8":14,"\u00f3":14,"\u00f4":14,"\u00f2":14,"u":11,"\u00fa":11,"\u00fb":11,"\u00f9":11}},"X":{"d":"240,-247r-72,115r83,132r-88,0r-46,-78r-45,78r-70,0r80,-128r-77,-119r89,0r38,67r40,-67r68,0","w":252},"Y":{"d":"234,-247r-77,143r0,104r-73,0r0,-104r-84,-143r84,0r43,81r41,-81r66,0","w":237,"k":{"\u00fc":22,"\u00f6":40,"C":18,"O":18,"\u00d8":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,",":32,".":32,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"i":-7,"\u00ef":-7,"o":40,"\u00f8":40,"\u00f3":40,"\u00f4":40,"\u00f2":40,"u":22,"\u00fa":22,"\u00fb":22,"\u00f9":22}},"Z":{"d":"211,-58r0,58r-206,0r0,-47r110,-143r-101,0r0,-57r193,0r0,48r-106,141r110,0"},"[":{"d":"23,-247r85,0r0,30r-32,0r0,245r32,0r0,30r-85,0r0,-305","w":136},"\\":{"d":"60,-247r176,309r-47,0r-177,-309r48,0"},"]":{"d":"28,-247r85,0r0,305r-85,0r0,-30r31,0r0,-245r-31,0r0,-30","w":136},"^":{"d":"8,-94r73,-153r53,0r73,153r-61,0r-38,-90r-38,90r-62,0"},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"\u2018":{"d":"24,-140r0,-52r34,-55r29,0r-25,49r25,0r0,58r-63,0","w":108,"k":{"\u2018":36,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25}},"a":{"d":"7,-52v0,-56,71,-63,121,-69v0,-17,-5,-23,-22,-23v-14,0,-26,5,-28,20r-65,-6v18,-68,106,-70,163,-42v45,35,5,109,27,172r-69,0v-2,-8,-3,-17,-3,-26v-28,48,-124,39,-124,-26xm100,-40v29,0,28,-24,28,-46v-17,2,-46,7,-46,29v0,12,7,17,18,17","w":208},"b":{"d":"107,-142v-28,1,-19,40,-20,69v0,14,1,32,20,32v24,0,24,-32,24,-50v0,-18,2,-51,-24,-51xm15,0r0,-247r71,0r1,85v10,-19,26,-26,48,-26v99,0,93,196,-10,192v-24,0,-45,-9,-59,-29v-4,8,-7,16,-10,25r-41,0","w":208,"k":{"v":13,"y":7,"\u00fd":7,"\u00ff":7}},"c":{"d":"103,4v-53,0,-95,-44,-95,-95v0,-55,37,-97,94,-97v45,0,82,27,87,73v-20,0,-47,8,-63,4v-3,-13,-6,-27,-22,-27v-23,0,-22,30,-22,46v0,17,0,45,23,45v15,0,22,-14,24,-27r61,5v-6,48,-40,73,-87,73","w":194},"d":{"d":"195,0r-68,0v-1,-7,2,-18,-1,-24v-10,20,-26,28,-49,28v-53,0,-71,-50,-71,-95v0,-47,19,-97,74,-97v18,0,32,8,43,19r0,-78r72,0r0,247xm103,-44v27,0,18,-41,20,-70v1,-13,-4,-30,-19,-29v-24,1,-24,32,-24,54v0,16,1,45,23,45","w":208,"k":{"w":7}},"e":{"d":"9,-90v0,-54,47,-99,100,-98v64,2,101,43,98,110r-123,0v0,20,6,34,28,34v16,0,25,-6,28,-22r67,4v-11,45,-50,66,-94,66v-54,0,-104,-40,-104,-94xm84,-114r51,0v0,-18,-6,-31,-26,-31v-19,0,-25,14,-25,31","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"f":{"d":"25,-178v-6,-66,58,-85,124,-68r0,45v-31,-3,-57,-12,-53,23r45,0r0,46r-45,0r0,132r-71,0r0,-132r-26,0r0,-46r26,0","w":144,"k":{"\u201d":-9,"\u2019":-9}},"g":{"d":"211,5v0,49,-60,59,-111,58v-31,0,-100,-2,-100,-45v0,-18,11,-30,27,-36v-31,-19,-14,-62,18,-69v-19,-8,-30,-22,-30,-43v0,-60,74,-64,125,-54v4,-37,30,-48,71,-42r-2,50v-16,-1,-28,-3,-38,6v13,10,21,25,21,41v-2,52,-54,57,-101,56v-11,0,-17,3,-17,9v0,7,6,8,20,8v55,0,118,2,117,61xm106,-107v13,0,20,-9,20,-22v0,-14,-7,-23,-22,-23v-14,0,-21,10,-21,23v0,15,8,22,23,22xm60,9v2,19,32,16,50,17v11,0,38,2,38,-14v0,-12,-13,-12,-22,-12v-23,2,-59,-14,-66,9","w":208,"k":{"y":-7,"\u00fd":-7,"\u00ff":-7,",":-9,".":-5}},"h":{"d":"137,-188v79,-3,55,108,58,188r-72,0r0,-114v0,-12,-2,-23,-17,-23v-12,0,-21,8,-21,26r0,111r-71,0r0,-247r71,0r0,85v14,-17,30,-26,52,-26","w":208,"k":{"y":9,"\u00fd":9,"\u00ff":9}},"i":{"d":"88,-184r0,184r-71,0r0,-184r71,0xm88,-251r0,49r-71,0r0,-49r71,0","w":108},"j":{"d":"90,-15v7,62,-38,94,-107,75r0,-52v19,10,41,0,36,-23r0,-169r71,0r0,169xm90,-251r0,49r-71,0r0,-49r71,0","w":108},"k":{"d":"206,-184r-55,63r62,121r-75,0r-34,-74r-18,23r0,51r-72,0r0,-247r72,0r0,133v18,-25,38,-47,58,-70r62,0","w":208,"k":{"y":13,"\u00fd":13,"\u00ff":13,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7}},"l":{"d":"90,-247r0,247r-72,0r0,-247r72,0","w":108},"m":{"d":"183,-159v31,-54,125,-28,111,38r0,121r-69,0r0,-111v0,-12,2,-25,-15,-25v-20,0,-20,19,-20,34r0,102r-70,0r0,-111v0,-12,-1,-26,-16,-26v-17,0,-18,12,-18,26r0,111r-70,0r0,-184r65,0r0,25v18,-39,83,-39,102,0","w":309,"k":{"y":9,"\u00fd":9,"\u00ff":9}},"n":{"d":"82,-158v32,-58,129,-26,112,45r0,113r-71,0r0,-112v0,-11,0,-26,-15,-26v-20,0,-22,17,-22,32r0,106r-71,0r0,-184r67,0r0,26","w":208,"k":{"v":7,"y":9,"\u00fd":9,"\u00ff":9}},"o":{"d":"108,-188v58,0,102,39,102,98v0,56,-46,94,-102,94v-56,0,-101,-38,-101,-94v0,-59,43,-98,101,-98xm108,-143v-24,0,-24,32,-24,50v0,49,11,53,24,53v13,0,25,-4,25,-53v0,-18,-1,-50,-25,-50","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"p":{"d":"107,-142v-28,1,-19,40,-20,70v0,13,3,30,20,30v21,0,23,-29,23,-48v0,-15,0,-52,-23,-52xm135,-188v100,4,88,193,-1,192v-19,0,-36,-8,-47,-24r0,78r-72,0r0,-242r67,0r0,26v8,-22,29,-30,53,-30","w":208,"k":{"y":5,"\u00fd":5,"\u00ff":5}},"q":{"d":"82,4v-109,-4,-92,-192,7,-192v23,0,44,7,56,29r12,-25r41,0v-6,76,0,162,-2,242r-71,0v-1,-25,2,-55,-1,-78v-6,17,-24,24,-42,24xm104,-40v29,-1,20,-42,22,-72v1,-15,-6,-33,-21,-33v-24,0,-24,38,-24,54v0,15,0,51,23,51","w":208},"r":{"d":"134,-122v-31,-10,-48,10,-48,42r0,80r-72,0r0,-184r61,0v1,12,-2,28,1,38v6,-29,24,-47,58,-41r0,65","w":136,"k":{"v":-18,"y":-18,"\u00fd":-18,"\u00ff":-18,",":22,".":22,"r":-5,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"k":-7,"l":-7,"m":-5,"n":-5,"p":-5,"s":-5,"t":-18,":":-14,";":-14}},"s":{"d":"14,-125v1,-78,146,-87,170,-15r-54,11v-5,-20,-48,-20,-55,-7v2,15,27,13,42,14v37,4,76,22,76,60v0,51,-54,66,-95,66v-41,0,-79,-14,-93,-56r57,-8v4,18,25,20,40,20v7,0,27,0,27,-11v0,-9,-25,-11,-31,-12v-39,-5,-84,-13,-84,-62","w":194},"t":{"d":"134,-2v-63,20,-107,-5,-107,-66r0,-69r-27,0r0,-47r30,0r6,-59r62,-2r0,61r36,0r0,47r-36,0r0,63v-6,23,17,28,36,21r0,51","w":144},"u":{"d":"102,-48v14,0,22,-15,21,-30r0,-106r71,0r0,184r-67,0v-1,-9,2,-23,-1,-30v-21,58,-124,37,-111,-27r0,-127r71,0r0,111v0,12,0,25,16,25"},"v":{"d":"194,-184r-68,184r-54,0r-68,-184r74,0r32,97r32,-97r52,0","w":194,"k":{",":22,".":22}},"w":{"d":"274,-184r-58,184r-52,0r-25,-100r-25,100r-51,0r-59,-184r71,0r24,90r23,-90r53,0r23,90r26,-90r50,0","w":280,"k":{",":22,".":22,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7}},"x":{"d":"210,0r-81,0r-34,-59r-36,59r-59,0r64,-98r-56,-86r81,0r24,44r26,-44r59,0r-54,84","w":208},"y":{"d":"77,-184r30,98r32,-98r53,0r-71,195v-16,50,-51,58,-109,51r0,-51v25,5,66,7,52,-29r-64,-166r77,0","w":194,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"s":13}},"z":{"d":"171,-46r0,46r-163,0r0,-40r78,-100r-71,1r0,-45r153,0r0,39r-79,99r82,0","w":180},"{":{"d":"42,-128r0,-74v4,-42,46,-48,90,-45r0,32v-19,-2,-44,3,-38,17r0,70v-1,26,-29,31,-44,32v15,1,44,3,44,35r0,70v-6,14,19,19,38,17r0,32v-44,3,-90,-3,-90,-45r0,-75v0,-21,-29,-19,-38,-19r0,-31v9,0,38,2,38,-16","w":136},"|":{"d":"27,-270r54,0r0,360r-54,0r0,-360","w":108},"}":{"d":"94,-62r0,75v-3,42,-45,48,-90,45r0,-32v19,2,44,-3,38,-17r0,-70v1,-32,29,-34,44,-35v-15,-1,-44,-6,-44,-32r0,-70v6,-14,-19,-19,-38,-17r0,-32v45,-2,90,3,90,45r0,74v0,18,29,16,38,16r0,31v-9,0,-38,-2,-38,19","w":136},"~":{"d":"212,-140v2,47,-28,111,-83,69v-17,-7,-37,-24,-56,-24v-13,0,-15,11,-15,27r-54,0v-1,-30,12,-84,47,-81v30,2,63,37,93,37v12,0,14,-12,14,-28r54,0"},"'":{"d":"26,-247r56,0r0,53r-17,51r-22,0r-17,-51r0,-53","w":108},"\u201c":{"d":"99,-140r0,-52r34,-55r28,0r-25,49r25,0r0,58r-62,0xm26,-140r0,-52r34,-55r29,0r-25,49r25,0r0,58r-63,0","w":187,"k":{"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25}},"\u2013":{"d":"180,-127r0,56r-180,0r0,-56r180,0","w":180},"\u201d":{"d":"89,-247r0,52r-34,55r-29,0r25,-49r-25,0r0,-58r63,0xm161,-247r0,52r-34,55r-28,0r25,-49r-25,0r0,-58r62,0","w":187},"\u2026":{"d":"94,-66r0,66r-68,0r0,-66r68,0xm214,-66r0,66r-69,0r0,-66r69,0xm334,-66r0,66r-69,0r0,-66r69,0","w":360},"`":{"d":"120,-230r-9,25r-87,-25r12,-35","w":144},"\u00b4":{"d":"33,-205r-9,-25r84,-35r12,35","w":144},"\u00a8":{"d":"111,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm48,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24","w":158},"\u00c6":{"d":"108,-103r39,0r-1,-87xm147,0r0,-51r-60,0r-23,51r-64,0r111,-247r221,0r0,57r-111,0r0,36r90,0r0,55r-90,0r0,40r113,0r0,59r-187,0","w":345},"\u00d8":{"d":"206,-221v77,76,29,225,-83,225v-16,0,-32,-2,-46,-9r-18,28r-39,0r28,-47v-74,-72,-38,-232,79,-227v17,0,34,4,50,11r20,-31r38,0xm107,-59v54,28,61,-47,54,-91xm148,-187v-53,-32,-66,49,-56,92","w":252,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,",":7,".":7,"X":9}},"\u00e6":{"d":"176,-114r46,0v1,-15,-5,-32,-23,-32v-18,0,-24,17,-23,32xm94,-39v25,-1,27,-27,24,-48v-17,3,-40,9,-40,30v0,9,7,18,16,18xm118,-120v3,-15,-5,-25,-19,-25v-13,0,-23,8,-24,21r-61,-6v13,-60,88,-72,138,-45v66,-39,148,15,133,96r-109,0v1,18,4,35,26,35v14,0,23,-9,24,-23r59,5v-10,70,-111,88,-154,35v-28,48,-123,41,-121,-25v2,-55,61,-65,108,-68","w":295},"\u00f8":{"d":"172,-168v82,64,6,209,-102,166r-14,22r-33,0r22,-36v-69,-51,-32,-172,63,-172v13,0,26,2,38,6r15,-23r33,0xm108,-40v28,-1,22,-44,23,-70r-38,63v4,5,9,7,15,7xm123,-136v-34,-20,-44,23,-38,61","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00c1":{"d":"160,0r-14,-49r-66,0r-15,49r-62,0r77,-247r80,0r77,247r-77,0xm93,-103r40,0r-20,-71xm80,-268r-9,-25r83,-35r13,35","w":237,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":22,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c2":{"d":"160,0r-14,-49r-66,0r-15,49r-62,0r77,-247r80,0r77,247r-77,0xm93,-103r40,0r-20,-71xm193,-269r-45,0r-29,-22r-30,22r-44,0r74,-59","w":237,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":22,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c4":{"d":"160,0r-14,-49r-66,0r-15,49r-62,0r77,-247r80,0r77,247r-77,0xm93,-103r40,0r-20,-71xm150,-280v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-12,24,-25,24xm87,-280v-13,0,-23,-11,-23,-24v0,-13,10,-24,23,-24v13,0,24,11,24,24v0,14,-11,24,-24,24","w":237,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":22,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c0":{"d":"160,0r-14,-49r-66,0r-15,49r-62,0r77,-247r80,0r77,247r-77,0xm93,-103r40,0r-20,-71xm167,-293r-10,25r-86,-25r12,-35","w":237,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":22,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c5":{"d":"160,0r-14,-49r-66,0r-15,49r-62,0r77,-247r80,0r77,247r-77,0xm93,-103r40,0r-20,-71xm119,-263v-20,0,-37,-16,-37,-36v0,-20,17,-36,37,-36v20,0,36,15,36,36v0,20,-16,36,-36,36xm119,-286v7,0,12,-6,12,-13v0,-7,-5,-12,-12,-12v-7,0,-13,6,-13,13v0,7,6,12,13,12","w":237,"k":{"v":14,"w":5,"y":11,"\u00fd":11,"\u00ff":11,"C":5,"G":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"Q":5,"T":23,"V":20,"W":22,"Y":31,"\u00dd":31,"\u201d":36,"\u2019":25}},"\u00c9":{"d":"204,-59r0,59r-185,0r0,-247r185,0r0,57r-111,0r0,36r90,0r0,55r-90,0r0,40r111,0xm77,-268r-10,-25r84,-35r12,35"},"\u00ca":{"d":"204,-59r0,59r-185,0r0,-247r185,0r0,57r-111,0r0,36r90,0r0,55r-90,0r0,40r111,0xm182,-269r-45,0r-29,-22r-30,22r-44,0r74,-59"},"\u00cb":{"d":"204,-59r0,59r-185,0r0,-247r185,0r0,57r-111,0r0,36r90,0r0,55r-90,0r0,40r111,0xm140,-280v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm76,-280v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,14,-11,24,-24,24"},"\u00c8":{"d":"204,-59r0,59r-185,0r0,-247r185,0r0,57r-111,0r0,36r90,0r0,55r-90,0r0,40r111,0xm149,-293r-10,25r-86,-25r12,-35"},"\u00cf":{"d":"97,-247r0,247r-76,0r0,-247r76,0xm89,-280v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,14,-11,24,-24,24xm26,-280v-13,0,-23,-11,-23,-24v0,-13,10,-24,23,-24v13,0,24,11,24,24v0,14,-11,24,-24,24","w":115},"\u00d3":{"d":"127,-251v75,0,118,54,118,128v0,70,-43,127,-118,127v-75,0,-118,-57,-118,-127v0,-74,43,-128,118,-128xm127,-195v-33,0,-37,49,-37,73v0,24,2,69,37,69v35,0,37,-45,37,-69v0,-24,-4,-73,-37,-73xm95,-268r-10,-25r84,-35r12,35","w":252,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,",":7,".":7,"X":9}},"\u00d4":{"d":"127,-251v75,0,118,54,118,128v0,70,-43,127,-118,127v-75,0,-118,-57,-118,-127v0,-74,43,-128,118,-128xm127,-195v-33,0,-37,49,-37,73v0,24,2,69,37,69v35,0,37,-45,37,-69v0,-24,-4,-73,-37,-73xm200,-269r-45,0r-29,-22r-30,22r-44,0r74,-59","w":252,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,",":7,".":7,"X":9}},"\u00d6":{"d":"127,-251v75,0,118,54,118,128v0,70,-43,127,-118,127v-75,0,-118,-57,-118,-127v0,-74,43,-128,118,-128xm127,-195v-33,0,-37,49,-37,73v0,24,2,69,37,69v35,0,37,-45,37,-69v0,-24,-4,-73,-37,-73xm158,-280v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm94,-280v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,14,-11,24,-24,24","w":252,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,",":7,".":7,"X":9}},"\u00d2":{"d":"127,-251v75,0,118,54,118,128v0,70,-43,127,-118,127v-75,0,-118,-57,-118,-127v0,-74,43,-128,118,-128xm127,-195v-33,0,-37,49,-37,73v0,24,2,69,37,69v35,0,37,-45,37,-69v0,-24,-4,-73,-37,-73xm167,-293r-10,25r-86,-25r12,-35","w":252,"k":{"V":7,"W":7,"Y":14,"\u00dd":14,",":7,".":7,"X":9}},"\u00da":{"d":"125,-55v23,2,34,-18,34,-41r0,-151r60,0r0,159v9,57,-46,92,-101,92v-54,0,-102,-31,-102,-88r0,-163r77,0r0,154v-3,21,11,41,32,38xm113,-268r-10,-25r84,-35r12,35","w":237},"\u00db":{"d":"125,-55v23,2,34,-18,34,-41r0,-151r60,0r0,159v9,57,-46,92,-101,92v-54,0,-102,-31,-102,-88r0,-163r77,0r0,154v-3,21,11,41,32,38xm193,-269r-45,0r-29,-22r-30,22r-44,0r74,-59","w":237},"\u00dc":{"d":"125,-55v23,2,34,-18,34,-41r0,-151r60,0r0,159v9,57,-46,92,-101,92v-54,0,-102,-31,-102,-88r0,-163r77,0r0,154v-3,21,11,41,32,38xm150,-280v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-12,24,-25,24xm87,-280v-13,0,-23,-11,-23,-24v0,-13,10,-24,23,-24v13,0,24,11,24,24v0,14,-11,24,-24,24","w":237},"\u00d9":{"d":"125,-55v23,2,34,-18,34,-41r0,-151r60,0r0,159v9,57,-46,92,-101,92v-54,0,-102,-31,-102,-88r0,-163r77,0r0,154v-3,21,11,41,32,38xm138,-293r-9,25r-87,-25r12,-35","w":237},"\u00dd":{"d":"234,-247r-77,143r0,104r-73,0r0,-104r-84,-143r84,0r43,81r41,-81r66,0xm107,-268r-9,-25r83,-35r13,35","w":237,"k":{"C":18,"O":18,"\u00d8":18,"\u00d3":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,",":32,".":32,"a":29,"\u00e6":29,"\u00e1":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"\u00e5":29,"e":40,"\u00e9":40,"\u00ea":40,"\u00eb":40,"\u00e8":40,"i":-7,"\u00ef":-7,"o":40,"\u00f8":40,"\u00f3":40,"\u00f4":40,"\u00f6":40,"\u00f2":40,"u":22,"\u00fa":22,"\u00fb":22,"\u00fc":22,"\u00f9":22}},"\u00e1":{"d":"7,-52v0,-56,71,-63,121,-69v0,-17,-5,-23,-22,-23v-14,0,-26,5,-28,20r-65,-6v18,-68,106,-70,163,-42v45,35,5,109,27,172r-69,0v-2,-8,-3,-17,-3,-26v-28,48,-124,39,-124,-26xm100,-40v29,0,28,-24,28,-46v-17,2,-46,7,-46,29v0,12,7,17,18,17xm73,-205r-9,-25r83,-35r12,35","w":208},"\u00e2":{"d":"7,-52v0,-56,71,-63,121,-69v0,-17,-5,-23,-22,-23v-14,0,-26,5,-28,20r-65,-6v18,-68,106,-70,163,-42v45,35,5,109,27,172r-69,0v-2,-8,-3,-17,-3,-26v-28,48,-124,39,-124,-26xm100,-40v29,0,28,-24,28,-46v-17,2,-46,7,-46,29v0,12,7,17,18,17xm178,-206r-44,0r-30,-22r-29,22r-44,0r73,-59","w":208},"\u00e4":{"d":"7,-52v0,-56,71,-63,121,-69v0,-17,-5,-23,-22,-23v-14,0,-26,5,-28,20r-65,-6v18,-68,106,-70,163,-42v45,35,5,109,27,172r-69,0v-2,-8,-3,-17,-3,-26v-28,48,-124,39,-124,-26xm100,-40v29,0,28,-24,28,-46v-17,2,-46,7,-46,29v0,12,7,17,18,17xm136,-217v-13,0,-23,-11,-23,-24v0,-13,10,-24,23,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm73,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24","w":208},"\u00e0":{"d":"7,-52v0,-56,71,-63,121,-69v0,-17,-5,-23,-22,-23v-14,0,-26,5,-28,20r-65,-6v18,-68,106,-70,163,-42v45,35,5,109,27,172r-69,0v-2,-8,-3,-17,-3,-26v-28,48,-124,39,-124,-26xm100,-40v29,0,28,-24,28,-46v-17,2,-46,7,-46,29v0,12,7,17,18,17xm145,-230r-9,25r-87,-25r13,-35","w":208},"\u00e5":{"d":"7,-52v0,-56,71,-63,121,-69v0,-17,-5,-23,-22,-23v-14,0,-26,5,-28,20r-65,-6v18,-68,106,-70,163,-42v45,35,5,109,27,172r-69,0v-2,-8,-3,-17,-3,-26v-28,48,-124,39,-124,-26xm100,-40v29,0,28,-24,28,-46v-17,2,-46,7,-46,29v0,12,7,17,18,17xm112,-207v-20,0,-37,-16,-37,-36v0,-20,17,-36,37,-36v20,0,36,15,36,36v0,20,-16,36,-36,36xm112,-230v7,0,12,-6,12,-13v0,-7,-5,-13,-12,-13v-7,0,-13,6,-13,13v0,7,6,13,13,13","w":208},"\u00e9":{"d":"9,-90v0,-54,47,-99,100,-98v64,2,101,43,98,110r-123,0v0,20,6,34,28,34v16,0,25,-6,28,-22r67,4v-11,45,-50,66,-94,66v-54,0,-104,-40,-104,-94xm84,-114r51,0v0,-18,-6,-31,-26,-31v-19,0,-25,14,-25,31xm77,-205r-10,-25r84,-35r12,35","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00ea":{"d":"9,-90v0,-54,47,-99,100,-98v64,2,101,43,98,110r-123,0v0,20,6,34,28,34v16,0,25,-6,28,-22r67,4v-11,45,-50,66,-94,66v-54,0,-104,-40,-104,-94xm84,-114r51,0v0,-18,-6,-31,-26,-31v-19,0,-25,14,-25,31xm182,-206r-45,0r-29,-22r-30,22r-44,0r74,-59","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00eb":{"d":"9,-90v0,-54,47,-99,100,-98v64,2,101,43,98,110r-123,0v0,20,6,34,28,34v16,0,25,-6,28,-22r67,4v-11,45,-50,66,-94,66v-54,0,-104,-40,-104,-94xm84,-114r51,0v0,-18,-6,-31,-26,-31v-19,0,-25,14,-25,31xm140,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm76,-217v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,14,-11,24,-24,24","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00e8":{"d":"9,-90v0,-54,47,-99,100,-98v64,2,101,43,98,110r-123,0v0,20,6,34,28,34v16,0,25,-6,28,-22r67,4v-11,45,-50,66,-94,66v-54,0,-104,-40,-104,-94xm84,-114r51,0v0,-18,-6,-31,-26,-31v-19,0,-25,14,-25,31xm149,-230r-10,25r-86,-25r12,-35","k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7}},"\u00ef":{"d":"89,-184r0,184r-72,0r0,-184r72,0xm86,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm22,-217v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,14,-11,24,-24,24","w":108},"\u00f3":{"d":"108,-188v58,0,102,39,102,98v0,56,-46,94,-102,94v-56,0,-101,-38,-101,-94v0,-59,43,-98,101,-98xm108,-143v-24,0,-24,32,-24,50v0,49,11,53,24,53v13,0,25,-4,25,-53v0,-18,-1,-50,-25,-50xm77,-205r-10,-25r84,-35r12,35","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f4":{"d":"108,-188v58,0,102,39,102,98v0,56,-46,94,-102,94v-56,0,-101,-38,-101,-94v0,-59,43,-98,101,-98xm108,-143v-24,0,-24,32,-24,50v0,49,11,53,24,53v13,0,25,-4,25,-53v0,-18,-1,-50,-25,-50xm182,-206r-45,0r-29,-22r-30,22r-44,0r74,-59","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f6":{"d":"108,-188v58,0,102,39,102,98v0,56,-46,94,-102,94v-56,0,-101,-38,-101,-94v0,-59,43,-98,101,-98xm108,-143v-24,0,-24,32,-24,50v0,49,11,53,24,53v13,0,25,-4,25,-53v0,-18,-1,-50,-25,-50xm140,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm76,-217v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,14,-11,24,-24,24","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00f2":{"d":"108,-188v58,0,102,39,102,98v0,56,-46,94,-102,94v-56,0,-101,-38,-101,-94v0,-59,43,-98,101,-98xm108,-143v-24,0,-24,32,-24,50v0,49,11,53,24,53v13,0,25,-4,25,-53v0,-18,-1,-50,-25,-50xm149,-230r-10,25r-86,-25r12,-35","k":{"v":5,"y":5,"\u00fd":5,"\u00ff":5}},"\u00fa":{"d":"102,-48v14,0,22,-15,21,-30r0,-106r71,0r0,184r-67,0v-1,-9,2,-23,-1,-30v-21,58,-124,37,-111,-27r0,-127r71,0r0,111v0,12,0,25,16,25xm96,-205r-9,-25r84,-35r12,35"},"\u00fb":{"d":"102,-48v14,0,22,-15,21,-30r0,-106r71,0r0,184r-67,0v-1,-9,2,-23,-1,-30v-21,58,-124,37,-111,-27r0,-127r71,0r0,111v0,12,0,25,16,25xm182,-206r-45,0r-29,-22r-30,22r-44,0r74,-59"},"\u00fc":{"d":"102,-48v14,0,22,-15,21,-30r0,-106r71,0r0,184r-67,0v-1,-9,2,-23,-1,-30v-21,58,-124,37,-111,-27r0,-127r71,0r0,111v0,12,0,25,16,25xm140,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm76,-217v-13,0,-23,-11,-23,-24v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,14,-11,24,-24,24"},"\u00f9":{"d":"102,-48v14,0,22,-15,21,-30r0,-106r71,0r0,184r-67,0v-1,-9,2,-23,-1,-30v-21,58,-124,37,-111,-27r0,-127r71,0r0,111v0,12,0,25,16,25xm129,-230r-9,25r-87,-25r12,-35"},"\u00fd":{"d":"77,-184r30,98r32,-98r53,0r-71,195v-16,50,-51,58,-109,51r0,-51v25,5,66,7,52,-29r-64,-166r77,0xm95,-205r-10,-25r84,-35r12,35","w":194,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"s":13}},"\u00ff":{"d":"77,-184r30,98r32,-98r53,0r-71,195v-16,50,-51,58,-109,51r0,-51v25,5,66,7,52,-29r-64,-166r77,0xm129,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24xm66,-217v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,14,-11,24,-24,24","w":194,"k":{",":31,".":31,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"s":13}},"\u00a0":{"w":108}}});
/* 
	PDFObject, copyright (C) 2008 Philip Hutchison (pipwerks.com)
	Documentation and examples are at www.pdfobject.com 
	Version 1.0, September 2008
	MIT style license
*/
var pipwerks=pipwerks||{};pipwerks.pdfUTILS={termFound:function(a,b){return(a.indexOf(b)!==-1)},detect:{hasReaderActiveX:function(){var a=null;if(window.ActiveXObject){a=new ActiveXObject("AcroPDF.PDF");if(!a){a=new ActiveXObject("PDF.PdfCtrl")}if(a!==null){return true}}return false},hasReader:function(){var a=pipwerks.pdfUTILS.termFound;var d=navigator.plugins;for(var c=0;c<d.length;c++){var b=d[c].name;if(a(b,"Adobe Reader")||a(b,"Adobe PDF")||a(b,"Acrobat")){return true}}return false},hasGeneric:function(){var a=navigator.mimeTypes["application/pdf"];return(a&&a.enabledPlugin)},pluginFound:function(){var b=null;var a=pipwerks.pdfUTILS.detect;if(a.hasReader()||a.hasReaderActiveX()){b="Adobe"}else{if(a.hasGeneric()){b="generic"}}return b}},setCssForFullWindowPdf:function(){if(!document.getElementsByTagName){return false}var c=document.getElementsByTagName("html");if(!c){return false}var d=c[0];d.style.height="100%";d.style.overflow="hidden";var a=document.body;a.style.margin="0";a.style.padding="0";a.style.height="100%";a.style.overflow="hidden"},buildQueryString:function(a){var b="";if(!a){return b}for(var c in a){if(a.hasOwnProperty(c)){b+=c+"=";if(c==="search"){b+=encodeURI(a[c])}else{b+=a[c]}b+="&"}}return b.slice(0,b.length-1)}};pipwerks.pdfObject=function(a){if(!document.getElementById||!a.url){return false}this.url=encodeURI(a.url)+"#";this.id=a.id||false;this.width=a.width||"100%";this.height=a.height||"100%";this.pdfOpenParams=a.pdfOpenParams;this.url+=pipwerks.pdfUTILS.buildQueryString(this.pdfOpenParams);this.pluginTypeFound=pipwerks.pdfUTILS.detect.pluginFound();this.pdfobjectversion="1.0";return this};pipwerks.pdfObject.prototype.get=function(b){var a=null;switch(b){case"url":a=this.url;break;case"id":a=this.id;break;case"width":a=this.width;break;case"height":a=this.height;break;case"pdfOpenParams":a=this.pdfOpenParams;break;case"pluginTypeFound":a=this.pluginTypeFound;break;case"pdfobjectversion":a=this.pdfobjectversion;break}return a};pipwerks.pdfObject.prototype.embed=function(targetID){if(!this.pluginTypeFound){return false}if(!document.createElement||!document.getElementById){return false}var isIE=/*@cc_on!@*/false;var targetNode=null;if(targetID){targetNode=document.getElementById(targetID);if(!targetNode){return false}}else{targetNode=document.body;pipwerks.pdfUTILS.setCssForFullWindowPdf();this.width="100%";this.height="100%"}var objEl;if(isIE){objEl=document.createElement("<object classid='CLSID:CA8A9780-280D-11CF-A24D-444553540000'>")}else{objEl=document.createElement("object")}objEl.setAttribute("type","application/pdf");objEl.setAttribute("data",this.url);objEl.setAttribute("width",this.width);objEl.setAttribute("height",this.height);if(this.id){objEl.setAttribute("id",this.id)}if(targetNode.hasChildNodes){while(targetNode.childNodes.length>0){targetNode.removeChild(targetNode.firstChild)}}targetNode.appendChild(objEl);return objEl};var PDFObject=pipwerks.pdfObject;