/*
 * 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>';
  }
};
;
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 *
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 *
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

;(function($) {
	var tmp, loading, overlay, wrap, outer, content, close, title, nav_left, nav_right,

		selectedIndex = 0, selectedOpts = {}, selectedArray = [], currentIndex = 0, currentOpts = {}, currentArray = [],

		ajaxLoader = null, imgPreloader = new Image(), imgRegExp = /\.(jpg|gif|png|bmp|jpeg)(.*)?$/i, swfRegExp = /[^\.]\.(swf)\s*$/i,

		loadingTimer, loadingFrame = 1,

		titleHeight = 0, titleStr = '', start_pos, final_pos, busy = false, fx = $.extend($('<div/>')[0], { prop: 0 }),

		isIE6 = $.browser.msie && $.browser.version < 7 && !window.XMLHttpRequest,

		/*
		 * Private methods 
		 */

		_abort = function() {
			loading.hide();

			imgPreloader.onerror = imgPreloader.onload = null;

			if (ajaxLoader) {
				ajaxLoader.abort();
			}

			tmp.empty();
		},

		_error = function() {
			if (false === selectedOpts.onError(selectedArray, selectedIndex, selectedOpts)) {
				loading.hide();
				busy = false;
				return;
			}

			selectedOpts.titleShow = false;

			selectedOpts.width = 'auto';
			selectedOpts.height = 'auto';

			tmp.html( '<p id="fancybox-error">The requested content cannot be loaded.<br />Please try again later.</p>' );

			_process_inline();
		},

		_start = function() {
			var obj = selectedArray[ selectedIndex ],
				href, 
				type, 
				title,
				str,
				emb,
				ret;

			_abort();

			selectedOpts = $.extend({}, $.fn.fancybox.defaults, (typeof $(obj).data('fancybox') == 'undefined' ? selectedOpts : $(obj).data('fancybox')));

			ret = selectedOpts.onStart(selectedArray, selectedIndex, selectedOpts);

			if (ret === false) {
				busy = false;
				return;
			} else if (typeof ret == 'object') {
				selectedOpts = $.extend(selectedOpts, ret);
			}

			title = selectedOpts.title || (obj.nodeName ? $(obj).attr('title') : obj.title) || '';

			if (obj.nodeName && !selectedOpts.orig) {
				selectedOpts.orig = $(obj).children("img:first").length ? $(obj).children("img:first") : $(obj);
			}

			if (title === '' && selectedOpts.orig && selectedOpts.titleFromAlt) {
				title = selectedOpts.orig.attr('alt');
			}

			href = selectedOpts.href || (obj.nodeName ? $(obj).attr('href') : obj.href) || null;

			if ((/^(?:javascript)/i).test(href) || href == '#') {
				href = null;
			}

			if (selectedOpts.type) {
				type = selectedOpts.type;

				if (!href) {
					href = selectedOpts.content;
				}

			} else if (selectedOpts.content) {
				type = 'html';

			} else if (href) {
				if (href.match(imgRegExp)) {
					type = 'image';

				} else if (href.match(swfRegExp)) {
					type = 'swf';

				} else if ($(obj).hasClass("iframe")) {
					type = 'iframe';

				} else if (href.indexOf("#") === 0) {
					type = 'inline';

				} else {
					type = 'ajax';
				}
			}

			if (!type) {
				_error();
				return;
			}

			if (type == 'inline') {
				obj	= href.substr(href.indexOf("#"));
				type = $(obj).length > 0 ? 'inline' : 'ajax';
			}

			selectedOpts.type = type;
			selectedOpts.href = href;
			selectedOpts.title = title;

			if (selectedOpts.autoDimensions) {
				if (selectedOpts.type == 'html' || selectedOpts.type == 'inline' || selectedOpts.type == 'ajax') {
					selectedOpts.width = 'auto';
					selectedOpts.height = 'auto';
				} else {
					selectedOpts.autoDimensions = false;	
				}
			}

			if (selectedOpts.modal) {
				selectedOpts.overlayShow = true;
				selectedOpts.hideOnOverlayClick = false;
				selectedOpts.hideOnContentClick = false;
				selectedOpts.enableEscapeButton = false;
				selectedOpts.showCloseButton = false;
			}

			selectedOpts.padding = parseInt(selectedOpts.padding, 10);
			selectedOpts.margin = parseInt(selectedOpts.margin, 10);

			tmp.css('padding', (selectedOpts.padding + selectedOpts.margin));

			$('.fancybox-inline-tmp').unbind('fancybox-cancel').bind('fancybox-change', function() {
				$(this).replaceWith(content.children());				
			});

			switch (type) {
				case 'html' :
					tmp.html( selectedOpts.content );
					_process_inline();
				break;

				case 'inline' :
					if ( $(obj).parent().is('#fancybox-content') === true) {
						busy = false;
						return;
					}

					$('<div class="fancybox-inline-tmp" />')
						.hide()
						.insertBefore( $(obj) )
						.bind('fancybox-cleanup', function() {
							$(this).replaceWith(content.children());
						}).bind('fancybox-cancel', function() {
							$(this).replaceWith(tmp.children());
						});

					$(obj).appendTo(tmp);

					_process_inline();
				break;

				case 'image':
					busy = false;

					$.fancybox.showActivity();

					imgPreloader = new Image();

					imgPreloader.onerror = function() {
						_error();
					};

					imgPreloader.onload = function() {
						busy = true;

						imgPreloader.onerror = imgPreloader.onload = null;

						_process_image();
					};

					imgPreloader.src = href;
				break;

				case 'swf':
					selectedOpts.scrolling = 'no';

					str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"><param name="movie" value="' + href + '"></param>';
					emb = '';

					$.each(selectedOpts.swf, function(name, val) {
						str += '<param name="' + name + '" value="' + val + '"></param>';
						emb += ' ' + name + '="' + val + '"';
					});

					str += '<embed src="' + href + '" type="application/x-shockwave-flash" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"' + emb + '></embed></object>';

					tmp.html(str);

					_process_inline();
				break;

				case 'ajax':
					busy = false;

					$.fancybox.showActivity();

					selectedOpts.ajax.win = selectedOpts.ajax.success;

					ajaxLoader = $.ajax($.extend({}, selectedOpts.ajax, {
						url	: href,
						data : selectedOpts.ajax.data || {},
						error : function(XMLHttpRequest, textStatus, errorThrown) {
							if ( XMLHttpRequest.status > 0 ) {
								_error();
							}
						},
						success : function(data, textStatus, XMLHttpRequest) {
							var o = typeof XMLHttpRequest == 'object' ? XMLHttpRequest : ajaxLoader;
							if (o.status == 200) {
								if ( typeof selectedOpts.ajax.win == 'function' ) {
									ret = selectedOpts.ajax.win(href, data, textStatus, XMLHttpRequest);

									if (ret === false) {
										loading.hide();
										return;
									} else if (typeof ret == 'string' || typeof ret == 'object') {
										data = ret;
									}
								}

								tmp.html( data );
								_process_inline();
							}
						}
					}));

				break;

				case 'iframe':
					_show();
				break;
			}
		},

		_process_inline = function() {
			var
				w = selectedOpts.width,
				h = selectedOpts.height;

			if (w.toString().indexOf('%') > -1) {
				w = parseInt( ($(window).width() - (selectedOpts.margin * 2)) * parseFloat(w) / 100, 10) + 'px';

			} else {
				w = w == 'auto' ? 'auto' : w + 'px';	
			}

			if (h.toString().indexOf('%') > -1) {
				h = parseInt( ($(window).height() - (selectedOpts.margin * 2)) * parseFloat(h) / 100, 10) + 'px';

			} else {
				h = h == 'auto' ? 'auto' : h + 'px';	
			}

			tmp.wrapInner('<div style="width:' + w + ';height:' + h + ';overflow: ' + (selectedOpts.scrolling == 'auto' ? 'auto' : (selectedOpts.scrolling == 'yes' ? 'scroll' : 'hidden')) + ';position:relative;"></div>');

			selectedOpts.width = tmp.width();
			selectedOpts.height = tmp.height();

			_show();
		},

		_process_image = function() {
			selectedOpts.width = imgPreloader.width;
			selectedOpts.height = imgPreloader.height;

			$("<img />").attr({
				'id' : 'fancybox-img',
				'src' : imgPreloader.src,
				'alt' : selectedOpts.title
			}).appendTo( tmp );

			_show();
		},

		_show = function() {
			var pos, equal;

			loading.hide();

			if (wrap.is(":visible") && false === currentOpts.onCleanup(currentArray, currentIndex, currentOpts)) {
				$.event.trigger('fancybox-cancel');

				busy = false;
				return;
			}

			busy = true;

			$(content.add( overlay )).unbind();

			$(window).unbind("resize.fb scroll.fb");
			$(document).unbind('keydown.fb');

			if (wrap.is(":visible") && currentOpts.titlePosition !== 'outside') {
				wrap.css('height', wrap.height());
			}

			currentArray = selectedArray;
			currentIndex = selectedIndex;
			currentOpts = selectedOpts;

			if (currentOpts.overlayShow) {
				overlay.css({
					'background-color' : currentOpts.overlayColor,
					'opacity' : currentOpts.overlayOpacity,
					'cursor' : currentOpts.hideOnOverlayClick ? 'pointer' : 'auto',
					'height' : $(document).height()
				});

				if (!overlay.is(':visible')) {
					if (isIE6) {
						$('select:not(#fancybox-tmp select)').filter(function() {
							return this.style.visibility !== 'hidden';
						}).css({'visibility' : 'hidden'}).one('fancybox-cleanup', function() {
							this.style.visibility = 'inherit';
						});
					}

					overlay.show();
				}
			} else {
				overlay.hide();
			}

			final_pos = _get_zoom_to();

			_process_title();

			if (wrap.is(":visible")) {
				$( close.add( nav_left ).add( nav_right ) ).hide();

				pos = wrap.position(),

				start_pos = {
					top	 : pos.top,
					left : pos.left,
					width : wrap.width(),
					height : wrap.height()
				};

				equal = (start_pos.width == final_pos.width && start_pos.height == final_pos.height);

				content.fadeTo(currentOpts.changeFade, 0.3, function() {
					var finish_resizing = function() {
						content.html( tmp.contents() ).fadeTo(currentOpts.changeFade, 1, _finish);
					};

					$.event.trigger('fancybox-change');

					content
						.empty()
						.removeAttr('filter')
						.css({
							'border-width' : currentOpts.padding,
							'width'	: final_pos.width - currentOpts.padding * 2,
							'height' : selectedOpts.autoDimensions ? 'auto' : final_pos.height - titleHeight - currentOpts.padding * 2
						});

					if (equal) {
						finish_resizing();

					} else {
						fx.prop = 0;

						$(fx).animate({prop: 1}, {
							 duration : currentOpts.changeSpeed,
							 easing : currentOpts.easingChange,
							 step : _draw,
							 complete : finish_resizing
						});
					}
				});

				return;
			}

			wrap.removeAttr("style");

			content.css('border-width', currentOpts.padding);

			if (currentOpts.transitionIn == 'elastic') {
				start_pos = _get_zoom_from();

				content.html( tmp.contents() );

				wrap.show();

				if (currentOpts.opacity) {
					final_pos.opacity = 0;
				}

				fx.prop = 0;

				$(fx).animate({prop: 1}, {
					 duration : currentOpts.speedIn,
					 easing : currentOpts.easingIn,
					 step : _draw,
					 complete : _finish
				});

				return;
			}

			if (currentOpts.titlePosition == 'inside' && titleHeight > 0) {	
				title.show();	
			}

			content
				.css({
					'width' : final_pos.width - currentOpts.padding * 2,
					'height' : selectedOpts.autoDimensions ? 'auto' : final_pos.height - titleHeight - currentOpts.padding * 2
				})
				.html( tmp.contents() );

			wrap
				.css(final_pos)
				.fadeIn( currentOpts.transitionIn == 'none' ? 0 : currentOpts.speedIn, _finish );
		},

		_format_title = function(title) {
			if (title && title.length) {
				if (currentOpts.titlePosition == 'float') {
					return '<table id="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">' + title + '</td><td id="fancybox-title-float-right"></td></tr></table>';
				}

				return '<div id="fancybox-title-' + currentOpts.titlePosition + '">' + title + '</div>';
			}

			return false;
		},

		_process_title = function() {
			titleStr = currentOpts.title || '';
			titleHeight = 0;

			title
				.empty()
				.removeAttr('style')
				.removeClass();

			if (currentOpts.titleShow === false) {
				title.hide();
				return;
			}

			titleStr = $.isFunction(currentOpts.titleFormat) ? currentOpts.titleFormat(titleStr, currentArray, currentIndex, currentOpts) : _format_title(titleStr);

			if (!titleStr || titleStr === '') {
				title.hide();
				return;
			}

			title
				.addClass('fancybox-title-' + currentOpts.titlePosition)
				.html( titleStr )
				.appendTo( 'body' )
				.show();

			switch (currentOpts.titlePosition) {
				case 'inside':
					title
						.css({
							'width' : final_pos.width - (currentOpts.padding * 2),
							'marginLeft' : currentOpts.padding,
							'marginRight' : currentOpts.padding
						});

					titleHeight = title.outerHeight(true);

					title.appendTo( outer );

					final_pos.height += titleHeight;
				break;

				case 'over':
					title
						.css({
							'marginLeft' : currentOpts.padding,
							'width'	: final_pos.width - (currentOpts.padding * 2),
							'bottom' : currentOpts.padding
						})
						.appendTo( outer );
				break;

				case 'float':
					title
						.css('left', parseInt((title.width() - final_pos.width - 40)/ 2, 10) * -1)
						.appendTo( wrap );
				break;

				default:
					title
						.css({
							'width' : final_pos.width - (currentOpts.padding * 2),
							'paddingLeft' : currentOpts.padding,
							'paddingRight' : currentOpts.padding
						})
						.appendTo( wrap );
				break;
			}

			title.hide();
		},

		_set_navigation = function() {
			if (currentOpts.enableEscapeButton || currentOpts.enableKeyboardNav) {
				$(document).bind('keydown.fb', function(e) {
					if (e.keyCode == 27 && currentOpts.enableEscapeButton) {
						e.preventDefault();
						$.fancybox.close();

					} else if ((e.keyCode == 37 || e.keyCode == 39) && currentOpts.enableKeyboardNav && e.target.tagName !== 'INPUT' && e.target.tagName !== 'TEXTAREA' && e.target.tagName !== 'SELECT') {
						e.preventDefault();
						$.fancybox[ e.keyCode == 37 ? 'prev' : 'next']();
					}
				});
			}

			if (!currentOpts.showNavArrows) { 
				nav_left.hide();
				nav_right.hide();
				return;
			}

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex !== 0) {
				nav_left.show();
			}

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex != (currentArray.length -1)) {
				nav_right.show();
			}
		},

		_finish = function () {
			if (!$.support.opacity) {
				content.get(0).style.removeAttribute('filter');
				wrap.get(0).style.removeAttribute('filter');
			}

			if (selectedOpts.autoDimensions) {
				content.css('height', 'auto');
			}

			wrap.css('height', 'auto');

			if (titleStr && titleStr.length) {
				title.show();
			}

			if (currentOpts.showCloseButton) {
				close.show();
			}

			_set_navigation();
	
			if (currentOpts.hideOnContentClick)	{
				content.bind('click', $.fancybox.close);
			}

			if (currentOpts.hideOnOverlayClick)	{
				overlay.bind('click', $.fancybox.close);
			}

			$(window).bind("resize.fb", $.fancybox.resize);

			if (currentOpts.centerOnScroll) {
				$(window).bind("scroll.fb", $.fancybox.center);
			}

			if (currentOpts.type == 'iframe') {
				$('<iframe id="fancybox-frame" name="fancybox-frame' + new Date().getTime() + '" frameborder="0" hspace="0" ' + ($.browser.msie ? 'allowtransparency="true""' : '') + ' scrolling="' + selectedOpts.scrolling + '" src="' + currentOpts.href + '"></iframe>').appendTo(content);
			}

			wrap.show();

			busy = false;

			$.fancybox.center();

			currentOpts.onComplete(currentArray, currentIndex, currentOpts);

			_preload_images();
		},

		_preload_images = function() {
			var href, 
				objNext;

			if ((currentArray.length -1) > currentIndex) {
				href = currentArray[ currentIndex + 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}

			if (currentIndex > 0) {
				href = currentArray[ currentIndex - 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}
		},

		_draw = function(pos) {
			var dim = {
				width : parseInt(start_pos.width + (final_pos.width - start_pos.width) * pos, 10),
				height : parseInt(start_pos.height + (final_pos.height - start_pos.height) * pos, 10),

				top : parseInt(start_pos.top + (final_pos.top - start_pos.top) * pos, 10),
				left : parseInt(start_pos.left + (final_pos.left - start_pos.left) * pos, 10)
			};

			if (typeof final_pos.opacity !== 'undefined') {
				dim.opacity = pos < 0.5 ? 0.5 : pos;
			}

			wrap.css(dim);

			content.css({
				'width' : dim.width - currentOpts.padding * 2,
				'height' : dim.height - (titleHeight * pos) - currentOpts.padding * 2
			});
		},

		_get_viewport = function() {
			return [
				$(window).width() - (currentOpts.margin * 2),
				$(window).height() - (currentOpts.margin * 2),
				$(document).scrollLeft() + currentOpts.margin,
				$(document).scrollTop() + currentOpts.margin
			];
		},

		_get_zoom_to = function () {
			var view = _get_viewport(),
				to = {},
				resize = currentOpts.autoScale,
				double_padding = currentOpts.padding * 2,
				ratio;

			if (currentOpts.width.toString().indexOf('%') > -1) {
				to.width = parseInt((view[0] * parseFloat(currentOpts.width)) / 100, 10);
			} else {
				to.width = currentOpts.width + double_padding;
			}

			if (currentOpts.height.toString().indexOf('%') > -1) {
				to.height = parseInt((view[1] * parseFloat(currentOpts.height)) / 100, 10);
			} else {
				to.height = currentOpts.height + double_padding;
			}

			if (resize && (to.width > view[0] || to.height > view[1])) {
				if (selectedOpts.type == 'image' || selectedOpts.type == 'swf') {
					ratio = (currentOpts.width ) / (currentOpts.height );

					if ((to.width ) > view[0]) {
						to.width = view[0];
						to.height = parseInt(((to.width - double_padding) / ratio) + double_padding, 10);
					}

					if ((to.height) > view[1]) {
						to.height = view[1];
						to.width = parseInt(((to.height - double_padding) * ratio) + double_padding, 10);
					}

				} else {
					to.width = Math.min(to.width, view[0]);
					to.height = Math.min(to.height, view[1]);
				}
			}

			to.top = parseInt(Math.max(view[3] - 20, view[3] + ((view[1] - to.height - 40) * 0.5)), 10);
			to.left = parseInt(Math.max(view[2] - 20, view[2] + ((view[0] - to.width - 40) * 0.5)), 10);

			return to;
		},

		_get_obj_pos = function(obj) {
			var pos = obj.offset();

			pos.top += parseInt( obj.css('paddingTop'), 10 ) || 0;
			pos.left += parseInt( obj.css('paddingLeft'), 10 ) || 0;

			pos.top += parseInt( obj.css('border-top-width'), 10 ) || 0;
			pos.left += parseInt( obj.css('border-left-width'), 10 ) || 0;

			pos.width = obj.width();
			pos.height = obj.height();

			return pos;
		},

		_get_zoom_from = function() {
			var orig = selectedOpts.orig ? $(selectedOpts.orig) : false,
				from = {},
				pos,
				view;

			if (orig && orig.length) {
				pos = _get_obj_pos(orig);

				from = {
					width : pos.width + (currentOpts.padding * 2),
					height : pos.height + (currentOpts.padding * 2),
					top	: pos.top - currentOpts.padding - 20,
					left : pos.left - currentOpts.padding - 20
				};

			} else {
				view = _get_viewport();

				from = {
					width : currentOpts.padding * 2,
					height : currentOpts.padding * 2,
					top	: parseInt(view[3] + view[1] * 0.5, 10),
					left : parseInt(view[2] + view[0] * 0.5, 10)
				};
			}

			return from;
		},

		_animate_loading = function() {
			if (!loading.is(':visible')){
				clearInterval(loadingTimer);
				return;
			}

			$('div', loading).css('top', (loadingFrame * -40) + 'px');

			loadingFrame = (loadingFrame + 1) % 12;
		};

	/*
	 * Public methods 
	 */

	$.fn.fancybox = function(options) {
		if (!$(this).length) {
			return this;
		}

		$(this)
			.data('fancybox', $.extend({}, options, ($.metadata ? $(this).metadata() : {})))
			.unbind('click.fb')
			.bind('click.fb', function(e) {
				e.preventDefault();

				if (busy) {
					return;
				}

				busy = true;

				$(this).blur();

				selectedArray = [];
				selectedIndex = 0;

				var rel = $(this).attr('rel') || '';

				if (!rel || rel == '' || rel === 'nofollow') {
					selectedArray.push(this);

				} else {
					selectedArray = $("a[rel=" + rel + "], area[rel=" + rel + "]");
					selectedIndex = selectedArray.index( this );
				}

				_start();

				return;
			});

		return this;
	};

	$.fancybox = function(obj) {
		var opts;

		if (busy) {
			return;
		}

		busy = true;
		opts = typeof arguments[1] !== 'undefined' ? arguments[1] : {};

		selectedArray = [];
		selectedIndex = parseInt(opts.index, 10) || 0;

		if ($.isArray(obj)) {
			for (var i = 0, j = obj.length; i < j; i++) {
				if (typeof obj[i] == 'object') {
					$(obj[i]).data('fancybox', $.extend({}, opts, obj[i]));
				} else {
					obj[i] = $({}).data('fancybox', $.extend({content : obj[i]}, opts));
				}
			}

			selectedArray = jQuery.merge(selectedArray, obj);

		} else {
			if (typeof obj == 'object') {
				$(obj).data('fancybox', $.extend({}, opts, obj));
			} else {
				obj = $({}).data('fancybox', $.extend({content : obj}, opts));
			}

			selectedArray.push(obj);
		}

		if (selectedIndex > selectedArray.length || selectedIndex < 0) {
			selectedIndex = 0;
		}

		_start();
	};

	$.fancybox.showActivity = function() {
		clearInterval(loadingTimer);

		loading.show();
		loadingTimer = setInterval(_animate_loading, 66);
	};

	$.fancybox.hideActivity = function() {
		loading.hide();
	};

	$.fancybox.next = function() {
		return $.fancybox.pos( currentIndex + 1);
	};

	$.fancybox.prev = function() {
		return $.fancybox.pos( currentIndex - 1);
	};

	$.fancybox.pos = function(pos) {
		if (busy) {
			return;
		}

		pos = parseInt(pos);

		selectedArray = currentArray;

		if (pos > -1 && pos < currentArray.length) {
			selectedIndex = pos;
			_start();

		} else if (currentOpts.cyclic && currentArray.length > 1) {
			selectedIndex = pos >= currentArray.length ? 0 : currentArray.length - 1;
			_start();
		}

		return;
	};

	$.fancybox.cancel = function() {
		if (busy) {
			return;
		}

		busy = true;

		$.event.trigger('fancybox-cancel');

		_abort();

		selectedOpts.onCancel(selectedArray, selectedIndex, selectedOpts);

		busy = false;
	};

	// Note: within an iframe use - parent.$.fancybox.close();
	$.fancybox.close = function() {
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		if (currentOpts && false === currentOpts.onCleanup(currentArray, currentIndex, currentOpts)) {
			busy = false;
			return;
		}

		_abort();

		$(close.add( nav_left ).add( nav_right )).hide();

		$(content.add( overlay )).unbind();

		$(window).unbind("resize.fb scroll.fb");
		$(document).unbind('keydown.fb');

		content.find('iframe').attr('src', isIE6 && /^https/i.test(window.location.href || '') ? 'javascript:void(false)' : 'about:blank');

		if (currentOpts.titlePosition !== 'inside') {
			title.empty();
		}

		wrap.stop();

		function _cleanup() {
			overlay.fadeOut('fast');

			title.empty().hide();
			wrap.hide();

			$.event.trigger('fancybox-cleanup');

			content.empty();

			currentOpts.onClosed(currentArray, currentIndex, currentOpts);

			currentArray = selectedOpts	= [];
			currentIndex = selectedIndex = 0;
			currentOpts = selectedOpts	= {};

			busy = false;
		}

		if (currentOpts.transitionOut == 'elastic') {
			start_pos = _get_zoom_from();

			var pos = wrap.position();

			final_pos = {
				top	 : pos.top ,
				left : pos.left,
				width :	wrap.width(),
				height : wrap.height()
			};

			if (currentOpts.opacity) {
				final_pos.opacity = 1;
			}

			title.empty().hide();

			fx.prop = 1;

			$(fx).animate({ prop: 0 }, {
				 duration : currentOpts.speedOut,
				 easing : currentOpts.easingOut,
				 step : _draw,
				 complete : _cleanup
			});

		} else {
			wrap.fadeOut( currentOpts.transitionOut == 'none' ? 0 : currentOpts.speedOut, _cleanup);
		}
	};

	$.fancybox.resize = function() {
		if (overlay.is(':visible')) {
			overlay.css('height', $(document).height());
		}

		$.fancybox.center(true);
	};

	$.fancybox.center = function() {
		var view, align;

		if (busy) {
			return;	
		}

		align = arguments[0] === true ? 1 : 0;
		view = _get_viewport();

		if (!align && (wrap.width() > view[0] || wrap.height() > view[1])) {
			return;	
		}

		wrap
			.stop()
			.animate({
				'top' : parseInt(Math.max(view[3] - 20, view[3] + ((view[1] - content.height() - 40) * 0.5) - currentOpts.padding)),
				'left' : parseInt(Math.max(view[2] - 20, view[2] + ((view[0] - content.width() - 40) * 0.5) - currentOpts.padding))
			}, typeof arguments[0] == 'number' ? arguments[0] : 200);
	};

	$.fancybox.init = function() {
		if ($("#fancybox-wrap").length) {
			return;
		}

		$('body').append(
			tmp	= $('<div id="fancybox-tmp"></div>'),
			loading	= $('<div id="fancybox-loading"><div></div></div>'),
			overlay	= $('<div id="fancybox-overlay"></div>'),
			wrap = $('<div id="fancybox-wrap"></div>')
		);

		outer = $('<div id="fancybox-outer"></div>')
			.append('<div class="fancybox-bg" id="fancybox-bg-n"></div><div class="fancybox-bg" id="fancybox-bg-ne"></div><div class="fancybox-bg" id="fancybox-bg-e"></div><div class="fancybox-bg" id="fancybox-bg-se"></div><div class="fancybox-bg" id="fancybox-bg-s"></div><div class="fancybox-bg" id="fancybox-bg-sw"></div><div class="fancybox-bg" id="fancybox-bg-w"></div><div class="fancybox-bg" id="fancybox-bg-nw"></div>')
			.appendTo( wrap );

		outer.append(
			content = $('<div id="fancybox-content"></div>'),
			close = $('<a id="fancybox-close"></a>'),
			title = $('<div id="fancybox-title"></div>'),

			nav_left = $('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),
			nav_right = $('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>')
		);

		close.click($.fancybox.close);
		loading.click($.fancybox.cancel);

		nav_left.click(function(e) {
			e.preventDefault();
			$.fancybox.prev();
		});

		nav_right.click(function(e) {
			e.preventDefault();
			$.fancybox.next();
		});

		if ($.fn.mousewheel) {
			wrap.bind('mousewheel.fb', function(e, delta) {
				if (busy) {
					e.preventDefault();

				} else if ($(e.target).get(0).clientHeight == 0 || $(e.target).get(0).scrollHeight === $(e.target).get(0).clientHeight) {
					e.preventDefault();
					$.fancybox[ delta > 0 ? 'prev' : 'next']();
				}
			});
		}

		if (!$.support.opacity) {
			wrap.addClass('fancybox-ie');
		}

		if (isIE6) {
			loading.addClass('fancybox-ie6');
			wrap.addClass('fancybox-ie6');

			$('<iframe id="fancybox-hide-sel-frame" src="' + (/^https/i.test(window.location.href || '') ? 'javascript:void(false)' : 'about:blank' ) + '" scrolling="no" border="0" frameborder="0" tabindex="-1"></iframe>').prependTo(outer);
		}
	};

	$.fn.fancybox.defaults = {
		padding : 10,
		margin : 40,
		opacity : false,
		modal : false,
		cyclic : false,
		scrolling : 'auto',	// 'auto', 'yes' or 'no'

		width : 560,
		height : 340,

		autoScale : true,
		autoDimensions : true,
		centerOnScroll : false,

		ajax : {},
		swf : { wmode: 'transparent' },

		hideOnOverlayClick : true,
		hideOnContentClick : false,

		overlayShow : true,
		overlayOpacity : 0.7,
		overlayColor : '#777',

		titleShow : true,
		titlePosition : 'float', // 'float', 'outside', 'inside' or 'over'
		titleFormat : null,
		titleFromAlt : false,

		transitionIn : 'fade', // 'elastic', 'fade' or 'none'
		transitionOut : 'fade', // 'elastic', 'fade' or 'none'

		speedIn : 300,
		speedOut : 300,

		changeSpeed : 300,
		changeFade : 'fast',

		easingIn : 'swing',
		easingOut : 'swing',

		showCloseButton	 : true,
		showNavArrows : true,
		enableEscapeButton : true,
		enableKeyboardNav : true,

		onStart : function(){},
		onCancel : function(){},
		onComplete : function(){},
		onCleanup : function(){},
		onClosed : function(){},
		onError : function(){}
	};

	$(document).ready(function() {
		$.fancybox.init();
	});

})(jQuery);;

/**
 * Initiate Fancybox using selector and options from the module's settings.
 */
Drupal.behaviors.initFancybox = function() {
  var settings = Drupal.settings.fancybox;

  // Convert any JavaScript events to function calls.
  var events = ["onStart", "onComplete", "onClosed", "onCleanup", "onCancel"];
  for (var i in events) {
    if (settings.options[events[i]] != undefined && typeof(settings.options[events[i]]) == 'string') {
      settings.options[events[i]] = eval("("+settings.options[events[i]]+")");
    }
  }

  if (settings && settings.selector.length) {
    $(settings.selector).fancybox(settings.options);
  }

  $('.imagefield-fancybox').fancybox(settings.options);

  // emvideo support
  settings.options.hideOnContentClick = false;
  $('.emvideo-modal-fancybox').fancybox(settings.options);

}
;

$(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, '')]);
        }
      }
      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('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
/*
 * 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}})());;
if (Drupal.jsEnabled) {
  $(document).ready(function() {
    // I am assuming that all of the links are refering to an internal node
    
    // add the attribute rel=facebox to all of the links I want to have a popup
    $('div.view-field > a').attr('class', 'popup');
   
    // on click of a link
    $('a.popup').click(function(a) {
    
      // Make sure that other stuff is closed. This seems to cause a problem in Fx2 and IE7.
      $('div#calpopup').fadeOut();
      $('div#calpopup').remove();
      
      // create div to hold data and add it to the end of the body
      var div = $('<div id="calpopup"><div id="popup-close"><img id="popup-close-img" src="' + Drupal.settings.jcalendar.path + '/images/cross.png" /></div><div id="calpopup-body"><img src="' + Drupal.settings.jcalendar.path + '/images/throbber.gif" id="popthrobber" /></div></div>').attr('style','display: none');
      div.appendTo(document.body);
      
      // Locate Popup
      var offset = $(this).offset();
      // Check position with window width.
      var offset_left = offset.left + 5;
      if ($(window).width() < $('#calpopup').width() + offset.left) {
        offset_left -= $('#calpopup').width() + 5;
        if (offset_left < 0) {
          offset_left = 0;
        }
      }
      var offset_top = offset.top + 25;
      if ($(window).height() < $('#calpopup').height() + offset_top) {
        offset_top -= $('#calpopup').height() + 25;
	      if (offset_top < 0) {
          offset_top = 0;
        }
      }
      $('#calpopup').css('left', offset_left);
      $('#calpopup').css('top', offset_top);
      
      // Show Popup
      $('#calpopup').fadeIn('slow');
      
      // If sucessful call this
      function domCallback(msg) {
        $('#calpopup-body').html(msg);
      }
      
      // Get NodeID and ItemID
      var ids = $(this).parent().parent().attr('class');
      var arrs = ids.split(" ");
      var arr = arrs[0].split(".");
      var nid = arr[1];
      var id = arr[4];
            
      // fill the div with data
      $.ajax({
        type: "GET",
        url: Drupal.settings.basePath + "?q=jcalendar/getnode/"+nid+"/"+ids,
        success: function(msg){
          domCallback(msg);
        }
      });
      
      // On click of the close image
      $('img#popup-close-img').click(function(x) {
        $('div#calpopup').fadeOut();
        $('div#calpopup').remove();
      });
      
      $(document).click(function(y) {
        var $tgt = $(y.target);
        if (!$tgt.parents().is('div#calpopup')) {
          $('div#calpopup').fadeOut();
          $('div#calpopup').remove();
          $(document).unbind("click");
        }
      });
      
      // Don't Follow the real link
      return false;
    });
  });
}
;
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

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

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

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

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

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

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

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

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

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

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

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

  var $view = $(target);

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

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

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


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

        return false;
      });

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

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2000, 2007 Hoefler & Frere-Jones. http://www.typography.com
 * 
 * Trademark:
 * Gotham is a trademark of Hoefler & Frere-Jones, which may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * Gotham-Light
 * 
 * Manufacturer:
 * Hoefler & Frere-Jones
 * 
 * Designer:
 * Tobias Frere-Jones
 * 
 * Vendor URL:
 * www.typography.com
 * 
 * License information:
 * http://www.typography.com/support/eula.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"111,0r0,-700r52,0r0,700r-52,0xm116,-765r93,-118r59,28r-107,90r-45,0","w":274},{"d":"93,160r0,-890r49,0r0,334v44,-67,109,-126,210,-126v123,0,248,99,248,265r0,2v0,166,-125,267,-248,267v-102,0,-168,-58,-210,-122r0,270r-49,0xm347,-35v111,0,200,-81,200,-218r0,-2v0,-134,-93,-220,-200,-220v-106,0,-208,89,-208,219r0,2v0,131,102,219,208,219","w":660,"k":{"*":15,"\\":70,"?":35,"v":25,"x":30,"}":15,"]":20,")":30,"w":20,"\u0175":20,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,"\u00bb":5,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"93,0r0,-510r49,0r0,145v40,-91,125,-157,226,-153r0,54r-5,0v-118,0,-221,89,-221,255r0,209r-49,0","w":400,"k":{"*":-20,"\\":30,"\/":75,".":90,",":90,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":10}},{"d":"155,163v-39,0,-67,-7,-101,-22r17,-43v27,13,49,19,87,19v53,0,88,-31,126,-120r-245,-507r57,0r212,456r184,-456r54,0r-221,528v-45,107,-97,145,-170,145xm345,-595r0,-80r69,0r0,80r-69,0xm182,-595r0,-80r69,0r0,80r-69,0","w":588,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":70,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"\u00bb":15,".":85,",":85,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":30,"e":30,"o":30,"\u0107":30,"\u010d":30,"\u00e7":30,"\u010b":30,"\u00e9":30,"\u0115":30,"\u011b":30,"\u00ea":30,"\u00eb":30,"\u0117":30,"\u00e8":30,"\u0113":30,"\u0119":30,"\u00f0":30,"\u00f3":30,"\u014f":30,"\u00f4":30,"\u00f6":30,"\u0153":30,"\u00f2":30,"\u0151":30,"\u014d":30,"\u00f8":30,"\u00f5":30,"s":20,"\u015b":20,"\u0161":20,"\u015f":20,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"\u00ab":30,"-":15}},{"d":"288,148r-55,-26r77,-113v-98,-7,-175,-43,-251,-111r34,-39v77,71,148,104,251,104v105,0,177,-59,177,-139r0,-2v0,-74,-39,-117,-198,-149v-168,-34,-236,-91,-236,-197r0,-2v0,-104,95,-184,225,-184v102,0,169,28,240,85r-33,41v-66,-57,-132,-79,-209,-79v-103,0,-171,59,-171,132r0,2v0,74,38,119,204,153v162,33,230,91,230,193r0,2v0,109,-90,184,-217,190","w":640,"k":{"V":30,"\\":20,"?":10,"v":15,"X":25,"x":15,"T":15,"\u0164":15,"\u0162":15,"W":25,"\u0174":25,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"w":10,"\u0175":10,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00c6":15,"A":15,"\u00c1":15,"\u0102":15,"\u00c2":15,"\u00c4":15,"\u00c0":15,"\u0100":15,"\u0104":15,"\u00c5":15,"\u00c3":15,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"f":5,"t":5,"\u0165":5,"\u0163":5,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0xm334,-765r93,-118r59,28r-107,90r-45,0","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"70,0r0,-25r86,-20r0,-260r-86,0r0,-48r86,0r0,-118v0,-75,23,-139,65,-181v37,-37,89,-58,150,-58v104,0,164,46,210,106r-40,31v-41,-51,-87,-90,-171,-90v-48,0,-85,15,-113,43v-33,33,-50,84,-50,148r0,119r298,0r0,48r-298,0r0,258r374,0r0,47r-511,0","w":644,"k":{"4":15}},{"d":"341,10v-112,0,-198,-37,-282,-112r34,-39v77,71,148,104,251,104v105,0,177,-59,177,-139r0,-2v0,-74,-39,-117,-198,-149v-168,-34,-236,-91,-236,-197r0,-2v0,-104,95,-184,225,-184v102,0,169,28,240,85r-33,41v-66,-57,-132,-79,-209,-79v-103,0,-171,59,-171,132r0,2v0,74,38,119,204,153v162,33,230,91,230,193r0,2v0,113,-97,191,-232,191xm454,-882r-103,107r-46,0r-103,-107r54,0r73,61r73,-61r52,0","w":640,"k":{"V":30,"\\":20,"?":10,"v":15,"X":25,"x":15,"T":15,"\u0164":15,"\u0162":15,"W":25,"\u0174":25,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"w":10,"\u0175":10,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00c6":15,"A":15,"\u00c1":15,"\u0102":15,"\u00c2":15,"\u00c4":15,"\u00c0":15,"\u0100":15,"\u0104":15,"\u00c5":15,"\u00c3":15,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"f":5,"t":5,"\u0165":5,"\u0163":5,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"236,4r-187,-514r55,0r154,448r154,-450r39,0r154,450r154,-448r53,0r-187,514r-42,0r-152,-437r-153,437r-42,0xm310,-595r100,-122r40,0r100,122r-47,0r-74,-68r-74,68r-45,0","w":861,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":60,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"\u00bb":10,".":70,",":70,"a":20,"\u00e1":20,"\u0103":20,"\u00e2":20,"\u00e4":20,"\u00e6":20,"\u00e0":20,"\u0101":20,"\u0105":20,"\u00e5":20,"\u00e3":20,"d":20,"g":20,"q":20,"\u010f":20,"\u0111":20,"\u011f":20,"\u0123":20,"\u0121":20,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"s":15,"\u015b":15,"\u0161":15,"\u015f":15,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"\u00ab":20,"-":10}},{"d":"263,9v-79,0,-143,-43,-143,-140r0,-334r-74,0r0,-45r74,0r0,-163r49,0r0,163r179,0r0,45r-179,0r0,329v0,73,43,99,102,99v25,0,46,-5,75,-18r0,46v-26,12,-51,18,-83,18xm288,-582r17,-149r61,0r0,3r-49,146r-29,0","w":400,"k":{"\\":40,"d":15,"g":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":10}},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0xm283,-883r93,118r-45,0r-107,-90","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0xm229,-765r103,-107r46,0r103,107r-54,0r-73,-61r-73,61r-52,0","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"93,0r0,-510r49,0r0,95v34,-60,91,-107,184,-107v129,0,204,88,204,210r0,312r-49,0r0,-303v0,-105,-59,-174,-162,-174v-100,0,-177,76,-177,182r0,295r-49,0","k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15}},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315xm425,-773v-74,0,-128,-37,-133,-100r44,0v11,32,40,52,89,52v49,0,78,-20,89,-52r44,0v-5,63,-59,100,-133,100","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"93,0r0,-510r49,0r0,91v33,-53,79,-103,170,-103v89,0,144,51,172,110v33,-57,88,-110,184,-110v121,0,196,85,196,213r0,309r-49,0r0,-303v0,-110,-57,-174,-151,-174v-86,0,-161,66,-161,180r0,297r-49,0r0,-306v0,-106,-58,-171,-149,-171v-91,0,-163,80,-163,183r0,294r-49,0","w":951,"k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15}},{"d":"155,163v-39,0,-67,-7,-101,-22r17,-43v27,13,49,19,87,19v53,0,88,-31,126,-120r-245,-507r57,0r212,456r184,-456r54,0r-221,528v-45,107,-97,145,-170,145xm178,-595r100,-122r40,0r100,122r-47,0r-74,-68r-74,68r-45,0","w":588,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":70,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"\u00bb":15,".":85,",":85,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":30,"e":30,"o":30,"\u0107":30,"\u010d":30,"\u00e7":30,"\u010b":30,"\u00e9":30,"\u0115":30,"\u011b":30,"\u00ea":30,"\u00eb":30,"\u0117":30,"\u00e8":30,"\u0113":30,"\u0119":30,"\u00f0":30,"\u00f3":30,"\u014f":30,"\u00f4":30,"\u00f6":30,"\u0153":30,"\u00f2":30,"\u0151":30,"\u014d":30,"\u00f8":30,"\u00f5":30,"s":20,"\u015b":20,"\u0161":20,"\u015f":20,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"\u00ab":30,"-":15}},{"d":"58,0r0,-28r368,-438r-354,0r0,-44r427,0r0,28r-368,438r368,0r0,44r-441,0xm261,-595r88,-133r61,30r-107,103r-42,0","w":554,"k":{"\\":45,"d":15,"g":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":15}},{"d":"469,128r-472,-926r49,0r472,926r-49,0","w":500,"k":{"v":70,"j":-30,"V":120,"T":90,"\u0164":90,"\u0162":90,"W":100,"\u0174":100,"Y":110,"\u00dd":110,"\u0176":110,"\u0178":110,"w":60,"\u0175":60,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"f":10,"t":30,"\u0165":30,"\u0163":30,"U":15,"\u00da":15,"\u016c":15,"\u00db":15,"\u00dc":15,"\u00d9":15,"\u0170":15,"\u016a":15,"\u0172":15,"\u016e":15}},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107xm348,-595r0,-80r69,0r0,80r-69,0xm185,-595r0,-80r69,0r0,80r-69,0","k":{"\\":50}},{"d":"414,12v-203,0,-361,-163,-361,-360r0,-2v0,-197,160,-362,363,-362v203,0,361,163,361,360r0,2v0,197,-160,362,-363,362xm414,-16v190,0,333,-151,333,-334r0,-2v0,-183,-142,-332,-331,-332v-190,0,-333,151,-333,334r0,2v0,183,142,332,331,332xm419,-166v-103,0,-182,-85,-182,-188r0,-2v0,-102,80,-189,183,-189v65,0,104,26,141,61r-30,31v-29,-28,-65,-52,-112,-52v-79,0,-138,67,-138,148r0,2v0,81,62,149,139,149v49,0,80,-19,115,-52r28,28v-39,38,-79,64,-144,64","w":830},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308xm432,-760r0,-76r73,0r0,76r-73,0xm256,-760r0,-76r74,0r0,76r-74,0","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"445,0v-220,0,-372,-151,-372,-348r0,-2v0,-197,152,-350,372,-350r639,0r0,48r-431,0r0,275r386,0r0,48r-386,0r0,281r436,0r0,48r-644,0xm445,-48r156,0r0,-604r-156,0v-195,0,-318,133,-318,300r0,2v0,166,123,302,318,302","w":1152,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107xm280,-595r88,-133r61,30r-107,103r-42,0","k":{"\\":50}},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107xm154,-621r0,-47r294,0r0,47r-294,0","k":{"\\":50}},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm279,-595r88,-133r61,30r-107,103r-42,0","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"755,164v-83,-3,-126,-33,-126,-79v0,-34,20,-60,57,-90r-86,-191r-413,0r-89,196r-54,0r326,-705r50,0r326,705r-11,0v-39,31,-56,51,-56,79v0,28,20,44,76,49r0,36xm209,-243r369,0r-184,-405","w":790},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315xm404,-775r93,-118r59,28r-107,90r-45,0","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315xm353,-893r93,118r-45,0r-107,-90","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"445,0r0,-171r-379,0r-18,-39r400,-495r47,0r0,489r114,0r0,45r-114,0r0,171r-50,0xm111,-216r334,0r0,-414","w":664,"k":{"\/":20,"9":10,"7":40,"1":20}},{"d":"333,0r0,-277r-6,0v-154,0,-274,-76,-274,-211r0,-2v0,-131,108,-210,259,-210r74,0r0,700r-53,0","w":480},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221xm209,-586r-34,-9v19,-72,44,-93,84,-93v38,0,94,41,128,41v24,0,35,-12,50,-50r34,9v-19,72,-44,93,-84,93v-38,0,-94,-41,-128,-41v-24,0,-35,12,-50,50","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"155,163v-39,0,-67,-7,-101,-22r17,-43v27,13,49,19,87,19v53,0,88,-31,126,-120r-245,-507r57,0r212,456r184,-456r54,0r-221,528v-45,107,-97,145,-170,145xm277,-595r88,-133r61,30r-107,103r-42,0","w":588,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":70,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"\u00bb":15,".":85,",":85,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":30,"e":30,"o":30,"\u0107":30,"\u010d":30,"\u00e7":30,"\u010b":30,"\u00e9":30,"\u0115":30,"\u011b":30,"\u00ea":30,"\u00eb":30,"\u0117":30,"\u00e8":30,"\u0113":30,"\u0119":30,"\u00f0":30,"\u00f3":30,"\u014f":30,"\u00f4":30,"\u00f6":30,"\u0153":30,"\u00f2":30,"\u0151":30,"\u014d":30,"\u00f8":30,"\u00f5":30,"s":20,"\u015b":20,"\u0161":20,"\u015f":20,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"\u00ab":30,"-":15}},{"d":"44,0r326,-705r50,0r326,705r-57,0r-89,-196r-413,0r-89,196r-54,0xm209,-243r369,0r-184,-405xm447,-775r0,-76r73,0r0,76r-73,0xm271,-775r0,-76r74,0r0,76r-74,0","w":790},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221xm367,-595r0,-80r69,0r0,80r-69,0xm204,-595r0,-80r69,0r0,80r-69,0","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"93,0r0,-510r49,0r0,145v40,-91,125,-157,226,-153r0,54r-5,0v-118,0,-221,89,-221,255r0,209r-49,0xm331,-717r-100,122r-40,0r-100,-122r47,0r74,68r74,-68r45,0","w":400,"k":{"*":-20,"\\":30,"\/":75,".":90,",":90,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":10}},{"d":"-2,160r0,-44r604,0r0,44r-604,0","w":600},{"d":"298,0r0,-652r-244,0r0,-48r540,0r0,48r-244,0r0,652r-52,0xm450,-872r-103,107r-46,0r-103,-107r54,0r73,61r73,-61r52,0","w":648,"k":{"v":100,"x":100,"J":110,"\/":90,"&":70,"j":40,"w":100,"\u0175":100,"y":100,"\u00fd":100,"\u0177":100,"\u00ff":100,"\u00c6":90,"A":90,"\u00c1":90,"\u0102":90,"\u00c2":90,"\u00c4":90,"\u00c0":90,"\u0100":90,"\u0104":90,"\u00c5":90,"\u00c3":90,"Z":20,"\u0179":20,"\u017d":20,"\u017b":20,"\u00bb":70,".":100,",":100,"a":135,"\u00e1":135,"\u0103":135,"\u00e2":135,"\u00e4":135,"\u00e6":135,"\u00e0":135,"\u0101":135,"\u0105":135,"\u00e5":135,"\u00e3":135,"d":125,"g":125,"q":125,"\u010f":125,"\u0111":125,"\u011f":125,"\u0123":125,"\u0121":125,"c":135,"e":135,"o":135,"\u0107":135,"\u010d":135,"\u00e7":135,"\u010b":135,"\u00e9":135,"\u0115":135,"\u011b":135,"\u00ea":135,"\u00eb":135,"\u0117":135,"\u00e8":135,"\u0113":135,"\u0119":135,"\u00f0":135,"\u00f3":135,"\u014f":135,"\u00f4":135,"\u00f6":135,"\u0153":135,"\u00f2":135,"\u0151":135,"\u014d":135,"\u00f8":135,"\u00f5":135,"C":55,"G":55,"O":55,"Q":55,"\u0106":55,"\u010c":55,"\u00c7":55,"\u010a":55,"\u011e":55,"\u0122":55,"\u0120":55,"\u00d3":55,"\u014e":55,"\u00d4":55,"\u00d6":55,"\u0152":55,"\u00d2":55,"\u0150":55,"\u014c":55,"\u00d8":55,"\u00d5":55,"s":115,"\u015b":115,"\u0161":115,"\u015f":115,"z":110,"\u017a":110,"\u017e":110,"\u017c":110,"\u00ab":90,"f":50,"t":50,"\u0165":50,"\u0163":50,"u":100,"\u00fa":100,"\u016d":100,"\u00fb":100,"\u00fc":100,"\u00f9":100,"\u0171":100,"\u016b":100,"\u0173":100,"\u016f":100,"S":15,"\u015a":15,"\u0160":15,"\u015e":15,":":50,";":50,"-":90,"b":20,"h":20,"k":20,"l":20,"\u0137":20,"\u013a":20,"\u013e":20,"\u013c":20,"\u0140":20,"m":100,"n":100,"p":100,"r":100,"\u0144":100,"\u0148":100,"\u0146":100,"\u00f1":100,"\u0155":100,"\u0159":100,"\u0157":100,"i":40,"\u00ed":40,"\u012d":40,"\u00ee":40,"\u00ef":40,"\u00ec":40,"\u012b":40,"\u012f":40}},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221xm200,-595r100,-122r40,0r100,122r-47,0r-74,-68r-74,68r-45,0","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"93,-615r0,-85r66,0r0,85r-66,0xm97,0r0,-70r15,-447r28,0r15,447r0,70r-58,0","w":252},{"d":"93,0r0,-510r49,0r0,95v34,-60,91,-107,184,-107v129,0,204,88,204,210r0,312r-49,0r0,-303v0,-105,-59,-174,-162,-174v-100,0,-177,76,-177,182r0,295r-49,0xm256,225r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15}},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221xm320,-593v-74,0,-128,-42,-133,-112r39,0v12,37,42,64,94,64v52,0,82,-27,94,-64r39,0v-5,70,-59,112,-133,112","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"298,0r0,-652r-244,0r0,-48r540,0r0,48r-244,0r0,652r-52,0","w":648,"k":{"v":100,"x":100,"J":110,"\/":90,"&":70,"j":40,"w":100,"\u0175":100,"y":100,"\u00fd":100,"\u0177":100,"\u00ff":100,"\u00c6":90,"A":90,"\u00c1":90,"\u0102":90,"\u00c2":90,"\u00c4":90,"\u00c0":90,"\u0100":90,"\u0104":90,"\u00c5":90,"\u00c3":90,"Z":20,"\u0179":20,"\u017d":20,"\u017b":20,"\u00bb":70,".":100,",":100,"a":135,"\u00e1":135,"\u0103":135,"\u00e2":135,"\u00e4":135,"\u00e6":135,"\u00e0":135,"\u0101":135,"\u0105":135,"\u00e5":135,"\u00e3":135,"d":125,"g":125,"q":125,"\u010f":125,"\u0111":125,"\u011f":125,"\u0123":125,"\u0121":125,"c":135,"e":135,"o":135,"\u0107":135,"\u010d":135,"\u00e7":135,"\u010b":135,"\u00e9":135,"\u0115":135,"\u011b":135,"\u00ea":135,"\u00eb":135,"\u0117":135,"\u00e8":135,"\u0113":135,"\u0119":135,"\u00f0":135,"\u00f3":135,"\u014f":135,"\u00f4":135,"\u00f6":135,"\u0153":135,"\u00f2":135,"\u0151":135,"\u014d":135,"\u00f8":135,"\u00f5":135,"C":55,"G":55,"O":55,"Q":55,"\u0106":55,"\u010c":55,"\u00c7":55,"\u010a":55,"\u011e":55,"\u0122":55,"\u0120":55,"\u00d3":55,"\u014e":55,"\u00d4":55,"\u00d6":55,"\u0152":55,"\u00d2":55,"\u0150":55,"\u014c":55,"\u00d8":55,"\u00d5":55,"s":115,"\u015b":115,"\u0161":115,"\u015f":115,"z":110,"\u017a":110,"\u017e":110,"\u017c":110,"\u00ab":90,"f":50,"t":50,"\u0165":50,"\u0163":50,"u":100,"\u00fa":100,"\u016d":100,"\u00fb":100,"\u00fc":100,"\u00f9":100,"\u0171":100,"\u016b":100,"\u0173":100,"\u016f":100,"S":15,"\u015a":15,"\u0160":15,"\u015e":15,":":50,";":50,"-":90,"b":20,"h":20,"k":20,"l":20,"\u0137":20,"\u013a":20,"\u013e":20,"\u013c":20,"\u0140":20,"m":100,"n":100,"p":100,"r":100,"\u0144":100,"\u0148":100,"\u0146":100,"\u00f1":100,"\u0155":100,"\u0159":100,"\u0157":100,"i":40,"\u00ed":40,"\u012d":40,"\u00ee":40,"\u00ef":40,"\u00ec":40,"\u012b":40,"\u012f":40}},{"d":"104,0r0,-700r49,0r483,609r0,-609r50,0r0,700r-39,0r-493,-622r0,622r-50,0xm374,-760r93,-118r59,28r-107,90r-45,0","w":790},{"d":"348,141v-176,-100,-277,-247,-277,-428v0,-181,101,-328,277,-428r21,33v-158,97,-246,228,-246,395v0,167,88,298,246,395","w":430,"k":{"j":-30,"g":30,"J":15,"d":30,"q":30,"\u010f":30,"\u0111":30,"\u011f":30,"\u0123":30,"\u0121":30,"c":30,"e":30,"o":30,"\u0107":30,"\u010d":30,"\u00e7":30,"\u010b":30,"\u00e9":30,"\u0115":30,"\u011b":30,"\u00ea":30,"\u00eb":30,"\u0117":30,"\u00e8":30,"\u0113":30,"\u0119":30,"\u00f0":30,"\u00f3":30,"\u014f":30,"\u00f4":30,"\u00f6":30,"\u0153":30,"\u00f2":30,"\u0151":30,"\u014d":30,"\u00f8":30,"\u00f5":30,"C":30,"G":30,"O":30,"Q":30,"\u0106":30,"\u010c":30,"\u00c7":30,"\u010a":30,"\u011e":30,"\u0122":30,"\u0120":30,"\u00d3":30,"\u014e":30,"\u00d4":30,"\u00d6":30,"\u0152":30,"\u00d2":30,"\u0150":30,"\u014c":30,"\u00d8":30,"\u00d5":30,"s":15,"\u015b":15,"\u0161":15,"\u015f":15}},{"d":"44,0r326,-705r50,0r326,705r-57,0r-89,-196r-413,0r-89,196r-54,0xm209,-243r369,0r-184,-405xm269,-775r103,-107r46,0r103,107r-54,0r-73,-61r-73,61r-52,0","w":790},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315xm324,-775r93,-118r59,28r-107,90r-45,0xm464,-775r93,-118r59,28r-107,90r-45,0","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107xm301,-593v-74,0,-128,-42,-133,-112r39,0v12,37,42,64,94,64v52,0,82,-27,94,-64r39,0v-5,70,-59,112,-133,112","k":{"\\":50}},{"d":"104,0r0,-700r49,0r483,609r0,-609r50,0r0,700r-39,0r-493,-622r0,622r-50,0xm287,-751r-37,-10v19,-64,44,-88,82,-88v38,0,94,38,126,38v24,0,35,-12,50,-46r37,10v-19,64,-44,87,-82,87v-38,0,-94,-38,-126,-38v-24,0,-35,12,-50,47","w":790},{"d":"104,0r0,-700r294,0v86,0,155,27,197,69v33,33,53,80,53,130r0,2v0,117,-87,184,-205,200r231,299r-66,0r-223,-290r-229,0r0,290r-52,0xm156,-337r236,0v117,0,204,-59,204,-160r0,-2v0,-94,-74,-153,-201,-153r-239,0r0,315xm330,-765r93,-118r59,28r-107,90r-45,0","w":723,"k":{"V":20,"J":5,"T":10,"\u0164":10,"\u0162":10,"W":15,"\u0174":15,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"f":-10,"t":-10,"\u0165":-10,"\u0163":-10}},{"d":"297,-595r0,-80r69,0r0,80r-69,0xm134,-595r0,-80r69,0r0,80r-69,0","w":500},{"d":"217,148r-55,-26r90,-132r43,0","w":500},{"d":"536,164v-83,-3,-126,-33,-126,-79v0,-35,21,-62,61,-93r0,-87v-34,60,-91,107,-184,107v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-4,0v-39,31,-56,51,-56,79v0,28,20,44,76,49r0,36","k":{"\\":50}},{"d":"100,0r0,-510r49,0r0,510r-49,0xm124,-593v-74,0,-128,-42,-133,-112r39,0v12,37,42,64,94,64v52,0,82,-27,94,-64r39,0v-5,70,-59,112,-133,112","w":249},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107xm197,-683v0,-55,47,-100,104,-100v57,0,104,45,104,100v0,55,-47,100,-104,100v-57,0,-104,-45,-104,-100xm231,-683v0,38,32,70,70,70v38,0,70,-32,70,-70v0,-38,-32,-70,-70,-70v-38,0,-70,32,-70,70","k":{"\\":50}},{"d":"311,12v-114,0,-200,-52,-257,-126r40,-33v56,71,126,112,218,112v94,0,173,-63,173,-155r0,-2v0,-98,-92,-152,-218,-152r-38,0r-13,-29r241,-278r-367,0r0,-49r438,0r0,37r-237,271v133,8,248,70,248,198r0,2v0,122,-107,204,-228,204","w":610,"k":{"\/":10,"9":5,"7":25,"5":5}},{"d":"540,-517r57,0r-80,84v41,47,65,109,65,176r0,2v0,143,-111,267,-263,267v-65,0,-123,-23,-167,-60r-52,53r-57,0r79,-82v-40,-48,-64,-109,-64,-176r0,-2v0,-143,111,-267,263,-267v65,0,123,23,167,61xm321,-33v122,0,209,-99,209,-220v0,-55,-18,-106,-49,-144r-297,312v36,33,84,52,137,52xm110,-257v0,55,17,105,47,144r299,-311v-36,-33,-84,-53,-137,-53v-122,0,-209,99,-209,220","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"68,0r0,-29r479,-624r-462,0r0,-47r536,0r0,29r-479,624r479,0r0,47r-553,0","w":688,"k":{"v":20,"&":15,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"d":20,"g":20,"q":20,"\u010f":20,"\u0111":20,"\u011f":20,"\u0123":20,"\u0121":20,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"\u00ab":20,"f":10,"S":10,"\u015a":10,"\u0160":10,"\u015e":10,"-":30}},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm468,-37v-63,53,-78,80,-78,110v0,34,21,49,77,55r0,36v-83,-3,-126,-32,-126,-84v0,-28,13,-51,38,-76v-22,5,-45,8,-71,8v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-17,18,-29,29,-51,47","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308xm274,-843v0,-54,48,-95,106,-95v58,0,106,41,106,95v0,54,-48,95,-106,95v-58,0,-106,-41,-106,-95xm312,-843v0,36,30,63,68,63v38,0,68,-27,68,-63v0,-36,-30,-63,-68,-63v-38,0,-68,27,-68,63","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"100,0r0,-510r49,0r0,510r-49,0","w":249},{"w":300},{"d":"93,0r0,-510r49,0r0,95v34,-60,91,-107,184,-107v129,0,204,88,204,210r0,312r-49,0r0,-303v0,-105,-59,-174,-162,-174v-100,0,-177,76,-177,182r0,295r-49,0xm200,-586r-34,-9v19,-72,44,-93,84,-93v38,0,94,41,128,41v24,0,35,-12,50,-50r34,9v-19,72,-44,93,-84,93v-38,0,-94,-41,-128,-41v-24,0,-35,12,-50,50","k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15}},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221xm359,-595r89,-133r55,29r-101,104r-43,0xm223,-595r89,-133r55,29r-101,104r-43,0","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"225,-412v-79,0,-151,-68,-151,-146r0,-2v0,-78,72,-146,151,-146v79,0,151,68,151,146r0,2v0,78,-72,146,-151,146xm225,-456v58,0,101,-49,101,-102r0,-2v0,-53,-43,-102,-101,-102v-58,0,-101,49,-101,102r0,2v0,53,43,102,101,102","w":450},{"d":"68,0r0,-29r479,-624r-462,0r0,-47r536,0r0,29r-479,624r479,0r0,47r-553,0xm315,-765r0,-76r76,0r0,76r-76,0","w":688,"k":{"v":20,"&":15,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"d":20,"g":20,"q":20,"\u010f":20,"\u0111":20,"\u011f":20,"\u0123":20,"\u0121":20,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"\u00ab":20,"f":10,"S":10,"\u015a":10,"\u0160":10,"\u015e":10,"-":30}},{"d":"317,162v-85,0,-164,-26,-234,-78r29,-40v61,47,131,72,206,72v117,0,200,-67,200,-198r0,-74v-44,63,-112,118,-213,118v-123,0,-245,-94,-245,-240r0,-2v0,-147,122,-242,245,-242v102,0,171,54,213,114r0,-102r49,0r0,431v0,74,-24,132,-65,173v-44,44,-110,68,-185,68xm310,-85v106,0,211,-78,211,-194r0,-2v0,-118,-105,-194,-211,-194v-107,0,-197,74,-197,193r0,2v0,115,92,195,197,195xm296,-595r0,-81r72,0r0,81r-72,0","w":660,"k":{"\\":50}},{"d":"263,9v-79,0,-143,-43,-143,-140r0,-334r-74,0r0,-45r74,0r0,-163r49,0r0,163r179,0r0,45r-179,0r0,329v0,73,43,99,102,99v25,0,46,-5,75,-18r0,46v-26,12,-51,18,-83,18xm171,225r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":400,"k":{"\\":40,"d":15,"g":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":10}},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117xm183,-693v0,-55,47,-100,104,-100v57,0,104,45,104,100v0,55,-47,100,-104,100v-57,0,-104,-45,-104,-100xm217,-693v0,38,32,70,70,70v38,0,70,-32,70,-70v0,-38,-32,-70,-70,-70v-38,0,-70,32,-70,70","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"104,0r0,-700r52,0r0,652r411,0r0,48r-463,0","w":619,"k":{"V":115,"*":80,"\\":120,"?":60,"v":60,"&":10,"T":100,"\u0164":100,"\u0162":100,"W":100,"\u0174":100,"Y":130,"\u00dd":130,"\u0176":130,"\u0178":130,"w":50,"\u0175":50,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"f":20,"t":20,"\u0165":20,"\u0163":20,"-":40,"U":20,"\u00da":20,"\u016c":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"\u0170":20,"\u016a":20,"\u0172":20,"\u016e":20,"\u00ae":90}},{"d":"112,-183r-15,-447r0,-70r58,0r0,70r-15,447r-28,0xm93,0r0,-85r66,0r0,85r-66,0","w":252},{"d":"194,-411v-83,0,-143,-67,-143,-145r0,-2v0,-79,61,-147,145,-147v83,0,143,67,143,145r0,2v0,79,-61,147,-145,147xm51,-293r0,-40r288,0r0,40r-288,0xm196,-450v59,0,100,-48,100,-106r0,-2v0,-60,-44,-108,-102,-108v-59,0,-100,48,-100,106r0,2v0,60,44,108,102,108","w":390},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308xm380,-758v-74,0,-128,-37,-133,-100r44,0v11,32,40,52,89,52v49,0,78,-20,89,-52r44,0v-5,63,-59,100,-133,100","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"104,0r0,-700r52,0r0,460r446,-460r71,0r-306,309r319,391r-68,0r-288,-354r-174,176r0,178r-52,0","w":715,"k":{"V":30,"v":60,"&":10,"T":10,"\u0164":10,"\u0162":10,"W":30,"\u0174":30,"Y":40,"\u00dd":40,"\u0176":40,"\u0178":40,"w":50,"\u0175":50,"y":50,"\u00fd":50,"\u0177":50,"\u00ff":50,"a":10,"\u00e1":10,"\u0103":10,"\u00e2":10,"\u00e4":10,"\u00e6":10,"\u00e0":10,"\u0101":10,"\u0105":10,"\u00e5":10,"\u00e3":10,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":30,"e":30,"o":30,"\u0107":30,"\u010d":30,"\u00e7":30,"\u010b":30,"\u00e9":30,"\u0115":30,"\u011b":30,"\u00ea":30,"\u00eb":30,"\u0117":30,"\u00e8":30,"\u0113":30,"\u0119":30,"\u00f0":30,"\u00f3":30,"\u014f":30,"\u00f4":30,"\u00f6":30,"\u0153":30,"\u00f2":30,"\u0151":30,"\u014d":30,"\u00f8":30,"\u00f5":30,"C":50,"G":50,"O":50,"Q":50,"\u0106":50,"\u010c":50,"\u00c7":50,"\u010a":50,"\u011e":50,"\u0122":50,"\u0120":50,"\u00d3":50,"\u014e":50,"\u00d4":50,"\u00d6":50,"\u0152":50,"\u00d2":50,"\u0150":50,"\u014c":50,"\u00d8":50,"\u00d5":50,"\u00ab":20,"f":20,"t":25,"\u0165":25,"\u0163":25,"u":20,"\u00fa":20,"\u016d":20,"\u00fb":20,"\u00fc":20,"\u00f9":20,"\u0171":20,"\u016b":20,"\u0173":20,"\u016f":20,"S":10,"\u015a":10,"\u0160":10,"\u015e":10,"-":50,"U":15,"\u00da":15,"\u016c":15,"\u00db":15,"\u00dc":15,"\u00d9":15,"\u0170":15,"\u016a":15,"\u0172":15,"\u016e":15}},{"d":"116,-242r-34,-9v19,-72,44,-93,84,-93v38,0,94,41,128,41v24,0,35,-12,50,-50r34,9v-19,72,-44,93,-84,93v-38,0,-94,-41,-128,-41v-24,0,-35,12,-50,50","w":460},{"d":"416,141v-179,-34,-211,-99,-211,-203r0,-79v0,-78,-26,-127,-120,-127r-26,0r0,-38r26,0v94,0,120,-49,120,-127r0,-79v0,-104,32,-169,211,-203r7,32v-153,39,-169,76,-169,177r0,75v0,89,-41,125,-104,144v67,22,104,55,104,144r0,75v0,101,16,138,169,177","w":480,"k":{"x":10,"v":10,"j":-35,"g":15,"J":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"s":10,"\u015b":10,"\u0161":10,"\u015f":10,"z":10,"\u017a":10,"\u017e":10,"\u017c":10}},{"d":"293,12v-87,0,-153,-38,-211,-87r33,-40v59,53,115,80,179,80v141,0,240,-151,232,-361v-40,72,-108,135,-218,135v-141,0,-242,-94,-242,-214r0,-2v0,-129,100,-235,246,-235v75,0,136,29,178,71v54,54,88,133,88,273r0,2v0,220,-122,378,-285,378xm310,-307v119,0,195,-90,195,-178r0,-2v0,-99,-83,-178,-199,-178v-115,0,-186,89,-186,186r0,2v0,98,79,170,190,170","w":642,"k":{"\/":25,"7":25,"5":5,"3":10,"2":10,".":10,",":10}},{"d":"104,0r0,-700r294,0v86,0,155,27,197,69v33,33,53,80,53,130r0,2v0,117,-87,184,-205,200r231,299r-66,0r-223,-290r-229,0r0,290r-52,0xm156,-337r236,0v117,0,204,-59,204,-160r0,-2v0,-94,-74,-153,-201,-153r-239,0r0,315xm477,-872r-103,107r-46,0r-103,-107r54,0r73,61r73,-61r52,0","w":723,"k":{"V":20,"J":5,"T":10,"\u0164":10,"\u0162":10,"W":15,"\u0174":15,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"f":-10,"t":-10,"\u0165":-10,"\u0163":-10}},{"d":"134,0r0,-328r-75,0r0,-48r75,0r0,-324r233,0v220,0,372,151,372,348r0,2v0,197,-152,350,-372,350r-233,0xm186,-48r181,0v195,0,318,-133,318,-300r0,-2v0,-166,-123,-302,-318,-302r-181,0r0,276r232,0r0,48r-232,0r0,280","w":812,"k":{"V":45,"\\":40,"?":20,"X":55,"x":10,"J":40,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":65,"\u00dd":65,"\u0176":65,"\u0178":65,"\u00c6":45,"A":45,"\u00c1":45,"\u0102":45,"\u00c2":45,"\u00c4":45,"\u00c0":45,"\u0100":45,"\u0104":45,"\u00c5":45,"\u00c3":45,"Z":45,"\u0179":45,"\u017d":45,"\u017b":45,".":40,",":40,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315xm270,-801r0,-49r310,0r0,49r-310,0","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"258,10v-74,0,-155,-30,-209,-74r29,-39v56,43,118,67,183,67v69,0,123,-38,123,-97r0,-2v0,-60,-64,-82,-135,-102v-83,-24,-175,-49,-175,-140r0,-2v0,-82,69,-141,168,-141v61,0,130,22,181,56r-26,41v-47,-31,-103,-51,-157,-51v-70,0,-116,38,-116,89r0,2v0,57,69,78,142,99v82,23,168,53,168,143r0,2v0,91,-78,149,-176,149xm231,-595r88,-133r61,30r-107,103r-42,0","w":497,"k":{"\\":75,"?":35,"v":20,"x":25,"}":10,"]":15,")":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"s":10,"\u015b":10,"\u0161":10,"\u015f":10,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":10,"t":10,"\u0165":10,"\u0163":10}},{"d":"58,0r0,-28r368,-438r-354,0r0,-44r427,0r0,28r-368,438r368,0r0,44r-441,0xm246,-595r0,-81r72,0r0,81r-72,0","w":554,"k":{"\\":45,"d":15,"g":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":15}},{"d":"44,0r326,-705r50,0r326,705r-57,0r-89,-196r-413,0r-89,196r-54,0xm209,-243r369,0r-184,-405xm240,-801r0,-49r310,0r0,49r-310,0","w":790},{"d":"332,0r0,-277r-300,-423r65,0r262,376r263,-376r62,0r-300,422r0,278r-52,0","w":716,"k":{"V":20,"v":60,"X":20,"x":70,"J":130,"\/":110,"&":70,"j":20,"W":20,"\u0174":20,"w":55,"\u0175":55,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"\u00c6":110,"A":110,"\u00c1":110,"\u0102":110,"\u00c2":110,"\u00c4":110,"\u00c0":110,"\u0100":110,"\u0104":110,"\u00c5":110,"\u00c3":110,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"\u00bb":75,".":130,",":130,"a":100,"\u00e1":100,"\u0103":100,"\u00e2":100,"\u00e4":100,"\u00e6":100,"\u00e0":100,"\u0101":100,"\u0105":100,"\u00e5":100,"\u00e3":100,"d":105,"g":105,"q":105,"\u010f":105,"\u0111":105,"\u011f":105,"\u0123":105,"\u0121":105,"c":110,"e":110,"o":110,"\u0107":110,"\u010d":110,"\u00e7":110,"\u010b":110,"\u00e9":110,"\u0115":110,"\u011b":110,"\u00ea":110,"\u00eb":110,"\u0117":110,"\u00e8":110,"\u0113":110,"\u0119":110,"\u00f0":110,"\u00f3":110,"\u014f":110,"\u00f4":110,"\u00f6":110,"\u0153":110,"\u00f2":110,"\u0151":110,"\u014d":110,"\u00f8":110,"\u00f5":110,"C":60,"G":60,"O":60,"Q":60,"\u0106":60,"\u010c":60,"\u00c7":60,"\u010a":60,"\u011e":60,"\u0122":60,"\u0120":60,"\u00d3":60,"\u014e":60,"\u00d4":60,"\u00d6":60,"\u0152":60,"\u00d2":60,"\u0150":60,"\u014c":60,"\u00d8":60,"\u00d5":60,"s":100,"\u015b":100,"\u0161":100,"\u015f":100,"z":80,"\u017a":80,"\u017e":80,"\u017c":80,"\u00ab":100,"f":40,"t":30,"\u0165":30,"\u0163":30,"u":75,"\u00fa":75,"\u016d":75,"\u00fb":75,"\u00fc":75,"\u00f9":75,"\u0171":75,"\u016b":75,"\u0173":75,"\u016f":75,"S":35,"\u015a":35,"\u0160":35,"\u015e":35,":":40,";":40,"-":80,"b":10,"h":10,"k":10,"l":10,"\u0137":10,"\u013a":10,"\u013e":10,"\u013c":10,"\u0140":10,"m":75,"n":75,"p":75,"r":75,"\u0144":75,"\u0148":75,"\u0146":75,"\u00f1":75,"\u0155":75,"\u0159":75,"\u0157":75,"i":20,"\u00ed":20,"\u012d":20,"\u00ee":20,"\u00ef":20,"\u00ec":20,"\u012b":20,"\u012f":20}},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315xm317,-766r-37,-10v19,-64,44,-88,82,-88v38,0,94,38,126,38v24,0,35,-12,50,-46r37,10v-19,64,-44,87,-82,87v-38,0,-94,-38,-126,-38v-24,0,-35,12,-50,47","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"317,162v-85,0,-164,-26,-234,-78r29,-40v61,47,131,72,206,72v117,0,200,-67,200,-198r0,-74v-44,63,-112,118,-213,118v-123,0,-245,-94,-245,-240r0,-2v0,-147,122,-242,245,-242v102,0,171,54,213,114r0,-102r49,0r0,431v0,74,-24,132,-65,173v-44,44,-110,68,-185,68xm310,-85v106,0,211,-78,211,-194r0,-2v0,-118,-105,-194,-211,-194v-107,0,-197,74,-197,193r0,2v0,115,92,195,197,195","w":660,"k":{"\\":50}},{"d":"270,-500r0,-89r80,0r0,89r-80,0xm552,-328r-484,0r0,-48r484,0r0,48xm270,-115r0,-89r80,0r0,89r-80,0","w":620},{"d":"304,5r-254,-705r58,0r220,623r205,-625r40,0r205,625r220,-623r54,0r-254,705r-42,0r-205,-608r-205,608r-42,0xm425,-765r103,-107r46,0r103,107r-54,0r-73,-61r-73,61r-52,0","w":1102,"k":{"V":10,"v":35,"X":15,"x":40,"J":105,"\/":100,"&":45,"j":15,"W":10,"\u0174":10,"Y":20,"\u00dd":20,"\u0176":20,"\u0178":20,"w":35,"\u0175":35,"y":35,"\u00fd":35,"\u0177":35,"\u00ff":35,"\u00c6":90,"A":90,"\u00c1":90,"\u0102":90,"\u00c2":90,"\u00c4":90,"\u00c0":90,"\u0100":90,"\u0104":90,"\u00c5":90,"\u00c3":90,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"\u00bb":35,".":100,",":100,"a":70,"\u00e1":70,"\u0103":70,"\u00e2":70,"\u00e4":70,"\u00e6":70,"\u00e0":70,"\u0101":70,"\u0105":70,"\u00e5":70,"\u00e3":70,"d":60,"g":60,"q":60,"\u010f":60,"\u0111":60,"\u011f":60,"\u0123":60,"\u0121":60,"c":65,"e":65,"o":65,"\u0107":65,"\u010d":65,"\u00e7":65,"\u010b":65,"\u00e9":65,"\u0115":65,"\u011b":65,"\u00ea":65,"\u00eb":65,"\u0117":65,"\u00e8":65,"\u0113":65,"\u0119":65,"\u00f0":65,"\u00f3":65,"\u014f":65,"\u00f4":65,"\u00f6":65,"\u0153":65,"\u00f2":65,"\u0151":65,"\u014d":65,"\u00f8":65,"\u00f5":65,"C":35,"G":35,"O":35,"Q":35,"\u0106":35,"\u010c":35,"\u00c7":35,"\u010a":35,"\u011e":35,"\u0122":35,"\u0120":35,"\u00d3":35,"\u014e":35,"\u00d4":35,"\u00d6":35,"\u0152":35,"\u00d2":35,"\u0150":35,"\u014c":35,"\u00d8":35,"\u00d5":35,"s":60,"\u015b":60,"\u0161":60,"\u015f":60,"z":55,"\u017a":55,"\u017e":55,"\u017c":55,"\u00ab":50,"f":30,"t":25,"\u0165":25,"\u0163":25,"u":35,"\u00fa":35,"\u016d":35,"\u00fb":35,"\u00fc":35,"\u00f9":35,"\u0171":35,"\u016b":35,"\u0173":35,"\u016f":35,"S":20,"\u015a":20,"\u0160":20,"\u015e":20,":":15,";":15,"-":35,"b":10,"h":10,"k":10,"l":10,"\u0137":10,"\u013a":10,"\u013e":10,"\u013c":10,"\u0140":10,"m":35,"n":35,"p":35,"r":35,"\u0144":35,"\u0148":35,"\u0146":35,"\u00f1":35,"\u0155":35,"\u0159":35,"\u0157":35,"i":15,"\u00ed":15,"\u012d":15,"\u00ee":15,"\u00ef":15,"\u00ec":15,"\u012b":15,"\u012f":15}},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315xm477,-775r0,-76r73,0r0,76r-73,0xm301,-775r0,-76r74,0r0,76r-74,0","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"104,0r0,-700r233,0v220,0,372,151,372,348r0,2v0,197,-152,350,-372,350r-233,0xm156,-48r181,0v195,0,318,-133,318,-300r0,-2v0,-166,-123,-302,-318,-302r-181,0r0,604","w":782,"k":{"V":45,"\\":40,"?":20,"X":55,"x":10,"J":40,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":65,"\u00dd":65,"\u0176":65,"\u0178":65,"\u00c6":45,"A":45,"\u00c1":45,"\u0102":45,"\u00c2":45,"\u00c4":45,"\u00c0":45,"\u0100":45,"\u0104":45,"\u00c5":45,"\u00c3":45,"Z":45,"\u0179":45,"\u017d":45,"\u017b":45,".":40,",":40,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"134,0r0,-328r-75,0r0,-48r75,0r0,-324r233,0v220,0,372,151,372,348r0,2v0,197,-152,350,-372,350r-233,0xm186,-48r181,0v195,0,318,-133,318,-300r0,-2v0,-166,-123,-302,-318,-302r-181,0r0,276r232,0r0,48r-232,0r0,280","w":812,"k":{"V":45,"\\":40,"?":20,"X":55,"x":10,"J":40,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":65,"\u00dd":65,"\u0176":65,"\u0178":65,"\u00c6":45,"A":45,"\u00c1":45,"\u0102":45,"\u00c2":45,"\u00c4":45,"\u00c0":45,"\u0100":45,"\u0104":45,"\u00c5":45,"\u00c3":45,"Z":45,"\u0179":45,"\u017d":45,"\u017b":45,".":40,",":40,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"87,-425r0,-85r66,0r0,85r-66,0xm70,107r-12,-25v43,-22,59,-44,56,-82r-27,0r0,-85r66,0r0,74v0,62,-23,95,-83,118","w":240,"k":{"V":20,"T":50,"\u0164":50,"\u0162":50,"W":15,"\u0174":15,"Y":40,"\u00dd":40,"\u0176":40,"\u0178":40}},{"d":"297,98r0,-99v-91,-8,-165,-43,-237,-107r33,-39v62,59,124,93,206,101r0,-285v-150,-33,-212,-88,-212,-188v0,-101,88,-178,210,-181r0,-58r48,0r0,60v77,7,133,34,193,82r-33,39v-53,-46,-104,-69,-162,-76r0,281v152,32,216,89,216,187v0,106,-89,181,-214,185r0,98r-48,0xm508,-181v0,-68,-33,-110,-165,-140r0,276v100,-2,165,-60,165,-136xm138,-523v0,67,30,109,161,141r0,-273v-97,2,-161,60,-161,132","w":632,"k":{"7":10}},{"d":"111,0r0,-700r52,0r0,700r-52,0xm137,-763v-74,0,-128,-37,-133,-100r44,0v11,32,40,52,89,52v49,0,78,-20,89,-52r44,0v-5,63,-59,100,-133,100","w":274},{"d":"83,-439r0,-51r454,0r0,51r-454,0xm83,-214r0,-51r454,0r0,51r-454,0","w":620},{"d":"725,-705r60,0r-100,107v59,65,92,153,92,246r0,2v0,191,-141,362,-353,362v-92,0,-169,-31,-228,-82r-71,75r-60,0r99,-106v-58,-66,-91,-154,-91,-247r0,-2v0,-191,141,-362,353,-362v91,0,169,32,228,83xm426,-34v174,0,298,-140,298,-314v0,-82,-28,-156,-75,-213r-420,452v51,47,119,75,197,75xm126,-352v0,82,27,157,74,213r421,-452v-52,-47,-120,-75,-197,-75v-174,0,-298,140,-298,314","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"174,-411v-53,0,-109,-30,-109,-90r0,-2v0,-59,51,-93,124,-93v36,0,60,5,83,11r0,-5v0,-51,-32,-77,-83,-77v-32,0,-58,10,-88,24r-13,-34v34,-16,64,-26,103,-26v38,0,68,10,90,32v18,18,28,45,28,80r0,174r-37,0r0,-41v-22,29,-56,47,-98,47xm176,-447v51,0,96,-31,96,-77r0,-27v-23,-7,-48,-11,-85,-11v-51,0,-82,24,-82,57r0,2v0,36,33,56,71,56xm62,-293r0,-40r252,0r0,40r-252,0","w":390},{"d":"44,0r326,-705r50,0r326,705r-57,0r-89,-196r-413,0r-89,196r-54,0xm209,-243r369,0r-184,-405xm374,-775r93,-118r59,28r-107,90r-45,0","w":790},{"d":"208,-350v-92,0,-153,-84,-153,-177r0,-2v0,-94,62,-179,155,-179v92,0,153,85,153,177r0,2v0,94,-62,179,-155,179xm311,-527r0,-2v0,-78,-47,-136,-103,-136v-59,0,-101,61,-101,134r0,2v0,79,47,136,103,136v59,0,101,-59,101,-134xm393,-360r249,-340r54,0r-267,363r-247,337r-54,0xm614,8v-92,0,-153,-84,-153,-177r0,-2v0,-94,62,-179,155,-179v92,0,153,85,153,177r0,2v0,94,-62,179,-155,179xm616,-35v59,0,101,-59,101,-134r0,-2v0,-78,-47,-136,-103,-136v-59,0,-101,61,-101,134r0,2v0,79,47,136,103,136","w":824},{"d":"70,-269r0,-56r268,0r0,56r-268,0","w":408,"k":{"V":40,"v":15,"X":50,"x":30,"1":30,"7":40,"3":10,"T":90,"\u0164":90,"\u0162":90,"W":35,"\u0174":35,"Y":80,"\u00dd":80,"\u0176":80,"\u0178":80,"w":10,"\u0175":10,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":30,"\u0179":30,"\u017d":30,"\u017b":30,"z":10,"\u017a":10,"\u017e":10,"\u017c":10}},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117xm176,-586r-34,-9v19,-72,44,-93,84,-93v38,0,94,41,128,41v24,0,35,-12,50,-50r34,9v-19,72,-44,93,-84,93v-38,0,-94,-41,-128,-41v-24,0,-35,12,-50,50","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"264,-595r-107,-103r61,-30r88,133r-42,0","w":500},{"d":"104,0r0,-700r52,0r0,324r448,0r0,-324r52,0r0,700r-52,0r0,-328r-448,0r0,328r-52,0","w":760},{"d":"93,0r0,-730r49,0r0,315v34,-60,91,-107,184,-107v129,0,204,88,204,210r0,312r-49,0r0,-303v0,-105,-59,-174,-162,-174v-100,0,-177,76,-177,182r0,295r-49,0","k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15}},{"d":"65,107r-12,-25v43,-22,59,-44,56,-82r-27,0r0,-85r66,0r0,74v0,62,-23,95,-83,118","w":230,"k":{"y":60,"V":120,"v":85,"j":-15,"1":50,"7":20,"0":20,"T":100,"\u0164":100,"\u0162":100,"W":100,"\u0174":100,"Y":130,"\u00dd":130,"\u0176":130,"\u0178":130,"w":70,"\u0175":70,"\u00fd":60,"\u0177":60,"\u00ff":60,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":20,"e":20,"o":20,"\u0107":20,"\u010d":20,"\u00e7":20,"\u010b":20,"\u00e9":20,"\u0115":20,"\u011b":20,"\u00ea":20,"\u00eb":20,"\u0117":20,"\u00e8":20,"\u0113":20,"\u0119":20,"\u00f0":20,"\u00f3":20,"\u014f":20,"\u00f4":20,"\u00f6":20,"\u0153":20,"\u00f2":20,"\u0151":20,"\u014d":20,"\u00f8":20,"\u00f5":20,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"f":15,"t":25,"\u0165":25,"\u0163":25,"U":15,"\u00da":15,"\u016c":15,"\u00db":15,"\u00dc":15,"\u00d9":15,"\u0170":15,"\u016a":15,"\u0172":15,"\u016e":15}},{"d":"82,-255r0,-85r66,0r0,85r-66,0","w":230},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107xm340,-595r89,-133r55,29r-101,104r-43,0xm204,-595r89,-133r55,29r-101,104r-43,0","k":{"\\":50}},{"d":"-18,128r472,-926r49,0r-472,926r-49,0","w":500,"k":{"\/":170,"9":20,"8":15,"7":10,"6":35,"5":20,"4":95,"3":10,"2":20,"1":-10,"0":35,"x":50,"v":50,"J":130,"w":50,"\u0175":50,"y":50,"\u00fd":50,"\u0177":50,"\u00ff":50,"\u00c6":120,"A":120,"\u00c1":120,"\u0102":120,"\u00c2":120,"\u00c4":120,"\u00c0":120,"\u0100":120,"\u0104":120,"\u00c5":120,"\u00c3":120,"Z":20,"\u0179":20,"\u017d":20,"\u017b":20,"a":65,"\u00e1":65,"\u0103":65,"\u00e2":65,"\u00e4":65,"\u00e6":65,"\u00e0":65,"\u0101":65,"\u0105":65,"\u00e5":65,"\u00e3":65,"d":70,"g":70,"q":70,"\u010f":70,"\u0111":70,"\u011f":70,"\u0123":70,"\u0121":70,"c":80,"e":80,"o":80,"\u0107":80,"\u010d":80,"\u00e7":80,"\u010b":80,"\u00e9":80,"\u0115":80,"\u011b":80,"\u00ea":80,"\u00eb":80,"\u0117":80,"\u00e8":80,"\u0113":80,"\u0119":80,"\u00f0":80,"\u00f3":80,"\u014f":80,"\u00f4":80,"\u00f6":80,"\u0153":80,"\u00f2":80,"\u0151":80,"\u014d":80,"\u00f8":80,"\u00f5":80,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"s":85,"\u015b":85,"\u0161":85,"\u015f":85,"z":60,"\u017a":60,"\u017e":60,"\u017c":60,"f":25,"t":20,"\u0165":20,"\u0163":20,"u":50,"\u00fa":50,"\u016d":50,"\u00fb":50,"\u00fc":50,"\u00f9":50,"\u0171":50,"\u016b":50,"\u0173":50,"\u016f":50,"S":30,"\u015a":30,"\u0160":30,"\u015e":30,"m":50,"n":50,"p":50,"r":50,"\u0144":50,"\u0148":50,"\u0146":50,"\u00f1":50,"\u0155":50,"\u0159":50,"\u0157":50}},{"d":"93,0r0,-510r49,0r0,145v40,-91,125,-157,226,-153r0,54r-5,0v-118,0,-221,89,-221,255r0,209r-49,0xm190,-595r88,-133r61,30r-107,103r-42,0","w":400,"k":{"*":-20,"\\":30,"\/":75,".":90,",":90,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":10}},{"d":"70,-493r158,-210r44,0r158,210r-53,0r-128,-167r-128,167r-51,0","w":500},{"d":"194,-406r9,-127r-106,72r-22,-37r118,-56r-118,-56r22,-37r106,72r-9,-127r42,0r-9,127r106,-72r22,37r-118,56r118,56r-22,37r-106,-72r9,127r-42,0","w":430,"k":{"J":80,"\u00c6":100,"A":100,"\u00c1":100,"\u0102":100,"\u00c2":100,"\u00c4":100,"\u00c0":100,"\u0100":100,"\u0104":100,"\u00c5":100,"\u00c3":100,"a":10,"\u00e1":10,"\u0103":10,"\u00e2":10,"\u00e4":10,"\u00e6":10,"\u00e0":10,"\u0101":10,"\u0105":10,"\u00e5":10,"\u00e3":10,"d":15,"g":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":20,"e":20,"o":20,"\u0107":20,"\u010d":20,"\u00e7":20,"\u010b":20,"\u00e9":20,"\u0115":20,"\u011b":20,"\u00ea":20,"\u00eb":20,"\u0117":20,"\u00e8":20,"\u0113":20,"\u0119":20,"\u00f0":20,"\u00f3":20,"\u014f":20,"\u00f4":20,"\u00f6":20,"\u0153":20,"\u00f2":20,"\u0151":20,"\u014d":20,"\u00f8":20,"\u00f5":20,"s":10,"\u015b":10,"\u0161":10,"\u015f":10,"t":-10,"\u0165":-10,"\u0163":-10}},{"d":"490,-136r-181,-183r-181,183r-34,-34r183,-181r-183,-181r36,-36r181,183r181,-183r34,34r-183,181r183,181","w":620},{"d":"256,-615r0,-85r66,0r0,85r-66,0xm269,9v-132,0,-217,-88,-217,-195r0,-2v0,-124,96,-190,212,-204r9,-125r32,0r13,162r-5,5v-132,3,-208,64,-208,160r0,2v0,82,64,151,166,151v80,0,141,-39,193,-103r36,30v-57,71,-125,119,-231,119","w":534,"k":{"v":45,"X":10,"V":60,"T":60,"\u0164":60,"\u0162":60,"W":50,"\u0174":50,"Y":70,"\u00dd":70,"\u0176":70,"\u0178":70,"w":35,"\u0175":35,"y":35,"\u00fd":35,"\u0177":35,"\u00ff":35,"a":-10,"\u00e1":-10,"\u0103":-10,"\u00e2":-10,"\u00e4":-10,"\u00e6":-10,"\u00e0":-10,"\u0101":-10,"\u0105":-10,"\u00e5":-10,"\u00e3":-10,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"f":10,"t":15,"\u0165":15,"\u0163":15,"U":15,"\u00da":15,"\u016c":15,"\u00db":15,"\u00dc":15,"\u00d9":15,"\u0170":15,"\u016a":15,"\u0172":15,"\u016e":15}},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107xm280,-595r-107,-103r61,-30r88,133r-42,0","k":{"\\":50}},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117xm266,-595r-107,-103r61,-30r88,133r-42,0","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-21,0v-39,31,-56,51,-56,79v0,28,20,44,76,49r0,36v-83,-3,-126,-33,-126,-79v0,-32,18,-57,51,-85r-427,0","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117xm334,-595r0,-80r69,0r0,80r-69,0xm171,-595r0,-80r69,0r0,80r-69,0","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107xm181,-595r100,-122r40,0r100,122r-47,0r-74,-68r-74,68r-45,0","k":{"\\":50}},{"d":"329,10v-89,0,-172,-39,-227,-95r38,-36v46,47,114,82,194,82v79,0,116,-34,116,-77r0,-2v0,-43,-46,-73,-183,-106v-149,-36,-202,-74,-202,-139r0,-2v0,-59,58,-102,148,-113v-52,-23,-86,-59,-86,-105r0,-2v0,-75,70,-125,176,-125v89,0,172,39,227,95r-38,36v-46,-47,-114,-82,-194,-82v-79,0,-116,34,-116,77r0,2v0,43,46,73,183,106v149,36,202,74,202,139r0,2v0,59,-58,102,-148,113v52,23,86,59,86,105r0,2v0,75,-70,125,-176,125xm386,-253v78,0,129,-38,129,-78r0,-2v0,-36,-32,-67,-157,-98v-48,-12,-84,-16,-112,-16v-78,0,-129,38,-129,78r0,2v0,36,32,67,157,98v47,12,84,16,112,16","w":632,"k":{"7":15}},{"d":"332,0r0,-277r-300,-423r65,0r262,376r263,-376r62,0r-300,422r0,278r-52,0xm232,-760r103,-107r46,0r103,107r-54,0r-73,-61r-73,61r-52,0","w":716,"k":{"V":20,"v":60,"X":20,"x":70,"J":130,"\/":110,"&":70,"j":20,"W":20,"\u0174":20,"w":55,"\u0175":55,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"\u00c6":110,"A":110,"\u00c1":110,"\u0102":110,"\u00c2":110,"\u00c4":110,"\u00c0":110,"\u0100":110,"\u0104":110,"\u00c5":110,"\u00c3":110,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"\u00bb":75,".":130,",":130,"a":100,"\u00e1":100,"\u0103":100,"\u00e2":100,"\u00e4":100,"\u00e6":100,"\u00e0":100,"\u0101":100,"\u0105":100,"\u00e5":100,"\u00e3":100,"d":105,"g":105,"q":105,"\u010f":105,"\u0111":105,"\u011f":105,"\u0123":105,"\u0121":105,"c":110,"e":110,"o":110,"\u0107":110,"\u010d":110,"\u00e7":110,"\u010b":110,"\u00e9":110,"\u0115":110,"\u011b":110,"\u00ea":110,"\u00eb":110,"\u0117":110,"\u00e8":110,"\u0113":110,"\u0119":110,"\u00f0":110,"\u00f3":110,"\u014f":110,"\u00f4":110,"\u00f6":110,"\u0153":110,"\u00f2":110,"\u0151":110,"\u014d":110,"\u00f8":110,"\u00f5":110,"C":60,"G":60,"O":60,"Q":60,"\u0106":60,"\u010c":60,"\u00c7":60,"\u010a":60,"\u011e":60,"\u0122":60,"\u0120":60,"\u00d3":60,"\u014e":60,"\u00d4":60,"\u00d6":60,"\u0152":60,"\u00d2":60,"\u0150":60,"\u014c":60,"\u00d8":60,"\u00d5":60,"s":100,"\u015b":100,"\u0161":100,"\u015f":100,"z":80,"\u017a":80,"\u017e":80,"\u017c":80,"\u00ab":100,"f":40,"t":30,"\u0165":30,"\u0163":30,"u":75,"\u00fa":75,"\u016d":75,"\u00fb":75,"\u00fc":75,"\u00f9":75,"\u0171":75,"\u016b":75,"\u0173":75,"\u016f":75,"S":35,"\u015a":35,"\u0160":35,"\u015e":35,":":40,";":40,"-":80,"b":10,"h":10,"k":10,"l":10,"\u0137":10,"\u013a":10,"\u013e":10,"\u013c":10,"\u0140":10,"m":75,"n":75,"p":75,"r":75,"\u0144":75,"\u0148":75,"\u0146":75,"\u00f1":75,"\u0155":75,"\u0159":75,"\u0157":75,"i":20,"\u00ed":20,"\u012d":20,"\u00ee":20,"\u00ef":20,"\u00ec":20,"\u012b":20,"\u012f":20}},{"d":"248,-446r35,-254r65,0r0,5r-71,249r-29,0xm68,-446r35,-254r65,0r0,5r-71,249r-29,0","w":410},{"d":"68,-446r35,-254r65,0r0,5r-71,249r-29,0","w":230},{"d":"105,-268r0,-45r195,0r-268,-387r63,0r249,373r250,-373r60,0r-269,387r196,0r0,45r-213,0r0,98r213,0r0,45r-213,0r0,125r-50,0r0,-125r-213,0r0,-45r213,0r0,-98r-213,0","w":686,"k":{"4":20}},{"d":"622,14r-121,-125v-66,77,-143,121,-237,121v-123,0,-215,-80,-215,-194r0,-2v0,-94,67,-163,181,-205v-53,-59,-78,-102,-78,-160r0,-2v0,-90,73,-159,175,-159v91,0,161,68,161,152r0,2v0,87,-65,144,-172,181r184,189v34,-48,64,-106,91,-170r47,19v-32,72,-66,135,-104,186r129,133xm285,-409v100,-32,151,-81,151,-147r0,-2v0,-62,-48,-110,-111,-110v-71,0,-121,50,-121,113r0,2v0,44,19,78,81,144xm265,-35v78,0,145,-42,203,-110r-207,-214v-111,38,-160,103,-160,171r0,2v0,85,68,151,164,151","w":696,"k":{"V":60,"T":90,"\u0164":90,"\u0162":90,"W":50,"\u0174":50,"Y":70,"\u00dd":70,"\u0176":70,"\u0178":70,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"258,10v-74,0,-155,-30,-209,-74r29,-39v56,43,118,67,183,67v69,0,123,-38,123,-97r0,-2v0,-60,-64,-82,-135,-102v-83,-24,-175,-49,-175,-140r0,-2v0,-82,69,-141,168,-141v61,0,130,22,181,56r-26,41v-47,-31,-103,-51,-157,-51v-70,0,-116,38,-116,89r0,2v0,57,69,78,142,99v82,23,168,53,168,143r0,2v0,91,-78,149,-176,149xm372,-717r-100,122r-40,0r-100,-122r47,0r74,68r74,-68r45,0","w":497,"k":{"\\":75,"?":35,"v":20,"x":25,"}":10,"]":15,")":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"s":10,"\u015b":10,"\u0161":10,"\u015f":10,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":10,"t":10,"\u0165":10,"\u0163":10}},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308xm279,-760r93,-118r59,28r-107,90r-45,0xm419,-760r93,-118r59,28r-107,90r-45,0","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"104,0r0,-700r294,0v86,0,155,27,197,69v33,33,53,80,53,130r0,2v0,117,-87,184,-205,200r231,299r-66,0r-223,-290r-229,0r0,290r-52,0xm156,-337r236,0v117,0,204,-59,204,-160r0,-2v0,-94,-74,-153,-201,-153r-239,0r0,315xm296,220r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":723,"k":{"V":20,"J":5,"T":10,"\u0164":10,"\u0162":10,"W":15,"\u0174":15,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"f":-10,"t":-10,"\u0165":-10,"\u0163":-10}},{"d":"354,12v-178,0,-289,-167,-289,-360r0,-2v0,-193,113,-362,291,-362v178,0,289,167,289,360r0,2v0,193,-113,362,-291,362xm356,-35v145,0,235,-151,235,-313r0,-2v0,-163,-92,-315,-237,-315v-145,0,-235,150,-235,313r0,2v0,162,92,315,237,315","w":710,"k":{"\/":35,"7":30,"3":10,"2":10,"1":5,".":20,",":20}},{"d":"243,12v-94,0,-192,-54,-192,-160r0,-2v0,-106,90,-166,218,-166v66,0,111,9,160,22r0,-22v0,-103,-59,-156,-161,-156v-60,0,-106,17,-153,41r-18,-43v57,-27,106,-44,174,-44v101,0,170,43,193,128v40,-79,116,-132,206,-132v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96v-84,0,-161,-42,-206,-112v-53,61,-128,112,-229,112xm480,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm246,-34v87,0,155,-46,204,-107v-13,-33,-21,-69,-22,-109v-43,-10,-97,-22,-162,-22v-105,0,-163,48,-163,119r0,2v0,74,65,117,143,117","w":954,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm420,-717r-100,122r-40,0r-100,-122r47,0r74,68r74,-68r45,0","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"82,0r0,-85r66,0r0,85r-66,0","w":230,"k":{"V":120,"v":85,"j":-15,"1":50,"7":20,"0":20,"T":100,"\u0164":100,"\u0162":100,"W":100,"\u0174":100,"Y":130,"\u00dd":130,"\u0176":130,"\u0178":130,"w":70,"\u0175":70,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":20,"e":20,"o":20,"\u0107":20,"\u010d":20,"\u00e7":20,"\u010b":20,"\u00e9":20,"\u0115":20,"\u011b":20,"\u00ea":20,"\u00eb":20,"\u0117":20,"\u00e8":20,"\u0113":20,"\u0119":20,"\u00f0":20,"\u00f3":20,"\u014f":20,"\u00f4":20,"\u00f6":20,"\u0153":20,"\u00f2":20,"\u0151":20,"\u014d":20,"\u00f8":20,"\u00f5":20,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"f":15,"t":25,"\u0165":25,"\u0163":25,"U":15,"\u00da":15,"\u016c":15,"\u00db":15,"\u00dc":15,"\u00d9":15,"\u0170":15,"\u016a":15,"\u0172":15,"\u016e":15}},{"d":"424,12v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,191,-141,362,-353,362xm426,-35v173,0,297,-140,297,-313r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315xm299,-775r103,-107r46,0r103,107r-54,0r-73,-61r-73,61r-52,0","w":850,"k":{"V":40,"\\":40,"?":20,"X":50,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":60,"\u00dd":60,"\u0176":60,"\u0178":60,"\u00c6":40,"A":40,"\u00c1":40,"\u0102":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u0100":40,"\u0104":40,"\u00c5":40,"\u00c3":40,"Z":40,"\u0179":40,"\u017d":40,"\u017b":40,".":40,",":40,"S":5,"\u015a":5,"\u0160":5,"\u015e":5}},{"d":"518,160r0,-274v-44,67,-109,126,-210,126v-123,0,-248,-99,-248,-265r0,-2v0,-166,125,-267,248,-267v102,0,168,58,210,122r0,-110r49,0r0,670r-49,0xm313,-35v106,0,208,-89,208,-219r0,-2v0,-131,-102,-219,-208,-219v-111,0,-200,81,-200,218r0,2v0,134,93,220,200,220","w":660,"k":{"\\":50}},{"d":"59,130r0,-38r227,0r0,-754r-227,0r0,-38r273,0r0,830r-273,0","w":430},{"d":"179,164v-83,-3,-126,-33,-126,-79v0,-34,20,-61,58,-91r0,-694r52,0r0,700r-4,0v-39,31,-56,51,-56,79v0,28,20,44,76,49r0,36","w":274},{"d":"104,0r0,-700r52,0r0,127r202,0v154,0,260,79,260,214r0,2v0,147,-127,224,-273,224r-189,0r0,133r-52,0xm156,-181r192,0v130,0,218,-69,218,-173r0,-2v0,-111,-86,-169,-212,-169r-198,0r0,344","w":673},{"d":"100,0r0,-510r49,0r0,510r-49,0xm171,-595r0,-80r69,0r0,80r-69,0xm8,-595r0,-80r69,0r0,80r-69,0","w":249},{"d":"48,0r0,-39r261,-236v115,-105,155,-165,155,-239v0,-91,-74,-150,-158,-150v-89,0,-147,46,-205,130r-39,-26v61,-93,126,-150,249,-150v119,0,208,83,208,192r0,2v0,96,-52,160,-175,272r-214,194r396,0r0,50r-478,0","w":590,"k":{"7":15,"4":30}},{"d":"415,-42r-160,-209r0,-8r160,-209r37,24r-137,188r137,190xm211,-42r-160,-209r0,-8r160,-209r37,24r-137,188r137,190","w":515,"k":{"V":40,"v":15,"X":20,"x":15,"T":70,"\u0164":70,"\u0162":70,"W":35,"\u0174":35,"Y":75,"\u00dd":75,"\u0176":75,"\u0178":75,"w":10,"\u0175":10,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm180,-595r100,-122r40,0r100,122r-47,0r-74,-68r-74,68r-45,0","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"308,12v-123,0,-248,-99,-248,-265r0,-2v0,-166,125,-267,248,-267v102,0,168,58,210,122r0,-330r49,0r0,730r-49,0r0,-114v-44,67,-109,126,-210,126xm313,-35v106,0,208,-89,208,-219r0,-2v0,-131,-102,-219,-208,-219v-111,0,-200,81,-200,218r0,2v0,134,93,220,200,220","w":660},{"d":"93,0r0,-510r49,0r0,95v34,-60,91,-107,184,-107v129,0,204,88,204,210r0,312r-49,0r0,-303v0,-105,-59,-174,-162,-174v-100,0,-177,76,-177,182r0,295r-49,0xm290,-595r88,-133r61,30r-107,103r-42,0","k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15}},{"d":"287,12v-129,0,-204,-88,-204,-210r0,-312r49,0r0,303v0,105,59,174,162,174v100,0,177,-76,177,-182r0,-295r49,0r0,510r-49,0r0,-95v-34,60,-91,107,-184,107","k":{"\\":50}},{"d":"352,12v-102,0,-168,-58,-210,-122r0,110r-49,0r0,-730r49,0r0,334v44,-67,109,-126,210,-126v123,0,248,99,248,265r0,2v0,166,-125,267,-248,267xm347,-35v111,0,200,-81,200,-218r0,-2v0,-134,-93,-220,-200,-220v-106,0,-208,89,-208,219r0,2v0,131,102,219,208,219","w":660,"k":{"*":15,"\\":70,"?":35,"v":25,"x":30,"}":15,"]":20,")":30,"w":20,"\u0175":20,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,"\u00bb":5,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"263,148r-55,-26r76,-112v-130,-17,-226,-131,-226,-263r0,-2v0,-143,114,-267,260,-267v96,0,156,44,204,94r-35,36v-44,-45,-94,-84,-170,-84v-116,0,-206,97,-206,219r0,2v0,123,93,221,210,221v72,0,128,-37,171,-85r34,30v-50,57,-109,97,-196,101","w":571,"k":{"\\":40,"?":15,"v":5,"x":10,")":15,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"\u00bb":-10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":10}},{"d":"156,0r318,-650r-406,0r0,-50r464,0r0,38r-319,662r-57,0","w":587,"k":{"\/":140,"9":15,"8":10,"6":20,"5":25,"4":85,"3":20,"2":15,"1":-10,"0":20,".":100,",":100,"-":30}},{"d":"98,130r0,-830r273,0r0,38r-227,0r0,754r227,0r0,38r-273,0","w":430,"k":{"x":10,"v":20,"j":-30,"J":10,"w":20,"\u0175":20,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"a":10,"\u00e1":10,"\u0103":10,"\u00e2":10,"\u00e4":10,"\u00e6":10,"\u00e0":10,"\u0101":10,"\u0105":10,"\u00e5":10,"\u00e3":10,"d":20,"g":20,"q":20,"\u010f":20,"\u0111":20,"\u011f":20,"\u0123":20,"\u0121":20,"c":20,"e":20,"o":20,"\u0107":20,"\u010d":20,"\u00e7":20,"\u010b":20,"\u00e9":20,"\u0115":20,"\u011b":20,"\u00ea":20,"\u00eb":20,"\u0117":20,"\u00e8":20,"\u0113":20,"\u0119":20,"\u00f0":20,"\u00f3":20,"\u014f":20,"\u00f4":20,"\u00f6":20,"\u0153":20,"\u00f2":20,"\u0151":20,"\u014d":20,"\u00f8":20,"\u00f5":20,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"s":15,"\u015b":15,"\u0161":15,"\u015f":15}},{"d":"94,-643r0,-67r61,0r0,67r-61,0xm100,0r0,-510r49,0r0,510r-49,0","w":249},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0xm200,-791r0,-49r310,0r0,49r-310,0","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"421,12v-200,0,-348,-159,-348,-360r0,-2v0,-198,148,-362,350,-362v125,0,200,46,272,112r-37,38v-61,-59,-131,-103,-236,-103v-168,0,-295,137,-295,313r0,2v0,177,129,315,296,315v101,0,170,-39,241,-109r35,34v-74,73,-154,122,-278,122","w":738,"k":{"v":10,"X":10,"x":10,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"-":10}},{"d":"20,0r424,-700r533,0r0,48r-431,0r0,275r386,0r0,48r-386,0r0,281r436,0r0,48r-488,0r0,-196r-300,0r-118,196r-56,0xm222,-243r272,0r0,-410r-26,0","w":1045,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"341,10v-112,0,-198,-37,-282,-112r34,-39v77,71,148,104,251,104v105,0,177,-59,177,-139r0,-2v0,-74,-39,-117,-198,-149v-168,-34,-236,-91,-236,-197r0,-2v0,-104,95,-184,225,-184v102,0,169,28,240,85r-33,41v-66,-57,-132,-79,-209,-79v-103,0,-171,59,-171,132r0,2v0,74,38,119,204,153v162,33,230,91,230,193r0,2v0,113,-97,191,-232,191","w":640,"k":{"V":30,"\\":20,"?":10,"v":15,"X":25,"x":15,"T":15,"\u0164":15,"\u0162":15,"W":25,"\u0174":25,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"w":10,"\u0175":10,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00c6":15,"A":15,"\u00c1":15,"\u0102":15,"\u00c2":15,"\u00c4":15,"\u00c0":15,"\u0100":15,"\u0104":15,"\u00c5":15,"\u00c3":15,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"f":5,"t":5,"\u0165":5,"\u0163":5,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"249,10v-104,0,-169,-54,-212,-131r43,-27v43,73,90,111,172,111v86,0,152,-65,152,-187r0,-476r52,0r0,472v0,81,-25,143,-64,182v-37,37,-87,56,-143,56","w":549,"k":{"J":20,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"104,0r0,-700r289,0v79,0,143,23,182,62v29,29,45,66,45,110r0,2v0,95,-62,143,-119,166v84,22,158,70,158,167r0,2v0,117,-100,191,-251,191r-304,0xm156,-377r231,0v105,0,180,-51,180,-144r0,-2v0,-77,-63,-129,-175,-129r-236,0r0,275xm156,-48r254,0v120,0,196,-55,196,-143r0,-2v0,-86,-75,-136,-213,-136r-237,0r0,281","w":722,"k":{"?":5,"v":10,"X":20,"V":20,"T":20,"\u0164":20,"\u0162":20,"W":15,"\u0174":15,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10}},{"d":"59,-509r0,-45r75,0r0,-146r52,0r0,146r448,0r0,-146r52,0r0,146r75,0r0,45r-75,0r0,509r-52,0r0,-323r-448,0r0,323r-52,0r0,-509r-75,0xm186,-371r448,0r0,-138r-448,0r0,138","w":820},{"d":"317,162v-85,0,-164,-26,-234,-78r29,-40v61,47,131,72,206,72v117,0,200,-67,200,-198r0,-74v-44,63,-112,118,-213,118v-123,0,-245,-94,-245,-240r0,-2v0,-147,122,-242,245,-242v102,0,171,54,213,114r0,-102r49,0r0,431v0,74,-24,132,-65,173v-44,44,-110,68,-185,68xm310,-85v106,0,211,-78,211,-194r0,-2v0,-118,-105,-194,-211,-194v-107,0,-197,74,-197,193r0,2v0,115,92,195,197,195xm332,-593v-74,0,-128,-42,-133,-112r39,0v12,37,42,64,94,64v52,0,82,-27,94,-64r39,0v-5,70,-59,112,-133,112","w":660,"k":{"\\":50}},{"d":"121,128r0,-926r44,0r0,926r-44,0","w":286},{"d":"437,164v-83,-3,-126,-33,-126,-79v0,-28,14,-51,40,-76v-153,-11,-258,-115,-258,-300r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,191,-106,297,-262,307v-30,26,-44,44,-44,69v0,28,20,44,76,49r0,36","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"104,0r0,-700r49,0r281,414r281,-414r49,0r0,700r-52,0r0,-608r-277,403r-4,0r-277,-403r0,608r-50,0","w":868},{"d":"304,-42r-37,-24r137,-188r-137,-190r37,-24r160,209r0,8xm100,-42r-37,-24r137,-188r-137,-190r37,-24r160,209r0,8","w":515,"k":{"V":60,"v":30,"X":50,"x":45,"T":90,"\u0164":90,"\u0162":90,"W":50,"\u0174":50,"Y":100,"\u00dd":100,"\u0176":100,"\u0178":100,"w":20,"\u0175":20,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00c6":20,"A":20,"\u00c1":20,"\u0102":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u0100":20,"\u0104":20,"\u00c5":20,"\u00c3":20,"Z":15,"\u0179":15,"\u017d":15,"\u017b":15,"s":10,"\u015b":10,"\u0161":10,"\u015f":10,"z":20,"\u017a":20,"\u017e":20,"\u017c":20,"f":10,"t":10,"\u0165":10,"\u0163":10,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308xm225,-786r0,-49r310,0r0,49r-310,0","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"476,-697r-88,44v109,106,192,228,192,372r0,2v0,174,-108,291,-265,291v-144,0,-257,-121,-257,-267r0,-2v0,-153,120,-253,246,-253v92,0,156,42,200,86v-28,-66,-86,-137,-161,-206r-110,55r-22,-36r99,-49v-27,-24,-56,-47,-86,-70r77,0v18,15,37,31,54,47r99,-50xm320,-34v120,0,207,-95,207,-220r0,-2v0,-120,-89,-210,-217,-210v-119,0,-199,91,-199,212r0,2v0,119,91,218,209,218","w":639},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117xm287,-593v-74,0,-128,-42,-133,-112r39,0v12,37,42,64,94,64v52,0,82,-27,94,-64r39,0v-5,70,-59,112,-133,112","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308xm308,-878r93,118r-45,0r-107,-90","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"103,-621r0,-47r294,0r0,47r-294,0","w":500},{"d":"332,0r0,-277r-300,-423r65,0r262,376r263,-376r62,0r-300,422r0,278r-52,0xm410,-760r0,-76r73,0r0,76r-73,0xm234,-760r0,-76r74,0r0,76r-74,0","w":716,"k":{"V":20,"v":60,"X":20,"x":70,"J":130,"\/":110,"&":70,"j":20,"W":20,"\u0174":20,"w":55,"\u0175":55,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"\u00c6":110,"A":110,"\u00c1":110,"\u0102":110,"\u00c2":110,"\u00c4":110,"\u00c0":110,"\u0100":110,"\u0104":110,"\u00c5":110,"\u00c3":110,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"\u00bb":75,".":130,",":130,"a":100,"\u00e1":100,"\u0103":100,"\u00e2":100,"\u00e4":100,"\u00e6":100,"\u00e0":100,"\u0101":100,"\u0105":100,"\u00e5":100,"\u00e3":100,"d":105,"g":105,"q":105,"\u010f":105,"\u0111":105,"\u011f":105,"\u0123":105,"\u0121":105,"c":110,"e":110,"o":110,"\u0107":110,"\u010d":110,"\u00e7":110,"\u010b":110,"\u00e9":110,"\u0115":110,"\u011b":110,"\u00ea":110,"\u00eb":110,"\u0117":110,"\u00e8":110,"\u0113":110,"\u0119":110,"\u00f0":110,"\u00f3":110,"\u014f":110,"\u00f4":110,"\u00f6":110,"\u0153":110,"\u00f2":110,"\u0151":110,"\u014d":110,"\u00f8":110,"\u00f5":110,"C":60,"G":60,"O":60,"Q":60,"\u0106":60,"\u010c":60,"\u00c7":60,"\u010a":60,"\u011e":60,"\u0122":60,"\u0120":60,"\u00d3":60,"\u014e":60,"\u00d4":60,"\u00d6":60,"\u0152":60,"\u00d2":60,"\u0150":60,"\u014c":60,"\u00d8":60,"\u00d5":60,"s":100,"\u015b":100,"\u0161":100,"\u015f":100,"z":80,"\u017a":80,"\u017e":80,"\u017c":80,"\u00ab":100,"f":40,"t":30,"\u0165":30,"\u0163":30,"u":75,"\u00fa":75,"\u016d":75,"\u00fb":75,"\u00fc":75,"\u00f9":75,"\u0171":75,"\u016b":75,"\u0173":75,"\u016f":75,"S":35,"\u015a":35,"\u0160":35,"\u015e":35,":":40,";":40,"-":80,"b":10,"h":10,"k":10,"l":10,"\u0137":10,"\u013a":10,"\u013e":10,"\u013c":10,"\u0140":10,"m":75,"n":75,"p":75,"r":75,"\u0144":75,"\u0148":75,"\u0146":75,"\u00f1":75,"\u0155":75,"\u0159":75,"\u0157":75,"i":20,"\u00ed":20,"\u012d":20,"\u00ee":20,"\u00ef":20,"\u00ec":20,"\u012b":20,"\u012f":20}},{"d":"333,-618r0,-45r185,0r0,-67r49,0r0,67r70,0r0,45r-70,0r0,618r-49,0r0,-114v-44,67,-109,126,-210,126v-123,0,-248,-99,-248,-265r0,-2v0,-166,125,-267,248,-267v102,0,168,58,210,122r0,-218r-185,0xm313,-35v106,0,208,-89,208,-219r0,-2v0,-131,-102,-219,-208,-219v-111,0,-200,81,-200,218r0,2v0,134,93,220,200,220","w":660},{"d":"111,0r0,-700r52,0r0,700r-52,0xm99,-765r0,-76r76,0r0,76r-76,0","w":274},{"d":"785,-19r-37,40r-99,-89v-59,50,-136,80,-225,80v-212,0,-351,-169,-351,-360r0,-2v0,-191,141,-362,353,-362v212,0,351,169,351,360r0,2v0,93,-33,181,-92,247xm426,-35v72,0,136,-24,186,-66r-136,-116r37,-41r134,122v48,-55,76,-130,76,-212r0,-2v0,-173,-126,-315,-299,-315v-173,0,-297,140,-297,313r0,2v0,173,126,315,299,315","w":850,"k":{")":10,"?":20,"V":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":65,"\u00dd":65,"\u0176":65,"\u0178":65}},{"d":"315,10v-147,0,-260,-81,-260,-197r0,-2v0,-82,67,-144,155,-173v-69,-28,-131,-80,-131,-163r0,-2v0,-109,115,-183,236,-183v121,0,236,74,236,183r0,2v0,83,-62,135,-131,163v88,29,155,91,155,173r0,2v0,116,-113,197,-260,197xm315,-381v99,0,182,-58,182,-144r0,-2v0,-79,-80,-136,-182,-136v-102,0,-182,57,-182,136r0,2v0,86,83,144,182,144xm315,-37v129,0,206,-69,206,-148r0,-2v0,-87,-92,-150,-206,-150v-114,0,-206,63,-206,150r0,2v0,79,77,148,206,148","w":630,"k":{"9":5,"7":10}},{"d":"542,-358r-207,0r0,203r-50,0r0,-203r-207,0r0,-48r207,0r0,-203r50,0r0,203r207,0r0,48xm542,0r-464,0r0,-48r464,0r0,48","w":620},{"d":"44,0r326,-705r50,0r326,705r-57,0r-89,-196r-413,0r-89,196r-54,0xm209,-243r369,0r-184,-405xm323,-893r93,118r-45,0r-107,-90","w":790},{"d":"610,-234r0,47r-137,0r-32,187r-48,0r32,-187r-207,0r-32,187r-48,0r32,-187r-121,0r0,-47r129,0r40,-236r-129,0r0,-47r137,0r32,-183r48,0r-31,183r207,0r31,-183r48,0r-32,183r121,0r0,47r-129,0r-40,236r129,0xm266,-470r-40,236r207,0r40,-236r-207,0","w":700},{"d":"155,163v-39,0,-67,-7,-101,-22r17,-43v27,13,49,19,87,19v53,0,88,-31,126,-120r-245,-507r57,0r212,456r184,-456r54,0r-221,528v-45,107,-97,145,-170,145","w":588,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":70,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"\u00bb":15,".":85,",":85,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":30,"e":30,"o":30,"\u0107":30,"\u010d":30,"\u00e7":30,"\u010b":30,"\u00e9":30,"\u0115":30,"\u011b":30,"\u00ea":30,"\u00eb":30,"\u0117":30,"\u00e8":30,"\u0113":30,"\u0119":30,"\u00f0":30,"\u00f3":30,"\u014f":30,"\u00f4":30,"\u00f6":30,"\u0153":30,"\u00f2":30,"\u0151":30,"\u014d":30,"\u00f8":30,"\u00f5":30,"s":20,"\u015b":20,"\u0161":20,"\u015f":20,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"\u00ab":30,"-":15}},{"d":"258,10v-74,0,-155,-30,-209,-74r29,-39v56,43,118,67,183,67v69,0,123,-38,123,-97r0,-2v0,-60,-64,-82,-135,-102v-83,-24,-175,-49,-175,-140r0,-2v0,-82,69,-141,168,-141v61,0,130,22,181,56r-26,41v-47,-31,-103,-51,-157,-51v-70,0,-116,38,-116,89r0,2v0,57,69,78,142,99v82,23,168,53,168,143r0,2v0,91,-78,149,-176,149","w":497,"k":{"\\":75,"?":35,"v":20,"x":25,"}":10,"]":15,")":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"s":10,"\u015b":10,"\u0161":10,"\u015f":10,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":10,"t":10,"\u0165":10,"\u0163":10}},{"d":"104,0r0,-700r52,0r0,652r411,0r0,48r-463,0xm117,-765r93,-118r59,28r-107,90r-45,0","w":619,"k":{"V":115,"*":80,"\\":120,"?":60,"v":60,"&":10,"T":100,"\u0164":100,"\u0162":100,"W":100,"\u0174":100,"Y":130,"\u00dd":130,"\u0176":130,"\u0178":130,"w":50,"\u0175":50,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"f":20,"t":20,"\u0165":20,"\u0163":20,"-":40,"U":20,"\u00da":20,"\u016c":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"\u0170":20,"\u016a":20,"\u0172":20,"\u016e":20,"\u00ae":90}},{"d":"87,-425r0,-85r66,0r0,85r-66,0xm87,0r0,-85r66,0r0,85r-66,0","w":240,"k":{"V":20,"T":50,"\u0164":50,"\u0162":50,"W":15,"\u0174":15,"Y":40,"\u00dd":40,"\u0176":40,"\u0178":40}},{"d":"93,0r0,-730r49,0r0,547r316,-327r65,0r-223,226r230,284r-62,0r-202,-249r-124,125r0,124r-49,0","w":560,"k":{"\\":40,"v":20,"w":20,"\u0175":20,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00bb":10,"a":10,"\u00e1":10,"\u0103":10,"\u00e2":10,"\u00e4":10,"\u00e6":10,"\u00e0":10,"\u0101":10,"\u0105":10,"\u00e5":10,"\u00e3":10,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"\u00ab":20,"t":10,"\u0165":10,"\u0163":10,"u":10,"\u00fa":10,"\u016d":10,"\u00fb":10,"\u00fc":10,"\u00f9":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"-":20}},{"d":"93,0r0,-510r49,0r0,145v40,-91,125,-157,226,-153r0,54r-5,0v-118,0,-221,89,-221,255r0,209r-49,0xm71,225r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":400,"k":{"*":-20,"\\":30,"\/":75,".":90,",":90,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":10}},{"d":"100,0r0,-510r49,0r0,510r-49,0xm103,-595r-107,-103r61,-30r88,133r-42,0","w":249},{"d":"527,-91r-464,-241r0,-40r464,-241r0,54r-403,206r403,208r0,54","w":620},{"d":"51,0r278,-357r-268,-343r62,0r239,309r238,-309r61,0r-269,343r279,357r-62,0r-249,-323r-248,323r-61,0","w":722,"k":{"?":15,"&":10,"v":50,"j":10,"V":20,"J":10,"W":15,"\u0174":15,"Y":20,"\u00dd":20,"\u0176":20,"\u0178":20,"w":40,"\u0175":40,"y":40,"\u00fd":40,"\u0177":40,"\u00ff":40,"\u00bb":20,"a":10,"\u00e1":10,"\u0103":10,"\u00e2":10,"\u00e4":10,"\u00e6":10,"\u00e0":10,"\u0101":10,"\u0105":10,"\u00e5":10,"\u00e3":10,"d":40,"g":40,"q":40,"\u010f":40,"\u0111":40,"\u011f":40,"\u0123":40,"\u0121":40,"c":45,"e":45,"o":45,"\u0107":45,"\u010d":45,"\u00e7":45,"\u010b":45,"\u00e9":45,"\u0115":45,"\u011b":45,"\u00ea":45,"\u00eb":45,"\u0117":45,"\u00e8":45,"\u0113":45,"\u0119":45,"\u00f0":45,"\u00f3":45,"\u014f":45,"\u00f4":45,"\u00f6":45,"\u0153":45,"\u00f2":45,"\u0151":45,"\u014d":45,"\u00f8":45,"\u00f5":45,"C":50,"G":50,"O":50,"Q":50,"\u0106":50,"\u010c":50,"\u00c7":50,"\u010a":50,"\u011e":50,"\u0122":50,"\u0120":50,"\u00d3":50,"\u014e":50,"\u00d4":50,"\u00d6":50,"\u0152":50,"\u00d2":50,"\u0150":50,"\u014c":50,"\u00d8":50,"\u00d5":50,"\u00ab":50,"f":20,"t":20,"\u0165":20,"\u0163":20,"u":20,"\u00fa":20,"\u016d":20,"\u00fb":20,"\u00fc":20,"\u00f9":20,"\u0171":20,"\u016b":20,"\u0173":20,"\u016f":20,"S":30,"\u015a":30,"\u0160":30,"\u015e":30,"-":50,"b":10,"h":10,"k":10,"l":10,"\u0137":10,"\u013a":10,"\u013e":10,"\u013c":10,"\u0140":10,"i":10,"\u00ed":10,"\u012d":10,"\u00ee":10,"\u00ef":10,"\u00ec":10,"\u012b":10,"\u012f":10,"U":10,"\u00da":10,"\u016c":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10}},{"d":"332,0r0,-277r-300,-423r65,0r262,376r263,-376r62,0r-300,422r0,278r-52,0xm337,-760r93,-118r59,28r-107,90r-45,0","w":716,"k":{"V":20,"v":60,"X":20,"x":70,"J":130,"\/":110,"&":70,"j":20,"W":20,"\u0174":20,"w":55,"\u0175":55,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"\u00c6":110,"A":110,"\u00c1":110,"\u0102":110,"\u00c2":110,"\u00c4":110,"\u00c0":110,"\u0100":110,"\u0104":110,"\u00c5":110,"\u00c3":110,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"\u00bb":75,".":130,",":130,"a":100,"\u00e1":100,"\u0103":100,"\u00e2":100,"\u00e4":100,"\u00e6":100,"\u00e0":100,"\u0101":100,"\u0105":100,"\u00e5":100,"\u00e3":100,"d":105,"g":105,"q":105,"\u010f":105,"\u0111":105,"\u011f":105,"\u0123":105,"\u0121":105,"c":110,"e":110,"o":110,"\u0107":110,"\u010d":110,"\u00e7":110,"\u010b":110,"\u00e9":110,"\u0115":110,"\u011b":110,"\u00ea":110,"\u00eb":110,"\u0117":110,"\u00e8":110,"\u0113":110,"\u0119":110,"\u00f0":110,"\u00f3":110,"\u014f":110,"\u00f4":110,"\u00f6":110,"\u0153":110,"\u00f2":110,"\u0151":110,"\u014d":110,"\u00f8":110,"\u00f5":110,"C":60,"G":60,"O":60,"Q":60,"\u0106":60,"\u010c":60,"\u00c7":60,"\u010a":60,"\u011e":60,"\u0122":60,"\u0120":60,"\u00d3":60,"\u014e":60,"\u00d4":60,"\u00d6":60,"\u0152":60,"\u00d2":60,"\u0150":60,"\u014c":60,"\u00d8":60,"\u00d5":60,"s":100,"\u015b":100,"\u0161":100,"\u015f":100,"z":80,"\u017a":80,"\u017e":80,"\u017c":80,"\u00ab":100,"f":40,"t":30,"\u0165":30,"\u0163":30,"u":75,"\u00fa":75,"\u016d":75,"\u00fb":75,"\u00fc":75,"\u00f9":75,"\u0171":75,"\u016b":75,"\u0173":75,"\u016f":75,"S":35,"\u015a":35,"\u0160":35,"\u015e":35,":":40,";":40,"-":80,"b":10,"h":10,"k":10,"l":10,"\u0137":10,"\u013a":10,"\u013e":10,"\u013c":10,"\u0140":10,"m":75,"n":75,"p":75,"r":75,"\u0144":75,"\u0148":75,"\u0146":75,"\u00f1":75,"\u0155":75,"\u0159":75,"\u0157":75,"i":20,"\u00ed":20,"\u012d":20,"\u00ee":20,"\u00ef":20,"\u00ec":20,"\u012b":20,"\u012f":20}},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117xm266,-595r88,-133r61,30r-107,103r-42,0","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm300,-593v-74,0,-128,-42,-133,-112r39,0v12,37,42,64,94,64v52,0,82,-27,94,-64r39,0v-5,70,-59,112,-133,112","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"464,0r-180,-227r-180,227r-59,0r208,-260r-200,-250r61,0r171,216r173,-216r59,0r-201,249r209,261r-61,0","w":570,"k":{"}":10,"]":10,"\\":50,"?":15,"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"\u00bb":15,"a":15,"\u00e1":15,"\u0103":15,"\u00e2":15,"\u00e4":15,"\u00e6":15,"\u00e0":15,"\u0101":15,"\u0105":15,"\u00e5":15,"\u00e3":15,"d":30,"g":30,"q":30,"\u010f":30,"\u0111":30,"\u011f":30,"\u0123":30,"\u0121":30,"c":35,"e":35,"o":35,"\u0107":35,"\u010d":35,"\u00e7":35,"\u010b":35,"\u00e9":35,"\u0115":35,"\u011b":35,"\u00ea":35,"\u00eb":35,"\u0117":35,"\u00e8":35,"\u0113":35,"\u0119":35,"\u00f0":35,"\u00f3":35,"\u014f":35,"\u00f4":35,"\u00f6":35,"\u0153":35,"\u00f2":35,"\u0151":35,"\u014d":35,"\u00f8":35,"\u00f5":35,"s":20,"\u015b":20,"\u0161":20,"\u015f":20,"\u00ab":45,"-":30}},{"d":"93,-91r0,-54r403,-206r-403,-208r0,-54r464,241r0,40","w":620},{"d":"93,0r0,-510r49,0r0,95v34,-60,91,-107,184,-107v129,0,204,88,204,210r0,312r-49,0r0,-303v0,-105,-59,-174,-162,-174v-100,0,-177,76,-177,182r0,295r-49,0xm431,-717r-100,122r-40,0r-100,-122r47,0r74,68r74,-68r45,0","k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15}},{"d":"100,0r0,-730r49,0r0,730r-49,0xm103,-788r93,-118r59,28r-107,90r-45,0","w":249},{"d":"104,0r0,-700r49,0r483,609r0,-609r50,0r0,700r-39,0r-493,-622r0,622r-50,0xm340,220r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":790},{"d":"304,5r-254,-705r58,0r220,623r205,-625r40,0r205,625r220,-623r54,0r-254,705r-42,0r-205,-608r-205,608r-42,0","w":1102,"k":{"V":10,"v":35,"X":15,"x":40,"J":105,"\/":100,"&":45,"j":15,"W":10,"\u0174":10,"Y":20,"\u00dd":20,"\u0176":20,"\u0178":20,"w":35,"\u0175":35,"y":35,"\u00fd":35,"\u0177":35,"\u00ff":35,"\u00c6":90,"A":90,"\u00c1":90,"\u0102":90,"\u00c2":90,"\u00c4":90,"\u00c0":90,"\u0100":90,"\u0104":90,"\u00c5":90,"\u00c3":90,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"\u00bb":35,".":100,",":100,"a":70,"\u00e1":70,"\u0103":70,"\u00e2":70,"\u00e4":70,"\u00e6":70,"\u00e0":70,"\u0101":70,"\u0105":70,"\u00e5":70,"\u00e3":70,"d":60,"g":60,"q":60,"\u010f":60,"\u0111":60,"\u011f":60,"\u0123":60,"\u0121":60,"c":65,"e":65,"o":65,"\u0107":65,"\u010d":65,"\u00e7":65,"\u010b":65,"\u00e9":65,"\u0115":65,"\u011b":65,"\u00ea":65,"\u00eb":65,"\u0117":65,"\u00e8":65,"\u0113":65,"\u0119":65,"\u00f0":65,"\u00f3":65,"\u014f":65,"\u00f4":65,"\u00f6":65,"\u0153":65,"\u00f2":65,"\u0151":65,"\u014d":65,"\u00f8":65,"\u00f5":65,"C":35,"G":35,"O":35,"Q":35,"\u0106":35,"\u010c":35,"\u00c7":35,"\u010a":35,"\u011e":35,"\u0122":35,"\u0120":35,"\u00d3":35,"\u014e":35,"\u00d4":35,"\u00d6":35,"\u0152":35,"\u00d2":35,"\u0150":35,"\u014c":35,"\u00d8":35,"\u00d5":35,"s":60,"\u015b":60,"\u0161":60,"\u015f":60,"z":55,"\u017a":55,"\u017e":55,"\u017c":55,"\u00ab":50,"f":30,"t":25,"\u0165":25,"\u0163":25,"u":35,"\u00fa":35,"\u016d":35,"\u00fb":35,"\u00fc":35,"\u00f9":35,"\u0171":35,"\u016b":35,"\u0173":35,"\u016f":35,"S":20,"\u015a":20,"\u0160":20,"\u015e":20,":":15,";":15,"-":35,"b":10,"h":10,"k":10,"l":10,"\u0137":10,"\u013a":10,"\u013e":10,"\u013c":10,"\u0140":10,"m":35,"n":35,"p":35,"r":35,"\u0144":35,"\u0148":35,"\u0146":35,"\u00f1":35,"\u0155":35,"\u0159":35,"\u0157":35,"i":15,"\u00ed":15,"\u012d":15,"\u00ee":15,"\u00ef":15,"\u00ec":15,"\u012b":15,"\u012f":15}},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"194,-595r88,-133r61,30r-107,103r-42,0","w":500},{"d":"104,0r0,-700r52,0r0,652r411,0r0,48r-463,0xm257,-551r17,-149r61,0r0,3r-49,146r-29,0","w":619,"k":{"V":115,"*":80,"\\":120,"?":60,"v":60,"&":10,"T":100,"\u0164":100,"\u0162":100,"W":100,"\u0174":100,"Y":130,"\u00dd":130,"\u0176":130,"\u0178":130,"w":50,"\u0175":50,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"f":20,"t":20,"\u0165":20,"\u0163":20,"-":40,"U":20,"\u00da":20,"\u016c":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"\u0170":20,"\u016a":20,"\u0172":20,"\u016e":20,"\u00ae":90}},{"d":"327,-618r-185,0r0,203v34,-60,91,-107,184,-107v129,0,204,88,204,210r0,312r-49,0r0,-303v0,-105,-59,-174,-162,-174v-100,0,-177,76,-177,182r0,295r-49,0r0,-618r-70,0r0,-45r70,0r0,-67r49,0r0,67r185,0r0,45","k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15}},{"d":"302,12v-95,0,-184,-51,-245,-113r37,-37v63,63,136,103,210,103v111,0,188,-78,188,-176r0,-2v0,-97,-79,-166,-192,-166v-65,0,-114,20,-158,44r-40,-26r20,-339r393,0r0,50r-347,0r-17,262v45,-22,90,-38,155,-38v135,0,240,86,240,211r0,2v0,132,-103,225,-244,225","w":605,"k":{"\/":20,"9":5,"7":30,"3":5,"2":10}},{"d":"44,0r326,-705r50,0r326,705r-57,0r-89,-196r-413,0r-89,196r-54,0xm209,-243r369,0r-184,-405","w":790},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221xm173,-621r0,-47r294,0r0,47r-294,0","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"93,160r0,-670r49,0r0,114v44,-67,109,-126,210,-126v123,0,248,99,248,265r0,2v0,166,-125,267,-248,267v-102,0,-168,-58,-210,-122r0,270r-49,0xm347,-35v111,0,200,-81,200,-218r0,-2v0,-134,-93,-220,-200,-220v-106,0,-208,89,-208,219r0,2v0,131,102,219,208,219","w":660,"k":{"*":15,"\\":70,"?":35,"v":25,"x":30,"}":15,"]":20,")":30,"w":20,"\u0175":20,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,"\u00bb":5,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"44,0r326,-705r50,0r326,705r-57,0r-89,-196r-413,0r-89,196r-54,0xm209,-243r369,0r-184,-405xm287,-766r-37,-10v19,-64,44,-88,82,-88v38,0,94,38,126,38v24,0,35,-12,50,-46r37,10v-19,64,-44,87,-82,87v-38,0,-94,-38,-126,-38v-24,0,-35,12,-50,47","w":790},{"d":"64,141r-7,-32v153,-39,169,-76,169,-177r0,-75v0,-89,41,-125,104,-144v-67,-22,-104,-55,-104,-144r0,-75v0,-101,-16,-138,-169,-177r7,-32v179,34,211,99,211,203r0,79v0,78,26,127,120,127r26,0r0,38r-26,0v-94,0,-120,49,-120,127r0,79v0,104,-32,169,-211,203","w":480},{"d":"425,12v-221,0,-352,-163,-352,-360r0,-2v0,-189,137,-362,346,-362v114,0,186,34,256,92r-34,39v-55,-48,-119,-84,-225,-84v-170,0,-289,144,-289,313r0,2v0,181,113,316,300,316v89,0,172,-37,223,-80r0,-201r-234,0r0,-48r284,0r0,270v-63,56,-161,105,-275,105xm412,-773v-74,0,-128,-37,-133,-100r44,0v11,32,40,52,89,52v49,0,78,-20,89,-52r44,0v-5,63,-59,100,-133,100","w":784,"k":{"V":20,"\\":15,"?":10,"v":5,"X":10,"T":20,"\u0164":20,"\u0162":20,"W":15,"\u0174":15,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"a":-10,"\u00e1":-10,"\u0103":-10,"\u00e2":-10,"\u00e4":-10,"\u00e6":-10,"\u00e0":-10,"\u0101":-10,"\u0105":-10,"\u00e5":-10,"\u00e3":-10}},{"d":"100,0r0,-730r49,0r0,730r-49,0","w":249},{"d":"58,0r0,-28r368,-438r-354,0r0,-44r427,0r0,28r-368,438r368,0r0,44r-441,0","w":554,"k":{"\\":45,"d":15,"g":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":15}},{"d":"289,2r0,-43v132,-3,215,-52,215,-146r0,-2v0,-90,-83,-139,-215,-153r0,-41v98,-30,170,-84,170,-175r0,-2v0,-76,-61,-131,-149,-131v-97,0,-168,74,-168,191r0,500r-49,0r0,-500v0,-139,85,-237,220,-237v120,0,199,77,199,175r0,2v0,97,-79,162,-157,190v105,18,202,71,202,179r0,2v0,120,-103,191,-268,191","w":620,"k":{"x":10,"v":10,"w":5,"\u0175":5,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10}},{"d":"44,0r326,-705r50,0r326,705r-57,0r-89,-196r-413,0r-89,196r-54,0xm209,-243r369,0r-184,-405xm395,-773v-74,0,-128,-37,-133,-100r44,0v11,32,40,52,89,52v49,0,78,-20,89,-52r44,0v-5,63,-59,100,-133,100","w":790},{"d":"318,12v-147,0,-260,-122,-260,-265r0,-2v0,-143,114,-267,260,-267v96,0,156,44,204,94r-35,36v-44,-45,-94,-84,-170,-84v-116,0,-206,97,-206,219r0,2v0,123,93,221,210,221v72,0,128,-37,171,-85r34,30v-52,59,-114,101,-208,101","w":571,"k":{"\\":40,"?":15,"v":5,"x":10,")":15,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"\u00bb":-10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":10}},{"d":"318,12v-147,0,-260,-122,-260,-265r0,-2v0,-143,114,-267,260,-267v96,0,156,44,204,94r-35,36v-44,-45,-94,-84,-170,-84v-116,0,-206,97,-206,219r0,2v0,123,93,221,210,221v72,0,128,-37,171,-85r34,30v-52,59,-114,101,-208,101xm433,-717r-100,122r-40,0r-100,-122r47,0r74,68r74,-68r45,0","w":571,"k":{"\\":40,"?":15,"v":5,"x":10,")":15,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"\u00bb":-10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":10}},{"d":"285,-113r0,-215r-217,0r0,-48r217,0r0,-215r50,0r0,215r217,0r0,48r-217,0r0,215r-50,0","w":620},{"d":"263,9v-79,0,-143,-43,-143,-140r0,-334r-74,0r0,-45r74,0r0,-163r49,0r0,163r179,0r0,45r-179,0r0,329v0,73,43,99,102,99v25,0,46,-5,75,-18r0,46v-26,12,-51,18,-83,18","w":400,"k":{"\\":40,"d":15,"g":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":10}},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308xm254,-760r103,-107r46,0r103,107r-54,0r-73,-61r-73,61r-52,0","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"425,12v-221,0,-352,-163,-352,-360r0,-2v0,-189,137,-362,346,-362v114,0,186,34,256,92r-34,39v-55,-48,-119,-84,-225,-84v-170,0,-289,144,-289,313r0,2v0,181,113,316,300,316v89,0,172,-37,223,-80r0,-201r-234,0r0,-48r284,0r0,270v-63,56,-161,105,-275,105xm374,-775r0,-76r76,0r0,76r-76,0","w":784,"k":{"V":20,"\\":15,"?":10,"v":5,"X":10,"T":20,"\u0164":20,"\u0162":20,"W":15,"\u0174":15,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"a":-10,"\u00e1":-10,"\u0103":-10,"\u00e2":-10,"\u00e4":-10,"\u00e6":-10,"\u00e0":-10,"\u0101":-10,"\u0105":-10,"\u00e5":-10,"\u00e3":-10}},{"d":"166,164v-83,-3,-126,-33,-126,-79v0,-35,21,-62,60,-93r0,-502r49,0r0,510r-3,0v-39,31,-56,51,-56,79v0,28,20,44,76,49r0,36xm94,-643r0,-67r61,0r0,67r-61,0","w":249},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"244,-325r0,-81r72,0r0,81r-72,0xm100,0r0,-730r49,0r0,730r-49,0","w":309},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0xm317,-765r0,-76r76,0r0,76r-76,0","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"421,12v-200,0,-348,-159,-348,-360r0,-2v0,-198,148,-362,350,-362v125,0,200,46,272,112r-37,38v-61,-59,-131,-103,-236,-103v-168,0,-295,137,-295,313r0,2v0,177,129,315,296,315v101,0,170,-39,241,-109r35,34v-74,73,-154,122,-278,122xm544,-882r-103,107r-46,0r-103,-107r54,0r73,61r73,-61r52,0","w":738,"k":{"v":10,"X":10,"x":10,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"-":10}},{"d":"270,4r-229,-514r57,0r193,455r195,-455r55,0r-229,514r-42,0","w":582,"k":{"}":10,"]":20,"\\":50,"\/":70,"?":10,"x":10,"v":15,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00bb":15,".":85,",":85,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":30,"e":30,"o":30,"\u0107":30,"\u010d":30,"\u00e7":30,"\u010b":30,"\u00e9":30,"\u0115":30,"\u011b":30,"\u00ea":30,"\u00eb":30,"\u0117":30,"\u00e8":30,"\u0113":30,"\u0119":30,"\u00f0":30,"\u00f3":30,"\u014f":30,"\u00f4":30,"\u00f6":30,"\u0153":30,"\u00f2":30,"\u0151":30,"\u014d":30,"\u00f8":30,"\u00f5":30,"s":20,"\u015b":20,"\u0161":20,"\u015f":20,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"\u00ab":30,"-":15}},{"d":"68,0r0,-29r479,-624r-462,0r0,-47r536,0r0,29r-479,624r479,0r0,47r-553,0xm332,-765r93,-118r59,28r-107,90r-45,0","w":688,"k":{"v":20,"&":15,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"d":20,"g":20,"q":20,"\u010f":20,"\u0111":20,"\u011f":20,"\u0123":20,"\u0121":20,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"\u00ab":20,"f":10,"S":10,"\u015a":10,"\u0160":10,"\u015e":10,"-":30}},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm264,-595r0,-81r72,0r0,81r-72,0","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221xm299,-595r-107,-103r61,-30r88,133r-42,0","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"104,0r0,-700r52,0r0,460r446,-460r71,0r-306,309r319,391r-68,0r-288,-354r-174,176r0,178r-52,0xm307,220r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":715,"k":{"V":30,"v":60,"&":10,"T":10,"\u0164":10,"\u0162":10,"W":30,"\u0174":30,"Y":40,"\u00dd":40,"\u0176":40,"\u0178":40,"w":50,"\u0175":50,"y":50,"\u00fd":50,"\u0177":50,"\u00ff":50,"a":10,"\u00e1":10,"\u0103":10,"\u00e2":10,"\u00e4":10,"\u00e6":10,"\u00e0":10,"\u0101":10,"\u0105":10,"\u00e5":10,"\u00e3":10,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":30,"e":30,"o":30,"\u0107":30,"\u010d":30,"\u00e7":30,"\u010b":30,"\u00e9":30,"\u0115":30,"\u011b":30,"\u00ea":30,"\u00eb":30,"\u0117":30,"\u00e8":30,"\u0113":30,"\u0119":30,"\u00f0":30,"\u00f3":30,"\u014f":30,"\u00f4":30,"\u00f6":30,"\u0153":30,"\u00f2":30,"\u0151":30,"\u014d":30,"\u00f8":30,"\u00f5":30,"C":50,"G":50,"O":50,"Q":50,"\u0106":50,"\u010c":50,"\u00c7":50,"\u010a":50,"\u011e":50,"\u0122":50,"\u0120":50,"\u00d3":50,"\u014e":50,"\u00d4":50,"\u00d6":50,"\u0152":50,"\u00d2":50,"\u0150":50,"\u014c":50,"\u00d8":50,"\u00d5":50,"\u00ab":20,"f":20,"t":25,"\u0165":25,"\u0163":25,"u":20,"\u00fa":20,"\u016d":20,"\u00fb":20,"\u00fc":20,"\u00f9":20,"\u0171":20,"\u016b":20,"\u0173":20,"\u016f":20,"S":10,"\u015a":10,"\u0160":10,"\u015e":10,"-":50,"U":15,"\u00da":15,"\u016c":15,"\u00db":15,"\u00dc":15,"\u00d9":15,"\u0170":15,"\u016a":15,"\u0172":15,"\u016e":15}},{"d":"319,12v-151,0,-261,-122,-261,-265r0,-2v0,-143,111,-267,263,-267v151,0,261,122,261,265r0,2v0,143,-111,267,-263,267xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221xm299,-595r88,-133r61,30r-107,103r-42,0","w":640,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"\u0175":25,"y":30,"\u00fd":30,"\u0177":30,"\u00ff":30,"\u00bb":10,".":20,",":20,"z":20,"\u017a":20,"\u017e":20,"\u017c":20}},{"d":"111,0r0,-700r52,0r0,700r-52,0xm-18,-791r0,-49r310,0r0,49r-310,0","w":274},{"d":"104,0r0,-700r294,0v86,0,155,27,197,69v33,33,53,80,53,130r0,2v0,117,-87,184,-205,200r231,299r-66,0r-223,-290r-229,0r0,290r-52,0xm156,-337r236,0v117,0,204,-59,204,-160r0,-2v0,-94,-74,-153,-201,-153r-239,0r0,315","w":723,"k":{"V":20,"J":5,"T":10,"\u0164":10,"\u0162":10,"W":15,"\u0174":15,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"f":-10,"t":-10,"\u0165":-10,"\u0163":-10}},{"d":"104,0r0,-700r233,0v220,0,372,151,372,348r0,2v0,197,-152,350,-372,350r-233,0xm156,-48r181,0v195,0,318,-133,318,-300r0,-2v0,-166,-123,-302,-318,-302r-181,0r0,604xm501,-872r-103,107r-46,0r-103,-107r54,0r73,61r73,-61r52,0","w":782,"k":{"V":45,"\\":40,"?":20,"X":55,"x":10,"J":40,"}":20,"]":20,")":30,"\/":40,"T":55,"\u0164":55,"\u0162":55,"W":35,"\u0174":35,"Y":65,"\u00dd":65,"\u0176":65,"\u0178":65,"\u00c6":45,"A":45,"\u00c1":45,"\u0102":45,"\u00c2":45,"\u00c4":45,"\u00c0":45,"\u0100":45,"\u0104":45,"\u00c5":45,"\u00c3":45,"Z":45,"\u0179":45,"\u017d":45,"\u017b":45,".":40,",":40,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"100,0r0,-510r49,0r0,510r-49,0xm103,-595r88,-133r61,30r-107,103r-42,0","w":249},{"w":300},{"d":"352,5r-308,-705r58,0r274,644r275,-644r55,0r-308,705r-46,0","w":750,"k":{"\/":120,"&":55,"x":50,"v":40,"j":20,"X":20,"V":10,"J":120,"W":10,"\u0174":10,"Y":20,"\u00dd":20,"\u0176":20,"\u0178":20,"w":35,"\u0175":35,"y":40,"\u00fd":40,"\u0177":40,"\u00ff":40,"\u00c6":100,"A":100,"\u00c1":100,"\u0102":100,"\u00c2":100,"\u00c4":100,"\u00c0":100,"\u0100":100,"\u0104":100,"\u00c5":100,"\u00c3":100,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"\u00bb":40,".":120,",":120,"a":70,"\u00e1":70,"\u0103":70,"\u00e2":70,"\u00e4":70,"\u00e6":70,"\u00e0":70,"\u0101":70,"\u0105":70,"\u00e5":70,"\u00e3":70,"d":65,"g":65,"q":65,"\u010f":65,"\u0111":65,"\u011f":65,"\u0123":65,"\u0121":65,"c":70,"e":70,"o":70,"\u0107":70,"\u010d":70,"\u00e7":70,"\u010b":70,"\u00e9":70,"\u0115":70,"\u011b":70,"\u00ea":70,"\u00eb":70,"\u0117":70,"\u00e8":70,"\u0113":70,"\u0119":70,"\u00f0":70,"\u00f3":70,"\u014f":70,"\u00f4":70,"\u00f6":70,"\u0153":70,"\u00f2":70,"\u0151":70,"\u014d":70,"\u00f8":70,"\u00f5":70,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"s":60,"\u015b":60,"\u0161":60,"\u015f":60,"z":55,"\u017a":55,"\u017e":55,"\u017c":55,"\u00ab":60,"f":25,"t":20,"\u0165":20,"\u0163":20,"u":40,"\u00fa":40,"\u016d":40,"\u00fb":40,"\u00fc":40,"\u00f9":40,"\u0171":40,"\u016b":40,"\u0173":40,"\u016f":40,"S":25,"\u015a":25,"\u0160":25,"\u015e":25,":":20,";":20,"-":40,"b":10,"h":10,"k":10,"l":10,"\u0137":10,"\u013a":10,"\u013e":10,"\u013c":10,"\u0140":10,"m":40,"n":40,"p":40,"r":40,"\u0144":40,"\u0148":40,"\u0146":40,"\u00f1":40,"\u0155":40,"\u0159":40,"\u0157":40,"i":20,"\u00ed":20,"\u012d":20,"\u00ee":20,"\u00ef":20,"\u00ec":20,"\u012b":20,"\u012f":20}},{"d":"111,0r0,-700r52,0r0,700r-52,0xm189,-765r0,-76r73,0r0,76r-73,0xm13,-765r0,-76r74,0r0,76r-74,0","w":274},{"d":"425,12v-221,0,-352,-163,-352,-360r0,-2v0,-189,137,-362,346,-362v114,0,186,34,256,92r-34,39v-55,-48,-119,-84,-225,-84v-170,0,-289,144,-289,313r0,2v0,181,113,316,300,316v89,0,172,-37,223,-80r0,-201r-234,0r0,-48r284,0r0,270v-63,56,-161,105,-275,105xm357,225r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":784,"k":{"V":20,"\\":15,"?":10,"v":5,"X":10,"T":20,"\u0164":20,"\u0162":20,"W":15,"\u0174":15,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"a":-10,"\u00e1":-10,"\u0103":-10,"\u00e2":-10,"\u00e4":-10,"\u00e6":-10,"\u00e0":-10,"\u0101":-10,"\u0105":-10,"\u00e5":-10,"\u00e3":-10}},{"d":"374,-410r-189,90r0,272r412,0r0,48r-463,0r0,-295r-75,35r0,-53r75,-35r0,-352r51,0r0,327r189,-90r0,53","w":649,"k":{"V":115,"*":80,"\\":120,"?":60,"v":60,"&":10,"T":100,"\u0164":100,"\u0162":100,"W":100,"\u0174":100,"Y":130,"\u00dd":130,"\u0176":130,"\u0178":130,"w":50,"\u0175":50,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"f":20,"t":20,"\u0165":20,"\u0163":20,"-":40,"U":20,"\u00da":20,"\u016c":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"\u0170":20,"\u016a":20,"\u0172":20,"\u016e":20,"\u00ae":90}},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"123,0r0,-465r-74,0r0,-45r74,0r0,-50v0,-58,16,-104,45,-133v26,-26,62,-40,107,-40v31,0,53,4,76,12r0,46v-29,-9,-50,-13,-76,-13v-70,0,-103,42,-103,129r0,49r178,0r0,45r-178,0r0,465r-49,0","w":362,"k":{"*":-30,"\\":-30,"?":-35,"}":-30,"]":-20,")":-30,"\/":45,".":45,",":45,"a":15,"\u00e1":15,"\u0103":15,"\u00e2":15,"\u00e4":15,"\u00e6":15,"\u00e0":15,"\u0101":15,"\u0105":15,"\u00e5":15,"\u00e3":15,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":15,"\u00ae":-55}},{"d":"264,6r-50,0r21,-109v-101,-36,-173,-135,-173,-250r0,-2v0,-143,114,-267,260,-267r14,0r17,-84r50,0r-18,91v53,13,98,42,141,87r-35,36v-38,-39,-74,-66,-117,-77r-85,432v11,2,23,3,36,3v72,0,128,-37,171,-85r34,30v-52,59,-114,101,-208,101v-14,0,-27,-1,-39,-3xm115,-355v0,94,54,173,131,205r84,-426r-9,0v-116,0,-206,97,-206,219r0,2","w":581},{"d":"93,0r0,-730r49,0r0,547r316,-327r65,0r-223,226r230,284r-62,0r-202,-249r-124,125r0,124r-49,0xm242,225r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":560,"k":{"\\":40,"v":20,"w":20,"\u0175":20,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00bb":10,"a":10,"\u00e1":10,"\u0103":10,"\u00e2":10,"\u00e4":10,"\u00e6":10,"\u00e0":10,"\u0101":10,"\u0105":10,"\u00e5":10,"\u00e3":10,"d":25,"g":25,"q":25,"\u010f":25,"\u0111":25,"\u011f":25,"\u0123":25,"\u0121":25,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"\u00ab":20,"t":10,"\u0165":10,"\u0163":10,"u":10,"\u00fa":10,"\u016d":10,"\u00fb":10,"\u00fc":10,"\u00f9":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"-":20}},{"d":"199,148r-55,-26r78,-114v-64,-8,-128,-35,-173,-72r29,-39v56,43,118,67,183,67v69,0,123,-38,123,-97r0,-2v0,-60,-64,-82,-135,-102v-83,-24,-175,-49,-175,-140r0,-2v0,-82,69,-141,168,-141v61,0,130,22,181,56r-26,41v-47,-31,-103,-51,-157,-51v-70,0,-116,38,-116,89r0,2v0,57,69,78,142,99v82,23,168,53,168,143r0,2v0,88,-73,145,-167,149","w":497,"k":{"\\":75,"?":35,"v":20,"x":25,"}":10,"]":15,")":20,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"s":10,"\u015b":10,"\u0161":10,"\u015f":10,"z":10,"\u017a":10,"\u017e":10,"\u017c":10,"\u00ab":10,"t":10,"\u0165":10,"\u0163":10}},{"d":"255,-397r-76,43r0,354r-49,0r0,-327r-76,42r0,-53r76,-42r0,-350r49,0r0,323r76,-43r0,53","w":309},{"d":"318,12v-149,0,-260,-122,-260,-265r0,-2v0,-143,112,-267,262,-267v108,0,195,65,234,156v37,-93,118,-156,218,-156v142,0,233,116,233,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-209,96v-99,0,-188,-60,-227,-157v-39,91,-127,157,-236,157xm581,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm321,-34v121,0,208,-99,208,-219r0,-2v0,-123,-92,-221,-210,-221v-121,0,-208,99,-208,219r0,2v0,123,92,221,210,221","w":1055,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"104,0r0,-700r49,0r483,609r0,-609r50,0r0,700r-39,0r-493,-622r0,622r-50,0xm521,-867r-103,107r-46,0r-103,-107r54,0r73,61r73,-61r52,0","w":790},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0xm355,-763v-74,0,-128,-37,-133,-100r44,0v11,32,40,52,89,52v49,0,78,-20,89,-52r44,0v-5,63,-59,100,-133,100","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"100,0r0,-730r49,0r0,730r-49,0xm69,225r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":249},{"d":"58,0r0,-28r368,-438r-354,0r0,-44r427,0r0,28r-368,438r368,0r0,44r-441,0xm402,-717r-100,122r-40,0r-100,-122r47,0r74,68r74,-68r45,0","w":554,"k":{"\\":45,"d":15,"g":15,"q":15,"\u010f":15,"\u0111":15,"\u011f":15,"\u0123":15,"\u0121":15,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":15}},{"d":"367,148r-55,-26r76,-112v-183,-16,-315,-168,-315,-358r0,-2v0,-198,148,-362,350,-362v125,0,200,46,272,112r-37,38v-61,-59,-131,-103,-236,-103v-168,0,-295,137,-295,313r0,2v0,177,129,315,296,315v101,0,170,-39,241,-109r35,34v-72,71,-149,118,-265,122","w":738,"k":{"v":10,"X":10,"x":10,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"-":10}},{"d":"308,12v-123,0,-248,-99,-248,-265r0,-2v0,-166,125,-267,248,-267v102,0,168,58,210,122r0,-330r49,0r0,730r-49,0r0,-114v-44,67,-109,126,-210,126xm313,-35v106,0,208,-89,208,-219r0,-2v0,-131,-102,-219,-208,-219v-111,0,-200,81,-200,218r0,2v0,134,93,220,200,220xm637,-581r17,-149r61,0r0,3r-49,146r-29,0","w":660},{"d":"421,12v-200,0,-348,-159,-348,-360r0,-2v0,-198,148,-362,350,-362v125,0,200,46,272,112r-37,38v-61,-59,-131,-103,-236,-103v-168,0,-295,137,-295,313r0,2v0,177,129,315,296,315v101,0,170,-39,241,-109r35,34v-74,73,-154,122,-278,122xm380,-775r0,-76r76,0r0,76r-76,0","w":738,"k":{"v":10,"X":10,"x":10,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"-":10}},{"d":"421,-322r0,-81r72,0r0,81r-72,0xm104,0r0,-700r52,0r0,652r411,0r0,48r-463,0","w":619},{"d":"68,0r0,-29r479,-624r-462,0r0,-47r536,0r0,29r-479,624r479,0r0,47r-553,0xm479,-872r-103,107r-46,0r-103,-107r54,0r73,61r73,-61r52,0","w":688,"k":{"v":20,"&":15,"w":15,"\u0175":15,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"d":20,"g":20,"q":20,"\u010f":20,"\u0111":20,"\u011f":20,"\u0123":20,"\u0121":20,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"\u00ab":20,"f":10,"S":10,"\u015a":10,"\u0160":10,"\u015e":10,"-":30}},{"d":"104,0r0,-700r52,0r0,652r411,0r0,48r-463,0xm276,225r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":619,"k":{"V":115,"*":80,"\\":120,"?":60,"v":60,"&":10,"T":100,"\u0164":100,"\u0162":100,"W":100,"\u0174":100,"Y":130,"\u00dd":130,"\u0176":130,"\u0178":130,"w":50,"\u0175":50,"y":60,"\u00fd":60,"\u0177":60,"\u00ff":60,"d":5,"g":5,"q":5,"\u010f":5,"\u0111":5,"\u011f":5,"\u0123":5,"\u0121":5,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":40,"G":40,"O":40,"Q":40,"\u0106":40,"\u010c":40,"\u00c7":40,"\u010a":40,"\u011e":40,"\u0122":40,"\u0120":40,"\u00d3":40,"\u014e":40,"\u00d4":40,"\u00d6":40,"\u0152":40,"\u00d2":40,"\u0150":40,"\u014c":40,"\u00d8":40,"\u00d5":40,"f":20,"t":20,"\u0165":20,"\u0163":20,"-":40,"U":20,"\u00da":20,"\u016c":20,"\u00db":20,"\u00dc":20,"\u00d9":20,"\u0170":20,"\u016a":20,"\u0172":20,"\u016e":20,"\u00ae":90}},{"d":"104,0r0,-700r49,0r483,609r0,-609r50,0r0,700r-39,0r-493,-622r0,622r-50,0","w":790},{"d":"229,-183r-13,-162r5,-5v132,-3,208,-64,208,-160r0,-2v0,-82,-64,-151,-166,-151v-80,0,-141,39,-193,103r-36,-30v57,-71,125,-119,231,-119v132,0,217,88,217,195r0,2v0,124,-96,190,-212,204r-9,125r-32,0xm212,0r0,-85r66,0r0,85r-66,0","w":534},{"d":"111,0r0,-700r52,0r0,700r-52,0","w":274},{"d":"341,10v-112,0,-198,-37,-282,-112r34,-39v77,71,148,104,251,104v105,0,177,-59,177,-139r0,-2v0,-74,-39,-117,-198,-149v-168,-34,-236,-91,-236,-197r0,-2v0,-104,95,-184,225,-184v102,0,169,28,240,85r-33,41v-66,-57,-132,-79,-209,-79v-103,0,-171,59,-171,132r0,2v0,74,38,119,204,153v162,33,230,91,230,193r0,2v0,113,-97,191,-232,191xm307,-775r93,-118r59,28r-107,90r-45,0","w":640,"k":{"V":30,"\\":20,"?":10,"v":15,"X":25,"x":15,"T":15,"\u0164":15,"\u0162":15,"W":25,"\u0174":25,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"w":10,"\u0175":10,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00c6":15,"A":15,"\u00c1":15,"\u0102":15,"\u00c2":15,"\u00c4":15,"\u00c0":15,"\u0100":15,"\u0104":15,"\u00c5":15,"\u00c3":15,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"f":5,"t":5,"\u0165":5,"\u0163":5,"S":10,"\u015a":10,"\u0160":10,"\u015e":10}},{"d":"289,-753v0,-54,48,-95,106,-95v58,0,106,41,106,95v0,40,-26,73,-63,87r308,666r-57,0r-89,-196r-413,0r-89,196r-54,0r307,-666v-37,-14,-62,-47,-62,-87xm209,-243r369,0r-184,-405xm327,-753v0,36,30,63,68,63v38,0,68,-27,68,-63v0,-36,-30,-63,-68,-63v-38,0,-68,27,-68,63","w":790},{"d":"100,0r0,-510r49,0r0,510r-49,0xm-23,-621r0,-47r294,0r0,47r-294,0","w":249},{"d":"236,4r-187,-514r55,0r154,448r154,-450r39,0r154,450r154,-448r53,0r-187,514r-42,0r-152,-437r-153,437r-42,0","w":861,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":60,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"\u00bb":10,".":70,",":70,"a":20,"\u00e1":20,"\u0103":20,"\u00e2":20,"\u00e4":20,"\u00e6":20,"\u00e0":20,"\u0101":20,"\u0105":20,"\u00e5":20,"\u00e3":20,"d":20,"g":20,"q":20,"\u010f":20,"\u0111":20,"\u011f":20,"\u0123":20,"\u0121":20,"c":25,"e":25,"o":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"\u0119":25,"\u00f0":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u0153":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u00f8":25,"\u00f5":25,"s":15,"\u015b":15,"\u0161":15,"\u015f":15,"z":5,"\u017a":5,"\u017e":5,"\u017c":5,"\u00ab":20,"-":10}},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0xm481,-872r-103,107r-46,0r-103,-107r54,0r73,61r73,-61r52,0","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"318,12v-147,0,-260,-122,-260,-265r0,-2v0,-143,114,-267,260,-267v96,0,156,44,204,94r-35,36v-44,-45,-94,-84,-170,-84v-116,0,-206,97,-206,219r0,2v0,123,93,221,210,221v72,0,128,-37,171,-85r34,30v-52,59,-114,101,-208,101xm277,-595r0,-81r72,0r0,81r-72,0","w":571,"k":{"\\":40,"?":15,"v":5,"x":10,")":15,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"\u00bb":-10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":10}},{"d":"421,12v-200,0,-348,-159,-348,-360r0,-2v0,-198,148,-362,350,-362v125,0,200,46,272,112r-37,38v-61,-59,-131,-103,-236,-103v-168,0,-295,137,-295,313r0,2v0,177,129,315,296,315v101,0,170,-39,241,-109r35,34v-74,73,-154,122,-278,122xm397,-775r93,-118r59,28r-107,90r-45,0","w":738,"k":{"v":10,"X":10,"x":10,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"-":10}},{"d":"104,0r0,-700r493,0r0,48r-441,0r0,287r396,0r0,48r-396,0r0,317r-52,0","w":656,"k":{"\/":70,"?":-10,"&":30,"v":15,"J":110,"w":10,"\u0175":10,"y":15,"\u00fd":15,"\u0177":15,"\u00ff":15,"\u00c6":80,"A":80,"\u00c1":80,"\u0102":80,"\u00c2":80,"\u00c4":80,"\u00c0":80,"\u0100":80,"\u0104":80,"\u00c5":80,"\u00c3":80,"Z":10,"\u0179":10,"\u017d":10,"\u017b":10,"\u00bb":15,".":100,",":100,"a":25,"\u00e1":25,"\u0103":25,"\u00e2":25,"\u00e4":25,"\u00e6":25,"\u00e0":25,"\u0101":25,"\u0105":25,"\u00e5":25,"\u00e3":25,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"C":20,"G":20,"O":20,"Q":20,"\u0106":20,"\u010c":20,"\u00c7":20,"\u010a":20,"\u011e":20,"\u0122":20,"\u0120":20,"\u00d3":20,"\u014e":20,"\u00d4":20,"\u00d6":20,"\u0152":20,"\u00d2":20,"\u0150":20,"\u014c":20,"\u00d8":20,"\u00d5":20,"s":10,"\u015b":10,"\u0161":10,"\u015f":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm153,-621r0,-47r294,0r0,47r-294,0","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"100,0r0,-730r49,0r0,730r-49,0xm219,-581r17,-149r61,0r0,3r-49,146r-29,0","w":249},{"d":"425,12v-221,0,-352,-163,-352,-360r0,-2v0,-189,137,-362,346,-362v114,0,186,34,256,92r-34,39v-55,-48,-119,-84,-225,-84v-170,0,-289,144,-289,313r0,2v0,181,113,316,300,316v89,0,172,-37,223,-80r0,-201r-234,0r0,-48r284,0r0,270v-63,56,-161,105,-275,105","w":784,"k":{"V":20,"\\":15,"?":10,"v":5,"X":10,"T":20,"\u0164":20,"\u0162":20,"W":15,"\u0174":15,"Y":30,"\u00dd":30,"\u0176":30,"\u0178":30,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"a":-10,"\u00e1":-10,"\u0103":-10,"\u00e2":-10,"\u00e4":-10,"\u00e6":-10,"\u00e0":-10,"\u0101":-10,"\u0105":-10,"\u00e5":-10,"\u00e3":-10}},{"d":"104,0r0,-700r254,0v154,0,260,79,260,214r0,2v0,147,-127,223,-273,223r-189,0r0,261r-52,0xm156,-309r192,0v130,0,218,-68,218,-172r0,-2v0,-111,-86,-169,-212,-169r-198,0r0,343","w":668,"k":{"\/":60,"&":20,"v":-10,"X":30,"V":10,"J":100,"W":5,"\u0174":5,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"w":-10,"\u0175":-10,"y":-10,"\u00fd":-10,"\u0177":-10,"\u00ff":-10,"\u00c6":70,"A":70,"\u00c1":70,"\u0102":70,"\u00c2":70,"\u00c4":70,"\u00c0":70,"\u0100":70,"\u0104":70,"\u00c5":70,"\u00c3":70,"Z":15,"\u0179":15,"\u017d":15,"\u017b":15,".":100,",":100,"a":10,"\u00e1":10,"\u0103":10,"\u00e2":10,"\u00e4":10,"\u00e6":10,"\u00e0":10,"\u0101":10,"\u0105":10,"\u00e5":10,"\u00e3":10,"c":5,"e":5,"o":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"\u0119":5,"\u00f0":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u0153":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u00f8":5,"\u00f5":5,"\u00ab":-10,"f":-15,"t":-15,"\u0165":-15,"\u0163":-15,"u":-5,"\u00fa":-5,"\u016d":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"\u0171":-5,"\u016b":-5,"\u0173":-5,"\u016f":-5}},{"d":"104,0r0,-700r498,0r0,48r-446,0r0,275r401,0r0,48r-401,0r0,281r451,0r0,48r-503,0xm407,-765r0,-76r73,0r0,76r-73,0xm231,-765r0,-76r74,0r0,76r-74,0","w":670,"k":{"v":10,"w":10,"\u0175":10,"y":10,"\u00fd":10,"\u0177":10,"\u00ff":10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":10,"e":10,"o":10,"\u0107":10,"\u010d":10,"\u00e7":10,"\u010b":10,"\u00e9":10,"\u0115":10,"\u011b":10,"\u00ea":10,"\u00eb":10,"\u0117":10,"\u00e8":10,"\u0113":10,"\u0119":10,"\u00f0":10,"\u00f3":10,"\u014f":10,"\u00f4":10,"\u00f6":10,"\u0153":10,"\u00f2":10,"\u0151":10,"\u014d":10,"\u00f8":10,"\u00f5":10}},{"d":"507,164v-83,-3,-126,-33,-126,-79v0,-35,22,-63,62,-94r0,-76v-35,49,-98,97,-195,97v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-4,0v-39,31,-56,51,-56,79v0,28,20,44,76,49r0,36xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"208,-360v-98,0,-174,-79,-174,-174r0,-1v0,-95,77,-175,174,-175v98,0,174,79,174,174r0,1v0,95,-77,175,-174,175xm208,-379v87,0,154,-71,154,-156r0,-1v0,-85,-66,-155,-154,-155v-87,0,-154,71,-154,156r0,1v0,85,66,155,154,155xm143,-451r0,-175r78,0v36,0,65,19,65,54v0,29,-19,46,-43,53r49,68r-35,0r-44,-64r-42,0r0,64r-28,0xm171,-538r47,0v25,0,39,-13,39,-32v0,-21,-15,-31,-39,-31r-47,0r0,63","w":416},{"d":"100,0r0,-510r49,0r0,510r-49,0xm4,-595r100,-122r40,0r100,122r-47,0r-74,-68r-74,68r-45,0","w":249},{"d":"111,0r0,-700r52,0r0,700r-52,0xm11,-765r103,-107r46,0r103,107r-54,0r-73,-61r-73,61r-52,0","w":274},{"d":"499,162v-256,0,-446,-197,-446,-436v0,-239,193,-438,438,-438v245,0,436,185,436,396v0,171,-97,243,-182,243v-70,0,-119,-36,-136,-93v-41,51,-92,93,-171,93v-97,0,-177,-72,-177,-178v0,-143,121,-249,233,-249v81,0,126,45,149,89r14,-75r48,6r-37,211v-6,35,-9,60,-9,72v0,57,33,88,90,88v70,0,144,-62,144,-207v0,-183,-172,-364,-402,-364v-231,0,-404,183,-404,406v0,224,171,404,412,404v100,0,173,-23,250,-68r15,25v-77,47,-161,75,-265,75xm446,-120v94,0,180,-95,180,-193v0,-79,-56,-139,-132,-139v-91,0,-181,85,-181,197v0,85,55,135,133,135","w":980},{"d":"318,12v-147,0,-260,-122,-260,-265r0,-2v0,-143,114,-267,260,-267v96,0,156,44,204,94r-35,36v-44,-45,-94,-84,-170,-84v-116,0,-206,97,-206,219r0,2v0,123,93,221,210,221v72,0,128,-37,171,-85r34,30v-52,59,-114,101,-208,101xm292,-595r88,-133r61,30r-107,103r-42,0","w":571,"k":{"\\":40,"?":15,"v":5,"x":10,")":15,"w":5,"\u0175":5,"y":5,"\u00fd":5,"\u0177":5,"\u00ff":5,"\u00bb":-10,"d":10,"g":10,"q":10,"\u010f":10,"\u0111":10,"\u011f":10,"\u0123":10,"\u0121":10,"c":15,"e":15,"o":15,"\u0107":15,"\u010d":15,"\u00e7":15,"\u010b":15,"\u00e9":15,"\u0115":15,"\u011b":15,"\u00ea":15,"\u00eb":15,"\u0117":15,"\u00e8":15,"\u0113":15,"\u0119":15,"\u00f0":15,"\u00f3":15,"\u014f":15,"\u00f4":15,"\u00f6":15,"\u0153":15,"\u00f2":15,"\u0151":15,"\u014d":15,"\u00f8":15,"\u00f5":15,"\u00ab":10}},{"d":"380,11v-168,0,-287,-106,-287,-302r0,-409r52,0r0,404v0,165,89,260,237,260v142,0,233,-86,233,-255r0,-409r52,0r0,403v0,201,-117,308,-287,308xm359,-760r93,-118r59,28r-107,90r-45,0","w":760,"k":{"X":10,"x":5,"J":20,"\/":15,"\u00c6":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u00c3":25,".":15,",":15}},{"d":"331,12v-72,0,-136,-28,-178,-70v-58,-58,-89,-128,-89,-273r0,-2v0,-211,111,-379,285,-379v80,0,141,31,202,81r-33,40v-54,-48,-107,-74,-173,-74v-142,0,-234,149,-229,363v40,-68,105,-130,219,-130v127,0,241,87,241,212r0,2v0,132,-107,230,-245,230xm335,-35v113,0,187,-82,187,-181r0,-2v0,-96,-79,-168,-190,-168v-115,0,-195,87,-195,173r0,2v0,100,85,176,198,176","w":642,"k":{"\/":10,"9":10,"7":25,"3":10,"1":20}},{"d":"298,0r0,-652r-244,0r0,-48r540,0r0,48r-244,0r0,652r-52,0xm269,225r-6,-24v41,-9,58,-25,55,-56r-31,0r0,-71r72,0r0,62v0,50,-29,80,-90,89","w":648,"k":{"v":100,"x":100,"J":110,"\/":90,"&":70,"j":40,"w":100,"\u0175":100,"y":100,"\u00fd":100,"\u0177":100,"\u00ff":100,"\u00c6":90,"A":90,"\u00c1":90,"\u0102":90,"\u00c2":90,"\u00c4":90,"\u00c0":90,"\u0100":90,"\u0104":90,"\u00c5":90,"\u00c3":90,"Z":20,"\u0179":20,"\u017d":20,"\u017b":20,"\u00bb":70,".":100,",":100,"a":135,"\u00e1":135,"\u0103":135,"\u00e2":135,"\u00e4":135,"\u00e6":135,"\u00e0":135,"\u0101":135,"\u0105":135,"\u00e5":135,"\u00e3":135,"d":125,"g":125,"q":125,"\u010f":125,"\u0111":125,"\u011f":125,"\u0123":125,"\u0121":125,"c":135,"e":135,"o":135,"\u0107":135,"\u010d":135,"\u00e7":135,"\u010b":135,"\u00e9":135,"\u0115":135,"\u011b":135,"\u00ea":135,"\u00eb":135,"\u0117":135,"\u00e8":135,"\u0113":135,"\u0119":135,"\u00f0":135,"\u00f3":135,"\u014f":135,"\u00f4":135,"\u00f6":135,"\u0153":135,"\u00f2":135,"\u0151":135,"\u014d":135,"\u00f8":135,"\u00f5":135,"C":55,"G":55,"O":55,"Q":55,"\u0106":55,"\u010c":55,"\u00c7":55,"\u010a":55,"\u011e":55,"\u0122":55,"\u0120":55,"\u00d3":55,"\u014e":55,"\u00d4":55,"\u00d6":55,"\u0152":55,"\u00d2":55,"\u0150":55,"\u014c":55,"\u00d8":55,"\u00d5":55,"s":115,"\u015b":115,"\u0161":115,"\u015f":115,"z":110,"\u017a":110,"\u017e":110,"\u017c":110,"\u00ab":90,"f":50,"t":50,"\u0165":50,"\u0163":50,"u":100,"\u00fa":100,"\u016d":100,"\u00fb":100,"\u00fc":100,"\u00f9":100,"\u0171":100,"\u016b":100,"\u0173":100,"\u016f":100,"S":15,"\u015a":15,"\u0160":15,"\u015e":15,":":50,";":50,"-":90,"b":20,"h":20,"k":20,"l":20,"\u0137":20,"\u013a":20,"\u013e":20,"\u013c":20,"\u0140":20,"m":100,"n":100,"p":100,"r":100,"\u0144":100,"\u0148":100,"\u0146":100,"\u00f1":100,"\u0155":100,"\u0159":100,"\u0157":100,"i":40,"\u00ed":40,"\u012d":40,"\u00ee":40,"\u00ef":40,"\u00ec":40,"\u012b":40,"\u012f":40}},{"d":"179,0r0,-651r-135,46r-14,-41r160,-59r40,0r0,705r-51,0","w":335},{"d":"317,162v-85,0,-164,-26,-234,-78r29,-40v61,47,131,72,206,72v117,0,200,-67,200,-198r0,-74v-44,63,-112,118,-213,118v-123,0,-245,-94,-245,-240r0,-2v0,-147,122,-242,245,-242v102,0,171,54,213,114r0,-102r49,0r0,431v0,74,-24,132,-65,173v-44,44,-110,68,-185,68xm310,-85v106,0,211,-78,211,-194r0,-2v0,-118,-105,-194,-211,-194v-107,0,-197,74,-197,193r0,2v0,115,92,195,197,195xm386,-746r6,24v-41,9,-58,25,-55,56r31,0r0,71r-72,0r0,-62v0,-50,29,-80,90,-89","w":660,"k":{"\\":50}},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117xm167,-595r100,-122r40,0r100,122r-47,0r-74,-68r-74,68r-45,0","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}},{"d":"94,-643r0,-67r61,0r0,67r-61,0xm40,163v-14,0,-26,-1,-41,-4r0,-43v12,2,29,3,40,3v36,0,61,-23,61,-71r0,-558r49,0r0,555v0,80,-43,118,-109,118","w":249},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm279,-595r-107,-103r61,-30r88,133r-42,0","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"308,12v-134,0,-250,-107,-250,-266r0,-2v0,-148,104,-266,242,-266v143,0,234,116,234,267v0,9,0,12,-1,20r-423,0v9,127,100,201,200,201v79,0,133,-35,175,-80r34,30v-52,56,-113,96,-211,96xm110,-279r371,0v-7,-103,-66,-198,-183,-198v-101,0,-179,85,-188,198xm347,-595r0,-80r69,0r0,80r-69,0xm184,-595r0,-80r69,0r0,80r-69,0","w":584,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"\u0175":25,"y":25,"\u00fd":25,"\u0177":25,"\u00ff":25,".":10,",":10,"z":15,"\u017a":15,"\u017e":15,"\u017c":15}},{"d":"82,141r-21,-33v158,-97,246,-228,246,-395v0,-167,-88,-298,-246,-395r21,-33v176,100,277,247,277,428v0,181,-101,328,-277,428","w":430},{"d":"111,0r0,-700r52,0r0,700r-52,0xm65,-883r93,118r-45,0r-107,-90","w":274},{"d":"248,12v-95,0,-197,-54,-197,-160r0,-2v0,-106,91,-166,223,-166v71,0,120,9,169,22r0,-22v0,-103,-63,-156,-168,-156v-62,0,-113,17,-160,41r-18,-43v56,-26,111,-44,181,-44v69,0,124,19,161,56v34,34,52,81,52,144r0,318r-48,0r0,-85v-35,49,-98,97,-195,97xm251,-34v104,0,193,-64,193,-157r0,-58v-43,-11,-100,-23,-173,-23v-108,0,-168,48,-168,119r0,2v0,74,70,117,148,117xm140,-621r0,-47r294,0r0,47r-294,0","w":574,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"\u0175":20,"y":20,"\u00fd":20,"\u0177":20,"\u00ff":20,"t":5,"\u0165":5,"\u0163":5}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+5-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);})("ky$1!HY8|atEkXD*OHmWByBt=3Y1$HtE=3~W|aT4$CR@^g8d=Q2GZyYi=Q2GZy$DSD,1Zn(H$D,1Znj1$C,1Zn(xcC,1Zn(pZ1,1Znj3Zm,1Znj?YC,1Znj3YC,1Zn(xcm,1Zn(x^auSO]},YyCe=Q2GZ]S?=Q2GZ]Op=m,SO]}G$HYSO]}G^]DSO]}G$yYSO]},Y]~SO]}G$HmSO]},YH~SO]}G$]DSO]},ZnTSO]}G$nYSO]}G$nB8=Q2GZyB3=Q2GZy^1=Q2GZy$i=Q2GZyZ8=Q2GZy^3=Q2GZ]2u=1,1Znj3Ym,1Zn(HYm,1Zn(pZC,1Znj8YD,1Znj8$DTSO]},YnZ`=Q2GZyZW=Q2GZ]2G=Q2GZ]$i=Q2GZy6,=Q2GZ]28=Q2GZyj0=Q2GZyB0=Q2GZ]Sg=Q2GZ]~i=Q2GZ]$HZ1,1Zn(Hcm9J=Q2GZ]ju=Q2GZ]$D=Q2GZ]Z,=Q2GZyjG=Q2GZy^,=Q2GZ]2,=Q2GZyBG=Q2GZ]Od=Q2GZ]B,=Q2GZ]^g=Q2GZy21]XmSO]}G^HmSO]},YHY._4@u=Q2GZ]20=Q2GZ]jG=Q2GZ]Tx=Q2GZ]Cd=Q2GZ]Ox=Q2GZ]}GaC,1Zn(iYaOSO]}G$xOSO]},YgTSO]}G$n$j=Q2GZy6GT]@i=Q2GZ]~xJC,1Zn(icm,1Zn(p^C,1Zn(xZ#2e=Q2GZy2g^jp`.m,1Zn(dY1,1Znj?ZCGI=Q2GZ]21=d9SO]}G$nOSO]}G^H$SO]}G$xDSO]}G$](SO]},Z]pSO]}G$]TSO]}G$H~SO]}G^]OSO]},Yg$SBdOSO]}G^]2H=Q2GZ]^,=Q2GZ]SG=Q2GZ]23Zm,1Zn(DYD,1Znj,^duSO]}G$nT,=C,1ZnjW$C,1Zn(i$C,1Zn(D$x~SO]}G^a~SO]}G$ami=Q2GZ]68Oa~SO]}G$]S?a3DSO]},Z]~n=Q2GZyZ3289X=Q2GZ]B3=Q2GZ]mH_m,1Znj?Zi1SO]}G^H~SO]},YHmSO]}G$x(SO]},ZnYSO]}G$nDSO]}G^a$SO]},YgpSO]},Z]mSO]},Zg(Tcm,1Zn(dZC,1Zn(xZXYuS1,1Znjgc]9P=Q2GZ]2?=Q2GZyCxJmpSO]}G$yTSO]}G$]mSO]},Z]C0JD,1Znj8cm,1Znjg^C,1Znj8YCOI=Q2GZyB8=Q2GZ]Yi=Q2GZ]B?Y2mSO]},YyTG=Q2GZyZg_C,1Znj,$a,;=Q2GZyTH=Q2GZ]}W^1,1ZnjG$Xe8=Q2GZyTd=Q2GZ]BG=Q2GZ]~HCC,1Znj8Zm,1Znj,YD,1ZnjG^?$SO]},YgDSO]},Z]OSO]}G$x~SO]},Zg$SO]}G$xYSO]},ZHm#=Q2GZ](D=Q2GZyCiBm$SO]}G^3$SO]},Zx~SO]},YnmD$D,1Zn(pZD,1ZnjgY1,1Znj1$D,1Znj8ZD,1Znj1Z1,1Znj8Y3mSO]},Z]TSO]},Z3YSO]},Y3CSO]}G^gOSO]},Zy$SO]}(XnjmyQB~k.ZYcJ6T#]2Ca=^$|!SO7_>pdxiDH4`9[P@eEIG,Wg813?0u;*Rtq{},ZymSO]},Z3$SO]},Y3TSO]},Z3~cJ8DSO]},YamSO]}G^gCSO]},ZH~?=Q2GZ]mp=Q2GZ](d=Q2GZ]}3TD,1Znj,Z1,1Znjg$2O6=Q2GZyYd=Q2GZ]}1=Q2GZymD=Q2GZyCD=Q2GZyYD6m,1ZnjGY1,1Zn(i^]$SO]},YxB,=Q2GZ]Bg=Q2GZy2W|D,1Zn(Dcm,1Zn(D^dDSO]}G^3YSO]},Znjd.4YG!yD8kXBdk#,9J]}@Sn1d.4}@!n1G.H,D!HO8|X,4JaBE$du4!QDG|QZt7?8*|a^`^duI|g8I=d>{c4O?O1GEk]R`Jg9i!H~x$au8SHm@^CGE^3te_X0P=Xui!H~x$au8SHm@^CGE^3tek#6I|#u8$=Y8ky,I^3m8|atE.HpIS?TE^a1Dk#DH!?B`c3iR!n@Pk3i9$1exa3DO=]1Ga3DO_#i`k#}>")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":613,"face":{"font-family":"Gotham Light","font-weight":300,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"12","bbox":"-23 -938 1089 225","underline-thickness":"50","underline-position":"-50","stemh":"47","stemv":"52","unicode-range":"U+0020-U+017E"}}));
;
	// plugin
jQuery.fn.izjednaciSirinu=function() {
        var maxSirina=0;

        this.each(function(){
                if (this.offsetWidth>maxSirina) {maxSirina=this.offsetWidth;}
        });

        this.each(function(){
                $(this).width(maxSirina + "px");
                if (this.offsetWidth>maxSirina) {
                        $(this).width((maxSirina-(this.offsetWidth-maxSirina))+"px");
                }
        });
};

// usage
$(function() {
    $('ul.links, #primary').izjednaciSirinu();
	//$('div.field-field-slikavesti').preloadify({ imagedelay:800 });
	$('#baneri').jqFancyTransitions({ width: 908, height: 240 });
	$('li.en a').html('en');
	$('li.sr a').html('sr');
	$('<li>/</li>').attr('class','med').insertAfter("#block-locale-0 ul li.sr");
	Cufon.refresh();


//	var sirina = $('ul.links').offsetWidth;
//	$('#primary').css('width', 'sirina');
});


;
$(function(){$.fn.preloadify=function(a){function i(d){if(f[d]==false){g++;a.oneachload(b[d]);f[d]=true}if(a.imagedelay==0&&a.delay==0)$(b[d]).css("visibility","visible").animate({opacity:1},700);else if(a.delay==0){h(b[d],e);e+=a.imagedelay}else if(a.imagedelay==0)h(b[d],a.delay);else{h(b[d],a.delay+e);e+=a.imagedelay}}a=$.extend({delay:0,imagedelay:0,mode:"parallel",preload_parent:"a",check_timer:200,ondone:function(){},oneachload:function(){},fadein:700},a);var k=$(this),j,c=0,e=a.imagedelay,g=
0,b=k.find("img").css({display:"block",visibility:"hidden",opacity:0}),f=[],h=function(d,l){$(d).css("visibility","visible").delay(l).animate({opacity:1},a.fadein,function(){$(this).parent().removeClass("preloader")})};b.each(function(){$(this).parent(a.preload_parent).length==0?$(this).wrap("<a class='preloader' />"):$(this).parent().addClass("preloader");f[c++]=false});b=$.makeArray(b);c=g=0;e=a.imagedelay;j=setInterval(function(){if(g>=f.length){clearInterval(j);a.ondone()}else if(a.mode=="parallel")for(c=
0;c<b.length;c++)b[c].complete==true&&i(c);else if(b[c].complete==true){i(c);c++}},a.check_timer)}});;
/**
 * jqFancyTransitions - jQuery plugin
 * @version: 1.8 (2010/06/13)
 * @requires jQuery v1.2.2 or later 
 * @author Ivan Lazarevic
 * Examples and documentation at: http://www.workshop.rs/projects/jqfancytransitions
 
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
**/

(function($) {
	var opts = new Array;
	var level = new Array;
	var img = new Array;
	var links = new Array;
	var titles = new Array;
	var order = new Array;
	var imgInc = new Array;
	var inc = new Array;
	var stripInt = new Array;
	var imgInt = new Array;	
	
	$.fn.jqFancyTransitions = $.fn.jqfancytransitions = function(options){
	
	init = function(el){

		opts[el.id] = $.extend({}, $.fn.jqFancyTransitions.defaults, options);
		img[el.id] = new Array(); // images array
		links[el.id] = new Array(); // links array
		titles[el.id] = new Array(); // titles array
		order[el.id] = new Array(); // strips order array
		imgInc[el.id] = 0;
		inc[el.id] = 0;

		params = opts[el.id];

		if(params.effect == 'zipper'){ params.direction = 'alternate'; params.position = 'alternate'; }
		if(params.effect == 'wave'){ params.direction = 'alternate'; params.position = 'top'; }
		if(params.effect == 'curtain'){ params.direction = 'alternate'; params.position = 'curtain'; }	

		// width of strips
		stripWidth = parseInt(params.width / params.strips); 
		gap = params.width - stripWidth*params.strips; // number of pixels
		stripLeft = 0;

		// create images and titles arrays
		$.each($('#'+el.id+' img'), function(i,item){
			img[el.id][i] = $(item).attr('src');
			links[el.id][i] = $(item).next().attr('href');
			titles[el.id][i] = $(item).attr('alt') ? $(item).attr('alt') : '';
			$(item).hide();
		});

		// set panel
		$('#'+el.id).css({
			'background-image':'url('+img[el.id][0]+')',
			'width': params.width,
			'height': params.height,
			'position': 'relative',
			'background-position': 'top left'
			});

		// create title bar
		$('#'+el.id).append("<div class='ft-title' id='ft-title-"+el.id+"' style='position: absolute; bottom:0; left: 0; z-index: 1000; color: #fff; background-color: #000; '>"+titles[el.id][0]+"</div>");
		if(titles[el.id][imgInc[el.id]])
			$('#ft-title-'+el.id).css('opacity',opts[el.id].titleOpacity);
		else
			$('#ft-title-'+el.id).css('opacity',0);

		if(params.navigation){
			$.navigation(el);
			$('#ft-buttons-'+el.id).children().first().addClass('ft-button-'+el.id+'-active');			
		}

		odd = 1;
		// creating bars
		// and set their position
		for(j=1; j < params.strips+1; j++){
			
			if( gap > 0){
				tstripWidth = stripWidth + 1;
				gap--;
			} else {
				tstripWidth = stripWidth;
			}
			
			if(params.links)	
				$('#'+el.id).append("<a href='"+links[el.id][0]+"' class='ft-"+el.id+"' id='ft-"+el.id+j+"' style='width:"+tstripWidth+"px; height:"+params.height+"px; float: left; position: absolute;outline:none;'></a>");
			else
				$('#'+el.id).append("<div class='ft-"+el.id+"' id='ft-"+el.id+j+"' style='width:"+tstripWidth+"px; height:"+params.height+"px; float: left; position: absolute;'></div>");
							
			// positioning bars
			$("#ft-"+el.id+j).css({ 
				'background-position': -stripLeft +'px top',
				'left' : stripLeft 
			});
			
			stripLeft += tstripWidth;

			if(params.position == 'bottom')
				$("#ft-"+el.id+j).css( 'bottom', 0 );
				
			if (j%2 == 0 && params.position == 'alternate')
				$("#ft-"+el.id+j).css( 'bottom', 0 );
	
			// bars order
				// fountain
				if(params.direction == 'fountain' || params.direction == 'fountainAlternate'){ 
					order[el.id][j-1] = parseInt(params.strips/2) - (parseInt(j/2)*odd);
					order[el.id][params.strips-1] = params.strips; // fix for odd number of bars
					odd *= -1;
				} else {
				// linear
					order[el.id][j-1] = j;
				}
	
		}

			$('.ft-'+el.id).mouseover(function(){
				opts[el.id].pause = true;
			});
		
			$('.ft-'+el.id).mouseout(function(){
				opts[el.id].pause = false;
			});	
			
			$('#ft-title-'+el.id).mouseover(function(){
				opts[el.id].pause = true;
			});
		
			$('#ft-title-'+el.id).mouseout(function(){
				opts[el.id].pause = false;
			});				
		
		clearInterval(imgInt[el.id]);	
		imgInt[el.id] = setInterval(function() { $.transition(el)  }, params.delay+params.stripDelay*params.strips);

	};

	// transition
	$.transition = function(el,direction){

		if(opts[el.id].pause == true) return;

		stripInt[el.id] = setInterval(function() { $.strips(order[el.id][inc[el.id]], el)  },opts[el.id].stripDelay);
		
		$('#'+el.id).css({ 'background-image': 'url('+img[el.id][imgInc[el.id]]+')' });
		
		if(typeof(direction) == "undefined")
			imgInc[el.id]++;
		else
			if(direction == 'prev')
				imgInc[el.id]--;
			else
				imgInc[el.id] = direction;

		if  (imgInc[el.id] == img[el.id].length) {
			imgInc[el.id] = 0;
		}
		
		if (imgInc[el.id] == -1){
			imgInc[el.id] = img[el.id].length-1;
		}
		
		if(titles[el.id][imgInc[el.id]]!=''){
			$('#ft-title-'+el.id).animate({ opacity: 0 }, opts[el.id].titleSpeed, function(){
				$(this).html(titles[el.id][imgInc[el.id]]).animate({ opacity: opts[el.id].titleOpacity }, opts[el.id].titleSpeed);
			});
		} else {
			$('#ft-title-'+el.id).animate({ opacity: 0}, opts[el.id].titleSpeed);
		}
		
		inc[el.id] = 0;
		
		buttons = $('#ft-buttons-'+el.id).children();
		
		buttons.each(function(index){
			if(index == imgInc[el.id]){
				$(this).addClass('ft-button-'+el.id+'-active');
			} else{
				$(this).removeClass('ft-button-'+el.id+'-active');
			}
		});		

		if(opts[el.id].direction == 'random')
			$.fisherYates (order[el.id]);
			
		if((opts[el.id].direction == 'right' && order[el.id][0] == 1) 
			|| opts[el.id].direction == 'alternate'
			|| opts[el.id].direction == 'fountainAlternate')			
				order[el.id].reverse();		
	};


	// strips animations
	$.strips = function(itemId, el){

		temp = opts[el.id].strips;
		if (inc[el.id] == temp) {
			clearInterval(stripInt[el.id]);
			return;
		}
		$('.ft-'+el.id).attr('href',links[el.id][imgInc[el.id]]);
		if(opts[el.id].position == 'curtain'){
			currWidth = $('#ft-'+el.id+itemId).width();
			$('#ft-'+el.id+itemId).css({ width: 0, opacity: 0, 'background-image': 'url('+img[el.id][imgInc[el.id]]+')' });
			$('#ft-'+el.id+itemId).animate({ width: currWidth, opacity: 1 }, 1000);
		} else {
			$('#ft-'+el.id+itemId).css({ height: 0, opacity: 0, 'background-image': 'url('+img[el.id][imgInc[el.id]]+')' });
			$('#ft-'+el.id+itemId).animate({ height: opts[el.id].height, opacity: 1 }, 1000);
		}
		
		inc[el.id]++;
		
	};

	// navigation
	$.navigation = function(el){
		// create prev and next 
		$('#'+el.id).append("<a href='#' id='ft-prev-"+el.id+"' class='ft-prev'>prev</a>");
		$('#'+el.id).append("<a href='#' id='ft-next-"+el.id+"' class='ft-next'>next</a>");
		$('#ft-prev-'+el.id).css({
			'position' 	: 'absolute',
			'top'		: params.height/2 - 15,
			'left'		: 0,
			'z-index' 	: 1001,
			'line-height': '30px',
			'opacity'	: 0.7
		}).click( function(e){
			e.preventDefault();
			$.transition(el,'prev');
			clearInterval(imgInt[el.id]);
			imgInt[el.id] = setInterval(function() { $.transition(el)  }, params.delay+params.stripDelay*params.strips);		
		});

		$('#ft-next-'+el.id).css({
			'position' 	: 'absolute',
			'top'		: params.height/2 - 15,
			'right'		: 0,
			'z-index' 	: 1001,
			'line-height': '30px',
			'opacity'	: 0.7
		}).click( function(e){
			e.preventDefault();
			$.transition(el);
			clearInterval(imgInt[el.id]);
			imgInt[el.id] = setInterval(function() { $.transition(el)  }, params.delay+params.stripDelay*params.strips);
		});

		// image buttons
		$("<div id='ft-buttons-"+el.id+"'></div>").insertAfter($('#'+el.id));
		$('#ft-buttons-'+el.id).css({
			'text-align' 	: 'right',
			'padding-top'	: 5,
			'width'			: opts[el.id].width
		});
		for(k=1;k<img[el.id].length+1;k++){
			$('#ft-buttons-'+el.id).append("<a href='#' class='ft-button-"+el.id+"'>"+k+"</a>");
		}
		$('.ft-button-'+el.id).css({
			'padding' 	: 5
		});

		$.each($('.ft-button-'+el.id), function(i,item){
			$(item).click( function(e){
				e.preventDefault();
				$.transition(el,i);
				clearInterval(imgInt[el.id]);
				imgInt[el.id] = setInterval(function() { $.transition(el)  }, params.delay+params.stripDelay*params.strips);				
			})
		});		
	}
	


	// shuffle array function
	$.fisherYates = function(arr) {
	  var i = arr.length;
	  if ( i == 0 ) return false;
	  while ( --i ) {
	     var j = Math.floor( Math.random() * ( i + 1 ) );
	     var tempi = arr[i];
	     var tempj = arr[j];
	     arr[i] = tempj;
	     arr[j] = tempi;
	   }
	}	
		
	this.each (
		function(){ init(this); }
	);
		
};

	// default values
	$.fn.jqFancyTransitions.defaults = {	
		width: 500, // width of panel
		height: 332, // height of panel
		strips: 10, // number of strips
		delay: 5000, // delay between images in ms
		stripDelay: 50, // delay beetwen strips in ms
		titleOpacity: 0.7, // opacity of title
		titleSpeed: 1000, // speed of title appereance in ms
		position: 'alternate', // top, bottom, alternate, curtain
		direction: 'fountainAlternate', // left, right, alternate, random, fountain, fountainAlternate
		effect: '', // curtain, zipper, wave
		navigation: false, // prev next and buttons
		links : false // show images as links 		
	};
	
})(jQuery);;

