/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = true;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// Global Killswitch on the <html> element
$(document.documentElement).addClass('js');
// Attach all behaviors.
$(document).ready(function() {
  Drupal.attachBehaviors(this);
});

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': {"Unspecified error":"Ospecificerat fel","Only files with the following extensions are allowed: %files-allowed.":"Endast filer med f\u00f6ljande \u00e4ndelser till\u00e5ts: %files-allowed.","This field is required.":"Detta f\u00e4lt \u00e4r obligatoriskt.","!title: !required":"!title: !required","An error occurred. \n@uri\n@text":"Ett fel intr\u00e4ffade. \n@uri\n@text","An error occurred. \n@uri\n(no information available).":"Ett fel intr\u00e4ffade. \n@uri\n(ingen information tillg\u00e4nglig).","An HTTP error @status occurred. \n@uri":"Ett HTTP-fel intr\u00e4ffade: @status. \n@uri","Drag to re-order":"Drag f\u00f6r att ordna om","Changes made in this table will not be saved until the form is submitted.":"\u00c4ndringar som g\u00f6rs i denna tabell sparas inte f\u00f6rr\u00e4n formul\u00e4ret skickas.","Select all rows in this table":"Markera alla rader i tabellen","Deselect all rows in this table":"Avmarkera alla rader i tabellen","Split summary at cursor":"Avdela sammanfattning vid mark\u00f6ren","Join summary":"L\u00e4gg ihop sammanfattning","Your server has been successfully tested to support this feature.":"Din server har testats och har st\u00f6d f\u00f6r denna funktion.","Your system configuration does not currently support this feature. The \u003ca href=\"http:\/\/drupal.org\/node\/15365\"\u003ehandbook page on Clean URLs\u003c\/a\u003e has additional troubleshooting information.":"Din systemkonfiguration har f\u00f6r n\u00e4rvarande inte st\u00f6d f\u00f6r denna funktion. \u003ca href=\"http:\/\/drupal.org\/node\/15365\"\u003eHandboksidan om Rena URL:er\u003c\/a\u003e har mer information om fels\u00f6kning.","Testing clean URLs...":"Testar rena URL:er...","Anonymous":"G\u00e4st","Published":"Publicerad","Not published":"Inte publicerad","Edit":"Redigera","Promoted to front page":"Publicerad p\u00e5 f\u00f6rstasidan","Upload":"Ladda upp","The changes to these blocks will not be saved until the \u003cem\u003eSave blocks\u003c\/em\u003e button is clicked.":"\u00c4ndringarna i dessa block kommer inte att sparas tills \u003cem\u003eSpara block\u003c\/em\u003e knappen klickats.","None":"Ingen","Automatic alias":"Automatiskt alias","Internal server error. Please see server or PHP logs for error information.":"Internt serverfel. Var v\u00e4nlig se loggar fr\u00e5n server eller PHP f\u00f6r felmeddelande.","An error occurred at @path.\n\nError Description: @error":"Ett fel uppstod p\u00e5 @path. Felbeskrivning: @error","jQuery UI Tabs: Mismatching fragment identifier.":"jQuery UI Tabs: Identifieraren f\u00f6r fragment st\u00e4mmer inte \u00f6verens.","jQuery UI Tabs: Not enough arguments to add tab.":"jQuery UI Tabs: Inte tillr\u00e4ckligt med argument f\u00f6r att l\u00e4gga till flik.","Loading...":"Laddar...","Close":"St\u00e4ng","The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.":"Den valda filen %filename kan inte laddas upp. Endast filer med f\u00f6ljande \u00e4ndelser \u00e4r till\u00e5tna: %extensions.","Select All":"V\u00e4lj alla","Select None":"V\u00e4lj ingen","Not in menu":"Inget menyval"} };;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*
 * jQuery Form Plugin
 * version: 2.25 (08-APR-2009)
 * @requires jQuery v1.2.2 or later
 * @note This has been modified for ajax.module
 * Examples and documentation at: http://malsup.com/jquery/form/
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(5($){$.B.1s=5(u){2(!4.G){R(\'1b: 2M 9 2N - 2O 2P 1t\');6 4}2(S u==\'5\')u={T:u};3 v=4.14(\'1c\')||1d.2Q.2R;v=(v.2S(/^([^#]+)/)||[])[1];v=v||\'\';u=$.1n({1e:v,H:4.14(\'1u\')||\'1Q\'},u||{});3 w={};4.L(\'C-1R-1S\',[4,u,w]);2(w.1T){R(\'1b: 9 1U 1o C-1R-1S L\');6 4}2(u.1v&&u.1v(4,u)===I){R(\'1b: 9 1f 1o 1v 1V\');6 4}3 a=4.1w(u.2T);2(u.J){u.O=u.J;K(3 n 1x u.J){2(u.J[n]2U 15){K(3 k 1x u.J[n])a.D({7:n,8:u.J[n][k]})}E a.D({7:n,8:u.J[n]})}}2(u.1y&&u.1y(a,4,u)===I){R(\'1b: 9 1f 1o 1y 1V\');6 4}4.L(\'C-9-1W\',[a,4,u,w]);2(w.1T){R(\'1b: 9 1U 1o C-9-1W L\');6 4}3 q=$.1z(a);2(u.H.2V()==\'1Q\'){u.1e+=(u.1e.2W(\'?\')>=0?\'&\':\'?\')+q;u.J=F}E u.J=q;3 x=4,V=[];2(u.2X)V.D(5(){x.1X()});2(u.2Y)V.D(5(){x.1Y()});2(!u.16&&u.17){3 y=u.T||5(){};V.D(5(a){$(u.17).2Z(a).P(y,1Z)})}E 2(u.T)V.D(u.T);u.T=5(a,b){K(3 i=0,M=V.G;i<M;i++)V[i].30(u,[a,b,x])};3 z=$(\'W:31\',4).18();3 A=I;K(3 j=0;j<z.G;j++)2(z[j])A=Q;2(u.20||A){2(u.21)$.32(u.21,1A);E 1A()}E $.33(u);4.L(\'C-9-34\',[4,u]);6 4;5 1A(){3 h=x[0];2($(\':W[7=9]\',h).G){35(\'36: 37 22 38 39 3a 3b "9".\');6}3 i=$.1n({},$.23,u);3 s=$.1n(Q,{},$.1n(Q,{},$.23),i);3 j=\'3c\'+(1B 3d().3e());3 k=$(\'<20 3f="\'+j+\'" 7="\'+j+\'" 24="25:26" />\');3 l=k[0];k.3g({3h:\'3i\',27:\'-28\',29:\'-28\'});3 m={1f:0,19:F,1g:F,3j:0,3k:\'n/a\',3l:5(){},2a:5(){},3m:5(){},3n:5(){4.1f=1;k.14(\'24\',\'25:26\')}};3 g=i.2b;2(g&&!$.1C++)$.1h.L("3o");2(g)$.1h.L("3p",[m,i]);2(s.2c&&s.2c(m,s)===I){s.2b&&$.1C--;6}2(m.1f)6;3 o=0;3 p=0;3 q=h.U;2(q){3 n=q.7;2(n&&!q.1i){u.O=u.O||{};u.O[n]=q.8;2(q.H=="X"){u.O[7+\'.x\']=h.Y;u.O[7+\'.y\']=h.Z}}}1j(5(){3 t=x.14(\'17\'),a=x.14(\'1c\');h.1k(\'17\',j);2(h.2d(\'1u\')!=\'2e\')h.1k(\'1u\',\'2e\');2(h.2d(\'1c\')!=i.1e)h.1k(\'1c\',i.1e);2(!u.3q){x.14({3r:\'2f/C-J\',3s:\'2f/C-J\'})}2(i.1D)1j(5(){p=Q;11()},i.1D);3 b=[];2g{2(u.O)K(3 n 1x u.O)b.D($(\'<W H="3t" 7="\'+n+\'" 8="\'+u.O[n]+\'" />\').2h(h)[0]);k.2h(\'1l\');l.2i?l.2i(\'2j\',11):l.3u(\'2k\',11,I);h.9()}3v{h.1k(\'1c\',a);t?h.1k(\'17\',t):x.3w(\'17\');$(b).2l()}},10);3 r=0;5 11(){2(o++)6;l.2m?l.2m(\'2j\',11):l.3x(\'2k\',11,I);3 c=Q;2g{2(p)3y\'1D\';3 d,N;N=l.2n?l.2n.2o:l.2p?l.2p:l.2o;2((N.1l==F||N.1l.2q==\'\')&&!r){r=1;o--;1j(11,2r);6}m.19=N.1l?N.1l.2q:F;m.1g=N.2s?N.2s:N;m.2a=5(a){3 b={\'3z-H\':i.16};6 b[a]};2(i.16==\'3A\'||i.16==\'3B\'){3 f=N.1E(\'1F\')[0];m.19=f?f.8:m.19}E 2(i.16==\'2t\'&&!m.1g&&m.19!=F){m.1g=2u(m.19)}d=$.3C(m,i.16)}3D(e){c=I;$.3E(i,m,\'2v\',e)}2(c){i.T(d,\'T\');2(g)$.1h.L("3F",[m,i])}2(g)$.1h.L("3G",[m,i]);2(g&&!--$.1C)$.1h.L("3H");2(i.2w)i.2w(m,c?\'T\':\'2v\');1j(5(){k.2l();m.1g=F},2r)};5 2u(s,a){2(1d.2x){a=1B 2x(\'3I.3J\');a.3K=\'I\';a.3L(s)}E a=(1B 3M()).3N(s,\'1G/2t\');6(a&&a.2y&&a.2y.1p!=\'3O\')?a:F}}};$.B.3P=5(c){6 4.2z().2A(\'9.C-1q\',5(){$(4).1s(c);6 I}).P(5(){$(":9,W:X",4).2A(\'2B.C-1q\',5(e){3 a=4.C;a.U=4;2(4.H==\'X\'){2(e.2C!=12){a.Y=e.2C;a.Z=e.3Q}E 2(S $.B.2D==\'5\'){3 b=$(4).2D();a.Y=e.2E-b.29;a.Z=e.2F-b.27}E{a.Y=e.2E-4.3R;a.Z=e.2F-4.3S}}1j(5(){a.U=a.Y=a.Z=F},10)})})};$.B.2z=5(){4.2G(\'9.C-1q\');6 4.P(5(){$(":9,W:X",4).2G(\'2B.C-1q\')})};$.B.1w=5(b){3 a=[];2(4.G==0)6 a;3 c=4[0];3 d=b?c.1E(\'*\'):c.22;2(!d)6 a;K(3 i=0,M=d.G;i<M;i++){3 e=d[i];3 n=e.7;2(!n)1H;2(b&&c.U&&e.H=="X"){2(!e.1i&&c.U==e)a.D({7:n+\'.x\',8:c.Y},{7:n+\'.y\',8:c.Z});1H}3 v=$.18(e,Q);2(v&&v.1r==15){K(3 j=0,2H=v.G;j<2H;j++)a.D({7:n,8:v[j]})}E 2(v!==F&&S v!=\'12\')a.D({7:n,8:v})}2(!b&&c.U){3 f=c.1E("W");K(3 i=0,M=f.G;i<M;i++){3 g=f[i];3 n=g.7;2(n&&!g.1i&&g.H=="X"&&c.U==g)a.D({7:n+\'.x\',8:c.Y},{7:n+\'.y\',8:c.Z})}}6 a};$.B.3T=5(a){6 $.1z(4.1w(a))};$.B.3U=5(b){3 a=[];4.P(5(){3 n=4.7;2(!n)6;3 v=$.18(4,b);2(v&&v.1r==15){K(3 i=0,M=v.G;i<M;i++)a.D({7:n,8:v[i]})}E 2(v!==F&&S v!=\'12\')a.D({7:4.7,8:v})});6 $.1z(a)};$.B.18=5(a){K(3 b=[],i=0,M=4.G;i<M;i++){3 c=4[i];3 v=$.18(c,a);2(v===F||S v==\'12\'||(v.1r==15&&!v.G))1H;v.1r==15?$.3V(b,v):b.D(v)}6 b};$.18=5(b,c){3 n=b.7,t=b.H,1a=b.1p.1I();2(S c==\'12\')c=Q;2(c&&(!n||b.1i||t==\'1m\'||t==\'3W\'||(t==\'1J\'||t==\'1K\')&&!b.1L||(t==\'9\'||t==\'X\')&&b.C&&b.C.U!=b||1a==\'13\'&&b.1M==-1))6 F;2(1a==\'13\'){3 d=b.1M;2(d<0)6 F;3 a=[],1N=b.3X;3 e=(t==\'13-2I\');3 f=(e?d+1:1N.G);K(3 i=(e?d:0);i<f;i++){3 g=1N[i];2(g.1t){3 v=g.8;2(!v)v=(g.1O&&g.1O[\'8\']&&!(g.1O[\'8\'].3Y))?g.1G:g.8;2(e)6 v;a.D(v)}}6 a}6 b.8};$.B.1Y=5(){6 4.P(5(){$(\'W,13,1F\',4).2J()})};$.B.2J=$.B.3Z=5(){6 4.P(5(){3 t=4.H,1a=4.1p.1I();2(t==\'1G\'||t==\'40\'||1a==\'1F\')4.8=\'\';E 2(t==\'1J\'||t==\'1K\')4.1L=I;E 2(1a==\'13\')4.1M=-1})};$.B.1X=5(){6 4.P(5(){2(S 4.1m==\'5\'||(S 4.1m==\'41\'&&!4.1m.42))4.1m()})};$.B.43=5(b){2(b==12)b=Q;6 4.P(5(){4.1i=!b})};$.B.2K=5(b){2(b==12)b=Q;6 4.P(5(){3 t=4.H;2(t==\'1J\'||t==\'1K\')4.1L=b;E 2(4.1p.1I()==\'2L\'){3 a=$(4).44(\'13\');2(b&&a[0]&&a[0].H==\'13-2I\'){a.45(\'2L\').2K(I)}4.1t=b}})};5 R(){2($.B.1s.46&&1d.1P&&1d.1P.R)1d.1P.R(\'[47.C] \'+15.48.49.4a(1Z,\'\'))}})(4b);',62,260,'||if|var|this|function|return|name|value|submit||||||||||||||||||||||||||||fn|form|push|else|null|length|type|false|data|for|trigger|max|doc|extraData|each|true|log|typeof|success|clk|callbacks|input|image|clk_x|clk_y||cb|undefined|select|attr|Array|dataType|target|a_fieldValue|responseText|tag|ajaxSubmit|action|window|url|aborted|responseXML|event|disabled|setTimeout|setAttribute|body|reset|extend|via|tagName|plugin|constructor|a_ajaxSubmit|selected|method|beforeSerialize|a_formToArray|in|beforeSubmit|param|fileUpload|new|active|timeout|getElementsByTagName|textarea|text|continue|toLowerCase|checkbox|radio|checked|selectedIndex|ops|attributes|console|GET|pre|serialize|veto|vetoed|callback|validate|a_resetForm|a_clearForm|arguments|iframe|closeKeepAlive|elements|ajaxSettings|src|about|blank|top|1000px|left|getResponseHeader|global|beforeSend|getAttribute|POST|multipart|try|appendTo|attachEvent|onload|load|remove|detachEvent|contentWindow|document|contentDocument|innerHTML|100|XMLDocument|xml|toXml|error|complete|ActiveXObject|documentElement|a_ajaxFormUnbind|bind|click|offsetX|offset|pageX|pageY|unbind|jmax|one|a_clearFields|a_selected|option|skipping|process|no|element|location|href|match|semantic|instanceof|toUpperCase|indexOf|resetForm|clearForm|html|apply|file|get|ajax|notify|alert|Error|Form|must|not|be|named|jqFormIO|Date|getTime|id|css|position|absolute|status|statusText|getAllResponseHeaders|setRequestHeader|abort|ajaxStart|ajaxSend|skipEncodingOverride|encoding|enctype|hidden|addEventListener|finally|removeAttr|removeEventListener|throw|content|json|script|httpData|catch|handleError|ajaxSuccess|ajaxComplete|ajaxStop|Microsoft|XMLDOM|async|loadXML|DOMParser|parseFromString|parsererror|a_ajaxForm|offsetY|offsetLeft|offsetTop|a_formSerialize|a_fieldSerialize|merge|button|options|specified|a_clearInputs|password|object|nodeType|a_enable|parent|find|debug|jquery|prototype|join|call|jQuery'.split('|'),0,{}));
/**
 * Automatic ajax validation
 *
 * @see http://drupal.org/project/ajax
 * @see irc://freenode.net/#drupy
 * @depends Drupal 6
 * @author brendoncrawford
 * @note This file uses a 79 character width limit.
 * 
 *
 */

Drupal.Ajax = new Object;

Drupal.Ajax.plugins = {};

Drupal.Ajax.firstRun = false;

/**
 * Init function.
 * This is being executed by Drupal behaviours.
 * See bottom of script.
 * 
 * @param {HTMLElement} context
 * @return {Bool}
 */
Drupal.Ajax.init = function(context) {
  var f, s;
  if (f = $('.ajax-form', context)) {
    if (!Drupal.Ajax.firstRun) {
      Drupal.Ajax.invoke('init');
      Drupal.Ajax.firstRun = true;
    }
    s = $('input[type="submit"]', f);
    s.click(function(){
      this.form.ajax_activator = $(this);
      return true;
    });
    f.each(function(){
      this.ajax_activator = null;
      $(this).submit(function(){
        if (this.ajax_activator === null) {
          this.ajax_activator = $('#edit-submit', this);
        }
        if (this.ajax_activator.hasClass('ajax-trigger')) {
          Drupal.Ajax.go($(this), this.ajax_activator);
          return false;
        }
        else {
          return true;
        }
      });
      return true;
    });
  }
  return true;
};

/**
 * Invokes plugins
 * 
 * @param {Object} formObj
 * @param {Object} submitter
 */
Drupal.Ajax.invoke = function(hook, args) {
  var plugin, r, ret;
  ret = true;
  for (plugin in Drupal.Ajax.plugins) {
    r = Drupal.Ajax.plugins[plugin](hook, args);
    if (r === false) {
      ret = false;
    }
  }
  return ret;
};

/**
 * Handles submission
 * 
 * @param {Object} submitter_
 * @return {Bool}
 */
Drupal.Ajax.go = function(formObj, submitter) {
  var submitterVal, submitterName, extraData;
  Drupal.Ajax.invoke('submit', {submitter:submitter});
  submitterVal = submitter.val();
  submitterName = submitter.attr('name');
  submitter.val(Drupal.t('Loading...'));
  extraData = {};
  extraData[submitterName] = submitterVal;
  extraData['drupal_ajax'] = '1';
  formObj.a_ajaxSubmit({
    extraData : extraData,
    beforeSubmit : function(data) {
      data[data.length] = {
        name : submitterName,
        value : submitterVal
      };
      data[data.length] = {
        name : 'drupal_ajax',
        value : '1'
      };
      return true;
    },
    dataType : 'json',
    error: function (XMLHttpRequest, textStatus, errorThrown) {
      window.alert(Drupal.t('ajax.module: An unknown error has occurred.'));
      if (window.console) {
        console.log('error', arguments);
      }
      return true;
    },
    success: function(data){
      submitter.val(submitterVal);
      Drupal.Ajax.response(submitter, formObj, data);
      return true;
    }
  });
  return false;
};

/**
 * Handles scroller
 * 
 * @param {Object} submitter
 * @return {Bool}
 */
Drupal.Ajax.scroller = function(submitter) {
  var scroll_weight, box, found, timer;
  scroll_weight = 900;
  timer = window.setInterval(function() {
    box = submitter;
    found = false;
    // Watch for thickbox
    while (box.parentNode !== null &&
        Drupal.Ajax.invoke('scrollFind', {container:box})) {
      box = box.parentNode;
      // Document
      if (box === document) {
        if (box.documentElement.scrollTop &&
            box.documentElement.scrollTop > 0) {
          box.documentElement.scrollTop -= scroll_weight;
          found = true;
			
        }
      }
      // Body
      else if (box === document.body) {
        if (box.scrollTop &&
            box.scrollTop > 0) {
          box.scrollBottom -= scroll_weight;
          found = true;
        }
      }
      // Window
      else if (box === window) {
        if ((window.pageYOffset && window.pageYOffset > 0) ||
            (window.scrollY && window.scrollY > 0)) {
          window.scrollBy(0, -scroll_weight);
          found = true;
        }
      }
      // Any other element
      else {
        if (box.scrollTop &&
            box.scrollTop > 0) {
          box.scrollTop -= scroll_weight;
          found = true;
        }
      }
    }
    // Check if completed
    if (!found) {
      window.clearInterval(timer);
    }
    return true;
  }, 100);
  return true;
};

/**
 * Handles messaging
 * 
 * @param {Object} formObj
 * @param {Object} submitter
 * @param {Object} data
 * @param {Object} options
 * @return {Bool}
 */
Drupal.Ajax.message = function(formObj, submitter, data, options) {
  var args;
  args = {
    formObj : formObj,
    submitter : submitter,
    data : data,
    options : options
  };
  if (Drupal.Ajax.invoke('message', args)) {
    Drupal.Ajax.writeMessage(args.formObj, args.submitter, args.options);
  }
  return true;
};

/**
 * Writes message
 * 
 * @param {Object} formObj
 * @param {Object} submitter
 * @param {Object} options
 * @return {Bool}
 */
Drupal.Ajax.writeMessage = function(formObj, submitter, options) {
  var i, _i, thisItem, log, errBox, h;
  if (options.action === 'notify') {
    // Cleanups
    $('.messages, .ajax-preview', formObj).remove();
    $('input, textarea').removeClass('error status warning required');
    // Preview
    if (options.type === 'preview') {
      log = $('<div>').addClass('ajax-preview');
      log.html(options.messages);
      formObj.prepend(log);
    }
    // Status, Error, Message
    else {
      log = $('<ul>');
      errBox = $(".messages." + options.type, formObj[0])
      for (i = 0, _i = options.messages.length; i < _i; i++) {
        thisItem = $('#' + options.messages[i].id, formObj[0])
        thisItem.addClass(options.type);
        if (options.messages[i].required) {
          thisItem.addClass('required');
        }
        log.append('<li>' + options.messages[i].value + '</li>');
      }
      if (errBox.length === 0) {
        errBox = $("<div class='messages " + options.type + "'>");
        formObj.prepend(errBox);
      }
      errBox.html(log);
    }
  }
  else if (options.action === 'clear') {
    $('.messages, .ajax-preview', formObj).remove();
  }
  Drupal.Ajax.scroller(submitter[0]);
  return true;
};

/**
 * Updates message containers
 * 
 * @param {Object} updaters
 * @return {Bool}
 */
Drupal.Ajax.updater = function(updaters) {
  var i, _i, elm;
  for (i = 0, _i = updaters.length; i < _i; i++) {
    elm = $(updaters[i].selector);
    // HTML:IN
    if (updaters[i].type === 'html_in') {
      elm.html(updaters[i].value);
    }
    // HTML:OUT
    else if (updaters[i].type === 'html_out') {
      elm.replaceWith(updaters[i].value);
    }
    // FIELD
    else if (updaters[i].type === 'field') {
      elm.val(updaters[i].value);
    }
    // REMOVE
    else if(updaters[i].type === 'remove') {
      elm.remove();
    }
  }
  return true;
};

/**
 * Handles data response
 * 
 * @param {Object} submitter
 * @param {Object} formObj
 * @param {Object} data
 * @return {Bool}
 */
Drupal.Ajax.response = function(submitter, formObj, data){
  var newSubmitter;
  data.local = {
    submitter : submitter,
    form : formObj
  };
  /**
   * Failure
   */
  if (data.status === false) {
    Drupal.Ajax.updater(data.updaters);
    Drupal.Ajax.message(formObj, submitter, data, {
      action : 'notify',
      messages : data.messages_error,
      type : 'error'
    });
  }
  /**
   * Success
   */
  else {
    // Display preview
    if (data.preview !== null) {
      Drupal.Ajax.updater(data.updaters);
      Drupal.Ajax.message(formObj, submitter, data, {
        action : 'notify',
        messages : decodeURIComponent(data.preview),
        type : 'preview'
      });
    }
    // If no redirect, then simply show messages
    else if (data.redirect === null) {
      if (data.messages_status.length > 0) {
        Drupal.Ajax.message(formObj, submitter, data, {
          action : 'notify',
          messages : data.messages_status,
          type : 'status'
        });
      }
      if (data.messages_warning.length > 0) {
        Drupal.Ajax.message(formObj, submitter, data, {
          action : 'notify',
          messages : data.messages_warning,
          type : 'warning'
        });
      }
      if (data.messages_status.length === 0 &&
          data.messages_warning.length === 0) {
        Drupal.Ajax.message(formObj, submitter, data, {action:'clear'});
      }
    }
    // Redirect
    else {
      if (Drupal.Ajax.invoke('complete', data)) {
        Drupal.Ajax.redirect( data.redirect );
      }
      else {
        Drupal.Ajax.updater(data.updaters);
        if (data.messages_status.length === 0 &&
            data.messages_warning.length === 0) {
          Drupal.Ajax.message(formObj, submitter, data, {action:'clear'});
        }
        else {
          Drupal.Ajax.message(formObj, submitter, data, {
            action : 'notify',
            messages : data.messages_status,
            type : 'status'
          });
        }
      }
    }
  }
  return true;
};


/**
 * Redirects to appropriate page
 * 
 * @todo
 *   Some of this functionality should possibly hapen on
 *   the server instead of client.
 * @param {String} url
 */
Drupal.Ajax.redirect = function(url) {
  window.location.href = url;
};

Drupal.behaviors.Ajax = Drupal.Ajax.init;


;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Trademark:
 * Helvetica, Neue Helvetica is a trademark of Heidelberger Druckmaschinen AG
 * which may be registered in certain jurisdictions, exclusively licensed through
 * Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen
 * AG.
 * 
 * Full name:
 * HelveticaNeueLTPro-Cn
 * 
 * Description:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH
 * 
 * Designer:
 * Linotype Library GmbH
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.Linotype.com
 */
Cufon.registerFont({"w":159,"face":{"font-family":"Helvetica Neue LT Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 6 3 5 2 3 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-14 -339 360 75.593","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"30","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"30,0r0,-35r33,0r0,35r-33,0xm36,-67r-6,-190r33,0r-6,190r-21,0","w":92},"\"":{"d":"91,-166r0,-91r24,0r0,91r-24,0xm31,-166r0,-91r24,0r0,91r-24,0","w":146},"#":{"d":"71,-153r-7,55r39,0r6,-55r-38,0xm28,0r10,-74r-30,0r0,-24r33,0r7,-55r-32,0r0,-24r35,0r9,-73r24,0r-9,73r38,0r9,-73r23,0r-9,73r29,0r0,24r-32,0r-7,55r30,0r0,24r-33,0r-9,74r-24,0r10,-74r-38,0r-10,74r-24,0","w":172},"$":{"d":"78,-255r0,-21r15,0r0,21v44,3,64,26,65,70r-32,0v0,-23,-8,-41,-33,-44r0,88v33,12,72,20,72,72v0,54,-38,72,-72,74r0,34r-15,0r0,-34v-54,-2,-70,-32,-70,-83r31,0v0,26,1,53,39,57r0,-94v-33,-10,-67,-22,-67,-71v0,-23,9,-65,67,-69xm78,-146r0,-83v-22,3,-34,17,-34,40v0,24,14,35,34,43xm93,-110r0,89v23,-2,39,-18,39,-43v0,-27,-17,-38,-39,-46","w":172},"%":{"d":"210,5v-43,0,-48,-33,-48,-69v0,-36,5,-69,48,-69v43,0,47,33,47,69v0,36,-4,69,-47,69xm64,-117v-43,0,-47,-33,-47,-69v0,-36,4,-69,47,-69v43,0,47,33,47,69v0,36,-4,69,-47,69xm210,-14v20,0,21,-20,21,-50v0,-30,-1,-50,-21,-50v-20,0,-22,20,-22,50v0,30,2,50,22,50xm67,5r112,-260r25,0r-112,260r-25,0xm64,-136v20,0,21,-20,21,-50v0,-30,-1,-49,-21,-49v-20,0,-22,19,-22,49v0,30,2,50,22,50","w":273},"&":{"d":"99,-144r51,73v5,-13,8,-27,10,-50r28,0v0,19,-11,62,-21,75r33,46r-34,0r-17,-24v-20,19,-36,29,-64,29v-63,0,-76,-48,-76,-71v-1,-37,28,-64,54,-81v-10,-18,-27,-36,-27,-60v0,-30,24,-50,53,-50v33,0,55,14,55,49v0,30,-26,47,-45,64xm134,-46r-57,-81v-21,13,-36,31,-36,58v0,56,69,60,93,23xm80,-172v4,8,8,10,13,2v24,-13,36,-63,-3,-63v-35,0,-29,42,-10,61","w":200},"\u2019":{"d":"27,-219r0,-38r33,0v-1,43,8,78,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86,"k":{"s":20,"\u2019":30}},"(":{"d":"68,-257r17,0v-54,98,-51,225,0,323r-17,0v-70,-93,-71,-230,0,-323","w":86},")":{"d":"19,66r-18,0v56,-98,52,-225,0,-323r18,0v68,93,70,230,0,323","w":86},"*":{"d":"53,-214r0,-43r21,0r0,43r39,-15r8,21r-41,12r27,34r-18,13r-26,-36r-26,36r-18,-13r28,-34r-41,-12r8,-21","w":126},"+":{"d":"96,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0","w":216},",":{"d":"27,0r0,-38r33,0v-1,43,8,78,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"19,-88r0,-28r88,0r0,28r-88,0","w":126},".":{"d":"27,0r0,-38r33,0r0,38r-33,0","w":86,"k":{" ":13}},"\/":{"d":"-4,5r84,-267r24,0r-84,267r-24,0","w":100},"0":{"d":"45,-124v0,54,2,105,41,105v39,0,41,-51,41,-105v0,-56,-2,-107,-41,-107v-39,0,-41,51,-41,107xm86,5v-69,0,-72,-69,-72,-129v0,-56,3,-131,72,-131v69,0,73,69,73,131v0,54,-4,129,-73,129","w":172},"1":{"d":"24,-192r0,-21v32,-2,61,-6,63,-42r22,0r0,255r-31,0r0,-192r-54,0","w":172},"2":{"d":"158,-28r0,28r-143,0v0,-61,41,-93,76,-122v21,-18,34,-33,34,-61v0,-22,-10,-46,-37,-46v-39,0,-40,41,-40,55r-32,0v0,-48,20,-81,72,-81v59,0,69,46,69,68v3,80,-91,94,-109,159r110,0","w":172},"3":{"d":"65,-120r0,-24v36,4,56,-13,55,-45v0,-23,-10,-42,-34,-42v-33,0,-36,32,-36,50r-32,0v0,-43,21,-74,68,-74v84,1,84,102,26,121v27,9,47,22,47,60v0,46,-24,79,-73,79v-69,0,-72,-57,-72,-74r32,0v0,23,11,50,40,50v19,0,41,-9,41,-52v1,-36,-21,-53,-62,-49","w":172},"4":{"d":"11,-90r92,-165r30,0r0,168r29,0r0,25r-29,0r0,62r-30,0r0,-62r-92,0r0,-28xm103,-205v-24,37,-43,79,-65,118r65,0r0,-118","w":172},"5":{"d":"21,-119r14,-131r114,0r0,28r-90,0v-2,24,-9,52,-9,75v43,-42,108,-11,108,65v0,48,-21,87,-74,87v-60,0,-70,-50,-70,-71r32,0v0,13,5,47,39,47v36,0,42,-40,42,-66v0,-28,-11,-58,-43,-58v-22,0,-36,19,-36,25","w":172},"6":{"d":"48,-78v0,27,8,59,40,59v32,0,41,-32,41,-59v0,-27,-8,-59,-41,-59v-33,0,-40,32,-40,59xm154,-194r-31,0v0,-22,-12,-37,-34,-37v-49,0,-47,66,-44,97v5,-10,21,-29,49,-29v44,0,66,33,66,81v0,49,-24,87,-72,87v-71,0,-75,-68,-75,-121v0,-58,3,-139,77,-139v59,0,64,49,64,61","w":172},"7":{"d":"159,-224v-36,47,-78,137,-85,224r-35,0v12,-86,46,-163,91,-222r-116,0r0,-28r145,0r0,26","w":172},"8":{"d":"45,-71v0,30,11,52,41,52v30,0,42,-22,42,-52v0,-30,-12,-53,-42,-53v-30,0,-41,23,-41,53xm86,-231v-23,0,-33,18,-33,42v0,24,10,41,33,41v23,0,34,-17,34,-41v0,-24,-11,-42,-34,-42xm86,5v-93,0,-94,-121,-28,-141v-62,-19,-42,-127,28,-119v70,-8,92,100,28,119v66,21,65,141,-28,141","w":172},"9":{"d":"125,-172v0,-27,-8,-59,-40,-59v-32,0,-41,32,-41,59v0,27,8,59,41,59v33,0,40,-32,40,-59xm18,-56r32,0v0,21,12,37,34,37v49,0,47,-66,44,-97v-5,10,-21,29,-49,29v-44,0,-66,-33,-66,-81v0,-49,24,-87,72,-87v71,0,75,68,75,121v0,58,-3,139,-77,139v-59,0,-65,-49,-65,-61","w":172},":":{"d":"27,0r0,-38r33,0r0,38r-33,0xm27,-144r0,-38r33,0r0,38r-33,0","w":86,"k":{" ":13}},";":{"d":"27,-144r0,-38r33,0r0,38r-33,0xm27,0r0,-38r33,0v-1,43,8,78,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86},"\u037e":{"d":"27,-144r0,-38r33,0r0,38r-33,0xm27,0r0,-38r33,0v-1,43,8,78,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86},"<":{"d":"17,-80r0,-22r182,-83r0,24r-154,70r154,70r0,24","w":216},"=":{"d":"17,-42r0,-24r182,0r0,24r-182,0xm17,-116r0,-24r182,0r0,24r-182,0","w":216},">":{"d":"17,3r0,-24r154,-70r-154,-70r0,-24r182,83r0,22","w":216},"?":{"d":"59,0r0,-35r34,0r0,35r-34,0xm62,-67v-9,-63,55,-72,54,-127v0,-21,-12,-40,-35,-40v-35,0,-38,35,-38,53r-30,0v0,-42,21,-79,67,-79v43,0,67,29,67,68v0,55,-62,69,-57,125r-28,0"},"@":{"d":"188,-175v5,-6,5,-16,9,-23r20,0r-34,118v0,5,4,9,11,9v33,0,60,-38,60,-78v0,-54,-48,-91,-110,-91v-62,0,-110,48,-110,111v0,64,48,112,110,112v45,0,78,-14,98,-40r22,0v-23,40,-64,62,-120,62v-74,0,-134,-60,-134,-134v0,-74,60,-133,134,-133v78,0,134,46,134,111v0,62,-51,102,-93,102v-14,0,-24,-7,-26,-22v-26,37,-96,24,-96,-32v0,-50,33,-102,84,-102v18,0,33,8,41,30xm86,-105v0,20,14,34,34,34v33,0,56,-49,56,-76v0,-16,-11,-36,-29,-36v-35,0,-61,45,-61,78","w":288},"A":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"B":{"d":"53,-231r0,85v42,-2,72,13,79,-43v5,-41,-36,-45,-79,-42xm21,0r0,-257v72,2,143,-17,145,66v1,24,-17,45,-38,54v32,8,46,32,46,64v0,79,-75,75,-153,73xm53,-122r0,96r43,0v33,0,45,-22,45,-47v-1,-50,-40,-51,-88,-49","w":186},"C":{"d":"145,-88r33,0v-3,49,-22,93,-78,93v-73,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v52,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67","w":186},"D":{"d":"24,0r0,-257r69,0v80,0,90,57,90,128v0,65,-16,129,-87,129r-72,0xm56,-231r0,205r33,0v55,0,61,-56,61,-102v0,-50,-3,-103,-61,-103r-33,0","w":200,"k":{"Y":7}},"E":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0","w":166},"F":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,120r-32,0","k":{"\u00f5":7,"\u00f2":7,"\u00f6":7,"\u00f4":7,"\u00f3":7,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e3":7,"\u00e5":7,"\u00e0":7,"\u00e4":7,"\u00e2":7,"\u00e1":7,"\u00c3":19,"\u00c5":19,"\u00c0":19,"\u00c4":19,"\u00c2":19,"\u00c1":19,"r":7,"o":7,"i":6,"e":9,"a":7,"A":19,".":40,",":40}},"G":{"d":"176,-186r-33,0v-2,-27,-11,-50,-43,-50v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,47,-53,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-7,22,-28,40,-56,40v-67,0,-79,-65,-79,-134v0,-65,12,-133,83,-133v73,0,76,63,76,76","w":193},"H":{"d":"172,-257r0,257r-31,0r0,-124r-88,0r0,124r-32,0r0,-257r32,0r0,105r88,0r0,-105r31,0","w":193},"I":{"d":"21,0r0,-257r32,0r0,257r-32,0","w":73},"J":{"d":"132,-257r0,183v0,46,-11,79,-64,79v-51,0,-63,-34,-60,-80r30,0v-1,29,1,55,30,54v29,0,33,-18,33,-54r0,-182r31,0","w":153},"K":{"d":"21,0r0,-257r32,0r0,125r89,-125r35,0r-77,107r84,150r-35,0r-70,-124r-26,37r0,87r-32,0","w":180,"k":{"\u00f9":7,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f5":7,"\u00f2":7,"\u00f6":7,"\u00f4":7,"\u00f3":7,"y":4,"u":7,"o":7}},"L":{"d":"21,0r0,-257r32,0r0,229r104,0r0,28r-136,0","k":{"\u201d":33,"y":13,"Y":33,"W":27,"V":27,"T":34,"\u2019":33}},"M":{"d":"22,0r0,-257r53,0r52,204r52,-204r53,0r0,257r-32,0r-1,-225r-56,225r-32,0r-58,-225r0,225r-31,0","w":253},"N":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0","w":200},"O":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133","w":200,"k":{"Y":9,"X":9}},"P":{"d":"53,-231r0,96v46,2,77,1,80,-50v2,-42,-35,-50,-80,-46xm21,0r0,-257r65,0v22,0,80,0,80,74v0,63,-47,80,-113,74r0,109r-32,0","w":173,"k":{"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"o":6,"e":6,"a":6,"A":13,".":46,",":46}},"Q":{"d":"123,-27r-24,-22r17,-20r24,22v15,-52,26,-189,-40,-189v-44,0,-50,48,-50,107v0,69,15,127,73,102xm170,15r-26,-23v-11,8,-26,13,-44,13v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v71,0,83,68,83,133v0,37,-4,76,-21,102r26,24","w":200},"R":{"d":"53,-231r0,91v45,-3,78,14,84,-50v4,-40,-41,-44,-84,-41xm21,0r0,-257v71,-1,149,-10,149,64v0,28,-12,57,-40,66v58,-1,23,105,53,127r-39,0v-11,-16,-8,-52,-10,-77v-7,-53,-39,-33,-81,-37r0,114r-32,0","w":186,"k":{"\u00d9":-7,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"Y":6,"W":-7,"U":-7,"T":6}},"S":{"d":"162,-190r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123v0,59,-44,76,-80,76v-60,0,-78,-31,-78,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,24,72,72","w":180},"T":{"d":"99,-229r0,229r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0","w":166,"k":{"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81","w":186},"V":{"d":"62,0r-63,-257r33,0r52,221r50,-221r33,0r-65,257r-40,0","w":166,"k":{"\u00f9":6,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"54,0r-51,-257r32,0r40,210r36,-210r38,0r37,210r39,-210r32,0r-53,257r-38,0r-36,-208r-37,208r-39,0","w":259,"k":{"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"69,-131r-63,-126r35,0r47,96r47,-96r33,0r-64,126r68,131r-35,0r-51,-103r-52,103r-33,0","w":173},"Y":{"d":"67,-101r-68,-156r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101","w":166,"k":{"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,0r0,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0","w":166},"[":{"d":"28,66r0,-323r65,0r0,24r-37,0r0,275r37,0r0,24r-65,0","w":93},"\\":{"d":"80,5r-84,-267r24,0r84,267r-24,0","w":100},"]":{"d":"65,-257r0,323r-64,0r0,-24r36,0r0,-275r-36,0r0,-24r64,0","w":93},"^":{"d":"17,-94r82,-156r18,0r82,156r-24,0r-67,-130r-67,130r-24,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"60,-204r0,38r-33,0v1,-43,-8,-78,33,-91r0,17v-15,7,-16,17,-16,36r16,0","w":86,"k":{"\u2018":30}},"a":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"b":{"d":"20,0r0,-257r30,0r1,86v7,-17,24,-27,44,-27v52,0,59,62,59,102v0,54,-18,101,-63,101v-21,0,-38,-15,-42,-29r0,24r-29,0xm48,-96v0,39,6,75,39,75v28,0,35,-31,35,-75v0,-46,-7,-76,-35,-76v-33,0,-39,39,-39,76","w":166},"c":{"d":"142,-134r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,30,-16,72,-64,72v-48,0,-66,-32,-66,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64","w":153,"k":{"y":7,"l":7}},"d":{"d":"147,-257r0,257r-29,0v-1,-7,2,-18,-1,-24v-4,14,-20,29,-41,29v-46,0,-63,-41,-63,-101v0,-40,5,-102,60,-102v18,-1,35,12,44,27r0,-86r30,0xm44,-96v0,46,8,75,36,75v33,0,38,-31,38,-75v0,-37,-5,-76,-38,-76v-28,0,-36,30,-36,76","w":166,"k":{"y":-4}},"e":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57"},"f":{"d":"29,0r0,-169r-28,0r0,-24r28,0v-5,-49,12,-74,64,-67r0,26v-18,-1,-34,-1,-34,18r0,23r33,0r0,24r-33,0r0,169r-30,0","w":93,"k":{"\u201d":-6,"\u2019":-6}},"g":{"d":"147,-193r0,181v0,58,-27,78,-66,78v-12,0,-58,0,-63,-48r30,0v1,18,15,24,31,24v50,0,38,-36,37,-68v-7,16,-25,26,-44,26v-56,0,-59,-70,-59,-96v0,-52,14,-102,63,-102v22,-1,36,17,42,30r0,-25r29,0xm80,-172v-28,0,-36,30,-36,76v0,31,5,70,35,70v33,0,39,-30,39,-70v0,-37,-5,-76,-38,-76","w":166,"k":{"y":-4}},"h":{"d":"20,0r0,-257r30,0r1,86v8,-16,29,-27,46,-27v50,0,50,38,50,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0","w":166},"i":{"d":"22,-222r0,-35r30,0r0,35r-30,0xm22,0r0,-193r30,0r0,193r-30,0","w":73},"j":{"d":"52,-257r0,35r-30,0r0,-35r30,0xm52,-193r0,212v2,37,-22,51,-60,46r0,-26v23,5,30,-7,30,-31r0,-201r30,0","w":73},"k":{"d":"95,-120r69,120r-35,0r-54,-95r-25,30r0,65r-30,0r0,-257r30,0r1,153r67,-89r36,0"},"l":{"d":"22,0r0,-257r30,0r0,257r-30,0","w":73,"k":{"w":-4}},"m":{"d":"23,0r0,-193r28,0v1,7,-2,18,1,23v15,-35,81,-41,89,3v9,-17,25,-31,45,-31v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-1,-39,-26,-39v-14,0,-36,9,-36,39r0,133r-30,0r0,-133v0,-15,-1,-39,-26,-39v-14,0,-36,9,-36,39r0,133r-30,0","w":259},"n":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0","w":166,"k":{"y":-4}},"o":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77","k":{"y":-4,"w":-4}},"p":{"d":"20,63r0,-256r29,0r0,24v4,-14,21,-29,42,-29v46,0,63,40,63,98v0,44,-13,105,-63,105v-18,1,-32,-12,-41,-27r0,85r-30,0xm48,-96v0,37,6,75,39,75v28,0,35,-29,35,-79v0,-42,-7,-72,-35,-72v-33,0,-39,32,-39,76","w":166},"q":{"d":"118,-96v0,-44,-5,-76,-38,-76v-28,0,-36,30,-36,72v0,50,8,79,36,79v33,0,38,-38,38,-75xm117,63r-1,-85v-7,17,-23,27,-40,27v-50,0,-63,-52,-63,-105v0,-58,17,-98,63,-98v22,-1,36,17,42,29r0,-24r29,0r0,256r-30,0","w":166},"r":{"d":"20,0r0,-193r30,0v1,9,-2,22,1,29v10,-22,27,-40,55,-32r0,30v-26,-7,-56,5,-56,44r0,122r-30,0","w":106,"k":{"y":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,95,20,95,90v0,40,-27,60,-63,60v-66,0,-66,-48,-66,-68r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32","w":146,"k":{"w":-4}},"t":{"d":"29,-193r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-4,21,16,23,33,20r0,25v-29,6,-72,-1,-63,-36r0,-133r-28,0r0,-24r28,0","w":93},"u":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0","w":166},"v":{"d":"56,0r-52,-193r33,0r36,155r36,-155r34,0r-53,193r-34,0","w":146,"k":{".":20,",":20}},"w":{"d":"49,0r-45,-193r31,0r32,158r33,-158r35,0r33,158r30,-158r32,0r-46,193r-33,0r-35,-158r-32,158r-35,0","w":233,"k":{".":13,",":13}},"x":{"d":"55,-100r-49,-93r33,0r35,69r35,-69r33,0r-50,93r52,100r-33,0r-39,-76r-37,76r-33,0","w":146},"y":{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-5,35,-30,57,-74,49r0,-23v28,7,45,-11,47,-35","w":146,"k":{"\u00e3":-4,"\u00e5":-4,"\u00e0":-4,"\u00e4":-4,"\u00e2":-4,"\u00e1":-4,"a":-4,".":20,",":20}},"z":{"d":"14,-167r0,-26r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0","w":140},"{":{"d":"1,-85r0,-21v36,1,26,-66,27,-104v2,-48,25,-48,65,-47r0,24v-53,-11,-37,46,-37,91v0,37,-25,43,-32,47v8,1,32,11,32,46r0,62v-4,22,12,33,37,29r0,24v-40,1,-63,1,-65,-47v-1,-39,9,-105,-27,-104","w":93},"|":{"d":"28,5r0,-267r24,0r0,267r-24,0","w":79},"}":{"d":"93,-106r0,21v-36,-1,-27,65,-28,104v-2,48,-25,48,-64,47r0,-24v52,10,36,-47,36,-91v0,-37,25,-43,32,-47v-8,-1,-32,-11,-32,-46r0,-62v4,-21,-11,-33,-36,-29r0,-24v39,-1,62,-1,64,47v1,39,-8,105,28,104","w":93},"~":{"d":"147,-66v-25,5,-54,-26,-76,-27v-17,0,-30,17,-36,26r-15,-16v10,-15,26,-34,49,-34v25,0,53,27,76,28v17,0,30,-18,36,-27r15,17v-11,15,-25,33,-49,33","w":216},"'":{"d":"31,-166r0,-91r24,0r0,91r-24,0","w":86},"\u201c":{"d":"62,-204r0,38r-34,0v1,-43,-7,-78,34,-91r0,17v-15,7,-16,17,-16,36r16,0xm118,-204r0,38r-33,0v1,-43,-8,-78,33,-91r0,17v-15,7,-16,17,-16,36r16,0","w":146},"\u2013":{"d":"0,-89r0,-26r180,0r0,26r-180,0","w":180},"\u201d":{"d":"62,-257v-1,43,7,78,-34,91r0,-17v16,-7,16,-17,16,-36r-16,0r0,-38r34,0xm118,-257v-1,43,8,78,-33,91r0,-17v16,-7,16,-17,16,-36r-16,0r0,-38r33,0","w":146,"k":{" ":13}},"\u2026":{"d":"283,0r0,-38r33,0r0,38r-33,0xm163,0r0,-38r34,0r0,38r-34,0xm44,0r0,-38r33,0r0,38r-33,0","w":360},"`":{"d":"-6,-270r36,0r25,51r-22,0","w":73},"\u00b4":{"d":"19,-219r25,-51r35,0r-39,51r-21,0","w":73},"\u2014":{"d":"0,-89r0,-26r360,0r0,26r-360,0","w":360},"\u00c6":{"d":"-3,0r99,-257r151,0r0,28r-96,0r0,81r90,0r0,28r-90,0r0,92r100,0r0,28r-131,0r0,-71r-63,0r-27,71r-33,0xm116,-231r-50,135r54,0r0,-135r-4,0","w":259},"\u00d8":{"d":"32,9r12,-29v-22,-26,-27,-69,-27,-109v0,-65,12,-133,83,-133v17,0,30,3,40,10r9,-21r19,8r-11,27v21,26,26,68,26,109v0,65,-12,134,-83,134v-15,0,-29,-3,-40,-10r-9,22xm142,-202r-70,170v7,7,16,11,28,11v64,4,54,-127,42,-181xm58,-55r71,-170v-7,-7,-17,-11,-29,-11v-64,-4,-54,126,-42,181","w":200},"\u00e6":{"d":"104,-100v-17,15,-63,7,-63,48v0,18,8,33,27,33v50,-10,33,-41,36,-81xm199,-63r30,0v0,21,-12,68,-61,68v-42,0,-48,-29,-52,-35v-10,21,-25,35,-54,35v-62,0,-71,-98,-16,-109v22,-11,58,-4,58,-42v0,-18,-8,-28,-28,-28v-31,1,-31,30,-31,39r-31,0v0,-44,20,-63,64,-63v27,-1,41,13,47,27v7,-16,27,-27,45,-27v59,2,62,56,61,105r-99,0v0,30,1,74,34,74v29,0,33,-29,33,-44xm134,-117r65,0v1,-28,-4,-57,-32,-57v-33,0,-33,38,-33,57","w":240},"\u00f8":{"d":"23,14r12,-27v-50,-53,-30,-224,75,-179r10,-21r17,7r-11,26v47,57,28,223,-76,179r-10,22xm48,-45r52,-122v-40,-24,-58,19,-58,71v0,19,1,37,6,51xm112,-147r-52,121v38,24,58,-19,58,-70v0,-18,-1,-37,-6,-51"},"\u2122":{"d":"305,-109r0,-122r-50,122r-15,0r-50,-122r0,122r-24,0r0,-148r35,0r47,114r46,-114r35,0r0,148r-24,0xm67,-109r0,-126r-48,0r0,-22r118,0r0,22r-47,0r0,126r-23,0","w":356},"\u00ae":{"d":"144,-17v61,0,110,-50,110,-112v0,-62,-49,-111,-110,-111v-61,0,-110,49,-110,111v0,62,49,112,110,112xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm114,-137v29,-2,68,8,67,-24v-1,-32,-38,-21,-67,-23r0,47xm91,-50r0,-156v52,0,113,-8,113,46v0,28,-18,40,-42,43r45,67r-24,0r-43,-65r-26,0r0,65r-23,0","w":288},"\u00d7":{"d":"173,-11r-65,-65r-65,65r-15,-15r65,-65r-65,-65r15,-15r65,64r65,-64r15,15r-65,65r65,65","w":216},"\u00a9":{"d":"144,-17v61,0,110,-50,110,-112v0,-62,-49,-111,-110,-111v-61,0,-110,49,-110,111v0,62,49,112,110,112xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm195,-100r22,0v-5,36,-35,55,-71,55v-49,0,-79,-33,-79,-82v0,-92,137,-115,150,-27r-22,0v-19,-63,-104,-33,-104,27v0,33,21,61,55,61v27,0,45,-15,49,-34","w":288},"\u00c1":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm72,-278r25,-51r35,0r-38,51r-22,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c2":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm42,-278r37,-51r28,0r36,51r-29,0r-21,-32r-22,32r-29,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c4":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm107,-286r0,-36r28,0r0,36r-28,0xm49,-286r0,-36r28,0r0,36r-28,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c0":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm52,-329r35,0r26,51r-22,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c5":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm72,-304v0,11,10,21,21,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-21,9,-21,20xm57,-304v0,-20,16,-35,36,-35v20,0,35,15,35,35v0,20,-15,36,-35,36v-20,0,-36,-16,-36,-36","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c3":{"d":"92,-221v-15,39,-23,84,-36,125r69,0xm-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm73,-323v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c7":{"d":"178,-88v-2,48,-23,91,-76,93v-2,5,-10,10,-9,15v19,-3,38,0,39,25v1,31,-50,38,-74,23r5,-12v9,4,48,7,43,-10v0,-21,-33,-4,-37,-17r18,-25v-62,-6,-69,-72,-70,-133v0,-65,12,-133,83,-133v52,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67r33,0","w":186},"\u00c9":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm78,-278r25,-51r36,0r-39,51r-22,0","w":166},"\u00ca":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm38,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":166},"\u00cb":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm104,-286r0,-36r28,0r0,36r-28,0xm46,-286r0,-36r28,0r0,36r-28,0","w":166},"\u00c8":{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0xm49,-329r36,0r25,51r-22,0","w":166},"\u00cd":{"d":"21,0r0,-257r32,0r0,257r-32,0xm21,-278r25,-51r36,0r-39,51r-22,0","w":73},"\u00ce":{"d":"21,0r0,-257r32,0r0,257r-32,0xm-14,-278r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":73},"\u00cf":{"d":"21,0r0,-257r32,0r0,257r-32,0xm51,-286r0,-36r29,0r0,36r-29,0xm-7,-286r0,-36r28,0r0,36r-28,0","w":73},"\u00cc":{"d":"21,0r0,-257r32,0r0,257r-32,0xm-8,-329r35,0r25,51r-21,0","w":73},"\u00d1":{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0xm80,-323v18,0,49,30,53,-2r19,0v0,18,-10,40,-31,40v-23,0,-50,-28,-55,2r-20,0v0,-21,15,-40,34,-40","w":200},"\u00d3":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm86,-278r25,-51r35,0r-39,51r-21,0","w":200,"k":{"Y":9,"X":9}},"\u00d4":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm50,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":200,"k":{"Y":9,"X":9}},"\u00d6":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm116,-286r0,-36r28,0r0,36r-28,0xm57,-286r0,-36r28,0r0,36r-28,0","w":200,"k":{"Y":9,"X":9}},"\u00d2":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm54,-329r36,0r25,51r-22,0","w":200,"k":{"Y":9,"X":9}},"\u00d5":{"d":"100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107xm100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm80,-323v18,0,49,30,53,-2r19,0v0,18,-10,40,-31,40v-23,0,-50,-28,-55,2r-20,0v0,-21,15,-40,34,-40","w":200,"k":{"Y":9,"X":9}},"\u00da":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm80,-278r25,-51r36,0r-39,51r-22,0","w":186},"\u00db":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm44,-278r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":186},"\u00dc":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm108,-286r0,-36r28,0r0,36r-28,0xm50,-286r0,-36r28,0r0,36r-28,0","w":186},"\u00d9":{"d":"18,-76r0,-181r32,0r0,181v0,38,11,55,43,55v33,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-52,0,-75,-28,-75,-81xm47,-329r35,0r26,51r-22,0","w":186},"\u00e1":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm68,-219r25,-51r35,0r-39,51r-21,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e2":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm30,-219r37,-51r27,0r36,51r-28,0r-22,-32r-22,32r-28,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e4":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm95,-227r0,-36r28,0r0,36r-28,0xm36,-227r0,-36r28,0r0,36r-28,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e0":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm40,-270r36,0r25,51r-22,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e5":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm59,-248v0,11,10,20,21,20v11,0,20,-9,20,-20v0,-11,-9,-21,-20,-21v-11,0,-21,10,-21,21xm44,-248v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,20,-15,35,-35,35v-20,0,-36,-15,-36,-35","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e3":{"d":"108,-105v-21,20,-68,11,-66,53v0,20,6,33,27,33v40,0,42,-43,39,-86xm45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,11,7,20,16,14r0,21v-20,3,-42,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm59,-264v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e7":{"d":"142,-67v1,31,-19,71,-58,72v-3,5,-11,10,-10,15v19,-3,38,0,39,25v1,31,-50,38,-74,23r6,-12v9,4,48,7,42,-10v1,-14,-22,-15,-31,-10v-11,-11,8,-21,13,-32v-47,-5,-56,-42,-57,-98v0,-48,9,-104,68,-104v53,0,62,42,62,64r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0","w":153,"k":{"y":7,"l":7}},"\u00e9":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm71,-219r25,-51r35,0r-39,51r-21,0"},"\u00ea":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm32,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0"},"\u00eb":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm98,-227r0,-36r28,0r0,36r-28,0xm39,-227r0,-36r28,0r0,36r-28,0"},"\u00e8":{"d":"147,-93r-102,0v0,30,0,74,37,74v29,0,33,-29,33,-44r30,0v0,21,-12,68,-65,68v-48,0,-67,-32,-67,-99v0,-48,10,-104,69,-104v64,0,65,55,65,105xm46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm39,-270r35,0r25,51r-22,0"},"\u00ed":{"d":"22,0r0,-193r30,0r0,193r-30,0xm22,-219r25,-51r35,0r-39,51r-21,0","w":73},"\u00ee":{"d":"22,0r0,-193r30,0r0,193r-30,0xm-13,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","w":73},"\u00ef":{"d":"22,0r0,-193r30,0r0,193r-30,0xm52,-227r0,-36r28,0r0,36r-28,0xm-6,-227r0,-36r28,0r0,36r-28,0","w":73},"\u00ec":{"d":"22,0r0,-193r30,0r0,193r-30,0xm-9,-270r35,0r25,51r-21,0","w":73},"\u00f1":{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0xm64,-264v18,1,49,30,53,-2r19,0v0,18,-10,40,-31,40v-23,0,-50,-28,-55,2r-20,0v0,-21,15,-40,34,-40","w":166,"k":{"y":-4}},"\u00f3":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm68,-219r25,-51r36,0r-39,51r-22,0","k":{"y":-4,"w":-4}},"\u00f4":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm30,-219r36,-51r28,0r36,51r-28,0r-22,-32r-22,32r-28,0","k":{"y":-4,"w":-4}},"\u00f6":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm95,-227r0,-36r28,0r0,36r-28,0xm37,-227r0,-36r28,0r0,36r-28,0","k":{"y":-4,"w":-4}},"\u00f2":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm33,-270r35,0r25,51r-21,0","k":{"y":-4,"w":-4}},"\u00f5":{"d":"10,-96v0,-54,14,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-6,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm60,-264v0,0,50,30,53,-2r20,0v0,18,-10,40,-31,40v-23,0,-51,-29,-56,2r-19,0v0,-21,14,-40,33,-40","k":{"y":-4,"w":-4}},"\u00fa":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm70,-219r25,-51r36,0r-39,51r-22,0","w":166},"\u00fb":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm33,-219r37,-51r28,0r36,51r-29,0r-21,-32r-22,32r-29,0","w":166},"\u00fc":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm98,-227r0,-36r28,0r0,36r-28,0xm40,-227r0,-36r28,0r0,36r-28,0","w":166},"\u00f9":{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm36,-270r35,0r25,51r-21,0","w":166},"\u00a0":{"w":86,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Trademark:
 * Helvetica, Neue Helvetica is a trademark of Heidelberger Druckmaschinen AG
 * which may be registered in certain jurisdictions, exclusively licensed through
 * Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen
 * AG.
 * 
 * Full name:
 * HelveticaNeueLTPro-HvCn
 * 
 * Description:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH
 * 
 * Designer:
 * Linotype Library GmbH
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.Linotype.com
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Helvetica Neue LT Pro","font-weight":750,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 6 4 7 2 4 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-8 -348 360 80.825","underline-thickness":"18","underline-position":"-18","stemh":"45","stemv":"58","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93,"k":{"\u201c":13,"\u2018":13}},"!":{"d":"32,0r0,-54r57,0r0,54r-57,0xm31,-173r0,-84r58,0v1,64,-2,125,-6,184r-45,0","w":120},"\"":{"d":"26,-131r0,-126r47,0r0,126r-47,0xm100,-131r0,-126r47,0r0,126r-47,0","w":173},"#":{"d":"103,-102r7,-46r-26,0r-7,46r26,0xm24,0r8,-62r-26,0r0,-40r32,0r6,-46r-26,0r0,-40r32,0r8,-62r40,0r-8,62r26,0r8,-62r40,0r-9,62r26,0r0,40r-32,0r-6,46r26,0r0,40r-32,0r-8,62r-40,0r9,-62r-26,0r-9,62r-39,0","w":187},"$":{"d":"117,-181v0,-21,-4,-33,-24,-34v-15,0,-24,9,-24,26v0,53,111,26,111,114v0,53,-28,76,-74,80r0,32r-28,0r0,-32v-42,-1,-76,-25,-70,-81r58,0v-1,23,2,41,26,41v21,0,27,-16,27,-29v0,-54,-110,-23,-110,-117v0,-38,19,-69,69,-74r0,-27r28,0r0,27v52,5,70,32,69,74r-58,0","w":187},"%":{"d":"159,-64v0,-41,11,-69,57,-69v51,0,57,30,57,69v0,39,-5,69,-56,69v-52,0,-58,-30,-58,-69xm7,-186v0,-41,11,-69,57,-69v51,0,57,30,57,69v0,39,-6,69,-57,69v-52,0,-57,-30,-57,-69xm202,-64v0,28,3,39,14,39v13,0,15,-10,15,-41v0,-33,-5,-37,-15,-37v-13,0,-14,17,-14,39xm66,5r113,-260r36,0r-113,260r-36,0xm49,-186v0,28,4,39,15,39v13,0,14,-10,14,-41v0,-33,-4,-37,-14,-37v-13,0,-15,17,-15,39","w":280},"&":{"d":"125,-135r33,45v7,-10,9,-22,10,-34r52,0v-2,29,-9,54,-30,76r35,48r-64,0r-11,-16v-19,13,-38,21,-64,21v-59,0,-79,-40,-79,-72v0,-38,20,-54,50,-76v-10,-13,-25,-38,-25,-57v0,-40,31,-60,70,-60v37,0,68,19,68,58v0,31,-21,49,-45,67xm123,-53r-38,-52v-33,17,-27,62,11,65v10,0,20,-5,27,-13xm100,-226v-29,3,-18,41,-1,55v22,-11,34,-52,1,-55","w":226},"\u2019":{"d":"75,-257v-2,62,14,120,-56,126r0,-28v16,0,22,-11,22,-35r-22,0r0,-63r56,0","w":93,"k":{"s":20,"r":13,"\u2019":13}},"(":{"d":"115,66r-47,0v-27,-43,-50,-101,-50,-161v0,-60,23,-119,50,-162r47,0v-51,70,-53,253,0,323","w":113},")":{"d":"-2,-257r47,0v27,43,51,102,51,162v0,60,-24,118,-51,161r-47,0v22,-37,42,-95,42,-161v0,-66,-20,-125,-42,-162","w":113},"*":{"d":"3,-195r10,-31r45,18r-1,-49r33,0r-1,49r44,-18r11,31r-45,15r29,39r-26,19r-29,-39r-28,39r-26,-19r29,-39","w":146},"+":{"d":"85,0r0,-68r-68,0r0,-46r68,0r0,-68r46,0r0,68r68,0r0,46r-68,0r0,68r-46,0","w":216},",":{"d":"19,-2r0,-63r56,0v-2,62,14,120,-56,126r0,-28v16,0,22,-11,22,-35r-22,0","w":93,"k":{"\u201d":27,"\u2019":27," ":13}},"-":{"d":"12,-80r0,-49r109,0r0,49r-109,0","w":133},".":{"d":"19,0r0,-65r56,0r0,65r-56,0","w":93,"k":{"\u201d":27,"\u2019":27," ":13}},"\/":{"d":"-2,5r82,-267r49,0r-82,267r-49,0","w":126},"0":{"d":"177,-125v0,73,-7,130,-83,130v-76,0,-84,-48,-84,-130v0,-73,8,-130,84,-130v76,0,83,48,83,130xm70,-125v0,72,3,92,24,92v21,0,23,-20,23,-92v0,-73,-2,-92,-23,-92v-21,0,-24,19,-24,92","w":187},"1":{"d":"71,0r0,-177r-49,0r0,-38v46,3,67,-22,67,-40r42,0r0,255r-60,0","w":187},"2":{"d":"12,0v-8,-94,102,-129,102,-183v0,-20,-4,-34,-21,-34v-23,0,-23,28,-23,47r-56,0v-2,-57,24,-85,82,-85v62,0,79,31,79,71v12,58,-77,104,-90,137r90,0r0,47r-163,0","w":187},"3":{"d":"14,-180v0,-54,28,-75,82,-75v50,0,74,21,74,70v1,27,-15,45,-36,52v30,7,42,25,42,61v0,55,-36,77,-81,77v-50,0,-83,-15,-83,-80r58,0v0,23,4,42,22,42v15,0,23,-9,23,-38v1,-40,-13,-41,-46,-40r0,-38v31,3,44,-6,43,-39v0,-20,-7,-29,-21,-29v-13,0,-23,8,-23,37r-54,0","w":187},"4":{"d":"8,-49r0,-47r83,-154r65,0r0,154r23,0r0,47r-23,0r0,49r-57,0r0,-49r-91,0xm99,-96r0,-85r-43,85r43,0","w":187},"5":{"d":"10,-75r58,0v-1,21,1,42,22,42v19,0,23,-20,23,-55v0,-30,-6,-44,-22,-44v-11,0,-20,5,-22,20r-56,0r8,-138r142,0r0,47r-96,0v0,16,-4,35,-2,49v41,-45,109,-17,109,68v0,65,-27,91,-84,91v-57,-1,-83,-28,-80,-80","w":187},"6":{"d":"95,-33v17,0,22,-16,22,-44v0,-31,-4,-45,-23,-45v-18,0,-22,17,-22,40v0,30,5,49,23,49xm114,-190v1,-15,-4,-27,-18,-27v-19,0,-28,20,-25,72v8,-15,23,-22,45,-22v39,0,61,22,61,79v0,51,-16,93,-83,93v-75,0,-84,-48,-84,-124v0,-85,6,-136,88,-136v46,0,73,19,74,65r-58,0","w":187},"7":{"d":"116,-199r-104,0r0,-51r162,0r0,45v-39,59,-66,148,-69,205r-63,0v4,-59,37,-151,74,-199","w":187},"8":{"d":"94,-114v-19,0,-25,17,-25,40v0,23,6,41,25,41v19,0,24,-18,24,-41v0,-23,-5,-40,-24,-40xm94,-152v14,0,21,-8,21,-33v0,-18,-5,-32,-21,-32v-16,0,-22,14,-22,32v0,25,8,33,22,33xm94,-255v57,0,77,26,77,66v0,29,-13,49,-36,54v27,4,43,25,43,60v0,43,-15,80,-84,80v-69,0,-85,-34,-85,-80v0,-29,12,-55,42,-60v-22,-6,-35,-24,-35,-54v0,-39,21,-66,78,-66","w":187},"9":{"d":"93,-127v18,0,22,-18,22,-41v0,-30,-4,-49,-22,-49v-17,0,-23,17,-23,45v0,31,4,45,23,45xm73,-60v0,14,4,27,18,27v19,0,28,-20,25,-72v-8,15,-23,22,-45,22v-39,0,-61,-22,-61,-79v0,-51,16,-93,83,-93v75,0,84,48,84,124v0,85,-6,136,-88,136v-46,0,-73,-19,-74,-65r58,0","w":187},":":{"d":"19,-127r0,-65r56,0r0,65r-56,0xm19,0r0,-65r56,0r0,65r-56,0","w":93},";":{"d":"19,-127r0,-65r56,0r0,65r-56,0xm19,-2r0,-63r56,0v-2,62,14,120,-56,126r0,-28v16,0,22,-11,22,-35r-22,0","w":93},"\u037e":{"d":"19,-127r0,-65r56,0r0,65r-56,0xm19,-2r0,-63r56,0v-2,62,14,120,-56,126r0,-28v16,0,22,-11,22,-35r-22,0","w":93},"<":{"d":"17,-68r0,-46r182,-71r0,47r-122,47r122,47r0,47","w":216},"=":{"d":"17,-28r0,-47r182,0r0,47r-182,0xm17,-107r0,-47r182,0r0,47r-182,0","w":216},">":{"d":"199,-114r0,46r-182,71r0,-47r122,-47r-122,-47r0,-47","w":216},"?":{"d":"59,0r0,-54r56,0r0,54r-56,0xm60,-73v-9,-72,50,-69,50,-125v0,-17,-5,-26,-20,-26v-15,0,-22,13,-22,47r-54,0v-2,-54,21,-85,75,-85v49,0,77,26,77,70v-1,69,-59,68,-52,119r-54,0"},"@":{"d":"189,-176r5,-18r31,0r-23,104v0,5,2,8,7,8v15,0,37,-24,37,-63v0,-53,-43,-83,-96,-83v-62,0,-101,44,-101,100v0,57,45,99,104,99v33,0,58,-9,78,-22r32,0v-66,103,-253,53,-253,-78v0,-76,63,-133,140,-133v66,0,128,43,128,109v0,76,-67,103,-90,103v-13,0,-22,-6,-23,-19v-31,34,-97,21,-97,-42v0,-63,80,-124,121,-65xm134,-86v41,3,61,-75,15,-78v-40,-3,-62,74,-15,78","w":288},"A":{"d":"1,0r65,-257r76,0r64,257r-63,0r-9,-49r-62,0r-9,49r-62,0xm125,-96r-23,-114r-21,114r44,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"B":{"d":"79,-114r0,69v31,3,52,-7,51,-33v-2,-35,-20,-38,-51,-36xm79,-212r0,58v28,3,48,-6,46,-31v3,-19,-19,-31,-46,-27xm19,0r0,-257v75,1,167,-15,167,63v0,31,-19,52,-41,59v19,3,48,11,48,64v0,30,-13,71,-85,71r-89,0","w":206},"C":{"d":"185,-168r-59,0v0,-37,-4,-54,-24,-54v-24,0,-26,24,-26,91v0,76,2,96,27,96v22,0,26,-26,26,-66r58,0v1,62,-12,106,-91,106v-77,0,-83,-58,-83,-135v0,-66,4,-132,89,-132v57,0,86,28,83,94","w":193},"D":{"d":"79,-212r0,167v47,1,54,-1,54,-88v0,-73,-5,-81,-54,-79xm19,0r0,-257r89,0v60,0,86,31,86,120v0,93,-12,137,-92,137r-83,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"V":6,"A":6,".":9,",":9}},"E":{"d":"19,0r0,-257r148,0r0,49r-88,0r0,51r83,0r0,49r-83,0r0,59r92,0r0,49r-152,0"},"F":{"d":"19,0r0,-257r148,0r0,49r-88,0r0,51r83,0r0,49r-83,0r0,108r-60,0","w":173,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"A":13,".":40,",":40}},"G":{"d":"186,-179r-59,0v0,-17,-2,-43,-24,-43v-24,0,-27,26,-27,94v0,70,3,93,27,93v24,0,29,-27,28,-63r-28,0r0,-40r84,0r0,138r-41,0r-2,-24v-10,23,-33,29,-56,29v-64,0,-75,-48,-75,-128v0,-84,5,-139,91,-139v78,0,82,54,82,83","w":200,"k":{".":9}},"H":{"d":"19,0r0,-257r60,0r0,96r48,0r0,-96r61,0r0,257r-61,0r0,-110r-48,0r0,110r-60,0","w":206},"I":{"d":"20,0r0,-257r60,0r0,257r-60,0","w":100},"J":{"d":"101,-77r0,-180r60,0r0,180v0,48,-20,82,-79,82v-60,0,-79,-31,-76,-87r56,0v0,21,-3,46,20,47v17,0,19,-18,19,-42","k":{"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e3":4,"\u00e5":4,"\u00e0":4,"\u00e4":4,"\u00e2":4,"\u00e1":4,"e":2,"a":4,".":9,",":9}},"K":{"d":"19,0r0,-257r60,0r1,101r56,-101r66,0r-68,111r76,146r-68,0r-47,-97r-16,25r0,72r-60,0","w":206,"k":{"\u00f5":4,"\u00f2":4,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"y":11,"o":4,"e":4,"O":6}},"L":{"d":"19,0r0,-257r60,0r0,208r88,0r0,49r-148,0","w":166,"k":{"\u201d":33,"y":20,"Y":33,"W":27,"V":27,"T":27,"\u2019":33}},"M":{"d":"21,0r0,-257r88,0r32,169r31,-169r88,0r0,257r-57,0r0,-200r-40,200r-46,0r-42,-200r0,200r-54,0","w":280},"N":{"d":"19,0r0,-257r69,0r51,167r0,-167r56,0r0,257r-69,0r-53,-177r0,177r-54,0","w":213},"O":{"d":"194,-129v0,71,-6,134,-91,134v-80,0,-90,-52,-90,-134v0,-82,10,-133,90,-133v85,0,91,62,91,133xm76,-129v0,71,3,94,27,94v24,0,28,-23,28,-94v0,-71,-4,-93,-28,-93v-24,0,-27,22,-27,93","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"P":{"d":"79,-212r0,67v30,4,50,-8,47,-32v2,-26,-16,-39,-47,-35xm19,0r0,-257r93,0v64,0,76,46,76,78v0,55,-38,86,-109,79r0,100r-60,0","w":200,"k":{"\u00f5":13,"\u00f2":13,"\u00f6":13,"\u00f4":13,"\u00f3":13,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"\u00e1":13,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"o":13,"e":13,"a":13,"A":20,".":58,",":58}},"Q":{"d":"134,1v-8,2,-19,5,-31,4v-80,0,-90,-52,-90,-134v0,-82,10,-133,90,-133v85,0,91,62,91,133v0,41,-1,79,-19,104r29,30r-36,32xm76,-129v0,71,3,94,27,94v24,0,28,-23,28,-94v0,-71,-4,-93,-28,-93v-24,0,-27,22,-27,93","w":206},"R":{"d":"19,0r0,-257r101,0v87,-6,88,118,26,130v39,6,41,29,42,64v0,55,5,52,11,63r-65,0v-5,-9,-7,-23,-7,-52v0,-59,-9,-54,-48,-54r0,106r-60,0xm79,-215r0,66v30,4,53,-11,50,-33v3,-26,-19,-36,-50,-33","w":206,"k":{"Y":11,"T":6}},"S":{"d":"120,-186v0,-24,-4,-35,-24,-36v-15,0,-24,9,-24,28v0,54,111,26,111,117v0,59,-33,82,-88,82v-50,0,-92,-19,-85,-83r59,0v-1,23,2,43,26,43v21,0,27,-16,27,-31v0,-55,-110,-24,-110,-120v0,-41,22,-76,84,-76v62,0,83,31,82,76r-58,0","w":193},"T":{"d":"56,0r0,-208r-54,0r0,-49r169,0r0,49r-54,0r0,208r-61,0","w":172,"k":{"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":27,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"O":6,"A":20,";":27,":":27,".":33,"-":27,",":33}},"U":{"d":"185,-257r0,172v0,50,-15,90,-85,90v-70,0,-85,-40,-85,-90r0,-172r61,0r0,190v0,20,8,32,24,32v16,0,24,-12,24,-32r0,-190r61,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"V":{"d":"57,0r-56,-257r65,0r31,199r31,-199r65,0r-59,257r-77,0","w":193,"k":{"\u00f9":6,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":11,"\u00e5":11,"\u00e0":11,"\u00e4":11,"\u00e2":11,"\u00e1":11,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"u":6,"o":6,"e":6,"a":11,"O":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"48,0r-46,-257r61,0r23,183r26,-183r56,0r30,183r22,-183r58,0r-45,257r-67,0r-27,-183r-25,183r-66,0","w":280,"k":{"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"o":6,"e":6,"a":6,"A":13,".":27,"-":6,",":27}},"X":{"d":"1,0r63,-131r-57,-126r67,0r27,79r26,-79r67,0r-59,126r64,131r-69,0r-31,-85r-31,85r-67,0","w":200},"Y":{"d":"66,0r0,-101r-65,-156r67,0r30,95r29,-95r65,0r-65,156r0,101r-61,0","w":192,"k":{"\u00f9":20,"\u00fc":20,"\u00fb":20,"\u00fa":20,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00d5":13,"\u00d2":13,"\u00d6":13,"\u00d4":13,"\u00d3":13,"\u00c3":33,"\u00c5":33,"\u00c0":33,"\u00c4":33,"\u00c2":33,"\u00c1":33,"u":20,"o":27,"i":9,"e":27,"a":27,"S":9,"O":13,"A":33,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,0r0,-45r87,-163r-80,0r0,-49r150,0r0,42r-88,166r88,0r0,49r-157,0","w":173},"[":{"d":"30,66r0,-323r91,0r0,40r-37,0r0,243r37,0r0,40r-91,0","w":119},"\\":{"d":"80,5r-82,-267r49,0r82,267r-49,0","w":126},"]":{"d":"-1,66r0,-40r37,0r0,-243r-37,0r0,-40r91,0r0,323r-91,0","w":119},"^":{"d":"20,-111r67,-139r42,0r67,139r-45,0r-43,-90r-43,90r-45,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0"},"\u2018":{"d":"19,-131v2,-62,-14,-120,56,-126r0,28v-16,0,-22,11,-22,35r22,0r0,63r-56,0","w":93,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"\u2018":13,"A":13}},"a":{"d":"107,-96v-28,16,-41,6,-41,36v0,15,6,25,17,25v25,7,24,-41,24,-61xm15,-135v0,-50,28,-65,76,-65v48,0,70,17,70,58v0,47,-7,106,6,142r-56,0v-4,-6,-1,-16,-4,-22v-22,44,-97,36,-97,-32v0,-49,37,-61,76,-66v30,-4,27,-41,2,-42v-16,0,-21,10,-21,27r-52,0","k":{"y":6,"w":4,"v":4}},"b":{"d":"73,-96v0,38,4,59,21,59v22,0,23,-31,23,-62v0,-36,-1,-58,-22,-58v-20,0,-22,26,-22,61xm16,0r0,-257r59,0r0,83v10,-21,28,-26,44,-26v48,0,56,44,56,104v0,73,-21,101,-60,101v-27,1,-37,-18,-43,-29r0,24r-56,0","w":186,"k":{"y":6,"v":4}},"c":{"d":"166,-121r-54,0v0,-29,-7,-41,-22,-41v-19,0,-22,25,-22,65v0,44,3,64,22,64v17,0,21,-11,22,-46r54,0v0,60,-24,84,-77,84v-73,0,-79,-51,-79,-109v0,-55,16,-96,79,-96v62,0,77,33,77,79","w":173,"k":{"y":6}},"d":{"d":"113,-96v0,-35,-1,-61,-21,-61v-21,0,-22,22,-22,58v0,31,1,62,23,62v17,0,20,-21,20,-59xm114,0r0,-24v-5,13,-16,29,-42,29v-39,0,-60,-28,-60,-101v0,-60,8,-104,56,-104v16,0,34,5,44,26r0,-83r59,0r0,257r-57,0","w":186},"e":{"d":"68,-122r42,0v0,-27,-4,-42,-20,-42v-19,0,-22,16,-22,42xm166,-88r-98,0v-1,29,0,57,21,57v15,0,21,-12,22,-36r54,0v-1,49,-27,72,-76,72v-73,0,-79,-51,-79,-109v0,-55,16,-96,79,-96v72,0,77,46,77,112","w":173},"f":{"d":"24,0r0,-154r-24,0r0,-41r24,0v-9,-56,24,-73,85,-66r0,39v-23,-2,-31,4,-27,27r27,0r0,41r-27,0r0,154r-58,0","w":106,"k":{"\u201d":-6,"\u2019":-6}},"g":{"d":"71,-101v0,41,6,54,22,54v16,0,21,-12,21,-56v0,-36,-4,-52,-21,-52v-19,0,-22,22,-22,54xm71,12v2,10,8,17,20,16v22,4,24,-27,23,-61v-8,23,-26,28,-46,28v-42,0,-55,-41,-55,-95v0,-46,7,-100,57,-100v27,-1,38,16,47,32r0,-27r54,0r0,188v0,44,-19,73,-81,73v-57,0,-73,-25,-73,-54r54,0","w":186},"h":{"d":"16,0r0,-257r59,0r0,83v22,-44,96,-33,96,28r0,146r-59,0r0,-133v0,-14,-6,-22,-17,-22v-11,0,-20,9,-20,28r0,127r-59,0","w":186},"i":{"d":"18,-215r0,-45r58,0r0,45r-58,0xm18,0r0,-195r58,0r0,195r-58,0","w":93},"j":{"d":"18,-215r0,-45r58,0r0,45r-58,0xm18,-2r0,-193r58,0r0,200v6,50,-29,62,-84,58r0,-40v20,1,26,-5,26,-25","w":93},"k":{"d":"16,0r0,-257r59,0r0,132r44,-70r64,0r-56,79r63,116r-64,0r-36,-73r-15,20r0,53r-59,0","w":186,"k":{"\u00f5":4,"\u00f2":4,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"o":4,"e":4}},"l":{"d":"18,0r0,-257r58,0r0,257r-58,0","w":93},"m":{"d":"18,0r0,-195r56,0v1,7,-2,18,1,23v16,-33,77,-45,95,2v22,-49,99,-38,99,24r0,146r-59,0r0,-133v0,-14,-6,-22,-17,-22v-11,0,-21,9,-21,28r0,127r-58,0r0,-133v0,-14,-6,-22,-17,-22v-11,0,-21,9,-21,28r0,127r-58,0","w":286},"n":{"d":"16,0r0,-195r56,0v1,7,-2,18,1,23v18,-43,98,-38,98,26r0,146r-59,0r0,-133v0,-14,-6,-22,-17,-22v-11,0,-20,9,-20,28r0,127r-59,0","w":186},"o":{"d":"90,5v-71,0,-80,-44,-80,-102v0,-58,13,-103,80,-103v71,0,80,44,80,102v0,58,-13,103,-80,103xm112,-97v0,-48,-4,-65,-22,-65v-17,0,-22,17,-22,64v0,48,5,65,22,65v18,0,22,-16,22,-64","k":{"y":4,"v":2}},"p":{"d":"73,-99v0,35,2,62,22,62v21,0,22,-23,22,-59v0,-31,-1,-61,-23,-61v-17,0,-21,20,-21,58xm16,63r0,-258r56,0v1,7,-2,18,1,24v4,-13,16,-29,42,-29v39,0,60,28,60,101v0,60,-8,104,-56,104v-16,0,-34,-5,-44,-26r0,84r-59,0","w":186,"k":{"y":4}},"q":{"d":"113,-99v0,-38,-3,-58,-20,-58v-22,0,-23,30,-23,61v0,36,1,59,22,59v20,0,21,-27,21,-62xm112,63r0,-84v-10,21,-28,26,-44,26v-48,0,-56,-44,-56,-104v0,-73,21,-101,60,-101v26,0,37,16,42,29r0,-24r57,0r0,258r-59,0","w":186},"r":{"d":"16,0r0,-195r56,0v1,9,-2,21,1,28v9,-19,28,-37,56,-32r0,55v-28,-6,-54,1,-54,33r0,111r-59,0","w":133,"k":{"\u00f5":4,"\u00f2":4,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e7":4,"\u00e3":4,"\u00e5":4,"\u00e0":4,"\u00e4":4,"\u00e2":4,"\u00e1":4,"q":6,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,".":27,"-":13,",":27}},"s":{"d":"61,-62v0,18,3,31,22,31v29,0,28,-35,-2,-44v-48,-14,-71,-25,-71,-66v0,-39,28,-59,75,-59v57,0,71,26,70,61r-52,0v1,-18,-5,-26,-19,-25v-15,0,-20,8,-20,18v0,34,94,11,94,87v0,39,-26,64,-75,64v-56,-1,-76,-20,-74,-67r52,0","w":166,"k":{"w":2}},"t":{"d":"76,2v-81,0,-44,-94,-52,-156r-24,0r0,-41r24,0r0,-57r58,0r0,57r27,0r0,41r-27,0r0,98v-2,17,12,20,27,17r0,39v-11,1,-22,2,-33,2","w":113},"u":{"d":"171,-195r0,195r-57,0r0,-23v-18,43,-98,38,-98,-26r0,-146r59,0r0,133v0,14,5,22,16,22v11,0,21,-8,21,-27r0,-128r59,0","w":186},"v":{"d":"52,0r-48,-195r60,0r24,144r23,-144r58,0r-48,195r-69,0","w":173,"k":{"\u00f5":2,"\u00f2":2,"\u00f6":2,"\u00f4":2,"\u00f3":2,"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e3":2,"\u00e5":2,"\u00e0":2,"\u00e4":2,"\u00e2":2,"\u00e1":2,"o":2,"e":2,"a":2,".":20,",":20}},"w":{"d":"44,0r-41,-195r59,0r19,144r22,-144r63,0r21,144r20,-144r57,0r-43,195r-65,0r-22,-144r-23,144r-67,0","w":266,"k":{"\u00f5":2,"\u00f2":2,"\u00f6":2,"\u00f4":2,"\u00f3":2,"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e3":2,"\u00e5":2,"\u00e0":2,"\u00e4":2,"\u00e2":2,"\u00e1":2,"o":2,"e":2,"a":2,".":13,",":13}},"x":{"d":"1,0r53,-101r-49,-94r58,0r23,58r24,-58r58,0r-48,94r52,101r-59,0r-26,-63r-27,63r-59,0","w":173,"k":{"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"e":2}},"y":{"d":"59,1r-55,-196r60,0r25,137r22,-137r59,0r-53,196v-14,60,-37,64,-97,62r0,-41v20,3,34,1,39,-21","w":173,"k":{"\u00f5":4,"\u00f2":4,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"o":4,"e":4,"a":6,".":20,",":20}},"z":{"d":"11,0r0,-45r74,-105r-71,0r0,-45r140,0r0,45r-76,105r78,0r0,45r-145,0","w":166,"k":{"\u00f5":2,"\u00f2":2,"\u00f6":2,"\u00f4":2,"\u00f3":2,"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"o":2,"e":2}},"{":{"d":"84,66v-58,5,-53,-58,-51,-113v0,-18,-15,-33,-34,-33r0,-31v44,2,34,-55,34,-97v0,-45,39,-53,88,-49r0,40v-71,-13,2,115,-70,122v44,3,36,51,36,95v0,21,11,29,34,26r0,40r-37,0","w":119},"|":{"d":"17,5r0,-267r46,0r0,267r-46,0","w":79},"}":{"d":"-1,26v75,9,-6,-111,70,-122v-43,-3,-37,-50,-36,-94v1,-21,-11,-30,-34,-27r0,-40v48,-3,88,1,88,49v0,42,-10,97,34,97r0,31v-44,-2,-34,56,-34,98v0,45,-40,52,-88,48r0,-40","w":119},"~":{"d":"69,-127v32,-1,50,23,77,25v14,0,28,-16,32,-25r13,41v-10,18,-23,31,-44,31v-32,1,-50,-23,-77,-25v-14,0,-28,16,-32,25r-13,-41v10,-18,23,-31,44,-31","w":216},"'":{"d":"23,-131r0,-126r47,0r0,126r-47,0","w":93},"\u201c":{"d":"99,-131v2,-62,-14,-120,56,-126r0,28v-16,0,-23,11,-23,35r23,0r0,63r-56,0xm18,-131v2,-63,-13,-120,57,-126r0,28v-16,0,-23,11,-23,35r23,0r0,63r-57,0","w":173,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"A":13}},"\u2013":{"d":"0,-82r0,-44r180,0r0,44r-180,0"},"\u201d":{"d":"99,-194r0,-63r56,0v-2,62,14,120,-56,126r0,-28v16,0,22,-11,22,-35r-22,0xm18,-194r0,-63r57,0v-2,63,13,120,-57,126r0,-28v16,0,23,-11,23,-35r-23,0","w":173,"k":{" ":13}},"\u2026":{"d":"272,0r0,-65r56,0r0,65r-56,0xm152,0r0,-65r56,0r0,65r-56,0xm32,0r0,-65r56,0r0,65r-56,0","w":360},"`":{"d":"31,-216r-36,-51r56,0r18,51r-38,0","w":93},"\u00b4":{"d":"25,-216r18,-51r56,0r-36,51r-38,0","w":93},"\u2014":{"d":"0,-82r0,-44r360,0r0,44r-360,0","w":360},"\u00c6":{"d":"136,-96r0,-112r-3,0r-36,112r39,0xm3,0r97,-257r173,0r0,49r-81,0r0,51r75,0r0,49r-75,0r0,59r84,0r0,49r-140,0r0,-49r-54,0r-16,49r-63,0","w":286},"\u00d8":{"d":"76,-99v18,-34,31,-73,48,-109v-4,-10,-11,-14,-21,-14v-24,0,-27,22,-27,93r0,30xm28,10r12,-26v-23,-22,-27,-63,-27,-113v0,-82,10,-133,90,-133v17,0,30,2,41,7r10,-23r24,11r-11,26v25,24,27,65,27,112v0,71,-6,134,-91,134v-17,0,-31,-2,-41,-7r-10,23xm131,-158v-18,34,-31,73,-48,109v4,10,10,14,20,14v24,0,28,-23,28,-94r0,-29","w":206},"\u00e6":{"d":"161,-122r42,0v0,-27,-4,-42,-20,-42v-19,0,-22,16,-22,42xm107,-96v-28,16,-41,6,-41,36v0,15,6,25,17,25v25,7,24,-41,24,-61xm15,-135v-1,-48,29,-64,72,-65v36,0,48,16,51,22v12,-17,31,-22,52,-22v49,0,72,39,69,112r-98,0v-1,29,0,57,21,57v15,0,20,-12,21,-36r54,0v-1,49,-27,72,-76,72v-37,0,-52,-12,-60,-32v-16,47,-111,48,-111,-27v0,-49,37,-61,76,-66v30,-4,27,-41,2,-42v-16,0,-21,10,-21,27r-52,0","w":266},"\u00f8":{"d":"68,-84v15,-20,25,-45,38,-67v-3,-7,-8,-11,-16,-11v-22,0,-22,41,-22,78xm112,-111v-15,20,-25,45,-38,67v3,7,8,11,16,11v22,0,22,-41,22,-78xm15,10r15,-25v-17,-18,-20,-47,-20,-83v0,-45,4,-102,80,-102v17,0,30,2,40,7r14,-25r21,13r-15,26v17,18,20,46,20,82v0,45,-4,102,-80,102v-17,0,-30,-2,-40,-7r-14,25"},"\u2122":{"d":"48,-109r0,-112r-37,0r0,-36r121,0r0,36r-37,0r0,112r-47,0xm301,-109r-1,-101r-33,101r-36,0r-34,-101r0,101r-40,0r0,-148r63,0r29,90r30,-90r62,0r0,148r-40,0","w":356},"\u00ae":{"d":"10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm49,-129v0,56,43,98,95,98v52,0,95,-42,95,-98v0,-56,-43,-97,-95,-97v-52,0,-95,41,-95,97xm120,-177r0,38v22,-1,50,6,49,-19v-1,-25,-27,-18,-49,-19xm87,-54r0,-149v53,-2,116,-5,116,47v0,26,-16,39,-36,42r37,60r-37,0r-33,-59r-13,0r0,59r-34,0","w":288},"\u00d7":{"d":"21,-36r55,-55r-55,-55r32,-33r55,56r55,-56r32,33r-55,55r55,55r-32,32r-55,-55r-55,55","w":216},"\u00a9":{"d":"10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134xm49,-129v0,56,43,98,95,98v52,0,95,-42,95,-98v0,-56,-43,-97,-95,-97v-52,0,-95,41,-95,97xm178,-106r38,0v-6,37,-36,57,-67,57v-48,0,-76,-35,-76,-80v0,-87,130,-111,141,-23r-35,0v-14,-41,-75,-22,-70,23v-6,44,59,65,69,23","w":288},"\u00c1":{"d":"1,0r65,-257r76,0r64,257r-63,0r-9,-49r-62,0r-9,49r-62,0xm125,-96r-23,-114r-21,114r44,0xm84,-273r18,-51r56,0r-36,51r-38,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c2":{"d":"1,0r65,-257r76,0r64,257r-63,0r-9,-49r-62,0r-9,49r-62,0xm125,-96r-23,-114r-21,114r44,0xm47,-273r25,-51r61,0r25,51r-42,0r-13,-29r-13,29r-43,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c4":{"d":"1,0r65,-257r76,0r64,257r-63,0r-9,-49r-62,0r-9,49r-62,0xm125,-96r-23,-114r-21,114r44,0xm113,-275r0,-47r44,0r0,47r-44,0xm49,-275r0,-47r45,0r0,47r-45,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c0":{"d":"1,0r65,-257r76,0r64,257r-63,0r-9,-49r-62,0r-9,49r-62,0xm125,-96r-23,-114r-21,114r44,0xm90,-273r-36,-51r56,0r18,51r-38,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c5":{"d":"1,0r65,-257r76,0r64,257r-63,0r-9,-49r-62,0r-9,49r-62,0xm125,-96r-23,-114r-21,114r44,0xm81,-306v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,10,-22,22xm59,-306v0,-25,20,-42,44,-42v24,0,44,17,44,42v0,25,-20,41,-44,41v-24,0,-44,-16,-44,-41","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c3":{"d":"1,0r65,-257r76,0r64,257r-63,0r-9,-49r-62,0r-9,49r-62,0xm125,-96r-23,-114r-21,114r44,0xm79,-323v21,-2,47,25,54,0r29,0v-2,21,-10,49,-36,49v-24,1,-46,-24,-53,0r-28,0v1,-23,12,-47,34,-49","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c7":{"d":"87,5v-67,-5,-74,-60,-74,-135v0,-66,4,-132,89,-132v57,0,86,28,83,94r-59,0v0,-37,-4,-54,-24,-54v-24,0,-26,24,-26,91v0,76,2,96,27,96v22,0,26,-26,26,-66r58,0v3,60,-18,103,-79,106r-10,17v22,-8,45,9,42,26v7,33,-59,40,-84,26r7,-19v10,5,44,10,43,-7v-1,-17,-30,-4,-35,-16","w":193},"\u00c9":{"d":"19,0r0,-257r148,0r0,49r-88,0r0,51r83,0r0,49r-83,0r0,59r92,0r0,49r-152,0xm72,-273r18,-51r57,0r-36,51r-39,0"},"\u00ca":{"d":"19,0r0,-257r148,0r0,49r-88,0r0,51r83,0r0,49r-83,0r0,59r92,0r0,49r-152,0xm37,-273r26,-51r60,0r26,51r-43,0r-13,-29r-13,29r-43,0"},"\u00cb":{"d":"19,0r0,-257r148,0r0,49r-88,0r0,51r83,0r0,49r-83,0r0,59r92,0r0,49r-152,0xm102,-275r0,-47r45,0r0,47r-45,0xm39,-275r0,-47r44,0r0,47r-44,0"},"\u00c8":{"d":"19,0r0,-257r148,0r0,49r-88,0r0,51r83,0r0,49r-83,0r0,59r92,0r0,49r-152,0xm85,-273r-36,-51r56,0r18,51r-38,0"},"\u00cd":{"d":"20,0r0,-257r60,0r0,257r-60,0xm20,-273r18,-51r56,0r-36,51r-38,0","w":100},"\u00ce":{"d":"20,0r0,-257r60,0r0,257r-60,0xm-6,-273r26,-51r60,0r26,51r-43,0r-13,-29r-13,29r-43,0","w":100},"\u00cf":{"d":"20,0r0,-257r60,0r0,257r-60,0xm59,-275r0,-47r45,0r0,47r-45,0xm-4,-275r0,-47r45,0r0,47r-45,0","w":100},"\u00cc":{"d":"20,0r0,-257r60,0r0,257r-60,0xm41,-273r-36,-51r57,0r18,51r-39,0","w":100},"\u00d1":{"d":"19,0r0,-257r69,0r51,167r0,-167r56,0r0,257r-69,0r-53,-177r0,177r-54,0xm83,-323v21,-2,47,25,54,0r29,0v-2,21,-10,49,-36,49v-24,1,-46,-24,-53,0r-28,0v1,-23,12,-47,34,-49","w":213},"\u00d3":{"d":"194,-129v0,71,-6,134,-91,134v-80,0,-90,-52,-90,-134v0,-82,10,-133,90,-133v85,0,91,62,91,133xm76,-129v0,71,3,94,27,94v24,0,28,-23,28,-94v0,-71,-4,-93,-28,-93v-24,0,-27,22,-27,93xm83,-273r18,-51r56,0r-36,51r-38,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00d4":{"d":"194,-129v0,71,-6,134,-91,134v-80,0,-90,-52,-90,-134v0,-82,10,-133,90,-133v85,0,91,62,91,133xm76,-129v0,71,3,94,27,94v24,0,28,-23,28,-94v0,-71,-4,-93,-28,-93v-24,0,-27,22,-27,93xm48,-273r25,-51r61,0r25,51r-42,0r-14,-29r-13,29r-42,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00d6":{"d":"194,-129v0,71,-6,134,-91,134v-80,0,-90,-52,-90,-134v0,-82,10,-133,90,-133v85,0,91,62,91,133xm76,-129v0,71,3,94,27,94v24,0,28,-23,28,-94v0,-71,-4,-93,-28,-93v-24,0,-27,22,-27,93xm112,-275r0,-47r45,0r0,47r-45,0xm49,-275r0,-47r44,0r0,47r-44,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00d2":{"d":"194,-129v0,71,-6,134,-91,134v-80,0,-90,-52,-90,-134v0,-82,10,-133,90,-133v85,0,91,62,91,133xm76,-129v0,71,3,94,27,94v24,0,28,-23,28,-94v0,-71,-4,-93,-28,-93v-24,0,-27,22,-27,93xm86,-273r-36,-51r57,0r18,51r-39,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00d5":{"d":"194,-129v0,71,-6,134,-91,134v-80,0,-90,-52,-90,-134v0,-82,10,-133,90,-133v85,0,91,62,91,133xm76,-129v0,71,3,94,27,94v24,0,28,-23,28,-94v0,-71,-4,-93,-28,-93v-24,0,-27,22,-27,93xm78,-323v21,-2,47,25,54,0r29,0v-2,21,-10,49,-36,49v-25,0,-45,-23,-53,0r-27,0v1,-24,11,-47,33,-49","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00da":{"d":"185,-257r0,172v0,50,-15,90,-85,90v-70,0,-85,-40,-85,-90r0,-172r61,0r0,190v0,20,8,32,24,32v16,0,24,-12,24,-32r0,-190r61,0xm81,-273r18,-51r56,0r-36,51r-38,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"\u00db":{"d":"185,-257r0,172v0,50,-15,90,-85,90v-70,0,-85,-40,-85,-90r0,-172r61,0r0,190v0,20,8,32,24,32v16,0,24,-12,24,-32r0,-190r61,0xm45,-273r25,-51r61,0r25,51r-42,0r-14,-29r-13,29r-42,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"\u00dc":{"d":"185,-257r0,172v0,50,-15,90,-85,90v-70,0,-85,-40,-85,-90r0,-172r61,0r0,190v0,20,8,32,24,32v16,0,24,-12,24,-32r0,-190r61,0xm110,-275r0,-47r44,0r0,47r-44,0xm46,-275r0,-47r45,0r0,47r-45,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"\u00d9":{"d":"185,-257r0,172v0,50,-15,90,-85,90v-70,0,-85,-40,-85,-90r0,-172r61,0r0,190v0,20,8,32,24,32v16,0,24,-12,24,-32r0,-190r61,0xm87,-273r-36,-51r56,0r18,51r-38,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"\u00e1":{"d":"107,-96v-28,16,-41,6,-41,36v0,15,6,25,17,25v25,7,24,-41,24,-61xm15,-135v0,-50,28,-65,76,-65v48,0,70,17,70,58v0,47,-7,106,6,142r-56,0v-4,-6,-1,-16,-4,-22v-22,44,-97,36,-97,-32v0,-49,37,-61,76,-66v30,-4,27,-41,2,-42v-16,0,-21,10,-21,27r-52,0xm71,-216r18,-51r56,0r-36,51r-38,0","k":{"y":6,"w":4,"v":4}},"\u00e2":{"d":"107,-96v-28,16,-41,6,-41,36v0,15,6,25,17,25v25,7,24,-41,24,-61xm15,-135v0,-50,28,-65,76,-65v48,0,70,17,70,58v0,47,-7,106,6,142r-56,0v-4,-6,-1,-16,-4,-22v-22,44,-97,36,-97,-32v0,-49,37,-61,76,-66v30,-4,27,-41,2,-42v-16,0,-21,10,-21,27r-52,0xm34,-216r26,-51r60,0r26,51r-43,0r-13,-29r-13,29r-43,0","k":{"y":6,"w":4,"v":4}},"\u00e4":{"d":"107,-96v-28,16,-41,6,-41,36v0,15,6,25,17,25v25,7,24,-41,24,-61xm15,-135v0,-50,28,-65,76,-65v48,0,70,17,70,58v0,47,-7,106,6,142r-56,0v-4,-6,-1,-16,-4,-22v-22,44,-97,36,-97,-32v0,-49,37,-61,76,-66v30,-4,27,-41,2,-42v-16,0,-21,10,-21,27r-52,0xm99,-218r0,-47r45,0r0,47r-45,0xm36,-218r0,-47r45,0r0,47r-45,0","k":{"y":6,"w":4,"v":4}},"\u00e0":{"d":"107,-96v-28,16,-41,6,-41,36v0,15,6,25,17,25v25,7,24,-41,24,-61xm15,-135v0,-50,28,-65,76,-65v48,0,70,17,70,58v0,47,-7,106,6,142r-56,0v-4,-6,-1,-16,-4,-22v-22,44,-97,36,-97,-32v0,-49,37,-61,76,-66v30,-4,27,-41,2,-42v-16,0,-21,10,-21,27r-52,0xm75,-216r-36,-51r56,0r18,51r-38,0","k":{"y":6,"w":4,"v":4}},"\u00e5":{"d":"107,-96v-28,16,-41,6,-41,36v0,15,6,25,17,25v25,7,24,-41,24,-61xm15,-135v0,-50,28,-65,76,-65v48,0,70,17,70,58v0,47,-7,106,6,142r-56,0v-4,-6,-1,-16,-4,-22v-22,44,-97,36,-97,-32v0,-49,37,-61,76,-66v30,-4,27,-41,2,-42v-16,0,-21,10,-21,27r-52,0xm67,-250v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-21,-22,-21v-12,0,-22,9,-22,21xm45,-250v0,-25,20,-42,44,-42v24,0,43,17,43,42v0,25,-19,42,-43,42v-24,0,-44,-17,-44,-42","k":{"y":6,"w":4,"v":4}},"\u00e3":{"d":"107,-96v-28,16,-41,6,-41,36v0,15,6,25,17,25v25,7,24,-41,24,-61xm15,-135v0,-50,28,-65,76,-65v48,0,70,17,70,58v0,47,-7,106,6,142r-56,0v-4,-6,-1,-16,-4,-22v-22,44,-97,36,-97,-32v0,-49,37,-61,76,-66v30,-4,27,-41,2,-42v-16,0,-21,10,-21,27r-52,0xm66,-266v19,-1,48,24,54,0r29,0v-2,21,-10,49,-36,49v-24,1,-46,-24,-53,0r-28,0v1,-23,12,-48,34,-49","k":{"y":6,"w":4,"v":4}},"\u00e7":{"d":"77,5v-56,-4,-67,-53,-67,-109v0,-55,16,-96,79,-96v62,0,77,33,77,79r-54,0v0,-29,-7,-41,-22,-41v-19,0,-22,25,-22,65v0,44,3,64,22,64v17,0,21,-11,22,-46r54,0v0,55,-19,80,-68,84r-9,17v22,-8,44,10,41,26v7,33,-59,40,-84,26r8,-19v10,6,43,10,42,-7v-1,-17,-30,-4,-35,-16","w":173,"k":{"y":6}},"\u00e9":{"d":"68,-122r42,0v0,-27,-4,-42,-20,-42v-19,0,-22,16,-22,42xm166,-88r-98,0v-1,29,0,57,21,57v15,0,21,-12,22,-36r54,0v-1,49,-27,72,-76,72v-73,0,-79,-51,-79,-109v0,-55,16,-96,79,-96v72,0,77,46,77,112xm70,-216r18,-51r56,0r-36,51r-38,0","w":173},"\u00ea":{"d":"68,-122r42,0v0,-27,-4,-42,-20,-42v-19,0,-22,16,-22,42xm166,-88r-98,0v-1,29,0,57,21,57v15,0,21,-12,22,-36r54,0v-1,49,-27,72,-76,72v-73,0,-79,-51,-79,-109v0,-55,16,-96,79,-96v72,0,77,46,77,112xm34,-216r26,-51r60,0r26,51r-43,0r-13,-29r-13,29r-43,0","w":173},"\u00eb":{"d":"68,-122r42,0v0,-27,-4,-42,-20,-42v-19,0,-22,16,-22,42xm166,-88r-98,0v-1,29,0,57,21,57v15,0,21,-12,22,-36r54,0v-1,49,-27,72,-76,72v-73,0,-79,-51,-79,-109v0,-55,16,-96,79,-96v72,0,77,46,77,112xm99,-218r0,-47r45,0r0,47r-45,0xm36,-218r0,-47r44,0r0,47r-44,0","w":173},"\u00e8":{"d":"68,-122r42,0v0,-27,-4,-42,-20,-42v-19,0,-22,16,-22,42xm166,-88r-98,0v-1,29,0,57,21,57v15,0,21,-12,22,-36r54,0v-1,49,-27,72,-76,72v-73,0,-79,-51,-79,-109v0,-55,16,-96,79,-96v72,0,77,46,77,112xm72,-216r-36,-51r57,0r18,51r-39,0","w":173},"\u00ed":{"d":"18,0r0,-195r58,0r0,195r-58,0xm18,-216r18,-51r56,0r-36,51r-38,0","w":93},"\u00ee":{"d":"18,0r0,-195r58,0r0,195r-58,0xm-8,-216r25,-51r61,0r25,51r-42,0r-13,-29r-13,29r-43,0","w":93},"\u00ef":{"d":"18,0r0,-195r58,0r0,195r-58,0xm56,-218r0,-47r45,0r0,47r-45,0xm-7,-218r0,-47r44,0r0,47r-44,0","w":93},"\u00ec":{"d":"18,0r0,-195r58,0r0,195r-58,0xm37,-216r-36,-51r57,0r18,51r-39,0","w":93},"\u00f1":{"d":"16,0r0,-195r56,0v1,7,-2,18,1,23v18,-43,98,-38,98,26r0,146r-59,0r0,-133v0,-14,-6,-22,-17,-22v-11,0,-20,9,-20,28r0,127r-59,0xm67,-266v20,-2,48,24,54,0r29,0v-2,21,-10,49,-36,49v-25,0,-45,-23,-53,0r-28,0v1,-23,12,-48,34,-49","w":186},"\u00f3":{"d":"90,5v-71,0,-80,-44,-80,-102v0,-58,13,-103,80,-103v71,0,80,44,80,102v0,58,-13,103,-80,103xm112,-97v0,-48,-4,-65,-22,-65v-17,0,-22,17,-22,64v0,48,5,65,22,65v18,0,22,-16,22,-64xm70,-216r18,-51r56,0r-36,51r-38,0","k":{"y":4,"v":2}},"\u00f4":{"d":"90,5v-71,0,-80,-44,-80,-102v0,-58,13,-103,80,-103v71,0,80,44,80,102v0,58,-13,103,-80,103xm112,-97v0,-48,-4,-65,-22,-65v-17,0,-22,17,-22,64v0,48,5,65,22,65v18,0,22,-16,22,-64xm34,-216r26,-51r60,0r26,51r-43,0r-13,-29r-13,29r-43,0","k":{"y":4,"v":2}},"\u00f6":{"d":"90,5v-71,0,-80,-44,-80,-102v0,-58,13,-103,80,-103v71,0,80,44,80,102v0,58,-13,103,-80,103xm112,-97v0,-48,-4,-65,-22,-65v-17,0,-22,17,-22,64v0,48,5,65,22,65v18,0,22,-16,22,-64xm100,-218r0,-47r44,0r0,47r-44,0xm36,-218r0,-47r45,0r0,47r-45,0","k":{"y":4,"v":2}},"\u00f2":{"d":"90,5v-71,0,-80,-44,-80,-102v0,-58,13,-103,80,-103v71,0,80,44,80,102v0,58,-13,103,-80,103xm112,-97v0,-48,-4,-65,-22,-65v-17,0,-22,17,-22,64v0,48,5,65,22,65v18,0,22,-16,22,-64xm75,-216r-36,-51r56,0r18,51r-38,0","k":{"y":4,"v":2}},"\u00f5":{"d":"90,5v-71,0,-80,-44,-80,-102v0,-58,13,-103,80,-103v71,0,80,44,80,102v0,58,-13,103,-80,103xm112,-97v0,-48,-4,-65,-22,-65v-17,0,-22,17,-22,64v0,48,5,65,22,65v18,0,22,-16,22,-64xm66,-266v19,-1,48,24,54,0r29,0v-2,21,-10,49,-36,49v-24,1,-46,-24,-53,0r-28,0v1,-23,12,-48,34,-49","k":{"y":4,"v":2}},"\u00fa":{"d":"171,-195r0,195r-57,0r0,-23v-18,43,-98,38,-98,-26r0,-146r59,0r0,133v0,14,5,22,16,22v11,0,21,-8,21,-27r0,-128r59,0xm73,-216r18,-51r57,0r-36,51r-39,0","w":186},"\u00fb":{"d":"171,-195r0,195r-57,0r0,-23v-18,43,-98,38,-98,-26r0,-146r59,0r0,133v0,14,5,22,16,22v11,0,21,-8,21,-27r0,-128r59,0xm37,-216r26,-51r60,0r26,51r-42,0r-14,-29r-13,29r-43,0","w":186},"\u00fc":{"d":"171,-195r0,195r-57,0r0,-23v-18,43,-98,38,-98,-26r0,-146r59,0r0,133v0,14,5,22,16,22v11,0,21,-8,21,-27r0,-128r59,0xm103,-218r0,-47r44,0r0,47r-44,0xm39,-218r0,-47r45,0r0,47r-45,0","w":186},"\u00f9":{"d":"171,-195r0,195r-57,0r0,-23v-18,43,-98,38,-98,-26r0,-146r59,0r0,133v0,14,5,22,16,22v11,0,21,-8,21,-27r0,-128r59,0xm81,-216r-36,-51r57,0r18,51r-39,0","w":186},"\u00a0":{"w":93,"k":{"\u201c":13,"\u2018":13}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Trademark:
 * Helvetica, Neue Helvetica is a trademark of Heidelberger Druckmaschinen AG
 * which may be registered in certain jurisdictions, exclusively licensed through
 * Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen
 * AG.
 * 
 * Full name:
 * HelveticaNeueLTPro-CnO
 * 
 * Description:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH
 * 
 * Designer:
 * Linotype Library GmbH
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.Linotype.com
 */
Cufon.registerFont({"w":159,"face":{"font-family":"Helvetica Neue LT Pro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 6 3 5 2 3 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-22 -338.175 384 76.0374","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"24","stemv":"30","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"30,0r7,-35r33,0r-7,35r-33,0xm49,-67r34,-190r33,0r-45,190r-22,0","w":92},"\"":{"d":"126,-166r19,-91r23,0r-19,91r-23,0xm66,-166r19,-91r23,0r-19,91r-23,0","w":146},"#":{"d":"103,-153r-18,55r38,0r18,-55r-38,0xm28,0r25,-74r-30,0r5,-24r33,0r18,-55r-31,0r5,-24r34,0r25,-73r23,0r-24,73r38,0r25,-73r23,0r-24,73r28,0r-5,24r-31,0r-18,55r29,0r-5,24r-32,0r-25,74r-24,0r25,-74r-38,0r-25,74r-24,0","w":172},"$":{"d":"131,-255r4,-21r15,0r-4,21v44,3,59,26,50,70r-31,0v3,-24,1,-41,-24,-44r-19,88v31,12,69,20,58,72v-12,54,-53,72,-88,74r-7,34r-15,0r7,-34v-54,-2,-63,-32,-53,-83r31,0v-6,26,-9,53,27,57r20,-94v-30,-10,-63,-22,-53,-71v5,-23,23,-65,82,-69xm108,-146r18,-83v-43,0,-62,72,-18,83xm116,-110r-18,89v23,-2,42,-18,47,-43v6,-26,-9,-38,-29,-46","w":172},"%":{"d":"208,5v-43,0,-40,-33,-32,-69v7,-36,19,-69,61,-69v43,0,40,33,33,69v-8,36,-19,69,-62,69xm88,-117v-43,0,-41,-33,-33,-69v8,-36,19,-69,62,-69v43,0,40,33,32,69v-8,36,-18,69,-61,69xm212,-14v21,0,25,-20,32,-50v6,-30,10,-50,-11,-50v-20,0,-25,20,-31,50v-7,30,-10,50,10,50xm66,5r165,-260r26,0r-166,260r-25,0xm92,-136v20,0,25,-20,31,-50v6,-30,10,-49,-11,-49v-20,0,-25,19,-31,49v-6,30,-9,50,11,50","w":273},"&":{"d":"129,-144r36,73v8,-13,13,-27,20,-50r28,0v-4,19,-24,62,-37,75r24,46r-34,0r-13,-24v-23,19,-42,29,-69,29v-63,0,-65,-48,-61,-71v7,-36,39,-64,70,-81v-6,-19,-20,-36,-14,-60v6,-30,35,-50,64,-50v32,0,51,14,44,49v-7,30,-35,47,-58,64xm143,-46r-39,-81v-23,13,-44,31,-49,58v-11,60,62,57,88,23xm120,-163v14,-14,35,-25,39,-45v3,-15,-6,-25,-21,-25v-37,0,-37,48,-18,70","w":200},"\u2019":{"d":"72,-219r8,-38r33,0v-9,41,-8,78,-52,91r3,-17v17,-7,21,-18,24,-36r-16,0","w":86,"k":{"s":20,"\u2019":30}},"(":{"d":"139,-257v-62,81,-102,198,-68,323r-17,0v-56,-118,-7,-247,67,-323r18,0","w":86},")":{"d":"-12,66v63,-81,101,-197,67,-323r17,0v56,118,8,247,-67,323r-17,0","w":86},"*":{"d":"97,-214r9,-43r21,0r-9,43r42,-15r4,21r-43,12r20,34r-21,13r-18,-36r-34,36r-15,-13r34,-34r-38,-12r13,-21","w":126},"+":{"d":"96,0r16,-79r-79,0r5,-24r79,0r17,-79r24,0r-17,79r79,0r-5,24r-79,0r-16,79r-24,0","w":216},",":{"d":"27,0r8,-38r33,0v-11,40,-9,79,-53,91r4,-17v17,-7,21,-17,23,-36r-15,0","w":86,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"37,-88r7,-28r87,0r-6,28r-88,0","w":126},".":{"d":"27,0r8,-38r33,0r-8,38r-33,0","w":86,"k":{" ":13}},"\/":{"d":"-4,5r138,-267r24,0r-139,267r-23,0","w":100},"0":{"d":"71,-124v-12,54,-20,105,19,105v39,0,51,-51,63,-105v12,-56,20,-107,-19,-107v-39,0,-51,51,-63,107xm85,5v-69,0,-59,-69,-46,-129v12,-56,31,-131,100,-131v69,0,59,69,46,131v-12,54,-31,129,-100,129","w":172},"1":{"d":"64,-192r4,-21v32,-2,63,-6,72,-42r22,0r-53,255r-31,0r40,-192r-54,0","w":172},"2":{"d":"163,-28r-5,28r-143,0v13,-60,59,-91,101,-122v24,-17,41,-33,47,-61v5,-22,-1,-46,-28,-46v-39,0,-48,41,-51,55r-32,0v10,-48,37,-81,89,-81v59,0,58,45,54,68v-13,79,-111,95,-141,159r109,0","w":172},"3":{"d":"94,-144v45,5,64,-21,66,-61v0,-15,-8,-26,-26,-26v-33,0,-43,32,-47,50r-32,0v9,-43,37,-74,84,-74v54,0,56,37,51,66v-5,27,-25,47,-51,56v28,6,42,23,35,59v-10,46,-40,79,-89,79v-70,0,-59,-57,-57,-74r32,0v-5,23,1,50,30,50v18,0,43,-9,52,-52v9,-36,-12,-53,-52,-49","w":172},"4":{"d":"29,-90r127,-165r30,0r-35,168r29,0r-5,25r-29,0r-13,62r-30,0r13,-62r-93,0xm56,-87r65,0r24,-118","w":172},"5":{"d":"89,-19v43,0,58,-49,58,-87v0,-20,-9,-37,-33,-37v-22,0,-41,19,-42,25r-27,-1r42,-131r114,0r-6,28r-90,0r-25,75v46,-40,115,-17,95,65v-12,47,-39,87,-92,87v-54,0,-61,-34,-55,-71r31,0v-3,13,-3,47,30,47","w":172},"6":{"d":"64,-78v-6,27,-3,59,28,59v32,0,46,-32,52,-59v6,-27,7,-59,-27,-59v-34,0,-47,32,-53,59xm194,-194r-31,0v5,-22,-4,-37,-26,-37v-51,0,-61,68,-64,97v7,-10,26,-29,54,-29v45,0,60,33,50,81v-10,49,-42,87,-90,87v-70,0,-63,-68,-51,-121v13,-58,33,-139,107,-139v59,0,54,49,51,61","w":172},"7":{"d":"60,-222r6,-28r145,0r-5,26v-48,48,-108,138,-132,224r-35,0v29,-84,78,-161,137,-222r-116,0","w":172},"8":{"d":"60,-71v-7,30,0,52,30,52v30,0,46,-22,53,-52v6,-30,-1,-53,-31,-53v-30,0,-46,23,-52,53xm134,-231v-39,-7,-66,81,-17,83v40,7,66,-81,17,-83xm85,5v-102,0,-59,-131,1,-141v-62,-28,-9,-119,53,-119v41,0,61,24,52,65v-6,27,-20,44,-48,54v28,10,38,32,31,66v-7,33,-32,75,-89,75","w":172},"9":{"d":"161,-172v6,-27,2,-59,-29,-59v-32,0,-46,32,-52,59v-6,27,-6,59,28,59v33,0,47,-32,53,-59xm30,-56r32,0v-4,21,3,37,25,37v52,0,59,-65,65,-97v-7,10,-27,29,-55,29v-45,0,-60,-33,-50,-81v10,-49,43,-87,91,-87v71,0,60,68,50,121v-12,58,-33,139,-106,139v-59,0,-55,-49,-52,-61","w":172},":":{"d":"27,0r8,-38r33,0r-8,38r-33,0xm57,-144r7,-38r34,0r-8,38r-33,0","w":86,"k":{" ":13}},";":{"d":"57,-144r7,-38r34,0r-8,38r-33,0xm27,0r8,-38r33,0v-11,40,-9,79,-53,91r4,-17v17,-7,21,-17,23,-36r-15,0","w":86},"\u037e":{"d":"57,-144r7,-38r34,0r-8,38r-33,0xm27,0r8,-38r33,0v-11,40,-9,79,-53,91r4,-17v17,-7,21,-17,23,-36r-15,0","w":86},"<":{"d":"33,-80r5,-22r199,-83r-4,24r-169,70r139,70r-5,24","w":216},"=":{"d":"26,-42r5,-24r182,0r-5,24r-182,0xm41,-116r5,-24r182,0r-5,24r-182,0","w":216},">":{"d":"16,3r5,-24r169,-70r-140,-70r5,-24r165,83r-4,22","w":216},"?":{"d":"59,0r7,-35r33,0r-6,35r-34,0xm80,-181r-30,0v9,-42,38,-79,84,-79v73,0,62,87,24,119v-21,18,-53,43,-55,74r-28,0v4,-60,71,-75,81,-127v4,-21,-3,-40,-27,-40v-35,0,-45,35,-49,53"},"@":{"d":"224,-175v7,-6,9,-16,14,-23r20,0r-58,118v-1,5,1,9,8,9v33,0,68,-38,77,-78v12,-54,-29,-91,-91,-91v-62,0,-121,48,-133,111v-13,64,24,112,86,112v45,0,81,-14,106,-40r23,0v-32,40,-77,62,-133,62v-74,0,-121,-60,-106,-134v15,-74,87,-133,161,-133v78,0,125,46,111,111v-13,62,-72,102,-114,102v-16,1,-20,-10,-22,-22v-27,35,-102,28,-89,-32v11,-50,54,-102,105,-102v18,0,32,8,35,30xm108,-105v-4,20,7,34,27,34v33,0,66,-49,72,-76v3,-16,-4,-36,-22,-36v-34,0,-70,45,-77,78","w":288},"A":{"d":"138,-221v-23,39,-41,84,-62,125r69,0xm-3,0r128,-257r42,0r16,257r-33,0r-4,-71r-82,0r-34,71r-33,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"B":{"d":"100,-231r-17,85v47,-2,71,12,89,-43v14,-41,-30,-45,-72,-42xm21,0r53,-257v70,2,146,-18,131,66v-4,24,-25,45,-48,54v30,8,38,32,32,64v-14,76,-83,76,-168,73xm78,-122r-20,96v51,5,92,-6,98,-47v7,-51,-31,-51,-78,-49","w":186},"C":{"d":"163,-88r33,0v-13,49,-41,93,-97,93v-73,0,-68,-69,-55,-134v14,-65,39,-133,110,-133v52,0,69,30,60,80r-33,0v6,-29,0,-54,-32,-54v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v39,0,51,-36,59,-67","w":186},"D":{"d":"24,0r53,-257r69,0v80,0,78,57,64,128v-13,65,-43,129,-114,129r-72,0xm104,-231r-43,205v80,12,104,-44,115,-102v10,-50,19,-103,-39,-103r-33,0","w":200,"k":{"Y":7}},"E":{"d":"21,0r53,-257r133,0r-6,28r-101,0r-17,81r96,0r-6,28r-96,0r-19,92r106,0r-6,28r-137,0","w":166},"F":{"d":"21,0r53,-257r133,0r-6,28r-101,0r-17,81r96,0r-6,28r-96,0r-24,120r-32,0","k":{"\u00f5":7,"\u00f2":7,"\u00f6":7,"\u00f4":7,"\u00f3":7,"\u00e8":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e3":7,"\u00e5":7,"\u00e0":7,"\u00e4":7,"\u00e2":7,"\u00e1":7,"\u00c3":19,"\u00c5":19,"\u00c0":19,"\u00c4":19,"\u00c2":19,"\u00c1":19,"r":7,"o":7,"i":6,"e":9,"a":7,"A":19,".":40,",":40}},"G":{"d":"215,-186r-34,0v4,-27,-1,-50,-32,-50v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v44,0,58,-53,66,-87r-51,0r5,-26r80,0r-28,134r-24,0r7,-35v-12,22,-36,40,-64,40v-67,0,-65,-65,-51,-134v14,-65,39,-133,110,-133v74,0,62,63,61,76","w":193},"H":{"d":"226,-257r-54,257r-31,0r25,-124r-88,0r-25,124r-32,0r53,-257r32,0r-22,105r88,0r22,-105r32,0","w":193},"I":{"d":"21,0r53,-257r32,0r-53,257r-32,0","w":73},"J":{"d":"186,-257r-38,183v-9,46,-28,79,-81,79v-54,0,-54,-42,-44,-80r31,0v-5,22,-14,54,18,54v29,0,36,-18,44,-54r38,-182r32,0","w":153},"K":{"d":"21,0r53,-257r32,0r-25,125r114,-125r36,0r-100,107r53,150r-35,0r-44,-124r-34,37r-18,87r-32,0","w":180,"k":{"\u00f9":7,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f5":7,"\u00f2":7,"\u00f6":7,"\u00f4":7,"\u00f3":7,"y":4,"u":7,"o":7}},"L":{"d":"21,0r53,-257r32,0r-48,229r105,0r-6,28r-136,0","k":{"\u201d":33,"y":13,"Y":33,"W":27,"V":27,"T":34,"\u2019":33}},"M":{"d":"22,0r53,-257r53,0r10,204r94,-204r53,0r-53,257r-32,0r46,-225r-103,225r-32,0r-11,-225r-47,225r-31,0","w":253},"N":{"d":"21,0r53,-257r41,0r41,215r45,-215r32,0r-54,257r-43,0r-40,-208r-43,208r-32,0","w":200},"O":{"d":"149,-236v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v44,0,59,-49,72,-108v13,-59,17,-107,-27,-107xm154,-262v71,0,70,68,56,133v-13,65,-40,134,-111,134v-71,0,-68,-69,-55,-134v14,-65,39,-133,110,-133","w":200,"k":{"Y":9,"X":9}},"P":{"d":"100,-231r-20,96v51,3,78,-1,91,-50v12,-43,-27,-50,-71,-46xm21,0r53,-257r66,0v22,0,81,1,64,74v-14,62,-58,80,-129,74r-22,109r-32,0","w":173,"k":{"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"o":6,"e":6,"a":6,"A":13,".":46,",":46}},"Q":{"d":"129,-27r-20,-22r21,-20r20,22v17,-35,70,-189,-1,-189v-44,0,-57,48,-72,107v-18,72,-8,127,52,102xm167,15r-21,-23v-13,9,-29,13,-47,13v-71,0,-68,-69,-55,-134v14,-65,39,-133,110,-133v71,0,70,68,56,133v-8,37,-21,76,-43,102r21,24","w":200},"R":{"d":"100,-231r-18,91v48,-2,75,13,94,-50v12,-40,-34,-44,-76,-41xm21,0r53,-257v68,-1,153,-12,136,64v-6,28,-23,57,-53,66v58,5,0,102,26,127r-39,0v-9,-22,3,-53,5,-77v5,-54,-34,-32,-73,-37r-23,114r-32,0","w":186,"k":{"\u00d9":-7,"\u00dc":-7,"\u00db":-7,"\u00da":-7,"Y":6,"W":-7,"U":-7,"T":6}},"S":{"d":"201,-190r-32,0v6,-27,0,-46,-30,-46v-27,0,-45,15,-51,42v-15,72,116,29,96,123v-12,59,-60,76,-96,76v-60,0,-72,-31,-60,-86r31,0v-6,29,-11,60,36,60v25,0,48,-18,54,-45v15,-73,-114,-31,-95,-125v5,-24,25,-71,90,-71v49,0,67,24,57,72","w":180},"T":{"d":"147,-229r-48,229r-32,0r48,-229r-65,0r6,-28r161,0r-6,28r-64,0","w":166,"k":{"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"34,-76r37,-181r32,0r-37,181v-8,38,0,55,32,55v33,0,47,-19,55,-55r37,-181r32,0r-37,181v-10,49,-43,81,-93,81v-52,0,-69,-28,-58,-81","w":186},"V":{"d":"62,0r-9,-257r33,0r5,221r96,-221r33,0r-118,257r-40,0","w":166,"k":{"\u00f9":6,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"54,0r2,-257r32,0r-4,210r80,-210r38,0r-6,210r83,-210r31,0r-106,257r-38,0r7,-208r-80,208r-39,0","w":259,"k":{"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"96,-131r-37,-126r35,0r27,96r67,-96r33,0r-90,126r41,131r-35,0r-30,-103r-73,103r-33,0","w":173},"Y":{"d":"88,-101r-35,-156r34,0r25,120r75,-120r33,0r-100,156r-21,101r-32,0","w":166,"k":{"\u00f9":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,0r6,-27r157,-202r-109,0r6,-28r142,0r-6,29r-157,200r117,0r-6,28r-150,0","w":166},"[":{"d":"14,66r67,-323r65,0r-5,24r-37,0r-57,275r37,0r-6,24r-64,0","w":93},"\\":{"d":"79,5r-28,-267r24,0r28,267r-24,0","w":100},"]":{"d":"118,-257r-67,323r-64,0r5,-24r36,0r57,-275r-36,0r5,-24r64,0","w":93},"^":{"d":"36,-94r115,-156r17,0r51,156r-24,0r-41,-130r-94,130r-24,0","w":216},"_":{"d":"-9,45r4,-18r179,0r-3,18r-180,0","w":180},"\u2018":{"d":"102,-204r-8,38r-33,0v9,-41,8,-78,52,-91r-4,17v-17,7,-19,19,-23,36r16,0","w":86,"k":{"\u2018":30}},"a":{"d":"73,-19v41,0,52,-47,57,-86v-26,20,-71,12,-77,53v-3,20,-1,33,20,33xm73,-136v-7,3,-21,0,-30,1v9,-44,32,-63,78,-63v59,0,51,35,47,55r-22,108v-6,12,4,20,13,14r-4,21v-19,3,-44,8,-41,-23v-26,42,-108,38,-93,-28v10,-44,49,-57,91,-66v36,-8,41,-58,2,-57v-33,0,-40,31,-41,38","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"b":{"d":"20,0r53,-257r30,0r-17,86v10,-17,30,-27,50,-27v52,0,47,62,38,102v-12,54,-39,101,-84,101v-22,1,-33,-17,-37,-29r-4,24r-29,0xm68,-96v-9,39,-9,75,23,75v28,0,42,-31,51,-75v10,-46,9,-76,-19,-76v-33,0,-47,39,-55,76","w":166},"c":{"d":"170,-134r-31,0v5,-19,1,-40,-22,-40v-19,0,-39,9,-54,80v-5,25,-15,75,21,75v26,0,36,-27,41,-48r31,0v-6,30,-31,72,-79,72v-48,0,-60,-32,-46,-99v10,-48,31,-104,90,-104v47,0,53,29,49,64","w":153,"k":{"y":7,"l":7}},"d":{"d":"200,-257r-53,257r-29,0v1,-7,6,-18,4,-24v-7,14,-26,29,-47,29v-46,0,-56,-41,-43,-101v9,-40,28,-102,82,-102v18,-1,33,12,38,27r18,-86r30,0xm64,-96v-10,46,-8,75,20,75v33,0,45,-31,54,-75v8,-37,9,-76,-23,-76v-28,0,-41,30,-51,76","w":166,"k":{"y":-4}},"e":{"d":"166,-93r-102,0v-6,30,-15,74,22,74v29,0,39,-29,42,-44r30,0v-5,21,-26,68,-79,68v-48,0,-60,-32,-46,-99v10,-48,31,-104,90,-104v65,0,52,60,43,105xm70,-117r69,0v5,-23,9,-58,-22,-57v-36,2,-42,39,-47,57"},"f":{"d":"29,0r35,-169r-28,0r5,-24r28,0v4,-46,24,-75,78,-67r-6,26v-32,-6,-39,16,-42,41r33,0r-5,24r-33,0r-35,169r-30,0","w":93,"k":{"\u201d":-6,"\u2019":-6}},"g":{"d":"187,-193r-38,181v-13,58,-43,78,-82,78v-12,0,-58,0,-53,-48r30,0v-2,18,10,24,26,24v51,0,45,-38,51,-68v-10,16,-30,26,-49,26v-56,0,-46,-70,-40,-96v11,-52,36,-102,85,-102v22,-1,32,17,36,30r5,-25r29,0xm115,-172v-28,0,-41,30,-51,76v-6,31,-10,70,20,70v33,0,45,-30,54,-70v8,-37,9,-76,-23,-76","w":166,"k":{"y":-4}},"h":{"d":"20,0r53,-257r30,0r-17,86v12,-15,34,-27,52,-27v50,0,42,38,37,61r-28,137r-30,0r27,-133v3,-15,8,-39,-20,-39v-16,0,-41,11,-47,39r-27,133r-30,0","w":166},"i":{"d":"68,-222r7,-35r30,0r-7,35r-30,0xm22,0r40,-193r30,0r-40,193r-30,0","w":73},"j":{"d":"105,-257r-7,35r-30,0r7,-35r30,0xm92,-193r-44,212v-7,37,-30,51,-70,46r6,-26v25,5,31,-9,36,-31r42,-201r30,0","w":73},"k":{"d":"120,-120r44,120r-35,0r-34,-95r-32,30r-13,65r-30,0r53,-257r30,0r-31,153r86,-89r36,0"},"l":{"d":"22,0r53,-257r30,0r-53,257r-30,0","w":73,"k":{"w":-4}},"m":{"d":"23,0r40,-193r28,0r-4,23v18,-31,85,-45,88,3v13,-17,33,-31,53,-31v51,0,43,38,38,61r-29,137r-30,0r27,-133v3,-15,8,-39,-17,-39v-14,0,-39,9,-45,39r-27,133r-30,0r27,-133v3,-15,8,-39,-17,-39v-14,0,-39,9,-45,39r-27,133r-30,0","w":259},"n":{"d":"20,0r40,-193r29,0v-1,7,-6,17,-4,23v12,-18,33,-28,52,-28v51,0,43,38,38,61r-28,137r-30,0r27,-133v3,-15,8,-39,-20,-39v-16,0,-41,11,-47,39r-27,133r-30,0","w":166,"k":{"y":-4}},"o":{"d":"83,-19v32,0,46,-35,55,-77v9,-42,9,-78,-23,-78v-31,0,-44,36,-53,78v-9,42,-10,77,21,77xm30,-96v12,-54,36,-102,91,-102v56,0,60,48,48,102v-12,54,-34,101,-90,101v-56,0,-61,-47,-49,-101","k":{"y":-4,"w":-4}},"p":{"d":"6,63r54,-256r29,0r-5,24v7,-14,27,-29,48,-29v46,0,55,40,43,98v-9,44,-35,105,-85,105v-18,1,-30,-12,-36,-27r-17,85r-31,0xm68,-96v-8,37,-9,75,23,75v28,0,42,-29,52,-79v9,-42,8,-72,-20,-72v-33,0,-45,32,-55,76","w":166},"q":{"d":"103,63r17,-85v-10,17,-28,27,-45,27v-50,0,-52,-52,-42,-105v12,-58,38,-98,84,-98v22,-1,32,17,36,29r5,-24r29,0r-53,256r-31,0xm138,-96v10,-44,10,-76,-23,-76v-28,0,-41,30,-50,72v-10,50,-9,79,19,79v32,0,46,-38,54,-75","w":166},"r":{"d":"20,0r40,-193r30,0v-1,9,-6,22,-5,29v15,-21,32,-40,62,-32r-7,30v-28,-7,-57,5,-65,44r-25,122r-30,0","w":106,"k":{"y":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"161,-136r-30,0v5,-24,1,-38,-21,-38v-10,0,-34,2,-37,29v-6,49,94,20,76,90v-11,41,-39,60,-75,60v-66,0,-56,-48,-52,-68r30,0v-5,23,-3,44,27,44v10,0,35,-5,39,-32v8,-55,-94,-21,-76,-94v9,-36,39,-53,73,-53v57,0,50,39,46,62","w":146,"k":{"w":-4}},"t":{"d":"69,-193r11,-56r31,0r-12,56r33,0r-5,24r-33,0r-26,124v-8,21,13,23,29,20r-5,25v-4,1,-12,2,-25,2v-32,0,-36,-13,-31,-38r28,-133r-28,0r5,-24r28,0","w":93},"u":{"d":"187,-193r-40,193r-29,0v1,-7,6,-17,4,-23v-12,18,-34,28,-53,28v-51,0,-43,-38,-38,-61r29,-137r30,0r-28,133v-3,15,-7,39,21,39v16,0,40,-11,46,-39r28,-133r30,0","w":166},"v":{"d":"56,0r-12,-193r33,0r4,155r68,-155r34,0r-93,193r-34,0","w":146,"k":{".":20,",":20}},"w":{"d":"49,0r-5,-193r31,0r-1,158r66,-158r35,0r0,158r63,-158r32,0r-86,193r-33,0r-2,-158r-65,158r-35,0","w":233,"k":{".":13,",":13}},"x":{"d":"76,-100r-30,-93r33,0r20,69r50,-69r33,0r-69,93r31,100r-33,0r-23,-76r-53,76r-33,0","w":146},"y":{"d":"59,4r-15,-197r33,0r7,155r65,-155r34,0r-99,206v-12,34,-37,57,-84,49r5,-23v31,8,46,-14,54,-35","w":146,"k":{"\u00e3":-4,"\u00e5":-4,"\u00e0":-4,"\u00e4":-4,"\u00e2":-4,"\u00e1":-4,"a":-4,".":20,",":20}},"z":{"d":"49,-167r5,-26r116,0r-5,25r-116,142r86,0r-5,26r-120,0r4,-24r118,-143r-83,0","w":140},"{":{"d":"18,-85r5,-21v58,-5,28,-160,97,-151r26,0r-5,24v-57,-9,-45,53,-56,91v-10,36,-34,43,-41,47v8,1,29,11,22,46r-13,62v-3,13,-6,29,12,29r19,0r-6,24v-38,1,-61,1,-54,-47v5,-31,33,-99,-6,-104","w":93},"|":{"d":"27,5r55,-267r24,0r-55,267r-24,0","w":79},"}":{"d":"114,-106r-4,21v-60,4,-28,161,-98,151r-25,0r5,-24v56,8,44,-53,55,-91v11,-36,33,-44,42,-47v-7,-1,-30,-11,-23,-46r13,-62v3,-13,6,-29,-12,-29r-18,0r5,-24v39,-1,66,-1,55,47r-14,64v-5,26,3,40,19,40","w":93},"~":{"d":"160,-66v-25,5,-47,-26,-70,-27v-16,0,-32,16,-41,26r-12,-16v13,-15,33,-34,56,-34v25,0,47,28,70,28v17,0,32,-18,41,-27r12,17v-15,15,-33,33,-56,33","w":216},"'":{"d":"66,-166r19,-91r23,0r-19,91r-23,0","w":86},"\u201c":{"d":"104,-204r-8,38r-33,0v9,-41,8,-78,52,-91r-4,17v-17,7,-19,19,-23,36r16,0xm160,-204r-8,38r-33,0v11,-39,8,-79,52,-91r-3,17v-17,7,-20,19,-24,36r16,0","w":146},"\u2013":{"d":"18,-89r6,-26r180,0r-6,26r-180,0","w":180},"\u201d":{"d":"115,-257v-11,39,-8,79,-52,91r3,-17v17,-7,21,-18,24,-36r-16,0r8,-38r33,0xm171,-257v-9,41,-8,78,-52,91r4,-17v17,-7,19,-18,23,-36r-16,0r8,-38r33,0","w":146,"k":{" ":13}},"\u2026":{"d":"283,0r8,-38r33,0r-8,38r-33,0xm163,0r8,-38r33,0r-7,38r-34,0xm44,0r7,-38r34,0r-8,38r-33,0","w":360},"`":{"d":"50,-270r36,0r14,51r-22,0","w":73},"\u00b4":{"d":"64,-219r36,-51r35,0r-49,51r-22,0","w":73},"\u2014":{"d":"18,-89r6,-26r360,0r-6,26r-360,0","w":360},"\u00c6":{"d":"-3,0r153,-257r150,0r-6,28r-95,0r-17,81r90,0r-6,28r-90,0r-19,92r100,0r-6,28r-131,0r14,-71r-63,0r-41,71r-33,0xm164,-231r-79,135r54,0r28,-135r-3,0","w":259},"\u00d8":{"d":"36,-69v0,-89,29,-190,118,-193v17,0,29,3,38,10r13,-21r18,8r-17,27v16,26,11,68,4,109v-13,77,-63,163,-149,124r-13,22r-18,-8r18,-29v-8,-13,-12,-30,-12,-49xm184,-202r-106,170v55,36,86,-29,98,-97v5,-29,11,-54,8,-73xm69,-55r107,-170v-55,-37,-87,27,-99,96v-5,29,-10,54,-8,74","w":200},"\u00e6":{"d":"72,-19v53,0,42,-45,53,-81v-22,15,-69,8,-73,48v-2,18,1,33,20,33xm112,-174v-33,1,-36,32,-40,39r-30,0v10,-44,33,-63,77,-63v27,-1,37,13,41,27v10,-16,33,-27,51,-27v61,0,48,61,39,105r-98,0v-6,30,-16,74,18,74v29,0,39,-29,42,-44r30,0v-5,21,-26,68,-75,68v-43,0,-42,-29,-45,-35v-19,46,-118,52,-102,-21v10,-47,53,-55,96,-67v13,-4,15,-12,19,-28v4,-18,-3,-28,-23,-28xm158,-117r65,0v5,-23,10,-59,-20,-57v-33,2,-42,38,-45,57","w":240},"\u00f8":{"d":"20,14r17,-27v-15,-18,-14,-47,-7,-83v12,-63,51,-120,120,-96r14,-21r15,7r-16,26v14,20,13,49,6,84v-11,63,-50,119,-119,95r-15,22xm58,-45r76,-122v-54,-33,-78,61,-76,122xm142,-147r-77,121v53,32,80,-60,77,-121"},"\u2122":{"d":"328,-109r24,-122r-75,122r-14,0r-25,-122r-26,122r-24,0r31,-148r36,0r23,114r69,-114r35,0r-31,148r-23,0xm89,-109r26,-126r-48,0r5,-22r118,0r-4,22r-47,0r-26,126r-24,0","w":356},"\u00ae":{"d":"147,-17v61,0,120,-50,133,-112v13,-62,-25,-111,-86,-111v-61,0,-120,49,-133,111v-13,62,26,112,86,112xm37,-129v15,-74,87,-133,161,-133v74,0,121,59,106,133v-15,74,-88,134,-161,134v-74,0,-121,-60,-106,-134xm143,-137v32,-1,65,7,71,-24v6,-32,-33,-21,-61,-23xm101,-50r32,-156v51,0,120,-9,105,46v-7,28,-28,40,-52,43r31,67r-24,0r-29,-65r-26,0r-13,65r-24,0","w":288},"\u00d7":{"d":"175,-11r-52,-65r-78,65r-12,-15r79,-65r-52,-65r18,-15r52,64r78,-64r13,15r-79,65r51,65","w":216},"\u00a9":{"d":"147,-17v61,0,120,-50,133,-112v13,-62,-25,-111,-86,-111v-61,0,-120,49,-133,111v-13,62,26,112,86,112xm37,-129v15,-74,87,-133,161,-133v74,0,121,59,106,133v-15,74,-88,134,-161,134v-74,0,-121,-60,-106,-134xm216,-100r22,0v-13,36,-47,55,-83,55v-49,0,-71,-33,-61,-82v9,-49,47,-83,96,-83v36,0,62,19,59,56r-21,0v0,-19,-16,-35,-43,-35v-33,0,-61,29,-68,62v-7,33,10,61,43,61v27,0,48,-15,56,-34","w":288},"\u00c1":{"d":"138,-221v-23,39,-41,84,-62,125r69,0xm-3,0r128,-257r42,0r16,257r-33,0r-4,-71r-82,0r-34,71r-33,0xm131,-278r36,-51r36,0r-50,51r-22,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c2":{"d":"138,-221v-23,39,-41,84,-62,125r69,0xm-3,0r128,-257r42,0r16,257r-33,0r-4,-71r-82,0r-34,71r-33,0xm97,-278r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c4":{"d":"138,-221v-23,39,-41,84,-62,125r69,0xm-3,0r128,-257r42,0r16,257r-33,0r-4,-71r-82,0r-34,71r-33,0xm165,-286r7,-36r29,0r-8,36r-28,0xm107,-286r7,-36r28,0r-7,36r-28,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c0":{"d":"138,-221v-23,39,-41,84,-62,125r69,0xm-3,0r128,-257r42,0r16,257r-33,0r-4,-71r-82,0r-34,71r-33,0xm116,-329r36,0r14,51r-22,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c5":{"d":"138,-221v-23,39,-41,84,-62,125r69,0xm-3,0r128,-257r42,0r16,257r-33,0r-4,-71r-82,0r-34,71r-33,0xm156,-324v-23,-3,-38,41,-9,41v23,2,38,-40,9,-41xm116,-304v4,-42,79,-49,72,0v-4,41,-80,49,-72,0","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c3":{"d":"138,-221v-23,39,-41,84,-62,125r69,0xm-3,0r128,-257r42,0r16,257r-33,0r-4,-71r-82,0r-34,71r-33,0xm131,-323v20,0,47,28,54,-2r19,0v-4,18,-18,40,-39,40v-25,0,-47,-27,-56,2r-19,0v4,-21,22,-40,41,-40","w":180,"k":{"\u201d":20,"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4,"\u2019":20}},"\u00c7":{"d":"47,68r8,-12v11,5,47,6,45,-10v4,-14,-22,-15,-29,-10v-9,-12,13,-21,18,-31v-61,-5,-58,-72,-45,-134v14,-65,39,-133,110,-133v52,0,69,30,60,80r-33,0v6,-29,0,-54,-32,-54v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v39,0,51,-36,59,-67r33,0v-13,47,-36,88,-92,93v-4,5,-10,9,-13,15v19,-5,39,0,35,25v-7,31,-51,39,-79,23","w":186},"\u00c9":{"d":"21,0r53,-257r133,0r-6,28r-101,0r-17,81r96,0r-6,28r-96,0r-19,92r106,0r-6,28r-137,0xm133,-278r36,-51r35,0r-50,51r-21,0","w":166},"\u00ca":{"d":"21,0r53,-257r133,0r-6,28r-101,0r-17,81r96,0r-6,28r-96,0r-19,92r106,0r-6,28r-137,0xm93,-278r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0","w":166},"\u00cb":{"d":"21,0r53,-257r133,0r-6,28r-101,0r-17,81r96,0r-6,28r-96,0r-19,92r106,0r-6,28r-137,0xm160,-286r7,-36r28,0r-7,36r-28,0xm102,-286r7,-36r28,0r-7,36r-28,0","w":166},"\u00c8":{"d":"21,0r53,-257r133,0r-6,28r-101,0r-17,81r96,0r-6,28r-96,0r-19,92r106,0r-6,28r-137,0xm112,-329r35,0r14,51r-21,0","w":166},"\u00cd":{"d":"21,0r53,-257r32,0r-53,257r-32,0xm79,-278r36,-51r35,0r-50,51r-21,0","w":73},"\u00ce":{"d":"21,0r53,-257r32,0r-53,257r-32,0xm43,-278r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0","w":73},"\u00cf":{"d":"21,0r53,-257r32,0r-53,257r-32,0xm110,-286r8,-36r28,0r-8,36r-28,0xm52,-286r7,-36r28,0r-7,36r-28,0","w":73},"\u00cc":{"d":"21,0r53,-257r32,0r-53,257r-32,0xm58,-329r35,0r15,51r-22,0","w":73},"\u00d1":{"d":"21,0r53,-257r41,0r41,215r45,-215r32,0r-54,257r-43,0r-40,-208r-43,208r-32,0xm145,-323v20,0,47,28,54,-2r19,0v-4,18,-18,40,-39,40v-25,0,-47,-27,-56,2r-19,0v4,-21,22,-40,41,-40","w":200},"\u00d3":{"d":"149,-236v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v44,0,59,-49,72,-108v13,-59,17,-107,-27,-107xm154,-262v71,0,70,68,56,133v-13,65,-40,134,-111,134v-71,0,-68,-69,-55,-134v14,-65,39,-133,110,-133xm145,-278r36,-51r35,0r-50,51r-21,0","w":200,"k":{"Y":9,"X":9}},"\u00d4":{"d":"149,-236v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v44,0,59,-49,72,-108v13,-59,17,-107,-27,-107xm154,-262v71,0,70,68,56,133v-13,65,-40,134,-111,134v-71,0,-68,-69,-55,-134v14,-65,39,-133,110,-133xm107,-278r47,-51r27,0r26,51r-28,0r-16,-32r-28,32r-28,0","w":200,"k":{"Y":9,"X":9}},"\u00d6":{"d":"149,-236v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v44,0,59,-49,72,-108v13,-59,17,-107,-27,-107xm154,-262v71,0,70,68,56,133v-13,65,-40,134,-111,134v-71,0,-68,-69,-55,-134v14,-65,39,-133,110,-133xm174,-286r7,-36r28,0r-7,36r-28,0xm115,-286r8,-36r28,0r-8,36r-28,0","w":200,"k":{"Y":9,"X":9}},"\u00d2":{"d":"149,-236v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v44,0,59,-49,72,-108v13,-59,17,-107,-27,-107xm154,-262v71,0,70,68,56,133v-13,65,-40,134,-111,134v-71,0,-68,-69,-55,-134v14,-65,39,-133,110,-133xm117,-329r35,0r15,51r-22,0","w":200,"k":{"Y":9,"X":9}},"\u00d5":{"d":"149,-236v-44,0,-59,48,-72,107v-13,59,-17,108,27,108v44,0,59,-49,72,-108v13,-59,17,-107,-27,-107xm154,-262v71,0,70,68,56,133v-13,65,-40,134,-111,134v-71,0,-68,-69,-55,-134v14,-65,39,-133,110,-133xm144,-323v19,0,46,28,53,-2r19,0v-4,18,-18,40,-39,40v-25,0,-47,-27,-56,2r-19,0v4,-21,23,-40,42,-40","w":200,"k":{"Y":9,"X":9}},"\u00da":{"d":"34,-76r37,-181r32,0r-37,181v-8,38,0,55,32,55v33,0,47,-19,55,-55r37,-181r32,0r-37,181v-10,49,-43,81,-93,81v-52,0,-69,-28,-58,-81xm137,-278r36,-51r35,0r-50,51r-21,0","w":186},"\u00db":{"d":"34,-76r37,-181r32,0r-37,181v-8,38,0,55,32,55v33,0,47,-19,55,-55r37,-181r32,0r-37,181v-10,49,-43,81,-93,81v-52,0,-69,-28,-58,-81xm100,-278r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0","w":186},"\u00dc":{"d":"34,-76r37,-181r32,0r-37,181v-8,38,0,55,32,55v33,0,47,-19,55,-55r37,-181r32,0r-37,181v-10,49,-43,81,-93,81v-52,0,-69,-28,-58,-81xm165,-286r7,-36r28,0r-7,36r-28,0xm106,-286r8,-36r28,0r-8,36r-28,0","w":186},"\u00d9":{"d":"34,-76r37,-181r32,0r-37,181v-8,38,0,55,32,55v33,0,47,-19,55,-55r37,-181r32,0r-37,181v-10,49,-43,81,-93,81v-52,0,-69,-28,-58,-81xm111,-329r36,0r14,51r-22,0","w":186},"\u00e1":{"d":"73,-19v41,0,52,-47,57,-86v-26,20,-71,12,-77,53v-3,20,-1,33,20,33xm73,-136v-7,3,-21,0,-30,1v9,-44,32,-63,78,-63v59,0,51,35,47,55r-22,108v-6,12,4,20,13,14r-4,21v-19,3,-44,8,-41,-23v-26,42,-108,38,-93,-28v10,-44,49,-57,91,-66v36,-8,41,-58,2,-57v-33,0,-40,31,-41,38xm109,-219r36,-51r36,0r-50,51r-22,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e2":{"d":"73,-19v41,0,52,-47,57,-86v-26,20,-71,12,-77,53v-3,20,-1,33,20,33xm73,-136v-7,3,-21,0,-30,1v9,-44,32,-63,78,-63v59,0,51,35,47,55r-22,108v-6,12,4,20,13,14r-4,21v-19,3,-44,8,-41,-23v-26,42,-108,38,-93,-28v10,-44,49,-57,91,-66v36,-8,41,-58,2,-57v-33,0,-40,31,-41,38xm75,-219r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e4":{"d":"73,-19v41,0,52,-47,57,-86v-26,20,-71,12,-77,53v-3,20,-1,33,20,33xm73,-136v-7,3,-21,0,-30,1v9,-44,32,-63,78,-63v59,0,51,35,47,55r-22,108v-6,12,4,20,13,14r-4,21v-19,3,-44,8,-41,-23v-26,42,-108,38,-93,-28v10,-44,49,-57,91,-66v36,-8,41,-58,2,-57v-33,0,-40,31,-41,38xm141,-227r7,-36r28,0r-7,36r-28,0xm82,-227r8,-36r28,0r-7,36r-29,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e0":{"d":"73,-19v41,0,52,-47,57,-86v-26,20,-71,12,-77,53v-3,20,-1,33,20,33xm73,-136v-7,3,-21,0,-30,1v9,-44,32,-63,78,-63v59,0,51,35,47,55r-22,108v-6,12,4,20,13,14r-4,21v-19,3,-44,8,-41,-23v-26,42,-108,38,-93,-28v10,-44,49,-57,91,-66v36,-8,41,-58,2,-57v-33,0,-40,31,-41,38xm88,-270r35,0r15,51r-22,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e5":{"d":"73,-19v41,0,52,-47,57,-86v-26,20,-71,12,-77,53v-3,20,-1,33,20,33xm73,-136v-7,3,-21,0,-30,1v9,-44,32,-63,78,-63v59,0,51,35,47,55r-22,108v-6,12,4,20,13,14r-4,21v-19,3,-44,8,-41,-23v-26,42,-108,38,-93,-28v10,-44,49,-57,91,-66v36,-8,41,-58,2,-57v-33,0,-40,31,-41,38xm132,-269v-22,-3,-38,41,-9,41v24,2,37,-39,9,-41xm92,-248v4,-41,79,-50,71,0v-4,41,-79,47,-71,0","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e3":{"d":"73,-19v41,0,52,-47,57,-86v-26,20,-71,12,-77,53v-3,20,-1,33,20,33xm73,-136v-7,3,-21,0,-30,1v9,-44,32,-63,78,-63v59,0,51,35,47,55r-22,108v-6,12,4,20,13,14r-4,21v-19,3,-44,8,-41,-23v-26,42,-108,38,-93,-28v10,-44,49,-57,91,-66v36,-8,41,-58,2,-57v-33,0,-40,31,-41,38xm112,-264v19,0,47,28,54,-2r19,0v-4,18,-18,40,-39,40v-25,0,-47,-27,-56,2r-19,0v4,-21,22,-40,41,-40","k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"\u00e7":{"d":"67,4v-44,-5,-47,-42,-36,-98v10,-48,31,-104,90,-104v47,0,53,29,49,64r-31,0v5,-19,1,-40,-22,-40v-19,0,-39,9,-54,80v-5,25,-15,75,21,75v26,0,36,-27,41,-48r31,0v-6,31,-31,69,-74,72v-4,5,-10,9,-13,15v19,-5,39,0,35,25v-7,31,-51,39,-79,23r8,-12v11,5,47,6,45,-10v4,-14,-22,-15,-29,-10v-9,-13,13,-21,18,-32","w":153,"k":{"y":7,"l":7}},"\u00e9":{"d":"166,-93r-102,0v-6,30,-15,74,22,74v29,0,39,-29,42,-44r30,0v-5,21,-26,68,-79,68v-48,0,-60,-32,-46,-99v10,-48,31,-104,90,-104v65,0,52,60,43,105xm70,-117r69,0v5,-23,9,-58,-22,-57v-36,2,-42,39,-47,57xm114,-219r36,-51r35,0r-49,51r-22,0"},"\u00ea":{"d":"166,-93r-102,0v-6,30,-15,74,22,74v29,0,39,-29,42,-44r30,0v-5,21,-26,68,-79,68v-48,0,-60,-32,-46,-99v10,-48,31,-104,90,-104v65,0,52,60,43,105xm70,-117r69,0v5,-23,9,-58,-22,-57v-36,2,-42,39,-47,57xm76,-219r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0"},"\u00eb":{"d":"166,-93r-102,0v-6,30,-15,74,22,74v29,0,39,-29,42,-44r30,0v-5,21,-26,68,-79,68v-48,0,-60,-32,-46,-99v10,-48,31,-104,90,-104v65,0,52,60,43,105xm70,-117r69,0v5,-23,9,-58,-22,-57v-36,2,-42,39,-47,57xm142,-227r8,-36r28,0r-8,36r-28,0xm84,-227r7,-36r29,0r-8,36r-28,0"},"\u00e8":{"d":"166,-93r-102,0v-6,30,-15,74,22,74v29,0,39,-29,42,-44r30,0v-5,21,-26,68,-79,68v-48,0,-60,-32,-46,-99v10,-48,31,-104,90,-104v65,0,52,60,43,105xm70,-117r69,0v5,-23,9,-58,-22,-57v-36,2,-42,39,-47,57xm93,-270r35,0r15,51r-22,0"},"\u00ed":{"d":"22,0r40,-193r30,0r-40,193r-30,0xm66,-219r36,-51r36,0r-50,51r-22,0","w":73},"\u00ee":{"d":"22,0r40,-193r30,0r-40,193r-30,0xm31,-219r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0","w":73},"\u00ef":{"d":"22,0r40,-193r30,0r-40,193r-30,0xm98,-227r8,-36r28,0r-8,36r-28,0xm40,-227r8,-36r28,0r-8,36r-28,0","w":73},"\u00ec":{"d":"22,0r40,-193r30,0r-40,193r-30,0xm42,-270r36,0r14,51r-21,0","w":73},"\u00f1":{"d":"20,0r40,-193r29,0v-1,7,-6,17,-4,23v12,-18,33,-28,52,-28v51,0,43,38,38,61r-28,137r-30,0r27,-133v3,-15,8,-39,-20,-39v-16,0,-41,11,-47,39r-27,133r-30,0xm114,-264v19,0,47,29,53,-2r20,0v-4,18,-18,40,-39,40v-25,0,-47,-27,-56,2r-20,0v4,-21,23,-40,42,-40","w":166,"k":{"y":-4}},"\u00f3":{"d":"83,-19v32,0,46,-35,55,-77v9,-42,9,-78,-23,-78v-31,0,-44,36,-53,78v-9,42,-10,77,21,77xm30,-96v12,-54,36,-102,91,-102v56,0,60,48,48,102v-12,54,-34,101,-90,101v-56,0,-61,-47,-49,-101xm112,-219r36,-51r36,0r-50,51r-22,0","k":{"y":-4,"w":-4}},"\u00f4":{"d":"83,-19v32,0,46,-35,55,-77v9,-42,9,-78,-23,-78v-31,0,-44,36,-53,78v-9,42,-10,77,21,77xm30,-96v12,-54,36,-102,91,-102v56,0,60,48,48,102v-12,54,-34,101,-90,101v-56,0,-61,-47,-49,-101xm75,-219r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0","k":{"y":-4,"w":-4}},"\u00f6":{"d":"83,-19v32,0,46,-35,55,-77v9,-42,9,-78,-23,-78v-31,0,-44,36,-53,78v-9,42,-10,77,21,77xm30,-96v12,-54,36,-102,91,-102v56,0,60,48,48,102v-12,54,-34,101,-90,101v-56,0,-61,-47,-49,-101xm139,-227r8,-36r28,0r-8,36r-28,0xm81,-227r7,-36r28,0r-7,36r-28,0","k":{"y":-4,"w":-4}},"\u00f2":{"d":"83,-19v32,0,46,-35,55,-77v9,-42,9,-78,-23,-78v-31,0,-44,36,-53,78v-9,42,-10,77,21,77xm30,-96v12,-54,36,-102,91,-102v56,0,60,48,48,102v-12,54,-34,101,-90,101v-56,0,-61,-47,-49,-101xm90,-270r36,0r14,51r-22,0","k":{"y":-4,"w":-4}},"\u00f5":{"d":"83,-19v32,0,46,-35,55,-77v9,-42,9,-78,-23,-78v-31,0,-44,36,-53,78v-9,42,-10,77,21,77xm30,-96v12,-54,36,-102,91,-102v56,0,60,48,48,102v-12,54,-34,101,-90,101v-56,0,-61,-47,-49,-101xm111,-264v19,0,46,28,53,-2r20,0v-4,18,-19,40,-40,40v-25,0,-46,-27,-55,2r-20,0v4,-21,23,-40,42,-40","k":{"y":-4,"w":-4}},"\u00fa":{"d":"187,-193r-40,193r-29,0v1,-7,6,-17,4,-23v-12,18,-34,28,-53,28v-51,0,-43,-38,-38,-61r29,-137r30,0r-28,133v-3,15,-7,39,21,39v16,0,40,-11,46,-39r28,-133r30,0xm117,-219r36,-51r35,0r-50,51r-21,0","w":166},"\u00fb":{"d":"187,-193r-40,193r-29,0v1,-7,6,-17,4,-23v-12,18,-34,28,-53,28v-51,0,-43,-38,-38,-61r29,-137r30,0r-28,133v-3,15,-7,39,21,39v16,0,40,-11,46,-39r28,-133r30,0xm77,-219r47,-51r28,0r25,51r-28,0r-15,-32r-29,32r-28,0","w":166},"\u00fc":{"d":"187,-193r-40,193r-29,0v1,-7,6,-17,4,-23v-12,18,-34,28,-53,28v-51,0,-43,-38,-38,-61r29,-137r30,0r-28,133v-3,15,-7,39,21,39v16,0,40,-11,46,-39r28,-133r30,0xm143,-227r8,-36r28,0r-8,36r-28,0xm85,-227r8,-36r28,0r-8,36r-28,0","w":166},"\u00f9":{"d":"187,-193r-40,193r-29,0v1,-7,6,-17,4,-23v-12,18,-34,28,-53,28v-51,0,-43,-38,-38,-61r29,-137r30,0r-28,133v-3,15,-7,39,21,39v16,0,40,-11,46,-39r28,-133r30,0xm90,-270r36,0r14,51r-22,0","w":166},"\u00a0":{"w":86,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Trademark:
 * Helvetica, Neue Helvetica is a trademark of Heidelberger Druckmaschinen AG
 * which may be registered in certain jurisdictions, exclusively licensed through
 * Linotype Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen
 * AG.
 * 
 * Full name:
 * HelveticaNeueLTPro-HvCnO
 * 
 * Description:
 * Copyright © 1988, 1990, 1993, 2003 Linotype Library GmbH, www.linotype.com. All
 * rights reserved. Copyright © 1988, 1990, 1993 Adobe Systems Incorporated. All
 * Rights Reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH
 * 
 * Designer:
 * Linotype Library GmbH
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.Linotype.com
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Helvetica Neue LT Pro","font-weight":750,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 6 4 7 2 4 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-21 -382 395 80.6188","underline-thickness":"18","underline-position":"-18","slope":"-12","stemh":"45","stemv":"58","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93,"k":{"\u201c":13,"\u2018":13}},"!":{"d":"32,0r12,-54r56,0r-11,54r-57,0xm67,-173r17,-84r59,0r-18,84r-27,100r-45,0","w":120},"\"":{"d":"53,-131r26,-126r47,0r-26,126r-47,0xm127,-131r27,-126r47,0r-27,126r-47,0","w":173},"#":{"d":"124,-102r16,-46r-26,0r-16,46r26,0xm24,0r21,-62r-27,0r9,-40r32,0r16,-46r-26,0r8,-40r32,0r21,-62r40,0r-21,62r25,0r22,-62r40,0r-22,62r26,0r-8,40r-32,0r-16,46r26,0r-8,40r-32,0r-21,62r-40,0r21,-62r-26,0r-21,62r-39,0","w":187},"$":{"d":"70,37r7,-32v-45,1,-70,-31,-54,-81r59,0v-5,18,-8,41,17,41v21,0,30,-16,33,-29v12,-54,-106,-24,-86,-117v8,-38,34,-69,85,-74r5,-27r29,0r-6,27v52,4,62,35,53,74r-58,0v5,-20,2,-33,-16,-34v-15,0,-26,9,-30,26v-11,53,105,26,87,114v-11,53,-42,76,-90,80r-7,32r-28,0","w":187},"%":{"d":"173,-64v9,-41,24,-69,71,-69v51,0,51,30,43,69v-9,39,-20,69,-71,69v-51,0,-52,-30,-43,-69xm45,-186v9,-41,25,-69,72,-69v52,0,50,30,42,69v-8,39,-20,69,-71,69v-51,0,-51,-30,-43,-69xm215,-64v-5,28,-5,39,6,39v12,0,17,-10,23,-41v7,-33,4,-37,-6,-37v-13,0,-19,17,-23,39xm65,5r167,-260r36,0r-167,260r-36,0xm88,-186v-5,28,-5,39,6,39v12,0,17,-10,23,-41v7,-33,3,-37,-7,-37v-13,0,-18,17,-22,39","w":280},"&":{"d":"153,-135r24,45v10,-10,13,-22,17,-34r51,0v-8,29,-20,54,-46,76r26,48r-64,0r-8,-16v-22,13,-42,21,-68,21v-59,0,-70,-40,-64,-72v8,-38,32,-54,65,-76v-36,-52,8,-117,70,-117v37,0,64,19,56,58v-7,31,-31,49,-59,67xm134,-53r-28,-52v-17,10,-25,21,-28,34v-7,31,37,41,56,18xm147,-226v-26,0,-31,38,-13,55v14,-10,27,-19,30,-35v3,-13,-6,-20,-17,-20","w":226},"\u2019":{"d":"128,-257v-14,57,-10,121,-82,126r6,-28v16,0,24,-11,29,-35r-22,0r13,-63r56,0","w":93,"k":{"s":20,"r":13,"\u2019":13}},"(":{"d":"168,-257v-54,53,-107,225,-67,323r-47,0v-18,-44,-30,-101,-17,-161v12,-60,49,-119,85,-162r46,0","w":113},")":{"d":"-15,66v54,-53,107,-225,66,-323r47,0v18,43,30,102,18,162v-13,60,-49,118,-85,161r-46,0","w":113},"*":{"d":"43,-195r17,-31r41,18r10,-49r32,0r-11,49r48,-18r4,31r-48,15r21,39r-30,19r-20,-39r-36,39r-23,-19r37,-39","w":146},"+":{"d":"85,0r14,-68r-68,0r10,-46r67,0r14,-68r47,0r-14,68r68,0r-10,46r-68,0r-14,68r-46,0","w":216},",":{"d":"19,-2r13,-63r56,0v-14,57,-10,121,-82,126r6,-28v16,0,24,-11,29,-35r-22,0","w":93,"k":{"\u201d":27,"\u2019":27," ":13}},"-":{"d":"28,-80r11,-49r109,0r-11,49r-109,0","w":133},".":{"d":"19,0r13,-65r56,0r-13,65r-56,0","w":93,"k":{"\u201d":27,"\u2019":27," ":13}},"\/":{"d":"-3,5r137,-267r49,0r-137,267r-49,0","w":126},"0":{"d":"203,-125v-16,73,-34,130,-110,130v-76,0,-74,-48,-57,-130v15,-73,35,-130,111,-130v76,0,73,48,56,130xm96,-125v-14,72,-17,92,4,92v20,0,29,-20,43,-92v15,-73,16,-92,-4,-92v-21,0,-28,19,-43,92","w":187},"1":{"d":"71,0r37,-177r-49,0r8,-38v47,3,70,-23,75,-40r42,0r-53,255r-60,0","w":187},"2":{"d":"105,-170r-56,0v8,-56,43,-85,100,-85v62,0,73,31,64,71v0,57,-97,104,-119,137r91,0r-10,47r-163,0v13,-94,131,-128,140,-183v4,-20,3,-34,-14,-34v-23,0,-29,28,-33,47","w":187},"3":{"d":"51,-180v10,-51,39,-74,98,-75v50,0,68,21,59,70v-5,27,-25,45,-47,52v29,7,37,25,29,61v-12,55,-51,77,-96,77v-51,0,-80,-15,-67,-80r58,0v-5,23,-4,42,14,42v19,6,33,-30,33,-58v0,-22,-19,-20,-40,-20r8,-38v33,3,44,-7,50,-39v4,-20,0,-29,-14,-29v-13,0,-25,8,-31,37r-54,0","w":187},"4":{"d":"18,-49r10,-47r115,-154r64,0r-32,154r24,0r-10,47r-23,0r-10,49r-57,0r10,-49r-91,0xm119,-96r17,-85r-60,85r43,0","w":187},"5":{"d":"26,-75r58,0v-4,16,-9,43,13,42v20,0,25,-21,34,-55v14,-52,-26,-56,-39,-24r-56,0r36,-138r143,0r-9,47r-97,0v-3,16,-12,34,-12,49v43,-43,120,-21,95,68v-18,64,-46,91,-103,91v-58,0,-78,-34,-63,-80","w":187},"6":{"d":"102,-33v17,0,25,-16,31,-44v7,-31,6,-45,-13,-45v-18,0,-26,17,-31,40v-7,30,-5,49,13,49xm212,-190r-59,0v3,-14,3,-27,-12,-27v-19,0,-32,20,-40,72v36,-41,118,-29,94,57v-14,50,-34,93,-102,93v-75,0,-75,-48,-59,-124v17,-85,35,-136,117,-136v46,0,70,19,61,65","w":187},"7":{"d":"157,-199r-104,0r10,-51r163,0r-10,45v-52,59,-97,148,-111,205r-63,0v15,-59,69,-151,115,-199","w":187},"8":{"d":"117,-114v-19,0,-27,17,-32,40v-5,23,-4,41,15,41v19,0,28,-18,33,-41v5,-23,3,-40,-16,-40xm125,-152v14,0,23,-8,28,-33v3,-18,2,-32,-14,-32v-16,0,-24,14,-28,32v-5,25,0,33,14,33xm147,-255v98,0,71,109,16,120v26,4,38,25,31,60v-9,43,-32,80,-101,80v-113,0,-79,-128,-14,-140v-21,-6,-30,-24,-24,-54v8,-39,36,-66,92,-66","w":187},"9":{"d":"119,-127v18,0,26,-18,31,-41v6,-30,6,-49,-12,-49v-17,0,-26,17,-32,45v-7,31,-6,45,13,45xm27,-60r58,0v-3,14,-1,27,13,27v19,0,32,-20,40,-72v-36,41,-119,29,-95,-57v14,-50,35,-93,103,-93v76,0,73,48,58,124v-17,85,-34,136,-116,136v-46,0,-70,-19,-61,-65","w":187},":":{"d":"45,-127r13,-65r56,0r-13,65r-56,0xm19,0r13,-65r56,0r-13,65r-56,0","w":93},";":{"d":"45,-127r13,-65r56,0r-13,65r-56,0xm19,-2r13,-63r56,0v-14,57,-10,121,-82,126r6,-28v16,0,24,-11,29,-35r-22,0","w":93},"\u037e":{"d":"45,-127r13,-65r56,0r-13,65r-56,0xm19,-2r13,-63r56,0v-14,57,-10,121,-82,126r6,-28v16,0,24,-11,29,-35r-22,0","w":93},"<":{"d":"31,-68r10,-46r196,-71r-9,47r-132,47r112,47r-10,47","w":216},"=":{"d":"23,-28r9,-47r183,0r-10,47r-182,0xm39,-107r10,-47r182,0r-10,47r-182,0","w":216},">":{"d":"223,-114r-10,46r-197,71r10,-47r131,-47r-112,-47r10,-47","w":216},"?":{"d":"59,0r11,-54r56,0r-11,54r-56,0xm105,-177r-54,0v8,-53,40,-85,93,-85v49,0,71,26,62,70v-15,69,-74,68,-77,119r-54,0v4,-26,12,-48,25,-61v19,-21,44,-28,51,-64v4,-17,0,-26,-15,-26v-15,0,-24,13,-31,47"},"@":{"d":"226,-176r8,-18r32,0r-45,104v-1,5,1,8,5,8v14,0,42,-24,50,-63v12,-53,-26,-83,-79,-83v-61,0,-110,44,-122,100v-12,57,23,99,83,99v33,0,61,-9,83,-22r32,0v-33,36,-77,56,-123,56v-78,0,-129,-56,-113,-134v15,-76,91,-133,168,-133v66,0,117,43,104,109v-16,76,-88,103,-111,103v-13,0,-20,-6,-19,-19v-33,32,-103,24,-88,-42v10,-44,49,-89,96,-89v18,0,32,7,39,24xm204,-135v4,-17,-6,-29,-21,-29v-24,0,-47,25,-52,47v-4,18,3,31,20,31v25,0,48,-26,53,-49","w":288},"A":{"d":"1,0r119,-257r75,0r11,257r-63,0r1,-49r-62,0r-19,49r-62,0xm145,-96r1,-114r-45,114r44,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"B":{"d":"103,-114r-15,69v33,3,55,-9,59,-33v6,-34,-13,-38,-44,-36xm123,-212r-12,58v30,3,48,-7,52,-31v8,-19,-14,-31,-40,-27xm19,0r53,-257v72,1,172,-16,154,63v-7,31,-28,52,-53,59v19,3,45,11,35,64v-6,30,-28,71,-100,71r-89,0","w":206},"C":{"d":"219,-168r-58,0v8,-37,7,-54,-13,-54v-24,0,-31,24,-45,91v-16,76,-17,96,8,96v22,0,29,-26,38,-66r59,0v-12,60,-34,106,-113,106v-77,0,-71,-58,-55,-135v13,-66,32,-132,117,-132v59,0,80,35,62,94","w":193},"D":{"d":"123,-212r-35,167v50,1,52,-2,73,-88v17,-72,10,-81,-38,-79xm19,0r53,-257r90,0v60,0,78,31,60,120v-19,93,-41,137,-120,137r-83,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"V":6,"A":6,".":9,",":9}},"E":{"d":"19,0r53,-257r149,0r-10,49r-89,0r-10,51r82,0r-10,49r-82,0r-13,59r92,0r-10,49r-152,0"},"F":{"d":"19,0r53,-257r149,0r-10,49r-89,0r-10,51r82,0r-10,49r-82,0r-23,108r-60,0","w":173,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"A":13,".":40,",":40}},"G":{"d":"223,-179r-58,0v3,-17,7,-43,-16,-43v-25,0,-33,26,-47,94v-14,70,-15,93,9,93v23,0,34,-29,40,-63r-28,0r8,-40r85,0r-29,138r-41,0r3,-24v-14,23,-39,29,-62,29v-64,0,-65,-48,-48,-128v17,-84,35,-139,120,-139v78,0,70,54,64,83","w":200,"k":{".":9}},"H":{"d":"19,0r53,-257r60,0r-20,96r49,0r20,-96r60,0r-53,257r-61,0r23,-110r-48,0r-23,110r-60,0","w":206},"I":{"d":"20,0r53,-257r61,0r-54,257r-60,0","w":100},"J":{"d":"117,-77r37,-180r61,0r-38,180v-10,48,-37,82,-96,82v-62,0,-74,-39,-58,-87r56,0v-5,16,-14,47,10,47v17,0,23,-18,28,-42","k":{"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e3":4,"\u00e5":4,"\u00e0":4,"\u00e4":4,"\u00e2":4,"\u00e1":4,"e":2,"a":4,".":9,",":9}},"K":{"d":"19,0r53,-257r60,0r-20,101r78,-101r65,0r-90,111r45,146r-68,0r-27,-97r-21,25r-15,72r-60,0","w":206,"k":{"\u00f5":4,"\u00f2":4,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"y":11,"o":4,"e":4,"O":6}},"L":{"d":"19,0r53,-257r60,0r-43,208r88,0r-10,49r-148,0","w":166,"k":{"\u201d":33,"y":20,"Y":33,"W":27,"V":27,"T":27,"\u2019":33}},"M":{"d":"21,0r53,-257r88,0r-3,169r66,-169r88,0r-53,257r-57,0r41,-200r-81,200r-46,0r-1,-200r-41,200r-54,0","w":280},"N":{"d":"19,0r53,-257r69,0r16,167r35,-167r56,0r-53,257r-69,0r-17,-177r-36,177r-54,0","w":213},"O":{"d":"230,-195v0,93,-19,201,-128,200v-79,0,-79,-52,-62,-134v17,-82,38,-133,118,-133v58,0,72,27,72,67xm102,-129v-14,71,-16,94,8,94v24,0,34,-23,48,-94v14,-71,15,-93,-9,-93v-24,0,-33,22,-47,93","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"P":{"d":"109,-145v39,5,53,-15,55,-46v1,-19,-19,-23,-41,-21xm19,0r53,-257r94,0v63,0,65,46,59,78v-11,54,-51,85,-125,79r-21,100r-60,0","w":200,"k":{"\u00f5":13,"\u00f2":13,"\u00f6":13,"\u00f4":13,"\u00f3":13,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"\u00e1":13,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"o":13,"e":13,"a":13,"A":20,".":58,",":58}},"Q":{"d":"230,-195v0,61,-18,132,-50,170r23,30r-42,32r-27,-36v-7,2,-21,5,-32,4v-79,0,-79,-52,-62,-134v17,-82,38,-133,118,-133v58,0,72,27,72,67xm102,-129v-14,71,-16,94,8,94v24,0,34,-23,48,-94v14,-71,15,-93,-9,-93v-24,0,-33,22,-47,93","w":206},"R":{"d":"19,0r53,-257r102,0v51,0,63,32,55,67v-8,37,-27,56,-57,63v59,0,21,83,21,112v0,10,5,8,6,15r-65,0v-3,-9,-2,-23,4,-52v12,-59,2,-54,-37,-54r-22,106r-60,0xm123,-215r-13,66v33,5,55,-12,57,-33v9,-27,-14,-36,-44,-33","w":206,"k":{"Y":11,"T":6}},"S":{"d":"27,-78r58,0v-4,18,-10,43,17,43v21,0,31,-16,34,-31v12,-55,-106,-24,-86,-120v8,-41,38,-76,100,-76v63,0,78,33,67,76r-59,0v5,-23,5,-36,-15,-36v-15,0,-26,9,-30,28v-12,54,105,26,86,117v-13,59,-49,82,-105,82v-52,0,-89,-26,-67,-83","w":193},"T":{"d":"56,0r43,-208r-54,0r10,-49r169,0r-10,49r-54,0r-43,208r-61,0","w":172,"k":{"\u00f9":27,"\u00fc":27,"\u00fb":27,"\u00fa":27,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"y":27,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"O":6,"A":20,";":27,":":27,".":33,"-":27,",":33}},"U":{"d":"238,-257r-36,172v-10,50,-33,90,-103,90v-71,0,-76,-39,-66,-90r36,-172r60,0r-39,190v-4,20,1,32,17,32v16,0,27,-12,31,-32r39,-190r61,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"V":{"d":"57,0r-3,-257r65,0r-10,199r72,-199r65,0r-112,257r-77,0","w":193,"k":{"\u00f9":6,"\u00fc":6,"\u00fb":6,"\u00fa":6,"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":11,"\u00e5":11,"\u00e0":11,"\u00e4":11,"\u00e2":11,"\u00e1":11,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"u":6,"o":6,"e":6,"a":11,"O":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"48,0r7,-257r61,0r-15,183r65,-183r56,0r-9,183r60,-183r58,0r-98,257r-67,0r11,-183r-63,183r-66,0","w":280,"k":{"\u00f5":6,"\u00f2":6,"\u00f6":6,"\u00f4":6,"\u00f3":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"o":6,"e":6,"a":6,"A":13,".":27,"-":6,",":27}},"X":{"d":"1,0r90,-131r-31,-126r67,0v4,26,5,55,11,79r42,-79r67,0r-85,126r37,131r-69,0r-13,-85r-49,85r-67,0","w":200},"Y":{"d":"66,0r21,-101r-33,-156r67,0r10,95r49,-95r65,0r-97,156r-21,101r-61,0","w":192,"k":{"\u00f9":20,"\u00fc":20,"\u00fb":20,"\u00fa":20,"\u00f5":27,"\u00f2":27,"\u00f6":27,"\u00f4":27,"\u00f3":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"\u00e1":27,"\u00d5":13,"\u00d2":13,"\u00d6":13,"\u00d4":13,"\u00d3":13,"\u00c3":33,"\u00c5":33,"\u00c0":33,"\u00c4":33,"\u00c2":33,"\u00c1":33,"u":20,"o":27,"i":9,"e":27,"a":27,"S":9,"O":13,"A":33,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,0r9,-45r122,-163r-81,0r10,-49r150,0r-9,42r-122,166r88,0r-10,49r-157,0","w":173},"[":{"d":"16,66r68,-323r91,0r-9,40r-37,0r-50,243r37,0r-9,40r-91,0","w":119},"\\":{"d":"79,5r-27,-267r49,0r27,267r-49,0","w":126},"]":{"d":"-15,66r9,-40r36,0r51,-243r-37,0r8,-40r91,0r-67,323r-91,0","w":119},"^":{"d":"43,-111r96,-139r41,0r39,139r-45,0r-24,-90r-62,90r-45,0","w":216},"_":{"d":"-9,45r4,-18r179,0r-3,18r-180,0"},"\u2018":{"d":"46,-131v14,-57,10,-121,82,-126r-6,28v-16,0,-24,11,-29,35r22,0r-13,63r-56,0","w":93,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"\u2018":13,"A":13}},"a":{"d":"126,-96v-34,16,-39,8,-48,36v-5,15,1,25,12,25v25,6,34,-43,36,-61xm43,-135v11,-47,37,-64,90,-65v117,1,20,127,34,200r-56,0v-1,-7,0,-14,1,-22v-26,40,-109,41,-91,-32v11,-45,47,-57,90,-66v18,-4,22,-7,25,-22v3,-12,-1,-20,-14,-20v-16,0,-23,10,-27,27r-52,0","k":{"y":6,"w":4,"v":4}},"b":{"d":"93,-96v-8,38,-8,59,9,59v22,0,29,-31,35,-62v8,-36,11,-58,-10,-58v-20,0,-27,26,-34,61xm16,0r53,-257r59,0r-17,83v14,-21,33,-26,49,-26v48,0,48,44,35,104v-15,73,-41,101,-81,101v-27,1,-32,-18,-37,-29r-5,24r-56,0","w":186,"k":{"y":6,"v":4}},"c":{"d":"191,-121r-54,0v6,-29,1,-41,-14,-41v-19,0,-24,26,-35,65v-24,83,32,84,40,18r54,0v-13,60,-41,84,-94,84v-73,0,-70,-51,-57,-109v12,-55,35,-96,99,-96v61,0,71,33,61,79","w":173,"k":{"y":6}},"d":{"d":"133,-96v7,-35,12,-61,-8,-61v-22,0,-27,22,-35,58v-6,31,-12,62,10,62v17,0,25,-21,33,-59xm26,-49v0,-68,24,-151,83,-151v16,0,34,5,39,26r18,-83r58,0r-53,257r-57,0v1,-7,6,-18,4,-24v-6,13,-21,29,-47,29v-30,0,-45,-15,-45,-54","w":186},"e":{"d":"93,-122r42,0v6,-27,5,-42,-11,-42v-19,0,-26,16,-31,42xm184,-88r-98,0v-4,23,-13,62,9,57v15,0,22,-12,29,-36r54,0v-11,49,-41,72,-90,72v-73,0,-70,-51,-57,-109v12,-55,35,-96,99,-96v72,0,67,46,54,112","w":173},"f":{"d":"24,0r32,-154r-24,0r8,-41r24,0v3,-53,36,-74,99,-66r-8,39v-25,-3,-31,8,-33,27r27,0r-8,41r-27,0r-32,154r-58,0","w":106,"k":{"\u201d":-6,"\u2019":-6}},"g":{"d":"92,-101v-9,41,-6,54,10,54v15,0,25,-12,34,-56v7,-36,6,-52,-11,-52v-19,0,-26,22,-33,54xm68,12v0,10,6,17,17,16v21,4,30,-28,36,-61v-13,23,-33,28,-53,28v-42,0,-47,-41,-35,-95v10,-46,27,-100,78,-100v27,-1,35,16,41,32r5,-27r54,0r-39,188v-9,44,-34,73,-96,73v-57,0,-68,-25,-62,-54r54,0","w":186},"h":{"d":"16,0r53,-257r59,0r-17,83v25,-42,103,-37,90,28r-30,146r-59,0r28,-133v3,-14,-2,-22,-13,-22v-11,0,-22,9,-26,28r-26,127r-59,0","w":186},"i":{"d":"62,-215r10,-45r58,0r-9,45r-59,0xm18,0r40,-195r58,0r-40,195r-58,0","w":93},"j":{"d":"62,-215r10,-45r58,0r-9,45r-59,0xm18,-2r40,-193r58,0r-41,200v-7,48,-36,62,-96,58r8,-40v22,1,28,-5,31,-25","w":93},"k":{"d":"16,0r53,-257r59,0r-27,132r58,-70r64,0r-72,79r39,116r-64,0r-21,-73r-20,20r-10,53r-59,0","w":186,"k":{"\u00f5":4,"\u00f2":4,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"o":4,"e":4}},"l":{"d":"18,0r53,-257r58,0r-53,257r-58,0","w":93},"m":{"d":"18,0r40,-195r56,0v0,7,-5,17,-3,23v12,-17,30,-28,52,-28v17,0,39,3,42,30v27,-46,108,-43,94,24r-30,146r-59,0r28,-133v3,-14,-2,-22,-13,-22v-11,0,-22,9,-26,28r-27,127r-58,0r27,-133v3,-14,-1,-22,-12,-22v-11,0,-22,9,-26,28r-27,127r-58,0","w":286},"n":{"d":"16,0r41,-195r56,0v-1,7,-6,17,-4,23v22,-40,106,-42,92,26r-30,146r-59,0r28,-133v3,-14,-2,-22,-13,-22v-11,0,-22,9,-26,28r-26,127r-59,0","w":186},"o":{"d":"89,5v-72,0,-71,-44,-59,-102v12,-58,33,-103,101,-103v71,0,71,44,59,102v-12,58,-34,103,-101,103xm132,-97v10,-48,10,-65,-8,-65v-17,0,-26,17,-36,64v-10,48,-8,65,9,65v18,0,25,-16,35,-64","k":{"y":4,"v":2}},"p":{"d":"94,-99v-7,35,-12,62,8,62v22,0,27,-23,35,-59v6,-31,12,-61,-10,-61v-17,0,-25,20,-33,58xm202,-145v0,67,-25,150,-84,150v-18,0,-31,-7,-39,-26r-18,84r-58,0r54,-258r56,0r-5,24v6,-13,23,-29,49,-29v30,0,45,16,45,55","w":186,"k":{"y":4}},"q":{"d":"134,-99v8,-38,8,-58,-9,-58v-22,0,-29,30,-35,61v-8,36,-11,59,10,59v20,0,27,-27,34,-62xm99,63r17,-84v-14,21,-32,26,-49,26v-48,0,-48,-44,-35,-104v15,-73,41,-101,81,-101v27,-1,32,18,37,29r5,-24r56,0r-54,258r-58,0","w":186},"r":{"d":"16,0r41,-195r56,0v-1,9,-6,21,-5,28v12,-19,33,-37,62,-32r-11,55v-30,-6,-56,2,-62,33r-22,111r-59,0","w":133,"k":{"\u00f5":4,"\u00f2":4,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e7":4,"\u00e3":4,"\u00e5":4,"\u00e0":4,"\u00e4":4,"\u00e2":4,"\u00e1":4,"q":6,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,".":27,"-":13,",":27}},"s":{"d":"22,-62r51,0v-2,18,-3,31,16,31v25,0,39,-33,8,-44v-45,-15,-66,-25,-57,-66v8,-39,39,-59,86,-59v58,1,66,28,58,61r-52,0v5,-15,1,-25,-14,-25v-15,0,-20,8,-23,18v-7,34,91,11,75,87v-8,39,-39,64,-88,64v-57,1,-72,-25,-60,-67","w":166,"k":{"w":2}},"t":{"d":"34,-50r22,-104r-24,0r8,-41r24,0r12,-57r58,0r-12,57r27,0r-8,41r-27,0r-20,98v-6,17,8,20,23,17r-8,39v-47,3,-88,12,-75,-50","w":113},"u":{"d":"211,-195r-40,195r-57,0v1,-7,6,-17,4,-23v-22,40,-107,42,-92,-26r31,-146r58,0r-28,133v-3,14,1,22,12,22v11,0,23,-8,27,-27r27,-128r58,0","w":186},"v":{"d":"52,0r-8,-195r61,0r-7,144r53,-144r59,0r-89,195r-69,0","w":173,"k":{"\u00f5":2,"\u00f2":2,"\u00f6":2,"\u00f4":2,"\u00f3":2,"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e3":2,"\u00e5":2,"\u00e0":2,"\u00e4":2,"\u00e2":2,"\u00e1":2,"o":2,"e":2,"a":2,".":20,",":20}},"w":{"d":"44,0r0,-195r58,0r-11,144r52,-144r63,0r-9,144r51,-144r56,0r-83,195r-65,0r7,-144r-52,144r-67,0","w":266,"k":{"\u00f5":2,"\u00f2":2,"\u00f6":2,"\u00f4":2,"\u00f3":2,"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e3":2,"\u00e5":2,"\u00e0":2,"\u00e4":2,"\u00e2":2,"\u00e1":2,"o":2,"e":2,"a":2,".":13,",":13}},"x":{"d":"1,0r74,-101r-30,-94r58,0r11,58r36,-58r58,0r-68,94r32,101r-59,0r-13,-63r-40,63r-59,0","w":173,"k":{"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"e":2}},"y":{"d":"58,1r-14,-196r60,0r-4,137r52,-137r58,0r-93,196v-27,59,-46,64,-111,62r9,-41v22,3,33,1,43,-21","w":173,"k":{"\u00f5":4,"\u00f2":4,"\u00f6":4,"\u00f4":4,"\u00f3":4,"\u00e8":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"\u00e1":6,"o":4,"e":4,"a":6,".":20,",":20}},"z":{"d":"11,0r9,-45r96,-105r-71,0r10,-45r139,0r-9,45r-98,105r78,0r-9,45r-145,0","w":166,"k":{"\u00f5":2,"\u00f2":2,"\u00f6":2,"\u00f4":2,"\u00f3":2,"\u00e8":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"o":2,"e":2}},"{":{"d":"70,66v-64,4,-36,-70,-28,-113v3,-18,-8,-33,-27,-33r7,-31v45,0,45,-59,54,-97v10,-43,45,-53,98,-49r-8,40v-73,-8,-21,116,-95,122v48,5,23,62,16,95v-4,21,6,29,28,26r-8,40r-37,0","w":119},"|":{"d":"15,5r56,-267r47,0r-56,267r-47,0","w":79},"}":{"d":"-6,26v75,5,18,-115,95,-122v-46,-4,-24,-60,-17,-94v5,-22,-5,-30,-28,-27r9,-40v47,-3,86,1,77,49v-6,34,-34,93,14,97r-7,31v-46,0,-46,59,-54,98v-9,43,-45,52,-97,48","w":119},"~":{"d":"95,-127v32,0,44,24,72,25v14,0,31,-16,37,-25r5,41v-13,18,-30,31,-51,31v-32,1,-44,-23,-71,-25v-14,0,-32,16,-38,25r-4,-41v13,-18,29,-31,50,-31","w":216},"'":{"d":"50,-131r27,-126r46,0r-26,126r-47,0","w":93},"\u201c":{"d":"126,-131v14,-57,10,-121,82,-126r-6,28v-16,0,-24,11,-29,35r22,0r-13,63r-56,0xm45,-131v16,-56,10,-121,83,-126r-6,28v-16,0,-24,11,-29,35r22,0r-13,63r-57,0","w":173,"k":{"\u00c3":13,"\u00c5":13,"\u00c0":13,"\u00c4":13,"\u00c2":13,"\u00c1":13,"A":13}},"\u2013":{"d":"17,-82r9,-44r180,0r-9,44r-180,0"},"\u201d":{"d":"139,-194r13,-63r56,0v-14,57,-10,121,-82,126r6,-28v16,0,24,-11,29,-35r-22,0xm59,-194r13,-63r56,0v-14,58,-10,121,-83,126r6,-28v16,0,25,-11,30,-35r-22,0","w":173,"k":{" ":13}},"\u2026":{"d":"272,0r13,-65r56,0r-13,65r-56,0xm152,0r13,-65r56,0r-13,65r-56,0xm32,0r13,-65r57,0r-14,65r-56,0","w":360},"`":{"d":"75,-215r-25,-51r56,0r7,51r-38,0","w":93},"\u00b4":{"d":"69,-216r28,-51r56,0r-46,51r-38,0","w":93},"\u2014":{"d":"17,-82r9,-44r360,0r-9,44r-360,0","w":360},"\u00c6":{"d":"156,-96r23,-112r-3,0r-59,112r39,0xm3,0r151,-257r172,0r-10,49r-81,0r-11,51r76,0r-10,49r-76,0r-12,59r84,0r-10,49r-140,0r10,-49r-54,0r-26,49r-63,0","w":286},"\u00d8":{"d":"96,-99v26,-34,47,-73,71,-109v-3,-10,-8,-14,-18,-14v-24,0,-33,22,-47,93v-3,12,-5,22,-6,30xm31,-62v0,-109,40,-236,166,-193r15,-23r22,11r-17,26v20,24,13,66,3,112v-14,71,-32,134,-118,134v-17,0,-30,-2,-39,-7r-15,23r-22,-11r17,-26v-9,-11,-12,-27,-12,-46xm93,-49v2,9,7,14,17,14v24,0,34,-23,48,-94v3,-12,4,-22,5,-29","w":206},"\u00e6":{"d":"186,-122r42,0v6,-27,5,-42,-11,-42v-19,0,-26,16,-31,42xm126,-96v-34,16,-39,8,-48,36v-5,15,1,25,12,25v25,6,34,-43,36,-61xm43,-135v10,-46,38,-64,86,-65v37,0,44,16,46,22v51,-44,134,-27,105,75r-3,15r-98,0v-6,21,-13,62,9,57v15,0,22,-12,29,-36r54,0v-11,49,-42,72,-91,72v-37,0,-51,-12,-54,-32v-21,44,-124,52,-105,-27v11,-45,47,-57,90,-66v18,-4,22,-7,25,-22v3,-12,-1,-20,-14,-20v-16,0,-23,10,-27,27r-52,0","w":266},"\u00f8":{"d":"85,-84v19,-21,35,-45,53,-67v-1,-7,-7,-11,-15,-11v-22,0,-30,43,-38,78xm135,-111v-19,21,-34,45,-52,67v1,7,6,11,14,11v22,0,31,-43,38,-78xm13,10r20,-25v-13,-18,-11,-47,-3,-83v10,-45,25,-102,101,-102v17,0,30,2,39,7r19,-25r18,13r-19,26v13,18,9,46,2,82v-9,45,-25,102,-101,102v-17,0,-30,-2,-39,-7r-19,25"},"\u2122":{"d":"71,-109r23,-112r-37,0r7,-36r122,0r-8,36r-37,0r-24,112r-46,0xm323,-109r21,-101r-55,101r-35,0r-13,-101r-21,101r-41,0r31,-148r63,0r11,90r48,-90r63,0r-31,148r-41,0","w":356},"\u00ae":{"d":"37,-129v15,-74,87,-133,161,-133v74,0,121,59,106,133v-15,74,-88,134,-161,134v-74,0,-121,-60,-106,-134xm75,-129v-12,56,23,98,75,98v52,0,104,-42,116,-98v12,-56,-23,-97,-75,-97v-52,0,-104,41,-116,97xm157,-177r-8,38v25,-1,48,7,53,-19v4,-24,-23,-18,-45,-19xm98,-54r31,-149v51,-1,120,-6,106,47v-7,26,-24,39,-44,42r25,60r-38,0r-21,-59r-13,0r-12,59r-34,0","w":288},"\u00d7":{"d":"28,-36r67,-55r-44,-55r39,-33r44,56r66,-56r26,33r-67,55r44,55r-39,32r-44,-55r-66,55","w":216},"\u00a9":{"d":"37,-129v15,-74,87,-133,161,-133v74,0,121,59,106,133v-15,74,-88,134,-161,134v-74,0,-121,-60,-106,-134xm75,-129v-12,56,23,98,75,98v52,0,104,-42,116,-98v12,-56,-23,-97,-75,-97v-52,0,-104,41,-116,97xm200,-106r38,0v-14,37,-48,57,-79,57v-48,0,-69,-35,-60,-80v10,-46,44,-79,93,-79v32,0,56,19,53,56r-35,0v-1,-13,-10,-23,-27,-23v-45,0,-73,93,-20,93v17,0,32,-10,37,-24","w":288},"\u00c1":{"d":"1,0r119,-257r75,0r11,257r-63,0r1,-49r-62,0r-19,49r-62,0xm145,-96r1,-114r-45,114r44,0xm134,-273r29,-51r56,0r-47,51r-38,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c2":{"d":"1,0r119,-257r75,0r11,257r-63,0r1,-49r-62,0r-19,49r-62,0xm145,-96r1,-114r-45,114r44,0xm103,-330r36,-52r61,0r15,52r-43,0r-7,-30r-19,30r-43,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c4":{"d":"1,0r119,-257r75,0r11,257r-63,0r1,-49r-62,0r-19,49r-62,0xm145,-96r1,-114r-45,114r44,0xm168,-275r9,-47r45,0r-10,47r-44,0xm104,-275r10,-47r45,0r-10,47r-45,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c0":{"d":"1,0r119,-257r75,0r11,257r-63,0r1,-49r-62,0r-19,49r-62,0xm145,-96r1,-114r-45,114r44,0xm141,-273r-25,-51r56,0r8,51r-39,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c5":{"d":"1,0r119,-257r75,0r11,257r-63,0r1,-49r-62,0r-19,49r-62,0xm145,-96r1,-114r-45,114r44,0xm166,-328v-23,-3,-40,44,-9,43v25,4,41,-43,9,-43xm118,-306v5,-25,28,-42,52,-42v24,0,39,17,36,42v-6,48,-98,59,-88,0","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c3":{"d":"1,0r119,-257r75,0r11,257r-63,0r1,-49r-62,0r-19,49r-62,0xm145,-96r1,-114r-45,114r44,0xm134,-323v22,-2,45,24,54,0r29,0v-6,21,-20,49,-46,49v-24,-1,-43,-23,-53,0r-28,0v6,-22,21,-47,44,-49","w":206,"k":{"\u00d9":4,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d5":6,"\u00d2":6,"\u00d6":6,"\u00d4":6,"\u00d3":6,"\u00c7":6,"\u201d":20,"y":9,"w":6,"v":9,"Y":33,"W":13,"V":11,"U":4,"T":20,"Q":6,"O":6,"G":6,"C":6,"\u2019":20}},"\u00c7":{"d":"45,74r10,-19v12,7,44,7,45,-8v1,-18,-29,-3,-33,-16r23,-26v-71,-2,-66,-58,-50,-135v13,-66,32,-132,117,-132v59,0,80,35,62,94r-58,0v8,-37,7,-54,-13,-54v-24,0,-31,24,-45,91v-16,76,-17,96,8,96v22,0,29,-26,38,-66r59,0v-11,56,-32,101,-97,105r-13,16v24,-6,42,11,36,28v-1,32,-63,40,-89,26","w":193},"\u00c9":{"d":"19,0r53,-257r149,0r-10,49r-89,0r-10,51r82,0r-10,49r-82,0r-13,59r92,0r-10,49r-152,0xm126,-273r29,-51r56,0r-46,51r-39,0"},"\u00ca":{"d":"19,0r53,-257r149,0r-10,49r-89,0r-10,51r82,0r-10,49r-82,0r-13,59r92,0r-10,49r-152,0xm91,-330r36,-52r61,0r15,52r-42,0r-8,-30r-19,30r-43,0"},"\u00cb":{"d":"19,0r53,-257r149,0r-10,49r-89,0r-10,51r82,0r-10,49r-82,0r-13,59r92,0r-10,49r-152,0xm158,-275r10,-47r44,0r-9,47r-45,0xm95,-275r9,-47r45,0r-10,47r-44,0"},"\u00c8":{"d":"19,0r53,-257r149,0r-10,49r-89,0r-10,51r82,0r-10,49r-82,0r-13,59r92,0r-10,49r-152,0xm135,-273r-26,-51r56,0r8,51r-38,0"},"\u00cd":{"d":"20,0r53,-257r61,0r-54,257r-60,0xm76,-273r29,-51r56,0r-47,51r-38,0","w":100},"\u00ce":{"d":"20,0r53,-257r61,0r-54,257r-60,0xm49,-330r36,-52r60,0r16,52r-43,0r-7,-30r-19,30r-43,0","w":100},"\u00cf":{"d":"20,0r53,-257r61,0r-54,257r-60,0xm115,-275r10,-47r45,0r-10,47r-45,0xm52,-275r10,-47r44,0r-10,47r-44,0","w":100},"\u00cc":{"d":"20,0r53,-257r61,0r-54,257r-60,0xm98,-273r-26,-51r56,0r8,51r-38,0","w":100},"\u00d1":{"d":"19,0r53,-257r69,0r16,167r35,-167r56,0r-53,257r-69,0r-17,-177r-36,177r-54,0xm148,-323v22,-1,44,24,54,0r29,0v-6,21,-21,49,-47,49v-24,-1,-43,-23,-53,0r-27,0v6,-22,21,-47,44,-49","w":213},"\u00d3":{"d":"230,-195v0,93,-19,201,-128,200v-79,0,-79,-52,-62,-134v17,-82,38,-133,118,-133v58,0,72,27,72,67xm102,-129v-14,71,-16,94,8,94v24,0,34,-23,48,-94v14,-71,15,-93,-9,-93v-24,0,-33,22,-47,93xm137,-273r29,-51r56,0r-47,51r-38,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00d4":{"d":"230,-195v0,93,-19,201,-128,200v-79,0,-79,-52,-62,-134v17,-82,38,-133,118,-133v58,0,72,27,72,67xm102,-129v-14,71,-16,94,8,94v24,0,34,-23,48,-94v14,-71,15,-93,-9,-93v-24,0,-33,22,-47,93xm103,-330r36,-52r61,0r15,52r-43,0r-7,-30r-19,30r-43,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00d6":{"d":"230,-195v0,93,-19,201,-128,200v-79,0,-79,-52,-62,-134v17,-82,38,-133,118,-133v58,0,72,27,72,67xm102,-129v-14,71,-16,94,8,94v24,0,34,-23,48,-94v14,-71,15,-93,-9,-93v-24,0,-33,22,-47,93xm169,-275r10,-47r44,0r-10,47r-44,0xm105,-275r10,-47r45,0r-10,47r-45,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00d2":{"d":"230,-195v0,93,-19,201,-128,200v-79,0,-79,-52,-62,-134v17,-82,38,-133,118,-133v58,0,72,27,72,67xm102,-129v-14,71,-16,94,8,94v24,0,34,-23,48,-94v14,-71,15,-93,-9,-93v-24,0,-33,22,-47,93xm134,-273r-26,-51r57,0r7,51r-38,0","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00d5":{"d":"230,-195v0,93,-19,201,-128,200v-79,0,-79,-52,-62,-134v17,-82,38,-133,118,-133v58,0,72,27,72,67xm102,-129v-14,71,-16,94,8,94v24,0,34,-23,48,-94v14,-71,15,-93,-9,-93v-24,0,-33,22,-47,93xm143,-323v22,-1,44,24,54,0r29,0v-6,21,-21,49,-47,49v-24,-1,-43,-23,-53,0r-27,0v6,-22,21,-47,44,-49","w":206,"k":{"\u00c3":6,"\u00c5":6,"\u00c0":6,"\u00c4":6,"\u00c2":6,"\u00c1":6,"Y":20,"X":9,"W":4,"V":4,"T":6,"A":6,".":9,",":9}},"\u00da":{"d":"238,-257r-36,172v-10,50,-33,90,-103,90v-71,0,-76,-39,-66,-90r36,-172r60,0r-39,190v-4,20,1,32,17,32v16,0,27,-12,31,-32r39,-190r61,0xm137,-273r29,-51r56,0r-47,51r-38,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"\u00db":{"d":"238,-257r-36,172v-10,50,-33,90,-103,90v-71,0,-76,-39,-66,-90r36,-172r60,0r-39,190v-4,20,1,32,17,32v16,0,27,-12,31,-32r39,-190r61,0xm100,-330r36,-52r61,0r15,52r-43,0r-7,-30r-19,30r-43,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"\u00dc":{"d":"238,-257r-36,172v-10,50,-33,90,-103,90v-71,0,-76,-39,-66,-90r36,-172r60,0r-39,190v-4,20,1,32,17,32v16,0,27,-12,31,-32r39,-190r61,0xm165,-275r9,-47r45,0r-10,47r-44,0xm101,-275r10,-47r45,0r-10,47r-45,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"\u00d9":{"d":"238,-257r-36,172v-10,50,-33,90,-103,90v-71,0,-76,-39,-66,-90r36,-172r60,0r-39,190v-4,20,1,32,17,32v16,0,27,-12,31,-32r39,-190r61,0xm140,-273r-26,-51r57,0r7,51r-38,0","w":200,"k":{"\u00c3":4,"\u00c5":4,"\u00c0":4,"\u00c4":4,"\u00c2":4,"\u00c1":4,"A":4}},"\u00e1":{"d":"126,-96v-34,16,-39,8,-48,36v-5,15,1,25,12,25v25,6,34,-43,36,-61xm43,-135v11,-47,37,-64,90,-65v117,1,20,127,34,200r-56,0v-1,-7,0,-14,1,-22v-26,40,-109,41,-91,-32v11,-45,47,-57,90,-66v18,-4,22,-7,25,-22v3,-12,-1,-20,-14,-20v-16,0,-23,10,-27,27r-52,0xm115,-216r29,-51r56,0r-47,51r-38,0","k":{"y":6,"w":4,"v":4}},"\u00e2":{"d":"126,-96v-34,16,-39,8,-48,36v-5,15,1,25,12,25v25,6,34,-43,36,-61xm43,-135v11,-47,37,-64,90,-65v117,1,20,127,34,200r-56,0v-1,-7,0,-14,1,-22v-26,40,-109,41,-91,-32v11,-45,47,-57,90,-66v18,-4,22,-7,25,-22v3,-12,-1,-20,-14,-20v-16,0,-23,10,-27,27r-52,0xm81,-273r36,-51r60,0r15,51r-42,0r-7,-29r-20,29r-42,0","k":{"y":6,"w":4,"v":4}},"\u00e4":{"d":"126,-96v-34,16,-39,8,-48,36v-5,15,1,25,12,25v25,6,34,-43,36,-61xm43,-135v11,-47,37,-64,90,-65v117,1,20,127,34,200r-56,0v-1,-7,0,-14,1,-22v-26,40,-109,41,-91,-32v11,-45,47,-57,90,-66v18,-4,22,-7,25,-22v3,-12,-1,-20,-14,-20v-16,0,-23,10,-27,27r-52,0xm143,-218r10,-47r44,0r-9,47r-45,0xm80,-218r9,-47r45,0r-10,47r-44,0","k":{"y":6,"w":4,"v":4}},"\u00e0":{"d":"126,-96v-34,16,-39,8,-48,36v-5,15,1,25,12,25v25,6,34,-43,36,-61xm43,-135v11,-47,37,-64,90,-65v117,1,20,127,34,200r-56,0v-1,-7,0,-14,1,-22v-26,40,-109,41,-91,-32v11,-45,47,-57,90,-66v18,-4,22,-7,25,-22v3,-12,-1,-20,-14,-20v-16,0,-23,10,-27,27r-52,0xm118,-215r-26,-51r56,0r8,51r-38,0","k":{"y":6,"w":4,"v":4}},"\u00e5":{"d":"126,-96v-34,16,-39,8,-48,36v-5,15,1,25,12,25v25,6,34,-43,36,-61xm43,-135v11,-47,37,-64,90,-65v117,1,20,127,34,200r-56,0v-1,-7,0,-14,1,-22v-26,40,-109,41,-91,-32v11,-45,47,-57,90,-66v18,-4,22,-7,25,-22v3,-12,-1,-20,-14,-20v-16,0,-23,10,-27,27r-52,0xm145,-272v-23,-3,-40,44,-9,43v24,4,39,-43,9,-43xm97,-250v5,-49,97,-60,87,0v-5,49,-97,60,-87,0","k":{"y":6,"w":4,"v":4}},"\u00e3":{"d":"126,-96v-34,16,-39,8,-48,36v-5,15,1,25,12,25v25,6,34,-43,36,-61xm43,-135v11,-47,37,-64,90,-65v117,1,20,127,34,200r-56,0v-1,-7,0,-14,1,-22v-26,40,-109,41,-91,-32v11,-45,47,-57,90,-66v18,-4,22,-7,25,-22v3,-12,-1,-20,-14,-20v-16,0,-23,10,-27,27r-52,0xm119,-266v21,-1,45,23,54,0r29,0v-6,21,-20,49,-46,49v-24,-1,-43,-23,-53,0r-28,0v6,-22,21,-48,44,-49","k":{"y":6,"w":4,"v":4}},"\u00e7":{"d":"31,74r10,-19v12,7,44,7,45,-8v1,-18,-29,-3,-33,-16r23,-27v-56,-1,-58,-52,-45,-108v12,-55,35,-96,99,-96v61,0,71,33,61,79r-54,0v6,-29,1,-41,-14,-41v-19,0,-24,26,-35,65v-24,83,32,84,40,18r54,0v-11,52,-31,80,-85,84r-13,15v24,-6,42,11,36,28v-1,32,-63,40,-89,26","w":173,"k":{"y":6}},"\u00e9":{"d":"93,-122r42,0v6,-27,5,-42,-11,-42v-19,0,-26,16,-31,42xm184,-88r-98,0v-4,23,-13,62,9,57v15,0,22,-12,29,-36r54,0v-11,49,-41,72,-90,72v-73,0,-70,-51,-57,-109v12,-55,35,-96,99,-96v72,0,67,46,54,112xm114,-216r28,-51r56,0r-46,51r-38,0","w":173},"\u00ea":{"d":"93,-122r42,0v6,-27,5,-42,-11,-42v-19,0,-26,16,-31,42xm184,-88r-98,0v-4,23,-13,62,9,57v15,0,22,-12,29,-36r54,0v-11,49,-41,72,-90,72v-73,0,-70,-51,-57,-109v12,-55,35,-96,99,-96v72,0,67,46,54,112xm78,-273r36,-51r61,0r15,51r-42,0r-8,-29r-19,29r-43,0","w":173},"\u00eb":{"d":"93,-122r42,0v6,-27,5,-42,-11,-42v-19,0,-26,16,-31,42xm184,-88r-98,0v-4,23,-13,62,9,57v15,0,22,-12,29,-36r54,0v-11,49,-41,72,-90,72v-73,0,-70,-51,-57,-109v12,-55,35,-96,99,-96v72,0,67,46,54,112xm141,-218r10,-47r44,0r-9,47r-45,0xm78,-218r9,-47r45,0r-10,47r-44,0","w":173},"\u00e8":{"d":"93,-122r42,0v6,-27,5,-42,-11,-42v-19,0,-26,16,-31,42xm184,-88r-98,0v-4,23,-13,62,9,57v15,0,22,-12,29,-36r54,0v-11,49,-41,72,-90,72v-73,0,-70,-51,-57,-109v12,-55,35,-96,99,-96v72,0,67,46,54,112xm112,-215r-26,-51r56,0r8,51r-38,0","w":173},"\u00ed":{"d":"18,0r40,-195r58,0r-40,195r-58,0xm62,-216r28,-51r56,0r-46,51r-38,0","w":93},"\u00ee":{"d":"18,0r40,-195r58,0r-40,195r-58,0xm35,-273r36,-51r60,0r15,51r-42,0r-8,-29r-19,29r-42,0","w":93},"\u00ef":{"d":"18,0r40,-195r58,0r-40,195r-58,0xm99,-218r9,-47r45,0r-10,47r-44,0xm35,-218r10,-47r45,0r-10,47r-45,0","w":93},"\u00ec":{"d":"18,0r40,-195r58,0r-40,195r-58,0xm81,-215r-25,-51r56,0r8,51r-39,0","w":93},"\u00f1":{"d":"16,0r41,-195r56,0v-1,7,-6,17,-4,23v22,-40,106,-42,92,26r-30,146r-59,0r28,-133v3,-14,-2,-22,-13,-22v-11,0,-22,9,-26,28r-26,127r-59,0xm119,-266v20,0,45,23,54,0r29,0v-6,21,-21,49,-47,49v-24,-1,-43,-23,-53,0r-27,0v5,-23,20,-49,44,-49","w":186},"\u00f3":{"d":"89,5v-72,0,-71,-44,-59,-102v12,-58,33,-103,101,-103v71,0,71,44,59,102v-12,58,-34,103,-101,103xm132,-97v10,-48,10,-65,-8,-65v-17,0,-26,17,-36,64v-10,48,-8,65,9,65v18,0,25,-16,35,-64xm112,-216r29,-51r56,0r-47,51r-38,0","k":{"y":4,"v":2}},"\u00f4":{"d":"89,5v-72,0,-71,-44,-59,-102v12,-58,33,-103,101,-103v71,0,71,44,59,102v-12,58,-34,103,-101,103xm132,-97v10,-48,10,-65,-8,-65v-17,0,-26,17,-36,64v-10,48,-8,65,9,65v18,0,25,-16,35,-64xm78,-273r36,-51r61,0r15,51r-43,0r-7,-29r-19,29r-43,0","k":{"y":4,"v":2}},"\u00f6":{"d":"89,5v-72,0,-71,-44,-59,-102v12,-58,33,-103,101,-103v71,0,71,44,59,102v-12,58,-34,103,-101,103xm132,-97v10,-48,10,-65,-8,-65v-17,0,-26,17,-36,64v-10,48,-8,65,9,65v18,0,25,-16,35,-64xm140,-218r10,-47r45,0r-10,47r-45,0xm77,-218r10,-47r44,0r-9,47r-45,0","k":{"y":4,"v":2}},"\u00f2":{"d":"89,5v-72,0,-71,-44,-59,-102v12,-58,33,-103,101,-103v71,0,71,44,59,102v-12,58,-34,103,-101,103xm132,-97v10,-48,10,-65,-8,-65v-17,0,-26,17,-36,64v-10,48,-8,65,9,65v18,0,25,-16,35,-64xm116,-215r-25,-51r56,0r7,51r-38,0","k":{"y":4,"v":2}},"\u00f5":{"d":"89,5v-72,0,-71,-44,-59,-102v12,-58,33,-103,101,-103v71,0,71,44,59,102v-12,58,-34,103,-101,103xm132,-97v10,-48,10,-65,-8,-65v-17,0,-26,17,-36,64v-10,48,-8,65,9,65v18,0,25,-16,35,-64xm116,-266v21,-1,45,24,54,0r29,0v-6,21,-20,49,-46,49v-24,-1,-43,-23,-53,0r-28,0v6,-22,21,-47,44,-49","k":{"y":4,"v":2}},"\u00fa":{"d":"211,-195r-40,195r-57,0v1,-7,6,-17,4,-23v-22,40,-107,42,-92,-26r31,-146r58,0r-28,133v-3,14,1,22,12,22v11,0,23,-8,27,-27r27,-128r58,0xm117,-216r29,-51r56,0r-46,51r-39,0","w":186},"\u00fb":{"d":"211,-195r-40,195r-57,0v1,-7,6,-17,4,-23v-22,40,-107,42,-92,-26r31,-146r58,0r-28,133v-3,14,1,22,12,22v11,0,23,-8,27,-27r27,-128r58,0xm82,-273r36,-51r60,0r15,51r-42,0r-7,-29r-19,29r-43,0","w":186},"\u00fc":{"d":"211,-195r-40,195r-57,0v1,-7,6,-17,4,-23v-22,40,-107,42,-92,-26r31,-146r58,0r-28,133v-3,14,1,22,12,22v11,0,23,-8,27,-27r27,-128r58,0xm146,-218r10,-47r44,0r-10,47r-44,0xm82,-218r10,-47r45,0r-10,47r-45,0","w":186},"\u00f9":{"d":"211,-195r-40,195r-57,0v1,-7,6,-17,4,-23v-22,40,-107,42,-92,-26r31,-146r58,0r-28,133v-3,14,1,22,12,22v11,0,23,-8,27,-27r27,-128r58,0xm123,-215r-26,-51r56,0r8,51r-38,0","w":186},"\u00a0":{"w":93,"k":{"\u201c":13,"\u2018":13}}}});
;
/**
 * jQuery jqGalScroll Plugin
 * Examples and documentation at: http://benjaminsterling.com/jquery-jqgalscroll-photo-gallery/
 *
 * @author: Benjamin Sterling
 * @version: 2.1
 * @copyright (c) 2007 Benjamin Sterling, KenzoMedia
 * @extendThanks Koesmanto Bong http://www.koesbong.com/
 *		Koes put a fire under my butt to improve this plugin
 *		and when I took too long he took what I had and added
 *		the horizontal scroll and in turn I ripped it from his
 *		hands and made it better :)
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *   
 * @requires jQuery v1.2.1 or later
 * @optional jQuery Easing v1.2
 *
 * @name jqGalScroll
 * @example $('ul').jqGalScroll();
 * 
 * @Semantic requirements:
 * 				The structure fairly simple; the structure should consist
 * 				of a ul > li > img structure.
 * 
 * 	<ul>
 *		<li><img src="common/img/dsc_0003.thumbnail.JPG"/></li>
 *		<li><img src="common/img/dsc_0012.thumbnail.JPG"/></li>
 *	</ul>
 *
 * @param String ease
 *					refer to http://gsgd.co.uk/sandbox/jquery.easing.php for values
 * 
 * @example $('#gallery').jqGalScroll({speed:1000});
 
 * @param String speed
 * 					fast, slow, 1000, ext..
 * 
 * @example $('#gallery').jqGalScroll({speed:1000});
 * 
 * @param String height
 * 					the default height of your wrapper
 * 
 * @example $('#gallery').jqGalScroll({height:490});
 * 
 * @param String titleOpacity
 * 					the opacity of your title bar (if present)
 * 
 * @example $('#gallery').jqGalScroll({titleOpacity:.70});
 * 
 * @param String direction 
 *					vertical horizontal diagonal
 * 
 * @example $('#gallery').jqGalScroll({direction:'vertical'});
 * 			
 */
(function($) {
	$.fn.jqGalScroll = function(options){
		return this.each(function(i){
			var el = this
			el.curImage = 0;
			el.jqthis = $(this).css({position:'relative'});
			el.jqchildren = el.jqthis.children();
			el.opts = $.extend({}, jqGalScroll, options);
			el.index = i;
			el.totalChildren = el.jqchildren.size();
			var width,height;
			
			switch(el.opts.direction){
				case 'horizontal':
					width = el.totalChildren *el.opts.width;
					height = el.opts.height;
					break;
				case 'vertical':
					width = el.opts.width;
					height = el.totalChildren *el.opts.height;
					break;
				default:
					width = el.totalChildren *el.opts.width;
					height = el.totalChildren *el.opts.height;
					break;
			};
			
			el.container = $('<div id="jqGS'+i+'" class="jqGSContainer">').css({position:'relative'});
			el.ImgContainer = $('<div class="jqGSImgContainer" style="height:'+el.opts.height+'px;position:relative;overflow:hidden">')
								.css({height:el.opts.height,width:el.opts.width,position:'relative',overflow:'hidden'});
			el.jqthis.css({height:height,width:width});
			
			el.jqthis.wrap(el.container);
			el.jqthis.wrap(el.ImgContainer);
			el.pagination = $('<div class="jqGSPagination">');
			el.jqthis.parent().parent().append(el.pagination);
			var jqul = $('<ul>').appendTo(el.pagination);
			var pos = {x:0,y:0};
			
			el.jqchildren
			.each(function(j){
				var selected = '';
				if(j == 0) selected = 'selected';
				
				var $a = $('<a href="#'+(j)+'" class="'+selected+'">'+(j+1)+'</a>').click(function(){
					var href = this.index;//href.replace(/^.*#/, '');
					el.pagination.find('.selected').removeClass('selected');
					$(this).addClass('selected');
					var params = {};
					if( el.opts.direction == 'diagonal'){
						params = {right:(el.opts.width*href),bottom:(el.opts.height*href)}
					}
					else if( el.opts.direction == 'vertical'){
						params = {bottom:(el.opts.height*href)}
					}
					else if( el.opts.direction == 'horizontal'){
						params = {right:(el.opts.width*href)}
					};
					
					el.jqthis.stop().animate(params,el.opts.speed, el.opts.ease);
					index = href;
					return false;
				});

				var n = $a.get(0);

				n.index = j;

				$('<li>').appendTo(jqul).append($a);

				if( el.opts.direction == 'diagonal'){
					pos.x = j * el.opts.width;
					pos.y = j * el.opts.height;
				}
				else if( el.opts.direction == 'horizontal'){
					pos.x = j * el.opts.width;
				}
				else if( el.opts.direction == 'vertical'){
					pos.y = j * el.opts.height;
				};

				var jqchild = $(this).css({height:el.opts.height,width:el.opts.width,position:'absolute',left:pos.x, top:pos.y});

				var jqimg = jqchild.find('img').hide()
				
				if(jqimg.parent().is('a')){
					var p = jqimg.parent();
					jqimg.get(0).linkHref = p.attr('href');
					p.remove();
					jqimg.appendTo(jqchild);
				};

				jqimg.click(function(){
					var next = n.index + 1;
					if((n.index + 1) == el.totalChildren ){
						el.pagination.find('[href$=#0]').click();
					}
					else{
						el.pagination.find('[href$=#'+next+']').click();
					}
				});

				var $loader = $('<div class="jqGSLoader">').appendTo(jqchild);
				var $titleHolder = $('<div class="jqGSTitle">').appendTo(jqchild).css({opacity:el.opts.titleOpacity}).hide();
				var image = new Image();
				image.onload = function(){
					image.onload = null;
					$loader.fadeOut();
					jqimg.css({marginLeft:-image.width*.5,marginTop:-image.height*.5,position:'absolute',left:'50%',top:'50%'}).fadeIn();
					var alt = jqimg.attr('alt');
					if(typeof alt != 'undefined'){
						$titleHolder.text(alt).fadeIn();
					}
				};
				image.src = jqimg.attr('src');
			});

			
		}); // end : this.each(function()
	};  // end : $.fn.jqGalScroll
	jqGalScroll = {
		ease: null,
		speed:0,
		height: 500,
		width: 500,
		titleOpacity : .60,
		direction : 'horizontal' // vertical horizontal diagonal
	};
})(jQuery);;
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function(b){var m,u,x,g,D,i,z,A,B,p=0,e={},q=[],n=0,c={},j=[],E=null,s=new Image,G=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,S=/[^\.]\.(swf)\s*$/i,H,I=1,k,l,h=false,y=b.extend(b("<div/>")[0],{prop:0}),v=0,O=!b.support.opacity&&!window.XMLHttpRequest,J=function(){u.hide();s.onerror=s.onload=null;E&&E.abort();m.empty()},P=function(){b.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>',{scrolling:"no",padding:20,transitionIn:"none",transitionOut:"none"})},
K=function(){return[b(window).width(),b(window).height(),b(document).scrollLeft(),b(document).scrollTop()]},T=function(){var a=K(),d={},f=c.margin,o=c.autoScale,t=(20+f)*2,w=(20+f)*2,r=c.padding*2;if(c.width.toString().indexOf("%")>-1){d.width=a[0]*parseFloat(c.width)/100-40;o=false}else d.width=c.width+r;if(c.height.toString().indexOf("%")>-1){d.height=a[1]*parseFloat(c.height)/100-40;o=false}else d.height=c.height+r;if(o&&(d.width>a[0]-t||d.height>a[1]-w))if(e.type=="image"||e.type=="swf"){t+=r;
w+=r;o=Math.min(Math.min(a[0]-t,c.width)/c.width,Math.min(a[1]-w,c.height)/c.height);d.width=Math.round(o*(d.width-r))+r;d.height=Math.round(o*(d.height-r))+r}else{d.width=Math.min(d.width,a[0]-t);d.height=Math.min(d.height,a[1]-w)}d.top=a[3]+(a[1]-(d.height+40))*0.5;d.left=a[2]+(a[0]-(d.width+40))*0.5;if(c.autoScale===false){d.top=Math.max(a[3]+f,d.top);d.left=Math.max(a[2]+f,d.left)}return d},U=function(a){if(a&&a.length)switch(c.titlePosition){case "inside":return a;case "over":return'<span id="fancybox-title-over">'+
a+"</span>";default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+a+'</span><span id="fancybox-title-right"></span></span>'}return false},V=function(){var a=c.title,d=l.width-c.padding*2,f="fancybox-title-"+c.titlePosition;b("#fancybox-title").remove();v=0;if(c.titleShow!==false){a=b.isFunction(c.titleFormat)?c.titleFormat(a,j,n,c):U(a);if(!(!a||a==="")){b('<div id="fancybox-title" class="'+f+'" />').css({width:d,paddingLeft:c.padding,
paddingRight:c.padding}).html(a).appendTo("body");switch(c.titlePosition){case "inside":v=b("#fancybox-title").outerHeight(true)-c.padding;l.height+=v;break;case "over":b("#fancybox-title").css("bottom",c.padding);break;default:b("#fancybox-title").css("bottom",b("#fancybox-title").outerHeight(true)*-1);break}b("#fancybox-title").appendTo(D).hide()}}},W=function(){b(document).unbind("keydown.fb").bind("keydown.fb",function(a){if(a.keyCode==27&&c.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if(a.keyCode==
37){a.preventDefault();b.fancybox.prev()}else if(a.keyCode==39){a.preventDefault();b.fancybox.next()}});if(b.fn.mousewheel){g.unbind("mousewheel.fb");j.length>1&&g.bind("mousewheel.fb",function(a,d){a.preventDefault();h||d===0||(d>0?b.fancybox.prev():b.fancybox.next())})}if(c.showNavArrows){if(c.cyclic&&j.length>1||n!==0)A.show();if(c.cyclic&&j.length>1||n!=j.length-1)B.show()}},X=function(){var a,d;if(j.length-1>n){a=j[n+1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}if(n>0){a=
j[n-1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}},L=function(){i.css("overflow",c.scrolling=="auto"?c.type=="image"||c.type=="iframe"||c.type=="swf"?"hidden":"auto":c.scrolling=="yes"?"auto":"visible");if(!b.support.opacity){i.get(0).style.removeAttribute("filter");g.get(0).style.removeAttribute("filter")}b("#fancybox-title").show();c.hideOnContentClick&&i.one("click",b.fancybox.close);c.hideOnOverlayClick&&x.one("click",b.fancybox.close);c.showCloseButton&&z.show();W();b(window).bind("resize.fb",
b.fancybox.center);c.centerOnScroll?b(window).bind("scroll.fb",b.fancybox.center):b(window).unbind("scroll.fb");b.isFunction(c.onComplete)&&c.onComplete(j,n,c);h=false;X()},M=function(a){var d=Math.round(k.width+(l.width-k.width)*a),f=Math.round(k.height+(l.height-k.height)*a),o=Math.round(k.top+(l.top-k.top)*a),t=Math.round(k.left+(l.left-k.left)*a);g.css({width:d+"px",height:f+"px",top:o+"px",left:t+"px"});d=Math.max(d-c.padding*2,0);f=Math.max(f-(c.padding*2+v*a),0);i.css({width:d+"px",height:f+
"px"});if(typeof l.opacity!=="undefined")g.css("opacity",a<0.5?0.5:a)},Y=function(a){var d=a.offset();d.top+=parseFloat(a.css("paddingTop"))||0;d.left+=parseFloat(a.css("paddingLeft"))||0;d.top+=parseFloat(a.css("border-top-width"))||0;d.left+=parseFloat(a.css("border-left-width"))||0;d.width=a.width();d.height=a.height();return d},Q=function(){var a=e.orig?b(e.orig):false,d={};if(a&&a.length){a=Y(a);d={width:a.width+c.padding*2,height:a.height+c.padding*2,top:a.top-c.padding-20,left:a.left-c.padding-
20}}else{a=K();d={width:1,height:1,top:a[3]+a[1]*0.5,left:a[2]+a[0]*0.5}}return d},N=function(){u.hide();if(g.is(":visible")&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){b.event.trigger("fancybox-cancel");h=false;return}j=q;n=p;c=e;i.get(0).scrollTop=0;i.get(0).scrollLeft=0;if(c.overlayShow){O&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});
x.css({"background-color":c.overlayColor,opacity:c.overlayOpacity}).unbind().show()}l=T();V();if(g.is(":visible")){b(z.add(A).add(B)).hide();var a=g.position(),d;k={top:a.top,left:a.left,width:g.width(),height:g.height()};d=k.width==l.width&&k.height==l.height;i.fadeOut(c.changeFade,function(){var f=function(){i.html(m.contents()).fadeIn(c.changeFade,L)};b.event.trigger("fancybox-change");i.empty().css("overflow","hidden");if(d){i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*
2,1),height:Math.max(l.height-c.padding*2-v,1)});f()}else{i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)});y.prop=0;b(y).animate({prop:1},{duration:c.changeSpeed,easing:c.easingChange,step:M,complete:f})}})}else{g.css("opacity",1);if(c.transitionIn=="elastic"){k=Q();i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).html(m.contents());g.css(k).show();if(c.opacity)l.opacity=
0;y.prop=0;b(y).animate({prop:1},{duration:c.speedIn,easing:c.easingIn,step:M,complete:L})}else{i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*2,1),height:Math.max(l.height-c.padding*2-v,1)}).html(m.contents());g.css(l).fadeIn(c.transitionIn=="none"?0:c.speedIn,L)}}},F=function(){m.width(e.width);m.height(e.height);if(e.width=="auto")e.width=m.width();if(e.height=="auto")e.height=m.height();N()},Z=function(){h=true;e.width=s.width;e.height=s.height;b("<img />").attr({id:"fancybox-img",
src:s.src,alt:e.title}).appendTo(m);N()},C=function(){J();var a=q[p],d,f,o,t,w;e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));o=a.title||b(a).title||e.title||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(o===""&&e.orig)o=e.orig.attr("alt");d=a.nodeName&&/^(?:javascript|#)/i.test(a.href)?e.href||null:e.href||a.href||null;if(e.type){f=e.type;if(!d)d=e.content}else if(e.content)f="html";else if(d)if(d.match(G))f=
"image";else if(d.match(S))f="swf";else if(b(a).hasClass("iframe"))f="iframe";else if(d.match(/#/)){a=d.substr(d.indexOf("#"));f=b(a).length>0?"inline":"ajax"}else f="ajax";else f="inline";e.type=f;e.href=d;e.title=o;if(e.autoDimensions&&e.type!=="iframe"&&e.type!=="swf"){e.width="auto";e.height="auto"}if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=false;e.enableEscapeButton=false;e.showCloseButton=false}if(b.isFunction(e.onStart))if(e.onStart(q,p,e)===false){h=false;
return}m.css("padding",20+e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(i.children())});switch(f){case "html":m.html(e.content);F();break;case "inline":b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(i.children())}).bind("fancybox-cancel",function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();
s=new Image;s.onerror=function(){P()};s.onload=function(){s.onerror=null;s.onload=null;Z()};s.src=d;break;case "swf":t='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+d+'"></param>';w="";b.each(e.swf,function(r,R){t+='<param name="'+r+'" value="'+R+'"></param>';w+=" "+r+'="'+R+'"'});t+='<embed src="'+d+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+w+"></embed></object>";m.html(t);
F();break;case "ajax":a=d.split("#",2);f=e.ajax.data||{};if(a.length>1){d=a[0];if(typeof f=="string")f+="&selector="+a[1];else f.selector=a[1]}h=false;b.fancybox.showActivity();E=b.ajax(b.extend(e.ajax,{url:d,data:f,error:P,success:function(r){if(E.status==200){m.html(r);F()}}}));break;case "iframe":b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" scrolling="'+e.scrolling+'" src="'+e.href+'"></iframe>').appendTo(m);N();break}},$=function(){if(u.is(":visible")){b("div",
u).css("top",I*-40+"px");I=(I+1)%12}else clearInterval(H)},aa=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),u=b('<div id="fancybox-loading"><div></div></div>'),x=b('<div id="fancybox-overlay"></div>'),g=b('<div id="fancybox-wrap"></div>'));if(!b.support.opacity){g.addClass("fancybox-ie");u.addClass("fancybox-ie")}D=b('<div id="fancybox-outer"></div>').append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>').appendTo(g);
D.append(i=b('<div id="fancybox-inner"></div>'),z=b('<a id="fancybox-close"></a>'),A=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),B=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));z.click(b.fancybox.close);u.click(b.fancybox.cancel);A.click(function(a){a.preventDefault();b.fancybox.prev()});B.click(function(a){a.preventDefault();b.fancybox.next()});if(O){x.get(0).style.setExpression("height",
"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");u.get(0).style.setExpression("top","(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");D.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>')}}};
b.fn.fancybox=function(a){b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(d){d.preventDefault();if(!h){h=true;b(this).blur();q=[];p=0;d=b(this).attr("rel")||"";if(!d||d==""||d==="nofollow")q.push(this);else{q=b("a[rel="+d+"], area[rel="+d+"]");p=q.index(this)}C();return false}});return this};b.fancybox=function(a,d){if(!h){h=true;d=typeof d!=="undefined"?d:{};q=[];p=d.index||0;if(b.isArray(a)){for(var f=0,o=a.length;f<o;f++)if(typeof a[f]==
"object")b(a[f]).data("fancybox",b.extend({},d,a[f]));else a[f]=b({}).data("fancybox",b.extend({content:a[f]},d));q=jQuery.merge(q,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},d,a));else a=b({}).data("fancybox",b.extend({content:a},d));q.push(a)}if(p>q.length||p<0)p=0;C()}};b.fancybox.showActivity=function(){clearInterval(H);u.show();H=setInterval($,66)};b.fancybox.hideActivity=function(){u.hide()};b.fancybox.next=function(){return b.fancybox.pos(n+1)};b.fancybox.prev=function(){return b.fancybox.pos(n-
1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a,10);if(a>-1&&j.length>a){p=a;C()}if(c.cyclic&&j.length>1&&a<0){p=j.length-1;C()}if(c.cyclic&&j.length>1&&a>=j.length){p=0;C()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");J();e&&b.isFunction(e.onCancel)&&e.onCancel(q,p,e);h=false}};b.fancybox.close=function(){function a(){x.fadeOut("fast");g.hide();b.event.trigger("fancybox-cleanup");i.empty();b.isFunction(c.onClosed)&&c.onClosed(j,n,c);j=e=[];n=p=0;c=e={};h=false}
if(!(h||g.is(":hidden"))){h=true;if(c&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){h=false;return}J();b(z.add(A).add(B)).hide();b("#fancybox-title").remove();g.add(i).add(x).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");i.css("overflow","hidden");if(c.transitionOut=="elastic"){k=Q();var d=g.position();l={top:d.top,left:d.left,width:g.width(),height:g.height()};if(c.opacity)l.opacity=1;y.prop=1;b(y).animate({prop:0},{duration:c.speedOut,easing:c.easingOut,
step:M,complete:a})}else g.fadeOut(c.transitionOut=="none"?0:c.speedOut,a)}};b.fancybox.resize=function(){var a,d;if(!(h||g.is(":hidden"))){h=true;a=i.wrapInner("<div style='overflow:auto'></div>").children();d=a.height();g.css({height:d+c.padding*2+v});i.css({height:d});a.replaceWith(a.children());b.fancybox.center()}};b.fancybox.center=function(){h=true;var a=K(),d=c.margin,f={};f.top=a[3]+(a[1]-(g.height()-v+40))*0.5;f.left=a[2]+(a[0]-(g.width()+40))*0.5;f.top=Math.max(a[3]+d,f.top);f.left=Math.max(a[2]+
d,f.left);g.css(f);h=false};b.fn.fancybox.defaults={padding:10,margin:20,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.3,overlayColor:"#666",titleShow:true,titlePosition:"outside",titleFormat:null,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",
easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,onStart:null,onCancel:null,onComplete:null,onCleanup:null,onClosed:null};b(document).ready(function(){aa()})})(jQuery);;
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('h.i[\'1a\']=h.i[\'z\'];h.O(h.i,{y:\'D\',z:9(x,t,b,c,d){6 h.i[h.i.y](x,t,b,c,d)},17:9(x,t,b,c,d){6 c*(t/=d)*t+b},D:9(x,t,b,c,d){6-c*(t/=d)*(t-2)+b},13:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t+b;6-c/2*((--t)*(t-2)-1)+b},X:9(x,t,b,c,d){6 c*(t/=d)*t*t+b},U:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t+1)+b},R:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t+b;6 c/2*((t-=2)*t*t+2)+b},N:9(x,t,b,c,d){6 c*(t/=d)*t*t*t+b},M:9(x,t,b,c,d){6-c*((t=t/d-1)*t*t*t-1)+b},L:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t+b;6-c/2*((t-=2)*t*t*t-2)+b},K:9(x,t,b,c,d){6 c*(t/=d)*t*t*t*t+b},J:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t*t*t+1)+b},I:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t*t+b;6 c/2*((t-=2)*t*t*t*t+2)+b},G:9(x,t,b,c,d){6-c*8.C(t/d*(8.g/2))+c+b},15:9(x,t,b,c,d){6 c*8.n(t/d*(8.g/2))+b},12:9(x,t,b,c,d){6-c/2*(8.C(8.g*t/d)-1)+b},Z:9(x,t,b,c,d){6(t==0)?b:c*8.j(2,10*(t/d-1))+b},Y:9(x,t,b,c,d){6(t==d)?b+c:c*(-8.j(2,-10*t/d)+1)+b},W:9(x,t,b,c,d){e(t==0)6 b;e(t==d)6 b+c;e((t/=d/2)<1)6 c/2*8.j(2,10*(t-1))+b;6 c/2*(-8.j(2,-10*--t)+2)+b},V:9(x,t,b,c,d){6-c*(8.o(1-(t/=d)*t)-1)+b},S:9(x,t,b,c,d){6 c*8.o(1-(t=t/d-1)*t)+b},Q:9(x,t,b,c,d){e((t/=d/2)<1)6-c/2*(8.o(1-t*t)-1)+b;6 c/2*(8.o(1-(t-=2)*t)+1)+b},P:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6-(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b},H:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6 a*8.j(2,-10*t)*8.n((t*d-s)*(2*8.g)/p)+c+b},T:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d/2)==2)6 b+c;e(!p)p=d*(.3*1.5);e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);e(t<1)6-.5*(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b;6 a*8.j(2,-10*(t-=1))*8.n((t*d-s)*(2*8.g)/p)*.5+c+b},F:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*(t/=d)*t*((s+1)*t-s)+b},E:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},16:9(x,t,b,c,d,s){e(s==u)s=1.l;e((t/=d/2)<1)6 c/2*(t*t*(((s*=(1.B))+1)*t-s))+b;6 c/2*((t-=2)*t*(((s*=(1.B))+1)*t+s)+2)+b},A:9(x,t,b,c,d){6 c-h.i.v(x,d-t,0,c,d)+b},v:9(x,t,b,c,d){e((t/=d)<(1/2.k)){6 c*(7.q*t*t)+b}m e(t<(2/2.k)){6 c*(7.q*(t-=(1.5/2.k))*t+.k)+b}m e(t<(2.5/2.k)){6 c*(7.q*(t-=(2.14/2.k))*t+.11)+b}m{6 c*(7.q*(t-=(2.18/2.k))*t+.19)+b}},1b:9(x,t,b,c,d){e(t<d/2)6 h.i.A(x,t*2,0,c,d)*.5+b;6 h.i.v(x,t*2-d,0,c,d)*.5+c*.5+b}});',62,74,'||||||return||Math|function|||||if|var|PI|jQuery|easing|pow|75|70158|else|sin|sqrt||5625|asin|||undefined|easeOutBounce|abs||def|swing|easeInBounce|525|cos|easeOutQuad|easeOutBack|easeInBack|easeInSine|easeOutElastic|easeInOutQuint|easeOutQuint|easeInQuint|easeInOutQuart|easeOutQuart|easeInQuart|extend|easeInElastic|easeInOutCirc|easeInOutCubic|easeOutCirc|easeInOutElastic|easeOutCubic|easeInCirc|easeInOutExpo|easeInCubic|easeOutExpo|easeInExpo||9375|easeInOutSine|easeInOutQuad|25|easeOutSine|easeInOutBack|easeInQuad|625|984375|jswing|easeInOutBounce'.split('|'),0,{}))

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */
;
/*! Copyright (c) 2009 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 *
 * Version: 3.0.2
 * 
 * Requires: 1.2.2+
 */

(function(b){function d(a){var f=[].slice.call(arguments,1),e=0;a=b.event.fix(a||window.event);a.type="mousewheel";if(a.wheelDelta)e=a.wheelDelta/120;if(a.detail)e=-a.detail/3;f.unshift(a,e);return b.event.handle.apply(this,f)}var c=["DOMMouseScroll","mousewheel"];b.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=c.length;a;)this.addEventListener(c[--a],d,false);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=c.length;a;)this.removeEventListener(c[--a],
d,false);else this.onmousewheel=null}};b.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery);;
$(document).ready(function() {
	/*if ($('div.messages').length) { // implies *not* zero
		setTimeout(function() {
    		$('div.messages').fadeOut('slow');
		}, 6000); 
	} else {
		
	} */

	$('a[href^="http://"]')
  .attr("target", "_blank");

	$('.view-signup-user-list .view-content').prepend("<h3>AnmÃ¤lda</h3>")

});

