/*
 * 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 m=this,g,A=m.jQuery,q=m.$,p=m.jQuery=m.$=function(G,H){return new p.fn.init(G,H)},F=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;p.fn=p.prototype={init:function(G,J){G=G||document;if(G.nodeType){this[0]=G;this.length=1;this.context=G;return this}if(typeof G==="string"){var I=F.exec(G);if(I&&(I[1]||!J)){if(I[1]){G=p.clean([I[1]],J)}else{var K=document.getElementById(I[3]);if(K&&K.id!=I[3]){return p().find(G)}var H=p(K||[]);H.context=document;H.selector=G;return H}}else{return p(J).find(G)}}else{if(p.isFunction(G)){return p(document).ready(G)}}if(G.selector&&G.context){this.selector=G.selector;this.context=G.context}return this.setArray(p.isArray(G)?G:p.makeArray(G))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(G){return G===g?Array.prototype.slice.call(this):this[G]},pushStack:function(H,J,G){var I=p(H);I.prevObject=this;I.context=this.context;if(J==="find"){I.selector=this.selector+(this.selector?" ":"")+G}else{if(J){I.selector=this.selector+"."+J+"("+G+")"}}return I},setArray:function(G){this.length=0;Array.prototype.push.apply(this,G);return this},each:function(H,G){return p.each(this,H,G)},index:function(G){return p.inArray(G&&G.jquery?G[0]:G,this)},attr:function(H,J,I){var G=H;if(typeof H==="string"){if(J===g){return this[0]&&p[I||"attr"](this[0],H)}else{G={};G[H]=J}}return this.each(function(K){for(H in G){p.attr(I?this.style:this,H,p.prop(this,G[H],I,K,H))}})},css:function(G,H){if((G=="width"||G=="height")&&parseFloat(H)<0){H=g}return this.attr(G,H,"curCSS")},text:function(H){if(typeof H!=="object"&&H!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(H))}var G="";p.each(H||this,function(){p.each(this.childNodes,function(){if(this.nodeType!=8){G+=this.nodeType!=1?this.nodeValue:p.fn.text([this])}})});return G},wrapAll:function(G){if(this[0]){var H=p(G,this[0].ownerDocument).clone();if(this[0].parentNode){H.insertBefore(this[0])}H.map(function(){var I=this;while(I.firstChild){I=I.firstChild}return I}).append(this)}return this},wrapInner:function(G){return this.each(function(){p(this).contents().wrapAll(G)})},wrap:function(G){return this.each(function(){p(this).wrapAll(G)})},append:function(){return this.domManip(arguments,true,function(G){if(this.nodeType==1){this.appendChild(G)}})},prepend:function(){return this.domManip(arguments,true,function(G){if(this.nodeType==1){this.insertBefore(G,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(G){this.parentNode.insertBefore(G,this)})},after:function(){return this.domManip(arguments,false,function(G){this.parentNode.insertBefore(G,this.nextSibling)})},end:function(){return this.prevObject||p([])},push:[].push,sort:[].sort,splice:[].splice,find:function(G){if(this.length===1){var H=this.pushStack([],"find",G);H.length=0;p.find(G,this[0],H);return H}else{return this.pushStack(p.unique(p.map(this,function(I){return p.find(G,I)})),"find",G)}},clone:function(I){var G=this.map(function(){if(!p.support.noCloneEvent&&!p.isXMLDoc(this)){var K=this.outerHTML;if(!K){var L=this.ownerDocument.createElement("div");L.appendChild(this.cloneNode(true));K=L.innerHTML}return p.clean([K.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(I===true){var J=this.find("*").andSelf(),H=0;G.find("*").andSelf().each(function(){if(this.nodeName!==J[H].nodeName){return}var K=p.data(J[H],"events");for(var M in K){for(var L in K[M]){p.event.add(this,M,K[M][L],K[M][L].data)}}H++})}return G},filter:function(G){return this.pushStack(p.isFunction(G)&&p.grep(this,function(I,H){return G.call(I,H)})||p.multiFilter(G,p.grep(this,function(H){return H.nodeType===1})),"filter",G)},closest:function(G){var I=p.expr.match.POS.test(G)?p(G):null,H=0;return this.map(function(){var J=this;while(J&&J.ownerDocument){if(I?I.index(J)>-1:p(J).is(G)){p.data(J,"closest",H);return J}J=J.parentNode;H++}})},not:function(G){if(typeof G==="string"){if(f.test(G)){return this.pushStack(p.multiFilter(G,this,true),"not",G)}else{G=p.multiFilter(G,this)}}var H=G.length&&G[G.length-1]!==g&&!G.nodeType;return this.filter(function(){return H?p.inArray(this,G)<0:this!=G})},add:function(G){return this.pushStack(p.unique(p.merge(this.get(),typeof G==="string"?p(G):p.makeArray(G))))},is:function(G){return !!G&&p.multiFilter(G,this).length>0},hasClass:function(G){return !!G&&this.is("."+G)},val:function(M){if(M===g){var G=this[0];if(G){if(p.nodeName(G,"option")){return(G.attributes.value||{}).specified?G.value:G.text}if(p.nodeName(G,"select")){var K=G.selectedIndex,N=[],O=G.options,J=G.type=="select-one";if(K<0){return null}for(var H=J?K:0,L=J?K+1:O.length;H<L;H++){var I=O[H];if(I.selected){M=p(I).val();if(J){return M}N.push(M)}}return N}return(G.value||"").replace(/\r/g,"")}return g}if(typeof M==="number"){M+=""}return this.each(function(){if(this.nodeType!=1){return}if(p.isArray(M)&&/radio|checkbox/.test(this.type)){this.checked=(p.inArray(this.value,M)>=0||p.inArray(this.name,M)>=0)}else{if(p.nodeName(this,"select")){var P=p.makeArray(M);p("option",this).each(function(){this.selected=(p.inArray(this.value,P)>=0||p.inArray(this.text,P)>=0)});if(!P.length){this.selectedIndex=-1}}else{this.value=M}}})},html:function(G){return G===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(G)},replaceWith:function(G){return this.after(G).remove()},eq:function(G){return this.slice(G,+G+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(G){return this.pushStack(p.map(this,function(I,H){return G.call(I,H,I)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(L,O,N){if(this[0]){var K=(this[0].ownerDocument||this[0]).createDocumentFragment(),H=p.clean(L,(this[0].ownerDocument||this[0]),K),J=K.firstChild;if(J){for(var I=0,G=this.length;I<G;I++){N.call(M(this[I],J),this.length>1||I>0?K.cloneNode(true):K)}}if(H){p.each(H,B)}}return this;function M(P,Q){return O&&p.nodeName(P,"table")&&p.nodeName(Q,"tr")?(P.getElementsByTagName("tbody")[0]||P.appendChild(P.ownerDocument.createElement("tbody"))):P}}};p.fn.init.prototype=p.fn;function B(G,H){if(H.src){p.ajax({url:H.src,async:false,dataType:"script"})}else{p.globalEval(H.text||H.textContent||H.innerHTML||"")}if(H.parentNode){H.parentNode.removeChild(H)}}function e(){return +new Date}p.extend=p.fn.extend=function(){var L=arguments[0]||{},J=1,K=arguments.length,G=false,I;if(typeof L==="boolean"){G=L;L=arguments[1]||{};J=2}if(typeof L!=="object"&&!p.isFunction(L)){L={}}if(K==J){L=this;--J}for(;J<K;J++){if((I=arguments[J])!=null){for(var H in I){var M=L[H],N=I[H];if(L===N){continue}if(G&&N&&typeof N==="object"&&!N.nodeType){L[H]=p.extend(G,M||(N.length!=null?[]:{}),N)}else{if(N!==g){L[H]=N}}}}}return L};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,r=document.defaultView||{},u=Object.prototype.toString;p.extend({noConflict:function(G){m.$=q;if(G){m.jQuery=A}return p},isFunction:function(G){return u.call(G)==="[object Function]"},isArray:function(G){return u.call(G)==="[object Array]"},isXMLDoc:function(G){return G.nodeType===9&&G.documentElement.nodeName!=="HTML"||!!G.ownerDocument&&p.isXMLDoc(G.ownerDocument)},globalEval:function(I){if(I&&/\S/.test(I)){var H=document.getElementsByTagName("head")[0]||document.documentElement,G=document.createElement("script");G.type="text/javascript";if(p.support.scriptEval){G.appendChild(document.createTextNode(I))}else{G.text=I}H.insertBefore(G,H.firstChild);H.removeChild(G)}},nodeName:function(H,G){return H.nodeName&&H.nodeName.toUpperCase()==G.toUpperCase()},each:function(I,M,H){var G,J=0,K=I.length;if(H){if(K===g){for(G in I){if(M.apply(I[G],H)===false){break}}}else{for(;J<K;){if(M.apply(I[J++],H)===false){break}}}}else{if(K===g){for(G in I){if(M.call(I[G],G,I[G])===false){break}}}else{for(var L=I[0];J<K&&M.call(L,J,L)!==false;L=I[++J]){}}}return I},prop:function(J,K,I,H,G){if(p.isFunction(K)){K=K.call(J,H)}return typeof K==="number"&&I=="curCSS"&&!b.test(G)?K+"px":K},className:{add:function(G,H){p.each((H||"").split(/\s+/),function(I,J){if(G.nodeType==1&&!p.className.has(G.className,J)){G.className+=(G.className?" ":"")+J}})},remove:function(G,H){if(G.nodeType==1){G.className=H!==g?p.grep(G.className.split(/\s+/),function(I){return !p.className.has(H,I)}).join(" "):""}},has:function(H,G){return H&&p.inArray(G,(H.className||H).toString().split(/\s+/))>-1}},swap:function(J,I,K){var G={};for(var H in I){G[H]=J.style[H];J.style[H]=I[H]}K.call(J);for(var H in I){J.style[H]=G[H]}},css:function(J,H,L,G){if(H=="width"||H=="height"){var N,I={position:"absolute",visibility:"hidden",display:"block"},M=H=="width"?["Left","Right"]:["Top","Bottom"];function K(){N=H=="width"?J.offsetWidth:J.offsetHeight;if(G==="border"){return}p.each(M,function(){if(!G){N-=parseFloat(p.curCSS(J,"padding"+this,true))||0}if(G==="margin"){N+=parseFloat(p.curCSS(J,"margin"+this,true))||0}else{N-=parseFloat(p.curCSS(J,"border"+this+"Width",true))||0}})}if(J.offsetWidth!==0){K()}else{p.swap(J,I,K)}return Math.max(0,Math.round(N))}return p.curCSS(J,H,L)},curCSS:function(K,H,I){var N,G=K.style;if(H=="opacity"&&!p.support.opacity){N=p.attr(G,"opacity");return N==""?"1":N}if(H.match(/float/i)){H=y}if(!I&&G&&G[H]){N=G[H]}else{if(r.getComputedStyle){if(H.match(/float/i)){H="float"}H=H.replace(/([A-Z])/g,"-$1").toLowerCase();var O=r.getComputedStyle(K,null);if(O){N=O.getPropertyValue(H)}if(H=="opacity"&&N==""){N="1"}}else{if(K.currentStyle){var L=H.replace(/\-(\w)/g,function(P,Q){return Q.toUpperCase()});N=K.currentStyle[H]||K.currentStyle[L];if(!/^\d+(px)?$/i.test(N)&&/^\d/.test(N)){var J=G.left,M=K.runtimeStyle.left;K.runtimeStyle.left=K.currentStyle.left;G.left=N||0;N=G.pixelLeft+"px";G.left=J;K.runtimeStyle.left=M}}}}return N},clean:function(H,M,K){M=M||document;if(typeof M.createElement==="undefined"){M=M.ownerDocument||M[0]&&M[0].ownerDocument||document}if(!K&&H.length===1&&typeof H[0]==="string"){var J=/^<(\w+)\s*\/?>$/.exec(H[0]);if(J){return[M.createElement(J[1])]}}var I=[],G=[],N=M.createElement("div");p.each(H,function(R,U){if(typeof U==="number"){U+=""}if(!U){return}if(typeof U==="string"){U=U.replace(/(<(\w+)[^>]*?)\/>/g,function(W,X,V){return V.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?W:X+"></"+V+">"});var Q=U.replace(/^\s+/,"").substring(0,10).toLowerCase();var S=!Q.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!Q.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||Q.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!Q.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!Q.indexOf("<td")||!Q.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!Q.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!p.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];N.innerHTML=S[1]+U+S[2];while(S[0]--){N=N.lastChild}if(!p.support.tbody){var T=/<tbody/i.test(U),P=!Q.indexOf("<table")&&!T?N.firstChild&&N.firstChild.childNodes:S[1]=="<table>"&&!T?N.childNodes:[];for(var O=P.length-1;O>=0;--O){if(p.nodeName(P[O],"tbody")&&!P[O].childNodes.length){P[O].parentNode.removeChild(P[O])}}}if(!p.support.leadingWhitespace&&/^\s/.test(U)){N.insertBefore(M.createTextNode(U.match(/^\s*/)[0]),N.firstChild)}U=p.makeArray(N.childNodes)}if(U.nodeType){I.push(U)}else{I=p.merge(I,U)}});if(K){for(var L=0;I[L];L++){if(p.nodeName(I[L],"script")&&(!I[L].type||I[L].type.toLowerCase()==="text/javascript")){G.push(I[L].parentNode?I[L].parentNode.removeChild(I[L]):I[L])}else{if(I[L].nodeType===1){I.splice.apply(I,[L+1,0].concat(p.makeArray(I[L].getElementsByTagName("script"))))}K.appendChild(I[L])}}return G}return I},attr:function(L,I,M){if(!L||L.nodeType==3||L.nodeType==8){return g}var J=!p.isXMLDoc(L),N=M!==g;I=J&&p.props[I]||I;if(L.tagName){var H=/href|src|style/.test(I);if(I=="selected"&&L.parentNode){L.parentNode.selectedIndex}if(I in L&&J&&!H){if(N){if(I=="type"&&p.nodeName(L,"input")&&L.parentNode){throw"type property can't be changed"}L[I]=M}if(p.nodeName(L,"form")&&L.getAttributeNode(I)){return L.getAttributeNode(I).nodeValue}if(I=="tabIndex"){var K=L.getAttributeNode("tabIndex");return K&&K.specified?K.value:L.nodeName.match(/(button|input|object|select|textarea)/i)?0:L.nodeName.match(/^(a|area)$/i)&&L.href?0:g}return L[I]}if(!p.support.style&&J&&I=="style"){return p.attr(L.style,"cssText",M)}if(N){L.setAttribute(I,""+M)}var G=!p.support.hrefNormalized&&J&&H?L.getAttribute(I,2):L.getAttribute(I);return G===null?g:G}if(!p.support.opacity&&I=="opacity"){if(N){L.zoom=1;L.filter=(L.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(M)+""=="NaN"?"":"alpha(opacity="+M*100+")")}return L.filter&&L.filter.indexOf("opacity=")>=0?(parseFloat(L.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}I=I.replace(/-([a-z])/ig,function(O,P){return P.toUpperCase()});if(N){L[I]=M}return L[I]},trim:function(G){return(G||"").replace(/^\s+|\s+$/g,"")},makeArray:function(I){var G=[];if(I!=null){var H=I.length;if(H==null||typeof I==="string"||p.isFunction(I)||I.setInterval){G[0]=I}else{while(H){G[--H]=I[H]}}}return G},inArray:function(I,J){for(var G=0,H=J.length;G<H;G++){if(J[G]===I){return G}}return -1},merge:function(J,G){var H=0,I,K=J.length;if(!p.support.getAll){while((I=G[H++])!=null){if(I.nodeType!=8){J[K++]=I}}}else{while((I=G[H++])!=null){J[K++]=I}}return J},unique:function(M){var H=[],G={};try{for(var I=0,J=M.length;I<J;I++){var L=p.data(M[I]);if(!G[L]){G[L]=true;H.push(M[I])}}}catch(K){H=M}return H},grep:function(H,L,G){var I=[];for(var J=0,K=H.length;J<K;J++){if(!G!=!L(H[J],J)){I.push(H[J])}}return I},map:function(G,L){var H=[];for(var I=0,J=G.length;I<J;I++){var K=L(G[I],I);if(K!=null){H[H.length]=K}}return H.concat.apply([],H)}});var E=navigator.userAgent.toLowerCase();p.browser={version:(E.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(E),opera:/opera/.test(E),msie:/msie/.test(E)&&!/opera/.test(E),mozilla:/mozilla/.test(E)&&!/(compatible|webkit)/.test(E)};p.each({parent:function(G){return G.parentNode},parents:function(G){return p.dir(G,"parentNode")},next:function(G){return p.nth(G,2,"nextSibling")},prev:function(G){return p.nth(G,2,"previousSibling")},nextAll:function(G){return p.dir(G,"nextSibling")},prevAll:function(G){return p.dir(G,"previousSibling")},siblings:function(G){return p.sibling(G.parentNode.firstChild,G)},children:function(G){return p.sibling(G.firstChild)},contents:function(G){return p.nodeName(G,"iframe")?G.contentDocument||G.contentWindow.document:p.makeArray(G.childNodes)}},function(G,H){p.fn[G]=function(I){var J=p.map(this,H);if(I&&typeof I=="string"){J=p.multiFilter(I,J)}return this.pushStack(p.unique(J),G,I)}});p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(G,H){p.fn[G]=function(I){var L=[],N=p(I);for(var M=0,J=N.length;M<J;M++){var K=(M>0?this.clone(true):this).get();p.fn[H].apply(p(N[M]),K);L=L.concat(K)}return this.pushStack(L,G,I)}});p.each({removeAttr:function(G){p.attr(this,G,"");if(this.nodeType==1){this.removeAttribute(G)}},addClass:function(G){p.className.add(this,G)},removeClass:function(G){p.className.remove(this,G)},toggleClass:function(H,G){if(typeof G!=="boolean"){G=!p.className.has(this,H)}p.className[G?"add":"remove"](this,H)},remove:function(G){if(!G||p.filter(G,[this]).length){p("*",this).add([this]).each(function(){p.event.remove(this);p.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){p(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(G,H){p.fn[G]=function(){return this.each(H,arguments)}});function k(G,H){return G[0]&&parseInt(p.curCSS(G[0],H,true),10)||0}var h="jQuery"+e(),x=0,C={};p.extend({cache:{},data:function(H,G,I){H=H==m?C:H;var J=H[h];if(!J){J=H[h]=++x}if(G&&!p.cache[J]){p.cache[J]={}}if(I!==g){p.cache[J][G]=I}return G?p.cache[J][G]:J},removeData:function(H,G){H=H==m?C:H;var J=H[h];if(G){if(p.cache[J]){delete p.cache[J][G];G="";for(G in p.cache[J]){break}if(!G){p.removeData(H)}}}else{try{delete H[h]}catch(I){if(H.removeAttribute){H.removeAttribute(h)}}delete p.cache[J]}},queue:function(H,G,J){if(H){G=(G||"fx")+"queue";var I=p.data(H,G);if(!I||p.isArray(J)){I=p.data(H,G,p.makeArray(J))}else{if(J){I.push(J)}}}return I},dequeue:function(J,I){var G=p.queue(J,I),H=G.shift();if(!I||I==="fx"){H=G[0]}if(H!==g){H.call(J)}}});p.fn.extend({data:function(G,I){var J=G.split(".");J[1]=J[1]?"."+J[1]:"";if(I===g){var H=this.triggerHandler("getData"+J[1]+"!",[J[0]]);if(H===g&&this.length){H=p.data(this[0],G)}return H===g&&J[1]?this.data(J[0]):H}else{return this.trigger("setData"+J[1]+"!",[J[0],I]).each(function(){p.data(this,G,I)})}},removeData:function(G){return this.each(function(){p.removeData(this,G)})},queue:function(G,H){if(typeof G!=="string"){H=G;G="fx"}if(H===g){return p.queue(this[0],G)}return this.each(function(){var I=p.queue(this,G,H);if(G=="fx"&&I.length==1){I[0].call(this)}})},dequeue:function(G){return this.each(function(){p.dequeue(this,G)})}});
/*
 * 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 T=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,N=0,J=Object.prototype.toString;var H=function(aa,W,ad,ae){ad=ad||[];W=W||document;if(W.nodeType!==1&&W.nodeType!==9){return[]}if(!aa||typeof aa!=="string"){return ad}var ab=[],Y,ah,ak,V,af,X,Z=true;T.lastIndex=0;while((Y=T.exec(aa))!==null){ab.push(Y[1]);if(Y[2]){X=RegExp.rightContext;break}}if(ab.length>1&&O.exec(aa)){if(ab.length===2&&K.relative[ab[0]]){ah=L(ab[0]+ab[1],W)}else{ah=K.relative[ab[0]]?[W]:H(ab.shift(),W);while(ab.length){aa=ab.shift();if(K.relative[aa]){aa+=ab.shift()}ah=L(aa,ah)}}}else{var ag=ae?{expr:ab.pop(),set:G(ae)}:H.find(ab.pop(),ab.length===1&&W.parentNode?W.parentNode:W,S(W));ah=H.filter(ag.expr,ag.set);if(ab.length>0){ak=G(ah)}else{Z=false}while(ab.length){var aj=ab.pop(),ai=aj;if(!K.relative[aj]){aj=""}else{ai=ab.pop()}if(ai==null){ai=W}K.relative[aj](ak,ai,S(W))}}if(!ak){ak=ah}if(!ak){throw"Syntax error, unrecognized expression: "+(aj||aa)}if(J.call(ak)==="[object Array]"){if(!Z){ad.push.apply(ad,ak)}else{if(W.nodeType===1){for(var ac=0;ak[ac]!=null;ac++){if(ak[ac]&&(ak[ac]===true||ak[ac].nodeType===1&&M(W,ak[ac]))){ad.push(ah[ac])}}}else{for(var ac=0;ak[ac]!=null;ac++){if(ak[ac]&&ak[ac].nodeType===1){ad.push(ah[ac])}}}}}else{G(ak,ad)}if(X){H(X,W,ad,ae);if(I){hasDuplicate=false;ad.sort(I);if(hasDuplicate){for(var ac=1;ac<ad.length;ac++){if(ad[ac]===ad[ac-1]){ad.splice(ac--,1)}}}}}return ad};H.matches=function(V,W){return H(V,null,null,W)};H.find=function(ac,V,ad){var ab,Z;if(!ac){return[]}for(var Y=0,X=K.order.length;Y<X;Y++){var aa=K.order[Y],Z;if((Z=K.match[aa].exec(ac))){var W=RegExp.leftContext;if(W.substr(W.length-1)!=="\\"){Z[1]=(Z[1]||"").replace(/\\/g,"");ab=K.find[aa](Z,V,ad);if(ab!=null){ac=ac.replace(K.match[aa],"");break}}}}if(!ab){ab=V.getElementsByTagName("*")}return{set:ab,expr:ac}};H.filter=function(af,ae,ai,Y){var X=af,ak=[],ac=ae,aa,V,ab=ae&&ae[0]&&S(ae[0]);while(af&&ae.length){for(var ad in K.filter){if((aa=K.match[ad].exec(af))!=null){var W=K.filter[ad],aj,ah;V=false;if(ac==ak){ak=[]}if(K.preFilter[ad]){aa=K.preFilter[ad](aa,ac,ai,ak,Y,ab);if(!aa){V=aj=true}else{if(aa===true){continue}}}if(aa){for(var Z=0;(ah=ac[Z])!=null;Z++){if(ah){aj=W(ah,aa,Z,ac);var ag=Y^!!aj;if(ai&&aj!=null){if(ag){V=true}else{ac[Z]=false}}else{if(ag){ak.push(ah);V=true}}}}}if(aj!==g){if(!ai){ac=ak}af=af.replace(K.match[ad],"");if(!V){return[]}break}}}if(af==X){if(V==null){throw"Syntax error, unrecognized expression: "+af}else{break}}X=af}return ac};var K=H.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(V){return V.getAttribute("href")}},relative:{"+":function(ac,V,ab){var Z=typeof V==="string",ad=Z&&!/\W/.test(V),aa=Z&&!ad;if(ad&&!ab){V=V.toUpperCase()}for(var Y=0,X=ac.length,W;Y<X;Y++){if((W=ac[Y])){while((W=W.previousSibling)&&W.nodeType!==1){}ac[Y]=aa||W&&W.nodeName===V?W||false:W===V}}if(aa){H.filter(V,ac,true)}},">":function(ab,W,ac){var Z=typeof W==="string";if(Z&&!/\W/.test(W)){W=ac?W:W.toUpperCase();for(var X=0,V=ab.length;X<V;X++){var aa=ab[X];if(aa){var Y=aa.parentNode;ab[X]=Y.nodeName===W?Y:false}}}else{for(var X=0,V=ab.length;X<V;X++){var aa=ab[X];if(aa){ab[X]=Z?aa.parentNode:aa.parentNode===W}}if(Z){H.filter(W,ab,true)}}},"":function(Y,W,aa){var X=N++,V=U;if(!W.match(/\W/)){var Z=W=aa?W:W.toUpperCase();V=R}V("parentNode",W,X,Y,Z,aa)},"~":function(Y,W,aa){var X=N++,V=U;if(typeof W==="string"&&!W.match(/\W/)){var Z=W=aa?W:W.toUpperCase();V=R}V("previousSibling",W,X,Y,Z,aa)}},find:{ID:function(W,X,Y){if(typeof X.getElementById!=="undefined"&&!Y){var V=X.getElementById(W[1]);return V?[V]:[]}},NAME:function(X,aa,ab){if(typeof aa.getElementsByName!=="undefined"){var W=[],Z=aa.getElementsByName(X[1]);for(var Y=0,V=Z.length;Y<V;Y++){if(Z[Y].getAttribute("name")===X[1]){W.push(Z[Y])}}return W.length===0?null:W}},TAG:function(V,W){return W.getElementsByTagName(V[1])}},preFilter:{CLASS:function(Y,W,X,V,ab,ac){Y=" "+Y[1].replace(/\\/g,"")+" ";if(ac){return Y}for(var Z=0,aa;(aa=W[Z])!=null;Z++){if(aa){if(ab^(aa.className&&(" "+aa.className+" ").indexOf(Y)>=0)){if(!X){V.push(aa)}}else{if(X){W[Z]=false}}}}return false},ID:function(V){return V[1].replace(/\\/g,"")},TAG:function(W,V){for(var X=0;V[X]===false;X++){}return V[X]&&S(V[X])?W[1]:W[1].toUpperCase()},CHILD:function(V){if(V[1]=="nth"){var W=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(V[2]=="even"&&"2n"||V[2]=="odd"&&"2n+1"||!/\D/.test(V[2])&&"0n+"+V[2]||V[2]);V[2]=(W[1]+(W[2]||1))-0;V[3]=W[3]-0}V[0]=N++;return V},ATTR:function(Z,W,X,V,aa,ab){var Y=Z[1].replace(/\\/g,"");if(!ab&&K.attrMap[Y]){Z[1]=K.attrMap[Y]}if(Z[2]==="~="){Z[4]=" "+Z[4]+" "}return Z},PSEUDO:function(Z,W,X,V,aa){if(Z[1]==="not"){if(Z[3].match(T).length>1||/^\w/.test(Z[3])){Z[3]=H(Z[3],null,null,W)}else{var Y=H.filter(Z[3],W,X,true^aa);if(!X){V.push.apply(V,Y)}return false}}else{if(K.match.POS.test(Z[0])||K.match.CHILD.test(Z[0])){return true}}return Z},POS:function(V){V.unshift(true);return V}},filters:{enabled:function(V){return V.disabled===false&&V.type!=="hidden"},disabled:function(V){return V.disabled===true},checked:function(V){return V.checked===true},selected:function(V){V.parentNode.selectedIndex;return V.selected===true},parent:function(V){return !!V.firstChild},empty:function(V){return !V.firstChild},has:function(X,W,V){return !!H(V[3],X).length},header:function(V){return/h\d/i.test(V.nodeName)},text:function(V){return"text"===V.type},radio:function(V){return"radio"===V.type},checkbox:function(V){return"checkbox"===V.type},file:function(V){return"file"===V.type},password:function(V){return"password"===V.type},submit:function(V){return"submit"===V.type},image:function(V){return"image"===V.type},reset:function(V){return"reset"===V.type},button:function(V){return"button"===V.type||V.nodeName.toUpperCase()==="BUTTON"},input:function(V){return/input|select|textarea|button/i.test(V.nodeName)}},setFilters:{first:function(W,V){return V===0},last:function(X,W,V,Y){return W===Y.length-1},even:function(W,V){return V%2===0},odd:function(W,V){return V%2===1},lt:function(X,W,V){return W<V[3]-0},gt:function(X,W,V){return W>V[3]-0},nth:function(X,W,V){return V[3]-0==W},eq:function(X,W,V){return V[3]-0==W}},filter:{PSEUDO:function(ab,X,Y,ac){var W=X[1],Z=K.filters[W];if(Z){return Z(ab,Y,X,ac)}else{if(W==="contains"){return(ab.textContent||ab.innerText||"").indexOf(X[3])>=0}else{if(W==="not"){var aa=X[3];for(var Y=0,V=aa.length;Y<V;Y++){if(aa[Y]===ab){return false}}return true}}}},CHILD:function(V,Y){var ab=Y[1],W=V;switch(ab){case"only":case"first":while(W=W.previousSibling){if(W.nodeType===1){return false}}if(ab=="first"){return true}W=V;case"last":while(W=W.nextSibling){if(W.nodeType===1){return false}}return true;case"nth":var X=Y[2],ae=Y[3];if(X==1&&ae==0){return true}var aa=Y[0],ad=V.parentNode;if(ad&&(ad.sizcache!==aa||!V.nodeIndex)){var Z=0;for(W=ad.firstChild;W;W=W.nextSibling){if(W.nodeType===1){W.nodeIndex=++Z}}ad.sizcache=aa}var ac=V.nodeIndex-ae;if(X==0){return ac==0}else{return(ac%X==0&&ac/X>=0)}}},ID:function(W,V){return W.nodeType===1&&W.getAttribute("id")===V},TAG:function(W,V){return(V==="*"&&W.nodeType===1)||W.nodeName===V},CLASS:function(W,V){return(" "+(W.className||W.getAttribute("class"))+" ").indexOf(V)>-1},ATTR:function(aa,Y){var X=Y[1],V=K.attrHandle[X]?K.attrHandle[X](aa):aa[X]!=null?aa[X]:aa.getAttribute(X),ab=V+"",Z=Y[2],W=Y[4];return V==null?Z==="!=":Z==="="?ab===W:Z==="*="?ab.indexOf(W)>=0:Z==="~="?(" "+ab+" ").indexOf(W)>=0:!W?ab&&V!==false:Z==="!="?ab!=W:Z==="^="?ab.indexOf(W)===0:Z==="$="?ab.substr(ab.length-W.length)===W:Z==="|="?ab===W||ab.substr(0,W.length+1)===W+"-":false},POS:function(Z,W,X,aa){var V=W[2],Y=K.setFilters[V];if(Y){return Y(Z,X,W,aa)}}}};var O=K.match.POS;for(var Q in K.match){K.match[Q]=RegExp(K.match[Q].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var G=function(W,V){W=Array.prototype.slice.call(W);if(V){V.push.apply(V,W);return V}return W};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(P){G=function(Z,Y){var W=Y||[];if(J.call(Z)==="[object Array]"){Array.prototype.push.apply(W,Z)}else{if(typeof Z.length==="number"){for(var X=0,V=Z.length;X<V;X++){W.push(Z[X])}}else{for(var X=0;Z[X];X++){W.push(Z[X])}}}return W}}var I;if(document.documentElement.compareDocumentPosition){I=function(W,V){var X=W.compareDocumentPosition(V)&4?-1:W===V?0:1;if(X===0){hasDuplicate=true}return X}}else{if("sourceIndex" in document.documentElement){I=function(W,V){var X=W.sourceIndex-V.sourceIndex;if(X===0){hasDuplicate=true}return X}}else{if(document.createRange){I=function(Y,W){var X=Y.ownerDocument.createRange(),V=W.ownerDocument.createRange();X.selectNode(Y);X.collapse(true);V.selectNode(W);V.collapse(true);var Z=X.compareBoundaryPoints(Range.START_TO_END,V);if(Z===0){hasDuplicate=true}return Z}}}}(function(){var W=document.createElement("form"),X="script"+(new Date).getTime();W.innerHTML="<input name='"+X+"'/>";var V=document.documentElement;V.insertBefore(W,V.firstChild);if(!!document.getElementById(X)){K.find.ID=function(Z,aa,ab){if(typeof aa.getElementById!=="undefined"&&!ab){var Y=aa.getElementById(Z[1]);return Y?Y.id===Z[1]||typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id").nodeValue===Z[1]?[Y]:g:[]}};K.filter.ID=function(aa,Y){var Z=typeof aa.getAttributeNode!=="undefined"&&aa.getAttributeNode("id");return aa.nodeType===1&&Z&&Z.nodeValue===Y}}V.removeChild(W)})();(function(){var V=document.createElement("div");V.appendChild(document.createComment(""));if(V.getElementsByTagName("*").length>0){K.find.TAG=function(W,aa){var Z=aa.getElementsByTagName(W[1]);if(W[1]==="*"){var Y=[];for(var X=0;Z[X];X++){if(Z[X].nodeType===1){Y.push(Z[X])}}Z=Y}return Z}}V.innerHTML="<a href='#'></a>";if(V.firstChild&&typeof V.firstChild.getAttribute!=="undefined"&&V.firstChild.getAttribute("href")!=="#"){K.attrHandle.href=function(W){return W.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var V=H,W=document.createElement("div");W.innerHTML="<p class='TEST'></p>";if(W.querySelectorAll&&W.querySelectorAll(".TEST").length===0){return}H=function(aa,Z,X,Y){Z=Z||document;if(!Y&&Z.nodeType===9&&!S(Z)){try{return G(Z.querySelectorAll(aa),X)}catch(ab){}}return V(aa,Z,X,Y)};H.find=V.find;H.filter=V.filter;H.selectors=V.selectors;H.matches=V.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var V=document.createElement("div");V.innerHTML="<div class='test e'></div><div class='test'></div>";if(V.getElementsByClassName("e").length===0){return}V.lastChild.className="e";if(V.getElementsByClassName("e").length===1){return}K.order.splice(1,0,"CLASS");K.find.CLASS=function(W,X,Y){if(typeof X.getElementsByClassName!=="undefined"&&!Y){return X.getElementsByClassName(W[1])}}})()}function R(W,ab,aa,af,ac,ae){var ad=W=="previousSibling"&&!ae;for(var Y=0,X=af.length;Y<X;Y++){var V=af[Y];if(V){if(ad&&V.nodeType===1){V.sizcache=aa;V.sizset=Y}V=V[W];var Z=false;while(V){if(V.sizcache===aa){Z=af[V.sizset];break}if(V.nodeType===1&&!ae){V.sizcache=aa;V.sizset=Y}if(V.nodeName===ab){Z=V;break}V=V[W]}af[Y]=Z}}}function U(W,ab,aa,af,ac,ae){var ad=W=="previousSibling"&&!ae;for(var Y=0,X=af.length;Y<X;Y++){var V=af[Y];if(V){if(ad&&V.nodeType===1){V.sizcache=aa;V.sizset=Y}V=V[W];var Z=false;while(V){if(V.sizcache===aa){Z=af[V.sizset];break}if(V.nodeType===1){if(!ae){V.sizcache=aa;V.sizset=Y}if(typeof ab!=="string"){if(V===ab){Z=true;break}}else{if(H.filter(ab,[V]).length>0){Z=V;break}}}V=V[W]}af[Y]=Z}}}var M=document.compareDocumentPosition?function(W,V){return W.compareDocumentPosition(V)&16}:function(W,V){return W!==V&&(W.contains?W.contains(V):true)};var S=function(V){return V.nodeType===9&&V.documentElement.nodeName!=="HTML"||!!V.ownerDocument&&S(V.ownerDocument)};var L=function(V,ac){var Y=[],Z="",aa,X=ac.nodeType?[ac]:ac;while((aa=K.match.PSEUDO.exec(V))){Z+=aa[0];V=V.replace(K.match.PSEUDO,"")}V=K.relative[V]?V+"*":V;for(var ab=0,W=X.length;ab<W;ab++){H(V,X[ab],Y)}return H.filter(Z,Y)};p.find=H;p.filter=H.filter;p.expr=H.selectors;p.expr[":"]=p.expr.filters;H.selectors.filters.hidden=function(V){return V.offsetWidth===0||V.offsetHeight===0};H.selectors.filters.visible=function(V){return V.offsetWidth>0||V.offsetHeight>0};H.selectors.filters.animated=function(V){return p.grep(p.timers,function(W){return V===W.elem}).length};p.multiFilter=function(X,V,W){if(W){X=":not("+X+")"}return H.matches(X,V)};p.dir=function(X,W){var V=[],Y=X[W];while(Y&&Y!=document){if(Y.nodeType==1){V.push(Y)}Y=Y[W]}return V};p.nth=function(Z,V,X,Y){V=V||1;var W=0;for(;Z;Z=Z[X]){if(Z.nodeType==1&&++W==V){break}}return Z};p.sibling=function(X,W){var V=[];for(;X;X=X.nextSibling){if(X.nodeType==1&&X!=W){V.push(X)}}return V};return;m.Sizzle=H})();p.event={add:function(K,H,J,M){if(K.nodeType==3||K.nodeType==8){return}if(K.setInterval&&K!=m){K=m}if(!J.guid){J.guid=this.guid++}if(M!==g){var I=J;J=this.proxy(I);J.data=M}var G=p.data(K,"events")||p.data(K,"events",{}),L=p.data(K,"handle")||p.data(K,"handle",function(){return typeof p!=="undefined"&&!p.event.triggered?p.event.handle.apply(arguments.callee.elem,arguments):g});L.elem=K;p.each(H.split(/\s+/),function(O,P){var Q=P.split(".");P=Q.shift();J.type=Q.slice().sort().join(".");var N=G[P];if(p.event.specialAll[P]){p.event.specialAll[P].setup.call(K,M,Q)}if(!N){N=G[P]={};if(!p.event.special[P]||p.event.special[P].setup.call(K,M,Q)===false){if(K.addEventListener){K.addEventListener(P,L,false)}else{if(K.attachEvent){K.attachEvent("on"+P,L)}}}}N[J.guid]=J;p.event.global[P]=true});K=null},guid:1,global:{},remove:function(M,J,L){if(M.nodeType==3||M.nodeType==8){return}var I=p.data(M,"events"),H,G;if(I){if(J===g||(typeof J==="string"&&J.charAt(0)==".")){for(var K in I){this.remove(M,K+(J||""))}}else{if(J.type){L=J.handler;J=J.type}p.each(J.split(/\s+/),function(O,Q){var S=Q.split(".");Q=S.shift();var P=RegExp("(^|\\.)"+S.slice().sort().join(".*\\.")+"(\\.|$)");if(I[Q]){if(L){delete I[Q][L.guid]}else{for(var R in I[Q]){if(P.test(I[Q][R].type)){delete I[Q][R]}}}if(p.event.specialAll[Q]){p.event.specialAll[Q].teardown.call(M,S)}for(H in I[Q]){break}if(!H){if(!p.event.special[Q]||p.event.special[Q].teardown.call(M,S)===false){if(M.removeEventListener){M.removeEventListener(Q,p.data(M,"handle"),false)}else{if(M.detachEvent){M.detachEvent("on"+Q,p.data(M,"handle"))}}}H=null;delete I[Q]}}})}for(H in I){break}if(!H){var N=p.data(M,"handle");if(N){N.elem=null}p.removeData(M,"events");p.removeData(M,"handle")}}},trigger:function(K,M,J,G){var I=K.type||K;if(!G){K=typeof K==="object"?K[h]?K:p.extend(p.Event(I),K):p.Event(I);if(I.indexOf("!")>=0){K.type=I=I.slice(0,-1);K.exclusive=true}if(!J){K.stopPropagation();if(this.global[I]){p.each(p.cache,function(){if(this.events&&this.events[I]){p.event.trigger(K,M,this.handle.elem)}})}}if(!J||J.nodeType==3||J.nodeType==8){return g}K.result=g;K.target=J;M=p.makeArray(M);M.unshift(K)}K.currentTarget=J;var L=p.data(J,"handle");if(L){L.apply(J,M)}if((!J[I]||(p.nodeName(J,"a")&&I=="click"))&&J["on"+I]&&J["on"+I].apply(J,M)===false){K.result=false}if(!G&&J[I]&&!K.isDefaultPrevented()&&!(p.nodeName(J,"a")&&I=="click")){this.triggered=true;try{J[I]()}catch(N){}}this.triggered=false;if(!K.isPropagationStopped()){var H=J.parentNode||J.ownerDocument;if(H){p.event.trigger(K,M,H,true)}}},handle:function(M){var L,G;M=arguments[0]=p.event.fix(M||m.event);M.currentTarget=this;var N=M.type.split(".");M.type=N.shift();L=!N.length&&!M.exclusive;var K=RegExp("(^|\\.)"+N.slice().sort().join(".*\\.")+"(\\.|$)");G=(p.data(this,"events")||{})[M.type];for(var I in G){var J=G[I];if(L||K.test(J.type)){M.handler=J;M.data=J.data;var H=J.apply(this,arguments);if(H!==g){M.result=H;if(H===false){M.preventDefault();M.stopPropagation()}}if(M.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(J){if(J[h]){return J}var H=J;J=p.Event(H);for(var I=this.props.length,L;I;){L=this.props[--I];J[L]=H[L]}if(!J.target){J.target=J.srcElement||document}if(J.target.nodeType==3){J.target=J.target.parentNode}if(!J.relatedTarget&&J.fromElement){J.relatedTarget=J.fromElement==J.target?J.toElement:J.fromElement}if(J.pageX==null&&J.clientX!=null){var K=document.documentElement,G=document.body;J.pageX=J.clientX+(K&&K.scrollLeft||G&&G.scrollLeft||0)-(K.clientLeft||0);J.pageY=J.clientY+(K&&K.scrollTop||G&&G.scrollTop||0)-(K.clientTop||0)}if(!J.which&&((J.charCode||J.charCode===0)?J.charCode:J.keyCode)){J.which=J.charCode||J.keyCode}if(!J.metaKey&&J.ctrlKey){J.metaKey=J.ctrlKey}if(!J.which&&J.button){J.which=(J.button&1?1:(J.button&2?3:(J.button&4?2:0)))}return J},proxy:function(H,G){G=G||function(){return H.apply(this,arguments)};G.guid=H.guid=H.guid||G.guid||this.guid++;return G},special:{ready:{setup:D,teardown:function(){}}},specialAll:{live:{setup:function(G,H){p.event.add(this,H[0],c)},teardown:function(I){if(I.length){var G=0,H=RegExp("(^|\\.)"+I[0]+"(\\.|$)");p.each((p.data(this,"events").live||{}),function(){if(H.test(this.type)){G++}});if(G<1){p.event.remove(this,I[0],c)}}}}}};p.Event=function(G){if(!this.preventDefault){return new p.Event(G)}if(G&&G.type){this.originalEvent=G;this.type=G.type}else{this.type=G}this.timeStamp=e();this[h]=true};function l(){return false}function w(){return true}p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=w;var G=this.originalEvent;if(!G){return}if(G.preventDefault){G.preventDefault()}G.returnValue=false},stopPropagation:function(){this.isPropagationStopped=w;var G=this.originalEvent;if(!G){return}if(G.stopPropagation){G.stopPropagation()}G.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=w;this.stopPropagation()},isDefaultPrevented:l,isPropagationStopped:l,isImmediatePropagationStopped:l};var a=function(H){var G=H.relatedTarget;while(G&&G!=this){try{G=G.parentNode}catch(I){G=this}}if(G!=this){H.type=H.data;p.event.handle.apply(this,arguments)}};p.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(H,G){p.event.special[G]={setup:function(){p.event.add(this,H,a,G)},teardown:function(){p.event.remove(this,H,a)}}});p.fn.extend({bind:function(H,I,G){return H=="unload"?this.one(H,I,G):this.each(function(){p.event.add(this,H,G||I,G&&I)})},one:function(I,J,H){var G=p.event.proxy(H||J,function(K){p(this).unbind(K,G);return(H||J).apply(this,arguments)});return this.each(function(){p.event.add(this,I,G,H&&J)})},unbind:function(H,G){return this.each(function(){p.event.remove(this,H,G)})},trigger:function(G,H){return this.each(function(){p.event.trigger(G,H,this)})},triggerHandler:function(G,I){if(this[0]){var H=p.Event(G);H.preventDefault();H.stopPropagation();p.event.trigger(H,I,this[0]);return H.result}},toggle:function(I){var G=arguments,H=1;while(H<G.length){p.event.proxy(I,G[H++])}return this.click(p.event.proxy(I,function(J){this.lastToggle=(this.lastToggle||0)%H;J.preventDefault();return G[this.lastToggle++].apply(this,arguments)||false}))},hover:function(G,H){return this.mouseenter(G).mouseleave(H)},ready:function(G){D();if(p.isReady){G.call(document,p)}else{p.readyList.push(G)}return this},live:function(I,H){var G=p.event.proxy(H);G.guid+=this.selector+I;p(document).bind(i(I,this.selector),this.selector,G);return this},die:function(H,G){p(document).unbind(i(H,this.selector),G?{guid:G.guid+this.selector+H}:null);return this}});function c(J){var G=RegExp("(^|\\.)"+J.type+"(\\.|$)"),I=true,H=[];p.each(p.data(this,"events").live||[],function(K,L){if(G.test(L.type)){var M=p(J.target).closest(L.data)[0];if(M){H.push({elem:M,fn:L})}}});H.sort(function(L,K){return p.data(L.elem,"closest")-p.data(K.elem,"closest")});p.each(H,function(){if(this.fn.call(this.elem,J,this.fn.data)===false){return(I=false)}});return I}function i(H,G){return["live",H,G.replace(/\./g,"`").replace(/ /g,"|")].join(".")}p.extend({isReady:false,readyList:[],ready:function(){if(!p.isReady){p.isReady=true;if(p.readyList){p.each(p.readyList,function(){this.call(document,p)});p.readyList=null}p(document).triggerHandler("ready")}}});var z=false;function D(){if(z){return}z=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);p.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);p.ready()}});if(document.documentElement.doScroll&&m==m.top){(function(){if(p.isReady){return}try{document.documentElement.doScroll("left")}catch(G){setTimeout(arguments.callee,0);return}p.ready()})()}}}p.event.add(m,"load",p.ready)}p.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(H,G){p.fn[G]=function(I){return I?this.bind(G,I):this.trigger(G)}});p(m).bind("unload",function(){for(var G in p.cache){if(G!=1&&p.cache[G].handle){p.event.remove(p.cache[G].handle.elem)}}});(function(){p.support={};var H=document.documentElement,I=document.createElement("script"),M=document.createElement("div"),L="script"+(new Date).getTime();M.style.display="none";M.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 J=M.getElementsByTagName("*"),G=M.getElementsByTagName("a")[0];if(!J||!J.length||!G){return}p.support={leadingWhitespace:M.firstChild.nodeType==3,tbody:!M.getElementsByTagName("tbody").length,objectAll:!!M.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!M.getElementsByTagName("link").length,style:/red/.test(G.getAttribute("style")),hrefNormalized:G.getAttribute("href")==="/a",opacity:G.style.opacity==="0.5",cssFloat:!!G.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};I.type="text/javascript";try{I.appendChild(document.createTextNode("window."+L+"=1;"))}catch(K){}H.insertBefore(I,H.firstChild);if(m[L]){p.support.scriptEval=true;delete m[L]}H.removeChild(I);if(M.attachEvent&&M.fireEvent){M.attachEvent("onclick",function(){p.support.noCloneEvent=false;M.detachEvent("onclick",arguments.callee)});M.cloneNode(true).fireEvent("onclick")}p(function(){var N=document.createElement("div");N.style.width=N.style.paddingLeft="1px";document.body.appendChild(N);p.boxModel=p.support.boxModel=N.offsetWidth===2;document.body.removeChild(N).style.display="none"})})();var y=p.support.cssFloat?"cssFloat":"styleFloat";p.props={"for":"htmlFor","class":"className","float":y,cssFloat:y,styleFloat:y,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};p.fn.extend({_load:p.fn.load,load:function(I,L,M){if(typeof I!=="string"){return this._load(I)}var K=I.indexOf(" ");if(K>=0){var G=I.slice(K,I.length);I=I.slice(0,K)}var J="GET";if(L){if(p.isFunction(L)){M=L;L=null}else{if(typeof L==="object"){L=p.param(L);J="POST"}}}var H=this;p.ajax({url:I,type:J,dataType:"html",data:L,complete:function(O,N){if(N=="success"||N=="notmodified"){H.html(G?p("<div/>").append(O.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(G):O.responseText)}if(M){H.each(M,[O.responseText,N,O])}}});return this},serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.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(G,H){var I=p(this).val();return I==null?null:p.isArray(I)?p.map(I,function(K,J){return{name:H.name,value:K}}):{name:H.name,value:I}}).get()}});p.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(G,H){p.fn[H]=function(I){return this.bind(H,I)}});var s=e();p.extend({get:function(G,I,J,H){if(p.isFunction(I)){J=I;I=null}return p.ajax({type:"GET",url:G,data:I,success:J,dataType:H})},getScript:function(G,H){return p.get(G,null,H,"script")},getJSON:function(G,H,I){return p.get(G,H,I,"json")},post:function(G,I,J,H){if(p.isFunction(I)){J=I;I={}}return p.ajax({type:"POST",url:G,data:I,success:J,dataType:H})},ajaxSetup:function(G){p.extend(p.ajaxSettings,G)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return m.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(O){O=p.extend(true,O,p.extend(true,{},p.ajaxSettings,O));var Y,H=/=\?(&|$)/g,T,X,I=O.type.toUpperCase();if(O.data&&O.processData&&typeof O.data!=="string"){O.data=p.param(O.data)}if(O.dataType=="jsonp"){if(I=="GET"){if(!O.url.match(H)){O.url+=(O.url.match(/\?/)?"&":"?")+(O.jsonp||"callback")+"=?"}}else{if(!O.data||!O.data.match(H)){O.data=(O.data?O.data+"&":"")+(O.jsonp||"callback")+"=?"}}O.dataType="json"}if(O.dataType=="json"&&(O.data&&O.data.match(H)||O.url.match(H))){Y="jsonp"+s++;if(O.data){O.data=(O.data+"").replace(H,"="+Y+"$1")}O.url=O.url.replace(H,"="+Y+"$1");O.dataType="script";m[Y]=function(Z){X=Z;K();N();m[Y]=g;try{delete m[Y]}catch(aa){}if(J){J.removeChild(V)}}}if(O.dataType=="script"&&O.cache==null){O.cache=false}if(O.cache===false&&I=="GET"){var G=e();var W=O.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+G+"$2");O.url=W+((W==O.url)?(O.url.match(/\?/)?"&":"?")+"_="+G:"")}if(O.data&&I=="GET"){O.url+=(O.url.match(/\?/)?"&":"?")+O.data;O.data=null}if(O.global&&!p.active++){p.event.trigger("ajaxStart")}var S=/^(\w+:)?\/\/([^\/?#]+)/.exec(O.url);if(O.dataType=="script"&&I=="GET"&&S&&(S[1]&&S[1]!=location.protocol||S[2]!=location.host)){var J=document.getElementsByTagName("head")[0];var V=document.createElement("script");V.src=O.url;if(O.scriptCharset){V.charset=O.scriptCharset}if(!Y){var Q=false;V.onload=V.onreadystatechange=function(){if(!Q&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){Q=true;K();N();V.onload=V.onreadystatechange=null;J.removeChild(V)}}}J.appendChild(V);return g}var M=false;var L=O.xhr();if(O.username){L.open(I,O.url,O.async,O.username,O.password)}else{L.open(I,O.url,O.async)}try{if(O.data){L.setRequestHeader("Content-Type",O.contentType)}if(O.ifModified){L.setRequestHeader("If-Modified-Since",p.lastModified[O.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}L.setRequestHeader("X-Requested-With","XMLHttpRequest");L.setRequestHeader("Accept",O.dataType&&O.accepts[O.dataType]?O.accepts[O.dataType]+", */*":O.accepts._default)}catch(U){}if(O.beforeSend&&O.beforeSend(L,O)===false){if(O.global&&!--p.active){p.event.trigger("ajaxStop")}L.abort();return false}if(O.global){p.event.trigger("ajaxSend",[L,O])}var P=function(Z){if(L.readyState==0){if(R){clearInterval(R);R=null;if(O.global&&!--p.active){p.event.trigger("ajaxStop")}}}else{if(!M&&L&&(L.readyState==4||Z=="timeout")){M=true;if(R){clearInterval(R);R=null}T=Z=="timeout"?"timeout":!p.httpSuccess(L)?"error":O.ifModified&&p.httpNotModified(L,O.url)?"notmodified":"success";if(T=="success"){try{X=p.httpData(L,O.dataType,O)}catch(ab){T="parsererror"}}if(T=="success"){var aa;try{aa=L.getResponseHeader("Last-Modified")}catch(ab){}if(O.ifModified&&aa){p.lastModified[O.url]=aa}if(!Y){K()}}else{p.handleError(O,L,T)}N();if(Z){L.abort()}if(O.async){L=null}}}};if(O.async){var R=setInterval(P,13);if(O.timeout>0){setTimeout(function(){if(L&&!M){P("timeout")}},O.timeout)}}try{L.send(O.data)}catch(U){p.handleError(O,L,null,U)}if(!O.async){P()}function K(){if(O.success){O.success(X,T)}if(O.global){p.event.trigger("ajaxSuccess",[L,O])}}function N(){if(O.complete){O.complete(L,T)}if(O.global){p.event.trigger("ajaxComplete",[L,O])}if(O.global&&!--p.active){p.event.trigger("ajaxStop")}}return L},handleError:function(H,J,G,I){if(H.error){H.error(J,G,I)}if(H.global){p.event.trigger("ajaxError",[J,H,I])}},active:0,httpSuccess:function(H){try{return !H.status&&location.protocol=="file:"||(H.status>=200&&H.status<300)||H.status==304||H.status==1223}catch(G){}return false},httpNotModified:function(I,G){try{var J=I.getResponseHeader("Last-Modified");return I.status==304||J==p.lastModified[G]}catch(H){}return false},httpData:function(L,J,I){var H=L.getResponseHeader("content-type"),G=J=="xml"||!J&&H&&H.indexOf("xml")>=0,K=G?L.responseXML:L.responseText;if(G&&K.documentElement.tagName=="parsererror"){throw"parsererror"}if(I&&I.dataFilter){K=I.dataFilter(K,J)}if(typeof K==="string"){if(J=="script"){p.globalEval(K)}if(J=="json"){K=m["eval"]("("+K+")")}}return K},param:function(G){var I=[];function J(K,L){I[I.length]=encodeURIComponent(K)+"="+encodeURIComponent(L)}if(p.isArray(G)||G.jquery){p.each(G,function(){J(this.name,this.value)})}else{for(var H in G){if(p.isArray(G[H])){p.each(G[H],function(){J(H,this)})}else{J(H,p.isFunction(G[H])?G[H]():G[H])}}}return I.join("&").replace(/%20/g,"+")}});var n={},o,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function v(H,G){var I={};p.each(d.concat.apply([],d.slice(0,G)),function(){I[this]=H});return I}p.fn.extend({show:function(L,N){if(L){return this.animate(v("show",3),L,N)}else{for(var J=0,H=this.length;J<H;J++){var G=p.data(this[J],"olddisplay");this[J].style.display=G||"";if(p.css(this[J],"display")==="none"){var I=this[J].tagName,M;if(n[I]){M=n[I]}else{var K=p("<"+I+" />").appendTo("body");M=K.css("display");if(M==="none"){M="block"}K.remove();n[I]=M}p.data(this[J],"olddisplay",M)}}for(var J=0,H=this.length;J<H;J++){this[J].style.display=p.data(this[J],"olddisplay")||""}return this}},hide:function(J,K){if(J){return this.animate(v("hide",3),J,K)}else{for(var I=0,H=this.length;I<H;I++){var G=p.data(this[I],"olddisplay");if(!G&&G!=="none"){p.data(this[I],"olddisplay",p.css(this[I],"display"))}}for(var I=0,H=this.length;I<H;I++){this[I].style.display="none"}return this}},_toggle:p.fn.toggle,toggle:function(I,H){var G=typeof I==="boolean";return p.isFunction(I)&&p.isFunction(H)?this._toggle.apply(this,arguments):I==null||G?this.each(function(){var J=G?I:p(this).is(":hidden");p(this)[J?"show":"hide"]()}):this.animate(v("toggle",3),I,H)},fadeTo:function(G,I,H){return this.animate({opacity:I},G,H)},animate:function(K,H,J,I){var G=p.speed(H,J,I);return this[G.queue===false?"each":"queue"](function(){var M=p.extend({},G),O,N=this.nodeType==1&&p(this).is(":hidden"),L=this;for(O in K){if(K[O]=="hide"&&N||K[O]=="show"&&!N){return M.complete.call(this)}if((O=="height"||O=="width")&&this.style){M.display=p.css(this,"display");M.overflow=this.style.overflow}}if(M.overflow!=null){this.style.overflow="hidden"}M.curAnim=p.extend({},K);p.each(K,function(Q,U){var T=new p.fx(L,M,Q);if(/toggle|show|hide/.test(U)){T[U=="toggle"?N?"show":"hide":U](K)}else{var S=U.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),V=T.cur(true)||0;if(S){var P=parseFloat(S[2]),R=S[3]||"px";if(R!="px"){L.style[Q]=(P||1)+R;V=((P||1)/T.cur(true))*V;L.style[Q]=V+R}if(S[1]){P=((S[1]=="-="?-1:1)*P)+V}T.custom(V,P,R)}else{T.custom(V,U,"")}}});return true})},stop:function(H,G){var I=p.timers;if(H){this.queue([])}this.each(function(){for(var J=I.length-1;J>=0;J--){if(I[J].elem==this){if(G){I[J](true)}I.splice(J,1)}}});if(!G){this.dequeue()}return this}});p.each({slideDown:v("show",1),slideUp:v("hide",1),slideToggle:v("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(G,H){p.fn[G]=function(I,J){return this.animate(H,I,J)}});p.extend({speed:function(I,J,H){var G=typeof I==="object"?I:{complete:H||!H&&J||p.isFunction(I)&&I,duration:I,easing:H&&J||J&&!p.isFunction(J)&&J};G.duration=p.fx.off?0:typeof G.duration==="number"?G.duration:p.fx.speeds[G.duration]||p.fx.speeds._default;G.old=G.complete;G.complete=function(){if(G.queue!==false){p(this).dequeue()}if(p.isFunction(G.old)){G.old.call(this)}};return G},easing:{linear:function(I,J,G,H){return G+H*I},swing:function(I,J,G,H){return((-Math.cos(I*Math.PI)/2)+0.5)*H+G}},timers:[],fx:function(H,G,I){this.options=G;this.elem=H;this.prop=I;if(!G.orig){G.orig={}}}});p.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(p.fx.step[this.prop]||p.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(H){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var G=parseFloat(p.css(this.elem,this.prop,H));return G&&G>-10000?G:parseFloat(p.curCSS(this.elem,this.prop))||0},custom:function(K,J,I){this.startTime=e();this.start=K;this.end=J;this.unit=I||this.unit||"px";this.now=this.start;this.pos=this.state=0;var G=this;function H(L){return G.step(L)}H.elem=this.elem;if(H()&&p.timers.push(H)&&!o){o=setInterval(function(){var M=p.timers;for(var L=0;L<M.length;L++){if(!M[L]()){M.splice(L--,1)}}if(!M.length){clearInterval(o);o=g}},13)}},show:function(){this.options.orig[this.prop]=p.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());p(this.elem).show()},hide:function(){this.options.orig[this.prop]=p.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(J){var I=e();if(J||I>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var G=true;for(var H in this.options.curAnim){if(this.options.curAnim[H]!==true){G=false}}if(G){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(p.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){p(this.elem).hide()}if(this.options.hide||this.options.show){for(var K in this.options.curAnim){p.attr(this.elem.style,K,this.options.orig[K])}}this.options.complete.call(this.elem)}return false}else{var L=I-this.startTime;this.state=L/this.options.duration;this.pos=p.easing[this.options.easing||(p.easing.swing?"swing":"linear")](this.state,L,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};p.extend(p.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(G){p.attr(G.elem.style,"opacity",G.now)},_default:function(G){if(G.elem.style&&G.elem.style[G.prop]!=null){G.elem.style[G.prop]=G.now+G.unit}else{G.elem[G.prop]=G.now}}}});if(document.documentElement.getBoundingClientRect){p.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return p.offset.bodyOffset(this[0])}var I=this[0].getBoundingClientRect(),L=this[0].ownerDocument,H=L.body,G=L.documentElement,N=G.clientTop||H.clientTop||0,M=G.clientLeft||H.clientLeft||0,K=I.top+(self.pageYOffset||p.boxModel&&G.scrollTop||H.scrollTop)-N,J=I.left+(self.pageXOffset||p.boxModel&&G.scrollLeft||H.scrollLeft)-M;return{top:K,left:J}}}else{p.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return p.offset.bodyOffset(this[0])}p.offset.initialized||p.offset.initialize();var L=this[0],I=L.offsetParent,H=L,Q=L.ownerDocument,O,J=Q.documentElement,M=Q.body,N=Q.defaultView,G=N.getComputedStyle(L,null),P=L.offsetTop,K=L.offsetLeft;while((L=L.parentNode)&&L!==M&&L!==J){O=N.getComputedStyle(L,null);P-=L.scrollTop,K-=L.scrollLeft;if(L===I){P+=L.offsetTop,K+=L.offsetLeft;if(p.offset.doesNotAddBorder&&!(p.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(L.tagName))){P+=parseInt(O.borderTopWidth,10)||0,K+=parseInt(O.borderLeftWidth,10)||0}H=I,I=L.offsetParent}if(p.offset.subtractsBorderForOverflowNotVisible&&O.overflow!=="visible"){P+=parseInt(O.borderTopWidth,10)||0,K+=parseInt(O.borderLeftWidth,10)||0}G=O}if(G.position==="relative"||G.position==="static"){P+=M.offsetTop,K+=M.offsetLeft}if(G.position==="fixed"){P+=Math.max(J.scrollTop,M.scrollTop),K+=Math.max(J.scrollLeft,M.scrollLeft)}return{top:P,left:K}}}p.offset={initialize:function(){if(this.initialized){return}var N=document.body,H=document.createElement("div"),J,I,P,K,O,G,L=N.style.marginTop,M='<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>';O={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(G in O){H.style[G]=O[G]}H.innerHTML=M;N.insertBefore(H,N.firstChild);J=H.firstChild,I=J.firstChild,K=J.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(I.offsetTop!==5);this.doesAddBorderForTableAndCells=(K.offsetTop===5);J.style.overflow="hidden",J.style.position="relative";this.subtractsBorderForOverflowNotVisible=(I.offsetTop===-5);N.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(N.offsetTop===0);N.style.marginTop=L;N.removeChild(H);this.initialized=true},bodyOffset:function(G){p.offset.initialized||p.offset.initialize();var I=G.offsetTop,H=G.offsetLeft;if(p.offset.doesNotIncludeMarginInBodyOffset){I+=parseInt(p.curCSS(G,"marginTop",true),10)||0,H+=parseInt(p.curCSS(G,"marginLeft",true),10)||0}return{top:I,left:H}}};p.fn.extend({position:function(){var K=0,J=0,H;if(this[0]){var I=this.offsetParent(),L=this.offset(),G=/^body|html$/i.test(I[0].tagName)?{top:0,left:0}:I.offset();L.top-=k(this,"marginTop");L.left-=k(this,"marginLeft");G.top+=k(I,"borderTopWidth");G.left+=k(I,"borderLeftWidth");H={top:L.top-G.top,left:L.left-G.left}}return H},offsetParent:function(){var G=this[0].offsetParent||document.body;while(G&&(!/^body|html$/i.test(G.tagName)&&p.css(G,"position")=="static")){G=G.offsetParent}return p(G)}});p.each(["Left","Top"],function(H,G){var I="scroll"+G;p.fn[I]=function(J){if(!this[0]){return null}return J!==g?this.each(function(){this==m||this==document?m.scrollTo(!H?J:p(m).scrollLeft(),H?J:p(m).scrollTop()):this[I]=J}):this[0]==m||this[0]==document?self[H?"pageYOffset":"pageXOffset"]||p.boxModel&&document.documentElement[I]||document.body[I]:this[0][I]}});p.each(["Height","Width"],function(K,I){var G=K?"Left":"Top",J=K?"Right":"Bottom",H=I.toLowerCase();p.fn["inner"+I]=function(){return this[0]?p.css(this[0],H,false,"padding"):null};p.fn["outer"+I]=function(M){return this[0]?p.css(this[0],H,false,M?"margin":"border"):null};var L=I.toLowerCase();p.fn[L]=function(M){return this[0]==m?document.compatMode=="CSS1Compat"&&document.documentElement["client"+I]||document.body["client"+I]:this[0]==document?Math.max(document.documentElement["client"+I],document.body["scroll"+I],document.documentElement["scroll"+I],document.body["offset"+I],document.documentElement["offset"+I]):M===g?(this.length?p.css(this[0],L):null):this.css(L,typeof M==="string"?M:M+"px")}})})();jQuery.cookie=function(b,k,n){if(typeof k!="undefined"){n=n||{};if(k===null){k="";n.expires=-1}var e="";if(n.expires&&(typeof n.expires=="number"||n.expires.toUTCString)){var f;if(typeof n.expires=="number"){f=new Date();f.setTime(f.getTime()+(n.expires*24*60*60*1000))}else{f=n.expires}e="; expires="+f.toUTCString()}var m=n.path?"; path="+(n.path):"";var g=n.domain?"; domain="+(n.domain):"";var a=n.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(k),e,m,g,a].join("")}else{var d=null;if(document.cookie&&document.cookie!=""){var l=document.cookie.split(";");for(var h=0;h<l.length;h++){var c=jQuery.trim(l[h]);if(c.substring(0,b.length+1)==(b+"=")){d=decodeURIComponent(c.substring(b.length+1));break}}}return d}};if(!this.JSON){this.JSON={}}(function(){function f(n){return n<10?"0"+n:n}if(typeof Date.prototype.toJSON!=="function"){Date.prototype.toJSON=function(key){return isFinite(this.valueOf())?this.getUTCFullYear()+"-"+f(this.getUTCMonth()+1)+"-"+f(this.getUTCDate())+"T"+f(this.getUTCHours())+":"+f(this.getUTCMinutes())+":"+f(this.getUTCSeconds())+"Z":null};String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(key){return this.valueOf()}}var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},rep;function quote(string){escapable.lastIndex=0;return escapable.test(string)?'"'+string.replace(escapable,function(a){var c=meta[a];return typeof c==="string"?c:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+string+'"'}function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==="object"&&typeof value.toJSON==="function"){value=value.toJSON(key)}if(typeof rep==="function"){value=rep.call(holder,key,value)}switch(typeof value){case"string":return quote(value);case"number":return isFinite(value)?String(value):"null";case"boolean":case"null":return String(value);case"object":if(!value){return"null"}gap+=indent;partial=[];if(Object.prototype.toString.apply(value)==="[object Array]"){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||"null"}v=partial.length===0?"[]":gap?"[\n"+gap+partial.join(",\n"+gap)+"\n"+mind+"]":"["+partial.join(",")+"]";gap=mind;return v}if(rep&&typeof rep==="object"){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==="string"){v=str(k,value);if(v){partial.push(quote(k)+(gap?": ":":")+v)}}}}else{for(k in value){if(Object.hasOwnProperty.call(value,k)){v=str(k,value);if(v){partial.push(quote(k)+(gap?": ":":")+v)}}}}v=partial.length===0?"{}":gap?"{\n"+gap+partial.join(",\n"+gap)+"\n"+mind+"}":"{"+partial.join(",")+"}";gap=mind;return v}}if(typeof JSON.stringify!=="function"){JSON.stringify=function(value,replacer,space){var i;gap="";indent="";if(typeof space==="number"){for(i=0;i<space;i+=1){indent+=" "}}else{if(typeof space==="string"){indent=space}}rep=replacer;if(replacer&&typeof replacer!=="function"&&(typeof replacer!=="object"||typeof replacer.length!=="number")){throw new Error("JSON.stringify")}return str("",{"":value})}}if(typeof JSON.parse!=="function"){JSON.parse=function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==="object"){for(k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v}else{delete value[k]}}}}return reviver.call(holder,key,value)}text=String(text);cx.lastIndex=0;if(cx.test(text)){text=text.replace(cx,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})}if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){j=eval("("+text+")");return typeof reviver==="function"?walk({"":j},""):j}throw new SyntaxError("JSON.parse")}}}());(function(a){a.fn.outerHTML=function(b){return(b)?this.before(b).remove():a("<p>").append(this.eq(0).clone()).html()},a.fn.decHTML=function(){return this.each(function(){var c=jQuery(this);var b=c.html();c.html(b.replace(/&amp;/g,"&").replace(/&lt;/g,"<").replace(/&gt;/g,">"))})}})(jQuery);if(window.TP==null){var TP={}}TP.GenreCopy={init:function(b,c,a){$("select#"+b+"_selected").change(function(){TP.GenreCopy.copyGenres(this,c);$("select#"+c).trigger("change")});TP.GenreCopy.copyGenres($("select#"+b+"_selected"),c);if(a){this.selectGenreById(c,a);$("select#"+c).trigger("change")}},copyGenres:function(b,d){var a=$("select#"+d)[0].options[0];var c=$("select#"+d)[0].value;$("select#"+d).empty();$("select#"+d).append(a);$($(b).children()).each(function(){$("select#"+d).append($(this).clone())});if(c){this.selectGenreById(d,c)}},selectGenreById:function(b,a){$("select#"+b).children().each(function(){$(this).children().each(function(){if(this.value==a){this.selected="selected";return}})})}};TP.UserSelection={init:function(){$("#new_user").hide();$("#existing_user").hide();$("#selection-newuser").click(function(b){$("#new_user").show();$("#existing_user").hide()});$("#selection-existinguser").click(function(b){$("#new_user").hide();$("#existing_user").show()});var a=$("input[name=selection]:checked").val();if(a=="newuser"){$("#new_user").show();$("#existing_user").hide()}if(a=="existinguser"){$("#new_user").hide();$("#existing_user").show()}}};TP.EditProfileTabs={init:function(){$("div.edit_profile_multitab_form ul.tabs li").click(function(){TP.EditProfileTabs.openTab(this.className)})},openTab:function(a){TP.EditProfileTabs.closeAllTabs();$("div.edit_profile_multitab_form div.tabs_contents div."+a)[0].className+=" opened";$("div.edit_profile_multitab_form ul.tabs li."+a)[0].className+=" selected"},closeAllTabs:function(){$("div.edit_profile_multitab_form div.tabs_contents div.opened").each(function(){this.className=this.className.replace(/opened/,"").trim();$("div.edit_profile_multitab_form ul.tabs li."+this.className)[0].className=$("div.edit_profile_multitab_form ul.tabs li."+this.className)[0].className.replace(/selected/,"").trim()})}};TP.i18n={dictionary:new Array(),locale:"nl",addDictionary:function(a,b){this.dictionary[a]=b},translate:function(b){var a=b;if(this.dictionary&&this.dictionary[this.locale]&&this.dictionary[this.locale][b]){a=this.dictionary[this.locale][b]}return a}};TP.NotOk={openDialog:function(b,c,a){$("#notok iframe").attr("src","/notok/"+b+"/"+c);$("#notok").jqmShow()},closeDialog:function(){$("#notok").jqmHide()}};TP.TellFriend={openDialog:function(a){if(a!=null&&a>0){$("#vertelVrienden iframe").attr("src","/user/tell-friend/"+a)}else{$("#vertelVrienden iframe").attr("src","/user/tell-friend")}$("#vertelVrienden").jqmShow()},closeDialog:function(){$("#vertelVrienden").jqmHide()}};$(document).ready(function(){$(".popup_tellfriend").click(function(){TP.TellFriend.openDialog(null)})});TP.Buythemarket={openDialog:function(a){$("#buythemarketdialog iframe").attr("src","/boek/"+a+"/buythemarket");$("#buythemarketdialog").jqmShow()},closeDialog:function(){$("#buythemarketdialog").jqmHide()}};TP.Testimonial={openDialog:function(b,c,a){$("#testimonial iframe").attr("src","/testimonial/"+b+"/"+c);$("#testimonial").jqmShow()},closeDialog:function(){$("#testimonial").jqmHide()}};TP.LoginForm={openDialog:function(){$("#login iframe").attr("src","/user/logindialog");$("#login").jqmShow()},closeDialog:function(){$("#commentForm .feedbackName").hide();$("#login").jqmHide()}};TP.BookView={};TP.BookView.Overview={expandSummary:function(){$("span.summary_dots").hide();$("span.summary_extended").slideDown("",function(){$("span.summary_extended")[0].style.display="inline"})}};TP.RatingSelect={addRatingSelect:function(a){$("#"+a+"_stars>span.ratingstar").mouseover(function(){var c=this.id.substring(this.id.length-1);for(var b=1;b<=5;b++){$("#"+a+"_star_"+b).attr("class",(b<=c?"ratingstar_selected":"ratingstar"))}TP.RatingSelect.updateText(a,c)});$("#"+a+"_stars>span.ratingstar").mouseout(function(){TP.RatingSelect.unhover(a)});$("#"+a+"_stars>span.ratingstar").click(function(){var b=this.id.substring(this.id.length-1);$("#"+a).attr("value",b)});TP.RatingSelect.unhover(a)},unhover:function(c){var b=$("#"+c).attr("value");for(var a=1;a<=5;a++){$("#"+c+"_star_"+a).attr("class",(a<=b?"ratingstar_selected":"ratingstar"))}TP.RatingSelect.updateText(c,b)},updateText:function(c,a){var b=(a>=1&&a<=5?TP.i18n.translate("rating_"+a):"");$("#"+c+"_label").text(b)}};TP.FavoriteBooks={toggleAddForm:function(b){var a=$("#"+b);$(a).toggle($(a).css("display")=="none")},addFavoriteBook:function(c){var a="/user/profile/addfavoritebook";var b={title:$("#"+c+" .title").val(),author:$("#"+c+" .author").val()};if(!$("#"+c+" div.error_not_added").is(":hidden")){$("#"+c+" div.error_not_added").hide()}$.ajax({type:"POST",url:a,data:b,success:function(d){$("div.favoriteBooksElement").replaceWith(d);TP.FavoriteBooks.init(c)},error:function(){$("#"+c+" div.error_not_added").show()}})},removeFavoriteBook:function(a,d){var b="/user/profile/removefavoritebook";var c={id:d};$.ajax({type:"POST",url:b,data:c,success:function(e){$("div.favoriteBooksElement").replaceWith(e);TP.FavoriteBooks.init(a)}})}};TP.FavoriteTpBooks={removeFavoriteTpBook:function(a,d){var b="/user/profile/removefavoritetpbook";var c={id:d};$.ajax({type:"POST",url:b,data:c,success:function(e){$("div.favoriteTpBooksElement").replaceWith(e)}})},addFavoriteTpBook:function(c){var a="/user/profile/addfavoritetpbook";var b={id:c};$.ajax({type:"POST",url:a,data:b,success:function(d){$("div.favoriteTpBooksElement").replaceWith(d)}})}};TP.FreeInputSelect={init:function(a){var c=$("div#freeinput_div_"+a+" div.otherinput");var b=$("div#freeinput_div_"+a+">select");var d=$("div#freeinput_div_"+a+" div.otherinput input");b.change(function(){TP.FreeInputSelect.showFreeInputOrNot(this,c,d,true)});TP.FreeInputSelect.showFreeInputOrNot(b,c,d,false)},showFreeInputOrNot:function(b,a,d,e){var c=$(b).val();if(c=="-other-"){if(e){d.val("")}a.show()}else{d.val(c);$(d).trigger("change");a.hide()}}};TP.Newsletter={validateAndSubmit:function(b,d,c,e){var a=true;$(".fieldError").hide();$(".fieldMessage").hide();if((b.name.value==null)||(b.name.value.length==0)||(b.name.value==d)){$("#name_obligatory").show();a=false}if((b.email.value==null)||(b.email.value.length==0)||(b.email.value==c)){$("#email_obligatory").show();a=false}else{if(!this.isValidEmailAddress(b.email.value)){$("#email_invalid").show();a=false}}if(a){$.ajax({type:"POST",url:e,data:"name="+b.name.value+"&email="+b.email.value,success:function(f){$("#"+f).show()}})}},isValidEmailAddress:function(b){var a=new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i);return a.test(b)}};TP.PrivateMessage={replyDialog:"",initReplyDialog:function(){if(this.replyDialog==""){this.replyDialog=$("div#replydialog");this.replyDialog.jqm()}},openReplyDialog:function(a){this.initReplyDialog();$("div.jqmWindowBody",this.replyDialog).html('<iframe scrolling="no" frameborder="0" src="/messages/reply/'+a+'"></iframe>');this.replyDialog.jqmShow()},closeReplyDialog:function(){this.replyDialog.jqmHide()},initForm:function(){$("div#tabbody_ontvangenBerichten tr.itemRow").click(function(){TP.PrivateMessage.toggleReadMessageDialog(this)});$("div#tabbody_verzondenBerichten tr.itemRow").click(function(){TP.PrivateMessage.toggleSentMessage(this)})},toggleReadMessageDialog:function(b){var c=$("div#tabbody_ontvangenBerichten tr#"+b.id+"_message");if(c.css("display")=="block"||c.css("display")=="table-row"){c.css("display","none");b.className="itemRow"}else{if(b.className.indexOf("unread")>=0){var a=b.id.replace(/messages_itemrow_/,"");$.ajax({type:"POST",url:"/messages/markasread/"+a,success:function(d){$(b).find("td.status").html(d);$("ul#accountOverviewMenu li.messages span").each(function(){$(this).text($(this).text()-1)})}})}c.css("display","");b.className="itemRow open"}},toggleSentMessage:function(a){var b=$("div#tabbody_verzondenBerichten tr#"+a.id+"_message");if(b.css("display")=="block"||b.css("display")=="table-row"){b.css("display","none");a.className="itemRow"}else{b.css("display","");a.className="itemRow open"}},deleteMessages:function(){var a=[];$("div#tabbody_ontvangenBerichten table td.delete input").each(function(){if(this.checked){a[a.length]=this.value}});if(a.length==0){return}$.ajax({type:"POST",url:"/messages/delete",data:{"messageids[]":a},success:function(b){$(a).each(function(d,c){$("div#tabbody_ontvangenBerichten table tr#messages_itemrow_"+c+",div#tabbody_ontvangenBerichten table tr#messages_itemrow_"+c+"_message").remove()})}})},deleteSentMessages:function(){var a=[];$("div#tabbody_verzondenBerichten table td.delete input").each(function(){if(this.checked){a[a.length]=this.value}});if(a.length==0){return}$.ajax({type:"POST",url:"/messages/deletesent",data:{"messageids[]":a},success:function(b){$(a).each(function(d,c){$("div#tabbody_verzondenBerichten table tr#readmessages_itemrow_"+c+",div#tabbody_verzondenBerichten table tr#readmessages_itemrow_"+c+"_message").remove()})}})}};TP.BookRead={bookId:null,parts:null,partId:null,maxPage:null,imageIndex:1,currentPart:null,preLoadedImages:[],init:function(bookId,parts,maxPage,partId){this.bookId=bookId;this.parts=eval(parts);this.maxPage=maxPage;this.partId=partId;for(var i=0;i<parts.length;i++){if(parts[i]["id"]==partId){this.currentPart=parts[i];break}}this.setupEvents();if(this.imageIndex>1){this.loadImage(this.imageIndex-1)}if(this.imageIndex<this.maxPage){this.loadImage(this.imageIndex+1)}},setupEvents:function(){var a=this;$("#pagenumber,#pagenumber2").bind("blur",function(c){var b=$(this).val();a.changePage(parseInt(b))});$("a.prevpage").click(function(c){var b=$("#pagenumber").val();a.changePage(parseInt(b)-1);return false});$("a.nextpage").click(function(c){var b=$("#pagenumber").val();a.changePage(parseInt(b)+1);return false})},gotoPart:function(b,a){document.location=b+"/"+a.value},changePage:function(a){if(a>0&&a<=this.maxPage){this.setPartIdAndImageIndex(a);$("#image").attr("src",this.getImageSrc(this.imageIndex));$("#pagenumber,#pagenumber2").val(a);if(a==1){$(".prevpage,div#manuscriptPaperMaximized li.previous").hide();$(".nextpage,div#manuscriptPaperMaximized li.next").show()}else{if(a==this.maxPage){$(".prevpage,div#manuscriptPaperMaximized li.previous").show();$(".nextpage,div#manuscriptPaperMaximized li.next").hide()}else{$(".prevpage,div#manuscriptPaperMaximized li.previous").show();$(".nextpage,div#manuscriptPaperMaximized li.next").show()}}}},setPartIdAndImageIndex:function(a){this.loadImage(a);this.imageIndex=a;if(a>1){this.loadImage(a-1)}if(a<this.maxPage){this.loadImage(a+1)}},loadImage:function(a){if(this.preLoadedImages[a]!=null){return}var b=new Image();b.src="/bookimage/"+this.bookId+"/"+this.partId+"/"+a;this.preLoadedImages[a]=b},getImageSrc:function(a){return this.preLoadedImages[a].src}};TP.Promotools={myinterval:null,buydialog:"",url:"",checkPaymentUpdates:function(a){this.url=a;this.myinterval=window.setInterval(TP.Promotools.checkPayment,2500)},checkPayment:function(){$.ajax({type:"POST",url:TP.Promotools.url,success:function(a){if(a!=""){window.location=a}}})},openDialog:function(a){$("#promolist_buydialog iframe").attr("src","/promotools/buy/"+a);$("#promolist_buydialog").jqmShow()},closeDialog:function(){$("#promolist_buydialog").jqmHide()}};TP.Share={simpleOpenAddthisDialog:function(a,b){$("div#promotool a.addthis_button_custom").mouseover(function(){return addthis_open(this,"",a,b)});$("div#promotool").jqmShow()}};TP.Stocks={setMention:function(c,b){$("#show_confirmation_"+c).show();var a="/stock/updatemention";$.ajax({type:"POST",url:a,data:{bookId:c,mention:b}})}};TP.Poll={addVote:function(b,a){if(a==undefined){return false}$.ajax({type:"POST",url:"/poll/vote",dataType:"json",data:{pollId:b,answerId:a},cache:false,success:function(c){TP.Poll.updatePollHtml(b);$("#pollForm"+b).hide();$("#pollResults"+b).show();$("#pollResults"+b+" a.popup_contact").click(function(){$("ul#metamenu a.popup_contact").trigger("click")})}})},updatePollHtml:function(a){$.ajax({type:"GET",url:"/component/poll?poll="+a,success:function(b){$("#poll").outerHTML(b);$("#poll").corner()}})},getCookie:function(b){var e=b+"=";var a=document.cookie.split(";");for(var d=0;d<a.length;d++){var f=a[d];while(f.charAt(0)==" "){f=f.substring(1,f.length)}if(f.indexOf(e)==0){return f.substring(e.length,f.length)}}return null},hasVoted:function(b){var a="poll_voted_"+b;if(TP.Poll.getCookie(a)!=null){return true}else{return false}}};TP.ExtendedSearch={init:function(){$(".addCriteria").click(this.addCriteria);$(".removeCriteria").click(this.removeCriteria);$(".fieldType").change(this.updateInput)},addCriteria:function(){var a=$(".template").decHTML().html();$("#criteriaList").append(a);$(this).hide();TP.ExtendedSearch.init()},removeCriteria:function(){var b=$(this).parents().filter(".criteria").prev();var a=$(this).parents().filter(".criteria").find(".addCriteria").filter(":visible").length;$(this).parents().filter(".criteria").remove();var c=$(".criteria").filter(":visible").length;if(c==1){$(".criteria").filter(":visible").find(".addCriteria").show()}else{if(a==1){b.find(".addCriteria").show()}}},updateInput:function(){var b=$(this).val();if(b=="book_language"){var c='<select name="query[]"><option value="nl">nl</option><option value="en">en</option></select>';$(this).parent().next().html(c)}else{var a='<input name="query[]" />';$(this).parent().next().html(a)}}};TP.StocksSelector={waitInterval:null,spinnerInterval:null,init:function(){$("table#stockSelectTable tr.itemRow ul.spinnerArrows>li>a").mousedown(function(){var a=$(this);TP.StocksSelector.handleSpinner(a);TP.StocksSelector.spinnerInterval=window.setInterval(function(){TP.StocksSelector.handleSpinner(a)},100)});$("table#stockSelectTable tr.itemRow ul.spinnerArrows>li>a").bind("mouseup mouseout",function(){window.clearInterval(TP.StocksSelector.spinnerInterval)});$("table#stockSelectTable tr.itemRow input.amount_textinput").keyup(function(){var b=$(this).closest("tr.itemRow").attr("id");var a=TP.StocksSelector.getValueFromTextfield(b);TP.StocksSelector.setValue(b,a);TP.StocksSelector.updateSlider(b);TP.StocksSelector.queueAjaxRequest(b)});$("table#stockSelectTable tr.itemRow span.jqueryuislider").slider({min:0,max:200,slide:function(b,c){var d=$(this).closest("tr.itemRow").attr("id");var a=$("tr#"+d+" input.amount_textinput");a.val(c.value);TP.StocksSelector.queueAjaxRequest(d)}});$("table#stockSelectTable tr.itemRow input.amount_textinput").each(function(){var b=$(this).closest("tr.itemRow").attr("id");var a=TP.StocksSelector.getValueFromTextfield(b);TP.StocksSelector.setValue(b,a);TP.StocksSelector.updateSlider(b)})},handleSpinner:function(a){var c=a.closest("tr.itemRow").attr("id");var b=TP.StocksSelector.getValueFromTextfield(c);b+=(a.attr("class")=="stockspinner_up"?1:-1);TP.StocksSelector.setValue(c,b);TP.StocksSelector.updateSlider(c);TP.StocksSelector.queueAjaxRequest(c)},setValue:function(a,c){if(c>200){c=200}else{if(c<1){c=1}}var b=$("tr#"+a+" input.amount_textinput");b.val(c)},getValueFromTextfield:function(a){var b=$("tr#"+a+" input.amount_textinput");var c=Number(b.val());if(c<1||isNaN(c)){c=1}if(c>200){c=200}return c},updateSlider:function(a){var b=$("tr#"+a+" input.amount_textinput");var d=b.val();var c=Math.round((Number(d)/200)*94)+4;$("table#stockSelectTable tr#"+a+" span.jqueryuislider a.ui-slider-handle")[0].style.width=c+"%"},queueAjaxRequest:function(a){if(TP.StocksSelector.waitInterval!=null){window.clearTimeout(TP.StocksSelector.waitInterval)}TP.StocksSelector.waitInterval=window.setTimeout(function(){var b=$("tr#"+a+" input.amount_textinput");TP.Cart.updateItem(b);TP.StocksSelector.waitInterval=null},1000)}};TP.BookAdd={getUrlProposal:function(b){if(b==""){return}var a="/book/geturlproposal";$.ajax({type:"POST",url:a,data:{title:b},success:function(c){$("input#url").val(c)}})}};TP.PrintDialog={openPrintUrl:function(d,e){var c=$("div.printsettings input[name=parts]:radio:checked").val();d+="/"+c;var b=$("div.printsettings input[name=bookdetails]:radio:checked").val();d+="/"+b;var a=$("div.printsettings input[name=writerdetails]:radio:checked").val();d+="/"+a;if(e=="preview"){var f=window.open(d,"printpreview","status=0,resizable=1,toolbar=0,location=0,scrollbars=1")}else{top.location=d}}};TP.LiveValidator={registerField:function(b,e){if(e=="visible-genres_selected"){return TP.LiveValidator.customValidateGenre(b,e)}if(b=="notvisible-birth"){return TP.LiveValidator.customValidateBirthdate(b)}var d=window.location.pathname;var c="/livevalidateform";var a="#"+e.replace(/,/,",#");$(a).change(function(){var f=$(this.form).serialize();$.ajax({type:"POST",url:c,dataType:"json",data:f+"&_fieldid="+($("#"+b).attr("name")?$("#"+b).attr("name"):b)+"&_currenturl="+d,success:function(g){if(true==g.success){TP.LiveValidator.markFieldAsOk(b)}else{TP.LiveValidator.markFieldAsNotOk(b,g.messages)}}})})},markFieldAsNotOk:function(b,c){$(".isvalid_"+b).closest("li").addClass("error");var a='<ul class="errors">';$.each(c,function(d,e){a+="<li>"+e+"</li>"});a+="</ul>";$(".isvalid_"+b).closest("li").find("ul.errors").replaceWith("");$(".isvalid_"+b).replaceWith($(".isvalid_"+b).outerHTML()+a);$(".isvalid_"+b).removeClass("invalid");$(".isvalid_"+b).removeClass("valid");$(".isvalid_"+b).addClass("invalid")},markFieldAsOk:function(a){$(".isvalid_"+a).closest("li").removeClass("error");$(".isvalid_"+a).closest("li").find("ul.errors").replaceWith("");$(".isvalid_"+a).removeClass("valid");$(".isvalid_"+a).removeClass("invalid");$(".isvalid_"+a).addClass("valid")},customValidateGenre:function(a,b){TP.LiveValidator.markFieldAsOk(a)},customValidateBirthdate:function(a){$("#notvisible-birth-day,#notvisible-birth-month,#notvisible-birth-year").change(function(){TP.LiveValidator.markFieldAsOk(a)})}};TP.Popup={position:function(d){var c=(document.all)?1:0;var b=0;if(c>0){b=document.documentElement.scrollTop}else{b=window.pageYOffset}var a=$(window).width();d.w.css("top",(b+20)+"px");d.w.css("left",parseInt(a/2)+"px");d.w.show()}};TP.Publisher={refreshInvoiceLines:function(a){TP.Publisher.showSpinner();$("div#invoicelines_table").load(a,function(){TP.Publisher.hideSpinner();TP.Publisher.showOrHideSubmitButton()})},removeRow:function(a,b){TP.Publisher.showSpinner();$.ajax({type:"POST",url:a,data:"rowtmpid="+b,success:function(c){TP.Publisher.hideSpinner();$("div#invoicelines_table").html(c);TP.Publisher.showOrHideSubmitButton()}})},showSpinner:function(){$("div.spinner").show();$("div#invoicelines_table table").addClass("waiting")},hideSpinner:function(){$("div.spinner").hide()},showOrHideSubmitButton:function(){if(1==$("div#invoicelines_table table>tbody>tr>td").length){$("div.submitbutton").hide()}else{$("div.submitbutton").show()}}};TP.Tabs={tabContainer:null,init:function(){TP.Tabs.tabContainer=$("div.tpTabContainer");$("ul.genericTabList li a",TP.Tabs.tabContainer).click(function(){TP.Tabs.openTab($(this))});$("ul#accountOverviewMenu li a[href^="+window.location.pathname+"][href^=/mijnaccount#]").each(function(){var a=$(this).attr("href").replace(/^\/mijnaccount#/,"#");$(this).click(function(){var b=$("ul.genericTabList li a[href^="+a+"]");TP.Tabs.openTab(b)})});TP.Tabs.openInitialTab()},openInitialTab:function(){var b=window.location.hash;var a=false;if(b){$("ul.genericTabList li a",TP.Tabs.tabContainer).each(function(){var c=$(this);if(c.attr("href")==b){TP.Tabs.openTab(c);a=true}})}if(a){return}TP.Tabs.openTab($("ul.genericTabList li a:first",TP.Tabs.tabContainer))},openTab:function(c){$(".show_confirmation").hide();var b=c.attr("href");var a=b.replace(/^#/,"tabbody_");$("ul.genericTabList li",TP.Tabs.tabContainer).each(function(){$(this).removeClass("ui-tabs-selected")});$("div.textPanel,div.tablePanel,div.formPanel",TP.Tabs.tabContainer).each(function(){var d=$(this);if(d.attr("id")==a){d.show()}else{d.hide()}});c.parent().addClass("ui-tabs-selected")}};if(window.TP==null){var TP={}}TP.Cart={init:function(){},addItem:function(a,b){$.ajax({type:"POST",url:"/stock/add",dataType:"json",data:{bookId:a},cache:false,async:false,success:b})},removeItem:function(b,a){$.ajax({type:"POST",url:"/stock/remove",dataType:"json",data:{bookId:a},cache:false,success:function(c){if(parseInt(c.data)>0){b.remove();TP.Cart.updateAmount(c.data);TP.Cart.updateTotal()}else{$("#stockSelectTable").remove()}}})},updateItem:function(a){var b=a.val();var c=a.attr("id").replace("amount_","");if(b==""){return}if(!TP.Cart.isNumeric(b)){alert("Vul aub. een nummer in.");a.val(1);return}$.ajax({type:"POST",url:"/stock/update",dataType:"json",data:{bookId:c,amount:b},cache:false,success:function(d){if(d.status=="error"){alert(d.data);return}TP.Cart.setCookie(d.data);TP.Cart.updateAmount(d.data);$("#price_"+c).html(b*5);TP.Cart.updateTotal()}})},isNumeric:function(a){if(a.match(/^\d+$/)==null){return false}else{return true}},updateTotal:function(){$.ajax({type:"GET",url:"/stock/total",dataType:"json",cache:false,success:function(a){$("#totalPrice").text(a.data)}})},updateAmount:function(a){if(null==a){a=0}var b=parseInt(a)+" ";if(a==1){b+=TP.i18n.translate("stock")}else{b+=TP.i18n.translate("stocks")}$("#cartamount").text(b)},setDiscount:function(a){$.ajax({type:"POST",url:"/stock/setdiscount",dataType:"json",data:{value:a},cache:false,success:function(b){if(b.status=="error"){alert(b.data);return}TP.Cart.updateCredits(b.data);TP.Cart.updateStockCartWidget()}})},addPromocode:function(a){$.ajax({type:"POST",url:"/stock/addpromocode",dataType:"json",data:{promocode:a},cache:false,success:function(b){if(b.status=="error"){alert(b.data);return}if(b.data=="ok"){TP.Cart.updateStockCartWidget()}}})},updateDiscountStocksSelect:function(a){var b="";for(var c=1;c<=a;c++){b+='<option value="'+c+'">'+c+"</option>"}$("select#stockbuy_credit_amount").html(b)},updateStockCartWidget:function(){$.ajax({type:"GET",url:"/component/stockcart",success:function(a){$("#widget_stockcart").outerHTML(a)}})},updateCredits:function(a){$("#credits").text(a)},setCookie:function(a){$.cookie("tenpages_cart",parseInt(a),{path:"/"})},clearCookie:function(a){$.cookie("tenpages_cart",null)},incrementAmount:function(a){var b=a.val();var c=parseInt(b)+1;if(c>1){a.val(c)}else{a.val(1)}a.trigger("keyup")},decrementAmount:function(a){var b=a.val();var c=parseInt(b)-1;if(c>1){a.val(c)}else{a.val(1)}a.trigger("keyup")}};TP.Cart_Shop={updateItem:function(a){var b=a.val();var c=a.attr("id").replace("amount_","");if(b==""){return}if(!TP.Cart_Shop.isNumeric(b)){alert("Vul aub. een nummer in.");a.val(0);return}$.ajax({type:"POST",url:"/shop/update",dataType:"json",data:{itemId:c,amount:b},cache:false,success:function(d){if(d.status=="error"){alert(d.data);a.val(0);return}TP.Cart_Shop.setCookie(d.data);TP.Cart_Shop.updateItemTotal(c);TP.Cart_Shop.updateTotal()}})},isNumeric:function(a){if(a.match(/^\d+$/)==null){return false}else{return true}},updateTotal:function(){$.ajax({type:"GET",url:"/shop/total",dataType:"json",cache:false,success:function(a){$("#totalPrice").text(a.data)}})},updateItemTotal:function(a){$.ajax({type:"POST",url:"/shop/item-total",dataType:"json",data:{itemId:a},cache:false,success:function(b){$("#price_"+a).text(b.data)}})},setDiscount:function(a){$.ajax({type:"POST",url:"/shop/setdiscount",dataType:"json",data:{value:a},cache:false,success:function(b){if(b.status=="error"){alert(b.data);return}TP.Cart_Shop.updateCredits(b.data);TP.Cart_Shop.updateStockCartWidget()}})},addPromocode:function(a){$.ajax({type:"POST",url:"/shop/addpromocode",dataType:"json",data:{promocode:a},cache:false,success:function(b){if(b.status=="error"){alert(b.data);return}if(b.data=="ok"){TP.Cart_Shop.updateStockCartWidget()}}})},updateDiscountStocksSelect:function(a){var b="";for(var c=1;c<=a;c++){b+='<option value="'+c+'">'+c+"</option>"}$("select#stockbuy_credit_amount").html(b)},updateCredits:function(a){$("#credits").text(a)},setCookie:function(a){$.cookie("tenpages_cart_shop",parseInt(a),{path:"/"})},clearCookie:function(a){$.cookie("tenpages_cart_shop",null)},incrementAmount:function(a){var b=a.val();var c=parseInt(b)+1;if(c>1){a.val(c)}else{a.val(1)}a.trigger("keyup")},decrementAmount:function(a){var b=a.val();var c=parseInt(b)-1;if(c>0){a.val(c)}else{a.val(0)}a.trigger("keyup")}};$(document).ready(function(){TP.Cart.init()});TP.i18n.addDictionary("nl",{book:"boek",stock:"aandeel",stocks:"aandelen",rating_1:"Slecht",rating_2:"Matig",rating_3:"Redelijk",rating_4:"Goed",rating_5:"Uitstekend!"});TP.i18n.addDictionary("en",{book:"book"});
/*
 * jQuery corner plugin: simple corner rounding
 * Examples and documentation at: http://jquery.malsup.com/corner/
 * version 2.03 (05-DEC-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function(c){var a=navigator.userAgent;var f=c.browser.mozilla&&/gecko/i.test(a);var h=c.browser.safari&&/Safari\/[5-9]/.test(a);var g=c.browser.msie&&(function(){var l=document.createElement("div");try{l.style.setExpression("width","0+0");l.style.removeExpression("width")}catch(k){return false}return true})();function e(k,l){return parseInt(c.css(k,l))||0}function i(k){var k=parseInt(k).toString(16);return(k.length<2)?"0"+k:k}function b(m){for(;m&&m.nodeName.toLowerCase()!="html";m=m.parentNode){var k=c.css(m,"backgroundColor");if(k=="rgba(0, 0, 0, 0)"){continue}if(k.indexOf("rgb")>=0){var l=k.match(/\d+/g);return"#"+i(l[0])+i(l[1])+i(l[2])}if(k&&k!="transparent"){return k}}return"#ffffff"}function d(m,k,l){switch(m){case"round":return Math.round(l*(1-Math.cos(Math.asin(k/l))));case"cool":return Math.round(l*(1+Math.cos(Math.asin(k/l))));case"sharp":return Math.round(l*(1-Math.cos(Math.acos(k/l))));case"bite":return Math.round(l*(Math.cos(Math.asin((l-k-1)/l))));case"slide":return Math.round(l*(Math.atan2(k,l/k)));case"jut":return Math.round(l*(Math.atan2(l,(l-k-1))));case"curl":return Math.round(l*(Math.atan(k)));case"tear":return Math.round(l*(Math.cos(k)));case"wicked":return Math.round(l*(Math.tan(k)));case"long":return Math.round(l*(Math.sqrt(k)));case"sculpt":return Math.round(l*(Math.log((l-k-1),l)));case"dog":return(k&1)?(k+1):l;case"dog2":return(k&2)?(k+1):l;case"dog3":return(k&3)?(k+1):l;case"fray":return(k%2)*l;case"notch":return l;case"bevel":return k+1}}c.fn.corner=function(k){if(this.length==0){if(!c.isReady&&this.selector){var l=this.selector,m=this.context;c(function(){c(l,m).corner(k)})}return this}return this.each(function(s){var r=c(this);var A=[k||"",r.attr(c.fn.corner.defaults.metaAttr)||""].join(" ").toLowerCase();var H=/keep/.test(A);var z=((A.match(/cc:(#[0-9a-f]+)/)||[])[1]);var n=((A.match(/sc:(#[0-9a-f]+)/)||[])[1]);var D=parseInt((A.match(/(\d+)px/)||[])[1])||10;var B=/round|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dog/;var q=((A.match(B)||["round"])[0]);var p={T:0,B:1};var x={TL:/top|tl|left/.test(A),TR:/top|tr|right/.test(A),BL:/bottom|bl|left/.test(A),BR:/bottom|br|right/.test(A)};if(!x.TL&&!x.TR&&!x.BL&&!x.BR){x={TL:1,TR:1,BL:1,BR:1}}if(c.fn.corner.defaults.useNative&&q=="round"&&(f||h)&&!z&&!n){if(x.TL){r.css(f?"-moz-border-radius-topleft":"-webkit-border-top-left-radius",D+"px")}if(x.TR){r.css(f?"-moz-border-radius-topright":"-webkit-border-top-right-radius",D+"px")}if(x.BL){r.css(f?"-moz-border-radius-bottomleft":"-webkit-border-bottom-left-radius",D+"px")}if(x.BR){r.css(f?"-moz-border-radius-bottomright":"-webkit-border-bottom-right-radius",D+"px")}return}var E=document.createElement("div");E.style.overflow="hidden";E.style.height="1px";E.style.backgroundColor=n||"transparent";E.style.borderStyle="solid";var K={T:parseInt(c.css(this,"paddingTop"))||0,R:parseInt(c.css(this,"paddingRight"))||0,B:parseInt(c.css(this,"paddingBottom"))||0,L:parseInt(c.css(this,"paddingLeft"))||0};if(typeof this.style.zoom!=undefined){this.style.zoom=1}if(!H){this.style.border="none"}E.style.borderColor=z||b(this.parentNode);var C=c.curCSS(this,"height");for(var F in p){var v=p[F];if((v&&(x.BL||x.BR))||(!v&&(x.TL||x.TR))){E.style.borderStyle="none "+(x[F+"R"]?"solid":"none")+" none "+(x[F+"L"]?"solid":"none");var L=document.createElement("div");c(L).addClass("jquery-corner");var y=L.style;v?this.appendChild(L):this.insertBefore(L,this.firstChild);if(v&&C!="auto"){if(c.css(this,"position")=="static"){this.style.position="relative"}y.position="absolute";y.bottom=y.left=y.padding=y.margin="0";if(g){y.setExpression("width","this.parentNode.offsetWidth")}else{y.width="100%"}}else{if(!v&&c.browser.msie){if(c.css(this,"position")=="static"){this.style.position="relative"}y.position="absolute";y.top=y.left=y.right=y.padding=y.margin="0";if(g){var I=e(this,"borderLeftWidth")+e(this,"borderRightWidth");y.setExpression("width","this.parentNode.offsetWidth - "+I+'+ "px"')}else{y.width="100%"}}else{y.position="relative";y.margin=!v?"-"+K.T+"px -"+K.R+"px "+(K.T-D)+"px -"+K.L+"px":(K.B-D)+"px -"+K.R+"px -"+K.B+"px -"+K.L+"px"}}for(var G=0;G<D;G++){var u=Math.max(0,d(q,G,D));var J=E.cloneNode(false);J.style.borderWidth="0 "+(x[F+"R"]?u:0)+"px 0 "+(x[F+"L"]?u:0)+"px";v?L.appendChild(J):L.insertBefore(J,L.firstChild)}}}})};c.fn.uncorner=function(){if(f||h){this.css(f?"-moz-border-radius":"-webkit-border-radius",0)}c("div.jquery-corner",this).remove();return this};c.fn.corner.defaults={useNative:true,metaAttr:"data-corner"}})(jQuery);(function(d){d.fn.jqm=function(f){var e={overlay:50,overlayClass:"jqmOverlay",closeClass:"jqmClose",trigger:".jqModal",ajax:p,ajaxText:"",target:p,modal:p,toTop:p,onShow:p,onHide:p,onLoad:p};return this.each(function(){if(this._jqm){return o[this._jqm].c=d.extend({},o[this._jqm].c,f)}q++;this._jqm=q;o[q]={c:d.extend(e,d.jqm.params,f),a:p,w:d(this).addClass("jqmID"+q),s:q};if(e.trigger){d(this).jqmAddTrigger(e.trigger)}})};d.fn.jqmAddClose=function(f){return n(this,f,"jqmHide")};d.fn.jqmAddTrigger=function(f){return n(this,f,"jqmShow")};d.fn.jqmShow=function(e){return this.each(function(){e=e||window.event;d.jqm.open(this._jqm,e)})};d.fn.jqmHide=function(e){return this.each(function(){e=e||window.event;d.jqm.close(this._jqm,e)})};d.jqm={hash:{},open:function(C,B){var m=o[C],v=m.c,i="."+v.closeClass,w=(parseInt(m.w.css("z-index"))),w=(w>0)?w:3000,f=d("<div></div>").css({height:"100%",width:"100%",position:"fixed",left:0,top:0,"z-index":w-1,opacity:v.overlay/100});if(m.a){return p}m.t=B;m.a=true;m.w.css("z-index",w);if(v.modal){if(!a[0]){l("bind")}a.push(C)}else{if(v.overlay>0){m.w.jqmAddClose(f)}else{f=p}}m.o=(f)?f.addClass(v.overlayClass).prependTo("body"):p;if(c){d("html,body").css({height:"100%",width:"100%"});if(f){f=f.css({position:"absolute"})[0];for(var x in {Top:1,Left:1}){f.style.setExpression(x.toLowerCase(),"(_=(document.documentElement.scroll"+x+" || document.body.scroll"+x+"))+'px'")}}}if(v.ajax){var e=v.target||m.w,A=v.ajax,e=(typeof e=="string")?d(e,m.w):d(e),A=(A.substr(0,1)=="@")?d(B).attr(A.substring(1)):A;e.html(v.ajaxText).load(A,function(){if(v.onLoad){v.onLoad.call(this,m)}if(i){m.w.jqmAddClose(d(i,m.w))}k(m)})}else{if(i){m.w.jqmAddClose(d(i,m.w))}}if(v.toTop&&m.o){m.w.before('<span id="jqmP'+m.w[0]._jqm+'"></span>').insertAfter(m.o)}(v.onShow)?v.onShow(m):m.w.show();k(m);return p},close:function(f){var e=o[f];if(!e.a){return p}e.a=p;if(a[0]){a.pop();if(!a[0]){l("unbind")}}if(e.c.toTop&&e.o){d("#jqmP"+e.w[0]._jqm).after(e.w).remove()}if(e.c.onHide){e.c.onHide(e)}else{e.w.hide();if(e.o){e.o.remove()}}return p},params:{}};var q=0,o=d.jqm.hash,a=[],c=d.browser.msie&&(d.browser.version=="6.0"),p=false,g=d('<iframe src="javascript:false;document.write(\'\');" class="jqm"></iframe>').css({opacity:0}),k=function(e){if(c){if(e.o){e.o.html('<p style="width:100%;height:100%"/>').prepend(g)}else{if(!d("iframe.jqm",e.w)[0]){e.w.prepend(g)}}}h(e)},h=function(f){try{d(":input:visible",f.w)[0].focus()}catch(e){}},l=function(e){d()[e]("keypress",b)[e]("keydown",b)[e]("mousedown",b)},b=function(m){var f=o[a[a.length-1]],i=(!d(m.target).parents(".jqmID"+f.s)[0]);if(i){h(f)}return !i},n=function(e,f,i){return e.each(function(){var m=this._jqm;d(f).each(function(){if(!this[i]){this[i]=[];d(this).click(function(){for(var r in {jqmShow:1,jqmHide:1}){for(var u in this[r]){if(o[this[r][u]]){o[this[r][u]].w[r](this)}}}return p})}this[i].push(m)})})}})(jQuery);(function(e){e.fn.jqDrag=function(f){return b(this,f,"d")};e.fn.jqResize=function(f){return b(this,f,"r")};e.jqDnR={dnr:{},e:0,drag:function(f){if(g.k=="d"){d.css({left:g.X+f.pageX-g.pX,top:g.Y+f.pageY-g.pY})}else{d.css({width:Math.max(f.pageX-g.pX+g.W,0),height:Math.max(f.pageY-g.pY+g.H,0)})}return false},stop:function(){d.css("opacity",g.o);e().unbind("mousemove",a.drag).unbind("mouseup",a.stop)}};var a=e.jqDnR,g=a.dnr,d=a.e,b=function(l,i,f){return l.each(function(){i=(i)?e(i,l):l;i.bind("mousedown",{e:l,k:f},function(h){var n=h.data,m={};d=n.e;if(d.css("position")!="relative"){try{d.position(m)}catch(k){}}g={X:m.left||c("left")||0,Y:m.top||c("top")||0,W:c("width")||d[0].scrollWidth||0,H:c("height")||d[0].scrollHeight||0,pX:h.pageX,pY:h.pageY,k:n.k,o:d.css("opacity")};d.css({opacity:0.8});e().mousemove(e.jqDnR.drag).mouseup(e.jqDnR.stop);return false})})},c=function(f){return parseInt(d.css(f))||false}})(jQuery);jQuery.ui||(function(q){var k=q.fn.remove,p=q.browser.mozilla&&(parseFloat(q.browser.version)<1.9);q.ui={version:"1.7.2",plugin:{add:function(c,b,e){var a=q.ui[c].prototype;for(var d in e){a.plugins[d]=a.plugins[d]||[];a.plugins[d].push([b,e[d]])}},call:function(d,b,c){var e=d.plugins[b];if(!e||!d.element[0].parentNode){return}for(var a=0;a<e.length;a++){if(d.options[e[a][0]]){e[a][1].apply(d.element,c)}}}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(a,c){if(q(a).css("overflow")=="hidden"){return false}var d=(c&&c=="left")?"scrollLeft":"scrollTop",b=false;if(a[d]>0){return true}a[d]=1;b=(a[d]>0);a[d]=0;return b},isOverAxis:function(b,c,a){return(b>c)&&(b<(c+a))},isOver:function(e,c,f,a,d,b){return q.ui.isOverAxis(e,f,d)&&q.ui.isOverAxis(c,a,b)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(p){var n=q.attr,o=q.fn.removeAttr,l="http://www.w3.org/2005/07/aaa",s=/^aria-/,r=/^wairole:/;q.attr=function(c,d,b){var a=b!==undefined;return(d=="role"?(a?n.call(this,c,d,"wairole:"+b):(n.apply(this,arguments)||"").replace(r,"")):(s.test(d)?(a?c.setAttributeNS(l,d.replace(s,"aaa:"),b):n.call(this,c,d.replace(s,"aaa:"))):n.apply(this,arguments)))};q.fn.removeAttr=function(a){return(s.test(a)?this.each(function(){this.removeAttributeNS(l,a.replace(s,""))}):o.call(this,a))}}q.fn.extend({remove:function(){q("*",this).add(this).each(function(){q(this).triggerHandler("remove")});return k.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var a;if((q.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){a=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(q.curCSS(this,"position",1))&&(/(auto|scroll)/).test(q.curCSS(this,"overflow",1)+q.curCSS(this,"overflow-y",1)+q.curCSS(this,"overflow-x",1))}).eq(0)}else{a=this.parents().filter(function(){return(/(auto|scroll)/).test(q.curCSS(this,"overflow",1)+q.curCSS(this,"overflow-y",1)+q.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!a.length?q(document):a}});q.extend(q.expr[":"],{data:function(a,b,c){return !!q.data(a,c[3])},focusable:function(b){var a=b.nodeName.toLowerCase(),c=q.attr(b,"tabindex");return(/input|select|textarea|button|object/.test(a)?!b.disabled:"a"==a||"area"==a?b.href||!isNaN(c):!isNaN(c))&&!q(b)["area"==a?"parents":"closest"](":hidden").length},tabbable:function(a){var b=q.attr(a,"tabindex");return(isNaN(b)||b>=0)&&q(a).is(":focusable")}});function m(a,f,e,b){function c(g){var h=q[a][f][g]||[];return(typeof h=="string"?h.split(/,?\s+/):h)}var d=c("getter");if(b.length==1&&typeof b[0]=="string"){d=d.concat(c("getterSetter"))}return(q.inArray(e,d)!=-1)}q.widget=function(b,c){var a=b.split(".")[0];b=b.split(".")[1];q.fn[b]=function(e){var g=(typeof e=="string"),f=Array.prototype.slice.call(arguments,1);if(g&&e.substring(0,1)=="_"){return this}if(g&&m(a,b,e,f)){var d=q.data(this[0],b);return(d?d[e].apply(d,f):undefined)}return this.each(function(){var h=q.data(this,b);(!h&&!g&&q.data(this,b,new q[a][b](this,e))._init());(h&&g&&q.isFunction(h[e])&&h[e].apply(h,f))})};q[a]=q[a]||{};q[a][b]=function(e,f){var d=this;this.namespace=a;this.widgetName=b;this.widgetEventPrefix=q[a][b].eventPrefix||b;this.widgetBaseClass=a+"-"+b;this.options=q.extend({},q.widget.defaults,q[a][b].defaults,q.metadata&&q.metadata.get(e)[b],f);this.element=q(e).bind("setData."+b,function(h,i,g){if(h.target==e){return d._setData(i,g)}}).bind("getData."+b,function(g,h){if(g.target==e){return d._getData(h)}}).bind("remove",function(){return d.destroy()})};q[a][b].prototype=q.extend({},q.widget.prototype,c);q[a][b].getterSetter="option"};q.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(b,a){var c=b,d=this;if(typeof b=="string"){if(a===undefined){return this._getData(b)}c={};c[b]=a}q.each(c,function(f,e){d._setData(f,e)})},_getData:function(a){return this.options[a]},_setData:function(b,a){this.options[b]=a;if(b=="disabled"){this.element[a?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",a)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(b,a,g){var e=this.options[b],d=(b==this.widgetEventPrefix?b:this.widgetEventPrefix+b);a=q.Event(a);a.type=d;if(a.originalEvent){for(var c=q.event.props.length,f;c;){f=q.event.props[--c];a[f]=a.originalEvent[f]}}this.element.trigger(a,g);return !(q.isFunction(e)&&e.call(this.element[0],a,g)===false||a.isDefaultPrevented())}};q.widget.defaults={disabled:false};q.ui.mouse={_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(b){return a._mouseDown(b)}).bind("click."+this.widgetName,function(b){if(a._preventClickEvent){a._preventClickEvent=false;b.stopImmediatePropagation();return false}});if(q.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(q.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(b){b.originalEvent=b.originalEvent||{};if(b.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(b));this._mouseDownEvent=b;var c=this,a=(b.which==1),d=(typeof this.options.cancel=="string"?q(b.target).parents().add(b.target).filter(this.options.cancel).length:false);if(!a||d||!this._mouseCapture(b)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)){this._mouseStarted=(this._mouseStart(b)!==false);if(!this._mouseStarted){b.preventDefault();return true}}this._mouseMoveDelegate=function(e){return c._mouseMove(e)};this._mouseUpDelegate=function(e){return c._mouseUp(e)};q(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(q.browser.safari||b.preventDefault());b.originalEvent.mouseHandled=true;return true},_mouseMove:function(a){if(q.browser.msie&&!a.button){return this._mouseUp(a)}if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,a)!==false);(this._mouseStarted?this._mouseDrag(a):this._mouseUp(a))}return !this._mouseStarted},_mouseUp:function(a){q(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(a.target==this._mouseDownEvent.target);this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return(Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance)},_mouseDelayMet:function(a){return this.mouseDelayMet},_mouseStart:function(a){},_mouseDrag:function(a){},_mouseStop:function(a){},_mouseCapture:function(a){return true}};q.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);(function(b){b.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(a,d){if(a=="selected"){if(this.options.collapsible&&d==this.options.selected){return}this.select(d)}else{this.options[a]=d;if(a=="deselectable"){this.options.collapsible=d}this._tabify()}},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+b.data(a)},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var a=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+b.data(this.list[0]));return b.cookie.apply(null,[a].concat(b.makeArray(arguments)))},_ui:function(d,a){return{tab:d,panel:a,index:this.anchors.index(d)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var a=b(this);a.html(a.data("label.tabs")).removeData("label.tabs")})},_tabify:function(i){this.list=this.element.children("ul:first");this.lis=b("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return b("a",this)[0]});this.panels=b([]);var a=this,y=this.options;var z=/^#.+/;this.anchors.each(function(g,k){var h=b(k).attr("href");var f=h.split("#")[0],e;if(f&&(f===location.toString().split("#")[0]||(e=b("base")[0])&&f===e.href)){h=k.hash;k.href=h}if(z.test(h)){a.panels=a.panels.add(a._sanitizeSelector(h))}else{if(h!="#"){b.data(k,"href.tabs",h);b.data(k,"load.tabs",h.replace(/#.*$/,""));var c=a._tabId(k);k.href="#"+c;var d=b("#"+c);if(!d.length){d=b(y.panelTemplate).attr("id",c).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);d.data("destroy.tabs",true)}a.panels=a.panels.add(d)}else{y.disabled.push(g)}}});if(i){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(y.selected===undefined){if(location.hash){this.anchors.each(function(c,d){if(d.hash==location.hash){y.selected=c;return false}})}if(typeof y.selected!="number"&&y.cookie){y.selected=parseInt(a._cookie(),10)}if(typeof y.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){y.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}y.selected=y.selected||0}else{if(y.selected===null){y.selected=-1}}y.selected=((y.selected>=0&&this.anchors[y.selected])||y.selected<0)?y.selected:0;y.disabled=b.unique(y.disabled.concat(b.map(this.lis.filter(".ui-state-disabled"),function(c,d){return a.lis.index(c)}))).sort();if(b.inArray(y.selected,y.disabled)!=-1){y.disabled.splice(b.inArray(y.selected,y.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(y.selected>=0&&this.anchors.length){this.panels.eq(y.selected).removeClass("ui-tabs-hide");this.lis.eq(y.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[y.selected],a.panels[y.selected]))});this.load(y.selected)}b(window).bind("unload",function(){a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else{y.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[y.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(y.cookie){this._cookie(y.selected,y.cookie)}for(var v=0,o;(o=this.lis[v]);v++){b(o)[b.inArray(v,y.disabled)!=-1&&!b(o).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(y.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(y.event!="mouseover"){var w=function(d,c){if(c.is(":not(.ui-state-disabled)")){c.addClass("ui-state-"+d)}};var s=function(d,c){c.removeClass("ui-state-"+d)};this.lis.bind("mouseover.tabs",function(){w("hover",b(this))});this.lis.bind("mouseout.tabs",function(){s("hover",b(this))});this.anchors.bind("focus.tabs",function(){w("focus",b(this).closest("li"))});this.anchors.bind("blur.tabs",function(){s("focus",b(this).closest("li"))})}var A,u;if(y.fx){if(b.isArray(y.fx)){A=y.fx[0];u=y.fx[1]}else{A=u=y.fx}}function x(c,d){c.css({display:""});if(b.browser.msie&&d.opacity){c[0].style.removeAttribute("filter")}}var r=u?function(c,d){b(c).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");d.hide().removeClass("ui-tabs-hide").animate(u,u.duration||"normal",function(){x(d,u);a._trigger("show",null,a._ui(c,d[0]))})}:function(c,d){b(c).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");d.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(c,d[0]))};var q=A?function(d,c){c.animate(A,A.duration||"normal",function(){a.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");c.addClass("ui-tabs-hide");x(c,A);a.element.dequeue("tabs")})}:function(e,c,d){a.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");c.addClass("ui-tabs-hide");a.element.dequeue("tabs")};this.anchors.bind(y.event+".tabs",function(){var f=this,d=b(this).closest("li"),c=a.panels.filter(":not(.ui-tabs-hide)"),e=b(a._sanitizeSelector(this.hash));if((d.hasClass("ui-tabs-selected")&&!y.collapsible)||d.hasClass("ui-state-disabled")||d.hasClass("ui-state-processing")||a._trigger("select",null,a._ui(this,e[0]))===false){this.blur();return false}y.selected=a.anchors.index(this);a.abort();if(y.collapsible){if(d.hasClass("ui-tabs-selected")){y.selected=-1;if(y.cookie){a._cookie(y.selected,y.cookie)}a.element.queue("tabs",function(){q(f,c)}).dequeue("tabs");this.blur();return false}else{if(!c.length){if(y.cookie){a._cookie(y.selected,y.cookie)}a.element.queue("tabs",function(){r(f,e)});a.load(a.anchors.index(this));this.blur();return false}}}if(y.cookie){a._cookie(y.selected,y.cookie)}if(e.length){if(c.length){a.element.queue("tabs",function(){q(f,c)})}a.element.queue("tabs",function(){r(f,e)});a.load(a.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(b.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var a=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var f=b.data(this,"href.tabs");if(f){this.href=f}var e=b(this).unbind(".tabs");b.each(["href","load","cache"],function(d,c){e.removeData(c+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(b.data(this,"destroy.tabs")){b(this).remove()}else{b(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(a.cookie){this._cookie(null,a.cookie)}},add:function(o,p,q){if(q===undefined){q=this.anchors.length}var a=this,m=this.options,k=b(m.tabTemplate.replace(/#\{href\}/g,o).replace(/#\{label\}/g,p)),l=!o.indexOf("#")?o.replace("#",""):this._tabId(b("a",k)[0]);k.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var n=b("#"+l);if(!n.length){n=b(m.panelTemplate).attr("id",l).data("destroy.tabs",true)}n.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(q>=this.lis.length){k.appendTo(this.list);n.appendTo(this.list[0].parentNode)}else{k.insertBefore(this.lis[q]);n.insertBefore(this.panels[q])}m.disabled=b.map(m.disabled,function(c,d){return c>=q?++c:c});this._tabify();if(this.anchors.length==1){k.addClass("ui-tabs-selected ui-state-active");n.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[0],a.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[q],this.panels[q]))},remove:function(a){var g=this.options,f=this.lis.eq(a).remove(),h=this.panels.eq(a).remove();if(f.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(a+(a+1<this.anchors.length?1:-1))}g.disabled=b.map(b.grep(g.disabled,function(c,d){return c!=a}),function(c,d){return c>=a?--c:c});this._tabify();this._trigger("remove",null,this._ui(f.find("a")[0],h[0]))},enable:function(a){var d=this.options;if(b.inArray(a,d.disabled)==-1){return}this.lis.eq(a).removeClass("ui-state-disabled");d.disabled=b.grep(d.disabled,function(c,f){return c!=a});this._trigger("enable",null,this._ui(this.anchors[a],this.panels[a]))},disable:function(f){var a=this,e=this.options;if(f!=e.selected){this.lis.eq(f).addClass("ui-state-disabled");e.disabled.push(f);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[f],this.panels[f]))}},select:function(a){if(typeof a=="string"){a=this.anchors.index(this.anchors.filter("[href$="+a+"]"))}else{if(a===null){a=-1}}if(a==-1&&this.options.collapsible){a=this.options.selected}this.anchors.eq(a).trigger(this.options.event+".tabs")},load:function(k){var m=this,h=this.options,a=this.anchors.eq(k)[0],l=b.data(a,"load.tabs");this.abort();if(!l||this.element.queue("tabs").length!==0&&b.data(a,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(k).addClass("ui-state-processing");if(h.spinner){var i=b("span",a);i.data("label.tabs",i.html()).html(h.spinner)}this.xhr=b.ajax(b.extend({},h.ajaxOptions,{url:l,success:function(d,e){b(m._sanitizeSelector(a.hash)).html(d);m._cleanup();if(h.cache){b.data(a,"cache.tabs",true)}m._trigger("load",null,m._ui(m.anchors[k],m.panels[k]));try{h.ajaxOptions.success(d,e)}catch(c){}m.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(d,a){this.anchors.eq(d).removeData("cache.tabs").data("load.tabs",a)},length:function(){return this.anchors.length}});b.extend(b.ui.tabs,{version:"1.7.2",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"<div></div>",spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});b.extend(b.ui.tabs.prototype,{rotation:null,rotate:function(l,i){var a=this,h=this.options;var m=a._rotate||(a._rotate=function(c){clearTimeout(a.rotation);a.rotation=setTimeout(function(){var d=h.selected;a.select(++d<a.anchors.length?d:0)},l);if(c){c.stopPropagation()}});var k=a._unrotate||(a._unrotate=!i?function(c){if(c.clientX){a.rotate(null)}}:function(c){t=h.selected;m()});if(l){this.element.bind("tabsshow",m);this.anchors.bind(h.event+".tabs",k);m()}else{clearTimeout(a.rotation);this.element.unbind("tabsshow",m);this.anchors.unbind(h.event+".tabs",k);delete this._rotate;delete this._unrotate}}})})(jQuery);var Cufon=(function(){var P=function(){return P.replace.apply(null,arguments)};var D=P.DOM={ready:(function(){var c=false,a={loaded:1,complete:1};var d=[],b=function(){if(c){return}c=true;for(var e;e=d.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){a[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(e){setTimeout(arguments.callee,1)}})()}K(window,"load",b);return function(e){if(!arguments.length){b()}else{c?e():d.push(e)}}})(),root:function(){return document.documentElement||document.body}};var O=P.CSS={Size:function(a,b){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/b*this.value};this.convertFrom=function(c){return c/this.value*b};this.toString=function(){return this.value+this.unit}},addClass:function(b,c){var a=b.className;b.className=a+(a&&" ")+c;return b},color:S(function(a){var b={};b.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,e,c){b.opacity=parseFloat(c);return"rgb("+e+")"});return b}),fontStretch:S(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(a){var b=document.defaultView;if(b&&b.getComputedStyle){return new ab(b.getComputedStyle(a,null))}if(a.currentStyle){return new ab(a.currentStyle)}return new ab(a.style)},gradient:S(function(b){var a={id:b,type:b.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},e=b.substr(b.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var c=0,f=e.length,d;c<f;++c){d=e[c].split("=",2).reverse();a.stops.push([d[1]||c/(f-1),d[0]])}return a}),quotedList:S(function(a){var b=[],c=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,d;while(d=c.exec(a)){b.push(d[3]||d[1])}return b}),recognizesMedia:S(function(a){var c=document.createElement("style"),d,e,f;c.type="text/css";c.media=a;try{c.appendChild(document.createTextNode("/**/"))}catch(b){}e=V("head")[0];e.insertBefore(c,e.firstChild);d=(c.sheet||c.styleSheet);f=d&&!d.disabled;e.removeChild(c);return f}),removeClass:function(a,b){var c=RegExp("(?:^|\\s+)"+b+"(?=\\s|$)","g");a.className=a.className.replace(c,"");return a},supports:function(a,b){var c=document.createElement("span").style;if(c[a]===undefined){return false}c[a]=b;return c[a]===b},textAlign:function(a,b,d,c){if(b.get("textAlign")=="right"){if(d>0){a=" "+a}}else{if(d<c-1){a+=" "}}return a},textShadow:S(function(b){if(b=="none"){return null}var c=[],a={},f,e=0;var d=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(f=d.exec(b)){if(f[0]==","){c.push(a);a={};e=0}else{if(f[1]){a.color=f[1]}else{a[["offX","offY","blur"][e++]]=f[2]}}}c.push(a);return c}),textTransform:(function(){var a={uppercase:function(b){return b.toUpperCase()},lowercase:function(b){return b.toLowerCase()},capitalize:function(b){return b.replace(/\b./g,function(c){return c.toUpperCase()})}};return function(b,c){var d=a[c.get("textTransform")];return d?d(b):b}})(),whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};var b=/^\s+/,c=/\s+$/;return function(d,f,e,g){if(g){if(g.nodeName.toLowerCase()=="br"){d=d.replace(b,"")}}if(a[f.get("display")]){return d}if(!e.previousSibling){d=d.replace(b,"")}if(!e.nextSibling){d=d.replace(c,"")}return d}})()};O.ready=(function(){var c=!O.recognizesMedia("all"),i=false;var a=[],f=function(){c=true;for(var k;k=a.shift();k()){}};var e=V("link"),d=V("style");function b(k){return k.disabled||g(k.sheet,k.media||"screen")}function g(q,n){if(!O.recognizesMedia(n||"all")){return true}if(!q||q.disabled){return false}try{var m=q.cssRules,o;if(m){search:for(var k=0,l=m.length;o=m[k],k<l;++k){switch(o.type){case 2:break;case 3:if(!g(o.styleSheet,o.media.mediaText)){return false}break;default:break search}}}}catch(p){}return true}function h(){if(document.createStyleSheet){return true}var k,l;for(l=0;k=e[l];++l){if(k.rel.toLowerCase()=="stylesheet"&&!b(k)){return false}}for(l=0;k=d[l];++l){if(!b(k)){return false}}return true}D.ready(function(){if(!i){i=O.getStyle(document.body).isUsable()}if(c||(i&&h())){f()}else{setTimeout(arguments.callee,10)}});return function(k){if(c){k()}else{a.push(k)}}})();function I(a){var b=this.face=a.face,c={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(b["units-per-em"],10);this.family=b["font-family"].toLowerCase();this.weight=b["font-weight"];this.style=b["font-style"]||"normal";this.viewBox=(function(){var d=b.bbox.split(/\s+/);var e={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};e.width=e.maxX-e.minX;e.height=e.maxY-e.minY;e.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return e})();this.ascent=-parseInt(b.ascent,10);this.descent=-parseInt(b.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(h,f,p){var e=this.glyphs,g,i,n,d=[],o=0,k=-1,l=-1,m;while(m=h[++k]){g=e[m]||this.missingGlyph;if(!g){continue}if(i){o-=n=i[m]||0;d[l]-=n}o+=d[++l]=~~(g.w||this.w)+f+(c[m]?p:0);i=g.k}d.total=o;return d}}function W(){var a={},b={oblique:"italic",italic:"oblique"};this.add=function(c){(a[c.style]||(a[c.style]={}))[c.weight]=c};this.get=function(f,e){var g=a[f]||a[b[f]]||a.normal||a.italic||a.oblique;if(!g){return null}e={normal:400,bold:700}[e]||parseInt(e,10);if(g[e]){return g[e]}var i={1:1,99:0}[e%100],c=[],h,k;if(i===undefined){i=e>400}if(e==500){e=400}for(var d in g){if(!R(g,d)){continue}d=parseInt(d,10);if(!h||d<h){h=d}if(!k||d>k){k=d}c.push(d)}if(e<h){e=h}if(e>k){e=k}c.sort(function(m,l){return(i?(m>=e&&l>=e)?m<l:m>l:(m<=e&&l<=e)?m>l:m<l)?-1:1});return g[c[0]]}}function J(){function b(f,e){if(f.contains){return f.contains(e)}return f.compareDocumentPosition(e)&16}function d(e){var f=e.relatedTarget;if(!f||b(this,f)){return}c(this,e.type=="mouseover")}function a(e){c(this,e.type=="mouseenter")}function c(f,e){setTimeout(function(){var g=Y.get(f).options;P.replace(f,e?U(g,g.hover):g,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){K(e,"mouseover",d);K(e,"mouseout",d)}else{K(e,"mouseenter",a);K(e,"mouseleave",a)}}}function G(){var b=[],a={};function c(d){var g=[],e;for(var f=0;e=d[f];++f){g[f]=b[a[e]]}return g}this.add=function(d,e){a[d]=b.push(e)-1};this.repeat=function(){var f=arguments.length?c(arguments):b,e;for(var d=0;e=f[d++];){P.replace(e[0],e[1],true)}}}function M(){var a={},c=0;function b(d){return d.cufid||(d.cufid=++c)}this.get=function(e){var d=b(e);return a[d]||(a[d]={})}}function ab(c){var a={},b={};this.extend=function(e){for(var d in e){if(R(e,d)){a[d]=e[d]}}return this};this.get=function(d){return a[d]!=undefined?a[d]:c[d]};this.getSize=function(d,e){return b[d]||(b[d]=new O.Size(this.get(d),e))};this.isUsable=function(){return !!c}}function K(b,c,a){if(b.addEventListener){b.addEventListener(c,a,false)}else{if(b.attachEvent){b.attachEvent("on"+c,function(){return a.call(b,window.event)})}}}function F(b,c){var a=Y.get(b);if(a.options){return b}if(c.hover&&c.hoverables[b.nodeName.toLowerCase()]){aa.attach(b)}a.options=c;return b}function S(b){var a={};return function(c){if(!R(a,c)){a[c]=b.apply(null,arguments)}return a[c]}}function Z(a,b){var e=O.quotedList(b.get("fontFamily").toLowerCase()),c;for(var d=0;c=e[d];++d){if(T[c]){return T[c].get(b.get("fontStyle"),b.get("fontWeight"))}}return null}function V(a){return document.getElementsByTagName(a)}function R(a,b){return a.hasOwnProperty(b)}function U(){var d={},e,a;for(var b=0,c=arguments.length;e=arguments[b],b<c;++b){for(a in e){if(R(e,a)){d[a]=e[a]}}}return d}function N(n,e,b,d,m,a){var g=document.createDocumentFragment(),k;if(e===""){return g}var f=d.separate;var i=e.split(L[f]),c=(f=="words");if(c&&H){if(/^\s/.test(e)){i.unshift("")}if(/\s$/.test(e)){i.push("")}}for(var h=0,l=i.length;h<l;++h){k=B[d.engine](n,c?O.textAlign(i[h],b,h,l):i[h],b,d,m,a,h<l-1);if(k){g.appendChild(k)}}return g}function Q(a,d){var b=a.nodeName.toLowerCase();if(d.ignore[b]){return}var m=!d.textless[b];var c=O.getStyle(F(a,d)).extend(d);var l=Z(a,c),k,f,h,i,e,g;if(!l){return}for(k=a.firstChild;k;k=h){f=k.nodeType;h=k.nextSibling;if(m&&f==3){if(i){i.appendData(k.data);a.removeChild(k)}else{i=k}if(h){continue}}if(i){a.replaceChild(N(l,O.whiteSpace(i.data,c,i,g),c,d,k,a),i);i=null}if(f==1){if(k.firstChild){if(k.nodeName.toLowerCase()=="cufon"){B[d.engine](l,null,c,d,k,a)}else{arguments.callee(k,d)}}g=k}}}var H=" ".split(/\s+/).length==0;var Y=new M();var aa=new J();var C=new G();var X=false;var B={},T={},E={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||V),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var L={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};P.now=function(){D.ready();return P};P.refresh=function(){C.repeat.apply(C,arguments);return P};P.registerEngine=function(a,b){if(!b){return P}B[a]=b;return P.set("engine",a)};P.registerFont=function(a){if(!a){return P}var c=new I(a),b=c.family;if(!T[b]){T[b]=new W()}T[b].add(c);return P.set("fontFamily",'"'+b+'"')};P.replace=function(a,b,c){b=U(E,b);if(!b.engine){return P}if(!X){O.addClass(D.root(),"cufon-active cufon-loading");O.ready(function(){O.addClass(O.removeClass(D.root(),"cufon-loading"),"cufon-ready")});X=true}if(b.hover){b.forceHitArea=true}if(b.autoDetect){delete b.fontFamily}if(typeof b.textShadow=="string"){b.textShadow=O.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=O.gradient(b.color)}else{delete b.textGradient}if(!c){C.add(a,arguments)}if(a.nodeType||typeof a=="string"){a=[a]}O.ready(function(){for(var e=0,f=a.length;e<f;++e){var d=a[e];if(typeof d=="string"){P.replace(b.selector(d),b,true)}else{Q(d,b)}}});return P};P.set=function(b,a){E[b]=a;return P};return P})();Cufon.registerEngine("canvas",(function(){var g=document.createElement("canvas");if(!g||!g.getContext||!g.getContext.apply){return}g=null;var h=Cufon.CSS.supports("display","inline-block");var k=!h&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var i=document.createElement("style");i.type="text/css";i.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(k?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(h?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(i);function l(a,r){var c=0,d=0;var s=[],b=/([mrvxe])([^a-z]*)/g,f;generate:for(var q=0;f=b.exec(a);++q){var e=f[2].split(",");switch(f[1]){case"v":s[q]={m:"bezierCurveTo",a:[c+~~e[0],d+~~e[1],c+~~e[2],d+~~e[3],c+=~~e[4],d+=~~e[5]]};break;case"r":s[q]={m:"lineTo",a:[c+=~~e[0],d+=~~e[1]]};break;case"m":s[q]={m:"moveTo",a:[c=~~e[0],d=~~e[1]]};break;case"x":s[q]={m:"closePath"};break;case"e":break generate}r[s[q].m].apply(r,s[q].a)}return s}function m(a,b){for(var c=0,d=a.length;c<d;++c){var e=a[c];b[e.m].apply(b,e.a)}}return function(e,aw,ad,az,aq,d){var aH=(aw===null);if(aH){aw=aq.getAttribute("alt")}var at=e.viewBox;var aG=ad.getSize("fontSize",e.baseSize);var ar=0,ae=0,af=0,ay=0;var av=az.textShadow,ah=[];if(av){for(var f=av.length;f--;){var an=av[f];var ai=aG.convertFrom(parseFloat(an.offX));var ak=aG.convertFrom(parseFloat(an.offY));ah[f]=[ai,ak];if(ak<ar){ar=ak}if(ai>ae){ae=ai}if(ak>af){af=ak}if(ai<ay){ay=ai}}}var a=Cufon.CSS.textTransform(aw,ad).split("");var ao=e.spacing(a,~~aG.convertFrom(parseFloat(ad.get("letterSpacing"))||0),~~aG.convertFrom(parseFloat(ad.get("wordSpacing"))||0));if(!ao.length){return null}var aJ=ao.total;ae+=at.width-ao[ao.length-1];ay+=at.minX;var aA,aF;if(aH){aA=aq;aF=aq.firstChild}else{aA=document.createElement("cufon");aA.className="cufon cufon-canvas";aA.setAttribute("alt",aw);aF=document.createElement("canvas");aA.appendChild(aF);if(az.printable){var y=document.createElement("cufontext");y.appendChild(document.createTextNode(aw));aA.appendChild(y)}}var au=aA.style;var al=aF.style;var aI=aG.convert(at.height);var b=Math.ceil(aI);var ag=b/aI;var am=ag*Cufon.CSS.fontStretch(ad.get("fontStretch"));var aj=aJ*am;var ac=Math.ceil(aG.convert(aj+ae-ay));var aE=Math.ceil(aG.convert(at.height-ar+af));aF.width=ac;aF.height=aE;al.width=ac+"px";al.height=aE+"px";ar+=at.minY;al.top=Math.round(aG.convert(ar-e.ascent))+"px";al.left=Math.round(aG.convert(ay))+"px";var aB=Math.max(Math.ceil(aG.convert(aj)),0)+"px";if(h){au.width=aB;au.height=aG.convert(e.height)+"px"}else{au.paddingLeft=aB;au.paddingBottom=(aG.convert(e.height)-1)+"px"}var c=aF.getContext("2d"),ap=aI/at.height;c.scale(ap,ap*ag);c.translate(-ay,-ar);c.save();function x(){var n=e.glyphs,q,o=-1,p=-1,r;c.scale(am,1);while(r=a[++o]){var q=n[a[o]]||e.missingGlyph;if(!q){continue}if(q.d){c.beginPath();if(q.code){m(q.code,c)}else{q.code=l("m"+q.d,c)}c.fill()}c.translate(ao[++p],0)}c.restore()}if(av){for(var f=av.length;f--;){var an=av[f];c.save();c.fillStyle=an.color;c.translate.apply(c,ah[f]);x()}}var aC=az.textGradient;if(aC){var ax=aC.stops,aD=c.createLinearGradient(0,at.minY,0,at.maxY);for(var f=0,ab=ax.length;f<ab;++f){aD.addColorStop.apply(aD,ax[f])}c.fillStyle=aD}else{c.fillStyle=ad.get("color")}x();return aA}})());Cufon.registerEngine("vml",(function(){var o=document.namespaces;if(!o){return}o.add("cvml","urn:schemas-microsoft-com:vml");o=null;var i=document.createElement("cvml:shape");i.style.behavior="url(#default#VML)";if(!i.coordsize){return}i=null;var l=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(l?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function q(b,a){return k(b,/(?:em|ex|%)$|^[a-z-]+$/i.test(a)?"1em":a)}function k(b,a){if(a==="0"){return 0}if(/px$/i.test(a)){return parseFloat(a)}var c=b.style.left,d=b.runtimeStyle.left;b.runtimeStyle.left=b.currentStyle.left;b.style.left=a.replace("%","em");var e=b.style.pixelLeft;b.style.left=c;b.runtimeStyle.left=d;return e}function n(b,c,d,f){var e="computed"+f,a=c[e];if(isNaN(a)){a=c.get(f);c[e]=a=(a=="normal")?0:~~d.convertFrom(k(b,a))}return a}var m={};function p(e){var d=e.id;if(!m[d]){var g=e.stops,f=document.createElement("cvml:fill"),c=[];f.type="gradient";f.angle=180;f.focus="0";f.method="sigma";f.color=g[0][1];for(var a=1,b=g.length-1;a<b;++a){c.push(g[a][0]*100+"% "+g[a][1])}f.colors=c.join(",");f.color2=g[b][1];m[d]=f}return m[d]}return function(aH,ax,b,aF,aq,aE,d){var aX=(ax===null);if(aX){ax=aq.alt}var at=aH.viewBox;var aV=b.computedFontSize||(b.computedFontSize=new Cufon.CSS.Size(q(aE,b.get("fontSize"))+"px",aH.baseSize));var aM,aU;if(aX){aM=aq;aU=aq.firstChild}else{aM=document.createElement("cufon");aM.className="cufon cufon-vml";aM.alt=ax;aU=document.createElement("cufoncanvas");aM.appendChild(aU);if(aF.printable){var a=document.createElement("cufontext");a.appendChild(document.createTextNode(ax));aM.appendChild(a)}if(!d){aM.appendChild(document.createElement("cvml:shape"))}}var au=aM.style;var aj=aU.style;var aZ=aV.convert(at.height),aB=Math.ceil(aZ);var e=aB/aZ;var al=e*Cufon.CSS.fontStretch(b.get("fontStretch"));var f=at.minX,g=at.minY;aj.height=aB;aj.top=Math.round(aV.convert(g-aH.ascent));aj.left=Math.round(aV.convert(f));au.height=aV.convert(aH.height)+"px";var az=b.get("color");var ay=Cufon.CSS.textTransform(ax,b).split("");var ap=aH.spacing(ay,n(aE,b,aV,"letterSpacing"),n(aE,b,aV,"wordSpacing"));if(!ap.length){return null}var a0=ap.total;var aN=-f+a0+(at.width-ap[ap.length-1]);var aw=aV.convert(aN*al),c=Math.round(aw);var am=aN+","+at.height,aY;var ar="r"+am+"ns";var aQ=aF.textGradient&&p(aF.textGradient);var aW=aH.glyphs,h=0;var av=aF.textShadow;var aJ=-1,aK=0,aO;while(aO=ay[++aJ]){var aD=aW[ay[aJ]]||aH.missingGlyph,aP;if(!aD){continue}if(aX){aP=aU.childNodes[aK];while(aP.firstChild){aP.removeChild(aP.firstChild)}}else{aP=document.createElement("cvml:shape");aU.appendChild(aP)}aP.stroked="f";aP.coordsize=am;aP.coordorigin=aY=(f-h)+","+g;aP.path=(aD.d?"m"+aD.d+"xe":"")+"m"+aY+ar;aP.fillcolor=az;if(aQ){aP.appendChild(aQ.cloneNode(false))}var aC=aP.style;aC.width=c;aC.height=aB;if(av){var aS=av[0],aT=av[1];var aG=Cufon.CSS.color(aS.color),aL;var an=document.createElement("cvml:shadow");an.on="t";an.color=aG.color;an.offset=aS.offX+","+aS.offY;if(aT){aL=Cufon.CSS.color(aT.color);an.type="double";an.color2=aL.color;an.offset2=aT.offX+","+aT.offY}an.opacity=aG.opacity||(aL&&aL.opacity)||1;aP.appendChild(an)}h+=ap[aK++]}var ao=aP.nextSibling,aR,aI;if(aF.forceHitArea){if(!ao){ao=document.createElement("cvml:rect");ao.stroked="f";ao.className="cufon-vml-cover";aR=document.createElement("cvml:fill");aR.opacity=0;ao.appendChild(aR);aU.appendChild(ao)}aI=ao.style;aI.width=c;aI.height=aB}else{if(ao){aU.removeChild(ao)}}au.width=Math.max(Math.ceil(aV.convert(a0*al)),0);if(l){var ak=b.computedYAdjust;if(ak===undefined){var aA=b.get("lineHeight");if(aA=="normal"){aA="1em"}else{if(!isNaN(aA)){aA+="em"}}b.computedYAdjust=ak=0.5*(k(aE,aA)-parseFloat(au.height))}if(ak){au.marginTop=Math.ceil(ak)+"px";au.marginBottom=ak+"px"}}return aM}})());
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is
 * a registered trademark of International Typeface Corporation.
 * 
 * Trademark:
 * ITC American Typewriter is a registered trademark of International Typeface
 * Corporation.
 * 
 * Vendor URL:
 * http://www.agfamonotype.com
 */
Cufon.registerFont({w:229,face:{"font-family":"American Typewriter","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 9 6 4 2 0 4 2 3 4",ascent:"288",descent:"-72","x-height":"6",bbox:"-41 -325 344.775 90","underline-thickness":"7.2","underline-position":"-56.16","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:90},"!":{d:"98,-17v0,12,-11,23,-23,23v-12,0,-22,-10,-22,-23v0,-12,9,-23,22,-22v13,0,23,10,23,22xm63,-73r-2,-156v0,-13,5,-19,15,-19v29,0,13,61,13,99r0,83v-2,9,-4,12,-13,11v-9,0,-13,-6,-13,-18",w:150},'"':{d:"48,-240r-5,96r-19,0r-5,-96r29,0xm99,-240r-4,96r-20,0r-4,-96r28,0",w:118},"#":{d:"158,-99r39,0r-4,24r-39,0r-11,75r-27,0r11,-75r-49,0r-11,75r-27,0r12,-75r-40,0r3,-24r40,0r8,-47r-40,0r3,-24r40,0r11,-70r27,0r-11,70r48,0r11,-70r27,0r-10,70r39,0r-4,24r-39,0xm131,-99r7,-47r-48,0r-8,47r49,0",w:216},"$":{d:"198,-188v1,23,-36,30,-37,6v0,-5,2,-9,7,-12v-5,-15,-19,-24,-41,-24r0,81v46,8,80,21,80,66v0,46,-35,65,-80,72v-2,15,7,40,-10,40v-18,0,-7,-26,-10,-40v-46,-2,-79,-19,-84,-63v-4,-32,45,-46,45,-14v0,10,-7,15,-19,16v3,24,28,38,58,38r0,-91v-43,-11,-73,-15,-73,-61v0,-42,31,-63,73,-68v2,-15,-6,-39,10,-39v16,0,8,25,10,39v36,3,69,21,71,54xm62,-179v0,28,21,29,45,38r0,-77v-23,0,-45,15,-45,39xm179,-67v-1,-30,-22,-37,-52,-42r0,87v28,0,52,-18,52,-45"},"%":{d:"72,-248v37,-3,49,40,80,39v17,0,32,-11,43,-33v5,-10,22,-14,26,-5r-134,256v-11,11,-27,-3,-14,-14r98,-190v-16,11,-36,7,-46,-6v11,49,-7,99,-55,99v-38,0,-57,-31,-57,-72v0,-42,21,-71,59,-74xm218,8v-37,-1,-59,-29,-59,-70v0,-43,21,-76,60,-77v39,0,57,31,57,73v0,40,-22,74,-58,74xm37,-174v0,28,9,51,34,52v22,0,33,-17,33,-52v0,-36,-10,-54,-32,-54v-23,0,-35,18,-35,54xm217,-13v25,0,34,-24,35,-53v0,-35,-11,-52,-33,-52v-26,0,-36,26,-36,55v0,28,9,50,34,50",w:288},"&":{d:"110,-252v31,0,55,17,55,47v0,27,-17,49,-52,67r43,63v15,-46,43,-114,88,-110v26,2,49,18,48,45v0,25,-19,46,-44,46v-16,0,-31,-10,-31,-25v-4,-20,28,-23,28,-6v0,1,-1,3,-2,6v14,4,23,-6,23,-19v0,-31,-45,-29,-55,-2v-9,13,-27,66,-38,87v19,23,33,27,71,27v10,0,15,5,15,14v0,19,-30,12,-50,12v-17,0,-34,-10,-53,-29v-36,53,-143,35,-143,-40v0,-40,32,-65,62,-79v-33,-47,-22,-104,35,-104xm110,-228v-36,4,-28,35,-9,68v23,-11,35,-25,35,-42v1,-15,-11,-28,-26,-26xm86,-126v-49,11,-60,102,4,102v20,0,37,-8,49,-25",w:294},"'":{d:"48,-240r-5,96r-19,0r-5,-96r29,0",w:67},"(":{d:"150,76v-73,-18,-126,-81,-126,-172v0,-79,57,-141,123,-155v12,2,7,10,-2,14v-47,23,-91,69,-91,138v0,79,41,136,93,161v10,5,14,12,3,14",w:163},")":{d:"13,-251v73,17,127,84,127,172v0,79,-58,139,-124,155v-12,-3,-7,-9,3,-14v48,-24,91,-68,91,-138v0,-79,-41,-136,-93,-161v-10,-5,-16,-12,-4,-14",w:163},"*":{d:"114,-248v24,3,5,41,7,56v15,-5,23,-29,41,-29v19,0,13,21,-2,26v-8,5,-44,9,-27,18v14,6,40,10,41,26v-14,34,-43,-23,-54,-16v0,17,17,50,-6,53v-24,-3,0,-43,-6,-56v-13,9,-23,26,-41,30v-19,-2,-14,-22,2,-27v8,-5,44,-10,27,-18v-14,-6,-40,-10,-41,-26v0,-14,20,-12,27,-4v9,6,18,24,28,21v-2,-15,-17,-50,4,-54"},"+":{d:"12,-108r0,-24r65,0r0,-62r26,0r0,62r65,0r0,24r-65,0r0,62r-26,0r0,-62r-65,0",w:180},",":{d:"31,59v6,-19,26,-38,23,-47v1,-7,-7,-6,-14,-6v-11,0,-19,-9,-19,-21v0,-14,11,-27,25,-25v52,7,25,92,-8,106v-5,0,-7,-2,-7,-7",w:98,k:{"1":20}},"-":{d:"13,-96v3,-24,47,-13,71,-13v10,0,14,5,14,13v0,24,-47,7,-70,12v-10,0,-15,-4,-15,-12",w:111,k:{"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c0":12,"\u00c5":12,"\u00c4":12,Y:37,W:16,V:24,T:8,A:12,"1":33}},"\u2010":{d:"13,-96v3,-24,47,-13,71,-13v10,0,14,5,14,13v0,24,-47,7,-70,12v-10,0,-15,-4,-15,-12",w:111},".":{d:"71,-17v0,13,-10,23,-22,23v-12,0,-22,-10,-22,-23v0,-12,9,-22,22,-22v12,0,23,9,22,22",w:98},"/":{d:"116,-248v22,-4,13,11,9,22r-112,290v-3,11,-10,9,-22,9v-13,-3,4,-18,4,-27r111,-286v2,-5,5,-8,10,-8",w:144},"0":{d:"214,-125v0,74,-33,133,-101,133v-66,0,-98,-54,-98,-126v0,-74,34,-130,102,-130v65,0,97,54,97,123xm183,-124v0,-54,-19,-96,-67,-97v-45,-1,-69,37,-69,104v-1,55,18,99,66,99v50,0,70,-50,70,-106",k:{"1":33}},"1":{d:"62,-24v46,0,40,-9,40,-59r-1,-105v3,-30,-12,-28,-38,-28v-9,0,-14,-5,-14,-13v3,-27,47,-3,73,-13v13,0,11,11,11,25r-1,170v-7,45,52,6,58,36v-1,24,-58,4,-73,8v-21,-4,-70,19,-73,-8v0,-8,6,-13,18,-13",k:{"9":23,"8":26,"7":47,"6":30,"5":24,"4":37,"3":24,"2":15,"1":28,"0":30,".":19,",":17}},"2":{d:"117,-248v83,0,119,103,42,135v-30,13,-112,23,-115,70v38,-47,92,22,124,22v16,0,27,-16,21,-32v-9,10,-29,7,-28,-9v1,-12,9,-20,22,-19v19,1,30,14,30,35v1,28,-21,54,-48,54v-33,0,-88,-74,-119,-26v9,-3,15,1,15,10v0,11,-6,16,-18,16v-18,0,-26,-18,-26,-38v0,-50,53,-84,112,-99v29,-7,44,-25,44,-47v0,-59,-109,-65,-118,-12v13,1,20,7,20,17v0,13,-12,23,-24,23v-16,0,-27,-15,-27,-31v0,-43,47,-69,93,-69",k:{"1":20}},"3":{d:"181,-78v0,-45,-44,-52,-88,-43v-11,0,-10,-12,-3,-19r75,-73r-84,0v-45,-12,-11,48,-39,55v-22,-3,-11,-40,-11,-68v0,-15,3,-14,21,-14r133,-2v25,-1,27,18,13,30r-67,64v49,-5,81,26,81,70v1,52,-46,86,-100,86v-47,0,-93,-26,-94,-69v0,-21,13,-40,33,-40v13,0,23,8,22,20v0,13,-10,19,-25,18v9,70,133,56,133,-15",k:{"1":22}},"4":{d:"201,1v-37,0,-73,-3,-110,1v-9,0,-13,-4,-13,-12v4,-30,65,9,56,-42r0,-22r-112,0v-17,2,-21,-15,-13,-26r96,-118v16,-17,17,-30,39,-30v13,0,19,9,19,26r0,124v19,3,54,-10,54,12v0,21,-35,9,-54,12v-1,33,0,62,36,51v10,0,15,4,15,12v0,8,-4,12,-13,12xm40,-98r94,0r2,-118",k:{"1":16}},"5":{d:"161,-241v38,-9,27,30,33,53v0,8,-4,12,-12,12v-19,0,-6,-42,-30,-37r-75,0v-6,0,-9,3,-10,12r-4,58v55,-40,149,-15,149,61v0,55,-45,90,-101,90v-44,0,-87,-24,-89,-63v-2,-29,48,-44,50,-11v1,11,-11,16,-18,18v1,20,37,31,61,31v37,0,66,-27,66,-63v0,-36,-23,-56,-59,-58v-35,-2,-50,25,-74,33v-9,0,-14,-6,-14,-17r6,-90v-8,-54,66,-15,121,-29",k:{"1":30}},"6":{d:"175,-172v-17,3,-28,-27,-9,-33v-18,-29,-77,-23,-95,8v-11,19,-21,43,-23,74v35,-68,164,-42,164,43v0,51,-42,89,-95,88v-63,-1,-99,-47,-99,-114v0,-77,35,-142,107,-142v35,0,73,20,73,52v1,13,-11,24,-23,24xm180,-79v-1,-36,-25,-59,-62,-59v-38,0,-63,24,-63,60v0,37,25,60,62,61v36,1,64,-26,63,-62",k:{"1":30}},"7":{d:"27,-155v0,-26,1,-54,1,-80v0,-10,5,-14,13,-14v13,-1,11,16,8,27v11,-17,15,-23,36,-25v31,-4,74,65,101,29v-9,1,-16,-6,-16,-14v0,-10,8,-17,18,-17v43,0,17,81,-5,93v-37,31,-61,67,-61,139v0,15,-6,23,-18,23v-12,0,-19,-9,-19,-29v3,-77,25,-102,77,-147v12,-10,20,-18,22,-25v-29,24,-69,0,-91,-18v-18,-14,-43,-5,-41,24v1,20,12,50,-10,50v-10,0,-15,-6,-15,-16",k:{":":25,"6":14,"4":35,"1":20,".":44,",":41}},"8":{d:"18,-70v0,-33,21,-57,51,-66v-70,-31,-21,-118,46,-112v69,-10,113,87,46,112v29,10,50,32,50,66v0,49,-44,78,-95,78v-55,0,-98,-27,-98,-78xm164,-184v0,-24,-23,-38,-49,-38v-26,0,-50,13,-49,38v0,47,98,46,98,0xm179,-70v1,-34,-28,-52,-63,-52v-38,0,-65,17,-66,52v0,33,30,52,65,52v35,0,64,-19,64,-52",k:{"1":28}},"9":{d:"25,-44v-1,-27,41,-35,43,-7v0,7,-4,12,-11,15v17,30,81,26,100,-6v11,-19,19,-43,20,-74v-32,65,-155,39,-155,-44v0,-50,39,-88,90,-88v64,0,96,49,96,118v0,79,-35,137,-107,138v-36,1,-74,-19,-76,-52xm171,-162v0,-35,-24,-60,-58,-60v-36,0,-60,24,-60,60v0,36,23,58,58,58v36,0,60,-22,60,-58",k:{"1":36}},":":{d:"71,-17v0,13,-10,23,-22,23v-12,0,-22,-10,-22,-23v0,-12,9,-22,22,-22v12,0,23,9,22,22xm71,-138v0,12,-9,22,-22,22v-12,0,-23,-9,-22,-22v0,-13,10,-23,22,-23v12,0,22,10,22,23",w:98},";":{d:"31,59v6,-19,26,-38,23,-47v1,-7,-7,-6,-14,-6v-11,0,-19,-9,-19,-21v0,-14,11,-27,25,-25v52,7,25,92,-8,106v-5,0,-7,-2,-7,-7xm68,-138v0,12,-10,22,-23,22v-12,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,23,11,23,23",w:98},"<":{d:"12,-130r156,-73r0,26r-128,58r128,59r0,26r-156,-73r0,-23",w:180},"=":{d:"12,-139r0,-23r156,0r0,23r-156,0xm12,-84r0,-23r156,0r0,23r-156,0",w:180},">":{d:"168,-107r-156,73r0,-27r128,-58r-128,-58r0,-26r156,73r0,23",w:180},"?":{d:"124,-17v0,12,-10,23,-22,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22v12,0,22,10,22,22xm113,-225v-36,0,-82,31,-54,59v-2,-10,4,-15,13,-15v11,0,16,5,16,16v1,14,-15,24,-29,24v-22,0,-37,-16,-36,-38v0,-44,44,-69,91,-69v49,0,86,24,89,68v3,48,-56,63,-84,83v-13,10,1,43,-21,41v-10,0,-15,-7,-15,-19v-4,-60,87,-52,89,-106v1,-29,-27,-44,-59,-44",w:216},"@":{d:"165,-56v-13,0,-24,-6,-22,-21v-18,34,-80,26,-80,-21v0,-51,50,-99,105,-78v7,-3,23,-10,19,4r-23,90v0,4,2,7,7,7v24,-4,41,-44,41,-73v0,-39,-30,-70,-69,-70v-55,0,-105,55,-105,113v0,46,34,82,80,82v37,0,50,-18,78,-29v5,0,7,2,7,6v-48,76,-190,41,-190,-59v0,-69,63,-131,132,-131v52,0,91,36,91,86v0,41,-31,91,-71,94xm160,-157v-37,-21,-73,19,-73,55v0,17,8,25,22,25v32,0,43,-49,51,-80",w:249},A:{d:"191,-31v-7,-17,-11,-37,-20,-52v-22,-3,-62,-5,-84,1v-7,11,-15,33,-19,49v-1,24,50,-4,49,23v-9,26,-60,-4,-91,10v-26,11,-41,-20,-15,-23v20,3,24,-5,31,-24r67,-181v6,-20,37,-20,44,0r65,179v7,22,13,26,40,26v9,0,13,4,13,12v1,23,-45,5,-58,9v-22,-2,-65,14,-69,-9v-4,-23,44,0,47,-20xm163,-111r-33,-102r-34,101v12,10,44,1,63,4v3,0,4,-1,4,-3",w:268,k:{"\u00d9":14,"\u00db":14,"\u00da":14,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":-17,"\u00c2":-17,"\u00d5":9,"\u00c3":-17,"\u00c0":-17,"\u00ab":25,"\u00e7":5,"\u00dc":14,"\u00d6":9,"\u00c7":10,"\u00c5":-17,"\u00c4":-17,w:19,v:28,u:10,t:6,q:5,o:5,g:-8,e:5,d:6,c:5,a:-5,Y:20,W:28,V:41,U:14,T:11,Q:9,O:9,G:10,C:10,A:-17,"-":15}},B:{d:"23,-242v77,0,196,-26,196,58v0,24,-14,42,-42,52v30,9,54,27,54,61v-1,94,-125,64,-209,73v-18,2,-20,-27,-4,-25v21,3,37,2,36,-25r0,-144v1,-26,-16,-30,-36,-25v-7,0,-11,-4,-11,-12v0,-8,5,-13,16,-13xm134,-219v-51,0,-53,4,-53,51v0,34,15,28,42,28v42,0,64,-13,64,-41v0,-25,-18,-38,-53,-38xm134,-118v-25,0,-60,-7,-53,23r0,40v2,38,8,34,51,34v45,0,67,-16,67,-50v0,-31,-22,-47,-65,-47",w:249,k:{"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c0":5,"\u00c5":5,"\u00c4":5,Y:6,A:5}},C:{d:"14,-117v0,-103,107,-175,173,-100v-1,-12,-6,-31,10,-30v27,10,1,58,11,94v0,11,-4,16,-13,16v-14,1,-13,-14,-13,-28v1,-35,-25,-60,-60,-59v-52,1,-76,45,-76,103v0,61,24,105,78,105v37,0,66,-20,63,-64v0,-11,5,-16,14,-16v10,0,15,5,15,16v1,53,-43,88,-96,88v-67,1,-106,-55,-106,-125",k:{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,A:4}},D:{d:"25,2v-20,4,-24,-23,-7,-25v21,4,37,2,36,-25r0,-144v1,-26,-16,-30,-36,-25v-7,0,-11,-4,-11,-12v10,-29,68,3,106,-12v87,-8,135,39,135,121v1,91,-60,135,-157,119v-22,-3,-48,-1,-66,3xm125,-217v-32,2,-41,-5,-41,21r0,152v3,23,13,22,46,22v62,0,86,-41,86,-98v0,-60,-26,-101,-91,-97",w:262,k:{"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c0":12,"\u00c5":12,"\u00c4":12,Y:10,W:13,V:13,A:12}},E:{d:"108,-23v43,0,96,15,86,-46v-3,-16,-3,-33,12,-32v28,2,6,54,14,86v1,23,-24,17,-45,16r-81,-2r-72,3v-10,0,-15,-4,-15,-13v-1,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v0,-10,9,-15,20,-12v55,4,116,-1,170,-1v38,0,7,56,19,90v0,9,-4,13,-13,13v-15,0,-13,-21,-13,-37v0,-44,-11,-36,-61,-40v-51,-4,-45,17,-46,59v-1,22,13,15,30,17v41,5,3,-49,33,-53v30,11,-2,57,10,92v1,14,10,40,-10,38v-31,-3,15,-67,-48,-53v-29,-1,-10,41,-14,72v1,19,4,21,24,21",w:242},F:{d:"18,-23v21,5,35,0,35,-25r0,-144v1,-27,-14,-29,-35,-25v-7,1,-12,-6,-11,-12v5,-26,48,-7,77,-8r111,-4v39,4,8,49,17,87v0,10,-4,15,-13,15v-20,0,-10,-28,-12,-48v-3,-35,-18,-25,-62,-29v-56,-5,-38,17,-42,66v-2,19,14,12,29,14v43,6,5,-47,35,-52v23,2,5,43,8,63v-2,22,16,62,-9,66v-29,-4,13,-68,-45,-53v-31,-5,-14,38,-18,61v-4,26,11,31,34,28v21,-3,20,24,3,25v-29,-5,-67,-6,-97,0v-19,4,-21,-25,-5,-25",w:222,k:{"\u00c1":28,"\u00c2":28,"\u00c3":28,"\u00c0":28,"\u00c5":28,"\u00c4":28,u:-8,r:-5,o:5,i:-5,e:6,a:5,A:28,".":31,"-":9,",":28}},G:{d:"14,-117v0,-103,99,-171,172,-104v-2,-11,-5,-27,10,-26v29,11,0,51,11,89v0,11,-5,17,-14,17v-12,0,-13,-15,-12,-29v0,-34,-27,-54,-61,-54v-51,0,-74,46,-74,102v0,59,23,105,76,106v37,0,59,-23,58,-62v10,-37,-50,-9,-52,-34v-2,-24,45,-6,61,-9v19,4,60,-16,62,8v1,11,-13,14,-25,11v-23,1,-14,64,-14,93v0,10,-4,15,-13,15v-17,0,-13,-16,-11,-32v-16,23,-35,33,-71,34v-65,0,-103,-56,-103,-125",w:255,k:{"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u00c0":6,"\u00c5":6,"\u00c4":6,Y:7,V:9,T:4,A:6}},H:{d:"130,-229v1,15,-16,12,-28,10v-27,0,-16,53,-19,80r115,0v-1,-35,11,-96,-35,-77v-8,0,-12,-4,-12,-12v2,-24,40,-8,59,-9v22,4,63,-16,65,9v1,16,-17,10,-28,9v-12,0,-19,9,-19,27r0,144v-1,28,15,29,36,25v7,0,11,4,11,12v-2,25,-37,6,-57,8v-27,-4,-62,18,-67,-8v2,-27,47,6,47,-30r0,-73r-115,0v5,36,-16,106,36,91v7,0,11,4,11,12v-3,24,-42,7,-61,8v-19,-3,-60,17,-63,-8v1,-13,16,-13,29,-10v12,0,19,-9,19,-27r0,-144v5,-42,-40,-12,-48,-37v5,-25,39,-8,64,-8v19,0,57,-16,60,8",w:281},I:{d:"110,-241v20,-8,29,21,10,24v-21,-4,-36,-3,-36,25r0,144v-1,27,14,29,36,25v7,0,11,4,11,12v-6,29,-57,-1,-87,10v-14,2,-37,8,-37,-10v0,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v11,-29,65,3,103,-12",w:137},J:{d:"93,-87v1,22,-34,30,-37,7v0,0,8,-12,-1,-12v-10,0,-19,16,-19,28v0,28,25,46,55,46v82,0,60,-97,62,-174v1,-27,-14,-29,-35,-25v-7,1,-11,-5,-11,-12v10,-29,69,4,108,-13v20,-3,21,27,4,25v-21,-3,-35,-2,-35,25r0,69v6,92,-22,127,-92,131v-45,3,-85,-26,-85,-70v0,-30,23,-55,51,-55v20,0,34,11,35,30",w:222},K:{d:"120,-217v-54,-17,-32,50,-36,95r101,-87v7,-4,4,-12,-6,-10v-17,2,-32,6,-32,-11v0,-24,47,-6,68,-7v17,3,60,-17,60,8v0,24,-39,2,-50,20v-23,22,-52,38,-72,64v20,32,43,62,66,92v21,28,23,36,51,30v9,0,13,5,13,13v0,24,-39,5,-63,8v-23,-4,-67,17,-70,-8v-2,-24,39,-4,51,-14r-75,-101r-42,36v0,33,-7,82,36,66v15,3,15,28,-5,25v-28,-4,-63,-6,-92,0v-19,4,-21,-27,-5,-24v60,10,30,-79,36,-145v3,-30,-1,-63,-36,-50v-8,0,-12,-4,-12,-12v1,-21,41,-8,58,-8v19,0,67,-18,67,8v0,6,-5,12,-11,12",w:281,k:{"\u00d2":10,"\u00d4":10,"\u00d3":10,"\u00d5":10,"\u00d6":10,"\u00c7":11,u:11,o:6,e:6,T:-5,O:10,G:10,C:11}},L:{d:"110,-241v20,-8,29,21,10,24v-21,-4,-36,-3,-36,25r0,140v-7,45,33,26,68,30v44,5,43,-25,40,-63v0,-11,5,-16,13,-16v32,0,2,53,13,86v-5,30,-53,14,-89,15r-107,2v-10,0,-15,-4,-15,-13v-1,-16,16,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v11,-29,66,3,103,-12",k:{"\u00c1":-9,"\u00c2":-9,"\u00c3":-9,"\u00c0":-9,"\u00c5":-9,"\u00c4":-9,y:10,u:7,Y:27,W:25,V:33,T:17,A:-9,"-":-10}},M:{d:"23,-242v34,12,78,-18,92,27r55,183r61,-194v9,-34,52,-1,87,-16v19,-3,22,25,5,25v-52,-17,-36,59,-36,112v0,36,-15,98,36,82v8,0,11,4,11,12v-1,25,-46,5,-63,9v-20,-3,-54,15,-58,-8v5,-25,44,6,45,-38r2,-168v0,-2,-3,-3,-4,0r-66,206v-3,18,-35,19,-41,0r-65,-206v-1,-2,-4,-3,-4,0r2,168v-7,43,38,11,44,37v-4,28,-59,-1,-83,10v-13,3,-37,7,-36,-10v0,-14,16,-10,28,-10v12,0,19,-9,19,-27r0,-144v1,-27,-15,-30,-36,-25v-7,0,-11,-4,-11,-12v0,-8,5,-13,16,-13",w:340},N:{d:"22,-242v32,11,70,-14,85,17r96,201r0,-176v0,-33,-43,-4,-47,-29v9,-28,61,1,100,-13v10,0,15,5,15,13v1,11,-9,13,-22,12v-32,-2,-19,48,-19,82r0,96v7,50,-37,58,-55,20r-94,-196r0,167v-1,28,15,29,36,25v8,0,11,4,11,12v-12,28,-66,-3,-106,13v-17,2,-21,-24,-4,-24v53,17,36,-59,36,-113v0,-36,14,-98,-36,-82v-8,0,-12,-4,-12,-12v0,-8,6,-13,16,-13",w:275,k:{"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":8,"\u00c2":8,"\u00d5":9,"\u00c3":8,"\u00c0":8,"\u00d6":9,"\u00c7":10,"\u00c5":8,"\u00c4":8,u:9,o:12,e:12,a:11,O:9,G:10,C:10,A:8}},O:{d:"222,-125v0,75,-36,132,-105,133v-67,0,-103,-56,-103,-128v0,-74,36,-128,105,-128v65,0,103,53,103,123xm190,-122v0,-58,-20,-100,-72,-100v-51,0,-73,44,-73,101v0,58,21,103,73,103v50,0,72,-48,72,-104",w:235,k:{"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c0":10,"\u00c5":10,"\u00c4":10,Y:6,X:12,W:9,V:9,A:10}},P:{d:"28,1v-19,8,-30,-22,-10,-24v21,4,37,2,36,-25r0,-144v1,-27,-15,-30,-36,-25v-8,0,-12,-4,-12,-12v3,-23,37,-6,61,-9v72,-8,158,-10,157,64v-1,63,-60,74,-131,70v-11,-1,-9,8,-9,18v0,51,-9,69,36,63v7,0,11,4,11,12v0,29,-53,-1,-82,10xm135,-219v-42,0,-54,-7,-51,28v2,30,-15,73,34,64v43,1,75,-7,75,-46v0,-30,-19,-46,-58,-46",k:{"\u00c1":30,"\u00c2":30,"\u00c3":30,"\u00c0":30,"\u00c5":30,"\u00c4":30,o:5,e:6,a:4,A:30,".":37,"-":8,",":34}},Q:{d:"119,-248v121,-5,134,201,45,245v0,24,-3,55,21,53v28,5,11,-38,33,-39v9,0,14,5,14,17v1,26,-20,44,-46,44v-41,0,-49,-26,-46,-67v-79,16,-126,-44,-126,-123v0,-74,36,-127,105,-130xm118,-98v36,1,51,26,47,66v41,-50,39,-190,-46,-190v-90,0,-93,157,-42,196v-24,-34,2,-73,41,-72xm87,-47v0,27,26,39,54,28v1,-27,3,-56,-24,-56v-17,0,-31,11,-30,28",w:235},R:{d:"221,-181v-2,35,-21,52,-54,57v36,5,38,33,37,76v0,17,5,26,16,26v18,0,18,-32,17,-56v0,-14,1,-19,12,-20v23,0,8,36,13,56v0,27,-18,44,-45,44v-40,0,-46,-31,-42,-74v4,-48,-38,-38,-80,-40v-23,-1,-10,56,-11,72v-3,31,44,3,46,29v-11,30,-67,-4,-108,13v-10,0,-15,-4,-15,-13v-1,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v1,-27,-15,-30,-36,-25v-6,0,-11,-6,-11,-12v8,-28,68,-5,109,-12v58,-10,107,12,105,60xm84,-198v0,23,-12,61,10,62v48,2,97,3,97,-43v0,-27,-19,-41,-56,-41v-32,0,-51,-3,-51,22",w:262,k:{"\u00d2":-6,"\u00d4":-6,"\u00d3":-6,"\u00c1":-12,"\u00c2":-12,"\u00d5":-6,"\u00c3":-12,"\u00c0":-12,"\u00d6":-6,"\u00c7":-6,"\u00c5":-12,"\u00c4":-12,y:7,o:-6,e:-6,a:-7,Y:12,T:7,O:-6,G:-6,C:-6,A:-12,"-":-15}},S:{d:"62,-122v-65,-32,-26,-126,49,-126v24,0,42,8,57,23v-1,-11,2,-20,11,-19v27,5,1,50,13,83v0,12,-5,17,-14,17v-17,1,-14,-17,-13,-33v1,-30,-23,-45,-54,-47v-47,-4,-73,58,-31,76v45,20,123,15,123,80v0,75,-108,99,-155,50v2,12,2,26,-12,26v-23,0,-11,-36,-11,-54v0,-20,-13,-58,10,-60v14,-1,15,15,14,31v-1,37,26,59,64,59v33,0,60,-16,60,-48v0,-49,-78,-43,-111,-58",w:222,k:{"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c0":5,"\u00c5":5,"\u00c4":5,t:4,T:7,A:5}},T:{d:"166,-219v-35,-6,-37,17,-37,49r0,122v-1,27,14,30,35,26v6,0,12,5,12,11v-12,29,-70,-3,-109,13v-19,3,-22,-26,-4,-24v20,2,35,1,35,-26r0,-146v1,-21,-14,-25,-37,-25v-32,0,-27,32,-24,60v3,27,-28,30,-27,6v1,-25,3,-55,-1,-73v0,-29,39,-14,67,-14r126,-2v37,2,5,56,18,89v0,10,-5,15,-14,15v-35,0,14,-87,-40,-81",k:{"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c0":12,"\u00ab":13,"\u00e7":5,"\u00c5":12,"\u00c4":12,y:-9,w:-9,u:-8,s:4,r:-5,o:5,i:-5,g:10,e:5,c:5,a:5,Y:-12,V:-10,S:6,A:12,":":5,".":27,"-":9,",":24}},U:{d:"109,-217v-57,-13,-31,78,-37,140v-4,44,20,61,57,61v38,0,56,-19,56,-61r0,-123v1,-33,-43,-4,-47,-29v7,-30,59,4,92,-12v13,-3,24,0,24,11v0,11,-12,16,-23,12v-30,5,-15,82,-15,129v0,67,-26,97,-87,97v-58,0,-89,-20,-88,-81r2,-125v2,-33,-35,-7,-39,-31v2,-25,40,-5,58,-9v17,3,58,-15,60,9v0,8,-5,12,-13,12",w:255,k:{"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c0":14,"\u00c5":14,"\u00c4":14,p:9,n:10,m:10,A:14,".":15,",":13}},V:{d:"13,-242v32,7,67,0,98,0v9,0,13,4,13,12v0,27,-52,-4,-40,33r54,167r54,-175v2,-27,-44,1,-44,-24v0,-25,40,-7,59,-8v16,3,55,-17,57,8v1,21,-28,3,-34,17v-26,60,-48,135,-70,199v-8,23,-38,23,-46,0r-72,-198v-8,-14,-45,5,-44,-18v0,-9,5,-13,15,-13",w:262,k:{"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":36,"\u00c2":36,"\u00d5":9,"\u00c3":36,"\u00c0":36,"\u00ab":28,"\u00d6":9,"\u00c5":36,"\u00c4":36,y:9,u:11,r:13,o:26,g:28,e:27,a:26,O:9,A:36,";":22,":":24,".":37,"-":19,",":35}},W:{d:"-2,-229v0,-26,41,-6,62,-8r50,-5v9,0,13,4,13,12v1,29,-56,-13,-45,45r30,153r37,-188v3,-32,43,-31,48,-2r36,192r34,-173v4,-29,-48,0,-49,-27v-1,-24,57,-4,66,-7v19,1,54,-16,56,8v2,22,-32,1,-37,16v-20,59,-33,134,-48,198v-7,28,-40,26,-46,-5r-37,-190r-39,195v-4,27,-37,26,-43,0r-42,-179v-4,-19,-12,-23,-34,-23v-8,0,-12,-4,-12,-12",w:334,k:{"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":27,"\u00c2":27,"\u00d5":9,"\u00c3":27,"\u00c0":27,"\u00ab":24,"\u00d6":9,"\u00c7":11,"\u00c5":27,"\u00c4":27,y:9,u:10,r:13,o:22,e:22,a:22,S:7,O:9,G:10,C:11,A:27,".":30,"-":14,",":27}},X:{d:"118,2v-31,0,-70,-7,-101,0v-10,0,-16,-4,-16,-13v-1,-21,30,-6,41,-16v28,-27,57,-68,83,-99r-66,-77v-10,-26,-49,-1,-54,-27v4,-24,35,-4,59,-7v21,5,66,-18,69,8v2,20,-29,6,-43,12v16,24,36,47,53,70v17,-23,37,-44,52,-69v-9,-9,-44,9,-41,-14v3,-25,40,-3,61,-7v15,3,58,-16,58,8v0,15,-17,10,-29,10v-6,0,-13,6,-21,16r-63,77r68,82v17,17,19,25,39,21v9,0,13,4,13,12v-3,24,-41,7,-60,8v-20,-3,-59,18,-64,-8v-5,-27,64,5,39,-26r-54,-68r-59,79v6,12,51,-10,50,15v0,9,-5,13,-14,13",w:281,k:{"\u00d2":12,"\u00d4":12,"\u00d3":12,"\u00d5":12,"\u00d6":12,"\u00c7":12,u:12,o:8,e:7,O:12,C:12,"-":30}},Y:{d:"70,-11v1,-27,47,6,47,-29r0,-48r-79,-123v-9,-13,-44,4,-43,-18v1,-26,43,-4,61,-8v14,4,61,-17,61,8v4,19,-32,5,-41,16r57,97v18,-34,41,-63,57,-99v-6,-12,-46,11,-45,-14v1,-25,44,-4,62,-9v19,5,60,-16,60,9v0,24,-37,-1,-44,19r-76,119v2,45,-10,80,36,68v7,0,11,4,11,12v-11,29,-69,-4,-108,13v-11,0,-16,-5,-16,-13",w:262,k:{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":19,"\u00c2":19,"\u00d5":7,"\u00c3":19,"\u00c0":19,"\u00ab":43,"\u00d6":7,"\u00c5":19,"\u00c4":19,u:18,p:20,o:36,g:28,e:36,a:31,S:5,O:7,G:8,A:19,";":30,":":32,".":34,"-":37,",":31}},Z:{d:"35,-141v-29,-7,-4,-50,-12,-83v0,-30,40,-18,72,-18r89,0v26,-1,33,19,19,35r-159,186r90,0v52,6,48,-19,48,-61v0,-10,5,-15,14,-15v28,0,6,51,12,82v4,17,-19,17,-37,17r-128,0v-30,4,-36,-23,-21,-41r152,-180v-58,6,-126,-29,-126,60v0,12,-4,18,-13,18",w:222,k:{y:8}},"[":{d:"79,70v-19,0,-41,11,-41,-15r0,-281v-3,-25,22,-14,38,-14v21,0,62,-12,65,10v-7,33,-74,-25,-74,43r1,223v-2,35,65,-6,73,23v-1,21,-42,11,-62,11",w:157},"\\":{d:"9,-270r26,0r128,300r-25,0",w:180},"]":{d:"16,59v8,-29,73,12,73,-23r0,-243v0,-36,-65,8,-73,-23v9,-27,62,-3,93,-12v18,2,9,43,9,43r1,254v3,26,-21,15,-38,15v-21,0,-63,11,-65,-11",w:157},"^":{d:"90,-220r-53,89r-28,0r64,-110r34,0r64,110r-29,0",w:180},_:{d:"0,48r0,-24r180,0r0,24r-180,0",w:180},"`":{d:"60,-225v-17,-5,-15,-26,1,-27v21,8,37,22,56,32v11,5,8,23,-5,17",w:177},a:{d:"23,-137v0,-29,35,-49,69,-49v82,0,62,82,66,156v1,8,5,13,12,13v23,0,1,-51,24,-52v15,-1,11,23,12,39v4,44,-68,46,-74,9v-25,44,-126,34,-121,-26v-7,-56,73,-51,110,-64v21,-19,2,-57,-30,-53v-13,2,-32,5,-36,17v14,6,10,32,-10,32v-12,0,-22,-10,-22,-22xm77,-18v42,1,57,-30,52,-75v-15,24,-89,7,-89,46v0,19,17,29,37,29",w:203,k:{y:8,w:10,v:13}},b:{d:"-9,-233v4,-22,44,-3,62,-12v7,-1,9,7,8,15v-2,20,-3,44,-3,71v14,-18,25,-26,53,-27v50,-1,78,40,78,92v0,83,-91,135,-136,72v3,17,1,24,-12,25v-26,-11,-10,-68,-10,-107r0,-97v8,-38,-36,-7,-40,-32xm108,-162v-35,0,-50,25,-50,69v0,50,8,74,48,75v37,1,54,-32,54,-72v0,-40,-16,-72,-52,-72",w:203},c:{d:"166,-131v0,32,-45,43,-47,12v0,-10,6,-15,18,-16v-2,-17,-18,-28,-39,-27v-37,0,-56,32,-55,72v0,41,16,71,54,72v29,1,43,-26,48,-48v6,-13,26,-6,25,7v-3,38,-35,65,-74,65v-50,0,-82,-41,-82,-94v0,-56,31,-98,85,-98v34,0,67,21,67,55",w:183,k:{k:5,h:5}},d:{d:"14,-90v-11,-80,90,-130,134,-68v-3,-26,11,-78,-27,-63v-9,0,-13,-4,-13,-12v2,-21,38,-7,59,-11v24,12,-1,82,7,127v6,36,-19,108,27,94v9,0,13,4,13,12v-1,21,-35,7,-54,12v-8,1,-12,-11,-9,-20v-48,57,-148,9,-137,-71xm98,-18v38,0,49,-28,49,-72v0,-47,-14,-70,-50,-72v-37,-2,-54,31,-54,71v-1,41,18,73,55,73",w:216},e:{d:"100,-186v44,0,79,35,77,80v-1,17,3,20,-12,20r-114,0v-6,0,-7,1,-8,5v-9,64,94,89,106,22v2,-13,25,-10,25,5v0,33,-42,60,-78,60v-52,0,-82,-39,-82,-93v0,-55,33,-99,86,-99xm100,-162v-25,0,-55,23,-53,47v0,3,3,5,8,5r86,0v5,0,7,-2,7,-5v1,-26,-24,-47,-48,-47",w:190},f:{d:"138,-197v-13,1,-22,-14,-14,-25v-24,-17,-58,4,-51,38v3,16,45,-8,45,18v0,19,-23,11,-39,13v-4,0,-6,2,-6,6r0,117v1,21,39,-6,38,19v-1,20,-34,10,-52,10v-18,0,-53,10,-53,-10v0,-13,17,-13,29,-10v23,-9,6,-85,11,-126v-2,-16,-39,5,-37,-19v-4,-25,38,1,38,-24v-1,-38,21,-59,58,-59v27,-1,49,11,50,34v0,10,-7,18,-17,18",w:124,k:{t:-9,o:8,l:-24,i:-10,f:-4,e:9,a:4}},g:{d:"42,-100v-30,-47,20,-102,79,-83v1,-24,15,-36,41,-36v34,0,56,45,20,52v-14,0,-21,-17,-7,-25v-11,-14,-36,-7,-34,16v50,30,24,108,-38,108v-16,0,-34,-9,-51,-12v-7,-1,-14,8,-13,15v-3,16,29,18,51,18v52,0,98,10,98,55v0,42,-42,57,-90,57v-46,0,-86,-15,-88,-54v0,-19,10,-34,32,-42v-39,-12,-38,-58,0,-69xm141,-127v1,-47,-79,-44,-80,-3v-1,25,16,38,39,38v22,0,41,-14,41,-35xm161,9v-3,-44,-119,-44,-122,0v2,46,118,43,122,0",w:196,k:{r:-9,l:-5,e:6,a:4}},h:{d:"3,-233v5,-20,35,-7,59,-11v6,0,9,4,9,12r-2,70v34,-45,123,-23,123,40r0,83v-3,33,35,4,37,29v-7,24,-61,3,-89,11v-8,2,-15,-6,-15,-13v6,-24,43,10,40,-32v-4,-54,12,-119,-44,-119v-59,0,-49,66,-51,126v-1,33,38,1,38,26v0,20,-36,10,-54,10v-18,0,-50,11,-50,-11v0,-13,19,-10,29,-9v21,-22,7,-147,8,-188v1,-28,-37,2,-38,-24",k:{y:7}},i:{d:"6,-167v1,-23,41,-6,58,-13v24,17,-1,96,9,144v-3,33,35,-2,38,25v-2,19,-33,9,-51,9v-18,-1,-54,12,-54,-9v0,-27,39,9,39,-33r0,-92v5,-40,-34,-6,-39,-31xm74,-219v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20v11,0,20,9,20,20",w:111,k:{j:5}},j:{d:"-41,35v0,-23,34,-29,35,-5v0,5,-2,10,-6,14v29,19,57,-1,57,-43r1,-113v0,-37,4,-52,-28,-44v-8,0,-12,-4,-12,-12v2,-22,39,-5,59,-12v23,8,6,55,8,90v4,76,12,163,-63,163v-25,0,-51,-15,-51,-38xm75,-219v0,11,-9,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,9,-20,20,-20v11,-1,20,10,20,20",w:104},k:{d:"4,-232v2,-21,37,-7,55,-13v8,0,11,5,11,15r0,139v21,-22,47,-39,65,-64v-6,-12,-39,11,-38,-12v10,-29,66,1,99,-13v21,-3,22,24,5,24v-37,-9,-51,27,-72,42v-5,4,-6,6,-2,11v21,23,47,69,72,82v9,0,28,-4,25,10v-6,26,-58,3,-88,12v-9,0,-14,-4,-14,-12v0,-23,48,4,22,-25v-15,-17,-26,-38,-42,-53r-32,27v2,20,-5,49,24,40v8,0,12,4,12,12v-2,20,-34,8,-51,8v-17,0,-52,12,-52,-8v0,-26,39,8,39,-38r0,-146v2,-29,-4,-32,-27,-27v-8,0,-11,-4,-11,-11",w:222,k:{s:-5,o:6,g:-6,e:6,"-":26}},l:{d:"4,-233v2,-23,43,-3,61,-12v8,0,8,8,8,16v-5,48,-2,132,-2,190v0,37,36,1,36,29v0,20,-36,9,-53,9v-18,0,-49,10,-51,-11v-1,-14,19,-9,29,-9v17,0,10,-36,10,-60r0,-134v-3,-20,-40,6,-38,-18",w:111,k:{y:8,v:7}},m:{d:"185,-97v0,38,-14,85,22,75v7,0,13,5,12,12v-8,23,-53,4,-81,11v-18,4,-20,-23,-4,-23v32,13,24,-28,24,-56v0,-43,4,-85,-39,-85v-57,0,-46,74,-46,131v0,25,34,-2,34,22v0,19,-35,9,-52,9v-17,0,-49,10,-49,-10v0,-25,39,9,39,-26r0,-76v-1,-35,7,-50,-26,-43v-9,0,-13,-3,-13,-11v1,-22,33,-7,53,-13v10,-1,9,11,9,21v21,-34,85,-37,105,0v33,-47,124,-33,124,46r0,80v-1,27,35,-2,37,22v-7,25,-54,5,-83,12v-18,4,-22,-23,-4,-23v38,9,20,-41,23,-81v3,-39,-9,-60,-42,-60v-37,0,-43,23,-43,66",w:334,k:{y:8,p:9}},n:{d:"45,-41v-6,-51,19,-127,-26,-116v-9,0,-13,-3,-13,-11v1,-21,35,-6,53,-12v11,-1,10,10,10,21v34,-47,123,-31,123,39r0,87v1,25,36,-1,37,22v-6,26,-59,2,-87,12v-10,0,-15,-4,-15,-12v2,-24,40,8,37,-29v-4,-53,14,-123,-42,-123v-56,0,-50,59,-50,116v0,25,7,30,27,24v7,0,11,5,11,13v-2,20,-31,8,-51,8v-18,0,-53,12,-53,-9v0,-26,43,9,39,-30",k:{y:8,p:9}},o:{d:"183,-91v0,54,-33,97,-86,97v-52,0,-83,-40,-83,-96v0,-55,30,-96,84,-96v54,-1,85,40,85,95xm97,-18v38,0,56,-31,56,-72v0,-48,-18,-72,-54,-72v-39,0,-56,30,-56,72v0,41,16,72,54,72",w:196,k:{y:5,x:9,w:4}},p:{d:"42,-142v4,-34,-37,1,-38,-26v-1,-21,35,-8,56,-12v10,-2,9,12,9,22v43,-60,144,-15,133,64v10,79,-80,132,-133,78v2,25,-11,70,26,57v8,0,12,4,12,12v-9,24,-58,2,-89,11v-8,1,-15,-6,-15,-12v-1,-16,17,-12,28,-9v16,-4,11,-17,11,-46r0,-139xm122,-162v-42,0,-52,36,-52,81v0,42,12,63,49,63v38,0,54,-31,54,-72v0,-48,-17,-72,-51,-72",w:216},q:{d:"196,64v-26,-2,-51,-2,-77,0v-9,0,-14,-3,-14,-11v1,-27,37,7,38,-28r1,-39v-53,51,-140,-1,-130,-77v-9,-81,85,-127,134,-68v-3,-13,0,-22,11,-22v22,0,11,46,11,69r1,120v2,29,-2,33,27,33v8,0,11,4,11,12v0,8,-4,11,-13,11xm95,-18v36,0,48,-29,48,-73v0,-45,-13,-71,-49,-71v-36,0,-51,32,-51,71v0,40,15,72,52,73",w:203,k:{u:4}},r:{d:"6,-167v1,-23,34,-7,53,-13v10,-1,9,10,9,20v25,-44,109,-30,107,25v5,32,-42,50,-49,18v1,-8,10,-18,19,-14v10,-17,-11,-32,-29,-32v-53,0,-43,71,-43,122v0,39,35,3,39,30v-8,26,-59,2,-92,12v-10,0,-15,-4,-15,-12v0,-25,52,11,40,-44r-1,-82v3,-37,-34,-5,-38,-30",w:176,k:{y:-9,x:-5,w:-10,u:-8,t:-7,r:-5,n:-5,m:-5,g:6,f:-4,".":33,",":30}},s:{d:"41,-92v-44,-31,-6,-102,49,-94v16,-2,31,7,40,11v0,-9,4,-13,12,-13v24,2,4,38,12,62v0,9,-4,13,-12,13v-13,1,-12,-11,-12,-23v0,-36,-80,-34,-80,3v0,22,28,28,53,30v41,4,61,23,61,51v2,56,-83,75,-123,41v1,12,-1,21,-12,20v-28,0,-2,-48,-14,-72v0,-8,4,-12,12,-12v14,0,12,5,12,22v0,42,95,50,97,4v2,-35,-75,-29,-95,-43",w:177},t:{d:"3,-166v-4,-20,30,-5,32,-20v3,-19,-8,-51,14,-51v22,0,10,34,13,53v8,17,57,-10,59,18v0,22,-35,10,-54,13v-3,0,-5,3,-5,8v5,43,-16,123,25,126v25,2,27,-28,27,-54v0,-10,5,-14,13,-14v8,0,12,5,12,16v1,52,-12,74,-55,76v-68,3,-47,-87,-50,-150v0,-17,-34,0,-31,-21",w:144},u:{d:"187,-168v3,53,-23,156,23,145v8,0,12,4,12,12v0,20,-33,9,-51,12v-11,2,-10,-10,-10,-21v-28,43,-124,33,-124,-27v0,-34,16,-128,-24,-109v-8,0,-13,-4,-13,-12v2,-22,34,-5,54,-12v37,20,-29,162,54,162v58,0,48,-61,50,-122v1,-31,-33,-4,-33,-27v0,-22,31,-8,51,-13v7,0,11,4,11,12",w:222},v:{d:"35,-144v-2,-26,-36,2,-39,-22v7,-26,51,-4,86,-13v11,0,16,4,16,12v0,23,-44,-8,-30,30r42,112r44,-125v0,-19,-37,7,-36,-17v0,-20,30,-10,48,-10v18,1,52,-11,54,9v-5,25,-35,-5,-39,28r-51,129v-7,22,-34,22,-43,0",w:216,k:{o:4,e:5,".":30,"-":10,",":27}},w:{d:"12,-180v21,4,55,0,75,0v11,0,16,4,16,12v0,27,-51,-12,-39,38r27,110v12,-49,20,-110,37,-154v21,-15,42,1,42,27r27,127v9,-43,24,-82,29,-128v2,-23,-40,5,-40,-19v8,-27,57,-4,90,-13v19,-5,22,26,4,24v-25,-3,-22,5,-33,39v-12,37,-18,85,-34,116v-18,14,-36,3,-42,-24r-27,-128v-13,49,-19,109,-38,151v-13,15,-33,7,-39,-15r-35,-129v0,-25,-35,3,-36,-21v0,-8,5,-13,16,-13",w:288,k:{"\u00e7":4,g:7,e:4,c:4,".":23,"-":7,",":20}},x:{d:"88,1v-25,-2,-48,0,-72,0v-10,0,-15,-4,-15,-12v0,-24,35,1,45,-25r50,-57r-50,-59v-7,-15,-39,7,-39,-15v0,-27,56,-2,84,-13v10,0,14,5,14,13v1,16,-18,8,-28,10r36,44v12,-15,27,-28,38,-44v-9,-1,-29,5,-27,-11v5,-26,55,-1,84,-12v19,-3,22,26,4,24v-21,-2,-25,-4,-40,15r-42,47r56,67v7,14,40,-7,39,16v-7,25,-53,4,-86,12v-21,5,-22,-24,-4,-24v6,1,25,4,18,-4r-40,-47r-44,51v9,4,37,-6,35,13v0,8,-6,11,-16,11",k:{"\u00e7":8,o:8,e:9,c:8}},y:{d:"102,-168v4,24,-41,-3,-31,23r41,121r46,-128v-3,-15,-39,7,-35,-16v5,-25,54,-1,83,-12v10,0,15,4,15,12v0,25,-34,-4,-38,28v-25,57,-48,137,-79,182v-15,22,-38,31,-62,31v-26,0,-49,-15,-51,-38v-3,-27,41,-35,42,-8v0,8,-3,12,-10,14v25,23,75,-8,70,-38v-7,-42,-35,-92,-49,-133v-1,0,-12,-34,-19,-28v-11,2,-28,5,-28,-9v1,-19,29,-10,47,-10v19,1,55,-12,58,9",w:216,k:{"\u00e7":4,e:4,c:4,".":30,"-":10,",":27}},z:{d:"131,-24v44,4,2,-60,32,-57v24,2,3,44,12,68v1,18,-22,14,-38,13r-104,0v-20,2,-26,-23,-12,-37r118,-119v-41,7,-112,-23,-94,34v0,9,-4,14,-12,14v-22,-2,-5,-41,-12,-62v4,-20,46,-8,70,-10v38,-3,115,-6,71,38r-117,118r86,0",w:190},"{":{d:"134,-221v-73,-10,-3,108,-57,133v31,11,21,61,22,101v1,27,7,31,35,32r0,23v-42,2,-61,-10,-61,-53v0,-35,11,-88,-21,-93r0,-21v55,-17,-26,-163,82,-145r0,23",w:180},"|":{d:"77,90r0,-360r26,0r0,360r-26,0",w:180},"}":{d:"50,45v73,10,3,-109,57,-134v-31,-11,-21,-60,-22,-100v-1,-27,-7,-31,-35,-32r0,-23v42,-2,61,10,61,53v0,35,-10,88,21,93r0,21v-55,17,24,162,-82,145r0,-23",w:180},"~":{d:"83,-261v14,-1,61,24,75,23v12,0,22,-8,32,-24r17,10v-25,63,-80,31,-126,17v-12,0,-22,8,-32,25r-16,-10v13,-24,21,-38,50,-41",w:240},"\u00c4":{d:"191,-31v-7,-17,-11,-37,-20,-52v-22,-3,-62,-5,-84,1v-7,11,-15,33,-19,49v-1,24,50,-4,49,23v-9,26,-60,-4,-91,10v-26,11,-41,-20,-15,-23v20,3,24,-5,31,-24r67,-181v6,-20,37,-20,44,0r65,179v7,22,13,26,40,26v9,0,13,4,13,12v1,23,-45,5,-58,9v-22,-2,-65,14,-69,-9v-4,-23,44,0,47,-20xm123,-287v0,12,-12,23,-23,23v-12,0,-24,-10,-24,-23v0,-13,12,-23,24,-23v11,0,23,11,23,23xm188,-287v0,11,-12,23,-23,23v-12,0,-24,-11,-24,-23v0,-12,12,-24,24,-23v11,0,23,11,23,23xm163,-111r-33,-102r-34,101v12,10,44,1,63,4v3,0,4,-1,4,-3",w:268,k:{"\u00d9":14,"\u00db":14,"\u00da":14,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":-17,"\u00c2":-17,"\u00d5":9,"\u00c3":-17,"\u00c0":-17,"\u00ab":25,"\u00e7":5,"\u00dc":14,"\u00d6":9,"\u00c7":10,"\u00c5":-17,"\u00c4":-17,w:19,v:28,u:10,t:6,q:5,o:5,g:-8,e:5,d:6,c:5,a:-5,Y:20,W:28,V:41,U:14,T:11,Q:9,O:9,G:10,C:10,A:-17,"-":15}},"\u00c5":{d:"191,-31v-7,-17,-11,-37,-20,-52v-22,-3,-62,-5,-84,1v-7,11,-15,33,-19,49v-1,24,50,-4,49,23v-9,26,-60,-4,-91,10v-26,11,-41,-20,-15,-23v20,3,24,-5,31,-24r67,-181v6,-20,37,-20,44,0r65,179v7,22,13,26,40,26v9,0,13,4,13,12v1,23,-45,5,-58,9v-22,-2,-65,14,-69,-9v-4,-23,44,0,47,-20xm166,-291v0,19,-16,35,-35,35v-19,0,-35,-16,-35,-35v0,-19,16,-34,35,-34v19,0,35,15,35,34xm163,-111r-33,-102r-34,101v12,10,44,1,63,4v3,0,4,-1,4,-3xm131,-273v16,1,23,-19,13,-30v-11,-11,-31,-3,-31,12v0,10,9,18,18,18",w:268,k:{"\u00d9":14,"\u00db":14,"\u00da":14,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":-17,"\u00c2":-17,"\u00d5":9,"\u00c3":-17,"\u00c0":-17,"\u00ab":25,"\u00e7":5,"\u00dc":14,"\u00d6":9,"\u00c7":10,"\u00c5":-17,"\u00c4":-17,w:19,v:28,u:10,t:6,q:5,o:5,g:-8,e:5,d:6,c:5,a:-5,Y:20,W:28,V:41,U:14,T:11,Q:9,O:9,G:10,C:10,A:-17,"-":15}},"\u00c7":{d:"14,-117v0,-103,107,-175,173,-100v-1,-12,-6,-31,10,-30v27,10,1,58,11,94v0,11,-4,16,-13,16v-14,1,-13,-14,-13,-28v1,-35,-25,-60,-60,-59v-52,1,-76,45,-76,103v0,61,24,105,78,105v37,0,66,-20,63,-64v0,-11,5,-16,14,-16v10,0,15,5,15,16v0,51,-38,87,-93,88r-6,16v26,-8,49,6,50,28v2,40,-79,43,-90,13v0,-14,14,-6,19,-2v11,8,47,11,47,-10v0,-19,-28,-13,-42,-10v-13,-7,4,-27,6,-36v-59,-6,-93,-57,-93,-124",k:{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,A:4}},"\u00c9":{d:"108,-23v43,0,96,15,86,-46v-3,-16,-3,-33,12,-32v28,2,6,54,14,86v1,23,-24,17,-45,16r-81,-2r-72,3v-10,0,-15,-4,-15,-13v-1,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v0,-10,9,-15,20,-12v55,4,116,-1,170,-1v38,0,7,56,19,90v0,9,-4,13,-13,13v-15,0,-13,-21,-13,-37v0,-44,-11,-36,-61,-40v-51,-4,-45,17,-46,59v-1,22,13,15,30,17v41,5,3,-49,33,-53v30,11,-2,57,10,92v1,14,10,40,-10,38v-31,-3,15,-67,-48,-53v-29,-1,-10,41,-14,72v1,19,4,21,24,21xm154,-310v17,1,17,22,0,28v-21,7,-38,18,-60,25v-13,0,-10,-14,0,-19v20,-10,37,-26,60,-34",w:242},"\u00d1":{d:"22,-242v32,11,70,-14,85,17r96,201r0,-176v0,-33,-43,-4,-47,-29v9,-28,61,1,100,-13v10,0,15,5,15,13v1,11,-9,13,-22,12v-32,-2,-19,48,-19,82r0,96v7,50,-37,58,-55,20r-94,-196r0,167v-1,28,15,29,36,25v8,0,11,4,11,12v-12,28,-66,-3,-106,13v-17,2,-21,-24,-4,-24v53,17,36,-59,36,-113v0,-36,14,-98,-36,-82v-8,0,-12,-4,-12,-12v0,-8,6,-13,16,-13xm88,-270v2,-41,57,-33,89,-20v13,5,22,-23,31,-8v-1,43,-64,28,-90,19v-15,-2,-16,11,-25,15v-4,0,-5,-2,-5,-6",w:275,k:{"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":8,"\u00c2":8,"\u00d5":9,"\u00c3":8,"\u00c0":8,"\u00d6":9,"\u00c7":10,"\u00c5":8,"\u00c4":8,u:9,o:12,e:12,a:11,O:9,G:10,C:10,A:8}},"\u00d6":{d:"222,-125v0,75,-36,132,-105,133v-67,0,-103,-56,-103,-128v0,-74,36,-128,105,-128v65,0,103,53,103,123xm109,-287v0,12,-11,23,-23,23v-12,0,-24,-10,-24,-23v0,-13,12,-23,24,-23v12,0,23,11,23,23xm174,-287v1,12,-12,23,-24,23v-11,0,-23,-12,-23,-23v0,-11,12,-23,23,-23v13,0,24,11,24,23xm190,-122v0,-58,-20,-100,-72,-100v-51,0,-73,44,-73,101v0,58,21,103,73,103v50,0,72,-48,72,-104",w:235,k:{"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c0":10,"\u00c5":10,"\u00c4":10,Y:6,X:12,W:9,V:9,A:10}},"\u00dc":{d:"109,-217v-57,-13,-31,78,-37,140v-4,44,20,61,57,61v38,0,56,-19,56,-61r0,-123v1,-33,-43,-4,-47,-29v7,-30,59,4,92,-12v13,-3,24,0,24,11v0,11,-12,16,-23,12v-30,5,-15,82,-15,129v0,67,-26,97,-87,97v-58,0,-89,-20,-88,-81r2,-125v2,-33,-35,-7,-39,-31v2,-25,40,-5,58,-9v17,3,58,-15,60,9v0,8,-5,12,-13,12xm121,-287v0,12,-12,23,-23,23v-11,0,-25,-10,-23,-23v-2,-13,12,-23,23,-23v11,0,23,11,23,23xm186,-287v0,12,-12,23,-23,23v-12,1,-24,-11,-24,-23v0,-12,12,-24,24,-23v11,0,23,11,23,23",w:255,k:{"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c0":14,"\u00c5":14,"\u00c4":14,p:9,n:10,m:10,A:14,".":15,",":13}},"\u00e1":{d:"23,-137v0,-29,35,-49,69,-49v82,0,62,82,66,156v1,8,5,13,12,13v23,0,1,-51,24,-52v15,-1,11,23,12,39v4,44,-68,46,-74,9v-25,44,-126,34,-121,-26v-7,-56,73,-51,110,-64v21,-19,2,-57,-30,-53v-13,2,-32,5,-36,17v14,6,10,32,-10,32v-12,0,-22,-10,-22,-22xm123,-252v17,1,16,22,0,27v-19,6,-36,17,-56,23v-11,0,-9,-13,0,-18v19,-10,34,-25,56,-32xm77,-18v42,1,57,-30,52,-75v-15,24,-89,7,-89,46v0,19,17,29,37,29",w:203},"\u00e0":{d:"23,-137v0,-29,35,-49,69,-49v82,0,62,82,66,156v1,8,5,13,12,13v23,0,1,-51,24,-52v15,-1,11,23,12,39v4,44,-68,46,-74,9v-25,44,-126,34,-121,-26v-7,-56,73,-51,110,-64v21,-19,2,-57,-30,-53v-13,2,-32,5,-36,17v14,6,10,32,-10,32v-12,0,-22,-10,-22,-22xm47,-239v-1,-15,13,-15,23,-9v17,13,42,20,53,38v0,8,-5,10,-12,7v-20,-11,-55,-15,-64,-36xm77,-18v42,1,57,-30,52,-75v-15,24,-89,7,-89,46v0,19,17,29,37,29",w:203},"\u00e2":{d:"23,-137v0,-29,35,-49,69,-49v82,0,62,82,66,156v1,8,5,13,12,13v23,0,1,-51,24,-52v15,-1,11,23,12,39v4,44,-68,46,-74,9v-25,44,-126,34,-121,-26v-7,-56,73,-51,110,-64v21,-19,2,-57,-30,-53v-13,2,-32,5,-36,17v14,6,10,32,-10,32v-12,0,-22,-10,-22,-22xm147,-203v-16,-5,-37,-16,-53,-23r-53,23v-11,-2,-8,-11,1,-16v19,-10,34,-35,59,-32r51,36v4,4,2,13,-5,12xm77,-18v42,1,57,-30,52,-75v-15,24,-89,7,-89,46v0,19,17,29,37,29",w:203},"\u00e4":{d:"23,-137v0,-29,35,-49,69,-49v82,0,62,82,66,156v1,8,5,13,12,13v23,0,1,-51,24,-52v15,-1,11,23,12,39v4,44,-68,46,-74,9v-25,44,-126,34,-121,-26v-7,-56,73,-51,110,-64v21,-19,2,-57,-30,-53v-13,2,-32,5,-36,17v14,6,10,32,-10,32v-12,0,-22,-10,-22,-22xm80,-226v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20xm144,-226v0,11,-9,20,-20,20v-10,0,-21,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20xm77,-18v42,1,57,-30,52,-75v-15,24,-89,7,-89,46v0,19,17,29,37,29",w:203},"\u00e3":{d:"23,-137v0,-29,35,-49,69,-49v82,0,62,82,66,156v1,8,5,13,12,13v23,0,1,-51,24,-52v15,-1,11,23,12,39v4,44,-68,46,-74,9v-25,44,-126,34,-121,-26v-7,-56,73,-51,110,-64v21,-19,2,-57,-30,-53v-13,2,-32,5,-36,17v14,6,10,32,-10,32v-12,0,-22,-10,-22,-22xm38,-214v4,-38,53,-31,83,-19v13,5,23,-22,29,-6v-1,38,-60,26,-84,17v-14,-5,-21,24,-28,8xm77,-18v42,1,57,-30,52,-75v-15,24,-89,7,-89,46v0,19,17,29,37,29",w:203},"\u00e5":{d:"23,-137v0,-29,35,-49,69,-49v82,0,62,82,66,156v1,8,5,13,12,13v23,0,1,-51,24,-52v15,-1,11,23,12,39v4,44,-68,46,-74,9v-25,44,-126,34,-121,-26v-7,-56,73,-51,110,-64v21,-19,2,-57,-30,-53v-13,2,-32,5,-36,17v14,6,10,32,-10,32v-12,0,-22,-10,-22,-22xm125,-231v0,19,-15,33,-33,33v-17,0,-33,-15,-33,-33v0,-18,16,-33,33,-33v18,0,33,14,33,33xm77,-18v42,1,57,-30,52,-75v-15,24,-89,7,-89,46v0,19,17,29,37,29xm108,-231v0,-10,-7,-16,-16,-16v-9,0,-17,7,-17,16v0,10,7,17,17,17v10,0,16,-7,16,-17",w:203},"\u00e7":{d:"166,-131v0,32,-45,43,-47,12v0,-10,6,-15,18,-16v-2,-17,-18,-28,-39,-27v-37,0,-56,32,-55,72v0,41,16,71,54,72v29,1,43,-26,48,-48v6,-13,26,-6,25,7v-5,38,-29,60,-69,65r-5,11v22,-5,40,8,41,26v2,35,-71,41,-78,9v9,-22,22,9,37,5v12,0,19,-4,19,-13v1,-17,-25,-14,-37,-8v-13,-5,5,-22,6,-31v-49,-7,-69,-43,-70,-93v0,-56,31,-98,85,-98v34,0,67,21,67,55",w:183,k:{k:5,h:5}},"\u00e9":{d:"100,-186v44,0,79,35,77,80v-1,17,3,20,-12,20r-114,0v-6,0,-7,1,-8,5v-9,64,94,89,106,22v2,-13,25,-10,25,5v0,33,-42,60,-78,60v-52,0,-82,-39,-82,-93v0,-55,33,-99,86,-99xm124,-252v17,1,15,20,-1,27r-55,23v-11,0,-9,-13,0,-18v19,-10,34,-25,56,-32xm100,-162v-25,0,-55,23,-53,47v0,3,3,5,8,5r86,0v5,0,7,-2,7,-5v1,-26,-24,-47,-48,-47",w:190},"\u00e8":{d:"100,-186v44,0,79,35,77,80v-1,17,3,20,-12,20r-114,0v-6,0,-7,1,-8,5v-9,64,94,89,106,22v2,-13,25,-10,25,5v0,33,-42,60,-78,60v-52,0,-82,-39,-82,-93v0,-55,33,-99,86,-99xm69,-225v-17,-5,-14,-25,0,-27v22,7,38,22,57,32v12,5,7,23,-5,17xm100,-162v-25,0,-55,23,-53,47v0,3,3,5,8,5r86,0v5,0,7,-2,7,-5v1,-26,-24,-47,-48,-47",w:190},"\u00ea":{d:"100,-186v44,0,79,35,77,80v-1,17,3,20,-12,20r-114,0v-6,0,-7,1,-8,5v-9,64,94,89,106,22v2,-13,25,-10,25,5v0,33,-42,60,-78,60v-52,0,-82,-39,-82,-93v0,-55,33,-99,86,-99xm153,-203r-53,-23r-52,23v-11,-2,-10,-11,0,-16v20,-10,34,-35,60,-32v17,14,39,24,53,41v0,4,-3,7,-8,7xm100,-162v-25,0,-55,23,-53,47v0,3,3,5,8,5r86,0v5,0,7,-2,7,-5v1,-26,-24,-47,-48,-47",w:190},"\u00eb":{d:"100,-186v44,0,79,35,77,80v-1,17,3,20,-12,20r-114,0v-6,0,-7,1,-8,5v-9,64,94,89,106,22v2,-13,25,-10,25,5v0,33,-42,60,-78,60v-52,0,-82,-39,-82,-93v0,-55,33,-99,86,-99xm89,-226v0,11,-10,20,-21,20v-10,0,-19,-10,-19,-20v0,-11,8,-20,19,-20v11,0,21,9,21,20xm153,-226v0,11,-10,20,-21,20v-10,0,-19,-10,-19,-20v0,-11,8,-20,19,-20v11,0,21,9,21,20xm100,-162v-25,0,-55,23,-53,47v0,3,3,5,8,5r86,0v5,0,7,-2,7,-5v1,-26,-24,-47,-48,-47",w:190},"\u00ed":{d:"6,-167v1,-23,41,-6,58,-13v24,17,-1,96,9,144v-3,33,35,-2,38,25v-2,19,-33,9,-51,9v-18,-1,-54,12,-54,-9v0,-27,39,9,39,-33r0,-92v5,-40,-34,-6,-39,-31xm77,-252v17,1,17,22,0,27v-19,6,-36,17,-56,23v-10,0,-9,-14,0,-18v19,-10,35,-24,56,-32",w:111},"\u00ec":{d:"6,-167v1,-23,41,-6,58,-13v24,17,-1,96,9,144v-3,33,35,-2,38,25v-2,19,-33,9,-51,9v-18,-1,-54,12,-54,-9v0,-27,39,9,39,-33r0,-92v5,-40,-34,-6,-39,-31xm23,-225v-18,-5,-16,-25,0,-27v21,8,37,23,56,32v12,6,7,23,-5,17",w:111},"\u00ee":{d:"6,-167v1,-23,41,-6,58,-13v24,17,-1,96,9,144v-3,33,35,-2,38,25v-2,19,-33,9,-51,9v-18,-1,-54,12,-54,-9v0,-27,39,9,39,-33r0,-92v5,-40,-34,-6,-39,-31xm98,-203v-14,-5,-32,-16,-46,-23r-46,23v-9,-2,-8,-11,0,-16v17,-10,30,-35,52,-32v15,14,36,24,46,41v0,4,-2,7,-6,7",w:111},"\u00ef":{d:"6,-167v1,-23,41,-6,58,-13v24,17,-1,95,9,144v-3,33,35,-2,38,25v-2,19,-33,9,-51,9v-18,-1,-54,12,-54,-9v0,-27,39,9,39,-33r0,-92v5,-40,-34,-6,-39,-31xm40,-226v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20xm104,-226v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20",w:111},"\u00f1":{d:"45,-41v-6,-51,19,-127,-26,-116v-9,0,-13,-3,-13,-11v1,-21,35,-6,53,-12v11,-1,10,10,10,21v34,-47,123,-31,123,39r0,87v1,25,36,-1,37,22v-6,26,-59,2,-87,12v-10,0,-15,-4,-15,-12v2,-24,40,8,37,-29v-4,-53,14,-123,-42,-123v-56,0,-50,59,-50,116v0,25,7,30,27,24v7,0,11,5,11,13v-2,20,-31,8,-51,8v-18,0,-53,12,-53,-9v0,-26,43,9,39,-30xm63,-214v4,-38,53,-30,84,-19v13,4,22,-22,28,-6v0,39,-60,25,-84,17v-14,-5,-21,25,-28,8"},"\u00f3":{d:"183,-91v0,54,-33,97,-86,97v-52,0,-83,-40,-83,-96v0,-55,30,-96,84,-96v54,-1,85,40,85,95xm125,-252v16,1,15,22,0,27v-20,6,-36,17,-57,23v-10,0,-9,-14,0,-18v19,-10,35,-25,57,-32xm97,-18v38,0,56,-31,56,-72v0,-48,-18,-72,-54,-72v-39,0,-56,30,-56,72v0,41,16,72,54,72",w:196},"\u00f2":{d:"183,-91v0,54,-33,97,-86,97v-52,0,-83,-40,-83,-96v0,-55,30,-96,84,-96v54,-1,85,40,85,95xm55,-239v0,-14,14,-16,23,-9v16,13,43,19,53,38v0,8,-4,9,-12,7v-20,-12,-54,-15,-64,-36xm97,-18v38,0,56,-31,56,-72v0,-48,-18,-72,-54,-72v-39,0,-56,30,-56,72v0,41,16,72,54,72",w:196},"\u00f4":{d:"183,-91v0,54,-33,97,-86,97v-52,0,-83,-40,-83,-96v0,-55,30,-96,84,-96v54,-1,85,40,85,95xm151,-203v-16,-5,-37,-16,-53,-23r-53,23v-11,-2,-8,-11,1,-16v19,-10,34,-35,59,-32r51,36v4,4,2,13,-5,12xm97,-18v38,0,56,-31,56,-72v0,-48,-18,-72,-54,-72v-39,0,-56,30,-56,72v0,41,16,72,54,72",w:196},"\u00f6":{d:"183,-91v0,54,-33,97,-86,97v-52,0,-83,-40,-83,-96v0,-55,30,-96,84,-96v54,-1,85,40,85,95xm86,-226v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20xm150,-226v0,12,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,8,20,20xm97,-18v38,0,56,-31,56,-72v0,-48,-18,-72,-54,-72v-39,0,-56,30,-56,72v0,41,16,72,54,72",w:196},"\u00f5":{d:"183,-91v0,54,-33,97,-86,97v-52,0,-83,-40,-83,-96v0,-55,30,-96,84,-96v54,-1,85,40,85,95xm42,-214v4,-38,53,-31,84,-19v13,4,21,-22,28,-6v-1,39,-60,25,-84,17v-14,-5,-21,25,-28,8xm97,-18v38,0,56,-31,56,-72v0,-48,-18,-72,-54,-72v-39,0,-56,30,-56,72v0,41,16,72,54,72",w:196},"\u00fa":{d:"187,-168v3,53,-23,156,23,145v8,0,12,4,12,12v0,20,-33,9,-51,12v-11,2,-10,-10,-10,-21v-28,43,-124,33,-124,-27v0,-34,16,-128,-24,-109v-8,0,-13,-4,-13,-12v2,-22,34,-5,54,-12v37,20,-29,162,54,162v58,0,48,-61,50,-122v1,-31,-33,-4,-33,-27v0,-22,31,-8,51,-13v7,0,11,4,11,12xm143,-252v17,1,16,22,-1,27v-19,6,-36,17,-56,23v-10,0,-9,-14,0,-18v19,-10,35,-25,57,-32",w:222},"\u00f9":{d:"187,-168v3,53,-23,156,23,145v8,0,12,4,12,12v0,20,-33,9,-51,12v-11,2,-10,-10,-10,-21v-28,43,-124,33,-124,-27v0,-34,16,-128,-24,-109v-8,0,-13,-4,-13,-12v2,-22,34,-5,54,-12v37,20,-29,162,54,162v58,0,48,-61,50,-122v1,-31,-33,-4,-33,-27v0,-22,31,-8,51,-13v7,0,11,4,11,12xm78,-225v-17,-5,-15,-26,0,-27v21,7,37,23,56,32v13,6,8,23,-5,17",w:222},"\u00fb":{d:"187,-168v3,53,-23,156,23,145v8,0,12,4,12,12v0,20,-33,9,-51,12v-11,2,-10,-10,-10,-21v-28,43,-124,33,-124,-27v0,-34,16,-128,-24,-109v-8,0,-13,-4,-13,-12v2,-22,34,-5,54,-12v37,20,-29,162,54,162v58,0,48,-61,50,-122v1,-31,-33,-4,-33,-27v0,-22,31,-8,51,-13v7,0,11,4,11,12xm159,-203v-16,-5,-37,-16,-53,-23r-53,23v-11,-2,-8,-11,1,-16v19,-10,34,-35,59,-32v17,14,39,24,53,41v0,4,-2,7,-7,7",w:222},"\u00fc":{d:"187,-168v3,53,-23,156,23,145v8,0,12,4,12,12v0,20,-33,9,-51,12v-11,2,-10,-10,-10,-21v-28,43,-124,33,-124,-27v0,-34,16,-128,-24,-109v-8,0,-13,-4,-13,-12v2,-22,34,-5,54,-12v37,20,-29,162,54,162v58,0,48,-61,50,-122v1,-31,-33,-4,-33,-27v0,-22,31,-8,51,-13v7,0,11,4,11,12xm95,-226v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20v11,0,20,9,20,20xm159,-226v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20v11,0,20,9,20,20",w:222},"\u00b0":{d:"141,-191v0,27,-24,50,-51,50v-27,0,-51,-23,-51,-50v0,-27,24,-50,51,-50v27,0,51,23,51,50xm124,-191v0,-18,-16,-33,-34,-33v-18,0,-34,15,-34,33v0,17,17,33,34,33v17,0,34,-16,34,-33",w:180},"\u00a2":{d:"167,-130v-22,2,-28,-34,-6,-36r3,0v-2,-16,-19,-26,-36,-27r0,139v28,-4,33,-13,41,-42v4,-17,30,-13,28,4v-4,35,-31,58,-69,63v-3,17,9,50,-10,50v-19,0,-7,-33,-10,-50v-50,-7,-76,-41,-76,-92v0,-52,25,-90,76,-95v3,-16,-8,-48,10,-48v18,0,7,31,10,47v38,3,67,20,67,55v0,17,-12,31,-28,32xm108,-54r0,-139v-59,3,-62,136,0,139"},"\u00a3":{d:"192,-169v-23,0,-22,-29,-5,-35v-22,-41,-109,-17,-85,38r9,19r74,0v6,0,10,5,10,11v0,7,-4,10,-10,10r-62,0v16,25,21,53,11,82v24,18,46,26,64,26v22,0,37,-13,37,-35v0,-34,-48,-39,-53,-8v-2,12,-24,11,-24,-5v0,-23,26,-40,49,-40v31,0,55,22,55,53v2,54,-67,77,-111,48r-28,-16v-27,39,-117,42,-123,-12v6,-51,69,-53,111,-24v8,-24,-7,-39,-20,-69v-21,-4,-59,10,-64,-10v1,-20,34,-8,52,-11v-26,-52,13,-101,68,-101v34,0,67,20,67,52v1,15,-9,27,-22,27xm28,-35v0,29,60,22,71,0v-17,-11,-33,-17,-48,-17v-11,0,-23,6,-23,17",w:262},"\u00a7":{d:"166,-180v-20,1,-27,-26,-7,-33v-16,-19,-75,-19,-73,15v3,49,105,37,105,96v0,18,-11,35,-32,51v48,29,17,99,-45,99v-37,0,-72,-19,-72,-54v0,-33,43,-39,45,-8v0,9,-10,14,-15,21v17,38,109,12,75,-30v-25,-31,-101,-34,-103,-83v0,-18,11,-34,32,-50v-42,-35,-10,-92,45,-92v33,0,65,17,66,45v0,13,-8,23,-21,23xm93,-144v-31,27,-18,55,21,67v9,3,18,9,28,15v33,-26,17,-55,-18,-67v-14,-5,-24,-11,-31,-15"},"\u00b6":{d:"8,-176v-2,-80,98,-63,176,-64r0,21r-22,0r0,254r-23,0r0,-254r-37,0r0,254r-23,0r0,-148v-43,3,-71,-25,-71,-63",w:209},"\u00df":{d:"191,-109v48,30,22,115,-37,115v-16,0,-29,-5,-40,-16v0,9,-4,14,-11,14v-24,0,-4,-47,-12,-71v0,-10,5,-15,13,-15v11,-1,12,15,11,28v0,21,13,36,35,36v31,0,48,-38,30,-62v-11,-15,-69,-33,-69,-61v0,-22,47,-37,46,-61v0,-15,-15,-26,-33,-24v-79,4,-49,130,-49,205v0,33,-29,16,-52,22v-10,0,-16,-4,-16,-12v0,-24,41,4,40,-24r-1,-101v5,-36,-33,-8,-33,-32v0,-27,39,8,39,-25v8,-34,29,-57,72,-57v50,0,85,55,43,85v-13,10,-36,23,-9,36v16,8,27,16,33,20"},"\u00ae":{d:"18,-202v0,-39,33,-72,72,-72v39,0,72,33,72,72v0,39,-33,72,-72,72v-39,0,-72,-33,-72,-72xm29,-202v0,33,28,62,61,62v33,0,61,-29,61,-62v0,-33,-28,-61,-61,-61v-33,0,-61,28,-61,61xm93,-172v-2,12,-22,2,-34,6v-4,0,-6,-2,-6,-6v-1,-10,15,1,14,-11v0,-15,1,-32,-1,-46v-11,4,-20,-11,-6,-11v24,0,61,-6,59,19v0,8,-4,14,-11,17v9,3,3,21,9,27v2,-4,5,-36,14,-16v11,26,-28,38,-30,13v5,-15,-6,-23,-21,-18v2,7,-5,24,7,21v4,0,6,1,6,5xm92,-230v-16,-1,-11,8,-12,20v12,0,28,0,26,-10v0,-6,-5,-10,-14,-10",w:180},"\u00a9":{d:"14,-120v0,-69,59,-128,128,-128v70,0,128,58,128,128v0,69,-60,128,-128,128v-68,0,-128,-60,-128,-128xm33,-120v0,59,50,110,109,110v59,0,109,-51,109,-110v0,-59,-50,-110,-109,-110v-59,0,-109,51,-109,110xm75,-118v0,-61,64,-103,107,-63v-2,-7,-1,-16,8,-15v17,4,2,36,8,57v0,7,-3,10,-9,10v-9,1,-11,-8,-10,-18v0,-20,-16,-33,-36,-33v-31,0,-47,27,-46,60v1,34,15,60,47,60v25,0,39,-12,39,-36v0,-7,3,-11,9,-11v7,0,11,3,11,11v0,31,-27,53,-61,53v-41,0,-67,-32,-67,-75",w:284},"\u00b4":{d:"129,-252v17,1,16,22,0,27v-19,6,-36,17,-56,23v-10,0,-9,-14,0,-18v19,-10,34,-25,56,-32",w:177},"\u00a8":{d:"76,-226v0,11,-8,20,-19,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20v11,0,19,9,19,20xm140,-226v0,11,-9,20,-19,20v-11,0,-21,-9,-21,-20v0,-11,10,-20,21,-20v11,0,19,9,19,20",w:176},"\u00c6":{d:"177,-56v-1,-17,8,-51,-9,-53v-26,3,-59,-9,-71,13r-40,70v5,10,37,-7,35,15v-2,24,-37,8,-54,8v-18,0,-55,16,-55,-7v0,-25,34,0,42,-22r126,-198v19,-22,69,-9,115,-9v32,0,87,-19,72,33v-7,24,14,64,-12,66v-17,1,-12,-23,-12,-40v-2,-41,-11,-38,-58,-38v-36,0,-50,-7,-50,26r0,51v-1,15,23,6,35,8v38,5,4,-48,31,-53v25,4,9,46,9,68v0,21,15,63,-9,63v-28,0,9,-59,-32,-54v-11,2,-33,-5,-34,6v6,30,-17,83,23,80v51,-4,103,15,90,-58v-5,-26,26,-26,25,-5v-9,31,17,89,-19,88r-113,-3v-28,0,-60,3,-73,3v-10,0,-15,-5,-15,-13v-2,-13,18,-12,33,-12v18,0,22,-9,20,-33xm177,-222v-20,28,-38,60,-57,89r51,0v4,0,6,-3,6,-8v-1,-26,5,-59,0,-81",w:366},"\u00d8":{d:"50,-17v-67,-64,-40,-231,69,-231v16,0,32,3,47,10v4,-13,18,-39,38,-23r-19,36v66,63,43,233,-66,233v-18,0,-34,-4,-50,-11v-8,13,-10,32,-36,27v-5,-12,13,-28,17,-41xm155,-215v-64,-31,-110,25,-110,98v0,31,6,57,18,76xm80,-24v64,28,114,-21,110,-93v-2,-36,-5,-61,-18,-80",w:235},"\u00b1":{d:"7,-125r0,-24r70,0r0,-65r26,0r0,65r70,0r0,24r-71,0r0,65r-25,0r0,-65r-70,0xm7,-19r0,-25r166,0r0,25r-166,0",w:180},"\u00a5":{d:"77,-23v34,9,38,-11,36,-48r-85,0v-7,0,-11,-3,-11,-10v0,-7,4,-11,11,-11r83,0r-16,-30r-67,0v-7,0,-11,-3,-11,-10v0,-7,4,-10,11,-10r56,0r-39,-69v-8,-14,-45,4,-42,-18v3,-28,46,-2,71,-9v13,-4,40,-10,39,9v3,15,-23,9,-34,14r50,99r50,-99v-5,-10,-39,9,-38,-14v1,-24,37,-5,54,-9v17,4,57,-15,57,9v0,25,-41,-4,-48,27r-33,60r63,0v6,0,10,3,10,10v0,7,-4,10,-10,10r-74,0r-17,30r91,0v6,0,10,4,10,11v0,7,-4,10,-10,10r-91,0v0,21,-4,52,18,50v12,-1,30,-6,29,10v-11,29,-69,-3,-109,13v-18,3,-21,-25,-4,-25",w:255},"\u00b5":{d:"89,-17v62,-1,45,-92,47,-155r27,0r0,172r-26,0r0,-31v-18,44,-71,48,-94,9r0,82r-26,0r0,-232r26,0v5,63,-21,156,46,155",w:180},"\u03bc":{d:"89,-17v62,-1,45,-92,47,-155r27,0r0,172r-26,0r0,-31v-18,44,-71,48,-94,9r0,82r-26,0r0,-232r26,0v5,63,-21,156,46,155",w:180},"\u00aa":{d:"32,-216v0,-17,21,-27,39,-27v45,0,37,40,37,81v1,4,3,6,6,6v12,1,-1,-27,13,-27v9,0,8,12,8,22v0,23,-36,27,-42,8v-15,20,-71,15,-68,-17v-6,-25,41,-28,61,-34v11,-9,3,-28,-15,-25v-27,-4,-3,24,-26,25v-9,0,-13,-4,-13,-12xm25,-119r111,0r0,12r-111,0r0,-12xm63,-156v20,0,30,-12,27,-34v-6,7,-50,3,-46,20v0,10,6,14,19,14",w:153},"\u00ba":{d:"124,-192v0,30,-19,51,-48,51v-28,0,-47,-21,-47,-51v0,-30,18,-51,47,-51v29,0,48,20,48,51xm29,-119r95,0r0,12r-95,0r0,-12xm47,-194v0,22,8,38,29,38v20,0,29,-12,29,-36v0,-24,-9,-36,-28,-36v-19,0,-29,11,-30,34",w:153},"\u00e6":{d:"21,-137v0,-55,115,-69,129,-13v40,-67,145,-32,139,47v0,12,-3,18,-9,18r-114,0v-5,0,-8,2,-8,7v-7,61,88,84,102,21v3,-13,26,-9,25,5v-4,59,-113,83,-140,22v-21,54,-137,47,-134,-19v2,-53,49,-60,112,-60v9,0,9,-1,9,-11v0,-42,-55,-58,-77,-29v13,11,6,34,-13,33v-12,0,-21,-9,-21,-21xm212,-162v-26,0,-51,24,-51,48v0,3,3,5,9,5r81,0v6,0,9,-2,9,-5v0,-24,-22,-48,-48,-48xm81,-18v35,-1,50,-20,50,-59v0,-17,-25,-6,-37,-8v-68,-11,-69,69,-13,67",w:301},"\u00f8":{d:"40,-15v-66,-67,1,-213,99,-161v6,-11,15,-33,35,-21v-5,12,-13,20,-19,31v54,50,27,172,-58,172v-14,0,-28,-3,-41,-10v-8,11,-15,36,-37,25v4,-15,15,-23,21,-36xm125,-158v-68,-29,-104,65,-69,122xm70,-23v69,34,109,-67,70,-122",w:196},"\u00bf":{d:"93,-163v0,-13,10,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22v-12,0,-23,-9,-22,-22xm44,1v0,64,121,53,123,0v0,-6,-4,-11,-10,-15v4,8,-4,16,-13,15v-10,0,-15,-5,-15,-16v-1,-14,14,-24,28,-24v22,0,37,16,36,38v0,44,-43,69,-91,69v-49,0,-86,-22,-89,-68v-3,-48,56,-63,84,-83v13,-10,-1,-43,21,-41v10,0,15,7,15,19v4,60,-89,52,-89,106",w:216},"\u00a1":{d:"53,-163v0,-13,10,-23,22,-23v12,0,23,11,23,23v0,12,-10,22,-23,22v-12,0,-23,-9,-22,-22xm59,47r4,-164v6,-14,25,-10,25,10r2,156v0,13,-5,19,-15,19v-10,0,-16,-7,-16,-21",w:150},"\u00ac":{d:"168,0r-27,0r0,-72r-129,0r0,-24r156,0r0,96",w:180},"\u00ab":{d:"62,-154v-3,23,-13,38,-19,58r20,60v1,8,-9,7,-10,2r-38,-62v15,-21,24,-47,43,-64v3,0,4,2,4,6xm108,-155v-4,22,-13,39,-19,59r20,60v1,8,-9,7,-10,2r-38,-62v14,-21,25,-46,42,-64v3,0,5,2,5,5",w:124},"\u00bb":{d:"61,-36r20,-60r-19,-58v0,-8,8,-7,10,-2v11,21,30,41,36,62r-36,60v-2,5,-12,6,-11,-2xm15,-36r20,-60r-19,-58v0,-8,8,-7,10,-2v11,21,30,41,36,62v-15,21,-23,47,-42,64v-3,0,-5,-2,-5,-6",w:124,k:{"\u00c1":21,"\u00c2":21,"\u00c3":21,"\u00c0":21,"\u00c5":21,"\u00c4":21,Y:44,W:25,V:34,T:13,A:21}},"\u00a0":{w:90},"\u00c0":{d:"191,-31v-7,-17,-11,-37,-20,-52v-22,-3,-62,-5,-84,1v-7,11,-15,33,-19,49v-1,24,50,-4,49,23v-9,26,-60,-4,-91,10v-26,11,-41,-20,-15,-23v20,3,24,-5,31,-24r67,-181v6,-20,37,-20,44,0r65,179v7,22,13,26,40,26v9,0,13,4,13,12v1,23,-45,5,-58,9v-22,-2,-65,14,-69,-9v-4,-23,44,0,47,-20xm91,-296v-1,-15,16,-17,25,-10v18,14,46,22,58,41v1,8,-8,9,-15,7r-55,-24v-9,-4,-13,-8,-13,-14xm163,-111r-33,-102r-34,101v12,10,44,1,63,4v3,0,4,-1,4,-3",w:268,k:{"\u00d9":14,"\u00db":14,"\u00da":14,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":-17,"\u00c2":-17,"\u00d5":9,"\u00c3":-17,"\u00c0":-17,"\u00ab":25,"\u00e7":5,"\u00dc":14,"\u00d6":9,"\u00c7":10,"\u00c5":-17,"\u00c4":-17,w:19,v:28,u:10,t:6,q:5,o:5,g:-8,e:5,d:6,c:5,a:-5,Y:20,W:28,V:41,U:14,T:11,Q:9,O:9,G:10,C:10,A:-17,"-":15}},"\u00c3":{d:"191,-31v-7,-17,-11,-37,-20,-52v-22,-3,-62,-5,-84,1v-7,11,-15,33,-19,49v-1,24,50,-4,49,23v-9,26,-60,-4,-91,10v-26,11,-41,-20,-15,-23v20,3,24,-5,31,-24r67,-181v6,-20,37,-20,44,0r65,179v7,22,13,26,40,26v9,0,13,4,13,12v1,23,-45,5,-58,9v-22,-2,-65,14,-69,-9v-4,-23,44,0,47,-20xm79,-264v-17,-14,15,-39,33,-39v20,0,59,27,72,1v3,-2,11,-2,10,4v1,17,-20,31,-38,31v-22,0,-61,-28,-71,0v-2,2,-5,3,-6,3xm163,-111r-33,-102r-34,101v12,10,44,1,63,4v3,0,4,-1,4,-3",w:268,k:{"\u00d9":14,"\u00db":14,"\u00da":14,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":-17,"\u00c2":-17,"\u00d5":9,"\u00c3":-17,"\u00c0":-17,"\u00ab":25,"\u00e7":5,"\u00dc":14,"\u00d6":9,"\u00c7":10,"\u00c5":-17,"\u00c4":-17,w:19,v:28,u:10,t:6,q:5,o:5,g:-8,e:5,d:6,c:5,a:-5,Y:20,W:28,V:41,U:14,T:11,Q:9,O:9,G:10,C:10,A:-17,"-":15}},"\u00d5":{d:"222,-125v0,75,-36,132,-105,133v-67,0,-103,-56,-103,-128v0,-74,36,-128,105,-128v65,0,103,53,103,123xm63,-264v-17,-14,13,-39,32,-39v21,0,59,28,73,1v3,-2,11,-1,10,4v0,17,-20,32,-38,31v-22,0,-61,-27,-72,0v-2,2,-3,3,-5,3xm190,-122v0,-58,-20,-100,-72,-100v-51,0,-73,44,-73,101v0,58,21,103,73,103v50,0,72,-48,72,-104",w:235,k:{"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c0":10,"\u00c5":10,"\u00c4":10,Y:6,X:12,W:9,V:9,A:10}},"\u00f7":{d:"108,-185v-1,22,-36,23,-36,0v0,-27,36,-20,36,0xm108,-54v0,21,-36,22,-36,0v0,-10,8,-18,18,-18v10,0,17,9,18,18xm12,-108r0,-24r156,0r0,24r-156,0",w:180},"\u00ff":{d:"102,-168v4,24,-41,-3,-31,23r41,121r46,-128v-3,-15,-39,7,-35,-16v5,-25,54,-1,83,-12v10,0,15,4,15,12v0,25,-34,-4,-38,28v-25,57,-48,137,-79,182v-15,22,-38,31,-62,31v-26,0,-49,-15,-51,-38v-3,-27,41,-35,42,-8v0,8,-3,12,-10,14v25,23,75,-8,70,-38v-7,-42,-35,-92,-49,-133v-1,0,-12,-34,-19,-28v-11,2,-28,5,-28,-9v1,-19,29,-10,47,-10v19,1,55,-12,58,9xm100,-226v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20xm164,-226v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20",w:216},"\u00b7":{d:"49,-127v0,14,-12,25,-25,25v-13,0,-24,-12,-24,-25v0,-13,11,-25,24,-25v14,0,25,11,25,25",w:49},"\u2219":{d:"49,-127v0,14,-12,25,-25,25v-13,0,-24,-12,-24,-25v0,-13,11,-25,24,-25v14,0,25,11,25,25",w:49},"\u00c2":{d:"191,-31v-7,-17,-11,-37,-20,-52v-22,-3,-62,-5,-84,1v-7,11,-15,33,-19,49v-1,24,50,-4,49,23v-9,26,-60,-4,-91,10v-26,11,-41,-20,-15,-23v20,3,24,-5,31,-24r67,-181v6,-20,37,-20,44,0r65,179v7,22,13,26,40,26v9,0,13,4,13,12v1,23,-45,5,-58,9v-22,-2,-65,14,-69,-9v-4,-23,44,0,47,-20xm190,-258v-21,-6,-38,-17,-57,-25r-57,25v-12,-1,-9,-11,1,-17v19,-11,34,-28,56,-37v23,13,48,28,64,47v0,5,-2,7,-7,7xm163,-111r-33,-102r-34,101v12,10,44,1,63,4v3,0,4,-1,4,-3",w:268,k:{"\u00d9":14,"\u00db":14,"\u00da":14,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":-17,"\u00c2":-17,"\u00d5":9,"\u00c3":-17,"\u00c0":-17,"\u00ab":25,"\u00e7":5,"\u00dc":14,"\u00d6":9,"\u00c7":10,"\u00c5":-17,"\u00c4":-17,w:19,v:28,u:10,t:6,q:5,o:5,g:-8,e:5,d:6,c:5,a:-5,Y:20,W:28,V:41,U:14,T:11,Q:9,O:9,G:10,C:10,A:-17,"-":15}},"\u00ca":{d:"108,-23v43,0,96,15,86,-46v-3,-16,-3,-33,12,-32v28,2,6,54,14,86v1,23,-24,17,-45,16r-81,-2r-72,3v-10,0,-15,-4,-15,-13v-1,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v0,-10,9,-15,20,-12v55,4,116,-1,170,-1v38,0,7,56,19,90v0,9,-4,13,-13,13v-15,0,-13,-21,-13,-37v0,-44,-11,-36,-61,-40v-51,-4,-45,17,-46,59v-1,22,13,15,30,17v41,5,3,-49,33,-53v30,11,-2,57,10,92v1,14,10,40,-10,38v-31,-3,15,-67,-48,-53v-29,-1,-10,41,-14,72v1,19,4,21,24,21xm174,-258v-21,-6,-38,-17,-57,-25v-19,8,-36,18,-57,25v-11,-1,-10,-11,0,-17v20,-11,35,-28,57,-37v23,13,48,28,64,47v0,5,-2,7,-7,7",w:242},"\u00c1":{d:"191,-31v-7,-17,-11,-37,-20,-52v-22,-3,-62,-5,-84,1v-7,11,-15,33,-19,49v-1,24,50,-4,49,23v-9,26,-60,-4,-91,10v-26,11,-41,-20,-15,-23v20,3,24,-5,31,-24r67,-181v6,-20,37,-20,44,0r65,179v7,22,13,26,40,26v9,0,13,4,13,12v1,23,-45,5,-58,9v-22,-2,-65,14,-69,-9v-4,-23,44,0,47,-20xm157,-310v18,0,19,23,1,28v-21,7,-38,19,-61,25v-13,-1,-11,-14,0,-19v20,-11,37,-26,60,-34xm163,-111r-33,-102r-34,101v12,10,44,1,63,4v3,0,4,-1,4,-3",w:268,k:{"\u00d9":14,"\u00db":14,"\u00da":14,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":-17,"\u00c2":-17,"\u00d5":9,"\u00c3":-17,"\u00c0":-17,"\u00ab":25,"\u00e7":5,"\u00dc":14,"\u00d6":9,"\u00c7":10,"\u00c5":-17,"\u00c4":-17,w:19,v:28,u:10,t:6,q:5,o:5,g:-8,e:5,d:6,c:5,a:-5,Y:20,W:28,V:41,U:14,T:11,Q:9,O:9,G:10,C:10,A:-17,"-":15}},"\u00cb":{d:"108,-23v43,0,96,15,86,-46v-3,-16,-3,-33,12,-32v28,2,6,54,14,86v1,23,-24,17,-45,16r-81,-2r-72,3v-10,0,-15,-4,-15,-13v-1,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v0,-10,9,-15,20,-12v55,4,116,-1,170,-1v38,0,7,56,19,90v0,9,-4,13,-13,13v-15,0,-13,-21,-13,-37v0,-44,-11,-36,-61,-40v-51,-4,-45,17,-46,59v-1,22,13,15,30,17v41,5,3,-49,33,-53v30,11,-2,57,10,92v1,14,10,40,-10,38v-31,-3,15,-67,-48,-53v-29,-1,-10,41,-14,72v1,19,4,21,24,21xm109,-287v0,12,-12,23,-23,23v-12,0,-24,-10,-24,-23v0,-13,12,-23,24,-23v11,0,23,11,23,23xm174,-287v0,13,-12,23,-24,23v-11,0,-23,-11,-23,-23v0,-11,12,-24,23,-23v12,0,24,10,24,23",w:242},"\u00c8":{d:"108,-23v43,0,96,15,86,-46v-3,-16,-3,-33,12,-32v28,2,6,54,14,86v1,23,-24,17,-45,16r-81,-2r-72,3v-10,0,-15,-4,-15,-13v-1,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v0,-10,9,-15,20,-12v55,4,116,-1,170,-1v38,0,7,56,19,90v0,9,-4,13,-13,13v-15,0,-13,-21,-13,-37v0,-44,-11,-36,-61,-40v-51,-4,-45,17,-46,59v-1,22,13,15,30,17v41,5,3,-49,33,-53v30,11,-2,57,10,92v1,14,10,40,-10,38v-31,-3,15,-67,-48,-53v-29,-1,-10,41,-14,72v1,19,4,21,24,21xm87,-282v-19,-5,-17,-27,0,-28v23,8,39,24,60,34v14,7,9,23,-5,18",w:242},"\u00cd":{d:"110,-241v20,-8,29,21,10,24v-21,-4,-36,-3,-36,25r0,144v-1,27,14,29,36,25v7,0,11,4,11,12v-6,29,-57,-1,-87,10v-14,2,-37,8,-37,-10v0,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v11,-29,65,3,103,-12xm97,-310v19,1,18,22,0,28v-21,7,-38,18,-60,25v-13,0,-11,-14,-1,-19v20,-11,38,-26,61,-34",w:137},"\u00ce":{d:"110,-241v20,-8,29,21,10,24v-21,-4,-36,-3,-36,25r0,144v-1,27,14,29,36,25v7,0,11,4,11,12v-6,29,-57,-1,-87,10v-14,2,-37,8,-37,-10v0,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v11,-29,65,3,103,-12xm124,-258v-21,-6,-38,-17,-57,-25v-19,8,-36,18,-56,25v-11,-1,-10,-11,0,-17v19,-11,35,-27,56,-37v22,9,38,25,57,37v9,5,12,16,0,17",w:137},"\u00cf":{d:"110,-241v20,-8,29,21,10,24v-21,-4,-36,-3,-36,25r0,144v-1,27,14,29,36,25v7,0,11,4,11,12v-6,29,-57,-1,-87,10v-14,2,-37,8,-37,-10v0,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v11,-29,65,3,103,-12xm60,-287v0,13,-12,23,-24,23v-11,0,-23,-11,-23,-23v0,-12,12,-23,23,-23v12,0,24,10,24,23xm125,-287v0,12,-12,23,-24,23v-11,0,-23,-12,-23,-23v0,-11,12,-24,23,-23v12,0,24,10,24,23",w:137},"\u00cc":{d:"110,-241v20,-8,29,21,10,24v-21,-4,-36,-3,-36,25r0,144v-1,27,14,29,36,25v7,0,11,4,11,12v-6,29,-57,-1,-87,10v-14,2,-37,8,-37,-10v0,-16,15,-10,28,-10v12,0,19,-9,19,-27r0,-144v0,-27,-14,-30,-36,-25v-7,0,-11,-5,-11,-12v11,-29,65,3,103,-12xm26,-296v-1,-16,15,-17,24,-10v18,14,46,22,58,41v1,8,-8,9,-14,7r-55,-24v-9,-4,-13,-8,-13,-14",w:137},"\u00d3":{d:"222,-125v0,75,-36,132,-105,133v-67,0,-103,-56,-103,-128v0,-74,36,-128,105,-128v65,0,103,53,103,123xm146,-310v17,1,17,22,0,28v-21,7,-38,18,-60,25v-13,-1,-11,-14,0,-19v20,-11,37,-26,60,-34xm190,-122v0,-58,-20,-100,-72,-100v-51,0,-73,44,-73,101v0,58,21,103,73,103v50,0,72,-48,72,-104",w:235,k:{"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c0":10,"\u00c5":10,"\u00c4":10,Y:6,X:12,W:9,V:9,A:10}},"\u00d4":{d:"222,-125v0,75,-36,132,-105,133v-67,0,-103,-56,-103,-128v0,-74,36,-128,105,-128v65,0,103,53,103,123xm174,-258v-21,-6,-38,-17,-57,-25v-19,8,-36,18,-57,25v-11,-1,-10,-11,0,-17v20,-11,35,-28,57,-37v21,10,37,25,56,37v10,5,12,16,1,17xm190,-122v0,-58,-20,-100,-72,-100v-51,0,-73,44,-73,101v0,58,21,103,73,103v50,0,72,-48,72,-104",w:235,k:{"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c0":10,"\u00c5":10,"\u00c4":10,Y:6,X:12,W:9,V:9,A:10}},"\u00d2":{d:"222,-125v0,75,-36,132,-105,133v-67,0,-103,-56,-103,-128v0,-74,36,-128,105,-128v65,0,103,53,103,123xm75,-296v-1,-16,15,-16,25,-10v18,14,46,21,57,41v1,8,-8,9,-14,7r-55,-24v-9,-4,-13,-8,-13,-14xm190,-122v0,-58,-20,-100,-72,-100v-51,0,-73,44,-73,101v0,58,21,103,73,103v50,0,72,-48,72,-104",w:235,k:{"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c0":10,"\u00c5":10,"\u00c4":10,Y:6,X:12,W:9,V:9,A:10}},"\u00da":{d:"109,-217v-57,-13,-31,78,-37,140v-4,44,20,61,57,61v38,0,56,-19,56,-61r0,-123v1,-33,-43,-4,-47,-29v7,-30,59,4,92,-12v13,-3,24,0,24,11v0,11,-12,16,-23,12v-30,5,-15,82,-15,129v0,67,-26,97,-87,97v-58,0,-89,-20,-88,-81r2,-125v2,-33,-35,-7,-39,-31v2,-25,40,-5,58,-9v17,3,58,-15,60,9v0,8,-5,12,-13,12xm161,-310v18,0,19,23,1,28v-21,7,-38,19,-61,25v-13,-1,-11,-14,0,-19v20,-11,37,-26,60,-34",w:255,k:{"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c0":14,"\u00c5":14,"\u00c4":14,p:9,n:10,m:10,A:14,".":15,",":13}},"\u00db":{d:"109,-217v-57,-13,-31,78,-37,140v-4,44,20,61,57,61v38,0,56,-19,56,-61r0,-123v1,-33,-43,-4,-47,-29v7,-30,59,4,92,-12v13,-3,24,0,24,11v0,11,-12,16,-23,12v-30,5,-15,82,-15,129v0,67,-26,97,-87,97v-58,0,-89,-20,-88,-81r2,-125v2,-33,-35,-7,-39,-31v2,-25,40,-5,58,-9v17,3,58,-15,60,9v0,8,-5,12,-13,12xm192,-265v-1,12,-15,4,-21,2r-44,-20r-56,25v-11,-1,-10,-11,0,-17v19,-11,35,-27,56,-37v22,9,38,25,57,37v6,4,8,7,8,10",w:255,k:{"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c0":14,"\u00c5":14,"\u00c4":14,p:9,n:10,m:10,A:14,".":15,",":13}},"\u00d9":{d:"109,-217v-57,-13,-31,78,-37,140v-4,44,20,61,57,61v38,0,56,-19,56,-61r0,-123v1,-33,-43,-4,-47,-29v7,-30,59,4,92,-12v13,-3,24,0,24,11v0,11,-12,16,-23,12v-30,5,-15,82,-15,129v0,67,-26,97,-87,97v-58,0,-89,-20,-88,-81r2,-125v2,-33,-35,-7,-39,-31v2,-25,40,-5,58,-9v17,3,58,-15,60,9v0,8,-5,12,-13,12xm99,-282v-19,-5,-17,-27,0,-28v23,8,39,24,60,34v14,7,9,23,-5,18",w:255,k:{"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c0":14,"\u00c5":14,"\u00c4":14,p:9,n:10,m:10,A:14,".":15,",":13}},"\u00af":{d:"141,-227v0,7,-6,12,-13,12r-79,0v-9,0,-13,-4,-13,-11v0,-8,4,-11,13,-11r79,0v9,0,13,3,13,10",w:176},"\u02c9":{d:"141,-227v0,7,-6,12,-13,12r-79,0v-9,0,-13,-4,-13,-11v0,-8,4,-11,13,-11r79,0v9,0,13,3,13,10",w:176},"\u00b8":{d:"94,73v-20,0,-52,-18,-30,-30v10,8,44,26,48,1v3,-16,-26,-15,-37,-8v-6,0,-6,-5,-3,-10r10,-26r18,0r-7,17v22,-5,40,8,41,26v0,17,-21,30,-40,30",w:177},"\u00a4":{d:"35,-30r-15,-14r34,-34v-24,-31,-26,-70,-1,-102r-34,-35r15,-15r34,35v33,-25,70,-25,104,-1r34,-33r15,14r-35,34v24,33,26,68,1,102r34,35r-15,14r-34,-34v-33,25,-69,25,-104,1xm120,-69v33,0,60,-28,60,-61v0,-33,-27,-60,-60,-60v-33,0,-60,27,-60,60v0,33,28,61,60,61",w:240},"\u00ad":{d:"17,-74r0,-22r164,0r0,22r-164,0",w:197},"\u2212":{d:"17,-74r0,-22r164,0r0,22r-164,0",w:197}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data (c) Copyright 1997 E+F Designstudios. ITC American Typewriter is
 * a registered trademark of International Typeface Corporation.
 * 
 * Trademark:
 * ITC American Typewriter is a registered trademark of International Typeface
 * Corporation.
 * 
 * Vendor URL:
 * http://www.agfamonotype.com
 */
Cufon.registerFont({w:235,face:{"font-family":"American Typewriter","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 9 8 4 2 0 4 2 3 4",ascent:"288",descent:"-72","x-height":"6",bbox:"-44.1106 -341 380 99.1523","underline-thickness":"7.2","underline-position":"-56.16","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:90},"!":{d:"112,-28v0,17,-17,34,-34,34v-17,0,-34,-17,-34,-34v0,-17,17,-34,34,-34v17,0,34,17,34,34xm103,-92v-1,18,-13,19,-31,18v-10,0,-16,-6,-17,-18r-13,-130v0,-16,12,-25,36,-25v30,1,39,12,36,39",w:157},'"':{d:"67,-240r-9,96r-35,0r-8,-96r52,0xm134,-240r-9,96r-34,0r-9,-96r52,0",w:148},"#":{d:"171,-108r36,0r-6,42r-36,0r-11,66r-48,0r11,-66r-31,0r-10,66r-48,0r11,-66r-37,0r7,-42r36,0r5,-30r-36,0r6,-41r37,0r9,-61r48,0r-10,61r30,0r10,-61r48,0r-10,61r36,0r-6,41r-36,0xm123,-108r5,-30r-31,0r-4,30r30,0",w:216},"$":{d:"59,-96v23,-1,37,26,22,44v4,4,10,6,15,6r5,-56v-65,-11,-87,-74,-46,-115v13,-13,32,-20,56,-21v2,-13,2,-29,17,-29v17,0,11,17,11,30v30,1,54,17,56,45v3,33,-52,41,-54,8v2,-8,3,-14,-7,-14r-4,45v44,15,77,23,77,73v0,49,-38,75,-89,77v-2,13,1,28,-13,28v-16,0,-16,-14,-14,-28v-32,-1,-61,-27,-62,-58v-1,-21,11,-35,30,-35xm105,-157r4,-40v-29,4,-28,32,-4,40xm121,-45v17,0,32,-11,32,-27v0,-14,-10,-23,-28,-27"},"%":{d:"9,-181v0,-69,77,-82,118,-46v26,23,54,15,73,-7v16,-18,47,-2,24,19r-136,209v-3,14,-33,17,-37,5v37,-66,83,-127,123,-191v-13,9,-27,7,-40,-1v6,51,-16,83,-62,83v-42,0,-63,-27,-63,-71xm216,6v-41,0,-62,-27,-62,-69v0,-42,22,-68,63,-67v41,0,62,23,62,68v0,46,-21,68,-63,68xm94,-177v0,-24,-7,-36,-21,-36v-16,0,-23,11,-23,34v0,24,8,37,23,37v14,0,21,-11,21,-35xm239,-63v0,-23,-8,-35,-22,-35v-15,0,-22,12,-22,36v0,24,7,36,22,36v14,0,22,-13,22,-37",w:288},"&":{d:"190,-197v-1,27,-21,42,-42,56r22,29v13,-34,33,-63,77,-64v28,-1,56,21,56,48v0,21,-17,37,-37,38v-20,1,-35,-23,-21,-40v-24,-6,-34,30,-48,55v13,17,18,31,43,29v35,-3,42,44,12,48v-28,-8,-63,10,-77,-17r-8,-10v-39,59,-157,30,-157,-47v0,-43,33,-64,67,-79v-34,-44,-6,-96,50,-96v33,0,63,18,63,50xm126,-174v22,-3,24,-35,3,-37v-20,2,-14,24,-3,37xm71,-72v-2,36,54,40,69,12r-38,-54v-20,16,-30,16,-31,42",w:308},"'":{d:"67,-240r-9,96r-35,0r-8,-96r52,0",w:81},"(":{d:"200,72v-119,-7,-197,-158,-115,-259v25,-31,65,-61,115,-65v35,7,22,35,-7,44v-71,25,-108,129,-53,196v17,21,54,37,76,53v14,11,2,33,-16,31",w:229},")":{d:"14,-222v-15,-11,-3,-33,15,-30v84,13,150,68,150,162v0,88,-66,152,-149,162v-17,2,-32,-19,-17,-30v21,-16,61,-33,77,-54v34,-45,34,-111,0,-156v-16,-21,-55,-39,-76,-54",w:229},"*":{d:"153,-179v26,0,27,32,5,34v-10,4,-23,-28,-32,-20v5,13,15,43,-8,43v-26,1,-8,-33,-11,-46v-10,13,-39,38,-45,6v-2,-16,26,-16,38,-22v-10,-7,-41,-5,-39,-22v6,-33,36,-6,46,6v9,-9,-22,-46,11,-47v25,0,13,28,8,44v9,8,21,-23,33,-20v22,5,21,33,-6,34v-5,1,-25,3,-12,8"},"+":{d:"12,-101r0,-43r55,0r0,-55r46,0r0,55r55,0r0,43r-55,0r0,55r-46,0r0,-55r-55,0",w:180},",":{d:"26,71v-1,-23,48,-61,20,-68v-40,-10,-31,-71,8,-71v24,0,42,26,41,51v0,29,-13,59,-38,91v-10,13,-30,17,-31,-3",w:118,k:{"1":17}},"-":{d:"105,-95v0,39,-36,26,-73,26v-13,0,-19,-8,-19,-25v-2,-36,38,-23,73,-23v13,0,19,7,19,22",w:118,k:{"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c0":5,"\u00c5":5,"\u00c4":5,Y:24,W:13,V:18,T:8,A:5,"1":28}},"\u2010":{d:"105,-95v0,39,-36,26,-73,26v-13,0,-19,-8,-19,-25v-2,-36,38,-23,73,-23v13,0,19,7,19,22",w:118},".":{d:"95,-31v0,20,-16,37,-36,37v-20,0,-36,-17,-36,-37v0,-20,17,-36,36,-36v19,0,36,16,36,36",w:118},"/":{d:"178,-234r-118,303v-5,10,-55,7,-51,-5r78,-195v13,-34,24,-81,41,-109v8,-12,55,-7,50,6",w:209},"0":{d:"225,-123v0,76,-33,130,-106,129v-71,0,-108,-50,-108,-126v0,-75,37,-127,106,-127v70,0,108,51,108,124xm164,-120v0,-40,-12,-77,-46,-77v-34,0,-46,37,-46,77v0,40,12,77,46,77v34,0,46,-37,46,-77",k:{"1":25}},"1":{d:"110,-238v17,2,48,-16,48,17r0,162v0,18,15,11,27,11v16,0,23,7,23,23v0,52,-82,10,-136,27v-16,0,-27,-11,-27,-26v-1,-23,20,-26,42,-22v12,2,11,-18,11,-31r0,-99v2,-22,-17,-14,-32,-14v-14,0,-21,-9,-21,-25v0,-32,37,-27,65,-23",k:{"9":16,"8":14,"7":32,"6":22,"5":15,"4":22,"3":14,"2":10,"1":26,"0":19,".":8,",":7}},"2":{d:"117,-247v52,0,95,24,96,72v2,68,-90,74,-136,98v-8,4,-10,12,-12,22v11,-13,24,-20,41,-20v25,-5,54,44,77,24v-14,-3,-22,-11,-22,-24v0,-15,12,-27,28,-27v21,1,36,21,36,45v0,33,-27,63,-58,62v-22,5,-61,-31,-76,-36v-6,0,-7,7,-5,12v1,15,-14,25,-30,25v-26,0,-44,-26,-44,-53v0,-38,29,-67,85,-90v32,-13,46,-12,51,-39v-2,-26,-42,-30,-64,-17v19,22,-2,53,-28,52v-22,0,-37,-18,-37,-39v2,-44,48,-67,98,-67",k:{"1":20}},"3":{d:"76,-51v23,23,79,10,79,-25v0,-20,-16,-30,-46,-32v-24,-1,-17,-31,-4,-45r36,-39v-28,3,-81,-13,-64,28v0,20,-10,30,-29,30v-44,-1,-17,-56,-26,-90v0,-28,41,-17,68,-17r105,-1v31,-1,21,42,7,56r-42,43v35,4,57,28,58,65v-1,54,-49,84,-108,84v-50,0,-93,-24,-96,-69v-3,-46,69,-56,71,-10v0,7,-3,15,-9,22",k:{"1":22}},"4":{d:"154,-2v-45,-1,-84,19,-89,-21v-3,-23,23,-25,50,-21v9,1,14,-11,13,-24r-102,0v-35,-1,-25,-36,-9,-56r82,-105v14,-23,84,-32,83,13r-2,104v23,0,49,-4,49,21v0,25,-25,23,-49,22v-10,43,50,4,48,45v-2,38,-38,23,-74,22xm65,-111r62,0r1,-80",k:{"1":15}},"5":{d:"138,-190v-17,2,-48,-9,-50,10r-3,27v65,-23,127,9,128,71v2,54,-49,88,-105,88v-44,0,-88,-23,-90,-62v-3,-43,70,-52,70,-9v0,6,-2,11,-6,17v25,18,70,4,70,-27v0,-42,-61,-39,-92,-28v-55,-5,-24,-80,-23,-130v27,-18,98,-9,150,-9v26,0,13,30,16,54v2,14,-11,26,-26,25v-23,5,-17,-30,-39,-27",k:{"1":28}},"6":{d:"203,-197v3,36,-60,45,-62,11v0,-4,2,-8,5,-13v-41,-9,-66,12,-66,60v59,-41,144,-9,144,62v0,50,-45,83,-98,83v-67,0,-109,-50,-109,-119v0,-77,43,-133,115,-134v37,0,68,17,71,50xm124,-40v22,0,42,-16,42,-37v0,-20,-20,-35,-42,-35v-22,0,-42,15,-42,35v0,21,20,38,42,37",k:{"1":23}},"7":{d:"44,-132v-47,1,-15,-60,-27,-90v0,-14,9,-24,22,-24v13,0,17,8,18,23v21,-41,80,-18,110,-3v13,-2,12,-20,29,-20v18,0,28,18,28,36v-2,63,-85,87,-82,152v2,30,7,66,-27,64v-59,-3,-48,-97,-14,-127v17,-15,55,-45,68,-61v-34,20,-62,-9,-92,-19v-20,1,-5,27,-5,40v0,19,-9,29,-28,29",k:{":":15,"6":12,"4":25,"1":18,".":37,",":35}},"8":{d:"118,6v-56,0,-104,-26,-105,-76v0,-27,15,-48,45,-61v-76,-40,-12,-116,60,-116v47,0,93,26,94,69v0,22,-12,37,-34,47v30,13,46,34,46,61v-1,50,-50,76,-106,76xm152,-179v0,-30,-67,-33,-67,0v0,15,15,25,33,25v18,0,34,-10,34,-25xm165,-75v0,-43,-95,-45,-94,0v1,22,21,34,46,34v24,0,48,-11,48,-34",k:{"1":23}},"9":{d:"25,-39v-3,-37,65,-44,67,-7v-3,7,5,9,11,9v35,-1,51,-22,55,-56v-61,39,-145,6,-144,-65v-1,-53,42,-89,97,-89v69,0,110,51,110,122v0,77,-43,131,-119,131v-38,0,-75,-14,-77,-45xm114,-124v23,0,42,-16,42,-38v-1,-47,-81,-49,-81,0v0,22,18,38,39,38",k:{"1":27}},":":{d:"95,-31v0,20,-16,37,-36,37v-20,0,-36,-17,-36,-37v0,-20,17,-36,36,-36v19,0,36,16,36,36xm95,-149v0,20,-17,36,-36,36v-19,0,-36,-16,-36,-36v0,-20,16,-37,36,-37v20,0,36,17,36,37",w:118},";":{d:"26,71v-1,-23,48,-61,20,-68v-40,-10,-31,-71,8,-71v24,0,42,26,41,51v0,29,-13,59,-38,91v-10,13,-30,17,-31,-3xm93,-149v0,19,-18,36,-37,36v-19,0,-37,-17,-37,-36v0,-20,17,-37,37,-37v20,0,37,17,37,37",w:118},"<":{d:"12,-140r156,-79r0,46r-107,53r107,53r0,46r-156,-80r0,-39",w:180},"=":{d:"12,-133r0,-41r156,0r0,41r-156,0xm12,-71r0,-41r156,0r0,41r-156,0",w:180},">":{d:"168,-100r-156,79r0,-46r107,-53r-107,-53r0,-46r156,79r0,40",w:180},"?":{d:"138,-28v0,17,-17,34,-34,34v-17,0,-34,-17,-34,-34v0,-17,17,-34,34,-34v17,0,34,17,34,34xm150,-170v0,-32,-50,-36,-68,-19v25,18,3,55,-25,54v-22,0,-38,-17,-38,-40v1,-45,51,-72,101,-72v75,0,125,77,71,127v-8,14,-51,9,-57,30v1,20,-16,18,-34,18v-18,0,-25,-7,-24,-26v-9,-50,74,-32,74,-72",w:222},"@":{d:"69,-109v0,-50,65,-99,98,-54r3,-14r32,0r-16,84v0,7,3,11,8,11v20,-2,30,-34,30,-56v0,-47,-36,-77,-84,-77v-53,0,-97,44,-97,98v0,82,84,112,162,82r7,29v-97,34,-200,-15,-200,-112v0,-70,56,-126,127,-126v63,0,113,45,113,106v0,50,-57,116,-87,63v-28,43,-96,20,-96,-34xm129,-85v30,2,45,-60,8,-62v-31,-3,-46,61,-8,62",w:263},A:{d:"111,2v-35,-15,-111,21,-114,-25v-2,-42,44,-5,49,-45r49,-142v14,-30,13,-35,55,-34v38,1,42,-2,51,25r46,153v3,35,45,2,44,42v-2,48,-72,11,-114,26v-23,3,-33,-47,-9,-47v8,0,18,3,18,-7v0,-31,-35,-22,-62,-23v-14,0,-21,9,-21,25v5,14,34,-5,31,26v-2,14,-9,26,-23,26xm167,-125r-18,-78r-23,79v3,7,37,7,41,-1",w:288,k:{"\u00d9":17,"\u00db":17,"\u00da":17,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":-14,"\u00c2":-14,"\u00d5":4,"\u00c3":-14,"\u00c0":-14,"\u00ab":11,"\u00dc":17,"\u00d6":4,"\u00c7":4,"\u00c5":-14,"\u00c4":-14,w:14,v:18,u:5,t:5,g:-5,a:-4,Y:13,W:23,V:26,U:17,T:5,Q:4,O:4,C:4,A:-14,"-":5}},B:{d:"32,-242v84,12,214,-31,214,59v0,26,-14,44,-44,51v32,10,52,27,53,62v0,77,-91,68,-171,68v-31,0,-78,15,-78,-22v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-20,-11,-20,-23v0,-15,10,-29,26,-27xm141,-197v-29,0,-26,15,-26,39v0,14,12,9,23,10v21,0,40,-7,41,-25v0,-16,-13,-24,-38,-24xm152,-44v19,0,35,-10,35,-29v-1,-25,-29,-34,-59,-32v-20,-4,-13,21,-13,37v0,22,12,23,37,24",w:268},C:{d:"11,-118v0,-101,91,-168,162,-103v-1,-16,5,-24,21,-24v39,1,13,54,23,85v0,15,-12,25,-29,25v-23,0,-29,-12,-27,-34v1,-18,-18,-27,-35,-27v-32,0,-48,25,-48,76v0,46,9,75,49,76v25,1,38,-12,35,-40v-2,-14,11,-24,27,-24v20,0,32,15,32,37v-1,48,-45,79,-97,78v-71,-1,-113,-50,-113,-125",w:229},D:{d:"6,-24v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-21,-11,-20,-23v5,-49,70,-16,122,-26v80,-16,130,46,130,121v0,87,-58,138,-156,119v-38,-7,-93,21,-96,-23xm191,-117v-1,-45,-15,-74,-54,-78v-16,-1,-21,3,-21,18r0,114v0,15,5,19,21,19v34,-1,55,-33,54,-73",w:268,k:{"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u00c0":6,"\u00c5":6,"\u00c4":6,Y:4,W:6,V:5,A:6}},E:{d:"220,-133v-29,0,-29,-30,-23,-53v-2,-17,-39,-7,-59,-10v-26,-4,-22,16,-22,37v0,8,1,12,10,12v30,0,3,-40,33,-37v36,3,9,61,20,95v0,14,-7,22,-20,22v-30,0,-3,-38,-32,-38v-16,0,-10,24,-11,39v-2,25,20,20,42,21v36,2,45,-9,40,-41v-3,-18,10,-29,28,-29v45,1,15,63,26,100v0,11,-7,17,-21,17r-169,-3v-26,5,-56,5,-56,-23v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-20,-11,-20,-23v1,-47,69,-22,106,-23r114,-4v38,2,10,52,21,84v1,15,-12,25,-27,25",w:268},F:{d:"127,-104v-20,0,-9,25,-10,43v-3,34,59,-7,55,37v-5,51,-99,9,-140,26v-30,3,-36,-49,-6,-50v18,3,27,4,27,-22r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v5,-51,76,-21,126,-23r96,-4v36,4,5,53,18,84v1,16,-11,28,-27,28v-26,1,-29,-28,-24,-54v-1,-19,-38,-9,-57,-12v-27,-4,-21,17,-22,39v0,7,4,11,10,11v29,2,0,-39,31,-37v38,3,10,60,21,94v0,15,-7,22,-19,22v-30,0,-5,-37,-32,-37",w:255,k:{"\u00c1":26,"\u00c2":26,"\u00c3":26,"\u00c0":26,"\u00c5":26,"\u00c4":26,u:-5,o:6,e:7,a:6,A:26,".":32,"-":10,",":31}},G:{d:"11,-116v-11,-101,95,-171,167,-105v0,-28,48,-28,44,0v-5,35,11,81,-32,81v-39,0,-17,-61,-63,-56v-36,4,-49,39,-49,83v1,39,13,71,47,72v17,0,32,-11,32,-28v0,-15,-9,-16,-23,-15v-11,1,-19,-10,-18,-21v4,-45,74,-10,114,-24v23,-2,34,27,21,44v-11,15,-36,-5,-31,37v3,26,6,56,-25,54v-18,-1,-26,-5,-25,-19v-74,52,-170,-10,-159,-103",w:255,k:{"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c0":5,"\u00c5":5,"\u00c4":5,A:5}},H:{d:"32,-242v36,15,115,-22,115,27v1,17,-9,25,-24,21v-13,3,-5,30,-7,45r76,0v-3,-17,10,-50,-15,-44v-11,0,-16,-7,-16,-22v0,-50,70,-12,115,-27v16,-1,26,11,26,27v0,20,-17,27,-37,21v-10,2,-9,9,-10,24r0,100v0,27,9,24,27,22v12,-1,20,12,20,24v-4,48,-75,15,-117,26v-25,7,-34,-49,-8,-49v23,6,13,-32,15,-55r-76,0v4,19,-12,61,15,55v11,0,16,7,16,22v0,33,-36,27,-64,23v-31,2,-77,14,-77,-22v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-20,-11,-20,-23v0,-15,11,-27,26,-27",w:308},I:{d:"6,-24v-1,-21,17,-28,37,-22v10,-2,9,-9,10,-24r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v1,-38,43,-23,78,-23v31,0,80,-18,80,23v0,20,-17,27,-37,21v-6,0,-10,8,-10,24r0,100v0,27,9,24,27,22v12,-1,20,12,20,24v0,35,-39,23,-70,22v-34,-1,-87,17,-88,-22",w:170},J:{d:"65,-129v45,0,67,66,18,70v-9,0,-15,-4,-20,-13v-13,18,8,32,28,32v59,0,40,-79,44,-135v3,-40,-59,4,-56,-40v2,-39,53,-23,86,-23v31,0,78,-15,79,22v1,20,-17,28,-37,22v-6,0,-9,7,-9,19r0,94v3,62,-45,85,-99,87v-49,2,-94,-28,-94,-73v0,-33,29,-62,60,-62",w:242},K:{d:"82,-238v28,-4,65,-11,65,23v1,17,-9,25,-24,21v-14,6,-4,40,-7,59v20,-20,51,-41,65,-65v-2,-9,-15,-9,-13,-21v7,-39,66,-8,100,-21v31,-4,34,47,7,50v-33,-7,-47,27,-68,40v-21,13,-2,24,3,39v18,21,26,77,63,65v13,0,20,8,20,24v0,46,-69,13,-107,26v-12,0,-21,-9,-22,-20v-1,-14,25,-20,9,-39v-10,-12,-18,-36,-28,-45v-13,12,-34,17,-29,48v1,8,8,9,15,7v11,0,16,8,16,23v0,48,-73,12,-115,26v-30,3,-36,-50,-6,-50v18,0,27,5,27,-22r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v0,-36,45,-25,76,-23",w:294,k:{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00d6":4,"\u00c7":4,u:6,T:-6,O:4,G:4,C:4}},L:{d:"95,-238v33,0,74,-16,75,22v1,23,-20,27,-42,22v-8,0,-12,7,-12,20r0,101v-5,32,16,29,44,29v33,0,29,-19,26,-43v-2,-16,14,-27,30,-27v47,0,20,56,28,96v0,13,-7,20,-23,20r-158,-3v-26,5,-57,6,-57,-23v0,-21,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-20,-11,-20,-23v-1,-44,52,-23,89,-23",w:249,k:{"\u00c1":-10,"\u00c2":-10,"\u00c3":-10,"\u00c0":-10,"\u00c5":-10,"\u00c4":-10,Y:17,W:17,V:20,T:9,A:-10,"-":-11}},M:{d:"33,-242v38,0,75,4,112,0v15,1,16,8,19,23r30,131v14,-48,22,-105,40,-148v33,-15,68,4,120,-6v16,-3,26,11,26,27v0,21,-17,27,-37,21v-6,0,-9,8,-9,24r0,100v-1,27,8,24,26,22v12,-1,20,12,20,24v-3,47,-71,12,-111,26v-15,1,-25,-11,-24,-26v0,-18,7,-25,22,-22v7,1,7,-11,7,-20r0,-136r-50,177v-3,32,-56,34,-64,3r-48,-180r0,136v-5,36,31,4,29,41v-3,49,-66,12,-109,27v-14,0,-26,-11,-26,-26v-1,-21,17,-28,37,-22v10,-2,9,-9,10,-24r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v0,-18,9,-27,27,-27",w:386},N:{d:"6,-215v6,-49,72,-12,121,-27v15,2,16,9,23,25r63,154r0,-107v0,-26,-7,-26,-24,-22v-30,-5,-19,-53,7,-50v28,3,67,3,92,0v29,-4,36,50,6,50v-17,-4,-27,-2,-27,22r0,147v-1,35,-33,23,-67,23v-18,0,-17,-6,-24,-21r-69,-158r0,109v0,26,7,26,24,22v26,4,24,54,-7,50v-30,-4,-60,0,-91,0v-18,0,-27,-8,-27,-26v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-21,-11,-20,-23",w:314,k:{"\u00d2":6,"\u00d4":6,"\u00d3":6,"\u00c1":12,"\u00c2":12,"\u00d5":6,"\u00c3":12,"\u00c0":12,"\u00d6":6,"\u00c7":5,"\u00c5":12,"\u00c4":12,u:6,o:13,e:14,a:13,O:6,G:6,C:5,A:12}},O:{d:"238,-122v0,78,-39,128,-113,128v-75,0,-114,-49,-114,-127v0,-75,40,-126,111,-126v74,-1,116,49,116,125xm171,-118v-1,-46,-6,-78,-46,-78v-31,0,-47,25,-47,76v0,45,8,75,47,76v31,0,46,-25,46,-74",w:249,k:{X:4,W:4}},P:{d:"243,-161v0,60,-49,87,-117,81v-10,-1,-11,11,-10,22v3,28,61,-8,55,34v-8,52,-86,9,-139,26v-30,3,-35,-49,-6,-50v18,3,27,5,27,-22r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v0,-38,49,-25,82,-23v15,1,58,-2,67,-3v50,-1,89,31,88,80xm138,-194v-31,0,-20,29,-22,53v-1,15,4,15,18,15v28,2,42,-9,42,-33v0,-23,-13,-35,-38,-35",w:249,k:{"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c0":23,"\u00c5":23,"\u00c4":23,e:4,a:4,A:23,".":27,",":25}},Q:{d:"238,-121v0,56,-20,94,-59,115v3,12,6,18,11,18v12,-2,9,-23,27,-23v15,0,23,11,23,26v0,28,-25,44,-55,43v-40,0,-52,-16,-58,-52v-80,2,-115,-49,-116,-126v-1,-73,39,-128,111,-127v74,1,116,49,116,126xm96,-76v1,-13,12,-24,27,-23v20,0,31,13,35,38v21,-37,24,-135,-33,-135v-57,0,-53,91,-39,130v4,11,14,19,27,21v-2,-11,-18,-20,-17,-31",w:249},R:{d:"243,-178v-1,34,-18,46,-51,52v38,5,50,22,47,65v-1,18,10,16,22,13v29,5,21,53,-8,50v-17,-2,-33,0,-50,0v-29,0,-28,-35,-28,-66v0,-27,-12,-33,-44,-33v-17,0,-15,11,-15,27v-1,27,7,25,25,22v26,4,24,54,-7,50v-34,-4,-67,0,-101,0v-18,0,-27,-8,-27,-26v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v2,-37,44,-23,78,-23v70,0,160,-15,159,60xm116,-176v0,15,-5,37,13,35v54,7,65,-53,14,-53v-20,0,-27,1,-27,18",w:275,k:{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":-14,"\u00c2":-14,"\u00d5":4,"\u00c3":-14,"\u00c0":-14,"\u00d6":4,"\u00c7":4,"\u00c5":-14,"\u00c4":-14,a:-5,Y:5,T:5,O:4,C:4,A:-14}},S:{d:"75,-106v-82,-16,-62,-141,25,-141v25,0,45,9,59,26v0,-16,6,-21,21,-22v37,-1,22,40,22,72v0,14,-9,21,-25,21v-18,1,-26,-10,-26,-25v0,-29,-72,-32,-69,-2v2,22,12,18,40,25v50,12,84,25,87,76v3,74,-95,108,-150,59v-1,13,-8,21,-22,21v-40,-1,-16,-49,-22,-82v-4,-21,34,-27,47,-15v12,19,10,54,50,49v27,4,44,-28,25,-44v-7,-5,-45,-15,-62,-18",w:222},T:{d:"36,-24v0,-46,57,2,57,-44r0,-104v6,-28,-33,-31,-35,-12v4,25,2,56,-25,54v-43,-3,-26,-55,-26,-96v0,-11,5,-16,16,-16r203,0v32,0,6,53,17,83v1,18,-11,28,-27,29v-27,2,-25,-27,-25,-53v0,-9,-5,-13,-16,-13v-14,1,-18,8,-19,24r0,104v-6,46,57,-2,57,41v0,44,-54,25,-88,25v-33,0,-89,20,-89,-22",w:249,k:{"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c0":5,"\u00ab":12,"\u00e7":6,"\u00c5":5,"\u00c4":5,y:-9,w:-8,u:-6,s:4,o:5,g:8,e:6,c:6,a:5,Y:-10,V:-10,A:5,";":-5,".":13,"-":8,",":12}},U:{d:"299,-215v0,21,-17,26,-36,21v-18,5,-7,52,-10,79v8,95,-29,121,-105,121v-80,0,-108,-37,-98,-127v-3,-28,15,-85,-26,-71v-12,0,-21,-10,-20,-23v5,-48,75,-16,117,-27v24,-6,32,47,9,49v-13,-5,-18,4,-16,19v5,50,-19,128,37,128v59,0,33,-77,39,-128v4,-36,-35,-4,-31,-41v4,-48,72,-14,113,-27v15,0,27,11,27,27",w:301,k:{"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c5":17,"\u00c4":17,p:6,n:8,m:8,A:17,".":21,",":19}},V:{d:"-5,-215v1,-50,75,-12,114,-27v16,0,24,9,24,27v0,17,-6,22,-22,21v-7,0,-7,7,-5,14r33,116r36,-124v0,-6,-6,-6,-12,-6v-11,0,-16,-7,-16,-21v1,-52,71,-11,109,-27v14,-1,24,11,24,26v0,18,-13,29,-31,22v-6,0,-12,10,-19,31r-44,133v-9,39,-32,27,-70,30v-13,0,-24,-14,-33,-42r-43,-134v-6,-19,-11,-19,-27,-16v-12,0,-18,-10,-18,-23",w:275,k:{"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c0":29,"\u00ab":26,"\u00c5":29,"\u00c4":29,r:4,o:22,i:5,g:24,e:23,a:18,A:29,";":11,":":14,".":33,"-":18,",":31}},W:{d:"141,-217v1,-42,41,-17,69,-25v12,2,13,8,15,25r24,155r24,-126v0,-8,-8,-5,-15,-5v-9,0,-14,-8,-14,-22v2,-48,61,-13,101,-27v28,-3,35,47,7,50v-17,-7,-21,5,-25,21r-38,163v-10,16,-41,3,-66,8v-19,-2,-16,-13,-20,-36r-19,-126r-27,156v-9,13,-41,1,-64,6v-21,1,-20,-25,-24,-44r-32,-141v-3,-12,-12,-8,-22,-7v-10,1,-19,-12,-18,-24v3,-45,66,-14,102,-26v16,0,24,9,24,26v0,19,-8,26,-23,22v-7,-1,-7,8,-5,13r23,119",w:367,k:{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":24,"\u00c2":24,"\u00d5":4,"\u00c3":24,"\u00c0":24,"\u00ab":21,"\u00d6":4,"\u00c5":24,"\u00c4":24,r:6,o:18,i:6,e:19,a:19,O:4,G:4,A:24,".":25,"-":13,",":23}},X:{d:"107,2v-30,-13,-105,20,-105,-27v0,-35,37,-11,47,-33r44,-60v-23,-23,-28,-74,-71,-74v-13,0,-20,-7,-20,-22v3,-47,70,-18,109,-28v21,-5,31,37,10,43v-11,16,14,36,18,52v8,-14,22,-30,27,-46v-3,-7,-17,-13,-16,-23v4,-45,64,-13,100,-26v25,-2,34,49,4,51v-18,-3,-20,1,-33,18r-36,50r48,73v15,6,42,-5,41,25v-2,48,-74,12,-108,27v-12,-1,-21,-10,-20,-24v-6,-22,27,-14,14,-36r-21,-36v-6,17,-42,42,-18,56v15,9,8,44,-14,40",w:275,k:{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00d6":4,"\u00c7":4,u:6,O:4,C:4,"-":7}},Y:{d:"127,-215v0,19,-25,14,-12,39r20,38v8,-16,22,-36,27,-53v-2,-8,-17,-11,-16,-25v4,-47,65,-13,103,-26v28,-3,35,48,7,50v-20,-3,-27,-2,-35,16v-17,39,-53,62,-56,114v-2,22,18,15,33,14v12,0,20,12,20,24v1,38,-50,23,-82,22v0,0,-86,18,-86,-22v0,-26,21,-25,43,-22v17,-5,11,-38,1,-53r-54,-87v-10,-19,-48,8,-46,-27v2,-52,67,-15,109,-29v16,0,24,9,24,27",w:268,k:{"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c0":13,"\u00ab":27,"\u00c5":13,"\u00c4":13,o:21,i:5,g:21,e:21,a:18,A:13,";":9,":":11,".":22,"-":24,",":20}},Z:{d:"193,2v-70,-15,-177,27,-188,-25v-1,-8,8,-23,13,-30r115,-145v-30,3,-79,-15,-65,33v0,14,-13,26,-28,26v-39,-1,-22,-49,-26,-87v13,-37,98,-5,158,-15v26,-4,44,-2,44,24v0,8,-5,18,-14,29r-116,144r72,-1v16,-3,9,-25,9,-39v-1,-16,11,-27,27,-26v42,0,17,57,26,90v0,14,-9,22,-27,22",w:229},"[":{d:"140,25v31,-1,82,-16,82,21v0,45,-80,12,-133,23v-19,-1,-20,-9,-20,-33r0,-248v-4,-64,65,-20,127,-34v17,0,26,8,26,23v1,37,-51,22,-82,21v-11,1,-13,3,-13,16r0,195v0,12,2,17,13,16",w:229},"\\":{d:"10,-270r45,0r110,300r-46,0",w:180},"]":{d:"33,-246v55,13,127,-25,127,25r0,257v5,61,-66,20,-127,33v-17,0,-25,-8,-25,-23v-1,-37,51,-22,81,-21v12,0,13,-5,13,-16r0,-195v-3,-43,-91,18,-94,-37v0,-15,8,-23,25,-23",w:229},"^":{d:"90,-204r-40,84r-48,0r57,-122r62,0r58,122r-49,0",w:180},_:{d:"0,59r0,-42r180,0r0,42r-180,0",w:180},"`":{d:"107,-238v25,5,24,36,3,41v-23,-6,-75,-17,-78,-41v4,-44,56,-14,75,0",w:177},a:{d:"210,-21v-1,36,-70,35,-78,3v-35,39,-122,31,-122,-31v0,-56,66,-50,100,-66v19,-9,6,-39,-15,-37v-11,0,-13,4,-12,14v1,14,-15,25,-29,24v-18,0,-33,-12,-33,-30v1,-33,38,-42,77,-42v50,1,78,11,78,60r0,75v-1,12,6,12,14,10v11,0,20,9,20,20xm120,-79v-1,2,-57,10,-52,25v0,11,6,16,19,16v24,0,35,-14,33,-41",w:209,k:{w:8,v:9,j:-10}},b:{d:"-7,-218v-1,-38,49,-17,80,-24v7,0,11,4,11,12r0,68v50,-55,130,-6,123,69v10,84,-90,133,-139,70v3,16,-2,26,-19,26v-14,0,-21,-7,-21,-21r0,-164v0,-21,-4,-21,-18,-16v-12,0,-17,-7,-17,-20xm118,-140v-23,1,-34,25,-34,50v0,34,11,50,33,50v21,0,32,-16,32,-50v0,-34,-11,-50,-31,-50",w:216},c:{d:"179,-133v2,35,-60,46,-61,9v0,-4,1,-7,3,-11v-29,-17,-56,10,-54,43v1,27,13,48,38,50v27,2,23,-41,51,-39v15,1,28,11,27,27v0,34,-42,60,-80,60v-56,0,-93,-38,-93,-96v0,-59,37,-95,95,-96v37,0,72,20,74,53",w:190},d:{d:"10,-90v0,-75,74,-124,126,-72v1,-22,3,-49,-27,-37v-25,-6,-19,-45,9,-43v23,2,38,2,58,0v14,-1,16,7,16,20r0,163v-6,37,33,1,33,35v0,36,-40,20,-72,24v-12,1,-12,-14,-11,-26v-12,21,-31,32,-56,32v-47,0,-76,-45,-76,-96xm134,-90v0,-27,-11,-48,-35,-48v-42,0,-45,99,0,98v24,0,36,-24,35,-50",w:229},e:{d:"102,-186v49,0,83,32,83,81v0,19,-2,24,-18,25r-88,0v-8,0,-9,0,-10,7v0,19,15,36,34,36v18,0,35,-30,55,-29v13,0,24,9,24,22v-1,31,-41,50,-78,50v-57,0,-94,-37,-94,-95v0,-56,38,-97,92,-97xm128,-124v-1,-34,-55,-28,-57,1v6,11,34,3,49,5v6,0,8,-1,8,-6",w:196},f:{d:"169,-208v3,27,-48,36,-50,7v0,-5,6,-13,-5,-11v-15,0,-19,9,-17,24v3,16,44,-2,39,26v1,18,-12,23,-31,21v-5,0,-8,3,-8,9r0,85v6,17,41,-6,39,25v-3,42,-67,12,-108,23v-14,0,-22,-10,-22,-24v0,-19,17,-24,29,-17v13,-16,8,-75,4,-101v-18,1,-33,-1,-33,-19v0,-16,9,-21,26,-21v9,0,10,-2,10,-12v0,-61,120,-75,127,-15",w:144,k:{o:5,l:-19,f:-5,e:6}},g:{d:"186,-125v0,52,-69,76,-118,52v-14,21,6,29,38,26v51,-4,98,5,99,52v2,88,-200,95,-200,10v0,-19,12,-33,36,-40v-19,-4,-28,-15,-28,-33v1,-23,9,-28,28,-37v-39,-46,17,-102,77,-90v0,-25,18,-40,45,-39v35,-7,56,46,18,52v-14,2,-12,-14,-23,-16v-6,-1,-7,6,-7,14v23,8,35,25,35,49xm130,-125v0,-13,-10,-23,-23,-23v-14,0,-23,9,-23,23v0,13,9,24,23,24v14,0,23,-12,23,-24xm147,10v1,-21,-46,-14,-69,-16v-11,4,-16,9,-16,16v0,13,14,19,42,19v29,0,43,-6,43,-19",w:203,k:{r:-5,l:-6}},h:{d:"124,-21v0,-24,24,-12,23,-32v-2,-32,10,-85,-23,-85v-35,0,-31,48,-31,85v0,21,24,7,22,31v-3,42,-54,13,-91,23v-13,0,-21,-10,-21,-23v0,-20,14,-24,29,-18v4,0,6,-7,6,-20r0,-120v0,-22,-3,-23,-18,-18v-12,0,-17,-7,-17,-20v0,-38,50,-17,81,-24v6,0,9,4,9,12r0,66v34,-38,120,-28,109,43r0,62v-5,35,35,2,34,35v-2,44,-54,15,-92,25v-12,0,-20,-9,-20,-22"},i:{d:"6,-157v0,-39,51,-15,81,-24v7,0,10,5,10,14r0,108v-5,36,35,2,33,36v-3,45,-61,13,-102,24v-13,0,-23,-9,-22,-23v0,-19,11,-25,29,-18v13,-10,7,-56,7,-79v0,-23,-3,-21,-19,-18v-12,0,-17,-7,-17,-20xm99,-228v0,18,-14,33,-33,33v-19,0,-33,-15,-33,-33v0,-18,15,-32,33,-32v18,0,33,14,33,32",w:131,k:{j:-7}},j:{d:"-44,36v-3,-33,56,-43,57,-8v0,5,-4,11,4,10v22,-3,22,-21,22,-50r0,-107v6,-41,-35,0,-35,-38v0,-41,49,-14,80,-24v7,0,10,5,10,14r0,165v3,53,-31,77,-77,77v-31,0,-58,-12,-61,-39xm95,-228v0,18,-14,33,-32,33v-19,0,-33,-14,-33,-33v0,-18,15,-32,33,-32v18,0,32,14,32,32",w:118},k:{d:"3,-218v-1,-39,50,-17,79,-24v8,0,11,4,11,13r0,123v10,-13,50,-30,26,-46v-10,-10,-4,-34,14,-29v36,9,102,-19,104,22v2,34,-32,8,-48,26v-8,8,-33,17,-20,31v18,18,26,69,60,60v11,0,16,7,16,21v-1,39,-53,13,-88,22v-34,-3,-1,-38,-19,-54v-10,-9,-17,-39,-32,-19v-10,2,-20,27,-7,33v14,-3,28,-4,27,15v-2,47,-60,14,-102,25v-13,0,-21,-10,-21,-23v-1,-20,13,-25,29,-18v4,0,6,-7,6,-20r0,-120v0,-22,-3,-23,-18,-18v-12,0,-17,-7,-17,-20",w:242,k:{s:-6,g:-4,"-":8}},l:{d:"3,-218v-1,-38,50,-17,80,-24v7,0,10,4,10,13r0,170v-5,35,34,3,34,36v0,45,-59,13,-103,24v-13,0,-21,-10,-21,-24v0,-19,15,-23,29,-17v4,0,6,-7,6,-20r0,-120v0,-22,-3,-23,-18,-18v-12,0,-17,-7,-17,-20",w:131,k:{v:9}},m:{d:"5,-157v-1,-35,41,-19,70,-24v12,-2,10,15,10,27v30,-38,78,-46,105,-5v38,-43,133,-35,124,45v2,22,-6,63,6,74v14,-4,27,-1,27,17v0,41,-56,15,-91,24v-12,0,-20,-9,-20,-23v0,-25,26,-9,22,-39v-5,-31,11,-77,-23,-77v-31,0,-31,41,-31,77v0,26,18,16,18,38v0,39,-42,17,-72,24v-12,0,-18,-7,-18,-22v0,-23,21,-12,18,-40v-4,-30,10,-77,-22,-77v-36,0,-33,49,-32,87v1,17,25,7,23,29v-3,42,-55,13,-92,23v-14,0,-22,-9,-22,-23v0,-20,17,-24,30,-18v12,-11,5,-56,6,-79v1,-23,-4,-21,-18,-18v-12,0,-18,-7,-18,-20",w:347,k:{p:6}},n:{d:"5,-157v0,-35,41,-19,70,-24v12,-2,10,15,10,27v38,-53,132,-41,123,41v4,23,-13,81,18,71v11,0,16,7,16,19v-1,43,-55,14,-92,24v-14,0,-21,-7,-21,-22v0,-24,22,-14,25,-29v-3,-34,11,-88,-24,-88v-34,0,-36,36,-34,73v-6,34,25,15,23,44v-1,40,-55,12,-91,22v-15,0,-23,-8,-23,-24v0,-19,17,-23,30,-17v12,-11,5,-56,6,-79v1,-23,-4,-21,-18,-18v-12,0,-18,-7,-18,-20",w:242,k:{p:6}},o:{d:"194,-92v0,60,-32,98,-91,98v-60,1,-93,-36,-93,-96v-1,-59,33,-96,92,-96v58,0,92,37,92,94xm67,-90v0,29,10,51,35,52v22,0,34,-17,34,-52v0,-35,-11,-52,-34,-52v-25,1,-35,24,-35,52",w:203},p:{d:"-2,-157v-1,-35,42,-19,72,-24v10,-2,9,13,9,24v45,-61,138,-17,128,64v8,74,-66,126,-118,78v0,21,-6,48,26,37v11,0,16,7,16,19v1,34,-47,17,-74,18v-25,2,-59,10,-59,-20v0,-19,17,-25,29,-18v4,0,6,-7,6,-21r0,-119v0,-22,-3,-22,-18,-18v-12,0,-17,-7,-17,-20xm118,-42v41,0,43,-97,1,-98v-41,0,-41,97,-1,98",w:216},q:{d:"10,-90v-10,-80,76,-128,124,-71v-2,-18,4,-24,25,-24v18,0,27,6,27,18r0,170v-3,33,36,0,34,34v-3,48,-69,11,-113,25v-13,0,-19,-7,-19,-21v0,-26,28,-13,42,-22v2,-8,1,-26,1,-37v-48,53,-130,1,-121,-72xm130,-91v0,-26,-9,-49,-31,-49v-44,0,-42,97,-1,98v23,0,32,-23,32,-49",w:209,k:{u:4}},r:{d:"5,-157v-1,-34,40,-18,68,-24v18,0,9,26,11,42v4,-59,99,-62,103,-3v2,36,-52,47,-55,12v-2,-2,7,-12,3,-14v-36,0,-39,47,-39,86v0,23,9,19,25,16v10,-1,19,10,19,19v-4,43,-71,14,-112,24v-15,0,-23,-8,-23,-24v0,-19,17,-23,30,-17v12,-11,5,-56,6,-79v1,-23,-4,-21,-18,-18v-12,0,-18,-7,-18,-20",w:183,k:{y:-12,x:-8,w:-11,u:-9,t:-9,r:-6,n:-6,m:-6,g:5,f:-6,".":21,",":19}},s:{d:"40,-81v-47,-29,-16,-105,41,-105v18,0,34,5,47,15v1,-10,8,-15,20,-15v30,0,16,27,16,51v0,13,-6,19,-19,19v-21,1,-31,-35,-54,-31v-20,-2,-29,19,-14,25v33,13,99,11,99,64v0,62,-88,83,-132,44v0,12,-6,18,-18,18v-31,1,-13,-31,-19,-58v0,-11,7,-16,20,-16v33,0,27,41,65,35v32,2,35,-26,5,-31v-17,-3,-47,-10,-57,-15",w:183},t:{d:"146,-161v0,43,-70,-10,-60,44v5,25,-11,75,13,77v25,2,-2,-51,31,-51v15,0,23,13,23,37v0,38,-25,60,-64,60v-69,0,-63,-71,-58,-135v2,-25,-36,-4,-30,-32v0,-13,7,-22,22,-20v27,-2,-9,-66,42,-54v25,-4,21,17,21,38v-7,36,60,-5,60,36",w:157},u:{d:"230,-23v0,38,-42,18,-71,24v-12,2,-10,-14,-10,-25v-34,46,-133,43,-119,-41r0,-56v6,-32,-30,-3,-30,-36v0,-40,46,-15,75,-24v7,0,10,5,10,15r1,96v1,19,8,28,22,28v34,0,33,-41,33,-79v0,-35,-33,1,-33,-35v0,-43,46,-15,77,-25v8,0,11,4,11,13r0,109v-5,35,34,3,34,36",w:229},v:{d:"113,-161v0,28,-35,13,-19,41r24,79r31,-93v-5,-9,-25,-7,-23,-27v4,-39,58,-8,92,-20v14,0,21,8,21,23v0,31,-29,10,-37,31r-38,100v-10,35,-32,26,-67,28v-11,0,-20,-8,-25,-22r-44,-114v-12,-4,-33,1,-31,-22v3,-44,60,-12,97,-24v13,0,19,6,19,20",k:{".":26,"-":10,",":24}},w:{d:"85,-126r16,77r23,-106v-3,-32,45,-28,64,-21v18,29,21,88,31,127r20,-85v-5,-11,-28,-4,-26,-26v4,-39,57,-9,91,-21v12,0,21,9,21,22v0,14,-10,25,-26,20v-6,1,-7,12,-11,23r-30,94v-7,35,-32,17,-61,23v-9,0,-15,-9,-19,-28r-18,-95r-28,118v-12,11,-38,-1,-57,5v-7,0,-13,-6,-16,-18r-29,-110v-4,-22,-36,1,-34,-31v3,-42,58,-11,93,-23v13,0,20,8,20,22v0,26,-29,10,-24,33",w:321,k:{g:6,".":21,"-":7,",":19}},x:{d:"0,-22v0,-31,40,-7,50,-37r24,-33v-17,-15,-23,-51,-54,-46v-10,1,-17,-8,-16,-19v1,-40,56,-14,89,-24v26,-1,24,28,11,38v1,10,12,23,17,31v5,-9,14,-18,17,-28v-15,-6,-19,-42,7,-41v31,9,83,-15,84,22v2,28,-32,12,-41,32r-24,33v17,15,23,55,52,51v11,-1,18,10,18,21v-1,40,-57,13,-90,23v-12,0,-22,-10,-22,-21v0,-14,25,-16,8,-33r-12,-16v-6,9,-16,20,-19,30v0,6,16,8,14,19v-6,37,-48,21,-91,21v-15,0,-22,-8,-22,-23",k:{"\u00e7":5,o:4,e:5,c:5}},y:{d:"110,-160v4,20,-33,11,-20,33r24,78v8,-29,22,-55,27,-87v-1,-12,-21,-5,-19,-24v4,-37,54,-11,86,-21v14,0,21,7,21,23v-1,15,-9,24,-26,20v-7,0,-12,16,-15,23v-34,70,-44,186,-138,190v-30,1,-58,-15,-58,-43v0,-18,13,-31,30,-31v16,1,27,12,24,32v18,11,35,-17,36,-29v-10,-38,-37,-93,-52,-131v-5,-11,-7,-13,-18,-9v-12,0,-18,-7,-18,-21v2,-41,61,-14,96,-24v13,0,20,7,20,21",w:222,k:{".":24,"-":9,",":22}},z:{d:"78,-1v-28,0,-70,11,-71,-20v0,-7,3,-14,9,-20r89,-97v-19,2,-59,-9,-48,18v0,12,-11,21,-23,21v-31,1,-17,-38,-21,-67v5,-29,56,-9,91,-14v31,2,78,-12,78,24v0,12,-8,22,-15,29r-80,86v23,-4,63,11,53,-25v0,-13,8,-20,22,-20v33,-2,15,48,21,73v-4,29,-71,12,-105,12",w:196},"{":{d:"145,-201v-24,0,-36,-1,-36,21v0,39,8,82,-21,94v29,11,19,56,21,94v0,22,12,20,36,20r0,41v-48,4,-82,0,-82,-51v0,-33,9,-81,-20,-86r0,-40v32,-4,20,-51,20,-83v0,-50,34,-55,82,-51r0,41",w:180},"|":{d:"67,90r0,-360r46,0r0,360r-46,0",w:180},"}":{d:"43,28v23,0,36,2,36,-20v0,-39,-8,-82,21,-94v-27,-13,-20,-55,-21,-94v0,-23,-12,-21,-36,-21r0,-41v48,-4,83,1,83,51v0,32,-11,83,19,87r0,39v-31,6,-19,51,-19,83v0,50,-35,55,-83,51r0,-41",w:180},"~":{d:"150,-206v-6,2,-58,-18,-66,-18v-17,2,-17,8,-26,22r-26,-17v14,-27,21,-49,55,-50v26,-1,79,41,94,0r27,15v-14,28,-22,46,-58,48",w:240},"\u00c4":{d:"111,2v-35,-15,-111,21,-114,-25v-2,-42,44,-5,49,-45r49,-142v14,-30,13,-35,55,-34v38,1,42,-2,51,25r46,153v3,35,45,2,44,42v-2,48,-72,11,-114,26v-23,3,-33,-47,-9,-47v8,0,18,3,18,-7v0,-31,-35,-22,-62,-23v-14,0,-21,9,-21,25v5,14,34,-5,31,26v-2,14,-9,26,-23,26xm145,-289v0,17,-15,31,-31,31v-16,0,-31,-15,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31xm220,-289v0,38,-63,41,-63,0v0,-17,14,-32,32,-31v16,0,31,15,31,31xm167,-125r-18,-78r-23,79v3,7,37,7,41,-1",w:288,k:{"\u00d9":17,"\u00db":17,"\u00da":17,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":-14,"\u00c2":-14,"\u00d5":4,"\u00c3":-14,"\u00c0":-14,"\u00ab":11,"\u00dc":17,"\u00d6":4,"\u00c7":4,"\u00c5":-14,"\u00c4":-14,w:14,v:18,u:5,t:5,g:-5,a:-4,Y:13,W:23,V:26,U:17,T:5,Q:4,O:4,C:4,A:-14,"-":5}},"\u00c5":{d:"111,2v-35,-15,-111,21,-114,-25v-2,-42,44,-5,49,-45r49,-142v14,-30,13,-35,55,-34v38,1,42,-2,51,25r46,153v3,35,45,2,44,42v-2,48,-72,11,-114,26v-23,3,-33,-47,-9,-47v8,0,18,3,18,-7v0,-31,-35,-22,-62,-23v-14,0,-21,9,-21,25v5,14,34,-5,31,26v-2,14,-9,26,-23,26xm194,-298v1,24,-21,43,-44,43v-24,0,-42,-19,-42,-43v0,-24,19,-43,43,-43v24,0,42,20,43,43xm167,-125r-18,-78r-23,79v3,7,37,7,41,-1xm168,-298v0,-10,-7,-18,-17,-18v-11,-1,-18,9,-18,18v0,11,7,18,18,18v10,0,17,-8,17,-18",w:288,k:{"\u00d9":17,"\u00db":17,"\u00da":17,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":-14,"\u00c2":-14,"\u00d5":4,"\u00c3":-14,"\u00c0":-14,"\u00ab":11,"\u00dc":17,"\u00d6":4,"\u00c7":4,"\u00c5":-14,"\u00c4":-14,w:14,v:18,u:5,t:5,g:-5,a:-4,Y:13,W:23,V:26,U:17,T:5,Q:4,O:4,C:4,A:-14,"-":5}},"\u00c7":{d:"11,-118v-7,-100,91,-168,162,-103v-1,-16,5,-24,21,-24v39,1,13,54,23,85v0,15,-12,25,-29,25v-23,0,-29,-12,-27,-34v1,-18,-18,-27,-35,-27v-32,0,-48,25,-48,76v0,46,9,75,49,76v25,1,38,-12,35,-40v-2,-14,11,-24,27,-24v20,0,32,15,32,37v0,45,-42,78,-88,77r-7,15v26,-8,55,-1,55,27v0,61,-111,68,-126,18v11,-42,70,31,86,-12v-4,-21,-71,5,-49,-38r8,-11v-60,-12,-84,-56,-89,-123",w:229},"\u00c9":{d:"220,-133v-29,0,-29,-30,-23,-53v-2,-17,-39,-7,-59,-10v-26,-4,-22,16,-22,37v0,8,1,12,10,12v30,0,3,-40,33,-37v36,3,9,61,20,95v0,14,-7,22,-20,22v-30,0,-3,-38,-32,-38v-16,0,-10,24,-11,39v-2,25,20,20,42,21v36,2,45,-9,40,-41v-3,-18,10,-29,28,-29v45,1,15,63,26,100v0,11,-7,17,-21,17r-169,-3v-26,5,-56,5,-56,-23v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-20,-11,-20,-23v1,-47,69,-22,106,-23r114,-4v38,2,10,52,21,84v1,15,-12,25,-27,25xm163,-276v-21,7,-68,37,-71,-3v9,-25,47,-35,73,-44v13,-1,21,12,21,25v0,9,-7,16,-23,22",w:268},"\u00d1":{d:"6,-215v6,-49,72,-12,121,-27v15,2,16,9,23,25r63,154r0,-107v0,-26,-7,-26,-24,-22v-30,-5,-19,-53,7,-50v28,3,67,3,92,0v29,-4,36,50,6,50v-17,-4,-27,-2,-27,22r0,147v-1,35,-33,23,-67,23v-18,0,-17,-6,-24,-21r-69,-158r0,109v0,26,7,26,24,22v26,4,24,54,-7,50v-30,-4,-60,0,-91,0v-18,0,-27,-8,-27,-26v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-21,-11,-20,-23xm130,-318v18,0,59,29,76,5v12,-7,27,-1,25,15v-6,43,-64,43,-100,23v-12,0,-20,13,-30,14v-9,0,-17,-9,-17,-18v0,-20,24,-39,46,-39",w:314,k:{"\u00d2":6,"\u00d4":6,"\u00d3":6,"\u00c1":12,"\u00c2":12,"\u00d5":6,"\u00c3":12,"\u00c0":12,"\u00d6":6,"\u00c7":5,"\u00c5":12,"\u00c4":12,u:6,o:13,e:14,a:13,O:6,G:6,C:5,A:12}},"\u00d6":{d:"238,-122v0,78,-39,128,-113,128v-75,0,-114,-49,-114,-127v0,-75,40,-126,111,-126v74,-1,116,49,116,125xm125,-289v0,16,-15,31,-31,31v-17,0,-32,-14,-32,-31v0,-17,14,-31,32,-31v17,0,31,14,31,31xm199,-289v0,16,-16,31,-31,31v-17,0,-32,-14,-32,-31v0,-16,15,-32,32,-31v16,0,31,14,31,31xm171,-118v-1,-46,-6,-78,-46,-78v-31,0,-47,25,-47,76v0,45,8,75,47,76v31,0,46,-25,46,-74",w:249,k:{X:4,W:4}},"\u00dc":{d:"299,-215v0,21,-17,26,-36,21v-18,5,-7,52,-10,79v8,95,-29,121,-105,121v-80,0,-108,-37,-98,-127v-3,-28,15,-85,-26,-71v-12,0,-21,-10,-20,-23v5,-48,75,-16,117,-27v24,-6,32,47,9,49v-13,-5,-18,4,-16,19v5,50,-19,128,37,128v59,0,33,-77,39,-128v4,-36,-35,-4,-31,-41v4,-48,72,-14,113,-27v15,0,27,11,27,27xm146,-289v0,17,-14,31,-31,31v-15,0,-32,-15,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31xm220,-289v0,16,-15,31,-31,31v-17,0,-31,-14,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31",w:301,k:{"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c5":17,"\u00c4":17,p:6,n:8,m:8,A:17,".":21,",":19}},"\u00e1":{d:"210,-21v-1,36,-70,35,-78,3v-35,39,-122,31,-122,-31v0,-56,66,-50,100,-66v19,-9,6,-39,-15,-37v-11,0,-13,4,-12,14v1,14,-15,25,-29,24v-18,0,-33,-12,-33,-30v1,-33,38,-42,77,-42v50,1,78,11,78,60r0,75v-1,12,6,12,14,10v11,0,20,9,20,20xm129,-215v-22,5,-67,38,-71,-3v10,-24,46,-36,72,-44v27,2,32,40,-1,47xm120,-79v-1,2,-57,10,-52,25v0,11,6,16,19,16v24,0,35,-14,33,-41",w:209},"\u00e0":{d:"210,-21v-1,36,-70,35,-78,3v-35,39,-122,31,-122,-31v0,-56,66,-50,100,-66v19,-9,6,-39,-15,-37v-11,0,-13,4,-12,14v1,14,-15,25,-29,24v-18,0,-33,-12,-33,-30v1,-33,38,-42,77,-42v50,1,78,11,78,60r0,75v-1,12,6,12,14,10v11,0,20,9,20,20xm124,-238v25,5,25,37,3,41v-23,-6,-75,-18,-78,-41v5,-43,55,-14,75,0xm120,-79v-1,2,-57,10,-52,25v0,11,6,16,19,16v24,0,35,-14,33,-41",w:209},"\u00e2":{d:"210,-21v-1,36,-70,35,-78,3v-35,39,-122,31,-122,-31v0,-56,66,-50,100,-66v19,-9,6,-39,-15,-37v-11,0,-13,4,-12,14v1,14,-15,25,-29,24v-18,0,-33,-12,-33,-30v1,-33,38,-42,77,-42v50,1,78,11,78,60r0,75v-1,12,6,12,14,10v11,0,20,9,20,20xm173,-217v-3,37,-50,6,-71,0v-18,6,-41,18,-60,20v-12,2,-19,-20,-10,-29v28,-15,64,-51,101,-23v11,9,41,18,40,32xm120,-79v-1,2,-57,10,-52,25v0,11,6,16,19,16v24,0,35,-14,33,-41",w:209},"\u00e4":{d:"210,-21v-1,36,-70,35,-78,3v-35,39,-122,31,-122,-31v0,-56,66,-50,100,-66v19,-9,6,-39,-15,-37v-11,0,-13,4,-12,14v1,14,-15,25,-29,24v-18,0,-33,-12,-33,-30v1,-33,38,-42,77,-42v50,1,78,11,78,60r0,75v-1,12,6,12,14,10v11,0,20,9,20,20xm94,-229v0,17,-14,31,-31,31v-16,1,-31,-15,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31xm168,-229v0,16,-14,31,-31,31v-17,0,-31,-14,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31xm120,-79v-1,2,-57,10,-52,25v0,11,6,16,19,16v24,0,35,-14,33,-41",w:209},"\u00e3":{d:"210,-21v-1,36,-70,35,-78,3v-35,39,-122,31,-122,-31v0,-56,66,-50,100,-66v19,-9,6,-39,-15,-37v-11,0,-13,4,-12,14v1,14,-15,25,-29,24v-18,0,-33,-12,-33,-30v1,-33,38,-42,77,-42v50,1,78,11,78,60r0,75v-1,12,6,12,14,10v11,0,20,9,20,20xm73,-257v17,0,59,28,76,4v12,-5,25,-1,25,15v0,20,-27,38,-49,38v-17,0,-53,-28,-70,-5v-13,10,-28,0,-28,-14v0,-20,23,-38,46,-38xm120,-79v-1,2,-57,10,-52,25v0,11,6,16,19,16v24,0,35,-14,33,-41",w:209},"\u00e5":{d:"210,-21v-1,36,-70,35,-78,3v-35,39,-122,31,-122,-31v0,-56,66,-50,100,-66v19,-9,6,-39,-15,-37v-11,0,-13,4,-12,14v1,14,-15,25,-29,24v-18,0,-33,-12,-33,-30v1,-33,38,-42,77,-42v50,1,78,11,78,60r0,75v-1,12,6,12,14,10v11,0,20,9,20,20xm142,-237v0,23,-21,43,-43,43v-23,0,-43,-19,-43,-43v0,-23,19,-43,43,-43v23,0,43,20,43,43xm120,-79v-1,2,-57,10,-52,25v0,11,6,16,19,16v24,0,35,-14,33,-41xm99,-219v22,-1,23,-36,0,-37v-9,0,-18,9,-18,19v0,9,9,18,18,18",w:209},"\u00e7":{d:"179,-133v2,35,-60,46,-61,9v0,-4,1,-7,3,-11v-29,-17,-56,10,-54,43v1,27,13,48,38,50v27,2,23,-41,51,-39v37,2,31,49,6,67v-15,11,-32,18,-53,19r-8,18v27,-7,49,6,50,29v3,47,-97,58,-109,17v4,-32,62,14,72,-15v1,-23,-68,9,-49,-32r11,-19v-44,-11,-65,-43,-66,-93v-2,-57,37,-96,95,-96v37,0,72,20,74,53",w:190},"\u00e9":{d:"102,-186v49,0,83,32,83,81v0,19,-2,24,-18,25r-88,0v-8,0,-9,0,-10,7v0,19,15,36,34,36v18,0,35,-30,55,-29v13,0,24,9,24,22v-1,31,-41,50,-78,50v-57,0,-94,-37,-94,-95v0,-56,38,-97,92,-97xm124,-215v-22,7,-66,36,-71,-3v10,-24,46,-36,73,-44v12,0,22,12,22,24v0,9,-8,18,-24,23xm128,-124v-1,-34,-55,-28,-57,1v6,11,34,3,49,5v6,0,8,-1,8,-6",w:196},"\u00e8":{d:"102,-186v49,0,83,32,83,81v0,19,-2,24,-18,25r-88,0v-8,0,-9,0,-10,7v0,19,15,36,34,36v18,0,35,-30,55,-29v13,0,24,9,24,22v-1,31,-41,50,-78,50v-57,0,-94,-37,-94,-95v0,-56,38,-97,92,-97xm123,-238v25,5,25,36,4,41v-23,-6,-75,-17,-78,-41v4,-43,55,-14,74,0xm128,-124v-1,-34,-55,-28,-57,1v6,11,34,3,49,5v6,0,8,-1,8,-6",w:196},"\u00ea":{d:"102,-186v49,0,83,32,83,81v0,19,-2,24,-18,25r-88,0v-8,0,-9,0,-10,7v0,19,15,36,34,36v18,0,35,-30,55,-29v13,0,24,9,24,22v-1,31,-41,50,-78,50v-57,0,-94,-37,-94,-95v0,-56,38,-97,92,-97xm172,-217v-3,38,-50,5,-71,0v-23,5,-68,40,-74,1v6,-24,55,-38,75,-44v18,3,65,24,70,43xm128,-124v-1,-34,-55,-28,-57,1v6,11,34,3,49,5v6,0,8,-1,8,-6",w:196},"\u00eb":{d:"102,-186v49,0,83,32,83,81v0,19,-2,24,-18,25r-88,0v-8,0,-9,0,-10,7v0,19,15,36,34,36v18,0,35,-30,55,-29v13,0,24,9,24,22v-1,31,-41,50,-78,50v-57,0,-94,-37,-94,-95v0,-56,38,-97,92,-97xm96,-229v0,17,-14,31,-31,31v-17,0,-31,-15,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31xm170,-229v0,16,-14,31,-31,31v-17,0,-31,-14,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31xm128,-124v-1,-34,-55,-28,-57,1v6,11,34,3,49,5v6,0,8,-1,8,-6",w:196},"\u00ed":{d:"89,-215v-22,7,-66,37,-71,-3v11,-24,46,-36,73,-44v12,0,22,12,22,24v0,9,-8,18,-24,23xm5,-157v0,-39,51,-15,82,-24v7,0,11,5,11,14r0,108v-6,37,35,1,33,36v-3,45,-62,13,-104,24v-14,0,-22,-9,-22,-23v0,-20,17,-24,30,-18v12,-11,5,-56,6,-79v1,-23,-4,-21,-18,-18v-12,0,-18,-7,-18,-20",w:131},"\u00ec":{d:"6,-157v0,-39,51,-15,81,-24v7,0,10,5,10,14r0,108v-5,36,35,2,33,36v-3,45,-61,13,-102,24v-13,0,-23,-9,-22,-23v0,-19,11,-25,29,-18v13,-10,7,-56,7,-79v0,-23,-3,-21,-19,-18v-12,0,-17,-7,-17,-20xm91,-238v25,5,25,37,3,41v-23,-6,-75,-18,-78,-41v5,-43,56,-15,75,0",w:131},"\u00ee":{d:"6,-157v0,-39,51,-15,81,-24v7,0,10,5,10,14r0,108v-5,36,35,2,33,36v-3,45,-61,13,-102,24v-13,0,-23,-9,-22,-23v0,-19,11,-25,29,-18v13,-10,7,-56,7,-79v0,-23,-3,-21,-19,-18v-12,0,-17,-7,-17,-20xm111,-236v20,9,19,33,2,38v-17,-3,-33,-14,-48,-19v-20,5,-60,39,-64,1v13,-22,60,-63,90,-33",w:131},"\u00ef":{d:"6,-157v0,-39,51,-15,81,-24v7,0,10,5,10,14r0,108v-5,36,35,2,33,36v-3,45,-61,13,-102,24v-13,0,-23,-9,-22,-23v0,-19,11,-25,29,-18v13,-10,7,-56,7,-79v0,-23,-3,-21,-19,-18v-12,0,-17,-7,-17,-20xm58,-229v0,16,-15,31,-31,31v-18,1,-32,-14,-32,-31v0,-16,15,-32,31,-31v17,0,32,14,32,31xm132,-229v0,17,-14,32,-32,31v-16,0,-31,-15,-31,-31v0,-15,15,-32,31,-31v18,0,32,13,32,31",w:131},"\u00f1":{d:"5,-157v0,-35,41,-19,70,-24v12,-2,10,15,10,27v38,-53,132,-41,123,41v4,23,-13,81,18,71v11,0,16,7,16,19v-1,43,-55,14,-92,24v-14,0,-21,-7,-21,-22v0,-24,22,-14,25,-29v-3,-34,11,-88,-24,-88v-34,0,-36,36,-34,73v-6,34,25,15,23,44v-1,40,-55,12,-91,22v-15,0,-23,-8,-23,-24v0,-19,17,-23,30,-17v12,-11,5,-56,6,-79v1,-23,-4,-21,-18,-18v-12,0,-18,-7,-18,-20xm50,-219v2,-34,48,-48,82,-28v22,13,31,-4,49,-8v11,0,17,5,17,17v0,20,-27,38,-49,38v-17,0,-54,-28,-71,-5v-13,10,-28,0,-28,-14",w:242},"\u00f3":{d:"194,-92v0,60,-32,98,-91,98v-60,1,-93,-36,-93,-96v-1,-59,33,-96,92,-96v58,0,92,37,92,94xm125,-215v-22,7,-66,37,-71,-3v11,-24,46,-36,73,-44v12,0,22,12,22,24v0,9,-8,18,-24,23xm67,-90v0,29,10,51,35,52v22,0,34,-17,34,-52v0,-35,-11,-52,-34,-52v-25,1,-35,24,-35,52",w:203},"\u00f2":{d:"194,-92v0,60,-32,98,-91,98v-60,1,-93,-36,-93,-96v-1,-59,33,-96,92,-96v58,0,92,37,92,94xm125,-238v24,5,24,36,3,41v-24,-6,-75,-17,-78,-41v4,-44,56,-14,75,0xm67,-90v0,29,10,51,35,52v22,0,34,-17,34,-52v0,-35,-11,-52,-34,-52v-25,1,-35,24,-35,52",w:203},"\u00f4":{d:"194,-92v0,60,-32,98,-91,98v-60,1,-93,-36,-93,-96v-1,-59,33,-96,92,-96v58,0,92,37,92,94xm174,-217v-2,38,-50,5,-71,0v-18,6,-40,17,-59,20v-13,2,-20,-19,-11,-29v28,-15,64,-51,101,-23v11,9,41,18,40,32xm67,-90v0,29,10,51,35,52v22,0,34,-17,34,-52v0,-35,-11,-52,-34,-52v-25,1,-35,24,-35,52",w:203},"\u00f6":{d:"194,-92v0,60,-32,98,-91,98v-60,1,-93,-36,-93,-96v-1,-59,33,-96,92,-96v58,0,92,37,92,94xm96,-229v0,17,-15,31,-31,31v-17,1,-32,-15,-32,-31v0,-15,15,-32,31,-31v18,0,32,13,32,31xm170,-229v0,16,-14,31,-31,31v-16,0,-31,-14,-31,-31v0,-16,15,-31,31,-31v17,0,31,14,31,31xm67,-90v0,29,10,51,35,52v22,0,34,-17,34,-52v0,-35,-11,-52,-34,-52v-25,1,-35,24,-35,52",w:203},"\u00f5":{d:"194,-92v0,60,-32,98,-91,98v-60,1,-93,-36,-93,-96v-1,-59,33,-96,92,-96v58,0,92,37,92,94xm70,-257v17,0,59,28,75,4v11,-5,26,0,26,15v0,20,-27,38,-49,38v-17,0,-54,-28,-71,-5v-13,10,-28,0,-28,-14v0,-21,24,-38,47,-38xm67,-90v0,29,10,51,35,52v22,0,34,-17,34,-52v0,-35,-11,-52,-34,-52v-25,1,-35,24,-35,52",w:203},"\u00fa":{d:"230,-23v0,38,-42,18,-71,24v-12,2,-10,-14,-10,-25v-34,46,-133,43,-119,-41r0,-56v6,-32,-30,-3,-30,-36v0,-40,46,-15,75,-24v7,0,10,5,10,15r1,96v1,19,8,28,22,28v34,0,33,-41,33,-79v0,-35,-33,1,-33,-35v0,-43,46,-15,77,-25v8,0,11,4,11,13r0,109v-5,35,34,3,34,36xm134,-215v-22,5,-66,38,-71,-3v10,-24,46,-36,72,-44v27,2,32,40,-1,47",w:229},"\u00f9":{d:"230,-23v0,38,-42,18,-71,24v-12,2,-10,-14,-10,-25v-34,46,-133,43,-119,-41r0,-56v6,-32,-30,-3,-30,-36v0,-40,46,-15,75,-24v7,0,10,5,10,15r1,96v1,19,8,28,22,28v34,0,33,-41,33,-79v0,-35,-33,1,-33,-35v0,-43,46,-15,77,-25v8,0,11,4,11,13r0,109v-5,35,34,3,34,36xm133,-238v25,5,25,37,3,41v-23,-6,-75,-18,-78,-41v5,-43,55,-14,75,0",w:229},"\u00fb":{d:"230,-23v0,38,-42,18,-71,24v-12,2,-10,-14,-10,-25v-34,46,-133,43,-119,-41r0,-56v6,-32,-30,-3,-30,-36v0,-40,46,-15,75,-24v7,0,10,5,10,15r1,96v1,19,8,28,22,28v34,0,33,-41,33,-79v0,-35,-33,1,-33,-35v0,-43,46,-15,77,-25v8,0,11,4,11,13r0,109v-5,35,34,3,34,36xm178,-217v-2,38,-50,5,-71,0v-18,6,-40,17,-59,20v-13,2,-20,-19,-11,-29v28,-15,64,-51,101,-23v11,9,41,18,40,32",w:229},"\u00fc":{d:"230,-23v0,38,-42,18,-71,24v-12,2,-10,-14,-10,-25v-34,46,-133,43,-119,-41r0,-56v6,-32,-30,-3,-30,-36v0,-40,46,-15,75,-24v7,0,10,5,10,15r1,96v1,19,8,28,22,28v34,0,33,-41,33,-79v0,-35,-33,1,-33,-35v0,-43,46,-15,77,-25v8,0,11,4,11,13r0,109v-5,35,34,3,34,36xm97,-229v0,17,-15,31,-31,31v-17,1,-31,-15,-31,-31v0,-16,15,-31,31,-31v17,0,31,14,31,31xm171,-229v0,16,-14,31,-31,31v-16,0,-31,-14,-31,-31v0,-16,15,-31,31,-31v17,0,31,14,31,31",w:229},"\u00b0":{d:"145,-183v0,29,-26,55,-55,55v-29,0,-55,-26,-55,-55v0,-29,26,-55,55,-55v29,0,55,26,55,55xm118,-183v0,-15,-12,-27,-28,-27v-16,0,-28,12,-28,27v0,16,12,27,28,27v16,0,28,-12,28,-27",w:180},"\u00a2":{d:"120,-242v19,-2,13,18,14,35v37,4,56,20,56,46v0,35,-51,44,-54,13v0,-3,1,-7,4,-11v-22,-19,-45,10,-45,35v0,21,12,40,31,40v22,0,19,-30,42,-30v17,0,26,7,26,22v-1,30,-29,50,-60,53v-1,16,6,37,-14,37v-20,0,-12,-20,-13,-38v-40,-5,-65,-37,-65,-83v0,-45,22,-76,65,-82v1,-17,-4,-41,13,-37"},"\u00a3":{d:"169,-198v-38,-14,-49,23,-23,55r61,-2v15,0,21,2,21,15v0,29,-43,9,-69,14v12,20,15,34,8,56v28,15,61,31,77,7v-1,-12,-14,-1,-21,-2v-11,-1,-20,-10,-20,-22v0,-18,15,-28,34,-28v28,-1,51,23,51,51v0,34,-32,60,-68,60v-16,0,-48,-12,-76,-26v-33,40,-144,36,-144,-25v0,-50,65,-64,112,-39v0,-8,-4,-19,-13,-33v-23,-1,-65,14,-66,-13v0,-23,30,-14,51,-13v-35,-54,12,-106,72,-104v36,0,67,18,70,51v3,37,-59,48,-59,9v0,-4,0,-7,2,-11xm52,-46v4,19,35,11,46,-1v-15,-10,-41,-17,-46,1",w:288},"\u00a7":{d:"92,6v16,11,47,9,49,-12v-22,-40,-111,-22,-108,-88v1,-24,11,-32,27,-47v-36,-47,2,-106,61,-106v35,0,72,20,72,51v1,17,-12,30,-29,30v-20,0,-35,-19,-22,-36v-19,-14,-57,4,-38,24v34,18,99,28,99,77v0,16,-9,30,-26,43v42,45,0,112,-62,112v-35,0,-73,-21,-75,-52v-2,-31,54,-43,56,-9v0,4,-1,9,-4,13xm150,-89v1,-17,-39,-27,-56,-33v-30,31,24,39,46,48v7,-3,10,-8,10,-15"},"\u00b6":{d:"10,-177v0,-88,121,-58,204,-63r0,36r-27,0r0,237r-39,0r0,-237r-30,0r0,237r-40,0r0,-149v-41,2,-68,-23,-68,-61",w:240},"\u00df":{d:"-1,-22v0,-18,14,-23,29,-18v14,-16,4,-70,7,-99v-20,1,-36,0,-36,-20v0,-22,18,-21,39,-20v2,-82,183,-92,188,-6v1,19,-14,35,-30,39v-14,4,-11,12,2,16v26,9,54,30,54,67v0,63,-73,92,-114,48v1,12,-3,18,-15,18v-32,0,-9,-43,-18,-68v0,-14,9,-21,26,-21v32,-2,11,46,45,46v12,0,21,-9,21,-21v-2,-39,-79,-30,-82,-68v-2,-29,50,-25,51,-51v0,-15,-16,-22,-33,-22v-29,0,-43,14,-43,44r0,140v0,35,-40,10,-69,19v-13,0,-22,-9,-22,-23",w:262},"\u00ae":{d:"18,-202v0,-39,33,-72,72,-72v39,0,72,33,72,72v0,39,-33,72,-72,72v-39,0,-72,-33,-72,-72xm27,-202v0,33,29,63,63,63v34,0,63,-30,63,-63v0,-33,-29,-62,-63,-62v-34,0,-63,29,-63,62xm61,-181v4,-9,9,-50,-6,-44v-4,0,-5,-3,-5,-8v4,-15,29,-4,49,-7v26,-4,32,31,7,35v16,1,13,14,17,24v6,0,10,0,10,7v0,12,-14,8,-24,8v-16,0,1,-35,-22,-31v-4,0,-4,4,-4,9v-2,14,14,1,13,14v-1,16,-23,3,-38,8v-6,0,-8,-3,-8,-8v-1,-8,4,-7,11,-7xm91,-226v-10,0,-8,5,-8,12v3,8,21,2,19,-5v0,-5,-4,-7,-11,-7",w:180},"\u00a9":{d:"10,-120v0,-68,58,-127,126,-127v68,0,126,59,126,127v0,68,-58,126,-126,126v-67,0,-126,-59,-126,-126xm37,-120v0,54,45,102,99,102v55,0,99,-48,99,-102v0,-54,-44,-102,-99,-102v-55,0,-99,48,-99,102xm69,-121v0,-60,60,-90,101,-59v0,-8,4,-12,13,-12v25,0,14,27,14,49v0,9,-6,14,-18,14v-15,1,-19,-8,-16,-20v-1,-9,-13,-15,-23,-15v-20,0,-29,15,-29,44v0,29,10,44,30,44v14,0,25,-6,22,-23v-1,-9,8,-15,17,-14v14,0,20,7,20,22v-1,29,-29,44,-61,44v-45,0,-70,-28,-70,-74",w:272},"\u00b4":{d:"127,-215v-23,6,-67,36,-72,-3v10,-24,47,-36,74,-44v26,3,30,39,-2,47",w:177},"\u00a8":{d:"82,-229v0,17,-15,31,-31,31v-17,1,-31,-15,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31xm157,-229v0,15,-15,32,-31,31v-17,0,-32,-14,-32,-31v0,-16,15,-32,32,-31v17,0,31,14,31,31",w:177},"\u00c6":{d:"172,-70v0,-14,7,-36,-11,-35v-27,2,-55,-6,-62,19v-5,9,-17,23,-18,33v0,6,11,5,17,4v11,0,17,9,17,25v0,48,-74,12,-115,26v-15,0,-24,-11,-24,-26v-2,-23,17,-29,33,-22v4,0,13,-13,27,-38v30,-51,55,-107,89,-154v84,-10,128,3,212,-4v39,-2,11,50,22,82v1,16,-12,27,-27,27v-29,2,-29,-30,-23,-53v0,-18,-28,-9,-49,-11v-29,-5,-27,15,-26,39v0,7,3,11,9,11v27,2,0,-42,31,-37v25,-1,16,25,16,47v-1,25,14,66,-16,69v-26,3,-8,-35,-29,-37v-18,-1,-9,23,-11,38v-3,26,19,21,42,23v37,3,39,-16,33,-43v0,-16,12,-28,28,-28v45,0,16,63,26,99v-17,39,-98,5,-154,14v-34,-2,-81,18,-80,-22v-1,-19,14,-28,33,-22v6,0,10,-8,10,-24xm171,-154v6,-22,0,-71,-19,-36r-21,39v0,11,20,6,30,7v7,0,10,-3,10,-10",w:380},"\u00d8":{d:"11,-118v0,-101,79,-153,168,-117v10,-11,14,-31,35,-30v23,1,31,5,21,18r-26,36v16,19,29,55,29,94v0,93,-85,150,-171,111v-11,11,-14,32,-36,32v-25,-1,-29,-5,-19,-20r25,-37v-18,-20,-26,-49,-26,-87xm77,-80r70,-112v-58,-27,-82,43,-70,112xm170,-162r-71,112v58,34,91,-44,71,-112",w:249},"\u00b1":{d:"3,-129r0,-43r64,0r0,-62r46,0r0,62r64,0r0,43r-66,0r0,63r-44,0r0,-63r-64,0xm3,-9r0,-43r174,0r0,43r-174,0",w:180},"\u00a5":{d:"272,-215v0,38,-44,5,-53,39r-14,22v17,2,44,-6,43,13v-1,24,-38,11,-59,14r-12,22v25,4,71,-12,74,14v0,9,-5,13,-14,13r-70,0v0,14,-2,34,11,32v22,-4,42,-2,42,22v0,38,-50,22,-82,22v-33,0,-85,17,-86,-22v-2,-26,21,-25,43,-22v12,2,10,-19,10,-32r-63,0v-12,1,-16,-3,-16,-13v1,-26,44,-10,67,-14r-12,-22v-20,-3,-55,9,-56,-13v-1,-20,24,-13,41,-14v-12,-16,-16,-48,-48,-38v-11,0,-17,-6,-17,-21v1,-52,65,-15,106,-29v15,0,25,12,25,27v2,19,-30,16,-14,39r19,44r27,-59v-2,-7,-19,-12,-18,-25v4,-46,64,-13,101,-26v15,0,25,12,25,27",w:275},"\u00b5":{d:"56,62r-46,0r0,-235r46,0v4,51,-17,140,35,140v49,0,31,-90,34,-140r46,0r0,173r-46,0r0,-20v-14,31,-54,32,-69,2r0,80",w:180},"\u03bc":{d:"56,62r-46,0r0,-235r46,0v4,51,-17,140,35,140v49,0,31,-90,34,-140r46,0r0,173r-46,0r0,-20v-14,31,-54,32,-69,2r0,80",w:180},"\u00aa":{d:"139,-155v-2,19,-42,18,-47,2v-21,19,-74,17,-74,-17v0,-32,40,-25,61,-35v11,-5,5,-22,-10,-20v-14,2,-2,23,-25,21v-10,-1,-20,-6,-20,-16v0,-15,16,-23,47,-23v49,0,51,27,48,72v0,13,22,-1,20,16xm17,-119r123,0r0,12r-123,0r0,-12xm85,-186v-4,5,-34,5,-32,13v8,17,36,9,32,-13",w:157},"\u00ba":{d:"135,-193v0,33,-21,52,-56,52v-35,0,-57,-18,-57,-51v0,-33,22,-51,56,-51v33,0,57,17,57,50xm23,-119r111,0r0,12r-111,0r0,-12xm79,-219v-14,0,-21,9,-21,27v0,18,7,28,21,28v13,0,20,-10,20,-28v0,-18,-7,-27,-20,-27",w:157},"\u00e6":{d:"287,-44v0,56,-124,69,-143,18v-26,46,-134,45,-134,-23v0,-56,66,-49,100,-66v19,-9,7,-39,-15,-37v-10,0,-12,4,-12,13v0,15,-12,25,-29,24v-19,0,-33,-10,-33,-29v0,-50,106,-56,128,-18v47,-49,148,-18,141,58v-2,17,-2,24,-16,24r-91,0v-6,0,-9,3,-9,8v0,19,13,35,33,35v24,0,34,-30,56,-29v13,0,25,9,24,22xm233,-126v-3,-29,-54,-28,-57,1v4,14,34,4,50,7v4,0,7,-3,7,-8xm119,-79v-13,8,-52,5,-52,25v0,11,7,16,21,16v22,1,35,-17,31,-41",w:301},"\u00f8":{d:"35,-19v-50,-53,-24,-167,65,-167v12,0,26,2,40,6v11,-11,10,-28,34,-28v17,0,21,6,14,15r-20,31v50,54,24,168,-66,168v-12,0,-25,-2,-40,-7v-5,17,-31,35,-50,20v4,-15,16,-26,23,-38xm69,-64r44,-77v-39,-18,-57,35,-44,77xm134,-117r-46,78v42,19,58,-35,46,-78",w:203},"\u00bf":{d:"85,-152v0,-17,16,-34,34,-34v17,0,34,17,34,34v0,17,-17,34,-34,34v-18,0,-34,-17,-34,-34xm72,-10v0,29,50,38,69,19v-25,-19,-3,-55,25,-54v22,1,38,16,37,40v0,45,-50,72,-100,72v-75,0,-125,-77,-71,-127v10,-10,38,-14,54,-22v4,-16,7,-25,36,-25v19,0,26,5,25,25v9,51,-75,33,-75,72",w:222},"\u00a1":{d:"45,-152v0,-17,17,-34,34,-34v18,0,34,17,34,34v0,18,-16,34,-34,34v-17,0,-34,-16,-34,-34xm55,-88v1,-18,13,-19,31,-18v10,0,16,6,17,18r11,130v0,16,-12,25,-36,25v-31,-1,-37,-12,-34,-39",w:157},"\u00ac":{d:"168,0r-47,0r0,-54r-109,0r0,-42r156,0r0,96",w:180},"\u00ab":{d:"74,-156v35,13,-10,48,-16,65v8,14,33,33,35,47v-4,21,-27,15,-40,0v-14,-16,-63,-38,-38,-62v16,-15,40,-43,59,-50xm160,-156v34,14,-9,48,-16,65v8,14,33,33,35,47v-4,21,-27,15,-40,0v-14,-16,-62,-39,-38,-62v16,-15,40,-43,59,-50",w:196},"\u00bb":{d:"145,-45v-16,17,-31,19,-37,0v0,-21,41,-40,24,-59v-8,-10,-29,-29,-28,-39v2,-21,27,-15,39,0v14,17,63,38,38,62xm36,-31v-41,-17,30,-52,10,-73v-8,-9,-29,-29,-28,-39v2,-22,28,-15,40,0v14,17,62,38,37,62v-17,14,-38,45,-59,50",w:196,k:{"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c0":12,"\u00c5":12,"\u00c4":12,Y:26,W:21,V:25,T:12,A:12}},"\u00a0":{w:90},"\u00c0":{d:"111,2v-35,-15,-111,21,-114,-25v-2,-42,44,-5,49,-45r49,-142v14,-30,13,-35,55,-34v38,1,42,-2,51,25r46,153v3,35,45,2,44,42v-2,48,-72,11,-114,26v-23,3,-33,-47,-9,-47v8,0,18,3,18,-7v0,-31,-35,-22,-62,-23v-14,0,-21,9,-21,25v5,14,34,-5,31,26v-2,14,-9,26,-23,26xm172,-299v24,5,25,35,3,41v-26,-5,-73,-18,-78,-40v1,-20,20,-30,41,-19xm167,-125r-18,-78r-23,79v3,7,37,7,41,-1",w:288,k:{"\u00d9":17,"\u00db":17,"\u00da":17,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":-14,"\u00c2":-14,"\u00d5":4,"\u00c3":-14,"\u00c0":-14,"\u00ab":11,"\u00dc":17,"\u00d6":4,"\u00c7":4,"\u00c5":-14,"\u00c4":-14,w:14,v:18,u:5,t:5,g:-5,a:-4,Y:13,W:23,V:26,U:17,T:5,Q:4,O:4,C:4,A:-14,"-":5}},"\u00c3":{d:"111,2v-35,-15,-111,21,-114,-25v-2,-42,44,-5,49,-45r49,-142v14,-30,13,-35,55,-34v38,1,42,-2,51,25r46,153v3,35,45,2,44,42v-2,48,-72,11,-114,26v-23,3,-33,-47,-9,-47v8,0,18,3,18,-7v0,-31,-35,-22,-62,-23v-14,0,-21,9,-21,25v5,14,34,-5,31,26v-2,14,-9,26,-23,26xm122,-318v18,0,59,29,76,5v12,-7,27,-1,25,15v-6,44,-64,42,-101,23v-11,0,-19,13,-29,14v-10,0,-18,-9,-18,-18v0,-21,25,-39,47,-39xm167,-125r-18,-78r-23,79v3,7,37,7,41,-1",w:288,k:{"\u00d9":17,"\u00db":17,"\u00da":17,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":-14,"\u00c2":-14,"\u00d5":4,"\u00c3":-14,"\u00c0":-14,"\u00ab":11,"\u00dc":17,"\u00d6":4,"\u00c7":4,"\u00c5":-14,"\u00c4":-14,w:14,v:18,u:5,t:5,g:-5,a:-4,Y:13,W:23,V:26,U:17,T:5,Q:4,O:4,C:4,A:-14,"-":5}},"\u00d5":{d:"238,-122v0,78,-39,128,-113,128v-75,0,-114,-49,-114,-127v0,-75,40,-126,111,-126v74,-1,116,49,116,125xm98,-318v17,0,58,29,75,5v12,-7,27,-1,25,15v-5,44,-64,42,-100,23v-12,0,-20,13,-30,14v-9,0,-17,-9,-17,-18v0,-21,25,-39,47,-39xm171,-118v-1,-46,-6,-78,-46,-78v-31,0,-47,25,-47,76v0,45,8,75,47,76v31,0,46,-25,46,-74",w:249,k:{X:4,W:4}},"\u00f7":{d:"90,-157v-14,0,-27,-13,-27,-27v0,-14,13,-26,27,-26v14,0,27,12,27,26v0,14,-13,27,-27,27xm90,-35v-15,0,-27,-12,-27,-26v0,-14,13,-27,27,-27v14,0,27,13,27,27v0,14,-12,26,-27,26xm12,-101r0,-43r156,0r0,43r-156,0",w:180},"\u00ff":{d:"110,-160v4,20,-33,11,-20,33r24,78v8,-29,22,-55,27,-87v-1,-12,-21,-5,-19,-24v4,-37,54,-11,86,-21v14,0,21,7,21,23v-1,15,-9,24,-26,20v-7,0,-12,16,-15,23v-34,70,-44,186,-138,190v-30,1,-58,-15,-58,-43v0,-18,13,-31,30,-31v16,1,27,12,24,32v18,11,35,-17,36,-29v-10,-38,-37,-93,-52,-131v-5,-11,-7,-13,-18,-9v-12,0,-18,-7,-18,-21v2,-41,61,-14,96,-24v13,0,20,7,20,21xm109,-229v0,17,-15,31,-31,31v-17,1,-31,-15,-31,-31v0,-16,15,-31,31,-31v17,0,31,14,31,31xm184,-229v0,16,-15,32,-32,31v-16,0,-31,-14,-31,-31v0,-16,15,-32,31,-31v17,0,32,14,32,31",w:222},"\u00b7":{d:"80,-127v0,21,-19,40,-40,40v-21,0,-40,-19,-40,-40v0,-21,18,-40,40,-40v22,0,40,19,40,40",w:79},"\u2219":{d:"80,-127v0,21,-19,40,-40,40v-21,0,-40,-19,-40,-40v0,-21,18,-40,40,-40v22,0,40,19,40,40",w:79},"\u00c2":{d:"111,2v-35,-15,-111,21,-114,-25v-2,-42,44,-5,49,-45r49,-142v14,-30,13,-35,55,-34v38,1,42,-2,51,25r46,153v3,35,45,2,44,42v-2,48,-72,11,-114,26v-23,3,-33,-47,-9,-47v8,0,18,3,18,-7v0,-31,-35,-22,-62,-23v-14,0,-21,9,-21,25v5,14,34,-5,31,26v-2,14,-9,26,-23,26xm204,-297v23,8,21,34,3,39v-19,-2,-40,-14,-57,-19v-18,6,-40,17,-59,19v-20,-4,-19,-31,4,-39v32,-12,53,-39,86,-12xm167,-125r-18,-78r-23,79v3,7,37,7,41,-1",w:288,k:{"\u00d9":17,"\u00db":17,"\u00da":17,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":-14,"\u00c2":-14,"\u00d5":4,"\u00c3":-14,"\u00c0":-14,"\u00ab":11,"\u00dc":17,"\u00d6":4,"\u00c7":4,"\u00c5":-14,"\u00c4":-14,w:14,v:18,u:5,t:5,g:-5,a:-4,Y:13,W:23,V:26,U:17,T:5,Q:4,O:4,C:4,A:-14,"-":5}},"\u00ca":{d:"220,-133v-29,0,-29,-30,-23,-53v-2,-17,-39,-7,-59,-10v-26,-4,-22,16,-22,37v0,8,1,12,10,12v30,0,3,-40,33,-37v36,3,9,61,20,95v0,14,-7,22,-20,22v-30,0,-3,-38,-32,-38v-16,0,-10,24,-11,39v-2,25,20,20,42,21v36,2,45,-9,40,-41v-3,-18,10,-29,28,-29v45,1,15,63,26,100v0,11,-7,17,-21,17r-169,-3v-26,5,-56,5,-56,-23v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-20,-11,-20,-23v1,-47,69,-22,106,-23r114,-4v38,2,10,52,21,84v1,15,-12,25,-27,25xm189,-297v24,7,22,33,3,39v-18,-2,-39,-14,-56,-19v-18,6,-40,17,-60,19v-20,-4,-18,-30,5,-39v32,-12,53,-39,86,-12",w:268},"\u00c1":{d:"111,2v-35,-15,-111,21,-114,-25v-2,-42,44,-5,49,-45r49,-142v14,-30,13,-35,55,-34v38,1,42,-2,51,25r46,153v3,35,45,2,44,42v-2,48,-72,11,-114,26v-23,3,-33,-47,-9,-47v8,0,18,3,18,-7v0,-31,-35,-22,-62,-23v-14,0,-21,9,-21,25v5,14,34,-5,31,26v-2,14,-9,26,-23,26xm172,-276v-21,7,-67,37,-70,-3v9,-24,48,-35,73,-44v13,-1,21,12,21,25v0,9,-8,16,-24,22xm167,-125r-18,-78r-23,79v3,7,37,7,41,-1",w:288,k:{"\u00d9":17,"\u00db":17,"\u00da":17,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":-14,"\u00c2":-14,"\u00d5":4,"\u00c3":-14,"\u00c0":-14,"\u00ab":11,"\u00dc":17,"\u00d6":4,"\u00c7":4,"\u00c5":-14,"\u00c4":-14,w:14,v:18,u:5,t:5,g:-5,a:-4,Y:13,W:23,V:26,U:17,T:5,Q:4,O:4,C:4,A:-14,"-":5}},"\u00cb":{d:"220,-133v-29,0,-29,-30,-23,-53v-2,-17,-39,-7,-59,-10v-26,-4,-22,16,-22,37v0,8,1,12,10,12v30,0,3,-40,33,-37v36,3,9,61,20,95v0,14,-7,22,-20,22v-30,0,-3,-38,-32,-38v-16,0,-10,24,-11,39v-2,25,20,20,42,21v36,2,45,-9,40,-41v-3,-18,10,-29,28,-29v45,1,15,63,26,100v0,11,-7,17,-21,17r-169,-3v-26,5,-56,5,-56,-23v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-20,-11,-20,-23v1,-47,69,-22,106,-23r114,-4v38,2,10,52,21,84v1,15,-12,25,-27,25xm128,-289v0,17,-15,31,-31,31v-16,0,-31,-15,-31,-31v0,-16,14,-31,31,-31v16,0,31,14,31,31xm202,-289v1,16,-16,31,-31,31v-17,0,-31,-14,-31,-31v-1,-16,15,-31,31,-31v17,0,31,14,31,31",w:268},"\u00c8":{d:"220,-133v-29,0,-29,-30,-23,-53v-2,-17,-39,-7,-59,-10v-26,-4,-22,16,-22,37v0,8,1,12,10,12v30,0,3,-40,33,-37v36,3,9,61,20,95v0,14,-7,22,-20,22v-30,0,-3,-38,-32,-38v-16,0,-10,24,-11,39v-2,25,20,20,42,21v36,2,45,-9,40,-41v-3,-18,10,-29,28,-29v45,1,15,63,26,100v0,11,-7,17,-21,17r-169,-3v-26,5,-56,5,-56,-23v0,-20,17,-28,37,-22v6,0,10,-8,10,-24r0,-100v0,-27,-9,-25,-27,-22v-12,2,-20,-11,-20,-23v1,-47,69,-22,106,-23r114,-4v38,2,10,52,21,84v1,15,-12,25,-27,25xm155,-299v24,5,25,35,3,41v-26,-5,-73,-17,-78,-40v1,-20,20,-30,41,-19",w:268},"\u00cd":{d:"6,-24v-1,-21,17,-28,37,-22v10,-2,9,-9,10,-24r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v1,-38,43,-23,78,-23v31,0,80,-18,80,23v0,20,-17,27,-37,21v-6,0,-10,8,-10,24r0,100v0,27,9,24,27,22v12,-1,20,12,20,24v0,35,-39,23,-70,22v-34,-1,-87,17,-88,-22xm109,-276v-21,7,-68,37,-71,-3v10,-23,47,-35,73,-44v13,-1,21,12,21,25v0,9,-7,16,-23,22",w:170},"\u00ce":{d:"6,-24v-1,-21,17,-28,37,-22v10,-2,9,-9,10,-24r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v1,-38,43,-23,78,-23v31,0,80,-18,80,23v0,20,-17,27,-37,21v-6,0,-10,8,-10,24r0,100v0,27,9,24,27,22v12,-1,20,12,20,24v0,35,-39,23,-70,22v-34,-1,-87,17,-88,-22xm140,-297v24,7,22,33,3,39v-18,-2,-39,-14,-56,-19v-18,6,-40,17,-60,19v-20,-4,-17,-31,5,-39v32,-12,53,-39,86,-12",w:170},"\u00cf":{d:"6,-24v-1,-21,17,-28,37,-22v10,-2,9,-9,10,-24r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v1,-38,43,-23,78,-23v31,0,80,-18,80,23v0,20,-17,27,-37,21v-6,0,-10,8,-10,24r0,100v0,27,9,24,27,22v12,-1,20,12,20,24v0,35,-39,23,-70,22v-34,-1,-87,17,-88,-22xm79,-289v0,17,-15,31,-31,31v-16,0,-31,-15,-31,-31v0,-16,14,-31,31,-31v17,0,31,14,31,31xm153,-289v0,16,-16,31,-31,31v-17,0,-31,-14,-31,-31v0,-16,14,-31,31,-31v16,0,31,14,31,31",w:170},"\u00cc":{d:"6,-24v-1,-21,17,-28,37,-22v10,-2,9,-9,10,-24r-1,-115v-1,-13,-15,-8,-26,-7v-12,1,-20,-11,-20,-23v1,-38,43,-23,78,-23v31,0,80,-18,80,23v0,20,-17,27,-37,21v-6,0,-10,8,-10,24r0,100v0,27,9,24,27,22v12,-1,20,12,20,24v0,35,-39,23,-70,22v-34,-1,-87,17,-88,-22xm113,-299v23,5,24,36,3,41v-26,-5,-73,-18,-78,-40v1,-21,21,-31,42,-19",w:170},"\u00d3":{d:"238,-122v0,78,-39,128,-113,128v-75,0,-114,-49,-114,-127v0,-75,40,-126,111,-126v74,-1,116,49,116,125xm148,-276v-22,8,-66,35,-71,-3v10,-23,47,-35,73,-44v13,0,22,13,22,25v0,9,-8,16,-24,22xm171,-118v-1,-46,-6,-78,-46,-78v-31,0,-47,25,-47,76v0,45,8,75,47,76v31,0,46,-25,46,-74",w:249,k:{X:4,W:4}},"\u00d4":{d:"238,-122v0,78,-39,128,-113,128v-75,0,-114,-49,-114,-127v0,-75,40,-126,111,-126v74,-1,116,49,116,125xm180,-297v23,8,21,34,3,39v-19,-2,-40,-14,-57,-19v-18,6,-40,17,-59,19v-22,-5,-17,-32,4,-39v32,-11,53,-39,86,-12xm171,-118v-1,-46,-6,-78,-46,-78v-31,0,-47,25,-47,76v0,45,8,75,47,76v31,0,46,-25,46,-74",w:249,k:{X:4,W:4}},"\u00d2":{d:"238,-122v0,78,-39,128,-113,128v-75,0,-114,-49,-114,-127v0,-75,40,-126,111,-126v74,-1,116,49,116,125xm147,-299v24,5,26,36,4,41v-26,-5,-74,-18,-79,-40v1,-21,20,-31,42,-19xm171,-118v-1,-46,-6,-78,-46,-78v-31,0,-47,25,-47,76v0,45,8,75,47,76v31,0,46,-25,46,-74",w:249,k:{X:4,W:4}},"\u00da":{d:"299,-215v0,21,-17,26,-36,21v-18,5,-7,52,-10,79v8,95,-29,121,-105,121v-80,0,-108,-37,-98,-127v-3,-28,15,-85,-26,-71v-12,0,-21,-10,-20,-23v5,-48,75,-16,117,-27v24,-6,32,47,9,49v-13,-5,-18,4,-16,19v5,50,-19,128,37,128v59,0,33,-77,39,-128v4,-36,-35,-4,-31,-41v4,-48,72,-14,113,-27v15,0,27,11,27,27xm175,-276v-22,8,-66,35,-71,-3v10,-23,48,-35,73,-44v13,-1,23,12,22,25v0,9,-8,16,-24,22",w:301,k:{"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c5":17,"\u00c4":17,p:6,n:8,m:8,A:17,".":21,",":19}},"\u00db":{d:"299,-215v0,21,-17,26,-36,21v-18,5,-7,52,-10,79v8,95,-29,121,-105,121v-80,0,-108,-37,-98,-127v-3,-28,15,-85,-26,-71v-12,0,-21,-10,-20,-23v5,-48,75,-16,117,-27v24,-6,32,47,9,49v-13,-5,-18,4,-16,19v5,50,-19,128,37,128v59,0,33,-77,39,-128v4,-36,-35,-4,-31,-41v4,-48,72,-14,113,-27v15,0,27,11,27,27xm207,-297v23,8,21,34,3,39v-19,-2,-40,-14,-57,-19v-18,6,-40,17,-59,19v-20,-4,-18,-31,4,-39v31,-12,53,-39,86,-12",w:301,k:{"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c5":17,"\u00c4":17,p:6,n:8,m:8,A:17,".":21,",":19}},"\u00d9":{d:"299,-215v0,21,-17,26,-36,21v-18,5,-7,52,-10,79v8,95,-29,121,-105,121v-80,0,-108,-37,-98,-127v-3,-28,15,-85,-26,-71v-12,0,-21,-10,-20,-23v5,-48,75,-16,117,-27v24,-6,32,47,9,49v-13,-5,-18,4,-16,19v5,50,-19,128,37,128v59,0,33,-77,39,-128v4,-36,-35,-4,-31,-41v4,-48,72,-14,113,-27v15,0,27,11,27,27xm175,-299v23,5,24,36,3,41v-26,-5,-73,-17,-78,-40v3,-44,54,-14,75,-1",w:301,k:{"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c0":17,"\u00c5":17,"\u00c4":17,p:6,n:8,m:8,A:17,".":21,",":19}},"\u00af":{d:"135,-208v-31,-2,-62,-2,-93,0v-15,0,-22,-7,-22,-21v0,-39,68,-20,114,-20v16,0,23,6,23,20v0,14,-7,21,-22,21",w:177},"\u02c9":{d:"135,-208v-31,-2,-62,-2,-93,0v-15,0,-22,-7,-22,-21v0,-39,68,-20,114,-20v16,0,23,6,23,20v0,14,-7,21,-22,21",w:177},"\u00b8":{d:"41,69v4,-32,62,14,72,-15v1,-22,-71,7,-49,-32r13,-22r34,0r-11,23v27,-7,49,6,50,29v4,48,-97,57,-109,17",w:177},"\u00a4":{d:"32,-24r-25,-25r37,-37v-22,-32,-21,-68,1,-99r-38,-38r25,-25r38,37v32,-22,68,-21,100,0r37,-37r25,25r-37,37v22,33,23,66,1,99r37,37r-25,26r-37,-37v-32,22,-69,21,-102,0xm120,-87v27,0,49,-23,49,-49v0,-27,-22,-49,-49,-49v-28,0,-48,23,-49,49v-1,25,23,49,49,49",w:240},"\u00ad":{d:"17,-74r0,-22r164,0r0,22r-164,0",w:197},"\u2212":{d:"17,-74r0,-22r164,0r0,22r-164,0",w:197}}});(function(d){var c={preloadImg:true};var e=false;var i=function(m){m=m.replace(/^url\((.*)\)/,"$1").replace(/^\"(.*)\"$/,"$1");var k=new Image();k.src=m.replace(/\.([a-zA-Z]*)$/,"-hover.$1");var l=new Image();l.src=m.replace(/\.([a-zA-Z]*)$/,"-focus.$1")};var b=function(m){var k=d(m.get(0).form);var n=m.next();if(!n.is("label")){n=m.prev();if(n.is("label")){var l=m.attr("id");if(l){n=k.find('label[for="'+l+'"]')}}}if(n.is("label")){return n.css("cursor","pointer")}return false};var a=function(k){var l=d(".jqTransformSelectWrapper ul:visible");l.each(function(){var m=d(this).parents(".jqTransformSelectWrapper:first").find("select").get(0);if(!(k&&m.oLabel&&m.oLabel.get(0)==k.get(0))){d(this).hide()}})};var f=function(k){if(d(k.target).parents(".jqTransformSelectWrapper").length===0){a(d(k.target))}};var h=function(){d(document).mousedown(f)};var g=function(l){var k;d(".jqTransformSelectWrapper select",l).each(function(){k=(this.selectedIndex<0)?0:this.selectedIndex;d("ul",d(this).parent()).each(function(){d("a:eq("+k+")",this).click()})});d("a.jqTransformCheckbox, a.jqTransformRadio",l).removeClass("jqTransformChecked");d("input:checkbox, input:radio",l).each(function(){if(this.checked){d("a",d(this).parent()).addClass("jqTransformChecked")}})};d.fn.jqTransInputButton=function(){return this.each(function(){var k=d('<button id="'+this.id+'" name="'+this.name+'" type="'+this.type+'" class="'+this.className+' jqTransformButton"><span><span>'+d(this).attr("value")+"</span></span>").hover(function(){k.addClass("jqTransformButton_hover")},function(){k.removeClass("jqTransformButton_hover")}).mousedown(function(){k.addClass("jqTransformButton_click")}).mouseup(function(){k.removeClass("jqTransformButton_click")});d(this).replaceWith(k)})};d.fn.jqTransInputText=function(){return this.each(function(){var n=d(this);if(n.hasClass("jqtranformdone")||!n.is("input")){return}n.addClass("jqtranformdone");var m=b(d(this));m&&m.bind("click",function(){n.focus()});var k=n.width();n.addClass("jqTransformInput").wrap('<div class="jqTransformInputWrapper"><div class="jqTransformInputInner"><div></div></div></div>');var l=n.parent().parent().parent();l.css("width",k+10);n.focus(function(){l.addClass("jqTransformInputWrapper_focus")}).blur(function(){l.removeClass("jqTransformInputWrapper_focus")}).hover(function(){l.addClass("jqTransformInputWrapper_hover")},function(){l.removeClass("jqTransformInputWrapper_hover")});d.browser.safari&&l.addClass("jqTransformSafari");d.browser.safari&&n.css("width",l.width()+16);this.wrapper=l})};d.fn.jqTransCheckBox=function(){return this.each(function(){if(d(this).hasClass("jqTransformHidden")){return}var n=d(this);var l=this;var m=b(n);m&&m.click(function(){k.trigger("click")});var k=d('<a href="#" class="jqTransformCheckbox"></a>');n.addClass("jqTransformHidden").wrap('<span class="jqTransformCheckboxWrapper"></span>').parent().prepend(k);n.change(function(){this.checked&&k.addClass("jqTransformChecked")||k.removeClass("jqTransformChecked");return true});k.click(function(){if(n.attr("disabled")){return false}n.trigger("click").trigger("change");return false});this.checked&&k.addClass("jqTransformChecked")})};d.fn.jqTransRadio=function(){return this.each(function(){if(d(this).hasClass("jqTransformHidden")){return}var m=d(this);var l=this;oLabel=b(m);oLabel&&oLabel.click(function(){k.trigger("click")});var k=d('<a href="#" class="jqTransformRadio" rel="'+this.name+'"></a>');m.addClass("jqTransformHidden").wrap('<span class="jqTransformRadioWrapper"></span>').parent().prepend(k);m.change(function(){l.checked&&k.addClass("jqTransformChecked")||k.removeClass("jqTransformChecked");return true});k.click(function(){if(m.attr("disabled")){return false}m.trigger("click").trigger("change");d('input[name="'+m.attr("name")+'"]',l.form).not(m).each(function(){d(this).attr("type")=="radio"&&d(this).trigger("change")});return false});l.checked&&k.addClass("jqTransformChecked")})};d.fn.jqTransTextarea=function(){return this.each(function(){var k=d(this);if(k.hasClass("jqtransformdone")){return}k.addClass("jqtransformdone");oLabel=b(k);oLabel&&oLabel.click(function(){k.focus()});var m='<table cellspacing="0" cellpadding="0" border="0" class="jqTransformTextarea">';m+='<tr><td id="jqTransformTextarea-tl"></td><td id="jqTransformTextarea-tm"></td><td id="jqTransformTextarea-tr"></td></tr>';m+='<tr><td id="jqTransformTextarea-ml">&nbsp;</td><td id="jqTransformTextarea-mm"><div></div></td><td id="jqTransformTextarea-mr">&nbsp;</td></tr>';m+='<tr><td id="jqTransformTextarea-bl"></td><td id="jqTransformTextarea-bm"></td><td id="jqTransformTextarea-br"></td></tr>';m+="</table>";var l=d(m).insertAfter(k).hover(function(){!l.hasClass("jqTransformTextarea-focus")&&l.addClass("jqTransformTextarea-hover")},function(){l.removeClass("jqTransformTextarea-hover")});k.focus(function(){l.removeClass("jqTransformTextarea-hover").addClass("jqTransformTextarea-focus")}).blur(function(){l.removeClass("jqTransformTextarea-focus")}).appendTo(d("#jqTransformTextarea-mm div",l));this.oTable=l;if(d.browser.safari){d("#jqTransformTextarea-mm",l).addClass("jqTransformSafariTextarea").find("div").css("height",k.height()).css("width",k.width())}})};d.fn.jqTransSelect=function(){return this.each(function(p){var k=d(this);if(k.hasClass("jqTransformHidden")){return}if(k.attr("multiple")){return}var q=b(k);var o=k.addClass("jqTransformHidden").wrap('<div class="jqTransformSelectWrapper"></div>').parent().css({zIndex:10-p});o.prepend('<div><span></span><a href="#" class="jqTransformSelectOpen"></a></div><ul></ul>');var m=d("ul",o).css("width",k.width()).hide();d("option",this).each(function(v){var w=d('<li><a href="#" index="'+v+'">'+d(this).html()+"</a></li>");m.append(w)});m.find("a").click(function(){d("a.selected",o).removeClass("selected");d(this).addClass("selected");if(k[0].selectedIndex!=d(this).attr("index")&&k[0].onchange){k[0].selectedIndex=d(this).attr("index");k[0].onchange()}k[0].selectedIndex=d(this).attr("index");d("span:eq(0)",o).html(d(this).html());m.hide();return false});d("a:eq("+this.selectedIndex+")",m).click();d("span:first",o).click(function(){d("a.jqTransformSelectOpen",o).trigger("click")});q&&q.click(function(){d("a.jqTransformSelectOpen",o).trigger("click")});this.oLabel=q;var s=d("a.jqTransformSelectOpen",o).click(function(){if(m.css("display")=="none"){a()}if(k.attr("disabled")){return false}m.slideToggle("fast",function(){var v=(d("a.selected",m).offset().top-m.offset().top);m.animate({scrollTop:v})});return false});var r=k.outerWidth();var n=d("span:first",o);var l=(r>n.innerWidth())?r+s.outerWidth():o.width();o.css("width",l);m.css("width",l-2);n.css({width:r});m.css({display:"block",visibility:"hidden"});var u=(d("li",m).length)*(d("li:first",m).height());(u<m.height())&&m.css({height:u,overflow:"hidden"});m.css({display:"none",visibility:"visible"})})};d.fn.jqTransform=function(k){var l=d.extend({},c,k);return this.each(function(){var m=d(this);if(m.hasClass("jqtransformdone")){return}m.addClass("jqtransformdone");d('input:submit, input:reset, input[type="button"]',this).jqTransInputButton();d("input:text, input:password",this).jqTransInputText();d("input:checkbox",this).jqTransCheckBox();d("input:radio",this).jqTransRadio();d("textarea",this).jqTransTextarea();if(d("select",this).jqTransSelect().length>0){h()}m.bind("reset",function(){var n=function(){g(this)};window.setTimeout(n,10)})})}})(jQuery);(function(a){a.fn.fixedBar=function(d){var f={position:"bottom",height:25,style:"fixedBar"};a.extend(f,d);var c=(this.selector=="")?"#fixedBar":this.selector;var b=f.height*2+20;var g={};var e=(f.position=="bottom")?{bottom:"0"}:{top:"0"};a.extend(g,e);a("body").css("padding-"+f.position,b);a("body").css("margin","0 auto");a(c).addClass(f.style).css(g)}})(jQuery);if(window.TP==null){var TP={}}TP.Newsbar={init:function(options){options=eval("("+options+")");if(options.enable_comment_bar==1||options.enable_book_bar==1){$(document).ready(function(){$().fixedBar();TP.Newsbar.updateBar(options.enable_tickers,options.enable_comment_bar,options.enable_book_bar);$.timer(options.refresh_rate,function(timer){TP.Newsbar.updateBar(options.enable_tickers,options.enable_comment_bar,options.enable_book_bar)})})}},updateBar:function(a,b,c){if(b==1){$.ajax({url:"/getlatestcommentreviewcontent",success:function(d){$("#fixedBarNewComment").html(d);if(a==1){TP.Newsbar.startTicker("commentreviewTicker",10)}}})}if(c==1){$.ajax({url:"/getlatestbookcontent",success:function(d){$("#fixedBarNewBook").html(d);if(a==1){TP.Newsbar.startTicker("bookTicker",1500)}}})}},startTicker:function(c,b){var a={newsList:"#"+c,startDelay:b,loopDelay:0,tickerRate:40,placeHolder1:" []"};$().newsTicker(a)}};jQuery.timer=function(a,b){var a=a||100;if(!b){return false}_timer=function(d,e){this.stop=function(){clearInterval(c.id)};this.internalCallback=function(){e(c)};this.reset=function(f){if(c.id){clearInterval(c.id)}var f=f||100;this.id=setInterval(this.internalCallback,f)};this.interval=d;this.id=setInterval(this.internalCallback,this.interval);var c=this};return new _timer(a,b)};jQuery(function(){jQuery("div.svw").prepend("<img src='svwloader.gif' class='ldrgif' alt='loading...'/ >")});var j=0;var quantofamo=0;jQuery.fn.slideView=function(a){a=jQuery.extend({easeFunc:"easeInOutExpo",easeTime:750,toolTip:false},a);return this.each(function(){var d=jQuery(this);d.find("img.ldrgif").remove();d.removeClass("svw").addClass("stripViewer");var e=d.find("img").width();var b=d.find("img").height();var f=d.find("li").size();var c=e*f;d.find("ul").css("width",c);d.css("width",e);d.css("height",b);d.each(function(g){jQuery(this).after("<div class='stripTransmitter' id='stripTransmitter"+(j)+"'><ul></ul></div>");jQuery(this).find("li").each(function(h){jQuery("div#stripTransmitter"+j+" ul").append("<li><a title='"+jQuery(this).find("img").attr("alt")+"' href='#'><span>"+(h+1)+"</span></a></li>")});jQuery("div#stripTransmitter"+j+" a").each(function(h){jQuery(this).bind("click",function(){jQuery(this).addClass("current").parent().parent().find("a").not(jQuery(this)).removeClass("current");var i=-(e*h);d.find("ul").animate({left:i},a.easeTime,a.easeFunc);return false})});jQuery("div#stripTransmitter"+j+" a").parent().parent().parent().prev().find("img").each(function(h){jQuery(this).bind("click",function(){var i=jQuery(this).parent().parent().parent().next().find("a");if(h+1<f){i.eq(h+1).trigger("click")}else{i.eq(0).trigger("click")}})});jQuery("div#stripTransmitter"+j).css("width",e);jQuery("div#stripTransmitter"+j+" a:first").addClass("current");if(a.toolTip){d.next(".stripTransmitter ul").find("a").Tooltip({track:true,delay:0,showURL:false,showBody:false})}});j++})};jQuery.extend(jQuery.easing,{easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,m,l){var i=1.70158;var k=0;var g=m;if(h==0){return e}if((h/=l)==1){return e+m}if(!k){k=l*0.3}if(g<Math.abs(m)){g=m;var i=k/4}else{var i=k/(2*Math.PI)*Math.asin(m/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*l-i)*(2*Math.PI)/k))+e},easeOutElastic:function(f,h,e,m,l){var i=1.70158;var k=0;var g=m;if(h==0){return e}if((h/=l)==1){return e+m}if(!k){k=l*0.3}if(g<Math.abs(m)){g=m;var i=k/4}else{var i=k/(2*Math.PI)*Math.asin(m/g)}return g*Math.pow(2,-10*h)*Math.sin((h*l-i)*(2*Math.PI)/k)+m+e},easeInOutElastic:function(f,h,e,m,l){var i=1.70158;var k=0;var g=m;if(h==0){return e}if((h/=l/2)==2){return e+m}if(!k){k=l*(0.3*1.5)}if(g<Math.abs(m)){g=m;var i=k/4}else{var i=k/(2*Math.PI)*Math.asin(m/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*l-i)*(2*Math.PI)/k))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*l-i)*(2*Math.PI)/k)*0.5+m+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});$(document).ready(function(){$().ready(function(){$("form.jqtransform").jqTransform()});$("input.inputField").focus(function(){if(this.value==this.defaultValue){this.value=""}}).blur(function(){if(!this.value.length){this.value=this.defaultValue}});$(".panel").corner();$("div.tooltip").corner();$(".formPanel").corner();$(".textPanel").corner();$(".tablePanel").corner();$(".dialogPanel").corner();$(".quotePanel").corner();$(".formPanelAccount").corner();$("div.confirmPanel").corner();$("ul.panelListBox").corner();$(".actionPanel").corner();$("ul.linkPanel").corner();$("div.aboutAuthor").corner();$("ol.reviewList li").corner();$("ol.bookList li").corner();$("ol.horizontalList li").corner();$("ol.stockList li div.item").corner();$("div#buyStock").corner();$("div.spinnerPanel").corner();$("div.basketPanel").corner();$("div#poll").corner();$("div.innerPanel").corner("4px");$("div.reviewPanel").corner();$("div.profileOverview").corner();$("div.printsettings div#printPanel").corner();$("div.profileOverview").corner();$(".formPanel input").focus(function(){$(this).closest("li").find("div.tooltip").css("display","block")});$(".formPanel textarea").focus(function(){$(this).closest("li").find("div.tooltip").css("display","block")});$(".formPanel select").focus(function(){$(this).closest("li").find("div.tooltip").css("display","block")});$(".formPanel li.coverfield").mouseover(function(){$(this).find("div.tooltip").css("display","block")});$(".formPanel input").blur(function(){$(this).closest("li").find("div.tooltip").css("display","none")});$(".formPanel textarea").blur(function(){$(this).closest("li").find("div.tooltip").css("display","none")});$(".formPanel select").blur(function(){$(this).closest("li").find("div.tooltip").css("display","none")});$(".formPanel li.coverfield").mouseout(function(){$(this).find("div.tooltip").css("display","none")});$("div.formPanel ol>li").append("<div class='clearBoth'></div>");$("ol.faq>li").append("<div class='clearBoth'></div>");$("div.formPanelAccount ol>li").append("<div class='clearBoth'></div>");$("ol.manuscriptList>li").append("<div class='clearBoth'></div>");$("ol.shareHoldersList>li").append("<div class='clearBoth'></div>");$("div.spinnerPanel ul>li").append("<div class='clearBoth'></div>");$("ul.poll>li").append("<div class='clearBoth'></div>");$("ol.feedBackList li").append("<div class='clearBoth'></div>");$("div.tooltip").append("<div class='arrow'></div>");$("div.formPanel ol").find("li").each(function(){if($(this).hasClass("valid")){$(this).append("<div class='valid'></div>")}});$("div.formPanel ol").find("li").each(function(){if($(this).hasClass("definite")){$(this).append("<div class='lock'></div>")}});$("div.overviewPanel").find("dd").each(function(){if($(this).hasClass("definite")){$(this).append("<div class='lock'></div>")}});$("#topNav li.topLevel").hover(function(){$("ul",this).css("display","block")},function(){$("ul",this).css("display","none")});Cufon.replace("#publishManuscript h2");Cufon.replace("#investInTalent h2");Cufon.replace("ul.panelListBox li span");Cufon.replace("a.button");Cufon.replace("a.buyButton");Cufon.replace("div.reviewPanel h2");Cufon.replace("div.defaultPanel h3");Cufon.replace("div.panel h3",{fontWeight:"900"});Cufon.replace("ul#topNav span.atw");Cufon.replace("ul.actionPanel h4");Cufon.replace("div#manuscriptSummary h1");Cufon.replace("div.pageNav li");Cufon.replace("div.bookFilter");Cufon.replace("div.spinnerPanel h3");Cufon.replace("div.basketPanel h3");Cufon.replace("div#rightColumn h3");Cufon.replace("h2 sup");Cufon.replace("div#quotes span");Cufon.replace("div.whitePanel h3");Cufon.replace("div.reviewPanel h3");Cufon.replace("div.pollPanel h3");Cufon.replace("div.howItWorks h2");Cufon.replace("div#inspirationPage h2");Cufon.replace("div#aboutPage .teamSection h2");Cufon.replace("div#seaPage .panel h1");Cufon.replace("ul#banner li a");Cufon.replace("div#contentPage h3.highlight");Cufon.replace("div#contentPage h2.highlight");Cufon.replace("div#contentPage .mbHulpPanel h1");Cufon.replace("div#contentPage .mbHulpPanel ul li span");Cufon.replace("div#contentPage .mbinfoPanel h1");Cufon.replace("div#contentPage .mbRedacteur h2");$(window).bind("load",function(){$("div#bannerWrapper").slideView()});$(".tabContainer").tabs();$("ol.change_fontsize_selector li.big").click(function(){$("body").css("font-size","0.9em");setCookie("fontsize","0.9em",365)});$("ol.change_fontsize_selector li.medium").click(function(){$("body").css("font-size","0.7em");setCookie("fontsize","0.7em",365)});$("ol.change_fontsize_selector li.small").click(function(){$("body").css("font-size","0.5em");setCookie("fontsize","0.5em",365)});var a=getCookie("fontsize");if(a!=""){$("body").css("font-size",a)}$("div#accountLoginWrapper input").keypress(function(b){if(b.keyCode=="13"){$("div#accountLoginWrapper form#accountLogin").submit()}})});function getCookie(a){if(document.cookie.length>0){c_start=document.cookie.indexOf(a+"=");if(c_start!=-1){c_start=c_start+a.length+1;c_end=document.cookie.indexOf(";",c_start);if(c_end==-1){c_end=document.cookie.length}return unescape(document.cookie.substring(c_start,c_end))}}return""}function setCookie(b,c,a){var d=new Date();d.setDate(d.getDate()+a);document.cookie=b+"="+escape(c)+((a==null)?"":";expires="+d.toGMTString())};