function splash() {	
	
	if ($('.splashArrow a').is('.active')) {
			$('.splashPageWrap').remove();			
			$(".splashArrow a").removeClass("active");
			$(".splashWrap").animate({marginLeft:  '-930px'});
		} else {
			$(".splashWrap").animate({marginLeft:  '0'});
			$('body').prepend('<div class="splashPageWrap" onclick="closeSplash();"></div>');
			$(".splashArrow a").addClass("active")
	}
	
}
function closeSplash() {
	
	$(".splashWrap").animate({marginLeft:  '-930px'});
	$(".splashArrow a").removeClass("active")
	$('.splashPageWrap').remove();
}
function toggleLinkPopUp(obj) {
	$(obj).toggle();
}
function showSocialB(obj) {
	if(obj=="all")
	{
		$('.socialBWrap .socialBEntry').fadeIn();
		$('.socialBWrap .viewsdisplaytabs-group-wrapper ul li a').removeClass('viewsdisplaytabs-active');
		$('.socialBWrap .viewsdisplaytabs-group-wrapper ul li.all a').addClass('viewsdisplaytabs-active');
	}
	if(obj=="facebook")
	{
		$('.socialBWrap .socialBEntry').fadeOut();
		$('.socialBWrap .socialBEntryType_facebook').fadeIn();
		$('.socialBWrap .viewsdisplaytabs-group-wrapper ul li a').removeClass('viewsdisplaytabs-active');
		$('.socialBWrap .viewsdisplaytabs-group-wrapper ul li.facebook a').addClass('viewsdisplaytabs-active');
	}
	if(obj=="twitter")
	{
		$('.socialBWrap .socialBEntry').fadeOut();
		$('.socialBWrap .socialBEntryType_twitter').fadeIn();
		$('.socialBWrap .viewsdisplaytabs-group-wrapper ul li a').removeClass('viewsdisplaytabs-active');
		$('.socialBWrap .viewsdisplaytabs-group-wrapper ul li.twitter a').addClass('viewsdisplaytabs-active');
	}
	if(obj=="youtube")
	{
		$('.socialBWrap .socialBEntry').fadeOut();
		$('.socialBWrap .socialBEntryType_youtube').fadeIn();
		$('.socialBWrap .viewsdisplaytabs-group-wrapper ul li a').removeClass('viewsdisplaytabs-active');
		$('.socialBWrap .viewsdisplaytabs-group-wrapper ul li.youtube a').addClass('viewsdisplaytabs-active');
	}
}

function closeOverlay(data) {
    $('.overlay').hide();
}
 

function toogleSokning(elem)
{
	$(elem+' .content').slideToggle();
	if ($(elem+' a.toogleButton').is('.toogleButtonDown')) {			
		$(elem+' a.toogleButton').removeClass('toogleButtonDown');
		$(elem+' a.toogleButton').addClass('toogleButtonUp');	
		$(elem+' a.toogleButton').attr('title','StÃ¤ng');
	} else {
		$(elem+' a.toogleButton').removeClass('toogleButtonUp');
		$(elem+' a.toogleButton').addClass('toogleButtonDown');
		$(elem+' a.toogleButton').attr('title','Ã–ppna');		
	}
}

function toogleElement(elem)
{
	$(elem).slideToggle();	
};
/**
 * Automatic ajax validation
 *
 * @see http://drupal.org/project/ajax
 * @see irc://freenode.net/#drupy
 * @depends Drupal 6
 * @author brendoncrawford
 * @note This file uses a 79 character width limit.
 * 
 * @see http://drupal.org/node/114774#javascript-behaviors
 *
 */

/**
 * Disables redirection for Ajax forms
 * 
 * @param {String} hook
 * @param {Object} args
 * @return {Bool}
 */
Drupal.Ajax.plugins.disable_redirect = function(hook, args) {
  if (hook === 'complete') {
    if (args.options.disable_redirect === true) {
      args.local.form[0].reset();
      if (args.options.remove_form === true) {
        args.local.form.remove();
      }
      else {
        $('.form-item :input', args.local.form[0])[0].focus();
      }
      return false;
    }
  }
}


;

