/*
 * 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>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number((($n==1)?(0):((($n>=2)&&($n<=4))?(1):2))); }, 'strings': { "Continue": "Pokračovať", "Unspecified error": "Nešpecifikovaná chyba", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Zmeny v rozmiestnení blokov sa neprejavia, pokým nestlačíte tlačidlo \x3cem\x3eUložiť bloky\x3c/em\x3e", "Drag to re-order": "Potiahnutým zmeníte poradie", "Changes made in this table will not be saved until the form is submitted.": "Zmeny vykonané v tejto tabuľke nebudú uložené pokiaľ sa formulár neodošle.", "Automatic alias": "Automatický alias", "Join summary": "Pripojiť zhrnutie", "Split summary at cursor": "Oddeliť zhrnutie nad pozíciou kurzora", "File browsing is disabled in directory %dir.": "Prezeranie súborov v priečinku %dir je vypnuté.", "Upload": "Nahrať", "Do you want to refresh the current directory?": "Chcete obnoviť súčasný adresár?", "Only files with the following extensions are allowed: %files-allowed.": "Povolené sú len tieto typy súborov: %files-allowed.", "unlimited": "neobmedzene", "Please select a file.": "Zvoľte prosím súbor.", "Delete selected files?": "Zmazať vybrané súbory?", "Please select a thumbnail.": "Prosím vyberte miniatúru.", "%filename is not an image.": "%filename nie je obrázok.", "Please specify dimensions within the allowed range that is from 1x1 to @dimensions.": "Prosím zadajte rozmery v povolenom rozsahu od 1x1 do @dimensions.", "You must select at least %num files.": "Musíte označiť aspoň %num súborov", "You are not allowed to operate on more than %num files.": "Nemáte dovolené pracovať s viac ako %num súbormi súčasne.", "OK": "OK", "Close": "Zatvoriť", "Select all rows in this table": "Označiť všetky riadky v tejto tabuľke", "Deselect all rows in this table": "Odznačiť všetky riadky v tejto tabuľke", "Cancel": "Zrušiť" } };;

/**
 * jQuery Lightbox
 * @author
 *   Stella Power, <http://drupal.org/user/66894>
 *
 * Based on Lightbox v2.03.3 by Lokesh Dhakar
 * <http://www.huddletogether.com/projects/lightbox2/>
 * Also partially based on the jQuery Lightbox by Warren Krewenki
 *   <http://warren.mesozen.com>
 *
 * Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
 * maintainers to distribute this file via Drupal.org
 * Under GPL license.
 *
 * Slideshow, iframe and video functionality added by Stella Power.
 */

var Lightbox = {
  auto_modal : false,
  overlayOpacity : 0.8, // Controls transparency of shadow overlay.
  overlayColor : '000', // Controls colour of shadow overlay.
  disableCloseClick : true,
  // Controls the order of the lightbox resizing animation sequence.
  resizeSequence: 0, // 0: simultaneous, 1: width then height, 2: height then width.
  resizeSpeed: 'normal', // Controls the speed of the lightbox resizing animation.
  fadeInSpeed: 'normal', // Controls the speed of the image appearance.
  slideDownSpeed: 'slow', // Controls the speed of the image details appearance.
  minWidth: 240,
  borderSize : 10,
  boxColor : 'fff',
  fontColor : '000',
  topPosition : '',
  infoHeight: 20,
  alternative_layout : false,
  imageArray : [],
  imageNum : null,
  total : 0,
  activeImage : null,
  inprogress : false,
  disableResize : false,
  disableZoom : false,
  isZoomedIn : false,
  rtl : false,
  loopItems : false,
  keysClose : ['c', 'x', 27],
  keysPrevious : ['p', 37],
  keysNext : ['n', 39],
  keysZoom : ['z'],
  keysPlayPause : [32],

  // Slideshow options.
  slideInterval : 5000, // In milliseconds.
  showPlayPause : true,
  autoStart : true,
  autoExit : true,
  pauseOnNextClick : false, // True to pause the slideshow when the "Next" button is clicked.
  pauseOnPrevClick : true, // True to pause the slideshow when the "Prev" button is clicked.
  slideIdArray : [],
  slideIdCount : 0,
  isSlideshow : false,
  isPaused : false,
  loopSlides : false,

  // Iframe options.
  isLightframe : false,
  iframe_width : 600,
  iframe_height : 400,
  iframe_border : 1,

  // Video and modal options.
  enableVideo : false,
  flvPlayer : '/flvplayer.swf',
  flvFlashvars : '',
  isModal : false,
  isVideo : false,
  videoId : false,
  modalWidth : 400,
  modalHeight : 400,
  modalHTML : null,


  // initialize()
  // Constructor runs on completion of the DOM loading.
  // The function inserts html at the bottom of the page which is used
  // to display the shadow overlay and the image container.
  initialize: function() {

    var s = Drupal.settings.lightbox2;
    Lightbox.overlayOpacity = s.overlay_opacity;
    Lightbox.overlayColor = s.overlay_color;
    Lightbox.disableCloseClick = s.disable_close_click;
    Lightbox.resizeSequence = s.resize_sequence;
    Lightbox.resizeSpeed = s.resize_speed;
    Lightbox.fadeInSpeed = s.fade_in_speed;
    Lightbox.slideDownSpeed = s.slide_down_speed;
    Lightbox.borderSize = s.border_size;
    Lightbox.boxColor = s.box_color;
    Lightbox.fontColor = s.font_color;
    Lightbox.topPosition = s.top_position;
    Lightbox.rtl = s.rtl;
    Lightbox.loopItems = s.loop_items;
    Lightbox.keysClose = s.keys_close.split(" ");
    Lightbox.keysPrevious = s.keys_previous.split(" ");
    Lightbox.keysNext = s.keys_next.split(" ");
    Lightbox.keysZoom = s.keys_zoom.split(" ");
    Lightbox.keysPlayPause = s.keys_play_pause.split(" ");
    Lightbox.disableResize = s.disable_resize;
    Lightbox.disableZoom = s.disable_zoom;
    Lightbox.slideInterval = s.slideshow_interval;
    Lightbox.showPlayPause = s.show_play_pause;
    Lightbox.showCaption = s.show_caption;
    Lightbox.autoStart = s.slideshow_automatic_start;
    Lightbox.autoExit = s.slideshow_automatic_exit;
    Lightbox.pauseOnNextClick = s.pause_on_next_click;
    Lightbox.pauseOnPrevClick = s.pause_on_previous_click;
    Lightbox.loopSlides = s.loop_slides;
    Lightbox.alternative_layout = s.use_alt_layout;
    Lightbox.iframe_width = s.iframe_width;
    Lightbox.iframe_height = s.iframe_height;
    Lightbox.iframe_border = s.iframe_border;
    Lightbox.enableVideo = s.enable_video;
    if (s.enable_video) {
      Lightbox.flvPlayer = s.flvPlayer;
      Lightbox.flvFlashvars = s.flvFlashvars;
    }

    // Make the lightbox divs.
    var layout_class = (s.use_alt_layout ? 'lightbox2-alt-layout' : 'lightbox2-orig-layout');
    var output = '<div id="lightbox2-overlay" style="display: none;"></div>\
      <div id="lightbox" style="display: none;" class="' + layout_class + '">\
        <div id="outerImageContainer"></div>\
        <div id="imageDataContainer" class="clearfix">\
          <div id="imageData"></div>\
        </div>\
      </div>';
    var loading = '<div id="loading"><a href="#" id="loadingLink"></a></div>';
    var modal = '<div id="modalContainer" style="display: none;"></div>';
    var frame = '<div id="frameContainer" style="display: none;"></div>';
    var imageContainer = '<div id="imageContainer" style="display: none;"></div>';
    var details = '<div id="imageDetails"></div>';
    var bottomNav = '<div id="bottomNav"></div>';
    var image = '<img id="lightboxImage" alt="" />';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" href="#"></a><a id="nextLink" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" href="#"></a><a id="frameNextLink" href="#"></a></div>';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="nextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="frameNextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var caption = '<span id="caption"></span>';
    var numberDisplay = '<span id="numberDisplay"></span>';
    var close = '<a id="bottomNavClose" title="' + Drupal.t('Close') + '" href="#"></a>';
    var zoom = '<a id="bottomNavZoom" href="#"></a>';
    var zoomOut = '<a id="bottomNavZoomOut" href="#"></a>';
    var pause = '<a id="lightshowPause" title="' + Drupal.t('Pause Slideshow') + '" href="#" style="display: none;"></a>';
    var play = '<a id="lightshowPlay" title="' + Drupal.t('Play Slideshow') + '" href="#" style="display: none;"></a>';

    $("body").append(output);
    $('#outerImageContainer').append(modal + frame + imageContainer + loading);
    if (!s.use_alt_layout) {
      $('#imageContainer').append(image + hoverNav);
      $('#imageData').append(details + bottomNav);
      $('#imageDetails').append(caption + numberDisplay);
      $('#bottomNav').append(frameNav + close + zoom + zoomOut + pause + play);
    }
    else {
      $('#outerImageContainer').append(bottomNav);
      $('#imageContainer').append(image);
      $('#bottomNav').append(close + zoom + zoomOut);
      $('#imageData').append(hoverNav + details);
      $('#imageDetails').append(caption + numberDisplay + pause + play);
    }

    // Setup onclick handlers.
    if (Lightbox.disableCloseClick) {
      $('#lightbox2-overlay').click(function() { Lightbox.end(); return false; } ).hide();
    }
    $('#loadingLink, #bottomNavClose').click(function() { Lightbox.end('forceClose'); return false; } );
    $('#prevLink, #framePrevLink').click(function() { Lightbox.changeData(Lightbox.activeImage - 1); return false; } );
    $('#nextLink, #frameNextLink').click(function() { Lightbox.changeData(Lightbox.activeImage + 1); return false; } );
    $('#bottomNavZoom').click(function() { Lightbox.changeData(Lightbox.activeImage, true); return false; } );
    $('#bottomNavZoomOut').click(function() { Lightbox.changeData(Lightbox.activeImage, false); return false; } );
    $('#lightshowPause').click(function() { Lightbox.togglePlayPause("lightshowPause", "lightshowPlay"); return false; } );
    $('#lightshowPlay').click(function() { Lightbox.togglePlayPause("lightshowPlay", "lightshowPause"); return false; } );

    // Fix positioning.
    $('#prevLink, #nextLink, #framePrevLink, #frameNextLink').css({ 'paddingTop': Lightbox.borderSize + 'px'});
    $('#imageContainer, #frameContainer, #modalContainer').css({ 'padding': Lightbox.borderSize + 'px'});
    $('#outerImageContainer, #imageDataContainer, #bottomNavClose').css({'backgroundColor': '#' + Lightbox.boxColor, 'color': '#'+Lightbox.fontColor});
    if (Lightbox.alternative_layout) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'bottom': Lightbox.borderSize + 'px', 'right': Lightbox.borderSize + 'px'});
    }
    else if (Lightbox.rtl == 1 && $.browser.msie) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'left': '0px'});
    }

    // Force navigation links to always be displayed
    if (s.force_show_nav) {
      $('#prevLink, #nextLink').addClass("force_show_nav");
    }

  },

  // initList()
  // Loops through anchor tags looking for 'lightbox', 'lightshow' and
  // 'lightframe', etc, references and applies onclick events to appropriate
  // links. You can rerun after dynamically adding images w/ajax.
  initList : function(context) {

    if (context == undefined || context == null) {
      context = document;
    }

    // Attach lightbox to any links with rel 'lightbox', 'lightshow' or
    // 'lightframe', etc.
    $("a[rel^='lightbox']:not(.lightbox-processed), area[rel^='lightbox']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightshow']:not(.lightbox-processed), area[rel^='lightshow']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, true, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightframe']:not(.lightbox-processed), area[rel^='lightframe']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, true, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    if (Lightbox.enableVideo) {
      $("a[rel^='lightvideo']:not(.lightbox-processed), area[rel^='lightvideo']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
        if (Lightbox.disableCloseClick) {
          $('#lightbox').unbind('click');
          $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
        }
        Lightbox.start(this, false, false, true, false);
        if (e.preventDefault) { e.preventDefault(); }
        return false;
      });
    }
    $("a[rel^='lightmodal']:not(.lightbox-processed), area[rel^='lightmodal']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      $('#lightbox').unbind('click');
      // Add classes from the link to the lightbox div - don't include lightbox-processed
      $('#lightbox').addClass($(this).attr('class'));
      $('#lightbox').removeClass('lightbox-processed');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("#lightboxAutoModal:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      Lightbox.auto_modal = true;
      $('#lightbox').unbind('click');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
  },

  // start()
  // Display overlay and lightbox. If image is part of a set, add siblings to
  // imageArray.
  start: function(imageLink, slideshow, lightframe, lightvideo, lightmodal) {

    Lightbox.isPaused = !Lightbox.autoStart;

    // Replaces hideSelectBoxes() and hideFlash() calls in original lightbox2.
    Lightbox.toggleSelectsFlash('hide');

    // Stretch overlay to fill page and fade in.
    var arrayPageSize = Lightbox.getPageSize();
    $("#lightbox2-overlay").hide().css({
      'width': '100%',
      'zIndex': '10090',
      'height': arrayPageSize[1] + 'px',
      'backgroundColor' : '#' + Lightbox.overlayColor
    });
    // Detect OS X FF2 opacity + flash issue.
    if (lightvideo && this.detectMacFF2()) {
      $("#lightbox2-overlay").removeClass("overlay_default");
      $("#lightbox2-overlay").addClass("overlay_macff2");
      $("#lightbox2-overlay").css({'opacity' : null});
    }
    else {
      $("#lightbox2-overlay").removeClass("overlay_macff2");
      $("#lightbox2-overlay").addClass("overlay_default");
      $("#lightbox2-overlay").css({'opacity' : Lightbox.overlayOpacity});
    }
    $("#lightbox2-overlay").fadeIn(Lightbox.fadeInSpeed);


    Lightbox.isSlideshow = slideshow;
    Lightbox.isLightframe = lightframe;
    Lightbox.isVideo = lightvideo;
    Lightbox.isModal = lightmodal;
    Lightbox.imageArray = [];
    Lightbox.imageNum = 0;

    var anchors = $(imageLink.tagName);
    var anchor = null;
    var rel_parts = Lightbox.parseRel(imageLink);
    var rel = rel_parts["rel"];
    var rel_group = rel_parts["group"];
    var title = (rel_parts["title"] ? rel_parts["title"] : imageLink.title);
    var rel_style = null;
    var i = 0;

    if (rel_parts["flashvars"]) {
      Lightbox.flvFlashvars = Lightbox.flvFlashvars + '&' + rel_parts["flashvars"];
    }

    // Set the title for image alternative text.
    var alt = imageLink.title;
    if (!alt) {
      var img = $(imageLink).find("img");
      if (img && $(img).attr("alt")) {
        alt = $(img).attr("alt");
      }
      else {
        alt = title;
      }
    }

    if ($(imageLink).attr('id') == 'lightboxAutoModal') {
      rel_style = rel_parts["style"];
      Lightbox.imageArray.push(['#lightboxAutoModal > *', title, alt, rel_style, 1]);
    }
    else {
      // Handle lightbox images with no grouping.
      if ((rel == 'lightbox' || rel == 'lightshow') && !rel_group) {
        Lightbox.imageArray.push([imageLink.href, title, alt]);
      }

      // Handle other items with no grouping.
      else if (!rel_group) {
        rel_style = rel_parts["style"];
        Lightbox.imageArray.push([imageLink.href, title, alt, rel_style]);
      }

      // Handle grouped items.
      else {

        // Loop through anchors and add them to imageArray.
        for (i = 0; i < anchors.length; i++) {
          anchor = anchors[i];
          if (anchor.href && typeof(anchor.href) == "string" && $(anchor).attr('rel')) {
            var rel_data = Lightbox.parseRel(anchor);
            var anchor_title = (rel_data["title"] ? rel_data["title"] : anchor.title);
            img_alt = anchor.title;
            if (!img_alt) {
              var anchor_img = $(anchor).find("img");
              if (anchor_img && $(anchor_img).attr("alt")) {
                img_alt = $(anchor_img).attr("alt");
              }
              else {
                img_alt = title;
              }
            }
            if (rel_data["rel"] == rel) {
              if (rel_data["group"] == rel_group) {
                if (Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) {
                  rel_style = rel_data["style"];
                }
                Lightbox.imageArray.push([anchor.href, anchor_title, img_alt, rel_style]);
              }
            }
          }
        }

        // Remove duplicates.
        for (i = 0; i < Lightbox.imageArray.length; i++) {
          for (j = Lightbox.imageArray.length-1; j > i; j--) {
            if (Lightbox.imageArray[i][0] == Lightbox.imageArray[j][0]) {
              Lightbox.imageArray.splice(j,1);
            }
          }
        }
        while (Lightbox.imageArray[Lightbox.imageNum][0] != imageLink.href) {
          Lightbox.imageNum++;
        }
      }
    }

    if (Lightbox.isSlideshow && Lightbox.showPlayPause && Lightbox.isPaused) {
      $('#lightshowPlay').show();
      $('#lightshowPause').hide();
    }

    // Calculate top and left offset for the lightbox.
    var arrayPageScroll = Lightbox.getPageScroll();
    var lightboxTop = arrayPageScroll[1] + (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
    var lightboxLeft = arrayPageScroll[0];
    $('#frameContainer, #modalContainer, #lightboxImage').hide();
    $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
    $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();
    $('#outerImageContainer').css({'width': '250px', 'height': '250px'});
    $('#lightbox').css({
      'zIndex': '10500',
      'top': lightboxTop + 'px',
      'left': lightboxLeft + 'px'
    }).show();

    Lightbox.total = Lightbox.imageArray.length;
    Lightbox.changeData(Lightbox.imageNum);
  },

  // changeData()
  // Hide most elements and preload image in preparation for resizing image
  // container.
  changeData: function(imageNum, zoomIn) {

    if (Lightbox.inprogress === false) {
      if (Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) {
        if (imageNum >= Lightbox.total) imageNum = 0;
        if (imageNum < 0) imageNum = Lightbox.total - 1;
      }

      if (Lightbox.isSlideshow) {
        for (var i = 0; i < Lightbox.slideIdCount; i++) {
          window.clearTimeout(Lightbox.slideIdArray[i]);
        }
      }
      Lightbox.inprogress = true;
      Lightbox.activeImage = imageNum;

      if (Lightbox.disableResize && !Lightbox.isSlideshow) {
        zoomIn = true;
      }
      Lightbox.isZoomedIn = zoomIn;


      // Hide elements during transition.
      $('#loading').css({'zIndex': '10500'}).show();
      if (!Lightbox.alternative_layout) {
        $('#imageContainer').hide();
      }
      $('#frameContainer, #modalContainer, #lightboxImage').hide();
      $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
      $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();

      // Preload image content, but not iframe pages.
      if (!Lightbox.isLightframe && !Lightbox.isVideo && !Lightbox.isModal) {
        $("#lightbox #imageDataContainer").removeClass('lightbox2-alt-layout-data');
        imgPreloader = new Image();
        imgPreloader.onerror = function() { Lightbox.imgNodeLoadingError(this); };

        imgPreloader.onload = function() {
          var photo = document.getElementById('lightboxImage');
          photo.src = Lightbox.imageArray[Lightbox.activeImage][0];
          photo.alt = Lightbox.imageArray[Lightbox.activeImage][2];

          var imageWidth = imgPreloader.width;
          var imageHeight = imgPreloader.height;

          // Resize code.
          var arrayPageSize = Lightbox.getPageSize();
          var targ = { w:arrayPageSize[2] - (Lightbox.borderSize * 2), h:arrayPageSize[3] - (Lightbox.borderSize * 6) - (Lightbox.infoHeight * 4) - (arrayPageSize[3] / 10) };
          var orig = { w:imgPreloader.width, h:imgPreloader.height };

          // Image is very large, so show a smaller version of the larger image
          // with zoom button.
          if (zoomIn !== true) {
            var ratio = 1.0; // Shrink image with the same aspect.
            $('#bottomNavZoomOut, #bottomNavZoom').hide();
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              ratio = ((targ.w / orig.w) < (targ.h / orig.h)) ? targ.w / orig.w : targ.h / orig.h;
              if (!Lightbox.disableZoom && !Lightbox.isSlideshow) {
                $('#bottomNavZoom').css({'zIndex': '10500'}).show();
              }
            }

            imageWidth  = Math.floor(orig.w * ratio);
            imageHeight = Math.floor(orig.h * ratio);
          }

          else {
            $('#bottomNavZoom').hide();
            // Only display zoom out button if the image is zoomed in already.
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              // Only display zoom out button if not a slideshow and if the
              // buttons aren't disabled.
              if (!Lightbox.disableResize && Lightbox.isSlideshow === false && !Lightbox.disableZoom) {
                $('#bottomNavZoomOut').css({'zIndex': '10500'}).show();
              }
            }
          }

          photo.style.width = (imageWidth) + 'px';
          photo.style.height = (imageHeight) + 'px';
          Lightbox.resizeContainer(imageWidth, imageHeight);

          // Clear onLoad, IE behaves irratically with animated gifs otherwise.
          imgPreloader.onload = function() {};
        };

        imgPreloader.src = Lightbox.imageArray[Lightbox.activeImage][0];
        imgPreloader.alt = Lightbox.imageArray[Lightbox.activeImage][2];
      }

      // Set up frame size, etc.
      else if (Lightbox.isLightframe) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var src = Lightbox.imageArray[Lightbox.activeImage][0];
        $('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

        // Enable swf support in Gecko browsers.
        if ($.browser.mozilla && src.indexOf('.swf') != -1) {
          setTimeout(function () {
            document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
          }, 1000);
        }

        if (!Lightbox.iframe_border) {
          $('#lightboxFrame').css({'border': 'none'});
          $('#lightboxFrame').attr('frameborder', '0');
        }
        var iframe = document.getElementById('lightboxFrame');
        var iframeStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        iframe = Lightbox.setStyles(iframe, iframeStyles);
        Lightbox.resizeContainer(parseInt(iframe.width, 10), parseInt(iframe.height, 10));
      }
      else if (Lightbox.isVideo || Lightbox.isModal) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var container = document.getElementById('modalContainer');
        var modalStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        container = Lightbox.setStyles(container, modalStyles);
        if (Lightbox.isVideo) {
          Lightbox.modalHeight =  parseInt(container.height, 10) - 10;
          Lightbox.modalWidth =  parseInt(container.width, 10) - 10;
          Lightvideo.startVideo(Lightbox.imageArray[Lightbox.activeImage][0]);
        }
        Lightbox.resizeContainer(parseInt(container.width, 10), parseInt(container.height, 10));
      }
    }
  },

  // imgNodeLoadingError()
  imgNodeLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    var original_image = Lightbox.imageArray[Lightbox.activeImage][0];
    if (s.display_image_size !== "") {
      original_image = original_image.replace(new RegExp("."+s.display_image_size), "");
    }
    Lightbox.imageArray[Lightbox.activeImage][0] = original_image;
    image.onerror = function() { Lightbox.imgLoadingError(image); };
    image.src = original_image;
  },

  // imgLoadingError()
  imgLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    Lightbox.imageArray[Lightbox.activeImage][0] = s.default_image;
    image.src = s.default_image;
  },

  // resizeContainer()
  resizeContainer: function(imgWidth, imgHeight) {

    imgWidth = (imgWidth < Lightbox.minWidth ? Lightbox.minWidth : imgWidth);

    this.widthCurrent = $('#outerImageContainer').width();
    this.heightCurrent = $('#outerImageContainer').height();

    var widthNew = (imgWidth  + (Lightbox.borderSize * 2));
    var heightNew = (imgHeight  + (Lightbox.borderSize * 2));

    // Scalars based on change from old to new.
    this.xScale = ( widthNew / this.widthCurrent) * 100;
    this.yScale = ( heightNew / this.heightCurrent) * 100;

    // Calculate size difference between new and old image, and resize if
    // necessary.
    wDiff = this.widthCurrent - widthNew;
    hDiff = this.heightCurrent - heightNew;

    $('#modalContainer').css({'width': imgWidth, 'height': imgHeight});
    // Detect animation sequence.
    if (Lightbox.resizeSequence) {
      var animate1 = {width: widthNew};
      var animate2 = {height: heightNew};
      if (Lightbox.resizeSequence == 2) {
        animate1 = {height: heightNew};
        animate2 = {width: widthNew};
      }
      $('#outerImageContainer').animate(animate1, Lightbox.resizeSpeed).animate(animate2, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }
    // Simultaneous.
    else {
      $('#outerImageContainer').animate({'width': widthNew, 'height': heightNew}, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }

    // If new and old image are same size and no scaling transition is necessary
    // do a quick pause to prevent image flicker.
    if ((hDiff === 0) && (wDiff === 0)) {
      if ($.browser.msie) {
        Lightbox.pause(250);
      }
      else {
        Lightbox.pause(100);
      }
    }

    var s = Drupal.settings.lightbox2;
    if (!s.use_alt_layout) {
      $('#prevLink, #nextLink').css({'height': imgHeight + 'px'});
    }
    $('#imageDataContainer').css({'width': widthNew + 'px'});
  },

  // showData()
  // Display image and begin preloading neighbors.
  showData: function() {
    $('#loading').hide();

    if (Lightbox.isLightframe || Lightbox.isVideo || Lightbox.isModal) {
      Lightbox.updateDetails();
      if (Lightbox.isLightframe) {
        $('#frameContainer').show();
        if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
          $('#lightboxFrame').css({'zIndex': '10500'}).show();
        }
        else {
          $('#lightboxFrame').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
        }
      }
      else {
        if (Lightbox.isVideo) {
          $("#modalContainer").html(Lightbox.modalHTML).click(function(){return false;}).css('zIndex', '10500').show();
        }
        else {
          var src = unescape(Lightbox.imageArray[Lightbox.activeImage][0]);
          if (Lightbox.imageArray[Lightbox.activeImage][4]) {
            $(src).appendTo("#modalContainer");
            $('#modalContainer').css({'zIndex': '10500'}).show();
          }
          else {
            // Use a callback to show the new image, otherwise you get flicker.
            $("#modalContainer").hide().load(src, function () {$('#modalContainer').css({'zIndex': '10500'}).show();});
          }
          $('#modalContainer').unbind('click');
        }
        // This might be needed in the Lightframe section above.
        //$('#modalContainer').css({'zIndex': '10500'}).show();
      }
    }

    // Handle display of image content.
    else {
      $('#imageContainer').show();
      if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
        $('#lightboxImage').css({'zIndex': '10500'}).show();
      }
      else {
        $('#lightboxImage').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
      }
      Lightbox.updateDetails();
      this.preloadNeighborImages();
    }
    Lightbox.inprogress = false;

    // Slideshow specific stuff.
    if (Lightbox.isSlideshow) {
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        if (Lightbox.autoExit) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.end('slideshow');}, Lightbox.slideInterval);
        }
      }
      else {
        if (!Lightbox.isPaused && Lightbox.total > 1) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.changeData(Lightbox.activeImage + 1);}, Lightbox.slideInterval);
        }
      }
      if (Lightbox.showPlayPause && Lightbox.total > 1 && !Lightbox.isPaused) {
        $('#lightshowPause').show();
        $('#lightshowPlay').hide();
      }
      else if (Lightbox.showPlayPause && Lightbox.total > 1) {
        $('#lightshowPause').hide();
        $('#lightshowPlay').show();
      }
    }

    // Adjust the page overlay size.
    var arrayPageSize = Lightbox.getPageSize();
    var arrayPageScroll = Lightbox.getPageScroll();
    var pageHeight = arrayPageSize[1];
    if (Lightbox.isZoomedIn && arrayPageSize[1] > arrayPageSize[3]) {
      var lightboxTop = (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
      pageHeight = pageHeight + arrayPageScroll[1] + lightboxTop;
    }
    $('#lightbox2-overlay').css({'height': pageHeight + 'px', 'width': arrayPageSize[0] + 'px'});

    // Gecko browsers (e.g. Firefox, SeaMonkey, etc) don't handle pdfs as
    // expected.
    if ($.browser.mozilla) {
      if (Lightbox.imageArray[Lightbox.activeImage][0].indexOf(".pdf") != -1) {
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }
  },

  // updateDetails()
  // Display caption, image number, and bottom nav.
  updateDetails: function() {

    $("#imageDataContainer").hide();

    var s = Drupal.settings.lightbox2;

    if (s.show_caption) {
      var caption = Lightbox.filterXSS(Lightbox.imageArray[Lightbox.activeImage][1]);
      if (!caption) caption = '';
      $('#caption').html(caption).css({'zIndex': '10500'}).show();
    }

    // If image is part of set display 'Image x of x'.
    var numberDisplay = null;
    if (s.image_count && Lightbox.total > 1) {
      var currentImage = Lightbox.activeImage + 1;
      if (!Lightbox.isLightframe && !Lightbox.isModal && !Lightbox.isVideo) {
        numberDisplay = s.image_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else if (Lightbox.isVideo) {
        numberDisplay = s.video_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else {
        numberDisplay = s.page_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      $('#numberDisplay').html(numberDisplay).css({'zIndex': '10500'}).show();
    }
    else {
      $('#numberDisplay').hide();
    }

    $("#imageDataContainer").hide().slideDown(Lightbox.slideDownSpeed, function() {
      $("#bottomNav").show();
    });
    if (Lightbox.rtl == 1) {
      $("#bottomNav").css({'float': 'left'});
    }
    Lightbox.updateNav();
  },

  // updateNav()
  // Display appropriate previous and next hover navigation.
  updateNav: function() {

    $('#hoverNav').css({'zIndex': '10500'}).show();
    var prevLink = '#prevLink';
    var nextLink = '#nextLink';

    // Slideshow is separated as we need to show play / pause button.
    if (Lightbox.isSlideshow) {
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage !== 0) {
        $(prevLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnPrevClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage != (Lightbox.total - 1)) {
        $(nextLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnNextClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // All other types of content.
    else {

      if ((Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) && !Lightbox.alternative_layout) {
        $('#frameHoverNav').css({'zIndex': '10500'}).show();
        $('#hoverNav').css({'zIndex': '10500'}).hide();
        prevLink = '#framePrevLink';
        nextLink = '#frameNextLink';
      }

      // If not first image in set, display prev image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage !== 0) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(prevLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage != (Lightbox.total - 1)) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(nextLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // Don't enable keyboard shortcuts so forms will work.
    if (!Lightbox.isModal) {
      this.enableKeyboardNav();
    }
  },


  // enableKeyboardNav()
  enableKeyboardNav: function() {
    $(document).bind("keydown", this.keyboardAction);
  },

  // disableKeyboardNav()
  disableKeyboardNav: function() {
    $(document).unbind("keydown", this.keyboardAction);
  },

  // keyboardAction()
  keyboardAction: function(e) {
    if (e === null) { // IE.
      keycode = event.keyCode;
      escapeKey = 27;
    }
    else { // Mozilla.
      keycode = e.keyCode;
      escapeKey = e.DOM_VK_ESCAPE;
    }

    key = String.fromCharCode(keycode).toLowerCase();

    // Close lightbox.
    if (Lightbox.checkKey(Lightbox.keysClose, key, keycode)) {
      Lightbox.end('forceClose');
    }
    // Display previous image (p, <-).
    else if (Lightbox.checkKey(Lightbox.keysPrevious, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage !== 0) {
        Lightbox.changeData(Lightbox.activeImage - 1);
      }

    }
    // Display next image (n, ->).
    else if (Lightbox.checkKey(Lightbox.keysNext, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage != (Lightbox.total - 1)) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    // Zoom in.
    else if (Lightbox.checkKey(Lightbox.keysZoom, key, keycode) && !Lightbox.disableResize && !Lightbox.disableZoom && !Lightbox.isSlideshow && !Lightbox.isLightframe) {
      if (Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, false);
      }
      else if (!Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, true);
      }
      return false;
    }
    // Toggle play / pause (space).
    else if (Lightbox.checkKey(Lightbox.keysPlayPause, key, keycode) && Lightbox.isSlideshow) {

      if (Lightbox.isPaused) {
        Lightbox.togglePlayPause("lightshowPlay", "lightshowPause");
      }
      else {
        Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
      }
      return false;
    }
  },

  preloadNeighborImages: function() {

    if ((Lightbox.total - 1) > Lightbox.activeImage) {
      preloadNextImage = new Image();
      preloadNextImage.src = Lightbox.imageArray[Lightbox.activeImage + 1][0];
    }
    if (Lightbox.activeImage > 0) {
      preloadPrevImage = new Image();
      preloadPrevImage.src = Lightbox.imageArray[Lightbox.activeImage - 1][0];
    }

  },

  end: function(caller) {
    var closeClick = (caller == 'slideshow' ? false : true);
    if (Lightbox.isSlideshow && Lightbox.isPaused && !closeClick) {
      return;
    }
    // To prevent double clicks on navigation links.
    if (Lightbox.inprogress === true && caller != 'forceClose') {
      return;
    }
    Lightbox.disableKeyboardNav();
    $('#lightbox').hide();
    $("#lightbox2-overlay").fadeOut();
    Lightbox.isPaused = true;
    Lightbox.inprogress = false;
    // Replaces calls to showSelectBoxes() and showFlash() in original
    // lightbox2.
    Lightbox.toggleSelectsFlash('visible');
    if (Lightbox.isSlideshow) {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
      $('#lightshowPause, #lightshowPlay').hide();
    }
    else if (Lightbox.isLightframe) {
      $('#frameContainer').empty().hide();
    }
    else if (Lightbox.isVideo || Lightbox.isModal) {
      if (!Lightbox.auto_modal) {
        $('#modalContainer').hide().html("");
      }
      Lightbox.auto_modal = false;
    }
  },


  // getPageScroll()
  // Returns array with x,y page scroll values.
  // Core code from - quirksmode.com.
  getPageScroll : function() {

    var xScroll, yScroll;

    if (self.pageYOffset || self.pageXOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {  // Explorer 6 Strict.
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    }
    else if (document.body) {// All other Explorers.
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }

    arrayPageScroll = [xScroll,yScroll];
    return arrayPageScroll;
  },

  // getPageSize()
  // Returns array with page width, height and window width, height.
  // Core code from - quirksmode.com.
  // Edit for Firefox by pHaez.

  getPageSize : function() {

    var xScroll, yScroll;

    if (window.innerHeight && window.scrollMaxY) {
      xScroll = window.innerWidth + window.scrollMaxX;
      yScroll = window.innerHeight + window.scrollMaxY;
    }
    else if (document.body.scrollHeight > document.body.offsetHeight) { // All but Explorer Mac.
      xScroll = document.body.scrollWidth;
      yScroll = document.body.scrollHeight;
    }
    else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari.
      xScroll = document.body.offsetWidth;
      yScroll = document.body.offsetHeight;
    }

    var windowWidth, windowHeight;

    if (self.innerHeight) { // All except Explorer.
      if (document.documentElement.clientWidth) {
        windowWidth = document.documentElement.clientWidth;
      }
      else {
        windowWidth = self.innerWidth;
      }
      windowHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode.
      windowWidth = document.documentElement.clientWidth;
      windowHeight = document.documentElement.clientHeight;
    }
    else if (document.body) { // Other Explorers.
      windowWidth = document.body.clientWidth;
      windowHeight = document.body.clientHeight;
    }
    // For small pages with total height less than height of the viewport.
    if (yScroll < windowHeight) {
      pageHeight = windowHeight;
    }
    else {
      pageHeight = yScroll;
    }
    // For small pages with total width less than width of the viewport.
    if (xScroll < windowWidth) {
      pageWidth = xScroll;
    }
    else {
      pageWidth = windowWidth;
    }
    arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
    return arrayPageSize;
  },


  // pause(numberMillis)
  pause : function(ms) {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while (curDate - date < ms);
  },


  // toggleSelectsFlash()
  // Hide / unhide select lists and flash objects as they appear above the
  // lightbox in some browsers.
  toggleSelectsFlash: function (state) {
    if (state == 'visible') {
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").show();
    }
    else if (state == 'hide') {
      $("select:visible, embed:visible, object:visible").not('#lightboxAutoModal select, #lightboxAutoModal embed, #lightboxAutoModal object').addClass("lightbox_hidden");
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").hide();
    }
  },


  // parseRel()
  parseRel: function (link) {
    var parts = [];
    parts["rel"] = parts["title"] = parts["group"] = parts["style"] = parts["flashvars"] = null;
    if (!$(link).attr('rel')) return parts;
    parts["rel"] = $(link).attr('rel').match(/\w+/)[0];

    if ($(link).attr('rel').match(/\[(.*)\]/)) {
      var info = $(link).attr('rel').match(/\[(.*?)\]/)[1].split('|');
      parts["group"] = info[0];
      parts["style"] = info[1];
      if (parts["style"] != undefined && parts["style"].match(/flashvars:\s?(.*?);/)) {
        parts["flashvars"] = parts["style"].match(/flashvars:\s?(.*?);/)[1];
      }
    }
    if ($(link).attr('rel').match(/\[.*\]\[(.*)\]/)) {
      parts["title"] = $(link).attr('rel').match(/\[.*\]\[(.*)\]/)[1];
    }
    return parts;
  },

  // setStyles()
  setStyles: function(item, styles) {
    item.width = Lightbox.iframe_width;
    item.height = Lightbox.iframe_height;
    item.scrolling = "auto";

    if (!styles) return item;
    var stylesArray = styles.split(';');
    for (var i = 0; i< stylesArray.length; i++) {
      if (stylesArray[i].indexOf('width:') >= 0) {
        var w = stylesArray[i].replace('width:', '');
        item.width = jQuery.trim(w);
      }
      else if (stylesArray[i].indexOf('height:') >= 0) {
        var h = stylesArray[i].replace('height:', '');
        item.height = jQuery.trim(h);
      }
      else if (stylesArray[i].indexOf('scrolling:') >= 0) {
        var scrolling = stylesArray[i].replace('scrolling:', '');
        item.scrolling = jQuery.trim(scrolling);
      }
      else if (stylesArray[i].indexOf('overflow:') >= 0) {
        var overflow = stylesArray[i].replace('overflow:', '');
        item.overflow = jQuery.trim(overflow);
      }
    }
    return item;
  },


  // togglePlayPause()
  // Hide the pause / play button as appropriate.  If pausing the slideshow also
  // clear the timers, otherwise move onto the next image.
  togglePlayPause: function(hideId, showId) {
    if (Lightbox.isSlideshow && hideId == "lightshowPause") {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
    }
    $('#' + hideId).hide();
    $('#' + showId).show();

    if (hideId == "lightshowPlay") {
      Lightbox.isPaused = false;
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        Lightbox.end();
      }
      else if (Lightbox.total > 1) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    else {
      Lightbox.isPaused = true;
    }
  },

  triggerLightbox: function (rel_type, rel_group) {
    if (rel_type.length) {
      if (rel_group && rel_group.length) {
        $("a[rel^='" + rel_type +"\[" + rel_group + "\]'], area[rel^='" + rel_type +"\[" + rel_group + "\]']").eq(0).trigger("click");
      }
      else {
        $("a[rel^='" + rel_type +"'], area[rel^='" + rel_type +"']").eq(0).trigger("click");
      }
    }
  },

  detectMacFF2: function() {
    var ua = navigator.userAgent.toLowerCase();
    if (/firefox[\/\s](\d+\.\d+)/.test(ua)) {
      var ffversion = new Number(RegExp.$1);
      if (ffversion < 3 && ua.indexOf('mac') != -1) {
        return true;
      }
    }
    return false;
  },

  checkKey: function(keys, key, code) {
    return (jQuery.inArray(key, keys) != -1 || jQuery.inArray(String(code), keys) != -1);
  },

  filterXSS: function(str) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str
      },
      type: "POST",
      async: false,
      dataType:  "json",
      success: function(data) {
        output = data;
      }
    });
    return output;
  }

};

// Initialize the lightbox.
Drupal.behaviors.initLightbox = function (context) {
  $('body:not(.lightbox-processed)', context).addClass('lightbox-processed').each(function() {
    Lightbox.initialize();
    return false; // Break the each loop.
  });

  // Attach lightbox to any links with lightbox rels.
  Lightbox.initList(context);
  $('#lightboxAutoModal', context).triggerHandler('click');
};

;
/**
* hoverIntent r6 // 2011.02.26 // jQuery 1.5.1+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne brian(at)cherne(dot)net
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev])}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev])};var handleHover=function(e){var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t)}if(e.type=="mouseenter"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob)},cfg.timeout)}}};return this.bind('mouseenter',handleHover).bind('mouseleave',handleHover)}})(jQuery);;
/* Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
 * Licensed under the MIT License (LICENSE.txt).
 *
 * Version 2.1.2
 */
(function(a){a.fn.bgiframe=(a.browser.msie&&/msie 6\.0/i.test(navigator.userAgent)?function(d){d=a.extend({top:"auto",left:"auto",width:"auto",height:"auto",opacity:true,src:"javascript:false;"},d);var c='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+d.src+'"style="display:block;position:absolute;z-index:-1;'+(d.opacity!==false?"filter:Alpha(Opacity='0');":"")+"top:"+(d.top=="auto"?"expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+'px')":b(d.top))+";left:"+(d.left=="auto"?"expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+'px')":b(d.left))+";width:"+(d.width=="auto"?"expression(this.parentNode.offsetWidth+'px')":b(d.width))+";height:"+(d.height=="auto"?"expression(this.parentNode.offsetHeight+'px')":b(d.height))+';"/>';return this.each(function(){if(a(this).children("iframe.bgiframe").length===0){this.insertBefore(document.createElement(c),this.firstChild)}})}:function(){return this});a.fn.bgIframe=a.fn.bgiframe;function b(c){return c&&c.constructor===Number?c+"px":c}})(jQuery);;
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

(function($){
  $.fn.superfish = function(op){
    var sf = $.fn.superfish,
      c = sf.c,
      $arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
      over = function(){
        var $$ = $(this), menu = getMenu($$);
        clearTimeout(menu.sfTimer);
        $$.showSuperfishUl().siblings().hideSuperfishUl();
      },
      out = function(){
        var $$ = $(this), menu = getMenu($$), o = sf.op;
        clearTimeout(menu.sfTimer);
        menu.sfTimer=setTimeout(function(){
          o.retainPath=($.inArray($$[0],o.$path)>-1);
          $$.hideSuperfishUl();
          if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
        },o.delay);
      },
      getMenu = function($menu){
        var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
        sf.op = sf.o[menu.serial];
        return menu;
      },
      addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };

    return this.each(function() {
      var s = this.serial = sf.o.length;
      var o = $.extend({},sf.defaults,op);
      o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
        $(this).addClass([o.hoverClass,c.bcClass].join(' '))
          .filter('li:has(ul)').removeClass(o.pathClass);
      });
      sf.o[s] = sf.op = o;

      $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
        if (o.autoArrows) addArrow( $('>a:first-child',this) );
      })
      .not('.'+c.bcClass)
        .hideSuperfishUl();

      var $a = $('a',this);
      $a.each(function(i){
        var $li = $a.eq(i).parents('li');
        $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
      });
      o.onInit.call(this);

    }).each(function() {
      var menuClasses = [c.menuClass];
      if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
      $(this).addClass(menuClasses.join(' '));
    });
  };

  var sf = $.fn.superfish;
  sf.o = [];
  sf.op = {};
  sf.IE7fix = function(){
    var o = sf.op;
    if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
      this.toggleClass(sf.c.shadowClass+'-off');
    };
  sf.c = {
    bcClass: 'sf-breadcrumb',
    menuClass: 'sf-js-enabled',
    anchorClass: 'sf-with-ul',
    arrowClass: 'sf-sub-indicator',
    shadowClass: 'sf-shadow'
  };
  sf.defaults = {
    hoverClass: 'sfHover',
    pathClass: 'overideThisToUse',
    pathLevels: 1,
    delay: 800,
    animation: {opacity:'show'},
    speed: 'normal',
    autoArrows: true,
    dropShadows: true,
    disableHI: false, // true disables hoverIntent detection
    onInit: function(){}, // callback functions
    onBeforeShow: function(){},
    onShow: function(){},
    onHide: function(){}
  };
  $.fn.extend({
    hideSuperfishUl : function(){
      var o = sf.op,
        not = (o.retainPath===true) ? o.$path : '';
      o.retainPath = false;
      var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
          .find('>ul').hide().css('visibility','hidden');
      o.onHide.call($ul);
      return this;
    },
    showSuperfishUl : function(){
      var o = sf.op,
        sh = sf.c.shadowClass+'-off',
        $ul = this.addClass(o.hoverClass)
          .find('>ul:hidden').css('visibility','visible');
      sf.IE7fix.call($ul);
      o.onBeforeShow.call($ul);
      $ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
      return this;
    }
  });
})(jQuery);;
/*
 * Supersubs v0.2b - jQuery plugin - LAST UPDATE: MARCH 23rd, 2011
 * Copyright (c) 2008 Joel Birch
 *
 * Jan 16th, 2011 - Modified a little in order to work with NavBar menus as well.
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of
 * their longest list item children. If you use this, please expect bugs and report them
 * to the jQuery Google Group with the word 'Superfish' in the subject line.
 *
 */

(function($){ // $ will refer to jQuery within this closure

  $.fn.supersubs = function(options){
    var opts = $.extend({}, $.fn.supersubs.defaults, options);
	// return original object to support chaining
    return this.each(function() {
      // cache selections
      var $$ = $(this);
      // support metadata
      var o = $.meta ? $.extend({}, opts, $$.data()) : opts;
      // get the font size of menu.
      // .css('fontSize') returns various results cross-browser, so measure an em dash instead
      var fontsize = $('<li id="menu-fontsize">&#8212;</li>').css({
        'padding' : 0,
        'position' : 'absolute',
        'top' : '-99999em',
        'width' : 'auto'
      }).appendTo($$).width(); //clientWidth is faster, but was incorrect here
      // remove em dash
      $('#menu-fontsize').remove();

      // Jump on level if it's a "NavBar"
      if ($$.hasClass('sf-navbar')) {
        $$ = $('li > ul', $$);
      }
      // cache all ul elements 
      $ULs = $$.find('ul:not(.sf-megamenu)');
      // loop through each ul in menu
      $ULs.each(function(i) {
        // cache this ul
        var $ul = $ULs.eq(i);
        // get all (li) children of this ul
        var $LIs = $ul.children();
        // get all anchor grand-children
        var $As = $LIs.children('a');
        // force content to one line and save current float property
        var liFloat = $LIs.css('white-space','nowrap').css('float');
        // remove width restrictions and floats so elements remain vertically stacked
        var emWidth = $ul.add($LIs).add($As).css({
          'float' : 'none',
          'width'  : 'auto'
        })
        // this ul will now be shrink-wrapped to longest li due to position:absolute
        // so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer
        .end().end()[0].clientWidth / fontsize;
        // add more width to ensure lines don't turn over at certain sizes in various browsers
        emWidth += o.extraWidth;
        // restrict to at least minWidth and at most maxWidth
        if (emWidth > o.maxWidth)    { emWidth = o.maxWidth; }
        else if (emWidth < o.minWidth)  { emWidth = o.minWidth; }
        emWidth += 'em';
        // set ul to width in ems
        $ul.css('width',emWidth);
        // restore li floats to avoid IE bugs
        // set li width to full width of this ul
        // revert white-space to normal
        $LIs.css({
          'float' : liFloat,
          'width' : '100%',
          'white-space' : 'normal'
        })
        // update offset position of descendant ul to reflect new width of parent
        .each(function(){
          var $childUl = $('>ul',this);
          var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right';
          $childUl.css(offsetDirection,emWidth);
        });
      });

    });
  };
  // expose defaults
  $.fn.supersubs.defaults = {
    minWidth: 9, // requires em unit.
    maxWidth: 25, // requires em unit.
    extraWidth: 0 // extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values
  };

})(jQuery); // plugin code ends;
/*
* Supposition v0.2 - an optional enhancer for Superfish jQuery menu widget - LAST UPDATE: MARCH 23rd, 2011
*
* Copyright (c) 2008 Joel Birch - based mostly on work by Jesse Klaasse and credit goes largely to him.
* Special thanks to Karl Swedberg for valuable input.
* 
* Dec 28th, 2010 - Modified for the Superfish project for Drupal (http://drupal.org/project/superfish)
*
* jQuery version: 1.3.x or higher.
*
* Dual licensed under the MIT and GPL licenses:
* 	http://www.opensource.org/licenses/mit-license.php
* 	http://www.gnu.org/licenses/gpl.html
*/

(function($){
  $.fn.supposition = function(){
    var $w = $(window), /*do this once instead of every onBeforeShow call*/
    _offset = function(dir) {
      return window[dir == 'y' ? 'pageYOffset' : 'pageXOffset']
      || document.documentElement && document.documentElement[dir=='y' ? 'scrollTop' : 'scrollLeft']
      || document.body[dir=='y' ? 'scrollTop' : 'scrollLeft'];
    },
    onHide = function(){
      this.css({Top:'',Right:'',Bottom:'',Left:''});
    },
    onBeforeShow = function(){
      this.each(function(){
        var $u = $(this);
        $u.css('display','block');
        var menuWidth = $u.width(),
        menuParentWidth = $u.closest('li').outerWidth(true),
        menuParentLeft = $u.closest('li').offset().left,
        totalRight = $w.width() + _offset('x'),
        menuRight = $u.offset().left + menuWidth,
        exactMenuWidth = (menuRight > (menuParentWidth + menuParentLeft)) ? menuWidth - (menuRight - (menuParentWidth + menuParentLeft)) : menuWidth;  
        if ($u.parents('.sf-js-enabled').hasClass('rtl')) {
          if (menuParentLeft < exactMenuWidth) {
            $u.css('left', menuParentWidth + 'px');
            $u.css('right', 'auto');
          }
        }
        else {
          if (menuRight > totalRight && menuParentLeft > menuWidth) {
            $u.css('right', menuParentWidth + 'px');
            $u.css('left', 'auto');
          }
        }
        var windowHeight = $w.height(),
        offsetTop = $u.offset().top,
        menuParentHeight = $u.parent().outerHeight(true),
        menuHeight = $u.height(),
        baseline = windowHeight + _offset('y');
        var expandUp = ((offsetTop + menuHeight > baseline) && (offsetTop > menuHeight));
        if (expandUp) {
          $u.css('bottom', menuParentHeight + 'px');
          $u.css('top', 'auto');
        }
        $u.css('display','none');
      });
    };

    return this.each(function() {
    var o = $.fn.superfish.o[this.serial]; /* get this menu's options */

    /* if callbacks already set, store them */
    var _onBeforeShow = o.onBeforeShow,
    _onHide = o.onHide;

    $.extend($.fn.superfish.o[this.serial],{
    onBeforeShow: function() {
    onBeforeShow.call(this); /* fire our Supposition callback */
    _onBeforeShow.call(this); /* fire stored callbacks */
    },
    onHide: function() {
    onHide.call(this); /* fire our Supposition callback */
    _onHide.call(this); /* fire stored callbacks */
    }
    });
    });
  };
})(jQuery);;
/*
 * sf-Touchscreen v1.0b - Provides touchscreen compatibility for the jQuery Superfish plugin. - LAST UPDATE: MARCH 23rd, 2011
 *
 * Developer's notes:
 * Built as a part of the Superfish project for Drupal (http://drupal.org/project/superfish) 
 * Found any bug? have any cool ideas? contact me right away! http://drupal.org/user/619294/contact
 *
 * jQuery version: 1.3.x or higher.
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
*/

(function($){
  $.fn.sftouchscreen = function() {
    // Return original object to support chaining.
    return this.each( function() {
      // Select hyperlinks from parent menu items.
      $(this).find('li > ul').closest('li').children('a').each( function() {
	    var $item = $(this);
        // No .toggle() here as it's not possible to reset it.
        $item.click( function(event){
	      // Already clicked? proceed to the URI.
          if ($item.hasClass('sf-clicked')) {
            var $uri = $item.attr('href');
            window.location = $uri;
          }
          else {
            event.preventDefault();
            $item.addClass('sf-clicked');
          }
        }).closest('li').mouseleave( function(){
          // So, we reset everything.
          $item.removeClass('sf-clicked');
        });
	  });
    });
  };
})(jQuery);;
(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return }var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return }if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery);
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
/*
 * jQuery Cycle Plugin (core engine)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);;
/*!
 * jQuery UI 1.8.15
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI
 */
(function(c,j){function k(a,b){var d=a.nodeName.toLowerCase();if("area"===d){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&l(a)}return(/input|select|textarea|button|object/.test(d)?!a.disabled:"a"==d?a.href||b:b)&&l(a)}function l(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.15",
keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({propAttr:c.fn.prop||c.fn.attr,_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=
this;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this,"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,
"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position");if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind((c.support.selectstart?"selectstart":
"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,m,n){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(m)g-=parseFloat(c.curCSS(f,"border"+this+"Width",true))||0;if(n)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,
outerWidth:c.fn.outerWidth,outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c(this).css(h,d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){return k(a,!isNaN(c.attr(a,"tabindex")))},tabbable:function(a){var b=c.attr(a,
"tabindex"),d=isNaN(b);return(d||b>=0)&&k(a,!d)}});c(function(){var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&
a.element[0].parentNode)for(var e=0;e<b.length;e++)a.options[b[e][0]]&&b[e][1].apply(a.element,d)}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(a,b){if(c(a).css("overflow")==="hidden")return false;b=b&&b==="left"?"scrollLeft":"scrollTop";var d=false;if(a[b]>0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a<b+d},isOver:function(a,b,d,e,h,i){return c.ui.isOverAxis(a,d,h)&&
c.ui.isOverAxis(b,e,i)}})}})(jQuery);
;
/*
 * jQuery UI Datepicker 1.8.15
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker
 *
 * Depends:
 *	jquery.ui.core.js
 */
(function(d,C){function M(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._inDialog=this._datepickerShowing=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass=
"ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su",
"Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:false,showMonthAfterYear:false,yearSuffix:""};this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,yearRange:"c-10:c+10",showOtherMonths:false,selectOtherMonths:false,showWeek:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",
minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false,autoSize:false,disabled:false};d.extend(this._defaults,this.regional[""]);this.dpDiv=N(d('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}function N(a){return a.bind("mouseout",
function(b){b=d(b.target).closest("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a");b.length&&b.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover")}).bind("mouseover",function(b){b=d(b.target).closest("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a");if(!(d.datepicker._isDisabledDatepicker(J.inline?a.parent()[0]:J.input[0])||!b.length)){b.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");
b.addClass("ui-state-hover");b.hasClass("ui-datepicker-prev")&&b.addClass("ui-datepicker-prev-hover");b.hasClass("ui-datepicker-next")&&b.addClass("ui-datepicker-next-hover")}})}function H(a,b){d.extend(a,b);for(var c in b)if(b[c]==null||b[c]==C)a[c]=b[c];return a}d.extend(d.ui,{datepicker:{version:"1.8.15"}});var B=(new Date).getTime(),J;d.extend(M.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},
setDefaults:function(a){H(this._defaults,a||{});return this},_attachDatepicker:function(a,b){var c=null;for(var e in this._defaults){var f=a.getAttribute("date:"+e);if(f){c=c||{};try{c[e]=eval(f)}catch(h){c[e]=f}}}e=a.nodeName.toLowerCase();f=e=="div"||e=="span";if(!a.id){this.uuid+=1;a.id="dp"+this.uuid}var i=this._newInst(d(a),f);i.settings=d.extend({},b||{},c||{});if(e=="input")this._connectDatepicker(a,i);else f&&this._inlineDatepicker(a,i)},_newInst:function(a,b){return{id:a[0].id.replace(/([^A-Za-z0-9_-])/g,
"\\\\$1"),input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:!b?this.dpDiv:N(d('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(a,b){var c=d(a);b.append=d([]);b.trigger=d([]);if(!c.hasClass(this.markerClassName)){this._attachments(c,b);c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",
function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});this._autoSize(b);d.data(a,"datepicker",b);b.settings.disabled&&this._disableDatepicker(a)}},_attachments:function(a,b){var c=this._get(b,"appendText"),e=this._get(b,"isRTL");b.append&&b.append.remove();if(c){b.append=d('<span class="'+this._appendClass+'">'+c+"</span>");a[e?"before":"after"](b.append)}a.unbind("focus",this._showDatepicker);b.trigger&&b.trigger.remove();c=this._get(b,"showOn");if(c==
"focus"||c=="both")a.focus(this._showDatepicker);if(c=="button"||c=="both"){c=this._get(b,"buttonText");var f=this._get(b,"buttonImage");b.trigger=d(this._get(b,"buttonImageOnly")?d("<img/>").addClass(this._triggerClass).attr({src:f,alt:c,title:c}):d('<button type="button"></button>').addClass(this._triggerClass).html(f==""?c:d("<img/>").attr({src:f,alt:c,title:c})));a[e?"before":"after"](b.trigger);b.trigger.click(function(){d.datepicker._datepickerShowing&&d.datepicker._lastInput==a[0]?d.datepicker._hideDatepicker():
d.datepicker._showDatepicker(a[0]);return false})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var e=function(f){for(var h=0,i=0,g=0;g<f.length;g++)if(f[g].length>h){h=f[g].length;i=g}return i};b.setMonth(e(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,
b){var c=d(a);if(!c.hasClass(this.markerClassName)){c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaultDate(b),true);this._updateDatepicker(b);this._updateAlternate(b);b.settings.disabled&&this._disableDatepicker(a);b.dpDiv.css("display","block")}},_dialogDatepicker:function(a,b,c,e,f){a=this._dialogInst;if(!a){this.uuid+=
1;this._dialogInput=d('<input type="text" id="'+("dp"+this.uuid)+'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');this._dialogInput.keydown(this._doKeyDown);d("body").append(this._dialogInput);a=this._dialogInst=this._newInst(this._dialogInput,false);a.settings={};d.data(this._dialogInput[0],"datepicker",a)}H(a.settings,e||{});b=b&&b.constructor==Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=f?f.length?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=[document.documentElement.clientWidth/
2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/2-150+(document.documentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSelect=c;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker",a);return this},_destroyDatepicker:function(a){var b=
d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();d.removeData(a,"datepicker");if(e=="input"){c.append.remove();c.trigger.remove();b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)}else if(e=="div"||e=="span")b.removeClass(this.markerClassName).empty()}},_enableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=
a.nodeName.toLowerCase();if(e=="input"){a.disabled=false;c.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else if(e=="div"||e=="span"){b=b.children("."+this._inlineClass);b.children().removeClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f})}},_disableDatepicker:function(a){var b=d(a),c=d.data(a,
"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=true;c.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else if(e=="div"||e=="span"){b=b.children("."+this._inlineClass);b.children().addClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){return f==
a?null:f});this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return false;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return true;return false},_getInst:function(a){try{return d.data(a,"datepicker")}catch(b){throw"Missing instance data for this datepicker";}},_optionDatepicker:function(a,b,c){var e=this._getInst(a);if(arguments.length==2&&typeof b=="string")return b=="defaults"?d.extend({},d.datepicker._defaults):e?b=="all"?
d.extend({},e.settings):this._get(e,b):null;var f=b||{};if(typeof b=="string"){f={};f[b]=c}if(e){this._curInst==e&&this._hideDatepicker();var h=this._getDateDatepicker(a,true),i=this._getMinMaxDate(e,"min"),g=this._getMinMaxDate(e,"max");H(e.settings,f);if(i!==null&&f.dateFormat!==C&&f.minDate===C)e.settings.minDate=this._formatDate(e,i);if(g!==null&&f.dateFormat!==C&&f.maxDate===C)e.settings.maxDate=this._formatDate(e,g);this._attachments(d(a),e);this._autoSize(e);this._setDate(e,h);this._updateAlternate(e);
this._updateDatepicker(e)}},_changeDatepicker:function(a,b,c){this._optionDatepicker(a,b,c)},_refreshDatepicker:function(a){(a=this._getInst(a))&&this._updateDatepicker(a)},_setDateDatepicker:function(a,b){if(a=this._getInst(a)){this._setDate(a,b);this._updateDatepicker(a);this._updateAlternate(a)}},_getDateDatepicker:function(a,b){(a=this._getInst(a))&&!a.inline&&this._setDateFromField(a,b);return a?this._getDate(a):null},_doKeyDown:function(a){var b=d.datepicker._getInst(a.target),c=true,e=b.dpDiv.is(".ui-datepicker-rtl");
b._keyEvent=true;if(d.datepicker._datepickerShowing)switch(a.keyCode){case 9:d.datepicker._hideDatepicker();c=false;break;case 13:c=d("td."+d.datepicker._dayOverClass+":not(."+d.datepicker._currentClass+")",b.dpDiv);c[0]&&d.datepicker._selectDay(a.target,b.selectedMonth,b.selectedYear,c[0]);if(a=d.datepicker._get(b,"onSelect")){c=d.datepicker._formatDate(b);a.apply(b.input?b.input[0]:null,[c,b])}else d.datepicker._hideDatepicker();return false;case 27:d.datepicker._hideDatepicker();break;case 33:d.datepicker._adjustDate(a.target,
a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 34:d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 35:if(a.ctrlKey||a.metaKey)d.datepicker._clearDate(a.target);c=a.ctrlKey||a.metaKey;break;case 36:if(a.ctrlKey||a.metaKey)d.datepicker._gotoToday(a.target);c=a.ctrlKey||a.metaKey;break;case 37:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?+1:-1,"D");c=
a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 38:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,-7,"D");c=a.ctrlKey||a.metaKey;break;case 39:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?-1:+1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,
"stepMonths"),"M");break;case 40:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,+7,"D");c=a.ctrlKey||a.metaKey;break;default:c=false}else if(a.keyCode==36&&a.ctrlKey)d.datepicker._showDatepicker(this);else c=false;if(c){a.preventDefault();a.stopPropagation()}},_doKeyPress:function(a){var b=d.datepicker._getInst(a.target);if(d.datepicker._get(b,"constrainInput")){b=d.datepicker._possibleChars(d.datepicker._get(b,"dateFormat"));var c=String.fromCharCode(a.charCode==C?a.keyCode:a.charCode);
return a.ctrlKey||a.metaKey||c<" "||!b||b.indexOf(c)>-1}},_doKeyUp:function(a){a=d.datepicker._getInst(a.target);if(a.input.val()!=a.lastVal)try{if(d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._getFormatConfig(a))){d.datepicker._setDateFromField(a);d.datepicker._updateAlternate(a);d.datepicker._updateDatepicker(a)}}catch(b){d.datepicker.log(b)}return true},_showDatepicker:function(a){a=a.target||a;if(a.nodeName.toLowerCase()!="input")a=d("input",
a.parentNode)[0];if(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput==a)){var b=d.datepicker._getInst(a);if(d.datepicker._curInst&&d.datepicker._curInst!=b){d.datepicker._datepickerShowing&&d.datepicker._triggerOnClose(d.datepicker._curInst);d.datepicker._curInst.dpDiv.stop(true,true)}var c=d.datepicker._get(b,"beforeShow");H(b.settings,c?c.apply(a,[a,b]):{});b.lastVal=null;d.datepicker._lastInput=a;d.datepicker._setDateFromField(b);if(d.datepicker._inDialog)a.value="";if(!d.datepicker._pos){d.datepicker._pos=
d.datepicker._findPos(a);d.datepicker._pos[1]+=a.offsetHeight}var e=false;d(a).parents().each(function(){e|=d(this).css("position")=="fixed";return!e});if(e&&d.browser.opera){d.datepicker._pos[0]-=document.documentElement.scrollLeft;d.datepicker._pos[1]-=document.documentElement.scrollTop}c={left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d.datepicker._pos=null;b.dpDiv.empty();b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});d.datepicker._updateDatepicker(b);c=d.datepicker._checkOffset(b,
c,e);b.dpDiv.css({position:d.datepicker._inDialog&&d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",top:c.top+"px"});if(!b.inline){c=d.datepicker._get(b,"showAnim");var f=d.datepicker._get(b,"duration"),h=function(){var i=b.dpDiv.find("iframe.ui-datepicker-cover");if(i.length){var g=d.datepicker._getBorders(b.dpDiv);i.css({left:-g[0],top:-g[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex(d(a).zIndex()+1);d.datepicker._datepickerShowing=true;d.effects&&
d.effects[c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f,h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=b}}},_updateDatepicker:function(a){this.maxRows=4;var b=d.datepicker._getBorders(a.dpDiv);J=a;a.dpDiv.empty().append(this._generateHTML(a));var c=a.dpDiv.find("iframe.ui-datepicker-cover");c.length&&c.css({left:-b[0],top:-b[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()});a.dpDiv.find("."+
this._dayOverClass+" a").mouseover();b=this._getNumberOfMonths(a);c=b[1];a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");c>1&&a.dpDiv.addClass("ui-datepicker-multi-"+c).css("width",17*c+"em");a.dpDiv[(b[0]!=1||b[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");a==d.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&
a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var e=a.yearshtml;setTimeout(function(){e===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml);e=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(c){return{thin:1,medium:2,thick:3}[c]||c};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var e=a.dpDiv.outerWidth(),f=a.dpDiv.outerHeight(),h=a.input?a.input.outerWidth():
0,i=a.input?a.input.outerHeight():0,g=document.documentElement.clientWidth+d(document).scrollLeft(),j=document.documentElement.clientHeight+d(document).scrollTop();b.left-=this._get(a,"isRTL")?e-h:0;b.left-=c&&b.left==a.input.offset().left?d(document).scrollLeft():0;b.top-=c&&b.top==a.input.offset().top+i?d(document).scrollTop():0;b.left-=Math.min(b.left,b.left+e>g&&g>e?Math.abs(b.left+e-g):0);b.top-=Math.min(b.top,b.top+f>j&&j>f?Math.abs(f+i):0);return b},_findPos:function(a){for(var b=this._get(this._getInst(a),
"isRTL");a&&(a.type=="hidden"||a.nodeType!=1||d.expr.filters.hidden(a));)a=a[b?"previousSibling":"nextSibling"];a=d(a).offset();return[a.left,a.top]},_triggerOnClose:function(a){var b=this._get(a,"onClose");if(b)b.apply(a.input?a.input[0]:null,[a.input?a.input.val():"",a])},_hideDatepicker:function(a){var b=this._curInst;if(!(!b||a&&b!=d.data(a,"datepicker")))if(this._datepickerShowing){a=this._get(b,"showAnim");var c=this._get(b,"duration"),e=function(){d.datepicker._tidyDialog(b);this._curInst=
null};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._get(b,"showOptions"),c,e):b.dpDiv[a=="slideDown"?"slideUp":a=="fadeIn"?"fadeOut":"hide"](a?c:null,e);a||e();d.datepicker._triggerOnClose(b);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if(d.blockUI){d.unblockUI();d("body").append(this.dpDiv)}}this._inDialog=false}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},
_checkExternalClick:function(a){if(d.datepicker._curInst){a=d(a.target);a[0].id!=d.datepicker._mainDivId&&a.parents("#"+d.datepicker._mainDivId).length==0&&!a.hasClass(d.datepicker.markerClassName)&&!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){a=d(a);var e=this._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):
0),c);this._updateDatepicker(e)}},_gotoToday:function(a){a=d(a);var b=this._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){b.selectedDay=b.currentDay;b.drawMonth=b.selectedMonth=b.currentMonth;b.drawYear=b.selectedYear=b.currentYear}else{var c=new Date;b.selectedDay=c.getDate();b.drawMonth=b.selectedMonth=c.getMonth();b.drawYear=b.selectedYear=c.getFullYear()}this._notifyChange(b);this._adjustDate(a)},_selectMonthYear:function(a,b,c){a=d(a);var e=this._getInst(a[0]);e["selected"+(c=="M"?
"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDate(a)},_selectDay:function(a,b,c,e){var f=d(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDatepicker(f[0]))){f=this._getInst(f[0]);f.selectedDay=f.currentDay=d("a",e).html();f.selectedMonth=f.currentMonth=b;f.selectedYear=f.currentYear=c;this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){a=d(a);
this._getInst(a[0]);this._selectDate(a,"")},_selectDate:function(a,b){a=this._getInst(d(a)[0]);b=b!=null?b:this._formatDate(a);a.input&&a.input.val(b);this._updateAlternate(a);var c=this._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);else a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);else{this._hideDatepicker();this._lastInput=a.input[0];a.input.focus();this._lastInput=null}},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,
"altFormat")||this._get(a,"dateFormat"),e=this._getDate(a),f=this.formatDate(c,e,this._getFormatConfig(a));d(b).each(function(){d(this).val(f)})}},noWeekends:function(a){a=a.getDay();return[a>0&&a<6,""]},iso8601Week:function(a){a=new Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var b=a.getTime();a.setMonth(0);a.setDate(1);return Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b==
"")return null;var e=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;e=typeof e!="string"?e:(new Date).getFullYear()%100+parseInt(e,10);for(var f=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,h=(c?c.dayNames:null)||this._defaults.dayNames,i=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,j=c=-1,l=-1,u=-1,k=false,o=function(p){(p=A+1<a.length&&a.charAt(A+1)==p)&&A++;return p},m=function(p){var D=o(p);p=new RegExp("^\\d{1,"+
(p=="@"?14:p=="!"?20:p=="y"&&D?4:p=="o"?3:2)+"}");p=b.substring(q).match(p);if(!p)throw"Missing number at position "+q;q+=p[0].length;return parseInt(p[0],10)},n=function(p,D,K){p=d.map(o(p)?K:D,function(w,x){return[[x,w]]}).sort(function(w,x){return-(w[1].length-x[1].length)});var E=-1;d.each(p,function(w,x){w=x[1];if(b.substr(q,w.length).toLowerCase()==w.toLowerCase()){E=x[0];q+=w.length;return false}});if(E!=-1)return E+1;else throw"Unknown name at position "+q;},s=function(){if(b.charAt(q)!=a.charAt(A))throw"Unexpected literal at position "+
q;q++},q=0,A=0;A<a.length;A++)if(k)if(a.charAt(A)=="'"&&!o("'"))k=false;else s();else switch(a.charAt(A)){case "d":l=m("d");break;case "D":n("D",f,h);break;case "o":u=m("o");break;case "m":j=m("m");break;case "M":j=n("M",i,g);break;case "y":c=m("y");break;case "@":var v=new Date(m("@"));c=v.getFullYear();j=v.getMonth()+1;l=v.getDate();break;case "!":v=new Date((m("!")-this._ticksTo1970)/1E4);c=v.getFullYear();j=v.getMonth()+1;l=v.getDate();break;case "'":if(o("'"))s();else k=true;break;default:s()}if(q<
b.length)throw"Extra/unparsed characters found in date: "+b.substring(q);if(c==-1)c=(new Date).getFullYear();else if(c<100)c+=(new Date).getFullYear()-(new Date).getFullYear()%100+(c<=e?0:-100);if(u>-1){j=1;l=u;do{e=this._getDaysInMonth(c,j-1);if(l<=e)break;j++;l-=e}while(1)}v=this._daylightSavingAdjust(new Date(c,j-1,l));if(v.getFullYear()!=c||v.getMonth()+1!=j||v.getDate()!=l)throw"Invalid date";return v},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",
RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1E7,formatDate:function(a,b,c){if(!b)return"";var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,h=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort;c=(c?c.monthNames:null)||this._defaults.monthNames;var i=function(o){(o=k+1<a.length&&
a.charAt(k+1)==o)&&k++;return o},g=function(o,m,n){m=""+m;if(i(o))for(;m.length<n;)m="0"+m;return m},j=function(o,m,n,s){return i(o)?s[m]:n[m]},l="",u=false;if(b)for(var k=0;k<a.length;k++)if(u)if(a.charAt(k)=="'"&&!i("'"))u=false;else l+=a.charAt(k);else switch(a.charAt(k)){case "d":l+=g("d",b.getDate(),2);break;case "D":l+=j("D",b.getDay(),e,f);break;case "o":l+=g("o",Math.round(((new Date(b.getFullYear(),b.getMonth(),b.getDate())).getTime()-(new Date(b.getFullYear(),0,0)).getTime())/864E5),3);
break;case "m":l+=g("m",b.getMonth()+1,2);break;case "M":l+=j("M",b.getMonth(),h,c);break;case "y":l+=i("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%100;break;case "@":l+=b.getTime();break;case "!":l+=b.getTime()*1E4+this._ticksTo1970;break;case "'":if(i("'"))l+="'";else u=true;break;default:l+=a.charAt(k)}return l},_possibleChars:function(a){for(var b="",c=false,e=function(h){(h=f+1<a.length&&a.charAt(f+1)==h)&&f++;return h},f=0;f<a.length;f++)if(c)if(a.charAt(f)=="'"&&!e("'"))c=
false;else b+=a.charAt(f);else switch(a.charAt(f)){case "d":case "m":case "y":case "@":b+="0123456789";break;case "D":case "M":return null;case "'":if(e("'"))b+="'";else c=true;break;default:b+=a.charAt(f)}return b},_get:function(a,b){return a.settings[b]!==C?a.settings[b]:this._defaults[b]},_setDateFromField:function(a,b){if(a.input.val()!=a.lastVal){var c=this._get(a,"dateFormat"),e=a.lastVal=a.input?a.input.val():null,f,h;f=h=this._getDefaultDate(a);var i=this._getFormatConfig(a);try{f=this.parseDate(c,
e,i)||h}catch(g){this.log(g);e=b?"":e}a.selectedDay=f.getDate();a.drawMonth=a.selectedMonth=f.getMonth();a.drawYear=a.selectedYear=f.getFullYear();a.currentDay=e?f.getDate():0;a.currentMonth=e?f.getMonth():0;a.currentYear=e?f.getFullYear():0;this._adjustInstDate(a)}},_getDefaultDate:function(a){return this._restrictMinMax(a,this._determineDate(a,this._get(a,"defaultDate"),new Date))},_determineDate:function(a,b,c){var e=function(h){var i=new Date;i.setDate(i.getDate()+h);return i},f=function(h){try{return d.datepicker.parseDate(d.datepicker._get(a,
"dateFormat"),h,d.datepicker._getFormatConfig(a))}catch(i){}var g=(h.toLowerCase().match(/^c/)?d.datepicker._getDate(a):null)||new Date,j=g.getFullYear(),l=g.getMonth();g=g.getDate();for(var u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,k=u.exec(h);k;){switch(k[2]||"d"){case "d":case "D":g+=parseInt(k[1],10);break;case "w":case "W":g+=parseInt(k[1],10)*7;break;case "m":case "M":l+=parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break;case "y":case "Y":j+=parseInt(k[1],10);g=Math.min(g,
d.datepicker._getDaysInMonth(j,l));break}k=u.exec(h)}return new Date(j,l,g)};if(b=(b=b==null||b===""?c:typeof b=="string"?f(b):typeof b=="number"?isNaN(b)?c:e(b):new Date(b.getTime()))&&b.toString()=="Invalid Date"?c:b){b.setHours(0);b.setMinutes(0);b.setSeconds(0);b.setMilliseconds(0)}return this._daylightSavingAdjust(b)},_daylightSavingAdjust:function(a){if(!a)return null;a.setHours(a.getHours()>12?a.getHours()+2:0);return a},_setDate:function(a,b,c){var e=!b,f=a.selectedMonth,h=a.selectedYear;
b=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=b.getDate();a.drawMonth=a.selectedMonth=a.currentMonth=b.getMonth();a.drawYear=a.selectedYear=a.currentYear=b.getFullYear();if((f!=a.selectedMonth||h!=a.selectedYear)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.val(e?"":this._formatDate(a));if(c=this._get(a,"onSelect")){e=this._formatDate(a);c.apply(a.input?a.input[0]:null,[e,a])}},_getDate:function(a){return!a.currentYear||a.input&&a.input.val()==
""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),e=this._get(a,"showButtonPanel"),f=this._get(a,"hideIfNoPrevNext"),h=this._get(a,"navigationAsDateFormat"),i=this._getNumberOfMonths(a),g=this._get(a,"showCurrentAtPos"),j=this._get(a,"stepMonths"),l=i[0]!=1||i[1]!=1,u=this._daylightSavingAdjust(!a.currentDay?new Date(9999,
9,9):new Date(a.currentYear,a.currentMonth,a.currentDay)),k=this._getMinMaxDate(a,"min"),o=this._getMinMaxDate(a,"max");g=a.drawMonth-g;var m=a.drawYear;if(g<0){g+=12;m--}if(o){var n=this._daylightSavingAdjust(new Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=k&&n<k?k:n;this._daylightSavingAdjust(new Date(m,g,1))>n;){g--;if(g<0){g=11;m--}}}a.drawMonth=g;a.drawYear=m;n=this._get(a,"prevText");n=!h?n:this.formatDate(n,this._daylightSavingAdjust(new Date(m,g-j,1)),this._getFormatConfig(a));
n=this._canAdjustMonth(a,-1,m,g)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_'+B+".datepicker._adjustDate('#"+a.id+"', -"+j+", 'M');\" title=\""+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>":f?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>";var s=this._get(a,"nextText");s=!h?s:this.formatDate(s,this._daylightSavingAdjust(new Date(m,
g+j,1)),this._getFormatConfig(a));f=this._canAdjustMonth(a,+1,m,g)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_'+B+".datepicker._adjustDate('#"+a.id+"', +"+j+", 'M');\" title=\""+s+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+s+"</span></a>":f?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+s+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+s+"</span></a>";j=this._get(a,"currentText");s=this._get(a,"gotoCurrent")&&
a.currentDay?u:b;j=!h?j:this.formatDate(j,s,this._getFormatConfig(a));h=!a.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_'+B+'.datepicker._hideDatepicker();">'+this._get(a,"closeText")+"</button>":"";e=e?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(c?h:"")+(this._isInRange(a,s)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+
B+".datepicker._gotoToday('#"+a.id+"');\">"+j+"</button>":"")+(c?"":h)+"</div>":"";h=parseInt(this._get(a,"firstDay"),10);h=isNaN(h)?0:h;j=this._get(a,"showWeek");s=this._get(a,"dayNames");this._get(a,"dayNamesShort");var q=this._get(a,"dayNamesMin"),A=this._get(a,"monthNames"),v=this._get(a,"monthNamesShort"),p=this._get(a,"beforeShowDay"),D=this._get(a,"showOtherMonths"),K=this._get(a,"selectOtherMonths");this._get(a,"calculateWeek");for(var E=this._getDefaultDate(a),w="",x=0;x<i[0];x++){var O=
"";this.maxRows=4;for(var G=0;G<i[1];G++){var P=this._daylightSavingAdjust(new Date(m,g,a.selectedDay)),t=" ui-corner-all",y="";if(l){y+='<div class="ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" ui-datepicker-group-first";t=" ui-corner-"+(c?"right":"left");break;case i[1]-1:y+=" ui-datepicker-group-last";t=" ui-corner-"+(c?"left":"right");break;default:y+=" ui-datepicker-group-middle";t="";break}y+='">'}y+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+t+'">'+(/all|left/.test(t)&&
x==0?c?f:n:"")+(/all|right/.test(t)&&x==0?c?n:f:"")+this._generateMonthYearHeader(a,g,m,k,o,x>0||G>0,A,v)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var z=j?'<th class="ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":"";for(t=0;t<7;t++){var r=(t+h)%7;z+="<th"+((t+h+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+s[r]+'">'+q[r]+"</span></th>"}y+=z+"</tr></thead><tbody>";z=this._getDaysInMonth(m,g);if(m==a.selectedYear&&g==a.selectedMonth)a.selectedDay=Math.min(a.selectedDay,
z);t=(this._getFirstDayOfMonth(m,g)-h+7)%7;z=Math.ceil((t+z)/7);this.maxRows=z=l?this.maxRows>z?this.maxRows:z:z;r=this._daylightSavingAdjust(new Date(m,g,1-t));for(var Q=0;Q<z;Q++){y+="<tr>";var R=!j?"":'<td class="ui-datepicker-week-col">'+this._get(a,"calculateWeek")(r)+"</td>";for(t=0;t<7;t++){var I=p?p.apply(a.input?a.input[0]:null,[r]):[true,""],F=r.getMonth()!=g,L=F&&!K||!I[0]||k&&r<k||o&&r>o;R+='<td class="'+((t+h+6)%7>=5?" ui-datepicker-week-end":"")+(F?" ui-datepicker-other-month":"")+(r.getTime()==
P.getTime()&&g==a.selectedMonth&&a._keyEvent||E.getTime()==r.getTime()&&E.getTime()==P.getTime()?" "+this._dayOverClass:"")+(L?" "+this._unselectableClass+" ui-state-disabled":"")+(F&&!D?"":" "+I[1]+(r.getTime()==u.getTime()?" "+this._currentClass:"")+(r.getTime()==b.getTime()?" ui-datepicker-today":""))+'"'+((!F||D)&&I[2]?' title="'+I[2]+'"':"")+(L?"":' onclick="DP_jQuery_'+B+".datepicker._selectDay('#"+a.id+"',"+r.getMonth()+","+r.getFullYear()+', this);return false;"')+">"+(F&&!D?"&#xa0;":L?'<span class="ui-state-default">'+
r.getDate()+"</span>":'<a class="ui-state-default'+(r.getTime()==b.getTime()?" ui-state-highlight":"")+(r.getTime()==u.getTime()?" ui-state-active":"")+(F?" ui-priority-secondary":"")+'" href="#">'+r.getDate()+"</a>")+"</td>";r.setDate(r.getDate()+1);r=this._daylightSavingAdjust(r)}y+=R+"</tr>"}g++;if(g>11){g=0;m++}y+="</tbody></table>"+(l?"</div>"+(i[0]>0&&G==i[1]-1?'<div class="ui-datepicker-row-break"></div>':""):"");O+=y}w+=O}w+=e+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':
"");a._keyEvent=false;return w},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){var j=this._get(a,"changeMonth"),l=this._get(a,"changeYear"),u=this._get(a,"showMonthAfterYear"),k='<div class="ui-datepicker-title">',o="";if(h||!j)o+='<span class="ui-datepicker-month">'+i[b]+"</span>";else{i=e&&e.getFullYear()==c;var m=f&&f.getFullYear()==c;o+='<select class="ui-datepicker-month" onchange="DP_jQuery_'+B+".datepicker._selectMonthYear('#"+a.id+"', this, 'M');\" >";for(var n=0;n<12;n++)if((!i||n>=e.getMonth())&&
(!m||n<=f.getMonth()))o+='<option value="'+n+'"'+(n==b?' selected="selected"':"")+">"+g[n]+"</option>";o+="</select>"}u||(k+=o+(h||!(j&&l)?"&#xa0;":""));if(!a.yearshtml){a.yearshtml="";if(h||!l)k+='<span class="ui-datepicker-year">'+c+"</span>";else{g=this._get(a,"yearRange").split(":");var s=(new Date).getFullYear();i=function(q){q=q.match(/c[+-].*/)?c+parseInt(q.substring(1),10):q.match(/[+-].*/)?s+parseInt(q,10):parseInt(q,10);return isNaN(q)?s:q};b=i(g[0]);g=Math.max(b,i(g[1]||""));b=e?Math.max(b,
e.getFullYear()):b;g=f?Math.min(g,f.getFullYear()):g;for(a.yearshtml+='<select class="ui-datepicker-year" onchange="DP_jQuery_'+B+".datepicker._selectMonthYear('#"+a.id+"', this, 'Y');\" >";b<=g;b++)a.yearshtml+='<option value="'+b+'"'+(b==c?' selected="selected"':"")+">"+b+"</option>";a.yearshtml+="</select>";k+=a.yearshtml;a.yearshtml=null}}k+=this._get(a,"yearSuffix");if(u)k+=(h||!(j&&l)?"&#xa0;":"")+o;k+="</div>";return k},_adjustInstDate:function(a,b,c){var e=a.drawYear+(c=="Y"?b:0),f=a.drawMonth+
(c=="M"?b:0);b=Math.min(a.selectedDay,this._getDaysInMonth(e,f))+(c=="D"?b:0);e=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(e,f,b)));a.selectedDay=e.getDate();a.drawMonth=a.selectedMonth=e.getMonth();a.drawYear=a.selectedYear=e.getFullYear();if(c=="M"||c=="Y")this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");b=c&&b<c?c:b;return b=a&&b>a?a:b},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");if(b)b.apply(a.input?
a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){a=this._get(a,"numberOfMonths");return a==null?[1,1]:typeof a=="number"?[1,a]:a},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){var f=this._getNumberOfMonths(a);c=this._daylightSavingAdjust(new Date(c,
e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getFullYear(),c.getMonth()));return this._isInRange(a,c)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!a||b.getTime()<=a.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,
"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,e){if(!b){a.currentDay=a.selectedDay;a.currentMonth=a.selectedMonth;a.currentYear=a.selectedYear}b=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(e,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});d.fn.datepicker=function(a){if(!this.length)return this;
if(!d.datepicker.initialized){d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepicker.initialized=true}var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));if(a=="option"&&arguments.length==2&&typeof arguments[1]=="string")return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));return this.each(function(){typeof a==
"string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=new M;d.datepicker.initialized=false;d.datepicker.uuid=(new Date).getTime();d.datepicker.version="1.8.15";window["DP_jQuery_"+B]=d})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1999-2002, Linotype Library GmbH & affiliates. All rights
 * reserved.
 * 
 * Trademark:
 * Linotype Zapfino is a Trademark of Heidelberger Druckmaschinen AG, which may be
 * registered in certain jurisdictions, exclusively licensed through Linotype
 * Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.
 * 
 * Description:
 * Today's digital font technology has allowed renowned type designer Hermann Zapf
 * to realise a dream he first had more than fifty years ago: to create a fully
 * calligraphic typeface.
 * 
 * Designer:
 * Hermann Zapf
 * 
 * Vendor URL:
 * http://www.linotypelibrary.com
 */
Cufon.registerFont({"w":360,"face":{"font-family":"Zapfino","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"3 3 3 0 4 7 7 7 12 3","ascent":"288","descent":"-72","x-height":"6","cap-height":"2","bbox":"-590 -798.25 961.744 546.166","underline-thickness":"45","underline-position":"-45","slope":"-29","unicode-range":"U+0009-U+FB03"},"glyphs":{" ":{"w":180},"\ufb00":{"d":"291,-382v40,-22,112,-6,77,36v-21,-28,-80,-29,-113,-3v-51,42,-80,115,-115,177r151,-4v77,-129,151,-264,326,-293v37,-6,64,18,53,62v-1,1,-3,1,-4,0v-4,-41,-75,-43,-119,-29v-113,35,-163,157,-220,259r79,-5v4,0,6,2,5,4v-19,9,-62,6,-89,10r-70,132v-64,120,-133,242,-271,284v-33,10,-76,6,-95,-14v-36,38,-87,84,-152,84v-48,0,-79,-31,-88,-72v0,-3,1,-5,3,-5v11,68,116,81,172,39v21,-16,43,-33,60,-51v-9,-19,6,-35,18,-43v1,7,3,12,6,16v79,-103,137,-246,197,-363v-18,-1,-44,5,-57,-2v9,-14,40,-10,62,-10v48,-87,98,-162,184,-209xm-91,209v59,56,155,3,192,-43v76,-94,122,-222,184,-332r-149,5r-64,127v-47,87,-99,171,-163,243","w":333},"\ufb01":{"d":"373,-325v7,0,16,5,16,12v0,13,-16,33,-31,32v-7,0,-11,-4,-11,-11v1,-15,10,-33,26,-33xm338,-439v24,-15,92,-38,100,3v3,16,-16,35,-26,47v-2,3,-3,4,-5,2v-2,-8,10,-17,8,-23v-7,-28,-61,-29,-88,-10v-80,56,-122,150,-172,235r95,-1v27,3,52,-11,74,-3v-27,50,-85,105,-95,177v-3,19,15,25,30,19v66,-23,122,-72,162,-126v1,-2,3,-3,5,-3v2,0,2,3,0,8v-44,56,-97,98,-156,126v-22,11,-40,16,-54,16v-32,0,-28,-31,-17,-56v23,-53,60,-97,87,-147v-36,-8,-89,-1,-136,-2r-62,116v-60,111,-123,218,-202,307v-30,35,-68,68,-120,68v-73,0,-99,-81,-91,-155v9,-21,24,-46,41,-61v6,-5,9,3,4,5v-16,12,-20,28,-20,57v0,64,23,132,84,140v105,-26,155,-156,202,-242r128,-234v-28,-2,-70,7,-85,-8v22,-5,75,-1,91,-1v58,-99,122,-195,218,-254","w":329},"\ufb02":{"d":"637,-598v31,3,9,49,1,65v-71,140,-168,248,-296,317v-29,59,-85,112,-85,186v0,19,9,28,26,28v61,0,121,-73,154,-117v6,-8,7,-3,5,4v-48,53,-95,129,-183,129v-60,0,-39,-70,-12,-114r62,-102v-47,17,-98,21,-156,25r-65,122r-68,120v-88,141,-165,270,-327,332v-125,48,-253,-37,-204,-180v2,-3,3,-4,4,-3v0,13,-4,30,-4,42v0,140,203,136,293,79v173,-111,226,-339,335,-511v-32,-2,-75,5,-94,-8v28,-6,68,0,100,-2v53,-105,132,-215,219,-278v30,-22,58,-34,81,-34v21,-1,34,14,31,36v1,3,3,6,6,9v42,-62,98,-118,177,-145xm610,-558v0,-21,-15,-15,-28,-4v-99,94,-154,223,-233,334v114,-64,195,-162,251,-286v7,-14,10,-29,10,-44xm454,-444v-154,-85,-234,143,-296,257v59,-4,111,-5,157,-25r62,-107v21,-38,46,-79,77,-125","w":354},"\t":{"w":0},"\r":{"w":0},"\n":{"w":0},"\u00a0":{"w":180},"A":{"d":"221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18","w":477,"k":{"-":58,"\u00bb":32,"\u00ab":32,"\u203a":32,"\u2039":32,"\u201d":53,"\u201c":40,"\u2019":53,"\u02bb":40,".":21,"\u0153":9,"v":11,"t":11,"o":9,"l":11,"j":-14,"f":18,"e":16,"c":14,"b":22,"Y":22,"W":27,"V":27,"U":36,"T":45,"Q":22,"O":32,"J":45,"G":36,"C":36}},"B":{"d":"194,-398r118,-2v81,2,164,-5,164,73v0,70,-61,102,-126,118v-1,0,-2,1,-2,3v39,14,93,16,91,71v-6,141,-209,175,-324,113v-15,2,-39,16,-50,25r-6,-5v71,-90,118,-200,175,-302v15,-28,31,-55,40,-86v-34,-9,-74,9,-109,9v-20,0,-17,-16,-9,-24v7,9,15,6,38,7xm262,-198v-1,-37,51,0,83,-17v44,-24,86,-56,88,-120v2,-50,-53,-62,-100,-54v-27,13,-40,46,-54,73r-132,252v-3,6,-5,11,-6,16v22,76,160,45,202,5v26,-25,54,-57,54,-103v0,-59,-77,-61,-131,-49v-2,-1,-3,-2,-4,-3","w":438,"k":{"-":21,"\u201d":22,"\u201c":14,"\u2019":22,"\u02bb":14,".":37,",":37,"U":18,"O":18}},"C":{"d":"380,-27v-90,50,-286,67,-281,-69v4,-116,79,-191,145,-250v61,-55,201,-76,283,-25v18,12,-2,25,-9,45v-6,16,-12,29,-16,41r-8,2v38,-111,-122,-139,-192,-75v-73,66,-163,155,-163,286v0,56,39,74,94,74v128,0,193,-78,260,-160v8,5,3,29,-3,34v-28,41,-65,73,-110,97","w":464,"k":{".":22,",":22}},"D":{"d":"138,-43v30,58,145,49,205,21v92,-43,165,-126,165,-256v0,-89,-75,-116,-171,-111v-4,1,-8,4,-12,10r-98,164r-86,161v-2,5,-3,9,-3,11xm111,-20v-16,1,-36,13,-47,23r-6,-5v84,-112,151,-255,221,-380v1,-3,-5,-5,-7,-5v-39,-1,-77,11,-114,12v-11,0,-16,-5,-16,-15v0,-2,2,-14,5,-12v53,22,143,1,214,3v102,3,194,21,194,126v0,174,-129,274,-316,280v-52,2,-91,-11,-128,-27","w":515,"k":{"-":21,"\u201c":14,"\u02bb":14,".":58,",":58,"e":9,"Y":34,"W":22,"V":18,"U":27,"A":36}},"E":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12","w":427,"k":{"-":42,"O":22,"C":22}},"F":{"d":"214,-211v35,28,135,13,179,1v0,40,-99,15,-156,21v-18,1,-30,-8,-38,5v-20,35,-38,65,-50,90v-16,33,-26,42,-29,71v2,17,14,20,40,19v4,0,6,2,6,4v-23,9,-86,7,-107,-4v-4,-7,-2,-11,2,-20v23,-45,64,-102,89,-145r59,-104v20,-36,38,-71,51,-103v5,-13,-9,-11,-22,-11v-9,0,-34,-1,-19,-9v97,2,198,2,268,-26v3,0,4,1,4,3v-9,7,-9,27,-23,29v-47,6,-111,-3,-154,8v-36,47,-69,120,-100,171","w":315,"k":{"-":15,"\u201d":-37,"\u201c":-37,"\u2019":-37,"\u02bb":-37,".":63,",":63,"j":-27,"Y":-58,"T":-27}},"G":{"d":"388,-188v56,0,116,-5,163,-14v2,2,2,4,0,8v-21,5,-23,9,-32,26r-85,162v-56,98,-105,189,-214,232v-34,14,-84,17,-120,3v-1,-4,-2,-8,2,-9v136,43,207,-89,266,-175v26,-39,44,-77,66,-117v0,-5,-2,-6,-6,-2v-45,40,-110,83,-195,86v-102,3,-155,-62,-122,-159v52,-152,191,-283,408,-244v21,4,44,14,54,28v-4,21,-17,58,-26,76v-3,1,-7,4,-7,-1v23,-98,-122,-122,-201,-81v-89,46,-149,137,-188,235v-29,73,-5,146,82,138v123,-11,211,-83,246,-183v0,-3,-3,-5,-10,-5v-28,1,-58,7,-84,6","w":512,"k":{"-":27,".":37,",":21}},"H":{"d":"118,-7v-24,3,-47,4,-62,17v0,-19,18,-32,34,-57r90,-137v-6,-14,-24,-29,-4,-29v31,0,24,-7,40,-36v19,-36,42,-76,53,-116v1,-29,-43,-13,-68,-14v-4,0,-6,-1,-6,-5v1,-11,23,-5,34,-6r100,-7v6,0,8,5,3,12v-37,55,-69,111,-100,174v61,13,152,0,219,-3v6,0,11,-6,13,-10r98,-178v32,-29,91,-46,139,-58v9,-2,15,8,2,8v-111,0,-139,116,-185,194v-39,65,-75,139,-82,209v-6,53,73,33,97,16v4,0,4,6,1,8v-30,12,-69,29,-115,29v-19,0,-29,-14,-29,-34v3,-58,38,-99,50,-147v-21,-45,-121,-12,-179,-14v-23,4,-43,1,-53,18v-30,53,-66,109,-90,166","w":514,"k":{"-":63}},"I":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190","w":220,"k":{"-":47,"\u00ab":45,"\u2039":45,".":68,",":58,"\u0153":14,"w":14,"s":9,"o":14,"g":9,"e":14,"d":9,"c":18,"a":14,"T":-18}},"J":{"d":"163,-279v-52,-93,89,-120,197,-120v27,0,59,-1,97,-1v5,1,5,7,0,8v-15,-1,-30,-4,-37,7v-116,170,-172,405,-388,473v-41,13,-113,15,-144,-7v-3,-12,-1,-32,0,-49r7,-2v4,61,101,72,155,43v142,-76,212,-263,293,-406v12,-21,20,-35,25,-55v0,-2,-1,-4,-5,-4v-90,9,-204,13,-198,110v1,2,0,3,-2,3","w":292,"k":{"-":27,".":36,",":36}},"K":{"d":"113,2v-23,-8,-49,5,-59,16v-4,0,-5,-1,-5,-3v89,-118,169,-261,235,-399v-24,-10,-71,5,-100,2v-17,-2,-4,-18,1,-25v2,-2,4,-3,5,-3v7,21,52,11,79,16r113,-5v4,10,-5,9,-17,9v-15,1,-23,-2,-30,8r-110,181v-4,7,-1,10,5,6r324,-208v10,1,17,6,26,8v1,9,-11,6,-19,13v-102,52,-202,117,-292,179v-2,2,-3,3,-3,5v72,98,163,198,262,285v58,51,192,60,258,12v5,-3,7,-2,7,2v-60,47,-198,53,-275,12v-125,-66,-211,-196,-299,-301v-42,66,-73,118,-106,190","w":451,"k":{"}":-131,"-":63,"U":22,"O":36,"G":27,"C":40}},"L":{"d":"20,7v-6,-1,-16,-15,-2,-15v69,0,83,-33,110,-81r162,-289v19,-23,75,-23,112,-27v11,13,-3,14,-11,10v-53,-7,-64,37,-86,69v-58,85,-99,196,-167,269v-16,17,-35,26,-52,39v-1,2,2,3,7,3r239,-17v20,2,56,-2,57,16v0,8,-9,32,-12,38v-4,-4,0,-16,-10,-19v-97,-24,-256,-17,-347,4","w":396,"k":{"-":79,"\u00ab":22,"\u2039":22,"\u201d":85,"\u201c":48,"\u2019":85,"\u02bb":48,"Y":40,"W":32,"V":53,"U":36,"T":63,"Q":27,"O":54,"J":40,"G":40,"C":45}},"M":{"d":"620,-40v-1,35,42,16,58,17v-16,15,-63,20,-87,29v-34,-2,-26,-26,-19,-60r69,-299v4,-20,-3,-14,-11,-6v-106,102,-206,224,-290,347v-2,3,-3,7,-4,11v-23,1,-31,6,-44,17v-4,1,-5,0,-6,-2r31,-374v0,-11,-5,-11,-15,0r-61,75v-66,82,-138,178,-191,270v-17,29,-23,40,-21,70v1,13,-4,8,-7,2v-6,-14,-6,-26,-11,-46v89,-150,210,-281,316,-415r47,-15v6,7,-14,14,-12,26r-20,177r-8,162v-3,20,10,15,15,4r207,-246r89,-97v17,-10,53,-17,69,-28v3,-1,6,4,4,7v-46,13,-41,61,-55,108v-23,79,-40,173,-43,266","w":675,"k":{"-":47,"\u00ab":22,"\u2039":22,"\u201d":42,"\u201c":45,"\u2019":42,"\u02bb":45,"W":27,"V":40,"U":32,"Q":18,"O":22,"G":22,"C":22}},"N":{"d":"248,-346v24,-66,-84,-8,-72,-49v31,9,84,6,110,-4v13,6,13,36,18,53v29,94,67,184,96,278v8,11,15,-5,18,-11r133,-258v37,-46,49,-117,118,-131v8,0,33,14,25,21v-53,1,-72,34,-98,67v-83,108,-144,262,-207,391v-2,0,-5,-3,-8,-7r-87,-254v-14,-31,-16,-58,-34,-74v-69,99,-144,193,-166,338v-25,-16,-26,-60,-4,-82r130,-223v13,-23,23,-41,28,-55","w":494,"k":{"-":52,"\u00ab":32,"\u2039":32,"\u201c":-14,"\u02bb":-14,".":53,",":53,"\u0153":14,"o":14,"e":16,"a":11}},"O":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220","w":530,"k":{"-":37,".":58,",":58,"e":9,"Z":27,"Y":37,"X":36,"U":22,"A":22}},"P":{"d":"378,-404v60,0,114,19,114,81v0,95,-93,151,-202,151v-15,0,-46,-1,-39,-13v109,20,193,-47,199,-146v3,-63,-63,-72,-119,-61v-30,17,-42,56,-59,85r-95,166v-23,46,-40,57,-47,102v-5,33,40,26,67,34v-18,10,-54,8,-81,9v-24,1,-55,-9,-40,-37v36,-71,85,-143,122,-214r65,-125v2,-8,6,-14,-2,-13r-113,8v-25,2,-16,-19,-8,-27v6,14,34,12,56,12v63,2,125,-12,182,-12","w":378,"k":{"-":37,"\u00ab":32,"\u2039":32,"\u201c":-37,"\u02bb":-37,".":85,",":85,"\u0153":22,"\u00e6":27,"s":14,"r":14,"o":22,"g":18,"e":22,"a":27,"A":45}},"Q":{"d":"537,-295v-8,130,-82,219,-179,270v39,48,57,141,141,136v37,-12,57,-42,77,-79v2,-3,8,2,7,5v-29,44,-60,100,-126,100v-80,0,-101,-92,-132,-147v-59,23,-156,20,-194,-21v-22,16,-47,41,-63,63v-3,0,-5,-2,-5,-6v20,-23,40,-44,64,-61v-78,-107,28,-238,90,-301v37,-38,89,-63,157,-64v7,-2,10,5,6,8v-81,-6,-123,54,-159,100v-43,56,-99,143,-70,240v30,-23,65,-33,105,-34v51,-1,75,23,98,55v80,-45,141,-128,146,-243v3,-60,-19,-105,-65,-119v67,-13,107,27,102,98xm154,-47v26,47,108,52,167,31v-17,-42,-68,-75,-127,-51v-14,5,-27,12,-40,20","w":492,"k":{"}":-78,"-":32,"\u00bb":-53,"\u203a":-53,".":58,",":-108,"U":18}},"R":{"d":"134,-2v-25,2,-56,-3,-66,19v-1,0,-9,-1,-5,-3v94,-137,167,-256,238,-388v4,-8,2,-10,-5,-11v-71,8,-129,36,-156,90v-2,1,-6,0,-6,-2v9,-15,4,-42,21,-51v57,-32,134,-53,221,-52v78,1,145,7,150,72v-14,82,-93,117,-181,129v-5,1,-8,3,-6,7v83,124,147,319,343,319v36,0,72,-9,107,-28v4,-2,6,-2,6,2v-70,55,-224,47,-293,-4v-94,-69,-153,-194,-216,-296v0,-2,1,-3,3,-3v98,-3,185,-27,185,-121v0,-53,-52,-73,-106,-64v-23,9,-27,22,-43,48r-85,140r-82,148v-11,21,-19,37,-24,49","w":460,"k":{"}":-158,"-":63,"U":22,"O":18,"G":22,"C":22}},"S":{"d":"256,-105v0,-62,-76,-87,-72,-156v5,-89,73,-150,171,-133v22,4,36,28,20,52v-5,10,-4,29,-14,22v11,-36,-22,-59,-63,-59v-68,0,-98,69,-68,128v24,49,88,86,58,159v-33,79,-167,127,-262,78v-2,-2,-3,-3,-4,-5v7,-22,9,-49,19,-68v7,2,-2,14,0,20v2,40,35,66,85,64v72,-2,130,-36,130,-102","w":296,"k":{"\u00ab":18,"\u2039":18,".":32,",":32}},"T":{"d":"302,3v-56,-1,-152,23,-135,-45r196,-338v3,-5,1,-8,-5,-8v-104,-2,-187,7,-232,65v-14,19,-27,43,-41,74v-2,5,-8,1,-9,-5v28,-73,56,-143,163,-143v135,0,324,35,355,-76v1,-6,-5,-11,1,-13v11,10,20,18,21,36v-16,65,-105,61,-185,62v-8,0,-15,3,-19,9v-69,105,-129,201,-184,315v-23,48,22,66,76,60v2,2,2,5,-2,7","w":358,"k":{"-":48,"\u00ab":32,"\u2039":32,"\u201d":-94,"\u201c":-74,"\u2019":-94,"\u02bb":-74,"?":-54,".":58,",":58,"\u0153":36,"\u00e6":22,"y":22,"w":36,"u":36,"s":18,"r":27,"o":36,"i":27,"e":36,"c":36,"a":22,"Y":-68,"A":18}},"U":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59","w":555,"k":{"-":32}},"V":{"d":"252,-333v1,96,-40,197,-37,285v118,-112,235,-243,328,-374v14,-20,12,-32,14,-50v21,12,26,40,7,64v-103,126,-228,246,-334,369v-16,19,-16,39,-39,43v-19,-2,-32,14,-43,7v33,-83,50,-199,64,-301v12,-91,-87,-108,-141,-61v-5,5,-8,6,-10,3v-2,-3,0,-6,4,-9v29,-21,83,-42,129,-42v43,0,57,26,58,66","w":396,"k":{"-":64,"\u00ab":45,"\u2039":45,"\u201c":-32,"\u02bb":-32,".":111,",":85,"\u0153":54,"\u00e6":54,"y":40,"u":40,"s":45,"r":27,"o":54,"e":54,"a":54,"A":40}},"W":{"d":"518,-367v-20,93,-12,224,-10,332v44,-44,81,-94,122,-141r82,-93v59,-56,110,-119,175,-169v21,-16,54,-16,73,-3v3,3,2,5,-2,6v-38,-2,-55,9,-87,32v-131,96,-267,259,-366,402v-14,8,-39,8,-50,21v-5,0,-5,-3,-1,-9v19,-83,11,-207,15,-308v0,-15,-6,-16,-15,-8r-191,180r-123,128v-16,5,-35,5,-48,13v-11,-9,10,-21,12,-36r73,-197r43,-142v-3,-31,-53,5,-66,-9v0,-2,1,-4,5,-5r121,-26v3,0,4,2,4,4v-52,100,-89,234,-120,351v65,-53,121,-115,182,-172r175,-165v2,-1,3,0,5,2v4,7,-7,5,-8,12","w":678,"k":{"-":68,"\u00ab":50,"\u2039":50,"\u201d":-74,"\u201c":-74,"\u2019":-74,"\u02bb":-74,"?":-63,".":100,",":85,"\u0153":54,"\u00e6":50,"y":36,"u":36,"r":32,"o":54,"m":27,"e":54,"a":50,"A":40}},"X":{"d":"585,-420v9,1,26,29,11,38r-253,158v19,78,13,248,116,200v13,-6,27,-15,41,-26v2,-2,3,-2,5,1v-24,30,-74,52,-122,59v-64,-3,-51,-88,-63,-147v-6,-30,-5,-30,-9,-62r-109,75v-60,45,-124,89,-166,154v-8,13,-6,23,-12,31v-12,-11,-21,-30,-6,-49v51,-63,122,-107,189,-152r103,-69v-17,-67,-6,-170,-86,-171v-29,0,-61,10,-80,24v-11,5,-9,-3,-4,-6v35,-17,80,-35,129,-36v80,-2,59,99,73,165v80,-54,157,-112,235,-169v10,-8,-2,-19,8,-18","w":482,"k":{"-":42,"U":18,"Q":22,"O":27,"G":27,"C":27}},"Y":{"d":"545,-385v27,-19,99,-64,125,-15v-116,5,-205,89,-283,147v-33,25,-60,51,-85,75v-49,47,-78,116,-104,177v-23,1,-48,-5,-64,14v-8,-12,13,-20,21,-32v43,-62,99,-129,99,-229v0,-71,-28,-121,-100,-122v-47,0,-70,14,-91,42v-2,2,-4,4,-7,4v-3,0,-3,-3,0,-8v31,-41,72,-64,137,-65v99,-1,107,113,89,203v-3,5,3,11,7,6r129,-101","k":{"}":-37,"-":63,"\u00ab":45,"\u2039":45,"\u201d":-143,"\u201c":-122,"\u2019":-143,"\u02bb":-122,"?":-111,".":74,",":74,"\u0153":58,"\u00e6":54,"v":50,"u":40,"s":40,"r":36,"o":58,"e":63,"c":63,"a":54,"Z":-69,"X":-54,"W":-74,"T":-100,"S":-40,"R":-42,"P":-72,"N":-26,"K":-37,"I":-68,"H":-63,"F":-63,"E":-47,"D":-63,"B":-58}},"Z":{"d":"192,-386r339,-10v12,-1,11,9,2,10v-140,109,-276,244,-400,366v-8,7,-6,15,4,17v98,24,201,49,319,50v93,1,138,-38,155,-112v2,-6,9,-8,7,2v-17,70,-51,138,-137,138v-160,0,-290,-72,-456,-76v-5,-1,-11,-10,0,-9v39,0,60,-30,83,-50r213,-186r68,-65v24,-26,44,-41,57,-67v0,-5,-6,-7,-18,-7v-92,3,-203,-4,-258,34v-6,4,-8,5,-8,-2v9,-17,11,-32,30,-33","w":393,"k":{"}":-153,"]":-127,")":-126,"\u00bb":-153,"\u00ab":-153,"\u203a":-153,"\u2039":-153,"\u201c":-18,"\u02bb":-18,",":-195,"w":14,"i":-43,"e":-32,"a":38,"Y":-90,"V":-90,"O":22,"A":36}},"\u00c0":{"d":"221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18xm437,-546v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":477},"\u00c1":{"d":"221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18xm575,-550v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":477},"\u00c2":{"d":"221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18xm529,-542v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":477},"\u00c3":{"d":"221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18xm547,-462v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":477},"\u00c4":{"d":"221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18xm511,-472v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm446,-477v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":477},"\u00c5":{"d":"221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18xm446,-483v2,-36,25,-60,64,-61v29,0,44,12,44,38v-1,32,-27,61,-65,61v-26,0,-45,-13,-43,-38xm493,-450v31,0,48,-24,48,-54v0,-21,-9,-35,-32,-35v-53,0,-72,89,-16,89","w":477},"\u01fa":{"d":"615,-670v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4xm434,-477v2,-36,25,-60,64,-61v29,0,44,12,44,38v-1,32,-27,61,-65,61v-26,0,-45,-13,-43,-38xm481,-444v31,0,48,-24,48,-54v0,-21,-9,-35,-32,-35v-53,0,-72,89,-16,89xm221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18","w":477},"\u0100":{"d":"525,-468r-79,2r5,-14r77,-2xm221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18","w":477},"\u0102":{"d":"221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18xm490,-472v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":477},"\u0104":{"d":"419,82v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2xm221,-193v32,28,131,3,178,18v14,-59,29,-143,37,-204v-74,53,-150,123,-215,186xm393,-134v-12,-62,-125,-29,-193,-42v-73,65,-138,131,-185,199v-11,16,-12,24,-15,46v-1,4,-3,5,-5,3v-3,-27,-13,-56,6,-74v8,-9,18,-19,31,-31r278,-255v99,-81,105,-104,178,-130v4,-4,6,-5,6,-2v-41,101,-54,236,-73,360v-6,43,31,45,59,38v-21,13,-59,20,-87,26v-9,0,-15,-6,-18,-18","w":477},"\u00c6":{"d":"553,-387r202,-5v15,5,-5,25,-9,32v-5,0,-5,-10,-12,-11v-37,-5,-84,-8,-126,-8v-28,0,-33,23,-45,43r-75,128r197,-8v-8,7,-3,20,-16,20v-60,0,-125,-2,-187,-1r-32,58v-24,43,-82,142,24,140v96,-1,188,-24,252,-61v1,9,-18,20,-21,28v-21,28,-81,27,-121,33v-68,10,-174,22,-222,-9v-13,-14,-2,-39,5,-52r78,-136r-202,5v-81,55,-178,119,-238,197v-7,8,-9,31,-16,16v4,-29,4,-47,27,-64v60,-45,144,-103,211,-150v-9,-18,6,-21,30,-20r251,-158v3,-2,3,-8,-3,-7v-48,1,-105,-3,-136,14v-1,-10,4,-32,24,-26xm543,-374v-53,29,-104,58,-150,86v-46,28,-86,54,-120,77v48,4,122,3,178,3","w":699,"k":{"-":42,"O":22,"C":22}},"\u01fc":{"d":"553,-387r202,-5v15,5,-5,25,-9,32v-5,0,-5,-10,-12,-11v-37,-5,-84,-8,-126,-8v-28,0,-33,23,-45,43r-75,128r197,-8v-8,7,-3,20,-16,20v-60,0,-125,-2,-187,-1r-32,58v-24,43,-82,142,24,140v96,-1,188,-24,252,-61v1,9,-18,20,-21,28v-21,28,-81,27,-121,33v-68,10,-174,22,-222,-9v-13,-14,-2,-39,5,-52r78,-136r-202,5v-81,55,-178,119,-238,197v-7,8,-9,31,-16,16v4,-29,4,-47,27,-64v60,-45,144,-103,211,-150v-9,-18,6,-21,30,-20r251,-158v3,-2,3,-8,-3,-7v-48,1,-105,-3,-136,14v-1,-10,4,-32,24,-26xm543,-374v-53,29,-104,58,-150,86v-46,28,-86,54,-120,77v48,4,122,3,178,3xm748,-550v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":681},"\u0106":{"d":"380,-27v-90,50,-286,67,-281,-69v4,-116,79,-191,145,-250v61,-55,201,-76,283,-25v18,12,-2,25,-9,45v-6,16,-12,29,-16,41r-8,2v38,-111,-122,-139,-192,-75v-73,66,-163,155,-163,286v0,56,39,74,94,74v128,0,193,-78,260,-160v8,5,3,29,-3,34v-28,41,-65,73,-110,97xm544,-550v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":464},"\u0108":{"d":"380,-27v-90,50,-286,67,-281,-69v4,-116,79,-191,145,-250v61,-55,201,-76,283,-25v18,12,-2,25,-9,45v-6,16,-12,29,-16,41r-8,2v38,-111,-122,-139,-192,-75v-73,66,-163,155,-163,286v0,56,39,74,94,74v128,0,193,-78,260,-160v8,5,3,29,-3,34v-28,41,-65,73,-110,97xm494,-551v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":464},"\u010c":{"d":"380,-27v-90,50,-286,67,-281,-69v4,-116,79,-191,145,-250v61,-55,201,-76,283,-25v18,12,-2,25,-9,45v-6,16,-12,29,-16,41r-8,2v38,-111,-122,-139,-192,-75v-73,66,-163,155,-163,286v0,56,39,74,94,74v128,0,193,-78,260,-160v8,5,3,29,-3,34v-28,41,-65,73,-110,97xm515,-552v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":464},"\u010a":{"d":"380,-27v-90,50,-286,67,-281,-69v4,-116,79,-191,145,-250v61,-55,201,-76,283,-25v18,12,-2,25,-9,45v-6,16,-12,29,-16,41r-8,2v38,-111,-122,-139,-192,-75v-73,66,-163,155,-163,286v0,56,39,74,94,74v128,0,193,-78,260,-160v8,5,3,29,-3,34v-28,41,-65,73,-110,97xm405,-461v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":464},"\u00c7":{"d":"380,-27v-90,50,-286,67,-281,-69v4,-116,79,-191,145,-250v61,-55,201,-76,283,-25v18,12,-2,25,-9,45v-6,16,-12,29,-16,41r-8,2v38,-111,-122,-139,-192,-75v-73,66,-163,155,-163,286v0,56,39,74,94,74v128,0,193,-78,260,-160v8,5,3,29,-3,34v-28,41,-65,73,-110,97xm197,54v7,-23,38,-42,62,-45v-4,10,-35,13,-36,29v4,14,29,12,29,30v-11,32,-55,51,-84,66v-2,0,-8,-3,-7,-6v19,-12,58,-18,64,-43v-1,-17,-26,-14,-28,-31","w":464},"\u010e":{"d":"138,-43v30,58,145,49,205,21v92,-43,165,-126,165,-256v0,-89,-75,-116,-171,-111v-4,1,-8,4,-12,10r-98,164r-86,161v-2,5,-3,9,-3,11xm111,-20v-16,1,-36,13,-47,23r-6,-5v84,-112,151,-255,221,-380v1,-3,-5,-5,-7,-5v-39,-1,-77,11,-114,12v-11,0,-16,-5,-16,-15v0,-2,2,-14,5,-12v53,22,143,1,214,3v102,3,194,21,194,126v0,174,-129,274,-316,280v-52,2,-91,-11,-128,-27xm501,-542v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":515},"\u0110":{"d":"111,-20v-16,1,-36,13,-47,23r-6,-5v48,-56,78,-128,118,-192v-22,-1,-68,17,-64,-13v17,3,39,3,71,2r96,-177v1,-3,-5,-5,-7,-5v-39,-1,-77,11,-114,12v-11,0,-16,-5,-16,-15v0,-2,2,-14,5,-12v53,22,143,1,214,3v102,3,194,21,194,126v0,174,-129,274,-316,280v-52,2,-91,-11,-128,-27xm138,-43v30,58,145,49,205,21v92,-43,165,-126,165,-256v0,-89,-75,-116,-171,-111v-4,1,-8,4,-12,10r-103,172r94,-2v18,-4,23,8,15,16v-26,-6,-83,-3,-115,-1v-25,51,-56,96,-78,151","w":515},"\u00c8":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm355,-537v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":427},"\u00c9":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm487,-550v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":427},"\u00ca":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm442,-542v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":427},"\u011a":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm444,-538v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":427},"\u00cb":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm395,-472v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm330,-477v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":427},"\u0116":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm364,-470v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":427},"\u0112":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm411,-459r-79,2r5,-14r77,-2","w":427},"\u0114":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm387,-463v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":427},"\u0118":{"d":"411,-226v5,6,-3,25,-13,25r-183,-1v-5,0,-8,2,-10,6r-31,56v-24,46,-76,139,28,137v88,-2,180,-22,236,-57v2,-1,4,-1,4,3v-16,14,-17,35,-44,40v-62,13,-131,22,-204,24v-66,2,-138,-6,-101,-71r77,-137v0,-7,-17,0,-20,-7v9,-13,36,-9,42,-30r64,-119v6,-18,17,-23,5,-27v-35,-1,-77,4,-103,8v1,-10,3,-17,7,-21r152,3r167,-5v17,7,-12,26,-12,38v-6,-1,-2,-14,-10,-16v-37,-6,-82,-7,-125,-8v-10,0,-17,3,-22,9v-34,46,-67,102,-95,153v0,17,35,8,56,9v55,3,92,-2,135,-12xm358,76v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":427},"\u011c":{"d":"388,-188v56,0,116,-5,163,-14v2,2,2,4,0,8v-21,5,-23,9,-32,26r-85,162v-56,98,-105,189,-214,232v-34,14,-84,17,-120,3v-1,-4,-2,-8,2,-9v136,43,207,-89,266,-175v26,-39,44,-77,66,-117v0,-5,-2,-6,-6,-2v-45,40,-110,83,-195,86v-102,3,-155,-62,-122,-159v52,-152,191,-283,408,-244v21,4,44,14,54,28v-4,21,-17,58,-26,76v-3,1,-7,4,-7,-1v23,-98,-122,-122,-201,-81v-89,46,-149,137,-188,235v-29,73,-5,146,82,138v123,-11,211,-83,246,-183v0,-3,-3,-5,-10,-5v-28,1,-58,7,-84,6xm514,-542v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":512},"\u0120":{"d":"388,-188v56,0,116,-5,163,-14v2,2,2,4,0,8v-21,5,-23,9,-32,26r-85,162v-56,98,-105,189,-214,232v-34,14,-84,17,-120,3v-1,-4,-2,-8,2,-9v136,43,207,-89,266,-175v26,-39,44,-77,66,-117v0,-5,-2,-6,-6,-2v-45,40,-110,83,-195,86v-102,3,-155,-62,-122,-159v52,-152,191,-283,408,-244v21,4,44,14,54,28v-4,21,-17,58,-26,76v-3,1,-7,4,-7,-1v23,-98,-122,-122,-201,-81v-89,46,-149,137,-188,235v-29,73,-5,146,82,138v123,-11,211,-83,246,-183v0,-3,-3,-5,-10,-5v-28,1,-58,7,-84,6xm431,-470v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":512},"\u011e":{"d":"388,-188v56,0,116,-5,163,-14v2,2,2,4,0,8v-21,5,-23,9,-32,26r-85,162v-56,98,-105,189,-214,232v-34,14,-84,17,-120,3v-1,-4,-2,-8,2,-9v136,43,207,-89,266,-175v26,-39,44,-77,66,-117v0,-5,-2,-6,-6,-2v-45,40,-110,83,-195,86v-102,3,-155,-62,-122,-159v52,-152,191,-283,408,-244v21,4,44,14,54,28v-4,21,-17,58,-26,76v-3,1,-7,4,-7,-1v23,-98,-122,-122,-201,-81v-89,46,-149,137,-188,235v-29,73,-5,146,82,138v123,-11,211,-83,246,-183v0,-3,-3,-5,-10,-5v-28,1,-58,7,-84,6xm463,-454v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":512},"\u0122":{"d":"502,-562v-34,16,-72,66,-45,109v-2,6,-18,20,-23,22v-44,-49,21,-119,66,-137v2,1,2,3,2,6xm339,-369v82,-42,223,-16,202,84v19,-11,24,-56,32,-78v-53,-53,-187,-42,-259,-11v-115,49,-200,145,-214,283v-12,121,178,118,258,67v25,-16,53,-35,70,-50v4,-4,6,-3,6,2v-62,107,-116,225,-222,287v-33,19,-78,22,-110,5v-4,1,-3,5,-2,9v224,41,293,-172,380,-321v17,-30,31,-67,51,-94v4,-3,10,-6,20,-8v2,-4,2,-6,0,-8v-47,9,-107,14,-163,14v0,4,-6,11,0,11r81,-7v15,1,12,8,7,18v-39,88,-123,161,-243,170v-87,7,-112,-65,-82,-138v39,-98,99,-189,188,-235","w":512},"\u0124":{"d":"118,-7v-24,3,-47,4,-62,17v0,-19,18,-32,34,-57r90,-137v-6,-14,-24,-29,-4,-29v31,0,24,-7,40,-36v19,-36,42,-76,53,-116v1,-29,-43,-13,-68,-14v-4,0,-6,-1,-6,-5v1,-11,23,-5,34,-6r100,-7v6,0,8,5,3,12v-37,55,-69,111,-100,174v61,13,152,0,219,-3v6,0,11,-6,13,-10r98,-178v32,-29,91,-46,139,-58v9,-2,15,8,2,8v-111,0,-139,116,-185,194v-39,65,-75,139,-82,209v-6,53,73,33,97,16v4,0,4,6,1,8v-30,12,-69,29,-115,29v-19,0,-29,-14,-29,-34v3,-58,38,-99,50,-147v-21,-45,-121,-12,-179,-14v-23,4,-43,1,-53,18v-30,53,-66,109,-90,166xm505,-533v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":514},"\u0126":{"d":"118,-7v-24,3,-47,4,-62,17v-6,-7,3,-11,11,-22r109,-165v-7,-11,-12,-20,-14,-25v5,-10,30,4,33,-11r33,-60v3,-7,-27,-7,-26,-13v1,-11,22,-4,33,-6v15,-18,29,-51,34,-73v1,-29,-43,-13,-68,-14v-4,0,-6,-1,-6,-5v1,-11,23,-5,34,-6r100,-7v6,0,7,4,3,12r-58,94v74,2,149,-2,228,-6r60,-105v32,-29,91,-46,139,-58v9,-2,15,8,2,8v-93,0,-119,92,-161,152v9,0,24,-5,28,1v-2,11,-23,5,-34,8v-39,72,-92,160,-100,242v-5,53,73,33,97,16v4,0,4,6,1,8v-30,12,-69,29,-115,29v-19,0,-29,-14,-29,-34v3,-55,35,-92,46,-140v-22,-45,-121,-12,-180,-14v-24,4,-44,1,-53,18v-28,49,-60,97,-81,152v-1,4,-3,6,-4,7xm498,-288r-233,13r-38,72v63,10,152,0,219,-4v30,-17,32,-55,52,-81","w":514},"\u00cc":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm271,-546v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":220},"\u00cd":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm414,-550v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":220},"\u00ce":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm370,-542v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":220},"\u0128":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm359,-462v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":220},"\u00cf":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm343,-472v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm278,-477v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":220},"\u0130":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm311,-470v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":220},"\u012a":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm361,-468r-79,2r5,-14r77,-2","w":220},"\u012c":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm323,-454v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":220},"\u012e":{"d":"269,-374v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19r-102,182r-110,178v-13,22,-43,26,-76,24v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190xm76,82v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":220},"\u0132":{"d":"297,-268v-11,-7,-19,-36,-10,-52r-132,227v-27,40,-27,58,-61,86v-14,12,-38,9,-60,9v-5,-10,20,-8,24,-20r112,-166v32,-62,79,-119,99,-190v-6,-18,-59,-4,-76,-6v1,-5,3,-9,5,-11r137,-10v12,10,-11,11,-13,19v-11,16,-22,40,-32,56v53,-67,177,-72,308,-74v4,1,4,7,0,8v-54,-7,-54,40,-78,76v-113,171,-166,419,-434,419v-41,0,-93,-15,-115,-35v-6,-12,3,-36,2,-53r6,-1v7,106,187,92,250,36v116,-103,200,-282,279,-432v0,-4,2,-10,-5,-10v-73,2,-146,22,-185,61v-17,17,-25,35,-19,60v1,2,0,3,-2,3","w":450},"\u0134":{"d":"396,-551v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3xm163,-279v-52,-93,89,-120,197,-120v27,0,59,-1,97,-1v5,1,5,7,0,8v-15,-1,-30,-4,-37,7v-116,170,-172,405,-388,473v-41,13,-113,15,-144,-7v-3,-12,-1,-32,0,-49r7,-2v4,61,101,72,155,43v142,-76,212,-263,293,-406v12,-21,20,-35,25,-55v0,-2,-1,-4,-5,-4v-90,9,-204,13,-198,110v1,2,0,3,-2,3","w":310},"\u0136":{"d":"227,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22xm113,2v-23,-8,-49,5,-59,16v-4,0,-5,-1,-5,-3v89,-118,169,-261,235,-399v-24,-10,-71,5,-100,2v-17,-2,-4,-18,1,-25v2,-2,4,-3,5,-3v7,21,52,11,79,16r113,-5v4,10,-5,9,-17,9v-15,1,-23,-2,-30,8r-110,181v-4,7,-1,10,5,6r324,-208v10,1,17,6,26,8v1,9,-11,6,-19,13v-102,52,-202,117,-292,179v-2,2,-3,3,-3,5v72,98,163,198,262,285v58,51,192,60,258,12v5,-3,7,-2,7,2v-60,47,-198,53,-275,12v-125,-66,-211,-196,-299,-301v-42,66,-73,118,-106,190","w":451},"\u0139":{"d":"20,7v-6,-1,-16,-15,-2,-15v69,0,83,-33,110,-81r162,-289v19,-23,75,-23,112,-27v11,13,-3,14,-11,10v-53,-7,-64,37,-86,69v-58,85,-99,196,-167,269v-16,17,-35,26,-52,39v-1,2,2,3,7,3r239,-17v20,2,56,-2,57,16v0,8,-9,32,-12,38v-4,-4,0,-16,-10,-19v-97,-24,-256,-17,-347,4xm481,-541v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":396},"\u013d":{"d":"20,7v-6,-1,-16,-15,-2,-15v69,0,83,-33,110,-81r162,-289v19,-23,75,-23,112,-27v11,13,-3,14,-11,10v-53,-7,-64,37,-86,69v-58,85,-99,196,-167,269v-16,17,-35,26,-52,39v-1,2,2,3,7,3r239,-17v20,2,56,-2,57,16v0,8,-9,32,-12,38v-4,-4,0,-16,-10,-19v-97,-24,-256,-17,-347,4xm459,-413v53,66,-26,150,-66,189v-2,2,-4,3,-6,1v-2,-14,16,-20,22,-30v33,-23,59,-96,26,-133v-1,-2,12,-20,24,-27","w":396},"\u013b":{"d":"20,7v-6,-1,-16,-15,-2,-15v69,0,83,-33,110,-81r162,-289v19,-23,75,-23,112,-27v11,13,-3,14,-11,10v-53,-7,-64,37,-86,69v-58,85,-99,196,-167,269v-16,17,-35,26,-52,39v-1,2,2,3,7,3r239,-17v20,2,56,-2,57,16v0,8,-9,32,-12,38v-4,-4,0,-16,-10,-19v-97,-24,-256,-17,-347,4xm221,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":396},"\u0141":{"d":"178,-176r-54,19v-7,2,-17,-11,-11,-14v24,-2,49,-14,71,-20r112,-194v24,-13,72,-18,106,-20v11,13,-3,14,-11,10v-53,-7,-67,36,-86,69r-71,122r111,-31v4,0,6,2,7,7v1,7,-1,10,-6,7v-40,7,-56,16,-120,31v-36,67,-75,137,-140,172v-1,2,2,3,7,3r239,-17v20,2,56,-2,57,16v0,8,-9,32,-12,38v-4,-4,0,-16,-10,-19v-97,-24,-256,-17,-347,4v-6,-1,-16,-15,-2,-15v87,2,97,-70,135,-122v15,-21,12,-23,25,-46","w":396},"\u0143":{"d":"248,-346v24,-66,-84,-8,-72,-49v31,9,84,6,110,-4v13,6,13,36,18,53v29,94,67,184,96,278v8,11,15,-5,18,-11r133,-258v37,-46,49,-117,118,-131v8,0,33,14,25,21v-53,1,-72,34,-98,67v-83,108,-144,262,-207,391v-2,0,-5,-3,-8,-7r-87,-254v-14,-31,-16,-58,-34,-74v-69,99,-144,193,-166,338v-25,-16,-26,-60,-4,-82r130,-223v13,-23,23,-41,28,-55xm566,-541v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":494},"\u0147":{"d":"248,-346v24,-66,-84,-8,-72,-49v31,9,84,6,110,-4v13,6,13,36,18,53v29,94,67,184,96,278v8,11,15,-5,18,-11r133,-258v37,-46,49,-117,118,-131v8,0,33,14,25,21v-53,1,-72,34,-98,67v-83,108,-144,262,-207,391v-2,0,-5,-3,-8,-7r-87,-254v-14,-31,-16,-58,-34,-74v-69,99,-144,193,-166,338v-25,-16,-26,-60,-4,-82r130,-223v13,-23,23,-41,28,-55xm550,-534v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":494},"\u00d1":{"d":"248,-346v24,-66,-84,-8,-72,-49v31,9,84,6,110,-4v13,6,13,36,18,53v29,94,67,184,96,278v8,11,15,-5,18,-11r133,-258v37,-46,49,-117,118,-131v8,0,33,14,25,21v-53,1,-72,34,-98,67v-83,108,-144,262,-207,391v-2,0,-5,-3,-8,-7r-87,-254v-14,-31,-16,-58,-34,-74v-69,99,-144,193,-166,338v-25,-16,-26,-60,-4,-82r130,-223v13,-23,23,-41,28,-55xm506,-462v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":494},"\u0145":{"d":"248,-346v24,-66,-84,-8,-72,-49v31,9,84,6,110,-4v13,6,13,36,18,53v29,94,67,184,96,278v8,11,15,-5,18,-11r133,-258v37,-46,49,-117,118,-131v8,0,33,14,25,21v-53,1,-72,34,-98,67v-83,108,-144,262,-207,391v-2,0,-5,-3,-8,-7r-87,-254v-14,-31,-16,-58,-34,-74v-69,99,-144,193,-166,338v-25,-16,-26,-60,-4,-82r130,-223v13,-23,23,-41,28,-55xm236,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":494},"\u00d2":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220xm397,-555v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":530},"\u00d3":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220xm547,-559v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":530},"\u00d4":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220xm506,-551v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":530},"\u00d5":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220xm512,-462v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":530},"\u00d6":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220xm478,-472v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm413,-477v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":530},"\u0150":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220xm545,-537v6,-9,15,1,14,10v-18,24,-50,60,-76,76v17,-31,42,-58,62,-86xm498,-542v9,3,8,19,0,24r-67,68v-1,1,-2,1,-3,0v16,-36,45,-58,65,-89v1,-2,3,-3,5,-3","w":530},"\u014c":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220xm482,-468r-79,2r5,-14r77,-2","w":530},"\u014e":{"d":"310,-386v104,-33,268,-22,263,99v-5,133,-89,223,-187,270v-100,47,-284,40,-278,-92v4,-100,60,-173,114,-226v25,-24,56,-40,88,-51xm161,-158v-31,87,9,165,105,158v125,-9,200,-99,241,-193v15,-34,21,-68,21,-100v0,-107,-124,-124,-203,-85v-79,40,-132,128,-164,220xm463,-472v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":530},"\u00d8":{"d":"481,-84v-58,69,-216,128,-327,66r-38,37v-8,8,-14,10,-18,6v-6,-17,33,-37,44,-50v-75,-70,-2,-212,40,-265v51,-65,121,-110,228,-112v42,0,84,8,112,24v18,-14,28,-38,54,-42v5,5,2,8,-5,14r-38,35v56,33,46,131,14,193v-17,35,-41,64,-66,94xm506,-362v-33,-42,-129,-43,-181,-16v-78,42,-132,128,-164,220v-14,39,-14,83,3,113xm170,-34v41,47,140,42,197,6v84,-52,161,-140,161,-265v0,-23,-5,-43,-15,-59r-266,244","w":530},"\u01fe":{"d":"580,-568v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4xm481,-84v-58,69,-216,128,-327,66r-38,37v-8,8,-14,10,-18,6v-6,-17,33,-37,44,-50v-75,-70,-2,-212,40,-265v51,-65,121,-110,228,-112v42,0,84,8,112,24v18,-14,28,-38,54,-42v5,5,2,8,-5,14r-38,35v56,33,46,131,14,193v-17,35,-41,64,-66,94xm506,-362v-33,-42,-129,-43,-181,-16v-78,42,-132,128,-164,220v-14,39,-14,83,3,113xm170,-34v41,47,140,42,197,6v84,-52,161,-140,161,-265v0,-23,-5,-43,-15,-59r-266,244","w":530},"\u0152":{"d":"162,-147v-27,86,10,158,104,150v153,-13,230,-124,247,-283v11,-104,-97,-139,-181,-98v-86,42,-140,133,-170,231xm820,-390v-4,7,-12,37,-20,24v-28,-21,-98,-10,-150,-15v-35,49,-68,113,-99,169r131,-1r59,-7v8,0,2,6,1,11v-5,21,-39,10,-62,10r-130,0v-16,3,-11,11,-23,29v-8,12,-14,28,-22,44v-11,24,-29,58,-29,85v0,59,89,40,142,33v64,-9,118,-24,163,-52v4,-2,14,-2,5,5v-18,14,-18,32,-45,38v-80,18,-196,33,-284,20v-44,-7,-36,-36,-17,-71v-48,45,-104,81,-185,82v-89,1,-154,-28,-147,-118v11,-137,97,-235,207,-280v100,-41,253,-15,230,118r53,-108v2,-8,-6,-16,8,-16r192,-4v8,0,20,0,22,4","w":757,"k":{"-":42,"O":22,"C":22}},"\u0154":{"d":"499,-550v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4xm134,-2v-25,2,-56,-3,-66,19v-1,0,-9,-1,-5,-3v94,-137,167,-256,238,-388v4,-8,2,-10,-5,-11v-71,8,-129,36,-156,90v-2,1,-6,0,-6,-2v9,-15,4,-42,21,-51v57,-32,134,-53,221,-52v78,1,145,7,150,72v-14,82,-93,117,-181,129v-5,1,-8,3,-6,7v83,124,147,319,343,319v36,0,72,-9,107,-28v4,-2,6,-2,6,2v-70,55,-224,47,-293,-4v-94,-69,-153,-194,-216,-296v0,-2,1,-3,3,-3v98,-3,185,-27,185,-121v0,-53,-52,-73,-106,-64v-23,9,-27,22,-43,48r-85,140r-82,148v-11,21,-19,37,-24,49","w":460},"\u0158":{"d":"134,-2v-25,2,-56,-3,-66,19v-1,0,-9,-1,-5,-3v94,-137,167,-256,238,-388v4,-8,2,-10,-5,-11v-71,8,-129,36,-156,90v-2,1,-6,0,-6,-2v9,-15,4,-42,21,-51v57,-32,134,-53,221,-52v78,1,145,7,150,72v-14,82,-93,117,-181,129v-5,1,-8,3,-6,7v83,124,147,319,343,319v36,0,72,-9,107,-28v4,-2,6,-2,6,2v-70,55,-224,47,-293,-4v-94,-69,-153,-194,-216,-296v0,-2,1,-3,3,-3v98,-3,185,-27,185,-121v0,-53,-52,-73,-106,-64v-23,9,-27,22,-43,48r-85,140r-82,148v-11,21,-19,37,-24,49xm502,-543v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":460},"\u0156":{"d":"134,-2v-25,2,-56,-3,-66,19v-1,0,-9,-1,-5,-3v94,-137,167,-256,238,-388v4,-8,2,-10,-5,-11v-71,8,-129,36,-156,90v-2,1,-6,0,-6,-2v9,-15,4,-42,21,-51v57,-32,134,-53,221,-52v78,1,145,7,150,72v-14,82,-93,117,-181,129v-5,1,-8,3,-6,7v83,124,147,319,343,319v36,0,72,-9,107,-28v4,-2,6,-2,6,2v-70,55,-224,47,-293,-4v-94,-69,-153,-194,-216,-296v0,-2,1,-3,3,-3v98,-3,185,-27,185,-121v0,-53,-52,-73,-106,-64v-23,9,-27,22,-43,48r-85,140r-82,148v-11,21,-19,37,-24,49xm251,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":460},"\u015a":{"d":"256,-105v0,-62,-76,-87,-72,-156v5,-89,73,-150,171,-133v22,4,36,28,20,52v-5,10,-4,29,-14,22v11,-36,-22,-59,-63,-59v-68,0,-98,69,-68,128v24,49,88,86,58,159v-33,79,-167,127,-262,78v-2,-2,-3,-3,-4,-5v7,-22,9,-49,19,-68v7,2,-2,14,0,20v2,40,35,66,85,64v72,-2,130,-36,130,-102xm463,-550v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":296},"\u015c":{"d":"256,-105v0,-62,-76,-87,-72,-156v5,-89,73,-150,171,-133v22,4,36,28,20,52v-5,10,-4,29,-14,22v11,-36,-22,-59,-63,-59v-68,0,-98,69,-68,128v24,49,88,86,58,159v-33,79,-167,127,-262,78v-2,-2,-3,-3,-4,-5v7,-22,9,-49,19,-68v7,2,-2,14,0,20v2,40,35,66,85,64v72,-2,130,-36,130,-102xm408,-560v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":296},"\u0160":{"d":"256,-105v0,-62,-76,-87,-72,-156v5,-89,73,-150,171,-133v22,4,36,28,20,52v-5,10,-4,29,-14,22v11,-36,-22,-59,-63,-59v-68,0,-98,69,-68,128v24,49,88,86,58,159v-33,79,-167,127,-262,78v-2,-2,-3,-3,-4,-5v7,-22,9,-49,19,-68v7,2,-2,14,0,20v2,40,35,66,85,64v72,-2,130,-36,130,-102xm436,-552v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":296},"\u015e":{"d":"256,-105v0,-62,-76,-87,-72,-156v5,-89,73,-150,171,-133v22,4,36,28,20,52v-5,10,-4,29,-14,22v11,-36,-22,-59,-63,-59v-68,0,-98,69,-68,128v24,49,88,86,58,159v-33,79,-167,127,-262,78v-2,-2,-3,-3,-4,-5v7,-22,9,-49,19,-68v7,2,-2,14,0,20v2,40,35,66,85,64v72,-2,130,-36,130,-102xm100,44v7,-23,38,-42,62,-45v-4,10,-35,13,-36,29v4,14,29,12,29,30v-11,32,-55,51,-84,66v-2,0,-8,-3,-7,-6v19,-12,58,-18,64,-43v-1,-17,-26,-14,-28,-31","w":296},"\u0218":{"d":"256,-105v0,-62,-76,-87,-72,-156v5,-89,73,-150,171,-133v22,4,36,28,20,52v-5,10,-4,29,-14,22v11,-36,-22,-59,-63,-59v-68,0,-98,69,-68,128v24,49,88,86,58,159v-33,79,-167,127,-262,78v-2,-2,-3,-3,-4,-5v7,-22,9,-49,19,-68v7,2,-2,14,0,20v2,40,35,66,85,64v72,-2,130,-36,130,-102xm128,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":296},"\u0164":{"d":"302,3v-56,-1,-152,23,-135,-45r196,-338v3,-5,1,-8,-5,-8v-104,-2,-187,7,-232,65v-14,19,-27,43,-41,74v-2,5,-8,1,-9,-5v28,-73,56,-143,163,-143v135,0,324,35,355,-76v1,-6,-5,-11,1,-13v11,10,20,18,21,36v-16,65,-105,61,-185,62v-8,0,-15,3,-19,9v-69,105,-129,201,-184,315v-23,48,22,66,76,60v2,2,2,5,-2,7xm520,-543v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":358},"\u021a":{"d":"302,3v-56,-1,-152,23,-135,-45r196,-338v3,-5,1,-8,-5,-8v-104,-2,-187,7,-232,65v-14,19,-27,43,-41,74v-2,5,-8,1,-9,-5v28,-73,56,-143,163,-143v135,0,324,35,355,-76v1,-6,-5,-11,1,-13v11,10,20,18,21,36v-16,65,-105,61,-185,62v-8,0,-15,3,-19,9v-69,105,-129,201,-184,315v-23,48,22,66,76,60v2,2,2,5,-2,7xm214,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":358},"\u0166":{"d":"161,-181v18,-18,47,-10,95,-12r107,-187v3,-5,1,-8,-5,-8v-104,-2,-187,7,-232,65v-14,19,-27,43,-41,74v-2,5,-8,1,-9,-5v28,-73,56,-143,163,-143v135,0,324,35,355,-76v1,-6,-5,-11,1,-13v11,10,20,18,21,36v-16,65,-105,61,-185,62v-8,0,-15,3,-19,9r-115,186r103,1v3,0,4,1,3,4v-23,10,-74,3,-111,5v-23,47,-62,85,-70,143v-5,38,44,36,82,36v2,2,2,5,-2,7v-48,-1,-154,24,-135,-45r83,-141v-29,0,-64,7,-89,2","w":358},"\u00d9":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm454,-546v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":555},"\u00da":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm606,-550v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":555},"\u00db":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm540,-542v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":555},"\u0168":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm552,-462v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":555},"\u00dc":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm504,-463v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm439,-468v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":555},"\u0170":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm558,-519v6,-9,15,1,14,10v-18,24,-50,60,-76,76v17,-31,42,-58,62,-86xm511,-524v9,3,8,19,0,24r-67,68v-1,1,-2,1,-3,0v16,-36,45,-58,65,-89v1,-2,3,-3,5,-3","w":555},"\u016e":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm438,-483v2,-36,25,-60,64,-61v29,0,44,12,44,38v-1,32,-27,61,-65,61v-26,0,-45,-13,-43,-38xm485,-450v31,0,48,-24,48,-54v0,-21,-9,-35,-32,-35v-53,0,-72,89,-16,89","w":555},"\u016a":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm521,-468r-79,2r5,-14r77,-2","w":555},"\u016c":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm490,-454v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":555},"\u0172":{"d":"178,-148v-35,57,-30,143,50,136v210,-18,274,-203,356,-350v16,-28,50,-34,86,-41v3,0,4,1,5,4v-1,9,-16,7,-23,16v-68,93,-138,189,-176,310v-11,34,-5,75,34,73v29,-1,56,-15,77,-24v6,0,7,7,2,9v-32,13,-68,29,-110,29v-100,2,-43,-101,-25,-140v-62,68,-137,128,-253,136v-80,5,-121,-66,-79,-135r144,-236v11,-20,-8,-20,-28,-18v-17,-2,-45,5,-53,-6v0,-4,2,-6,7,-6v55,4,114,3,162,-4v6,1,5,7,-1,8v-38,6,-48,38,-68,64v-29,37,-47,75,-73,116v-18,30,-17,32,-34,59xm482,98v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":555},"\u1e80":{"d":"518,-367v-20,93,-12,224,-10,332v44,-44,81,-94,122,-141r82,-93v59,-56,110,-119,175,-169v21,-16,54,-16,73,-3v3,3,2,5,-2,6v-38,-2,-55,9,-87,32v-131,96,-267,259,-366,402v-14,8,-39,8,-50,21v-5,0,-5,-3,-1,-9v19,-83,11,-207,15,-308v0,-15,-6,-16,-15,-8r-191,180r-123,128v-16,5,-35,5,-48,13v-11,-9,10,-21,12,-36r73,-197r43,-142v-3,-31,-53,5,-66,-9v0,-2,1,-4,5,-5r121,-26v3,0,4,2,4,4v-52,100,-89,234,-120,351v65,-53,121,-115,182,-172r175,-165v2,-1,3,0,5,2v4,7,-7,5,-8,12xm472,-528v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":678},"\u1e82":{"d":"518,-367v-20,93,-12,224,-10,332v44,-44,81,-94,122,-141r82,-93v59,-56,110,-119,175,-169v21,-16,54,-16,73,-3v3,3,2,5,-2,6v-38,-2,-55,9,-87,32v-131,96,-267,259,-366,402v-14,8,-39,8,-50,21v-5,0,-5,-3,-1,-9v19,-83,11,-207,15,-308v0,-15,-6,-16,-15,-8r-191,180r-123,128v-16,5,-35,5,-48,13v-11,-9,10,-21,12,-36r73,-197r43,-142v-3,-31,-53,5,-66,-9v0,-2,1,-4,5,-5r121,-26v3,0,4,2,4,4v-52,100,-89,234,-120,351v65,-53,121,-115,182,-172r175,-165v2,-1,3,0,5,2v4,7,-7,5,-8,12xm648,-541v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":678},"\u0174":{"d":"518,-367v-20,93,-12,224,-10,332v44,-44,81,-94,122,-141r82,-93v59,-56,110,-119,175,-169v21,-16,54,-16,73,-3v3,3,2,5,-2,6v-38,-2,-55,9,-87,32v-131,96,-267,259,-366,402v-14,8,-39,8,-50,21v-5,0,-5,-3,-1,-9v19,-83,11,-207,15,-308v0,-15,-6,-16,-15,-8r-191,180r-123,128v-16,5,-35,5,-48,13v-11,-9,10,-21,12,-36r73,-197r43,-142v-3,-31,-53,5,-66,-9v0,-2,1,-4,5,-5r121,-26v3,0,4,2,4,4v-52,100,-89,234,-120,351v65,-53,121,-115,182,-172r175,-165v2,-1,3,0,5,2v4,7,-7,5,-8,12xm577,-533v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":678},"\u1e84":{"d":"518,-367v-20,93,-12,224,-10,332v44,-44,81,-94,122,-141r82,-93v59,-56,110,-119,175,-169v21,-16,54,-16,73,-3v3,3,2,5,-2,6v-38,-2,-55,9,-87,32v-131,96,-267,259,-366,402v-14,8,-39,8,-50,21v-5,0,-5,-3,-1,-9v19,-83,11,-207,15,-308v0,-15,-6,-16,-15,-8r-191,180r-123,128v-16,5,-35,5,-48,13v-11,-9,10,-21,12,-36r73,-197r43,-142v-3,-31,-53,5,-66,-9v0,-2,1,-4,5,-5r121,-26v3,0,4,2,4,4v-52,100,-89,234,-120,351v65,-53,121,-115,182,-172r175,-165v2,-1,3,0,5,2v4,7,-7,5,-8,12xm554,-458v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm489,-463v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":678},"\u1ef2":{"d":"545,-385v27,-19,99,-64,125,-15v-116,5,-205,89,-283,147v-33,25,-60,51,-85,75v-49,47,-78,116,-104,177v-23,1,-48,-5,-64,14v-8,-12,13,-20,21,-32v43,-62,99,-129,99,-229v0,-71,-28,-121,-100,-122v-47,0,-70,14,-91,42v-2,2,-4,4,-7,4v-3,0,-3,-3,0,-8v31,-41,72,-64,137,-65v99,-1,107,113,89,203v-3,5,3,11,7,6r129,-101xm365,-533v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13"},"\u00dd":{"d":"545,-385v27,-19,99,-64,125,-15v-116,5,-205,89,-283,147v-33,25,-60,51,-85,75v-49,47,-78,116,-104,177v-23,1,-48,-5,-64,14v-8,-12,13,-20,21,-32v43,-62,99,-129,99,-229v0,-71,-28,-121,-100,-122v-47,0,-70,14,-91,42v-2,2,-4,4,-7,4v-3,0,-3,-3,0,-8v31,-41,72,-64,137,-65v99,-1,107,113,89,203v-3,5,3,11,7,6r129,-101xm526,-541v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4"},"\u0176":{"d":"545,-385v27,-19,99,-64,125,-15v-116,5,-205,89,-283,147v-33,25,-60,51,-85,75v-49,47,-78,116,-104,177v-23,1,-48,-5,-64,14v-8,-12,13,-20,21,-32v43,-62,99,-129,99,-229v0,-71,-28,-121,-100,-122v-47,0,-70,14,-91,42v-2,2,-4,4,-7,4v-3,0,-3,-3,0,-8v31,-41,72,-64,137,-65v99,-1,107,113,89,203v-3,5,3,11,7,6r129,-101xm456,-533v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3"},"\u0178":{"d":"545,-385v27,-19,99,-64,125,-15v-116,5,-205,89,-283,147v-33,25,-60,51,-85,75v-49,47,-78,116,-104,177v-23,1,-48,-5,-64,14v-8,-12,13,-20,21,-32v43,-62,99,-129,99,-229v0,-71,-28,-121,-100,-122v-47,0,-70,14,-91,42v-2,2,-4,4,-7,4v-3,0,-3,-3,0,-8v31,-41,72,-64,137,-65v99,-1,107,113,89,203v-3,5,3,11,7,6r129,-101xm427,-463v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm362,-468v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11"},"\u0179":{"d":"192,-386r339,-10v12,-1,11,9,2,10v-140,109,-276,244,-400,366v-8,7,-6,15,4,17v98,24,201,49,319,50v93,1,138,-38,155,-112v2,-6,9,-8,7,2v-17,70,-51,138,-137,138v-160,0,-290,-72,-456,-76v-5,-1,-11,-10,0,-9v39,0,60,-30,83,-50r213,-186r68,-65v24,-26,44,-41,57,-67v0,-5,-6,-7,-18,-7v-92,3,-203,-4,-258,34v-6,4,-8,5,-8,-2v9,-17,11,-32,30,-33xm504,-541v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":393},"\u017d":{"d":"192,-386r339,-10v12,-1,11,9,2,10v-140,109,-276,244,-400,366v-8,7,-6,15,4,17v98,24,201,49,319,50v93,1,138,-38,155,-112v2,-6,9,-8,7,2v-17,70,-51,138,-137,138v-160,0,-290,-72,-456,-76v-5,-1,-11,-10,0,-9v39,0,60,-30,83,-50r213,-186r68,-65v24,-26,44,-41,57,-67v0,-5,-6,-7,-18,-7v-92,3,-203,-4,-258,34v-6,4,-8,5,-8,-2v9,-17,11,-32,30,-33xm479,-534v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":393},"\u017b":{"d":"192,-386r339,-10v12,-1,11,9,2,10v-140,109,-276,244,-400,366v-8,7,-6,15,4,17v98,24,201,49,319,50v93,1,138,-38,155,-112v2,-6,9,-8,7,2v-17,70,-51,138,-137,138v-160,0,-290,-72,-456,-76v-5,-1,-11,-10,0,-9v39,0,60,-30,83,-50r213,-186r68,-65v24,-26,44,-41,57,-67v0,-5,-6,-7,-18,-7v-92,3,-203,-4,-258,34v-6,4,-8,5,-8,-2v9,-17,11,-32,30,-33xm386,-470v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":393},"\u00d0":{"d":"182,-386v150,-3,364,-43,364,118v0,170,-125,269,-311,275v-58,2,-89,-14,-126,-27v-20,-1,-35,25,-51,17v43,-54,82,-130,117,-191v-20,0,-67,16,-63,-13v18,5,46,2,69,2r93,-172v1,-4,-5,-5,-7,-5v-35,-1,-79,13,-112,12v-16,3,-20,-20,-11,-26v6,1,28,10,38,10xm135,-41v32,59,164,45,219,14v82,-45,149,-128,149,-247v0,-89,-85,-114,-174,-108v-4,1,-6,3,-9,8r-100,167r110,-1v3,0,5,3,5,8v-3,15,-10,4,-32,4r-90,2r-74,141v-2,5,-4,9,-4,12","w":506},"\u00de":{"d":"270,-298v61,-19,166,-5,161,72v-6,94,-93,134,-189,134v-19,0,-34,2,-40,-11v90,16,182,-33,186,-130v2,-58,-53,-76,-107,-59v-14,4,-23,10,-28,21r-110,221v-17,32,-2,49,35,47v4,4,4,7,0,7v-24,0,-42,-1,-53,-1v-51,1,-47,-14,-24,-57r127,-242v12,-25,24,-46,28,-68v-2,-22,-46,-10,-70,-11v-4,0,-6,-2,-6,-5v23,-12,84,-7,125,-14v16,3,6,9,-3,27r-35,67v0,1,1,2,3,2","w":375},"\u014a":{"d":"657,-430v19,-18,51,-14,57,8v-77,6,-106,81,-141,133v-14,22,-27,48,-42,76v-62,110,-109,252,-181,355v-27,38,-114,57,-143,10v-12,-18,-21,-42,-23,-70v-1,-3,1,-5,5,-5v4,0,5,0,6,2v0,86,129,88,162,26v17,-32,41,-69,58,-102v-15,-26,-30,-55,-45,-84v-15,-29,-29,-56,-41,-85r-60,-146v-5,-16,-13,-15,-21,-1r-49,78r-51,88r-46,88v-22,51,-49,97,-55,164v-16,-22,-23,-51,-6,-83v61,-117,146,-239,204,-361v10,-22,9,-40,-16,-42v-19,-1,-51,12,-57,-6v-2,-6,0,-8,5,-8v27,9,87,5,110,-4v7,0,10,5,9,13v17,117,75,222,131,304v9,13,17,16,25,2r84,-159v39,-65,71,-145,121,-191","w":524},"a":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172","w":256,"k":{"v":4}},"b":{"d":"104,-5v55,-16,83,-95,70,-167v2,-11,18,-28,28,-25v-3,73,93,78,139,43v3,-2,5,-1,6,1v1,2,0,4,-3,5v-42,25,-118,47,-150,4v-3,78,-40,139,-108,150v-55,-4,-26,-83,-11,-114v92,-181,189,-359,349,-472v20,-14,46,-26,74,-28v27,-2,37,23,32,47v-10,6,-17,-16,-42,-14v-97,8,-133,51,-179,116v-89,126,-178,258,-222,429v0,16,6,25,17,25","w":229,"k":{".":42,",":32,"s":-9}},"c":{"d":"79,-45v9,57,61,41,104,9v28,-21,59,-49,91,-89v3,-3,5,-4,7,-2v-45,57,-95,123,-187,132v-49,5,-58,-37,-42,-75v25,-57,68,-116,133,-128v32,-6,42,27,27,47v-4,2,-11,13,-20,14v7,-21,-3,-43,-26,-40v-58,8,-84,67,-87,132","w":192,"k":{"q":5,"p":5,"n":9}},"d":{"d":"590,-608v18,-2,33,10,18,20v-7,5,-4,20,-13,22v-101,-33,-161,56,-205,118v-91,127,-171,255,-228,397v-11,28,-15,49,-15,62v-3,44,48,40,75,20v45,-33,81,-89,106,-142v1,-2,2,-3,5,-2v3,1,3,3,0,7v-39,66,-71,147,-159,160v-81,-7,-38,-107,-13,-154v-40,42,-62,91,-121,105v-38,-1,-15,-54,-4,-71v43,-66,88,-117,176,-133v73,-129,146,-242,246,-339v37,-36,76,-66,132,-70xm56,-25v7,16,16,6,32,-6v45,-38,87,-96,116,-154v-78,-1,-109,75,-134,115v-12,19,-14,35,-14,45","w":243,"k":{"\u201d":-31,"\u201c":-31,"\u2019":-31,"\u02bb":-31,"\u00f8":-14,"\u00e6":-14}},"e":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65","w":184,"k":{"v":5}},"f":{"d":"161,-177v-74,3,-116,8,-136,62r-3,-1v18,-63,68,-73,145,-72r87,-154v28,-47,57,-93,87,-138v44,-67,99,-135,166,-175v33,-20,88,-23,100,11r-9,71v-14,2,-3,-10,-5,-24v-7,-58,-107,-37,-137,-9v-112,105,-174,279,-254,418r125,-1v3,2,3,5,2,9r-131,2r-128,228v-22,36,-43,70,-65,100v-113,158,-226,306,-406,379v-79,32,-189,23,-189,-59v0,-10,3,-6,6,-1v19,65,115,73,187,45v287,-110,406,-439,558,-691","w":195,"k":{"\u00bb":-27,"\u203a":-27,"\u201d":-77,"\u201c":-75,"\u2019":-77,"\u02bb":-75,".":37,"s":11,"j":-22,"f":27}},"g":{"d":"251,-264v10,5,12,28,5,40r-80,148v-88,139,-160,293,-262,418v-60,74,-140,131,-270,132v-94,1,-141,-47,-141,-135v0,-16,2,-38,10,-46v8,8,-4,24,-3,38v6,151,243,144,332,68v145,-124,217,-343,322,-508v-38,40,-62,101,-120,119v-26,-6,-22,-36,-8,-61v36,-64,78,-148,173,-149v14,-19,23,-51,42,-64xm203,-187v-74,-8,-95,54,-122,99v-12,20,-19,45,-21,67v4,20,13,8,27,-5v43,-41,87,-102,116,-161","w":216,"k":{"-":68,"\u00bb":36,"\u00ab":50,"\u203a":36,"\u2039":50,"?":40,"!":36,".":58,":":47,";":36,",":45}},"h":{"d":"627,-562v-1,4,-4,2,-4,-1v-5,-82,-135,-74,-188,-31v-140,113,-222,281,-317,458v32,-23,62,-56,107,-65v14,3,6,12,0,23v-26,44,-62,87,-69,146v-2,18,10,28,27,28v61,-13,100,-63,148,-120v1,0,2,1,2,3v-44,55,-95,123,-178,137v-63,-4,-16,-86,-2,-115v10,-20,36,-51,30,-74v-60,17,-101,109,-132,163v-5,10,-9,14,-13,14v-11,1,-24,-6,-16,-20r73,-129r73,-120r90,-137v56,-84,121,-163,193,-222v71,-58,205,-48,176,62","w":239},"i":{"d":"171,-297v-1,-15,14,-34,30,-33v8,0,11,3,11,11v0,14,-15,34,-30,33v-7,0,-11,-4,-11,-11xm100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20","w":162},"j":{"d":"158,-293v-1,-15,15,-35,30,-34v8,0,12,4,12,12v0,14,-15,33,-31,32v-7,0,-11,-3,-11,-10xm238,-151v43,39,-9,108,-36,133r-190,162r-65,56v-50,42,-69,95,-124,134v-28,-57,57,-84,85,-124v82,-118,129,-230,196,-378v-4,-20,-33,5,-43,-5v23,-13,57,-15,82,-27v12,0,10,15,5,23r-109,209r-100,162r142,-115v59,-50,123,-106,158,-178v9,-19,3,-40,-1,-52","w":175},"k":{"d":"414,-550v33,-19,111,-39,122,14v-3,15,-9,34,-14,47v-7,0,-3,-10,-2,-14v-5,-48,-66,-53,-108,-31v-152,81,-222,279,-314,426v-14,23,-20,31,-23,45v25,-20,48,-46,73,-67v-7,-19,18,-30,28,-34v3,0,1,7,3,8v36,-27,72,-61,110,-85v9,1,15,18,1,20v-43,17,-79,49,-112,76v8,46,14,97,42,123v70,13,104,-65,142,-107v2,-3,4,-3,6,-1v-27,49,-71,98,-119,124v-77,43,-87,-50,-99,-115v-39,39,-77,74,-106,123v-1,3,-3,4,-7,4v-27,-12,-5,-41,6,-60r61,-108r86,-138r80,-112v42,-54,84,-103,144,-138","w":270,"k":{"\u201d":-44,"\u201c":-44,"\u2019":-44,"\u02bb":-44}},"l":{"d":"454,-603v26,4,18,29,7,53v-63,135,-165,252,-295,324r-50,90v-14,28,-34,62,-35,97v0,41,46,31,73,17v46,-25,89,-67,120,-106v4,-4,7,-5,8,-3v-45,59,-102,124,-194,135v-87,-10,-19,-112,3,-149r189,-313v38,-63,101,-122,174,-145xm430,-563v0,-25,-24,-13,-35,-1v-84,95,-150,216,-221,326v99,-57,187,-149,236,-252v13,-29,20,-53,20,-73","w":182,"k":{"\u201d":-75,"\u201c":-75,"\u2019":-75,"\u02bb":-75}},"m":{"d":"309,-180v-21,55,-65,113,-77,178v2,29,34,18,52,7v36,-20,71,-59,95,-87v2,-4,5,-5,7,-4v-1,16,-19,27,-32,41v-31,31,-65,72,-119,72v-67,0,-11,-82,1,-109v10,-23,30,-54,33,-77v0,-4,-1,-6,-4,-6v-52,34,-100,81,-126,142v-6,17,-27,40,-34,14v19,-42,53,-83,64,-132v-3,-14,-11,-6,-22,4v-40,34,-78,80,-105,127v-11,20,-24,17,-23,-4v17,-47,27,-50,51,-91r47,-80v6,-16,22,-6,22,6v-10,27,-34,64,-49,92v35,-38,58,-73,100,-84v7,0,10,4,10,13v0,17,-20,47,-23,61v33,-35,72,-74,118,-96v9,0,14,5,14,13","w":316,"k":{"-":42,"n":4}},"n":{"d":"150,-19v2,30,34,19,55,7v45,-25,90,-67,117,-110v4,-3,11,-1,5,6v-45,54,-92,128,-179,128v-58,0,-11,-68,1,-92v15,-30,40,-60,47,-93v-76,30,-118,111,-161,176v-27,-26,15,-54,25,-76r56,-118v7,-10,24,0,23,10v-6,17,-31,50,-39,74r76,-64v17,-13,34,-29,52,-33v4,-1,10,8,10,11v-26,51,-77,107,-88,174","w":234},"o":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17","w":225,"k":{".":32,",":26,"x":14,"s":-8,"q":9,"e":-6,"d":4,"a":4}},"p":{"d":"196,-206v26,2,25,27,13,51v-29,61,-83,106,-151,138v109,-11,190,-55,243,-128v2,-2,6,-1,5,4v-68,88,-156,125,-283,145r-96,174r-62,121v-19,38,-37,76,-60,112v-21,34,-77,31,-117,49v-4,2,-6,2,-7,-1v-1,-3,1,-5,5,-6v86,-25,117,-99,158,-169r166,-280v-7,-1,-9,-16,0,-17v4,-1,8,0,10,-1r99,-165v19,-34,39,-64,59,-90v9,-7,34,-13,46,-9r-64,70r-47,63v23,-23,45,-54,83,-61xm180,-165v-3,-27,-31,-7,-43,4v-46,36,-74,95,-104,147v71,-23,129,-77,147,-151","w":198},"q":{"d":"122,-43v-15,17,-43,46,-72,46v-34,0,-25,-43,-9,-68v36,-58,83,-121,171,-126r54,-89v8,-12,13,-22,24,-25v7,0,9,7,6,13v-21,38,-42,69,-64,103v17,3,36,9,34,27v-10,-1,-21,-22,-39,-20r-75,110r-116,185r-99,177v-20,42,-48,85,-56,132v1,20,18,17,29,5v161,-163,274,-382,418,-562v5,-7,10,0,6,6r-94,129r-184,265v-50,59,-95,139,-159,181v-17,11,-31,17,-42,17v-24,0,-23,-28,-13,-47v83,-161,185,-309,280,-459xm209,-184v-59,1,-83,47,-111,83v-18,23,-38,56,-42,83v3,16,17,7,29,-2v51,-41,84,-101,124,-164","w":231},"r":{"d":"117,-131v30,-23,60,-59,107,-65v8,-1,20,6,20,12v-8,7,-14,27,-23,32v-35,-43,-93,15,-113,40v-26,35,-46,75,-70,113v-1,2,-3,3,-6,3v-8,-6,-20,-16,-7,-30r100,-171v4,0,18,9,16,17v-4,18,-21,33,-24,49","w":175,"k":{"-":42,"\u00ab":31,"\u2039":31,"?":36,".":68,":":27,";":27,",":50,"\u0153":9,"\u00f8":9,"\u00e6":9,"s":9,"q":9,"o":9,"g":9,"e":9,"d":9,"c":11,"a":9}},"s":{"d":"89,-123v7,-38,39,-71,80,-71v26,0,7,19,5,29v-9,5,-12,-16,-27,-11v-16,1,-39,11,-38,29v2,31,37,44,37,78v0,52,-43,77,-91,77v-37,0,-56,-12,-60,-37r19,-14v7,19,23,43,49,43v33,0,57,-14,57,-46v0,-34,-29,-45,-31,-77","w":161,"k":{"-":64,"\u00bb":40,"\u00ab":38,"\u203a":40,"\u2039":38,"\u201c":31,"\u02bb":31,"?":40,"!":40,".":54,":":36,";":27,",":36,"c":9,"b":9}},"t":{"d":"111,-173v-16,-1,-40,9,-50,0v5,-16,37,-12,58,-13r76,-125r59,-24v6,13,-27,11,-30,25v-28,38,-52,83,-77,124r111,0v4,2,4,4,1,6r-119,5v-25,47,-53,80,-53,132v0,59,77,22,102,4v2,-2,3,-1,5,1v2,2,2,4,-1,5v-35,22,-62,37,-110,37v-22,0,-38,-13,-36,-37v5,-50,36,-91,64,-140","w":178},"u":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26","w":231},"v":{"d":"194,-230v41,-2,46,55,24,87v-38,55,-94,106,-153,139v-22,13,-32,9,-43,-5v10,-7,28,-6,38,-18v23,-27,25,-109,39,-147v-9,-5,-25,2,-35,2v-5,-2,-5,-5,1,-6v22,-4,61,-8,81,-15v4,9,-13,9,-15,20v-16,55,-19,121,-65,147v-2,4,-2,6,1,4v70,-26,127,-74,138,-160v3,-25,-5,-39,-11,-48","w":194,"k":{"-":42,"\u00bb":36,"\u00ab":33,"\u203a":36,"\u2039":33,"?":45,"!":36,".":55,":":36,";":36,",":54}},"w":{"d":"307,-196v32,27,120,6,158,3v-28,22,-102,13,-138,29v-6,90,-40,165,-103,198v-44,23,-101,-6,-84,-64v-20,11,-50,31,-79,30v-31,-1,-27,-39,-15,-64v18,-40,48,-84,74,-115v11,-6,32,-16,44,-10v-45,34,-80,95,-92,161v3,15,14,17,32,10v9,-3,21,-10,37,-20v14,-58,43,-108,80,-145v9,-9,38,-17,35,3v-9,60,-47,94,-89,130v0,38,10,71,47,71v75,0,91,-107,83,-188v2,-13,-19,-13,-15,-21v6,1,20,-9,25,-8xm167,-58v36,-28,63,-59,67,-104v1,-13,-10,-17,-21,-5v-22,25,-39,65,-46,109","w":339,"k":{"-":42,".":48,",":26,"v":23}},"x":{"d":"138,-100v-10,40,-22,115,40,95v37,-12,61,-38,89,-67v2,-1,9,-2,7,2v-47,47,-79,79,-143,84v-51,4,-29,-69,-21,-100v-68,44,-131,79,-136,181v-4,91,92,144,178,104v20,-9,36,-21,51,-37v2,-2,5,-3,7,-1v2,2,2,3,-1,6v-40,33,-78,57,-143,59v-122,4,-146,-148,-75,-226v29,-31,68,-63,121,-94v5,-24,15,-46,15,-72v0,-21,-26,-9,-38,-6v5,-17,48,-20,68,-26v16,0,6,19,4,27r-21,63v39,-27,90,-44,94,-90v18,3,29,18,9,34v-29,23,-71,43,-105,64","w":225,"k":{"-":42,"\u0153":7,"y":4,"w":8,"u":8,"r":8,"p":12,"o":7,"n":15,"m":14,"l":12,"k":13,"i":12,"h":10,"g":6,"e":14,"c":11}},"y":{"d":"-342,293v6,37,28,72,84,67v102,-8,157,-75,211,-139v63,-75,126,-174,169,-260v-14,12,-38,31,-64,29v-43,-3,-28,-41,-5,-75v21,-32,39,-67,64,-95v8,0,21,-8,25,-1v-22,43,-68,99,-76,148v11,28,50,-8,63,-18v26,-35,57,-103,82,-143v14,-22,25,-10,26,10v-19,43,-61,85,-85,122r-131,204v-61,86,-126,169,-219,220v-64,35,-182,19,-144,-69","w":204,"k":{"-":64,"\u00bb":36,"\u00ab":50,"\u203a":36,"\u2039":50,"?":40,"!":40,".":58,":":45,";":36,",":45,"c":9}},"z":{"d":"140,-204v-19,19,-5,60,28,57v37,-3,62,-26,85,-47v3,-3,6,-3,9,0v5,18,-23,21,-32,34r-84,67r-83,59v-1,2,1,4,5,6r89,57v67,38,131,93,217,93v62,0,102,-39,127,-86v2,-2,5,-1,6,2v-28,110,-212,106,-307,52v-57,-32,-113,-72,-169,-105v-17,3,-27,24,-44,19v-2,-4,0,-7,5,-9v77,-38,145,-82,202,-136v-17,-10,-58,23,-81,-1v-9,-6,-13,-16,-13,-30v5,-13,22,-27,36,-36v2,0,4,2,4,4","w":200,"k":{"-":48,"e":14}},"\u00e0":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm175,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":256},"\u00e1":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm302,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":256},"\u00e2":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm276,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":256},"\u00e3":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm278,-282v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":256},"\u00e4":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm257,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm192,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":256},"\u00e5":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm192,-303v2,-36,25,-60,64,-61v29,0,44,12,44,38v-1,32,-27,61,-65,61v-26,0,-45,-13,-43,-38xm239,-270v31,0,48,-24,48,-54v0,-21,-9,-35,-32,-35v-53,0,-72,89,-16,89","w":256},"\u01fb":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm171,-287v2,-36,25,-60,64,-61v29,0,44,12,44,38v-1,32,-27,61,-65,61v-26,0,-45,-13,-43,-38xm218,-254v31,0,48,-24,48,-54v0,-21,-9,-35,-32,-35v-53,0,-72,89,-16,89xm357,-478v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":256},"\u0101":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm257,-288r-79,2r5,-14r77,-2","w":256},"\u0103":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm233,-274v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":256},"\u0105":{"d":"159,-12v0,27,35,21,55,9v50,-29,97,-77,134,-123v3,-4,6,0,6,3v-52,55,-102,128,-191,143v-61,-7,-20,-82,-2,-111v-31,37,-64,86,-120,96v-35,-6,-17,-44,-2,-71v34,-61,91,-126,179,-132v6,-18,24,-23,42,-24r-17,25v8,1,37,0,29,10v-6,-2,-25,-5,-33,-4v-38,72,-67,114,-80,179xm214,-191v-83,6,-137,98,-156,172v2,13,12,5,22,0v61,-38,100,-107,134,-172xm142,106v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":256},"\u00e6":{"d":"367,-117v-45,55,-98,123,-191,123v-18,0,-29,-10,-35,-23v-8,-7,-17,9,-25,12v20,-42,36,-71,54,-124v-42,60,-83,116,-141,133v-24,-1,-24,-24,-13,-45v31,-61,86,-114,150,-146v12,-6,25,-9,36,-9r21,-36v16,12,-8,35,-11,56v20,-20,41,-33,62,-33v15,0,22,6,22,17v0,52,-51,78,-111,80v-11,28,-35,106,18,102v76,-5,120,-63,158,-110v1,-3,7,-1,6,3xm189,-121v43,8,78,-24,79,-66v-7,-25,-32,-7,-47,11v-13,16,-24,34,-32,55xm45,-25v5,17,18,10,32,-2v46,-42,89,-100,121,-162v-63,3,-108,72,-137,118v-12,18,-16,34,-16,46","w":276},"\u0107":{"d":"79,-45v9,57,61,41,104,9v28,-21,59,-49,91,-89v3,-3,5,-4,7,-2v-45,57,-95,123,-187,132v-49,5,-58,-37,-42,-75v25,-57,68,-116,133,-128v32,-6,42,27,27,47v-4,2,-11,13,-20,14v7,-21,-3,-43,-26,-40v-58,8,-84,67,-87,132xm301,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":192},"\u0109":{"d":"79,-45v9,57,61,41,104,9v28,-21,59,-49,91,-89v3,-3,5,-4,7,-2v-45,57,-95,123,-187,132v-49,5,-58,-37,-42,-75v25,-57,68,-116,133,-128v32,-6,42,27,27,47v-4,2,-11,13,-20,14v7,-21,-3,-43,-26,-40v-58,8,-84,67,-87,132xm248,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":192},"\u010d":{"d":"79,-45v9,57,61,41,104,9v28,-21,59,-49,91,-89v3,-3,5,-4,7,-2v-45,57,-95,123,-187,132v-49,5,-58,-37,-42,-75v25,-57,68,-116,133,-128v32,-6,42,27,27,47v-4,2,-11,13,-20,14v7,-21,-3,-43,-26,-40v-58,8,-84,67,-87,132xm285,-354v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":192},"\u010b":{"d":"79,-45v9,57,61,41,104,9v28,-21,59,-49,91,-89v3,-3,5,-4,7,-2v-45,57,-95,123,-187,132v-49,5,-58,-37,-42,-75v25,-57,68,-116,133,-128v32,-6,42,27,27,47v-4,2,-11,13,-20,14v7,-21,-3,-43,-26,-40v-58,8,-84,67,-87,132xm169,-290v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":192},"\u00e7":{"d":"79,-45v9,57,61,41,104,9v28,-21,59,-49,91,-89v3,-3,5,-4,7,-2v-45,57,-95,123,-187,132v-49,5,-58,-37,-42,-75v25,-57,68,-116,133,-128v32,-6,42,27,27,47v-4,2,-11,13,-20,14v7,-21,-3,-43,-26,-40v-58,8,-84,67,-87,132xm56,45v7,-23,38,-42,62,-45v-4,10,-35,13,-36,29v4,14,29,12,29,30v-11,32,-55,51,-84,66v-2,0,-8,-3,-7,-6v19,-12,58,-18,64,-43v-1,-17,-26,-14,-28,-31","w":192},"\u010f":{"d":"590,-608v18,-2,33,10,18,20v-7,5,-4,20,-13,22v-101,-33,-161,56,-205,118v-91,127,-171,255,-228,397v-11,28,-15,49,-15,62v-3,44,48,40,75,20v45,-33,81,-89,106,-142v1,-2,2,-3,5,-2v3,1,3,3,0,7v-39,66,-71,147,-159,160v-81,-7,-38,-107,-13,-154v-40,42,-62,91,-121,105v-38,-1,-15,-54,-4,-71v43,-66,88,-117,176,-133v73,-129,146,-242,246,-339v37,-36,76,-66,132,-70xm56,-25v7,16,16,6,32,-6v45,-38,87,-96,116,-154v-78,-1,-109,75,-134,115v-12,19,-14,35,-14,45xm417,-413v53,66,-26,150,-66,189v-2,2,-4,3,-6,1v-2,-14,16,-20,22,-30v33,-23,59,-96,26,-133v-1,-2,12,-20,24,-27","w":242},"\u0111":{"d":"186,-294v34,123,11,290,-115,298v-44,3,-39,-46,-23,-77v27,-53,77,-101,137,-123v3,-1,5,-4,5,-8v-3,-27,-10,-55,-21,-89r-90,9v-5,1,-7,0,-7,-3v11,-21,61,-11,94,-15v-27,-87,-64,-175,-114,-260v-9,-15,-4,-36,3,-47v57,83,101,192,129,305r74,-3v4,0,6,1,5,5v-10,15,-50,1,-77,8xm187,-191v-57,28,-107,93,-120,164v2,35,37,22,55,5v37,-33,66,-92,70,-157v0,-8,-2,-12,-5,-12","w":198},"\u00e8":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm152,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":184},"\u00e9":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm285,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":184},"\u00ea":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm243,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":184},"\u011b":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm280,-354v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":184},"\u00eb":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm221,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm156,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":184},"\u0117":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm180,-290v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":184},"\u0113":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm227,-288r-79,2r5,-14r77,-2","w":184},"\u0115":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm189,-274v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":184},"\u0119":{"d":"204,-182v-7,50,-53,72,-110,74v-14,23,-33,103,18,98v71,-6,116,-59,153,-100v1,-3,7,-1,6,3v-45,50,-98,113,-186,113v-84,0,-23,-118,4,-146v24,-25,54,-55,93,-58v15,0,21,4,22,16xm97,-117v41,10,79,-22,79,-60v0,-18,-20,-12,-30,-5v-21,15,-36,42,-49,65xm111,85v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":184},"\u011d":{"d":"251,-264v10,5,12,28,5,40r-80,148v-88,139,-160,293,-262,418v-60,74,-140,131,-270,132v-94,1,-141,-47,-141,-135v0,-16,2,-38,10,-46v8,8,-4,24,-3,38v6,151,243,144,332,68v145,-124,217,-343,322,-508v-38,40,-62,101,-120,119v-26,-6,-22,-36,-8,-61v36,-64,78,-148,173,-149v14,-19,23,-51,42,-64xm203,-187v-74,-8,-95,54,-122,99v-12,20,-19,45,-21,67v4,20,13,8,27,-5v43,-41,87,-102,116,-161xm263,-398v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":213},"\u0121":{"d":"251,-264v10,5,12,28,5,40r-80,148v-88,139,-160,293,-262,418v-60,74,-140,131,-270,132v-94,1,-141,-47,-141,-135v0,-16,2,-38,10,-46v8,8,-4,24,-3,38v6,151,243,144,332,68v145,-124,217,-343,322,-508v-38,40,-62,101,-120,119v-26,-6,-22,-36,-8,-61v36,-64,78,-148,173,-149v14,-19,23,-51,42,-64xm203,-187v-74,-8,-95,54,-122,99v-12,20,-19,45,-21,67v4,20,13,8,27,-5v43,-41,87,-102,116,-161xm188,-299v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":213},"\u011f":{"d":"251,-264v10,5,12,28,5,40r-80,148v-88,139,-160,293,-262,418v-60,74,-140,131,-270,132v-94,1,-141,-47,-141,-135v0,-16,2,-38,10,-46v8,8,-4,24,-3,38v6,151,243,144,332,68v145,-124,217,-343,322,-508v-38,40,-62,101,-120,119v-26,-6,-22,-36,-8,-61v36,-64,78,-148,173,-149v14,-19,23,-51,42,-64xm203,-187v-74,-8,-95,54,-122,99v-12,20,-19,45,-21,67v4,20,13,8,27,-5v43,-41,87,-102,116,-161xm221,-301v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":213},"\u0123":{"d":"200,-277v-45,-49,23,-115,62,-136v6,-3,9,3,4,6v-23,15,-52,41,-54,76v-1,17,10,21,11,32v-1,5,-17,19,-23,22xm-158,399v-106,91,-370,71,-326,-101v0,-3,-1,-5,-3,-5v-8,8,-10,31,-10,46v0,88,47,137,141,135v233,-6,311,-178,399,-326r133,-224v28,-55,62,-104,85,-164v1,-18,-12,-35,-22,-12v-9,21,-19,33,-30,52v-93,-1,-134,87,-173,149v-24,38,-3,78,32,51v36,-28,67,-72,96,-109r-172,317v-42,81,-90,140,-150,191xm203,-187v-34,65,-81,138,-137,176v-15,-58,43,-128,81,-165v11,-11,36,-14,56,-11","w":213},"\u0125":{"d":"627,-562v-1,4,-4,2,-4,-1v-5,-82,-135,-74,-188,-31v-140,113,-222,281,-317,458v32,-23,62,-56,107,-65v14,3,6,12,0,23v-26,44,-62,87,-69,146v-2,18,10,28,27,28v61,-13,100,-63,148,-120v1,0,2,1,2,3v-44,55,-95,123,-178,137v-63,-4,-16,-86,-2,-115v10,-20,36,-51,30,-74v-60,17,-101,109,-132,163v-5,10,-9,14,-13,14v-11,1,-24,-6,-16,-20r73,-129r73,-120r90,-137v56,-84,121,-163,193,-222v71,-58,205,-48,176,62xm614,-794v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":239},"\u0127":{"d":"627,-562v-1,4,-4,2,-4,-1v-3,-65,-90,-80,-149,-52v-126,59,-186,181,-267,313v32,2,68,-5,103,-4v5,0,6,2,5,6v-20,12,-79,2,-114,8r-83,156v32,-23,62,-56,107,-65v14,3,6,12,0,23v-26,44,-62,87,-69,146v-2,18,10,28,27,28v61,-13,100,-63,148,-120v1,0,2,1,2,3v-44,55,-95,123,-178,137v-63,-4,-16,-86,-2,-115v10,-20,36,-51,30,-74v-60,17,-101,109,-132,163v-5,10,-9,14,-13,14v-11,1,-24,-6,-16,-20r73,-129r89,-145r-50,5v-7,0,-6,-7,-2,-9v13,-6,35,-5,59,-7v78,-118,158,-245,267,-327v72,-54,198,-39,169,66","w":239},"\u00ec":{"d":"126,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13xm100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20","w":162},"\u00ed":{"d":"262,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4xm100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20","w":162},"\u00ee":{"d":"215,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3xm100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20","w":162},"\u0129":{"d":"100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20xm216,-282v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":162},"\u00ef":{"d":"188,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm123,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11xm100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20","w":162},"\u012b":{"d":"100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20xm209,-288r-79,2r5,-14r77,-2","w":162},"\u012d":{"d":"100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20xm178,-274v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":162},"\u012f":{"d":"171,-297v-1,-15,14,-34,30,-33v8,0,11,3,11,11v0,14,-15,34,-30,33v-7,0,-11,-4,-11,-11xm100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20xm76,86v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":162},"\u0133":{"d":"168,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11xm142,-183v-18,53,-60,94,-68,155v4,38,50,12,66,0v44,-33,70,-82,88,-140v-4,-20,-33,5,-43,-5v23,-13,57,-15,82,-27v12,0,10,14,6,23r-110,209r-100,162r142,-115v60,-50,125,-106,158,-178v8,-18,5,-40,-1,-52v43,39,-9,108,-36,133r-190,162v-49,40,-94,83,-131,135v-8,11,-23,29,-42,40v-27,-52,47,-77,72,-111v56,-76,98,-177,144,-264v-25,30,-61,60,-102,60v-69,0,-14,-90,1,-121v8,-17,15,-26,19,-44v-1,-21,-21,-1,-36,-6v13,-15,55,-20,72,-26v6,0,9,3,9,10xm283,-293v-1,-16,14,-35,29,-34v8,0,12,4,12,12v1,14,-15,34,-31,32v-7,0,-10,-3,-10,-10","w":301},"\u0131":{"d":"100,-13v71,0,114,-75,154,-112v-8,27,-31,41,-51,60v-36,34,-64,62,-122,65v-66,3,-28,-73,-9,-104r43,-72v3,-7,29,-22,35,-14v-22,50,-65,95,-72,157v-2,14,9,20,22,20","w":162},"\u0135":{"d":"182,-334v-31,21,-57,60,-86,83v-6,-4,-1,-11,5,-16r95,-89v4,-1,8,-2,8,3v-2,38,19,99,-13,112v-10,-24,1,-68,-9,-93xm238,-151v43,39,-9,108,-36,133r-190,162r-65,56v-50,42,-69,95,-124,134v-28,-57,57,-84,85,-124v82,-118,129,-230,196,-378v-4,-20,-33,5,-43,-5v23,-13,57,-15,82,-27v12,0,10,15,5,23r-109,209r-100,162r142,-115v59,-50,123,-106,158,-178v9,-19,3,-40,-1,-52","w":175},"\u0137":{"d":"414,-550v33,-19,111,-39,122,14v-3,15,-9,34,-14,47v-7,0,-3,-10,-2,-14v-5,-48,-66,-53,-108,-31v-152,81,-222,279,-314,426v-14,23,-20,31,-23,45v25,-20,48,-46,73,-67v-7,-19,18,-30,28,-34v3,0,1,7,3,8v36,-27,72,-61,110,-85v9,1,15,18,1,20v-43,17,-79,49,-112,76v8,46,14,97,42,123v70,13,104,-65,142,-107v2,-3,4,-3,6,-1v-27,49,-71,98,-119,124v-77,43,-87,-50,-99,-115v-39,39,-77,74,-106,123v-1,3,-3,4,-7,4v-27,-12,-5,-41,6,-60r61,-108r86,-138r80,-112v42,-54,84,-103,144,-138xm114,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":270},"\u013a":{"d":"454,-603v26,4,18,29,7,53v-63,135,-165,252,-295,324r-50,90v-14,28,-34,62,-35,97v0,41,46,31,73,17v46,-25,89,-67,120,-106v4,-4,7,-5,8,-3v-45,59,-102,124,-194,135v-87,-10,-19,-112,3,-149r189,-313v38,-63,101,-122,174,-145xm430,-563v0,-25,-24,-13,-35,-1v-84,95,-150,216,-221,326v99,-57,187,-149,236,-252v13,-29,20,-53,20,-73xm535,-735v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":182},"\u013e":{"d":"454,-603v26,4,18,29,7,53v-63,135,-165,252,-295,324r-50,90v-14,28,-34,62,-35,97v0,41,46,31,73,17v46,-25,89,-67,120,-106v4,-4,7,-5,8,-3v-45,59,-102,124,-194,135v-87,-10,-19,-112,3,-149r189,-313v38,-63,101,-122,174,-145xm430,-563v0,-25,-24,-13,-35,-1v-84,95,-150,216,-221,326v99,-57,187,-149,236,-252v13,-29,20,-53,20,-73xm414,-413v53,66,-26,150,-66,189v-2,2,-4,3,-6,1v-2,-14,16,-20,22,-30v33,-23,59,-96,26,-133v-1,-2,12,-20,24,-27","w":279},"\u013c":{"d":"454,-603v26,4,18,29,7,53v-63,135,-165,252,-295,324r-50,90v-14,28,-34,62,-35,97v0,41,46,31,73,17v46,-25,89,-67,120,-106v4,-4,7,-5,8,-3v-45,59,-102,124,-194,135v-87,-10,-19,-112,3,-149r189,-313v38,-63,101,-122,174,-145xm430,-563v0,-25,-24,-13,-35,-1v-84,95,-150,216,-221,326v99,-57,187,-149,236,-252v13,-29,20,-53,20,-73xm88,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":182},"\u0142":{"d":"157,-361v-6,0,-14,-5,-13,-11v17,-6,66,-13,90,-18v60,-79,108,-163,205,-202v37,-15,123,-2,87,35v-5,6,-9,9,-13,9v-12,-46,-87,-42,-120,-13v-48,42,-93,107,-131,166r80,-15v5,0,8,4,8,11v1,4,-2,6,-4,3v-32,3,-50,8,-93,16r-113,191v-24,46,-53,95,-60,142v6,68,96,26,123,1v25,-23,57,-48,77,-75v3,-4,5,-5,7,-3v-4,17,-24,32,-36,45v-36,39,-84,79,-153,83v-27,1,-65,-14,-58,-44v31,-123,117,-234,183,-334","w":195,"k":{"\u201d":-40,"\u201c":-50,"\u2019":-40,"\u02bb":-50}},"\u0144":{"d":"150,-19v2,30,34,19,55,7v45,-25,90,-67,117,-110v4,-3,11,-1,5,6v-45,54,-92,128,-179,128v-58,0,-11,-68,1,-92v15,-30,40,-60,47,-93v-76,30,-118,111,-161,176v-27,-26,15,-54,25,-76r56,-118v7,-10,24,0,23,10v-6,17,-31,50,-39,74r76,-64v17,-13,34,-29,52,-33v4,-1,10,8,10,11v-26,51,-77,107,-88,174xm321,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":235},"\u0148":{"d":"150,-19v2,30,34,19,55,7v45,-25,90,-67,117,-110v4,-3,11,-1,5,6v-45,54,-92,128,-179,128v-58,0,-11,-68,1,-92v15,-30,40,-60,47,-93v-76,30,-118,111,-161,176v-27,-26,15,-54,25,-76r56,-118v7,-10,24,0,23,10v-6,17,-31,50,-39,74r76,-64v17,-13,34,-29,52,-33v4,-1,10,8,10,11v-26,51,-77,107,-88,174xm294,-354v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":235},"\u00f1":{"d":"150,-19v2,30,34,19,55,7v45,-25,90,-67,117,-110v4,-3,11,-1,5,6v-45,54,-92,128,-179,128v-58,0,-11,-68,1,-92v15,-30,40,-60,47,-93v-76,30,-118,111,-161,176v-27,-26,15,-54,25,-76r56,-118v7,-10,24,0,23,10v-6,17,-31,50,-39,74r76,-64v17,-13,34,-29,52,-33v4,-1,10,8,10,11v-26,51,-77,107,-88,174xm264,-282v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":235},"\u0146":{"d":"150,-19v2,30,34,19,55,7v45,-25,90,-67,117,-110v4,-3,11,-1,5,6v-45,54,-92,128,-179,128v-58,0,-11,-68,1,-92v15,-30,40,-60,47,-93v-76,30,-118,111,-161,176v-27,-26,15,-54,25,-76r56,-118v7,-10,24,0,23,10v-6,17,-31,50,-39,74r76,-64v17,-13,34,-29,52,-33v4,-1,10,8,10,11v-26,51,-77,107,-88,174xm77,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":235},"\u00f2":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17xm172,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":225},"\u00f3":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17xm291,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":225},"\u00f4":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17xm270,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":225},"\u00f5":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17xm278,-282v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":225},"\u00f6":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17xm240,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm175,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":225},"\u0151":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17xm298,-339v6,-9,15,1,14,10v-18,24,-50,60,-76,76v17,-31,42,-58,62,-86xm251,-344v9,3,8,19,0,24r-67,68v-1,1,-2,1,-3,0v16,-36,45,-58,65,-89v1,-2,3,-3,5,-3","w":225},"\u014d":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17xm262,-288r-79,2r5,-14r77,-2","w":225},"\u014f":{"d":"233,-223v-18,35,-25,116,30,116v34,0,59,-28,74,-49v1,-3,2,-3,5,-2v3,1,3,3,1,5v-18,24,-47,54,-87,54v-24,-1,-45,-13,-54,-31v-29,56,-61,128,-133,136v-55,6,-26,-70,-11,-95v29,-51,66,-96,134,-106v1,-21,19,-33,40,-33v2,1,2,3,1,5xm86,-7v56,-14,91,-86,108,-140v-3,-14,2,-36,-7,-44v-57,16,-81,74,-105,123v-7,14,-8,30,-8,44v0,8,3,19,12,17xm228,-274v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":225},"\u00f8":{"d":"212,-183v27,23,94,11,130,7v-30,15,-90,13,-131,10v-7,75,-50,131,-102,163v-16,10,-38,10,-54,1v-14,10,-18,30,-35,35v1,-16,22,-29,30,-42v-4,-7,-5,-14,-5,-23v7,-91,83,-132,149,-170v6,1,10,15,13,16v12,-12,23,-31,37,-40v-2,16,-23,29,-32,43xm68,-27r121,-139v-7,-23,-21,-15,-41,-3v-43,25,-82,73,-80,142xm70,-20v30,38,76,-17,89,-42v14,-27,31,-61,31,-97","w":211},"\u01ff":{"d":"212,-183v27,23,94,11,130,7v-30,15,-90,13,-131,10v-7,75,-50,131,-102,163v-16,10,-38,10,-54,1v-14,10,-18,30,-35,35v1,-16,22,-29,30,-42v-4,-7,-5,-14,-5,-23v7,-91,83,-132,149,-170v6,1,10,15,13,16v12,-12,23,-31,37,-40v-2,16,-23,29,-32,43xm68,-27r121,-139v-7,-23,-21,-15,-41,-3v-43,25,-82,73,-80,142xm70,-20v30,38,76,-17,89,-42v14,-27,31,-61,31,-97xm297,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":211},"\u0153":{"d":"220,5v-41,2,-69,-13,-59,-55v-19,27,-57,56,-92,56v-60,0,-21,-92,-2,-118v23,-30,63,-59,105,-83v7,1,3,5,1,7v-54,30,-98,77,-103,154v-2,35,29,34,50,14v35,-33,77,-91,59,-158v5,-2,24,-19,31,-11v3,18,0,43,-5,59v24,-37,58,-62,98,-68v29,2,18,30,4,47v-27,35,-74,68,-115,88v-14,68,74,63,125,33v27,-16,56,-38,83,-71v2,-3,3,-3,4,-1v1,2,0,5,-2,7v-46,52,-101,96,-182,100xm194,-70v45,-26,91,-59,108,-109v-9,-27,-42,6,-52,16v-24,23,-46,56,-56,93","w":321},"\u0155":{"d":"117,-131v30,-23,60,-59,107,-65v8,-1,20,6,20,12v-8,7,-14,27,-23,32v-35,-43,-93,15,-113,40v-26,35,-46,75,-70,113v-1,2,-3,3,-6,3v-8,-6,-20,-16,-7,-30r100,-171v4,0,18,9,16,17v-4,18,-21,33,-24,49xm306,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":175},"\u0159":{"d":"117,-131v30,-23,60,-59,107,-65v8,-1,20,6,20,12v-8,7,-14,27,-23,32v-35,-43,-93,15,-113,40v-26,35,-46,75,-70,113v-1,2,-3,3,-6,3v-8,-6,-20,-16,-7,-30r100,-171v4,0,18,9,16,17v-4,18,-21,33,-24,49xm287,-354v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":175},"\u0157":{"d":"117,-131v30,-23,60,-59,107,-65v8,-1,20,6,20,12v-8,7,-14,27,-23,32v-35,-43,-93,15,-113,40v-26,35,-46,75,-70,113v-1,2,-3,3,-6,3v-8,-6,-20,-16,-7,-30r100,-171v4,0,18,9,16,17v-4,18,-21,33,-24,49xm47,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":175},"\u015b":{"d":"89,-123v7,-38,39,-71,80,-71v26,0,7,19,5,29v-9,5,-12,-16,-27,-11v-16,1,-39,11,-38,29v2,31,37,44,37,78v0,52,-43,77,-91,77v-37,0,-56,-12,-60,-37r19,-14v7,19,23,43,49,43v33,0,57,-14,57,-46v0,-34,-29,-45,-31,-77xm292,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":161},"\u015d":{"d":"89,-123v7,-38,39,-71,80,-71v26,0,7,19,5,29v-9,5,-12,-16,-27,-11v-16,1,-39,11,-38,29v2,31,37,44,37,78v0,52,-43,77,-91,77v-37,0,-56,-12,-60,-37r19,-14v7,19,23,43,49,43v33,0,57,-14,57,-46v0,-34,-29,-45,-31,-77xm229,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":161},"\u0161":{"d":"89,-123v7,-38,39,-71,80,-71v26,0,7,19,5,29v-9,5,-12,-16,-27,-11v-16,1,-39,11,-38,29v2,31,37,44,37,78v0,52,-43,77,-91,77v-37,0,-56,-12,-60,-37r19,-14v7,19,23,43,49,43v33,0,57,-14,57,-46v0,-34,-29,-45,-31,-77xm265,-354v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":161},"\u015f":{"d":"89,-123v7,-38,39,-71,80,-71v26,0,7,19,5,29v-9,5,-12,-16,-27,-11v-16,1,-39,11,-38,29v2,31,37,44,37,78v0,52,-43,77,-91,77v-37,0,-56,-12,-60,-37r19,-14v7,19,23,43,49,43v33,0,57,-14,57,-46v0,-34,-29,-45,-31,-77xm17,47v7,-23,38,-42,62,-45v-4,10,-35,13,-36,29v4,14,29,12,29,30v-11,32,-55,51,-84,66v-2,0,-8,-3,-7,-6v19,-12,58,-18,64,-43v-1,-17,-26,-14,-28,-31","w":161},"\u0219":{"d":"89,-123v7,-38,39,-71,80,-71v26,0,7,19,5,29v-9,5,-12,-16,-27,-11v-16,1,-39,11,-38,29v2,31,37,44,37,78v0,52,-43,77,-91,77v-37,0,-56,-12,-60,-37r19,-14v7,19,23,43,49,43v33,0,57,-14,57,-46v0,-34,-29,-45,-31,-77xm76,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":161},"\u00df":{"d":"385,-503v41,0,21,51,2,75v-46,60,-122,136,-171,193v-34,40,3,89,-4,141v-9,68,-78,108,-164,96v-79,131,-151,291,-273,371v-50,32,-131,38,-166,-6v-1,-3,1,-6,5,-4v39,28,120,24,162,-3v122,-78,175,-220,252,-364v-47,-27,-11,-82,7,-109v3,-2,5,-2,5,1v-16,22,-28,70,-3,90v83,-181,166,-348,309,-465v14,-12,28,-16,39,-16xm175,-81v-1,-55,-17,-106,19,-143r68,-70v43,-50,93,-93,110,-160v0,-26,-30,-25,-46,-8v-119,124,-180,304,-271,453v59,20,121,-12,120,-72","w":215,"k":{"-":54,"\u00ab":50,"\u2039":50,"\u201d":-32,"\u2019":-32,".":54,":":32,";":32,",":40}},"\u0165":{"d":"111,-173v-16,-1,-40,9,-50,0v5,-16,37,-12,58,-13r76,-125r59,-24v6,13,-27,11,-30,25v-28,38,-52,83,-77,124r111,0v4,2,4,4,1,6r-119,5v-25,47,-53,80,-53,132v0,59,77,22,102,4v2,-2,3,-1,5,1v2,2,2,4,-1,5v-35,22,-62,37,-110,37v-22,0,-38,-13,-36,-37v5,-50,36,-91,64,-140xm320,-413v53,66,-26,150,-66,189v-2,2,-4,3,-6,1v-2,-14,16,-20,22,-30v33,-23,59,-96,26,-133v-1,-2,12,-20,24,-27","w":207},"\u021b":{"d":"111,-173v-16,-1,-40,9,-50,0v5,-16,37,-12,58,-13r76,-125r59,-24v6,13,-27,11,-30,25v-28,38,-52,83,-77,124r111,0v4,2,4,4,1,6r-119,5v-25,47,-53,80,-53,132v0,59,77,22,102,4v2,-2,3,-1,5,1v2,2,2,4,-1,5v-35,22,-62,37,-110,37v-22,0,-38,-13,-36,-37v5,-50,36,-91,64,-140xm91,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":178},"\u0167":{"d":"116,-182v-17,-1,-43,9,-55,0v6,-17,40,-12,63,-13r71,-116r59,-24v6,13,-27,11,-30,25v-29,42,-46,69,-72,115r103,0v3,2,2,4,1,6r-111,5r-23,43r102,0v4,2,4,4,1,6r-109,5v-14,28,-29,56,-29,87v0,59,77,22,102,4v2,-2,3,-1,5,1v2,2,2,4,-1,5v-35,22,-62,37,-110,37v-22,0,-38,-13,-36,-37v2,-33,22,-63,38,-95r-45,4v-9,-5,3,-11,8,-16r44,-1v11,-19,10,-19,24,-41","w":178},"\u00f9":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm157,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":231},"\u00fa":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm302,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":231},"\u00fb":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm254,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":231},"\u0169":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm250,-282v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":231},"\u00fc":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm233,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm168,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":231},"\u0171":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm275,-339v6,-9,15,1,14,10v-18,24,-50,60,-76,76v17,-31,42,-58,62,-86xm228,-344v9,3,8,19,0,24r-67,68v-1,1,-2,1,-3,0v16,-36,45,-58,65,-89v1,-2,3,-3,5,-3","w":231},"\u016f":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm166,-303v2,-36,25,-60,64,-61v29,0,44,12,44,38v-1,32,-27,61,-65,61v-26,0,-45,-13,-43,-38xm213,-270v31,0,48,-24,48,-54v0,-21,-9,-35,-32,-35v-53,0,-72,89,-16,89","w":231},"\u016b":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm237,-288r-79,2r5,-14r77,-2","w":231},"\u016d":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm215,-274v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":231},"\u0173":{"d":"216,-158v-17,57,-74,82,-74,156v0,27,29,22,49,11v48,-27,90,-74,123,-121v4,-1,6,0,6,4v-43,52,-89,124,-170,135v-39,5,-37,-48,-22,-75v-18,21,-34,49,-70,49v-36,0,-20,-48,-7,-72v19,-38,43,-90,70,-123v6,-1,19,13,19,18v-25,48,-63,94,-75,152v3,23,20,11,34,-1v41,-35,67,-115,104,-159v6,1,16,15,13,26xm135,113v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":231},"\u1e81":{"d":"307,-196v32,27,120,6,158,3v-28,22,-102,13,-138,29v-6,90,-40,165,-103,198v-44,23,-101,-6,-84,-64v-20,11,-50,31,-79,30v-31,-1,-27,-39,-15,-64v18,-40,48,-84,74,-115v11,-6,32,-16,44,-10v-45,34,-80,95,-92,161v3,15,14,17,32,10v9,-3,21,-10,37,-20v14,-58,43,-108,80,-145v9,-9,38,-17,35,3v-9,60,-47,94,-89,130v0,38,10,71,47,71v75,0,91,-107,83,-188v2,-13,-19,-13,-15,-21v6,1,20,-9,25,-8xm167,-58v36,-28,63,-59,67,-104v1,-13,-10,-17,-21,-5v-22,25,-39,65,-46,109xm197,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":339},"\u1e83":{"d":"307,-196v32,27,120,6,158,3v-28,22,-102,13,-138,29v-6,90,-40,165,-103,198v-44,23,-101,-6,-84,-64v-20,11,-50,31,-79,30v-31,-1,-27,-39,-15,-64v18,-40,48,-84,74,-115v11,-6,32,-16,44,-10v-45,34,-80,95,-92,161v3,15,14,17,32,10v9,-3,21,-10,37,-20v14,-58,43,-108,80,-145v9,-9,38,-17,35,3v-9,60,-47,94,-89,130v0,38,10,71,47,71v75,0,91,-107,83,-188v2,-13,-19,-13,-15,-21v6,1,20,-9,25,-8xm167,-58v36,-28,63,-59,67,-104v1,-13,-10,-17,-21,-5v-22,25,-39,65,-46,109xm380,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":339},"\u0175":{"d":"307,-196v32,27,120,6,158,3v-28,22,-102,13,-138,29v-6,90,-40,165,-103,198v-44,23,-101,-6,-84,-64v-20,11,-50,31,-79,30v-31,-1,-27,-39,-15,-64v18,-40,48,-84,74,-115v11,-6,32,-16,44,-10v-45,34,-80,95,-92,161v3,15,14,17,32,10v9,-3,21,-10,37,-20v14,-58,43,-108,80,-145v9,-9,38,-17,35,3v-9,60,-47,94,-89,130v0,38,10,71,47,71v75,0,91,-107,83,-188v2,-13,-19,-13,-15,-21v6,1,20,-9,25,-8xm167,-58v36,-28,63,-59,67,-104v1,-13,-10,-17,-21,-5v-22,25,-39,65,-46,109xm308,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":339},"\u1e85":{"d":"307,-196v32,27,120,6,158,3v-28,22,-102,13,-138,29v-6,90,-40,165,-103,198v-44,23,-101,-6,-84,-64v-20,11,-50,31,-79,30v-31,-1,-27,-39,-15,-64v18,-40,48,-84,74,-115v11,-6,32,-16,44,-10v-45,34,-80,95,-92,161v3,15,14,17,32,10v9,-3,21,-10,37,-20v14,-58,43,-108,80,-145v9,-9,38,-17,35,3v-9,60,-47,94,-89,130v0,38,10,71,47,71v75,0,91,-107,83,-188v2,-13,-19,-13,-15,-21v6,1,20,-9,25,-8xm167,-58v36,-28,63,-59,67,-104v1,-13,-10,-17,-21,-5v-22,25,-39,65,-46,109xm267,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm202,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":339},"\u1ef3":{"d":"-342,293v6,37,28,72,84,67v102,-8,157,-75,211,-139v63,-75,126,-174,169,-260v-14,12,-38,31,-64,29v-43,-3,-28,-41,-5,-75v21,-32,39,-67,64,-95v8,0,21,-8,25,-1v-22,43,-68,99,-76,148v11,28,50,-8,63,-18v26,-35,57,-103,82,-143v14,-22,25,-10,26,10v-19,43,-61,85,-85,122r-131,204v-61,86,-126,169,-219,220v-64,35,-182,19,-144,-69xm147,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":204},"\u00fd":{"d":"-342,293v6,37,28,72,84,67v102,-8,157,-75,211,-139v63,-75,126,-174,169,-260v-14,12,-38,31,-64,29v-43,-3,-28,-41,-5,-75v21,-32,39,-67,64,-95v8,0,21,-8,25,-1v-22,43,-68,99,-76,148v11,28,50,-8,63,-18v26,-35,57,-103,82,-143v14,-22,25,-10,26,10v-19,43,-61,85,-85,122r-131,204v-61,86,-126,169,-219,220v-64,35,-182,19,-144,-69xm319,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":204},"\u0177":{"d":"-342,293v6,37,28,72,84,67v102,-8,157,-75,211,-139v63,-75,126,-174,169,-260v-14,12,-38,31,-64,29v-43,-3,-28,-41,-5,-75v21,-32,39,-67,64,-95v8,0,21,-8,25,-1v-22,43,-68,99,-76,148v11,28,50,-8,63,-18v26,-35,57,-103,82,-143v14,-22,25,-10,26,10v-19,43,-61,85,-85,122r-131,204v-61,86,-126,169,-219,220v-64,35,-182,19,-144,-69xm257,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":204},"\u00ff":{"d":"-342,293v6,37,28,72,84,67v102,-8,157,-75,211,-139v63,-75,126,-174,169,-260v-14,12,-38,31,-64,29v-43,-3,-28,-41,-5,-75v21,-32,39,-67,64,-95v8,0,21,-8,25,-1v-22,43,-68,99,-76,148v11,28,50,-8,63,-18v26,-35,57,-103,82,-143v14,-22,25,-10,26,10v-19,43,-61,85,-85,122r-131,204v-61,86,-126,169,-219,220v-64,35,-182,19,-144,-69xm224,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm159,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":204},"\u017a":{"d":"140,-204v-19,19,-5,60,28,57v37,-3,62,-26,85,-47v3,-3,6,-3,9,0v5,18,-23,21,-32,34r-84,67r-83,59v-1,2,1,4,5,6r89,57v67,38,131,93,217,93v62,0,102,-39,127,-86v2,-2,5,-1,6,2v-28,110,-212,106,-307,52v-57,-32,-113,-72,-169,-105v-17,3,-27,24,-44,19v-2,-4,0,-7,5,-9v77,-38,145,-82,202,-136v-17,-10,-58,23,-81,-1v-9,-6,-13,-16,-13,-30v5,-13,22,-27,36,-36v2,0,4,2,4,4xm335,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":200},"\u017e":{"d":"140,-204v-19,19,-5,60,28,57v37,-3,62,-26,85,-47v3,-3,6,-3,9,0v5,18,-23,21,-32,34r-84,67r-83,59v-1,2,1,4,5,6r89,57v67,38,131,93,217,93v62,0,102,-39,127,-86v2,-2,5,-1,6,2v-28,110,-212,106,-307,52v-57,-32,-113,-72,-169,-105v-17,3,-27,24,-44,19v-2,-4,0,-7,5,-9v77,-38,145,-82,202,-136v-17,-10,-58,23,-81,-1v-9,-6,-13,-16,-13,-30v5,-13,22,-27,36,-36v2,0,4,2,4,4xm309,-354v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":200},"\u017c":{"d":"140,-204v-19,19,-5,60,28,57v37,-3,62,-26,85,-47v3,-3,6,-3,9,0v5,18,-23,21,-32,34r-84,67r-83,59v-1,2,1,4,5,6r89,57v67,38,131,93,217,93v62,0,102,-39,127,-86v2,-2,5,-1,6,2v-28,110,-212,106,-307,52v-57,-32,-113,-72,-169,-105v-17,3,-27,24,-44,19v-2,-4,0,-7,5,-9v77,-38,145,-82,202,-136v-17,-10,-58,23,-81,-1v-9,-6,-13,-16,-13,-30v5,-13,22,-27,36,-36v2,0,4,2,4,4xm205,-290v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":200},"\u00f0":{"d":"144,-404v55,91,106,266,19,360v-23,25,-44,48,-87,48v-45,0,-39,-46,-23,-80v26,-58,73,-112,134,-136v13,-41,-25,-92,-41,-131v-8,-19,-19,-37,-30,-56v-22,5,-46,11,-61,17v-7,2,-9,2,-5,-2v10,-18,41,-14,62,-21v-24,-41,-51,-79,-81,-113v8,-6,33,-11,43,-5v20,30,46,72,66,113r71,-19v9,-5,8,4,5,8v-19,10,-45,9,-72,17xm190,-206v-60,32,-106,101,-118,179v3,36,37,21,55,2v36,-37,64,-101,67,-169v0,-8,-1,-12,-4,-12","w":210},"\u00fe":{"d":"199,-213v26,2,25,28,12,52v-32,62,-87,111,-157,144v109,-12,190,-54,243,-128v2,-2,6,-1,5,4v-68,88,-155,125,-281,145r-136,234v-30,16,-67,22,-111,32v-3,1,-4,0,-4,-2v0,-2,0,-3,2,-4v105,-26,142,-123,198,-201v14,-19,26,-40,37,-59v-8,-1,-9,-16,0,-17v4,-1,7,0,9,-1r111,-184v27,-46,57,-101,89,-163v12,-22,8,-48,-25,-46v-8,-2,-27,7,-34,2v16,-15,60,-15,90,-17v20,-2,20,30,11,44r-142,226v23,-23,45,-54,83,-61xm30,-14v70,-25,134,-84,153,-158v-7,-28,-33,-3,-47,8v-45,39,-77,94,-106,150","w":198},"\u014b":{"d":"-52,41v-22,64,59,83,104,53v77,-51,150,-138,150,-249v0,-6,-7,-8,-12,-4v-53,37,-98,91,-140,153v-5,8,-27,25,-34,12r88,-176v6,-14,20,-21,37,-26v7,2,1,9,-1,14v-15,28,-32,63,-52,107v39,-44,84,-89,138,-119v29,6,16,36,5,63v-38,94,-102,183,-180,242v-44,33,-120,24,-117,-40v0,-7,3,-41,14,-30","w":234},"\u207f":{"d":"238,-260v-7,17,-17,39,6,40v54,-10,90,-55,118,-93v1,-1,2,-2,4,-1v-27,48,-75,96,-140,105v-26,3,-28,-20,-15,-39v14,-36,43,-67,53,-105v-57,24,-91,85,-125,136v-2,1,-2,1,-3,1v-22,-20,9,-44,20,-58r43,-93v6,-9,20,0,21,8v-6,12,-24,37,-31,56v31,-28,69,-64,102,-74v18,14,-8,30,-16,46","w":189},"\ufb03":{"d":"654,-400v-4,-30,-40,-37,-74,-36v-155,10,-199,154,-262,260v35,-1,86,-7,151,-15v5,-1,11,9,11,22v-30,44,-79,104,-85,157v-2,19,14,24,30,19v55,-17,111,-60,167,-130v2,-2,7,-4,6,1v-65,79,-125,130,-216,151v-41,-6,-24,-41,-7,-75v20,-37,43,-75,69,-115v7,-10,7,-15,0,-15v-41,0,-86,7,-132,9r-69,132v-74,127,-139,290,-312,290v-22,0,-36,-5,-52,-15v-35,42,-104,83,-145,83v-47,0,-88,-41,-86,-85v16,31,38,66,88,65v59,-1,108,-35,137,-68v-13,-21,0,-39,17,-51v8,3,2,12,10,22v83,-107,137,-242,201,-366v-16,-1,-40,5,-51,-2v7,-18,34,-13,59,-13r34,-59v44,-69,102,-147,195,-158v32,-4,52,23,30,46v-37,-41,-120,-16,-140,25v-34,41,-58,96,-86,147r139,-1v73,-130,152,-252,309,-289v43,-10,84,20,64,64xm-94,212v62,49,150,-3,186,-47v76,-93,122,-226,184,-331r-140,5r-71,139v-45,83,-95,164,-159,234xm516,-286v0,-15,14,-34,29,-34v8,0,12,4,12,12v1,14,-18,34,-31,33v-7,0,-10,-4,-10,-11","w":504},"&":{"d":"644,-216v41,-19,84,9,80,59v-8,92,-76,146,-170,146v-25,0,-47,-6,-67,-19v-80,44,-247,53,-247,-64v0,-112,117,-147,187,-201v8,-32,21,-66,37,-91v-166,3,-283,83,-342,196v-20,39,-30,80,-30,124v0,222,338,210,452,102v-36,58,-131,82,-226,82v-142,0,-257,-56,-257,-198v0,-160,127,-244,256,-289v49,-17,98,-23,149,-23v11,-16,22,-42,45,-44v26,-2,11,36,5,49v71,13,129,49,125,130v-4,98,-62,163,-124,208v68,51,190,8,184,-91v-3,-43,-24,-67,-57,-76xm511,-388v9,-13,8,-50,-15,-34v-11,7,-19,18,-24,30v14,0,27,1,39,4xm509,-382v-11,-2,-28,-5,-41,-4v-14,24,-26,55,-33,84v24,-18,62,-52,74,-80xm511,-52v82,-50,156,-184,83,-283v-19,-26,-46,-40,-80,-47v-19,36,-53,77,-86,107v-15,96,28,183,83,223xm274,-104v-36,86,65,115,149,90v21,-6,41,-11,58,-21v-58,-39,-75,-139,-60,-235v-53,51,-117,93,-147,166","w":794},"\u00aa":{"d":"281,-366v-31,53,-73,109,-73,183v0,53,63,17,80,0v9,-5,10,-16,21,-15v-20,30,-65,66,-111,66v-16,0,-24,-10,-24,-30v0,-29,12,-67,36,-115v-33,42,-66,96,-124,111v-29,-7,-14,-36,2,-59v32,-47,82,-103,148,-113v13,-23,18,-41,34,-52v6,5,6,19,11,24xm231,-329v-63,10,-105,69,-119,128v3,16,11,9,23,-1v35,-32,72,-80,96,-127","w":242},"\u00ba":{"d":"236,-346v31,6,16,56,5,81v-22,50,-58,104,-119,113v-43,-2,-33,-55,-13,-84v30,-45,73,-94,127,-110xm140,-164v51,-17,80,-74,81,-144v0,-13,-3,-19,-8,-19v-44,23,-86,72,-87,141v0,15,5,22,14,22","w":213},",":{"d":"148,-90v10,4,14,35,1,44r-152,159v-2,3,-12,8,-11,-1v0,-3,0,-6,2,-8v53,-59,102,-124,150,-188v2,-4,6,-6,10,-6","w":189},";":{"d":"157,-159v-1,-25,24,-54,50,-42v17,20,-12,56,-34,56v-9,0,-16,-4,-16,-14xm141,-90v11,3,12,34,2,44r-115,118v-15,15,-26,33,-44,45v-3,1,-5,-1,-5,-5v21,-38,53,-65,79,-100r73,-96v2,-4,6,-6,10,-6","w":207},":":{"d":"158,-158v0,-25,25,-54,51,-42v17,20,-12,53,-34,56v-8,-1,-17,-4,-17,-14xm79,-10v-1,-25,25,-54,51,-42v16,20,-11,55,-35,56v-9,0,-16,-4,-16,-14","w":215},".":{"d":"83,-10v0,-25,24,-54,50,-42v19,19,-11,54,-34,56v-9,0,-16,-4,-16,-14","w":207},"\u2026":{"d":"82,-10v0,-25,24,-54,50,-42v19,19,-11,54,-34,56v-9,0,-16,-4,-16,-14xm237,-10v0,-25,24,-54,50,-42v19,19,-11,54,-34,56v-9,0,-16,-4,-16,-14xm399,-10v0,-25,24,-54,50,-42v19,19,-11,54,-34,56v-9,0,-16,-4,-16,-14","w":521},"!":{"d":"230,-338v15,-31,43,-30,76,-23v4,1,4,8,-1,7v-31,5,-42,27,-60,52v-45,61,-79,140,-111,214v-1,2,-2,3,-4,2v-2,-1,-3,-2,-3,-4v32,-92,66,-173,103,-248xm117,-48v13,0,18,10,20,22v3,25,-47,48,-47,14v0,-16,8,-38,27,-36","w":198},"\u00a1":{"d":"86,126v-14,30,-46,32,-76,22v-5,-1,-3,-7,1,-7v32,-4,43,-27,61,-51v44,-61,77,-140,110,-214v1,-2,2,-4,4,-3v2,1,3,3,3,5v-32,92,-67,172,-103,248xm199,-165v-14,0,-18,-9,-20,-21v-3,-25,47,-49,47,-15v0,16,-7,36,-27,36","w":198,"k":{"p":-27,"j":-31,"J":-90}},"?":{"d":"202,-84v-41,10,-56,-37,-31,-62v55,-54,156,-74,168,-172v7,-56,-67,-58,-95,-78v-6,-16,19,-38,30,-40v-17,40,68,30,82,58v59,114,-102,165,-166,230v-17,18,-3,46,12,58v5,4,6,6,0,6xm135,-51v-2,14,12,19,12,29v-5,11,-19,21,-35,22v-5,0,-19,-12,-18,-19v3,-23,13,-27,35,-39v4,0,6,3,6,7","w":244},"\u00bf":{"d":"180,-130v19,9,20,48,4,62v-50,43,-128,74,-160,134v-25,48,0,94,51,100v17,7,45,10,35,29v-7,8,-20,30,-30,28v18,-40,-65,-32,-81,-59v-34,-35,-3,-95,22,-119v39,-38,105,-72,143,-110v18,-18,3,-47,-12,-58v-5,-4,-5,-7,1,-7v9,3,14,2,27,0xm220,-162v0,-20,-24,-31,1,-43v14,-13,37,-7,40,11v-2,23,-12,27,-35,38v-4,0,-6,-2,-6,-6","w":234,"k":{"p":-27,"j":-27}},"\u02bb":{"d":"170,-196v-15,10,-29,-15,-26,-41v7,-66,44,-114,96,-167v3,-3,8,2,8,5v-40,37,-110,115,-61,180v-5,8,-9,18,-17,23","w":189,"k":{"Z":69,"X":48,"W":42,"U":58,"S":54,"R":32,"Q":27,"P":37,"O":32,"N":48,"M":63,"L":63,"K":48,"J":48,"I":63,"H":60,"G":36,"F":53,"C":18,"B":27,"A":90}},"\u2018":{"d":"170,-196v-15,10,-29,-15,-26,-41v7,-66,44,-114,96,-167v3,-3,8,2,8,5v-40,37,-110,115,-61,180v-5,8,-9,18,-17,23","w":189},"\u2019":{"d":"216,-409v15,-9,28,15,25,41v-8,66,-44,114,-96,167v-3,3,-8,-2,-7,-5v38,-36,109,-115,60,-180v3,-8,12,-17,18,-23","w":189},"\u201c":{"d":"235,-196v-15,9,-28,-15,-25,-41v8,-66,44,-114,96,-167v3,-3,8,2,7,5v-32,36,-74,70,-78,135v-1,21,8,35,18,45v-3,8,-12,17,-18,23xm238,-399v-39,37,-109,116,-60,180v-3,11,-14,22,-24,27v-28,-22,-22,-68,1,-111v15,-29,39,-63,76,-101v3,-3,8,2,7,5","w":245,"k":{"Z":69,"X":48,"W":42,"U":58,"S":54,"R":32,"Q":27,"P":37,"O":32,"N":48,"M":63,"L":63,"K":48,"J":48,"I":63,"H":60,"G":36,"F":53,"C":18,"B":27,"A":90}},"\u201d":{"d":"288,-413v28,22,22,68,-1,111v-15,29,-39,63,-76,101v-3,3,-8,-2,-8,-5v40,-37,109,-116,61,-180v3,-11,14,-23,24,-27xm207,-409v15,-9,28,15,25,41v-8,66,-44,114,-96,167v-3,3,-8,-2,-7,-5v38,-36,109,-115,60,-180v3,-8,12,-17,18,-23","w":245},"\u201a":{"d":"117,-126v29,22,22,68,-1,112v-15,29,-39,62,-76,100v-3,3,-8,-2,-8,-5v40,-37,110,-115,61,-180v4,-10,14,-23,24,-27","w":189,"k":{"Z":27,"Y":90,"W":58,"V":112,"U":58,"T":90,"R":36,"Q":58,"P":32,"O":58,"N":40,"L":18,"K":36,"J":-64,"I":32,"H":32,"G":58,"F":22,"E":32,"D":32,"C":58,"B":32}},"\u201e":{"d":"192,-126v29,22,21,69,-2,112v-15,28,-39,62,-76,100v-3,3,-8,-2,-7,-5v34,-36,74,-70,78,-135v1,-21,-8,-35,-18,-45v5,-9,15,-23,25,-27xm117,-126v29,22,22,68,-1,112v-15,29,-39,62,-76,100v-3,3,-8,-2,-8,-5v40,-37,110,-115,61,-180v4,-10,14,-23,24,-27","w":263,"k":{"Z":27,"Y":90,"W":58,"V":112,"U":58,"T":90,"R":36,"Q":58,"P":32,"O":58,"N":40,"L":18,"K":36,"J":-64,"I":32,"H":32,"G":58,"F":22,"E":32,"D":32,"C":58,"B":32}},"\u2039":{"d":"260,-210v5,-5,9,-1,9,5r-127,100v-3,2,-4,5,-4,9v6,32,21,69,37,112v-11,0,-31,14,-34,-1v-10,-45,-22,-74,-29,-104v45,-43,101,-79,148,-121","w":247,"k":{"J":74}},"\u203a":{"d":"148,-182v-19,-17,5,-21,18,-23v28,25,38,70,64,97v2,5,1,11,-2,14v-43,31,-96,82,-135,118v-9,8,-24,-3,-10,-9v17,-13,37,-28,57,-46v24,-21,49,-36,64,-61v-15,-32,-39,-59,-56,-90","w":247,"k":{"Y":45,"V":45,"T":40}},"\u00ab":{"d":"256,4v-2,6,-26,18,-29,10r-38,-105v38,-42,86,-71,126,-110v4,-2,9,-2,8,4v-30,32,-69,55,-101,85v-4,2,-5,4,-5,8v8,38,27,72,39,108xm260,-210v5,-5,9,-1,9,5r-127,100v-3,2,-4,5,-4,9v6,32,21,69,37,112v-11,0,-31,14,-34,-1r-29,-104v45,-43,101,-79,148,-121","w":301,"k":{"J":74}},"\u00bb":{"d":"234,-179v-16,-20,0,-23,17,-27v4,0,6,2,8,7v11,33,36,65,50,95r-136,114v-7,-1,-6,-8,0,-12r105,-88v-2,-28,-36,-61,-44,-89xm148,-182v-17,-18,3,-21,18,-23v28,25,38,70,64,97v2,5,1,11,-2,14v-43,31,-96,82,-135,118v-9,8,-24,-3,-10,-9v17,-13,37,-28,57,-46v24,-21,49,-36,64,-61v-15,-32,-39,-59,-56,-90","w":324,"k":{"Y":45,"V":45,"T":40}},"\/":{"d":"396,-493r-292,633v-2,7,-18,13,-18,1r293,-635v2,-3,18,-10,17,1","w":331},"|":{"d":"133,225r0,-900r27,0r0,900r-27,0","w":199},"-":{"d":"137,-128v43,2,92,-1,137,-1v7,0,10,3,10,7v-25,17,-97,2,-149,8v-6,0,-9,-2,-9,-6v1,-4,5,-8,11,-8","w":284,"k":{"Y":58,"X":37,"W":32,"V":26,"T":32,"R":27,"J":48}},"\u2013":{"d":"428,-127v6,19,-19,11,-36,11r-269,2v-3,0,-4,-3,-4,-8v5,-15,36,-5,60,-5r245,-2v2,-1,3,0,4,2","w":450},"\u2014":{"d":"668,-129v6,-1,9,2,8,7v-7,16,-38,6,-62,6r-444,2v-5,0,-7,-3,-6,-8v124,-16,346,2,504,-7","w":900},"\u2022":{"d":"304,-129v-38,0,-70,-32,-70,-70v0,-38,32,-70,70,-70v38,0,70,32,70,70v0,38,-32,70,-70,70","w":450},"\u00b7":{"d":"124,-155v0,-25,24,-54,50,-42v19,19,-11,54,-34,56v-9,0,-16,-4,-16,-14","w":198},"(":{"d":"410,-453v-140,74,-232,230,-286,386v-15,44,-11,86,21,110v2,1,3,3,1,5v-2,2,-3,3,-5,1v-42,-26,-64,-83,-41,-146v57,-158,166,-289,308,-362v6,-1,7,5,2,6","w":329},")":{"d":"389,-454v56,38,36,151,6,207v-65,119,-145,248,-280,295v-7,0,-11,-4,-3,-7v114,-42,177,-158,232,-258v29,-53,56,-106,61,-180v2,-25,-13,-40,-21,-57v1,-2,3,-1,5,0","w":365},"[":{"d":"283,-452v40,2,80,2,120,0v9,0,6,8,0,7v-28,4,-69,-6,-85,10r-127,228r-121,233v-5,10,-2,18,10,18r85,-1v5,0,7,2,7,5v-33,13,-102,0,-157,5v-11,-1,-4,-7,0,-15r149,-261r110,-210v4,-8,-3,-19,9,-19","w":304,"k":{"J":-27}},"]":{"d":"462,-452v16,7,-7,15,-10,31r-131,242r-108,213v-4,7,2,19,-9,19v-44,-2,-88,-2,-132,0v-4,0,-5,-1,-5,-4v0,-4,1,-6,5,-6r85,-1v4,-1,7,-4,9,-9r127,-227r123,-241v0,-6,-5,-9,-13,-9r-74,3v-4,0,-6,-2,-6,-5v0,-3,2,-4,7,-4","w":316},"{":{"d":"82,-211v13,-22,58,5,77,-19v75,-51,85,-161,164,-207v22,-7,47,-13,77,-12v4,0,6,1,6,4v-1,9,-14,3,-20,2v-32,2,-41,17,-63,40v-60,62,-88,151,-173,186v-2,1,-3,2,-3,4v11,9,24,18,22,37v-10,78,-89,138,-89,221v0,22,9,40,32,39v4,0,6,1,6,3v0,2,-1,4,-6,4v-57,-1,-82,-57,-48,-109v33,-50,79,-104,94,-166v-3,-29,-41,-26,-65,-19v-5,-1,-11,-2,-11,-8","w":238,"k":{"Y":-47,"V":-81,"J":-48}},"}":{"d":"319,-445v43,-9,64,63,36,103v-18,42,-59,80,-71,126v3,21,32,0,47,3v4,0,7,2,7,7v-3,22,-34,9,-50,22v-71,56,-83,171,-157,226v-28,21,-59,48,-104,50v-7,-1,-6,-4,1,-6v139,-41,142,-220,262,-282v-10,-9,-26,-15,-24,-36v7,-70,82,-109,82,-180v0,-16,-7,-25,-23,-27v-5,-1,-7,-4,-6,-6","w":238},"*":{"d":"161,-271v-12,-1,-7,-15,0,-19r59,-2v4,0,6,-1,4,-4r-34,-42v-4,-5,4,-14,9,-13v19,6,24,43,34,53v12,-14,22,-51,34,-66v9,-5,21,4,13,13v-14,15,-26,34,-37,51v-3,5,-2,8,5,6r50,-9v15,-3,18,5,12,14v-12,8,-40,-1,-63,2v-5,0,-6,1,-2,5v9,13,29,32,34,45v5,12,-12,18,-15,7r-27,-49v-18,2,-23,56,-39,64v-22,0,-9,-17,-1,-27r26,-37v4,-5,2,-6,-3,-5v-19,2,-40,10,-59,13","w":228},"\u2020":{"d":"76,-249v26,6,58,12,90,12r73,-155v6,-14,33,-19,32,4v-24,59,-62,93,-92,151r77,-5v8,-1,18,4,17,11v-1,4,-6,27,-15,24v-25,-8,-49,-18,-85,-19r-59,112r-61,133v-5,10,-18,16,-31,18v-9,-7,-20,-30,-6,-44v47,-74,99,-136,143,-219v-33,-1,-66,9,-92,14v-5,-1,-19,-3,-17,-12v0,-9,14,-28,26,-25","w":238},"\u2021":{"d":"76,-163r85,10r42,-73v-32,-1,-65,6,-91,11v-3,-1,-19,-2,-17,-9v0,-9,14,-28,26,-25v26,6,58,12,90,12r73,-155v6,-14,32,-19,32,4v-24,59,-62,93,-92,151r77,-5v8,-1,18,4,17,11v-1,4,-6,27,-15,24v-28,-9,-51,-17,-87,-18v-16,23,-29,47,-43,72r90,-7v19,-4,21,16,14,27v-3,3,-6,12,-13,10v-32,-8,-59,-19,-98,-18r-38,83v-17,39,-17,81,-61,95v-37,-32,19,-78,35,-102v14,-22,34,-50,52,-76v-30,-1,-57,8,-83,11v-9,1,-20,-3,-21,-9v1,-6,15,-25,26,-24","w":238},"\u00a7":{"d":"176,-288v7,-65,65,-123,138,-100v27,9,9,39,-5,55v-6,-1,-1,-7,-2,-12v0,-16,-25,-29,-44,-28v-42,2,-69,28,-69,67v0,65,65,88,65,157v0,33,-12,53,-38,78v-7,81,-69,121,-156,126v-72,4,-99,-75,-67,-136v2,-2,2,1,2,6v-20,68,32,110,100,110v75,0,126,-64,85,-127v-25,-38,-64,-58,-71,-111v4,-43,28,-69,62,-85xm176,-279v-28,7,-52,57,-22,87v18,34,59,64,66,112v42,-32,22,-98,-7,-123v-20,-28,-32,-39,-37,-76","w":270},"\u00b6":{"d":"320,-113v-19,30,-31,51,-35,84v0,7,6,13,17,18r133,-223v-57,14,-78,57,-112,116v-19,-6,-22,-22,-34,-42v-12,13,-30,20,-46,30v11,13,17,23,25,44v13,-8,33,-26,52,-27xm446,-242v53,4,43,-30,27,-54v-7,18,-18,38,-27,54xm199,198v-5,13,24,12,13,18v-18,4,-30,-6,-31,-22v-9,9,-37,21,-55,21v-4,0,-6,-1,-5,-5v48,-4,66,-31,89,-68r91,-147v-76,9,-164,10,-164,-71v0,-140,147,-170,302,-166v10,-19,26,-45,29,-67v7,-3,13,-9,20,-18v5,21,20,34,20,63v0,17,-21,28,-65,30r-235,401v-6,12,-9,23,-9,31","w":450},"\u00a9":{"d":"388,-404v120,-2,184,51,184,166v0,161,-108,262,-276,262v-112,0,-184,-54,-184,-165v0,-158,106,-260,276,-263xm141,-144v0,107,64,159,171,159v151,0,230,-100,236,-246v4,-110,-48,-167,-158,-165v-160,3,-249,96,-249,252xm314,-37v-134,7,-115,-179,-56,-245v29,-52,129,-84,192,-48v15,9,22,26,25,49v-3,8,-26,16,-35,15v-2,-36,-16,-63,-56,-62v-93,4,-132,82,-132,174v0,55,22,96,79,96v47,-1,74,-17,99,-43r4,17v-24,29,-72,44,-120,47","w":576},"\u00ae":{"d":"135,-255v6,-98,67,-167,174,-167v78,0,117,35,117,106v0,101,-69,167,-176,167v-68,0,-119,-36,-115,-106xm260,-155v97,0,150,-65,150,-157v0,-70,-26,-105,-100,-105v-103,1,-156,62,-159,161v-2,68,43,101,109,101xm336,-349v0,-24,-18,-27,-44,-26v-16,28,-25,47,-39,75v44,0,82,-9,83,-49xm359,-348v-3,41,-42,52,-81,55r64,86r-31,0v-17,-30,-38,-61,-61,-88r-39,88r-26,0r71,-145v6,-14,10,-23,12,-30v43,3,94,-12,91,34"},"\u2122":{"d":"158,-384r146,-1r-6,13v-17,-3,-38,-2,-58,-2r-64,126r-18,41r-30,0r88,-167v-20,0,-47,2,-67,4xm346,-362r-113,155r-21,0r138,-174r22,-5r-13,149r125,-146r21,-5v-15,52,-31,123,-39,181r-27,0r35,-149r-119,143r-19,6","w":450},"@":{"d":"273,-361v88,-62,319,-96,319,59v0,87,-59,153,-121,188v-24,14,-50,20,-77,20v-77,3,-41,-87,-20,-126v-33,40,-61,70,-82,90v-21,20,-39,29,-53,29v-23,0,-16,-33,-6,-53v38,-78,94,-166,213,-148v8,11,-14,15,-18,30v-20,40,-52,86,-52,132v0,48,63,39,93,19v52,-33,94,-95,95,-179v2,-116,-148,-126,-241,-81v-105,52,-202,140,-209,283v-4,81,56,134,136,133v103,-2,178,-56,214,-123v-8,62,-89,104,-150,125v-111,38,-242,-6,-236,-124v7,-135,106,-212,195,-274xm414,-297v-80,-1,-113,85,-149,139v-7,17,-16,31,-2,37v66,-36,109,-113,151,-176","w":523},"#":{"d":"170,-246v7,-21,23,-40,61,-33v18,-27,32,-60,54,-82v7,-7,14,3,7,7r-51,75r56,-3r60,-94v4,-7,8,-9,12,-8v2,24,-26,47,-42,70r-22,32v15,0,35,-4,47,0v-15,15,-29,33,-64,29r-58,94v27,-1,63,-1,43,25v-4,5,-7,10,-10,15v-12,-9,-26,-6,-52,-7r-57,105v-4,12,-14,7,-14,-2v16,-38,41,-68,61,-103v-19,0,-38,2,-56,4r-59,108v-3,7,-7,11,-11,11v-7,0,-8,-14,-3,-19r61,-99v-13,0,-30,10,-39,3v20,-7,17,-38,45,-34v6,-1,11,-1,15,-2r58,-94v-15,-1,-32,9,-42,2xm278,-253r-55,4r-58,93v18,-3,35,-1,55,-3","w":296},"0":{"d":"391,-399v79,27,38,163,8,219v-49,87,-104,191,-226,191v-51,0,-90,-21,-87,-78v6,-100,62,-165,112,-225v44,-53,130,-74,193,-107xm152,-170v-27,58,-37,166,40,166v103,0,155,-96,187,-181v13,-35,19,-73,19,-112v1,-41,-14,-84,-61,-69v-93,29,-147,115,-185,196","w":395},"1":{"d":"346,-395v-80,113,-159,232,-216,360v-4,21,-3,39,8,53v3,2,4,4,2,7v-2,3,-4,2,-6,0v-25,-31,-50,-55,-27,-101v49,-100,126,-198,180,-288r-184,113v-2,-5,-5,-7,-4,-15r159,-92v28,-19,48,-35,87,-40","w":243},"2":{"d":"17,-25v27,39,111,-3,128,-23v-48,0,-119,-11,-128,23xm258,-369v41,-35,158,-55,153,29v-3,52,-47,95,-78,133v-40,46,-97,95,-142,132v50,4,115,8,152,20v21,6,5,43,-1,56v-43,-30,-115,-41,-184,-48v-31,23,-67,53,-117,53v-18,0,-42,-1,-38,-19v13,-60,99,-66,177,-62v60,-48,129,-110,172,-176v30,-46,26,-117,-37,-117v-61,0,-89,37,-118,69v-2,2,-3,4,-5,2v-1,-17,19,-26,29,-40v10,-13,25,-22,37,-32","w":375,"k":{"4":22}},"3":{"d":"337,-314v-4,-39,-43,-49,-84,-54v-3,0,-5,-2,-4,-5v7,-7,28,-16,36,-21v54,-2,106,39,70,88v-21,28,-86,46,-98,87v6,36,49,48,50,91v-18,93,-108,147,-213,156v-60,6,-97,-42,-72,-96v6,-1,2,8,3,12v6,43,36,62,92,61v81,-2,146,-31,152,-107v4,-49,-62,-65,-51,-114v26,-37,109,-48,119,-98","w":315},"4":{"d":"310,-378v14,-12,46,-24,40,10v-17,96,-118,129,-183,184r-56,39v40,4,101,-2,143,-1v56,-93,91,-159,178,-210v5,-1,6,1,5,6v-77,43,-107,128,-153,204r123,6v16,10,-4,51,-15,54v-1,-9,12,-22,-4,-26v-31,-9,-74,-15,-114,-15v-18,41,-53,86,-49,138v0,2,-1,3,-5,3v-8,-19,-35,-36,-21,-62r43,-79v-60,2,-126,6,-179,18v-7,-12,1,-36,18,-35v84,-46,154,-90,212,-148v18,-18,25,-52,13,-80v0,-2,1,-4,4,-6","w":379,"k":{"5":18}},"5":{"d":"68,42v-39,19,-106,12,-84,-38v3,23,22,28,48,28v99,0,179,-79,187,-183v5,-58,-66,-57,-76,-103v13,-51,50,-93,81,-135v15,-13,34,2,65,2v72,0,133,-29,118,-92v9,-3,10,11,10,19v-7,91,-107,126,-205,104v-23,20,-36,47,-42,71v7,50,97,47,92,110v-7,92,-82,144,-142,189v-17,13,-35,20,-52,28","w":267},"6":{"d":"131,-109v-17,33,-25,107,24,107v64,-15,120,-74,120,-148v0,-69,-86,-33,-111,-4v-11,13,-24,27,-33,45xm389,-421v47,-20,111,-14,94,45r-3,1v4,-30,-16,-41,-53,-38v-118,9,-192,106,-246,186v-21,31,-34,61,-42,87v26,-27,61,-63,111,-63v91,0,32,122,-1,153v-27,26,-64,57,-111,59v-74,2,-72,-72,-46,-129v55,-122,172,-248,297,-301","w":309},"7":{"d":"434,-413v11,-1,34,7,24,16v-13,14,-30,23,-46,33r-207,216v-25,32,-65,69,-65,116v0,17,7,29,20,34v-7,9,-32,11,-41,19v-25,-16,-18,-68,2,-93v74,-91,196,-196,273,-286v-52,18,-117,-2,-174,-2v-64,0,-80,60,-97,113r-7,-6v24,-64,47,-137,127,-146v46,4,104,27,152,27v18,0,33,-26,39,-41","w":308,"k":{"8":18,"6":18,"4":27,"0":27}},"8":{"d":"92,-76v-5,59,75,77,116,42v50,-24,88,-105,37,-158r-18,-27v-56,35,-129,62,-135,143xm259,-247v50,-34,86,-55,93,-110v2,-16,-11,-28,-27,-27v-64,4,-119,83,-66,137xm208,-272v0,-68,63,-121,136,-128v46,-3,49,51,25,78v-28,30,-59,54,-105,82v24,29,56,73,29,122v-33,59,-83,116,-163,124v-62,7,-91,-65,-56,-114v35,-50,94,-87,148,-117v-10,-18,-14,-34,-14,-47","w":302},"9":{"d":"256,-381v46,-25,127,-26,120,37v-14,134,-101,224,-191,295v-46,36,-114,79,-184,55v-9,-6,-26,-19,-20,-31v31,39,106,26,149,1v81,-48,141,-136,179,-224v-25,26,-65,61,-115,61v-56,0,-71,-55,-41,-100v25,-38,62,-71,103,-94xm171,-278v-20,36,-20,84,26,80v81,-6,134,-72,141,-153v4,-47,-51,-38,-82,-18v-34,23,-65,55,-85,91","w":309},"\u2070":{"d":"269,-401v24,-17,36,15,36,43v0,75,-54,149,-129,149v-27,0,-50,-11,-48,-40v6,-85,70,-129,141,-152xm188,-219v56,-8,86,-64,89,-128v0,-15,-2,-44,-19,-42v-51,16,-98,76,-98,133v0,19,7,40,28,37","w":215},"\u00b9":{"d":"208,-388r98,-4v4,0,6,2,6,6v-22,42,-65,103,-82,151v9,11,41,1,58,3v3,1,5,3,4,6v-31,12,-109,-2,-149,10v-8,-2,-13,-9,-2,-10v22,-2,46,3,55,-11v27,-41,56,-91,75,-137v-7,-21,-50,4,-67,-10v-3,-3,-1,-4,4,-4","w":225},"\u00b2":{"d":"247,-327v22,-31,-9,-70,-42,-48v-11,3,-11,13,-21,9v12,-26,103,-45,104,4v-14,50,-73,74,-110,100v18,20,72,34,107,34v15,0,27,-6,37,-19v1,-2,4,-3,6,-1v-7,28,-50,34,-78,36v-40,4,-70,-25,-110,-25v-11,0,-18,20,-30,16v38,-40,105,-60,137,-106","w":225},"\u00b3":{"d":"205,-376v19,-18,91,-52,105,-4v-1,31,-47,34,-57,55v4,20,23,27,22,52v-10,42,-57,67,-106,67v-22,0,-40,-23,-29,-48r3,0v3,23,13,35,48,33v30,-1,57,-13,57,-45v0,-15,-23,-32,-23,-48v0,-25,57,-25,57,-54v0,-37,-60,-21,-74,1v-4,-1,-4,-6,-3,-9","w":225},"\u2074":{"d":"262,-277v-17,32,-32,41,-25,72v-12,5,-18,-18,-23,-29v4,-14,14,-24,24,-42v-37,0,-78,3,-109,10v-9,-7,-1,-31,13,-26v34,-13,66,-32,93,-51v17,-11,24,-31,15,-49v2,-7,36,-27,33,-4v-7,57,-81,72,-119,105v19,1,55,-1,81,0v25,-36,50,-76,95,-91v5,0,6,1,2,3v-34,19,-53,54,-73,88v20,3,51,-5,54,10v-1,8,-7,19,-13,25v-6,-2,5,-13,-1,-17v-13,-2,-31,-5,-47,-4","w":233},"\u2075":{"d":"196,-338v7,-16,24,-44,39,-57v34,8,99,2,84,-41v8,0,8,7,9,15v-7,40,-55,60,-104,49v-36,33,42,42,39,80v-5,53,-46,87,-98,94v-19,3,-32,-13,-25,-32v3,10,12,19,27,18v43,0,71,-21,72,-64v1,-34,-38,-33,-43,-62","w":216},"\u2076":{"d":"197,-211v34,0,51,-33,51,-68v0,-16,-4,-30,-21,-29v-35,2,-52,33,-52,68v0,17,5,29,22,29xm236,-391v28,-21,102,-31,89,21r-4,1v10,-37,-43,-37,-67,-21v-34,22,-57,61,-71,103v13,-32,89,-48,86,8v-2,44,-28,77,-76,77v-79,0,-31,-115,-4,-146v14,-15,30,-30,47,-43","w":222},"\u2077":{"d":"339,-409v18,1,26,8,8,20v-47,31,-84,68,-121,109v-16,18,-17,56,4,65v-1,8,-24,9,-26,15v-22,-9,-15,-47,-1,-66v25,-34,75,-75,107,-105v-26,9,-53,-3,-79,-2v-30,2,-39,21,-48,46r-6,-5v14,-32,21,-66,61,-67r78,16v13,1,21,-17,23,-26","w":225},"\u2078":{"d":"205,-315v-30,-46,30,-113,81,-81v20,39,-26,54,-51,74v14,25,21,22,21,47v0,42,-34,70,-83,70v-27,0,-43,-13,-43,-35v0,-43,46,-57,75,-75xm230,-328v18,-10,43,-26,43,-47v0,-12,-4,-21,-17,-21v-22,0,-51,22,-35,49v3,7,6,14,9,19xm184,-213v36,0,64,-36,43,-69v-4,-8,-10,-17,-18,-27v-26,15,-55,30,-56,66v0,18,11,30,31,30","w":199},"\u2079":{"d":"276,-403v70,0,24,107,-1,138v-26,33,-77,81,-133,57v-6,-6,-17,-12,-10,-19v30,37,88,0,106,-23v17,-21,36,-52,45,-80v-15,23,-88,48,-95,2v6,-44,38,-75,88,-75xm230,-311v34,-4,63,-27,63,-62v0,-10,-4,-23,-17,-22v-37,3,-57,32,-62,66v1,9,6,18,16,18","w":214},"\u2080":{"d":"158,-185v23,-16,39,15,36,43v-8,74,-54,149,-130,149v-27,0,-50,-11,-48,-40v6,-85,70,-130,142,-152xm76,-3v57,-8,90,-65,90,-128v0,-14,-2,-43,-19,-42v-50,17,-96,74,-98,133v0,20,6,40,27,37","w":215},"\u2081":{"d":"85,-172r98,-4v6,0,8,7,3,10r-80,147v10,11,41,1,59,3v6,5,3,11,-9,11v-47,-2,-98,-2,-136,5v-8,-2,-13,-9,-2,-10v22,-2,47,3,55,-11v26,-40,56,-91,75,-137v-7,-21,-50,4,-67,-10v-3,-3,-1,-4,4,-4","w":225},"\u2082":{"d":"116,-111v21,-31,-10,-70,-43,-48v-10,3,-12,13,-20,9v12,-27,103,-45,104,4v-13,50,-74,73,-110,100v18,20,72,34,107,34v15,0,27,-6,37,-19v1,-2,3,-3,5,-1v-7,28,-49,34,-77,36v-41,4,-68,-25,-111,-25v-11,3,-17,20,-29,16v38,-40,106,-59,137,-106","w":225},"\u2083":{"d":"90,-155v12,-28,93,-55,106,-9v-1,32,-48,33,-57,55v3,20,23,28,22,52v-10,42,-57,64,-106,67v-21,1,-43,-25,-29,-48r3,0v2,24,13,35,47,33v29,-2,58,-12,57,-45v-1,-16,-22,-32,-22,-48v0,-25,56,-26,56,-54v0,-38,-59,-21,-73,1v-2,-1,-4,-2,-4,-4","w":225},"\u2084":{"d":"140,-61v-17,32,-31,40,-26,72v-11,4,-18,-17,-22,-29v3,-15,13,-24,23,-42v-37,0,-78,3,-109,10v-6,-8,-2,-31,14,-26v33,-13,65,-32,92,-51v17,-12,23,-29,16,-49v1,-7,35,-27,32,-4v-8,57,-80,72,-119,105v20,2,55,-1,81,0v23,-38,52,-75,96,-91v5,0,6,1,2,3v-35,18,-54,53,-73,88v20,3,50,-5,54,10v2,9,-21,37,-13,15v0,-15,-29,-8,-48,-11","w":233},"\u2085":{"d":"75,-122v6,-16,25,-42,38,-57v34,9,102,1,84,-41v8,0,8,7,9,15v-6,41,-55,59,-103,49v-37,33,41,41,38,80v-5,54,-47,87,-98,94v-20,3,-33,-14,-24,-32v3,11,12,19,27,18v43,-1,71,-21,72,-64v0,-33,-39,-33,-43,-62","w":216},"\u2086":{"d":"80,-4v34,0,49,-32,50,-68v0,-16,-4,-30,-20,-29v-34,3,-52,32,-52,68v0,17,5,29,22,29xm119,-184v28,-21,102,-31,89,21r-4,1v9,-38,-43,-37,-67,-21v-34,23,-57,61,-71,103v13,-32,89,-48,86,8v-2,44,-28,77,-76,77v-79,0,-31,-115,-4,-146v14,-15,30,-30,47,-43","w":222},"\u2087":{"d":"212,-193v17,2,26,8,8,20v-46,30,-85,68,-122,109v-16,17,-16,57,4,65v-1,8,-24,9,-26,15v-22,-9,-14,-47,0,-66v25,-34,75,-75,106,-105v-26,9,-52,-3,-78,-2v-31,1,-40,21,-49,46r-5,-5v14,-32,20,-66,60,-67r78,16v13,1,21,-18,24,-26","w":225},"\u2088":{"d":"87,-104v-30,-46,32,-114,81,-80v21,37,-26,54,-51,73v14,25,18,23,22,47v-2,42,-34,70,-84,70v-28,0,-43,-12,-43,-35v0,-43,47,-56,75,-75xm112,-117v18,-10,43,-26,43,-47v0,-12,-3,-20,-17,-20v-23,0,-51,22,-34,48v4,6,5,14,8,19xm67,-2v35,0,63,-36,42,-68v-4,-8,-10,-17,-18,-27v-26,15,-55,30,-56,65v0,18,11,30,32,30","w":199},"\u2089":{"d":"157,-190v69,0,24,108,-1,139v-26,33,-79,82,-134,56v-6,-6,-18,-13,-9,-19v29,39,88,-1,106,-23v18,-21,35,-52,44,-80v-15,23,-88,48,-95,2v6,-45,40,-75,89,-75xm110,-98v35,-4,64,-27,64,-61v0,-10,-4,-24,-17,-23v-38,2,-57,32,-63,66v1,9,6,18,16,18","w":214},"\u2044":{"d":"333,-421r-106,106r-224,240r-107,122v-7,9,-24,15,-31,5r442,-472v4,-7,22,-9,26,-1","w":90},"\u00bc":{"d":"558,-421r-106,106r-224,240r-107,122v-7,9,-24,15,-31,5r442,-472v4,-7,22,-9,26,-1xm208,-388r98,-4v4,0,6,2,6,6v-22,42,-65,103,-82,151v9,11,41,1,58,3v3,1,5,3,4,6v-31,12,-109,-2,-149,10v-8,-2,-13,-9,-2,-10v22,-2,46,3,55,-11v27,-41,56,-91,75,-137v-7,-21,-50,4,-67,-10v-3,-3,-1,-4,4,-4xm440,-58v-16,32,-32,42,-25,72v-12,5,-18,-18,-23,-28v5,-14,14,-25,24,-43r-109,10v-10,-13,5,-30,23,-29v29,-14,58,-30,83,-47v17,-11,24,-31,15,-49v2,-7,36,-27,33,-4v-7,55,-76,74,-117,101v-1,2,-4,6,1,5r78,-1v24,-37,50,-76,95,-92v5,0,6,2,2,4v-35,17,-52,54,-73,88v20,2,51,-5,54,10v2,9,-19,35,-12,15v0,-15,-30,-8,-49,-12","w":540},"\u00bd":{"d":"558,-421r-106,106r-224,240r-107,122v-7,9,-24,15,-31,5r442,-472v4,-7,22,-9,26,-1xm423,-111v21,-31,-10,-70,-43,-48v-10,3,-12,13,-20,9v12,-27,103,-45,104,4v-13,50,-74,73,-110,100v18,20,72,34,107,34v15,0,27,-6,37,-19v1,-2,3,-3,5,-1v-7,28,-49,34,-77,36v-41,4,-69,-24,-111,-25v-10,3,-18,19,-29,16v38,-40,106,-59,137,-106xm208,-388r98,-4v4,0,6,2,6,6v-22,42,-65,103,-82,151v9,11,41,1,58,3v3,1,5,3,4,6v-31,12,-109,-2,-149,10v-8,-2,-13,-9,-2,-10v22,-2,46,3,55,-11v27,-41,56,-91,75,-137v-7,-21,-50,4,-67,-10v-3,-3,-1,-4,4,-4","w":540},"\u00be":{"d":"558,-421r-106,106r-224,240r-107,122v-7,9,-24,15,-31,5r442,-472v4,-7,22,-9,26,-1xm440,-58v-16,32,-32,42,-25,72v-12,5,-18,-18,-23,-28v5,-14,14,-25,24,-43r-109,10v-10,-13,5,-30,23,-29v29,-14,58,-30,83,-47v17,-11,24,-31,15,-49v2,-7,36,-27,33,-4v-7,55,-76,74,-117,101v-1,2,-4,6,1,5r78,-1v24,-37,50,-76,95,-92v5,0,6,2,2,4v-35,17,-52,54,-73,88v20,2,51,-5,54,10v2,9,-19,35,-12,15v0,-15,-30,-8,-49,-12xm205,-376v19,-18,91,-52,105,-4v-1,31,-47,34,-57,55v4,20,23,27,22,52v-10,42,-57,67,-106,67v-22,0,-40,-23,-29,-48r3,0v3,23,13,35,48,33v30,-1,57,-13,57,-45v0,-15,-23,-32,-23,-48v0,-25,57,-25,57,-54v0,-37,-60,-21,-74,1v-4,-1,-4,-6,-3,-9","w":540},"+":{"d":"293,-84v-22,-6,-49,-7,-78,-7r-39,82r-17,-13r40,-70r-69,2r-6,-19r82,3r39,-68r21,5v-14,18,-30,43,-43,63v26,0,52,1,69,6"},"\u2212":{"d":"140,-114r170,2r-8,18v-49,-4,-119,-4,-171,-2"},"\u00b1":{"d":"154,-122v15,2,46,5,66,5r34,-57r22,3v-11,13,-28,38,-39,55r70,-3r-11,16r-66,1v-13,21,-29,50,-33,74r-17,-12v7,-16,24,-46,33,-63r-67,-2xm99,-17r163,3r-9,17v-47,-4,-115,-4,-165,-2"},"\u00d7":{"d":"203,-104v21,-17,56,-40,80,-55r18,11v-34,15,-64,39,-95,58v3,13,11,50,18,61r-19,6v-4,-14,-11,-40,-12,-58v-23,16,-52,38,-74,58r-15,-12r63,-46v13,-9,13,-8,23,-14v-4,-13,-9,-46,-8,-64r20,-4"},"\u00f7":{"d":"230,-142v-2,-16,31,-31,32,-8v1,15,-30,29,-32,8xm140,-114v51,15,110,8,174,6r-10,19v-59,-3,-125,1,-179,-7xm174,-40v-3,-16,30,-31,31,-9v2,16,-29,28,-31,9"},"=":{"d":"164,-148r152,3r-7,17r-152,-2xm140,-97r156,3r-6,17v-43,-4,-114,-4,-161,-2"},"\u2260":{"d":"307,-112v-18,-3,-44,-2,-65,-2r-40,39r91,0r-9,17r-96,-2v-22,22,-39,40,-53,56r-21,-9r51,-47r-60,1r14,-18v15,2,44,1,62,1r39,-39r-81,1r9,-18r88,2r49,-50r21,4v-14,12,-35,32,-49,46v22,1,43,1,60,0"},"\u2248":{"d":"139,-119v49,-45,127,34,169,-18r5,12v-10,13,-33,25,-56,25v-36,-1,-82,-37,-117,-5xm167,-83v43,0,89,36,122,3r5,12v-11,9,-31,22,-54,21v-42,-4,-90,-38,-121,-1r-3,-13v11,-11,33,-22,51,-22"},"<":{"d":"271,-39v-43,-25,-99,-51,-151,-69v1,-18,12,-11,35,-19r177,-60r3,21r-184,54v44,14,91,36,130,55"},">":{"d":"181,-172v44,18,100,41,150,54v-3,17,-11,11,-35,19r-180,61r-3,-20r187,-56v-42,-10,-96,-30,-133,-44"},"\u2264":{"d":"328,-134r-169,40r98,40v11,5,21,10,30,15r-13,13v-41,-23,-99,-49,-147,-65v41,-34,132,-36,187,-57xm106,-22v51,4,121,5,176,3r-9,17r-178,-2"},"\u2265":{"d":"168,-161v45,19,106,40,156,55v-6,17,2,6,-29,18r-176,62r1,-19r172,-57v-42,-11,-96,-29,-132,-43xm276,3v-49,-6,-119,-4,-170,0r10,-17r167,0"},"\u00ac":{"d":"137,-144r155,5v-11,19,-24,54,-32,73r-22,-1r28,-57v-38,-3,-95,-3,-136,-2"},"%":{"d":"464,-184v24,9,52,16,92,14v2,0,2,1,0,4r-59,6v-15,1,-2,9,-4,22v-8,71,-49,139,-117,139v-48,0,-35,-66,-15,-94v13,-18,25,-34,38,-47v-111,63,-220,142,-312,223v-1,-13,-12,-19,-2,-28v72,-64,130,-123,176,-170v68,-72,122,-128,164,-195v22,-35,25,-68,-23,-68v-46,0,-91,21,-129,11v-36,23,-71,69,-71,126v0,17,6,25,18,25v55,0,79,-60,83,-122v1,-14,-10,-18,-1,-23v53,11,12,85,-10,107v-21,21,-45,48,-82,48v-20,0,-39,-7,-36,-33v5,-66,42,-112,97,-131v0,-7,-5,-26,2,-30v26,23,85,-6,128,-1v49,-5,70,32,45,71v-86,138,-162,205,-297,348r159,-110v25,-16,47,-30,69,-43v22,-13,41,-23,58,-31v2,0,4,4,1,5v-37,20,-61,67,-64,121v-1,17,5,30,20,30v49,-11,72,-59,74,-120v1,-23,-9,-30,-22,-40v1,-8,17,-8,20,-14","w":557},"\u2030":{"d":"635,-184v24,9,52,16,92,14v2,0,2,1,0,4r-59,6v-14,1,-2,10,-4,22v-9,71,-49,139,-117,139v-22,0,-33,-12,-33,-35v0,-61,44,-109,88,-132r-105,2v-16,1,-2,12,-4,26v-9,71,-49,139,-117,139v-48,0,-35,-66,-15,-94v13,-18,25,-34,38,-47v-111,63,-220,142,-312,223v-1,-13,-12,-19,-2,-28v72,-64,130,-123,176,-170v68,-72,122,-128,164,-195v22,-35,25,-68,-23,-68v-46,0,-91,21,-129,11v-36,23,-71,69,-71,126v0,17,6,25,18,25v55,0,79,-60,83,-122v1,-14,-10,-18,-1,-23v53,11,12,85,-10,107v-21,21,-45,48,-82,48v-20,0,-39,-7,-36,-33v5,-66,42,-112,97,-131v0,-7,-5,-26,2,-30v26,23,85,-6,128,-1v49,-5,70,32,45,71v-86,138,-162,205,-297,348r159,-110v25,-16,47,-30,69,-43v22,-13,41,-23,58,-31v2,0,4,4,1,5v-37,20,-61,67,-64,121v-1,17,5,30,20,30v49,-11,72,-59,74,-120v1,-23,-9,-30,-22,-40v2,-8,18,-11,23,-14v40,12,128,23,168,0xm563,-10v49,-11,73,-59,74,-120v0,-19,-3,-31,-19,-36v-48,14,-71,69,-75,126v-1,17,5,30,20,30","w":728},"'":{"d":"238,-374v12,-14,30,-73,57,-42v-35,65,-87,120,-122,185v-2,4,-6,5,-9,3v-4,-21,15,-40,25,-57","w":196},"\"":{"d":"353,-417v6,-14,38,-6,28,9v-49,75,-104,132,-154,210v-2,3,-5,4,-8,2v-3,-2,-3,-3,0,-6r96,-160v11,-17,24,-36,38,-55xm287,-423v10,-16,39,-4,28,11r-157,211v-1,2,-3,4,-7,3v-4,-1,-4,-5,-1,-10r41,-61","w":294},"\u00b0":{"d":"182,-366v3,-30,22,-52,54,-52v25,0,37,11,37,33v-1,28,-22,53,-55,51v-20,-1,-37,-10,-36,-32xm221,-339v25,0,41,-23,41,-44v0,-19,-7,-29,-27,-29v-28,0,-43,19,-42,44v0,18,11,29,28,29","w":205},"\u00b5":{"d":"137,3v-37,0,-25,-45,-15,-69v-41,82,-102,152,-100,269v0,10,6,15,5,22v-10,-2,-13,-17,-26,-19v-4,-81,40,-140,74,-199r111,-192v7,-10,21,-3,32,-14v4,0,3,2,0,8v-29,51,-73,89,-80,159v-3,27,30,21,47,6v46,-40,83,-100,115,-160v7,-7,24,-10,34,-12v-27,50,-76,107,-85,176v6,26,38,2,47,-7v12,-12,26,-27,36,-41v3,-4,5,-4,5,3v-22,29,-48,71,-94,71v-37,0,-15,-50,-8,-70v-29,23,-50,69,-98,69"},"\u221e":{"d":"320,-160v33,-1,62,20,62,49v0,48,-35,88,-86,86v-39,-1,-58,-31,-74,-55v-31,24,-55,58,-107,58v-32,0,-57,-18,-57,-50v0,-50,33,-88,88,-90v40,-1,59,33,74,57v28,-23,52,-53,100,-55xm293,-36v44,0,69,-32,73,-74v4,-42,-56,-46,-84,-22r-51,44v11,24,32,52,62,52xm78,-70v-3,48,66,42,84,15r50,-43v-15,-23,-30,-52,-64,-52v-48,0,-67,36,-70,80","w":450},"\u2202":{"d":"104,-40v10,-86,80,-149,170,-156v-76,18,-141,77,-141,161v0,48,48,40,78,15v62,-50,109,-141,109,-254v0,-52,-20,-114,-74,-118v-42,-2,-63,37,-52,74v-9,1,-22,-10,-24,-18v5,-39,34,-61,79,-61v107,0,112,140,78,229v-24,62,-62,116,-109,151v-22,16,-42,23,-61,23v-33,-1,-57,-10,-53,-46"},"\u2211":{"d":"388,94r-328,-3v-7,1,-13,16,-16,4v71,-92,168,-165,242,-250r-74,-227v71,-17,177,-1,267,-10v7,19,-9,64,-14,81v-3,-33,0,-59,-34,-61v-51,-3,-107,-4,-177,-4r65,206r-166,166v-28,29,-27,30,-49,54v-7,7,-5,10,9,10r240,-3v62,5,72,-23,94,-58v4,-4,6,-2,6,4r-52,83v-4,5,-8,8,-13,8","w":540},"\u220f":{"d":"90,87v-10,11,-40,4,-50,15v-2,0,-4,-2,-4,-5r256,-441v14,-25,8,-37,-32,-40v-3,0,-4,-1,-4,-3v0,-2,1,-4,5,-4r318,5v37,2,57,-6,79,-6v-13,9,-30,21,-48,22r-197,353v-16,32,-33,62,-39,90v5,17,38,0,53,4v-17,13,-62,16,-91,21v-25,-1,-19,-18,-7,-38v31,-52,83,-139,117,-201r127,-231r-227,-2r-78,131","w":540},"\u03c0":{"d":"292,-10v-21,15,-71,28,-66,-9v8,-63,45,-115,84,-151r-88,-3v-23,55,-60,116,-94,159v-24,31,-46,6,-54,-13v25,4,51,-2,73,-28v22,-24,44,-63,68,-118v-48,0,-67,3,-80,42v-2,3,-6,4,-5,-1v10,-24,22,-57,47,-65v52,-1,104,6,153,6v20,0,25,-9,34,-21v-5,27,-25,40,-50,45v-28,33,-55,88,-60,145v4,27,27,13,46,0v14,-10,27,-28,44,-37v1,1,2,3,1,5v-20,19,-38,34,-53,44"},"\u222b":{"d":"77,45v16,0,20,16,34,14v28,-5,38,-33,51,-63r82,-191v37,-73,76,-150,136,-200v19,-16,57,-19,57,11v1,15,-9,20,-21,21v-12,-8,-32,-33,-48,-11v-69,93,-101,225,-165,322v-35,54,-53,126,-127,137v-9,1,-20,-9,-20,-19v0,-10,10,-21,21,-21"},"\u2126":{"d":"430,6r-124,-6v-5,-5,2,-25,15,-24v115,-22,189,-114,189,-243v0,-81,-45,-127,-130,-125v-151,3,-223,105,-229,252v-2,65,27,103,70,119v-5,36,-74,18,-117,20v-18,1,-33,18,-38,34v-2,0,-4,-1,-4,-4v12,-23,19,-60,57,-58r65,3v8,0,9,-2,2,-6v-33,-30,-69,-68,-66,-132v7,-146,102,-235,260,-235v102,0,169,36,169,133v0,133,-96,195,-191,243v23,3,58,1,87,1v28,0,40,-27,52,-45v2,0,2,2,3,4v-18,28,-22,72,-70,69","w":540},"\u221a":{"d":"174,-30v52,-116,122,-239,197,-326r27,8v-97,89,-171,230,-231,359r-15,2v-4,-32,-9,-68,-18,-95r-22,15r-2,-7r41,-38r6,1v3,25,11,61,17,81","w":450},"\u2206":{"d":"416,-25r22,-316v0,-9,-2,-11,-7,-5r-296,311v-3,4,-2,6,5,6xm411,2r-322,2v-6,-1,0,-9,0,-13r334,-345v13,-18,32,-30,49,-44v4,-2,7,0,7,7r-31,391v-5,9,-21,2,-37,2","w":540},"\u25ca":{"d":"188,-4r-13,0r-30,-92r115,-88r17,0r25,90xm263,-166r-97,72r21,71r95,-75","w":450},"\\":{"d":"373,141v0,5,-3,8,-8,6v-5,-2,-7,-4,-9,-7r-194,-637v3,-5,18,0,18,7","w":331},"^":{"d":"184,-201v56,-46,120,-104,162,-152r11,2v-5,45,-10,109,-9,158r-18,5r8,-137v-34,39,-92,91,-133,130"},"~":{"d":"285,-121v24,2,32,-22,43,-36r18,18v-16,18,-28,43,-62,43v-44,-1,-61,-34,-107,-34v-23,0,-34,20,-41,36r-18,-18v11,-20,30,-43,62,-42v41,2,67,30,105,33"},"\u00a6":{"d":"187,-608r27,0r0,316r-27,0r0,-316xm187,-158r27,0r0,315r-27,0r0,-315","w":199},"_":{"d":"0,45r0,-45r450,0r0,45r-450,0","w":450},"\u00a4":{"d":"396,-357r22,22r-32,33v43,47,43,137,0,184r32,33r-22,23r-32,-33v-52,44,-133,44,-185,0r-32,33r-23,-23r33,-33v-44,-50,-44,-134,0,-184r-33,-33r23,-22r32,33v52,-44,133,-44,185,0xm272,-86v66,0,120,-60,120,-124v0,-64,-55,-124,-120,-124v-66,0,-121,59,-121,124v0,65,54,124,121,124","w":350},"\u20ac":{"d":"82,-232v12,-19,60,-6,90,-11v59,-86,137,-171,285,-157v38,4,70,21,80,56v-12,11,-17,27,-32,35v-6,-51,-32,-86,-86,-86v-95,0,-157,78,-200,152r176,-6v4,0,6,1,6,3v-35,23,-121,5,-188,11v-9,14,-16,29,-22,44r177,-6v4,0,6,1,6,3v-34,23,-121,5,-187,11v-11,29,-21,63,-22,98v-1,59,34,80,90,81v75,1,122,-39,160,-75v8,0,2,13,1,17v-36,32,-101,67,-168,66v-74,0,-127,-19,-126,-95v1,-32,8,-65,19,-91v-27,0,-59,7,-83,3v9,-20,58,-5,87,-11r22,-45v-28,0,-60,7,-85,3","w":438},"$":{"d":"229,-200v-27,-13,-82,-13,-84,-48v17,-68,64,-150,142,-150v20,0,35,7,46,21v17,-25,29,-54,49,-75v4,-5,8,-3,8,4r-51,81v14,19,8,57,-10,67v-9,-5,-2,-25,-9,-34r-65,107v41,15,83,25,83,79v0,84,-76,132,-143,162v-27,12,-55,17,-84,17v-24,46,-41,93,-59,143v-1,5,-3,5,-5,3v-9,-52,35,-102,52,-148v-48,-3,-79,-37,-67,-93v13,34,37,64,80,68xm262,-375v-49,0,-83,41,-83,89v0,37,37,44,67,56r67,-115v-11,-18,-25,-30,-51,-30xm123,6v101,12,171,-39,173,-135v0,-42,-28,-55,-59,-68","w":334},"\u00a2":{"d":"161,-56v-35,5,-69,-6,-66,-41v9,-97,78,-177,147,-222v28,-18,56,-27,85,-27r66,-98v4,-2,7,0,7,5v-14,35,-43,63,-63,94v17,5,47,22,36,45v-11,3,-16,18,-24,23v-5,-14,-9,-41,-29,-42r-142,244v86,-7,120,-58,173,-108v2,-2,3,-2,5,-2v-35,63,-107,109,-186,127v-36,75,-66,127,-78,194v0,5,3,10,1,14v-24,-23,-18,-32,3,-77v13,-28,34,-71,65,-129xm310,-321v-65,-16,-103,38,-128,80v-23,39,-55,103,-37,155v4,6,13,9,25,10r69,-124v36,-63,35,-63,71,-121","w":330},"\u00a3":{"d":"168,-212v-24,-1,-61,14,-71,-4v17,-8,49,0,75,-4v54,-82,101,-198,235,-178v25,4,4,39,0,52v-13,-37,-90,-45,-124,-12v-33,32,-66,93,-93,138r124,-5v5,-1,23,13,3,13r-131,-1v-24,40,-60,79,-93,115v11,2,25,-3,39,-3v90,0,121,84,200,84v36,0,65,-32,82,-58v2,-1,4,1,4,5v-26,50,-104,112,-170,59v-44,-35,-92,-107,-171,-74v-28,12,-51,63,-77,80v-11,0,-11,-19,-4,-26v47,-44,108,-72,143,-132v9,-14,18,-30,29,-49","w":432},"\u00a5":{"d":"536,-436v11,-8,21,5,24,11v0,2,-2,5,-7,7v-101,60,-187,130,-282,206v-7,6,-9,7,-2,7r78,-4v8,0,6,6,2,8v-23,8,-62,0,-92,5v-15,3,-18,25,-25,36v-2,4,-1,6,2,6r81,-4v3,0,5,2,5,5v-17,19,-76,-8,-100,16r-60,117v3,18,38,7,56,8v4,0,6,3,6,7v-9,13,-44,1,-69,2r-96,3v-5,0,-7,-2,-7,-7v8,-17,53,4,67,-14v26,-34,51,-77,72,-119v-25,-10,-77,11,-102,3v20,-19,66,-9,105,-14v13,-2,21,-30,25,-41v-25,-8,-64,7,-90,0v13,-25,86,8,101,-21v32,-62,22,-175,-67,-168v-45,3,-80,22,-103,58v-4,4,-7,3,-7,-4v30,-39,75,-74,148,-74v98,0,90,129,53,195r145,-122v46,-38,93,-73,139,-108","w":395},"\u0192":{"d":"425,-401v27,0,25,27,7,34v-19,-16,-69,-13,-86,7v-38,46,-71,118,-105,173r99,-2v-21,11,-71,7,-104,13r-84,134v-51,64,-88,148,-190,148v-24,-1,-49,-6,-53,-26v3,-13,16,-24,27,-29v-1,42,55,57,91,32v75,-53,122,-175,173,-259r-55,4v-13,0,-4,-8,0,-12v13,-18,30,1,63,-3v48,-80,96,-157,172,-205v13,-7,28,-9,45,-9","w":325},"`":{"d":"94,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":207},"\u0300":{"d":"-42,-357v15,30,34,73,41,108v-1,0,-3,0,-4,-1v-15,-32,-35,-58,-46,-94v-1,-4,6,-13,9,-13","w":0},"\u00b4":{"d":"166,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":207},"\u0301":{"d":"126,-361v5,-5,11,2,11,7v0,1,0,3,-2,5r-144,103v-3,2,-5,3,-6,2v-1,-1,-1,-3,0,-4","w":0},"\u02c6":{"d":"158,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":207},"\u0302":{"d":"61,-353v-2,38,18,99,-14,112v-8,-22,-2,-59,-5,-87v0,-4,-2,-6,-4,-6v-31,22,-57,60,-85,83v-8,-3,-3,-12,4,-16r95,-89v4,-2,8,-2,9,3","w":0},"\u02c7":{"d":"169,-354v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":207},"\u030c":{"d":"101,-354v7,4,6,12,-3,17v-33,29,-62,64,-99,89v-3,0,-5,-1,-5,-4r-6,-89v-2,-11,23,-31,23,-15r2,81v0,4,2,5,4,5v28,-20,61,-61,84,-84","w":0},"\u02bc":{"d":"225,-413v53,66,-26,150,-66,189v-2,2,-4,3,-6,1v-2,-14,16,-20,22,-30v33,-23,59,-96,26,-133v-1,-2,12,-20,24,-27","w":207},"\u0315":{"d":"200,-413v53,66,-26,150,-66,189v-2,2,-4,3,-6,1v-2,-14,16,-20,22,-30v33,-23,59,-96,26,-133v-1,-2,12,-20,24,-27","w":0},"\u02dc":{"d":"160,-282v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":207},"\u0303":{"d":"74,-282v20,1,34,-19,34,-39v0,-7,9,-12,8,0v-3,25,-25,55,-54,55v-42,0,-52,-63,-95,-44v-18,9,-30,32,-46,41v3,-22,34,-42,50,-55v44,-34,61,40,103,42","w":0},"\u00a8":{"d":"117,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm52,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":207},"\u0308":{"d":"41,-292v0,-15,15,-33,30,-33v8,0,11,4,11,12v0,14,-15,33,-30,32v-7,0,-11,-4,-11,-11xm-24,-297v-1,-15,14,-34,30,-33v8,0,12,3,12,11v0,14,-16,34,-31,33v-7,0,-11,-4,-11,-11","w":0},"\u00af":{"d":"149,-288r-79,2r5,-14r77,-2","w":207},"\u0304":{"d":"61,-288r-79,2r5,-14r77,-2","w":0},"\u02d8":{"d":"103,-274v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":207},"\u0306":{"d":"17,-274v29,0,43,-26,59,-42v2,0,5,3,4,6v-14,26,-40,48,-74,49v-26,0,-44,-18,-44,-45v0,-9,20,-20,20,-7v0,22,12,39,35,39","w":0},"\u02da":{"d":"54,-303v2,-36,25,-60,64,-61v29,0,44,12,44,38v-1,32,-27,61,-65,61v-26,0,-45,-13,-43,-38xm101,-270v31,0,48,-24,48,-54v0,-21,-9,-35,-32,-35v-53,0,-72,89,-16,89","w":248},"\u030a":{"d":"-22,-303v2,-36,25,-60,64,-61v29,0,44,12,44,38v-1,32,-27,61,-65,61v-26,0,-45,-13,-43,-38xm25,-270v31,0,48,-24,48,-54v0,-21,-9,-35,-32,-35v-53,0,-72,89,-16,89","w":0},"\u02dd":{"d":"158,-339v6,-9,15,1,14,10v-18,24,-50,60,-76,76v17,-31,42,-58,62,-86xm111,-344v9,3,8,19,0,24r-67,68v-1,1,-2,1,-3,0v16,-36,45,-58,65,-89v1,-2,3,-3,5,-3","w":207},"\u030b":{"d":"86,-339v6,-9,15,1,14,10v-18,24,-50,60,-76,76v17,-31,42,-58,62,-86xm39,-344v9,3,8,19,0,24r-67,68v-1,1,-2,1,-3,0v16,-36,45,-58,65,-89v1,-2,3,-3,5,-3","w":0},"\u02d9":{"d":"80,-290v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":207},"\u0307":{"d":"3,-290v-3,-22,39,-38,42,-11v3,20,-41,44,-42,11","w":0},"\u00b8":{"d":"86,50v7,-23,38,-42,62,-45v-4,10,-35,13,-36,29v4,14,29,12,29,30v-11,32,-55,51,-84,66v-2,0,-8,-3,-7,-6v19,-12,58,-18,64,-43v-1,-17,-26,-14,-28,-31","w":207},"\u0327":{"d":"-196,50v7,-23,38,-42,62,-45v-4,10,-35,13,-36,29v4,14,29,12,29,30v-11,32,-55,51,-84,66v-2,0,-8,-3,-7,-6v19,-12,58,-18,64,-43v-1,-17,-26,-14,-28,-31","w":0},"\u02db":{"d":"131,82v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":207},"\u0328":{"d":"-127,82v-19,16,-76,9,-72,-18v5,-39,58,-60,93,-75v2,0,3,1,3,2v-27,13,-65,32,-67,64v-1,20,22,32,42,25v2,0,2,0,1,2","w":0},"\u0326":{"d":"-173,35v44,49,-22,116,-62,136v-6,3,-9,-3,-4,-6v23,-15,52,-41,54,-76v1,-17,-10,-21,-11,-32v1,-5,17,-19,23,-22","w":0},"\u0338":{"d":"-204,32v70,-83,126,-165,193,-254v6,-8,12,-1,10,5v-69,79,-131,172,-195,257v-3,4,-7,4,-10,2v-3,-2,-2,-6,2,-10","w":0},"\uf8ff":{"d":"274,-4v-38,1,-62,19,-102,17v-99,-5,-122,-105,-122,-207v0,-104,32,-196,136,-199v48,-1,75,27,120,27v44,0,70,-27,118,-27v49,0,75,26,93,55v-34,12,-66,52,-66,99v0,48,26,77,60,90v-16,86,-64,154,-155,161v-35,3,-49,-16,-82,-16xm300,-383v-22,-81,26,-148,97,-162v14,87,-19,149,-97,162","w":565},"\u200c":{"w":450},"\u200d":{"w":450},"\u0162":{"d":"302,3v-56,-1,-152,23,-135,-45r196,-338v3,-5,1,-8,-5,-8v-104,-2,-187,7,-232,65v-14,19,-27,43,-41,74v-2,5,-8,1,-9,-5v28,-73,56,-143,163,-143v135,0,324,35,355,-76v1,-6,-5,-11,1,-13v11,10,20,18,21,36v-16,65,-105,61,-185,62v-8,0,-15,3,-19,9v-69,105,-129,201,-184,315v-23,48,22,66,76,60v2,2,2,5,-2,7xm163,46v7,-23,38,-42,62,-45v-4,10,-35,13,-36,29v4,14,29,12,29,30v-11,32,-55,51,-84,66v-2,0,-8,-3,-7,-6v19,-12,58,-18,64,-43v-1,-17,-26,-14,-28,-31","w":358},"\u0163":{"d":"111,-173v-16,-1,-40,9,-50,0v5,-16,37,-12,58,-13r76,-125r59,-24v6,13,-27,11,-30,25v-28,38,-52,83,-77,124r111,0v4,2,4,4,1,6r-119,5v-25,47,-53,80,-53,132v0,59,77,22,102,4v2,-2,3,-1,5,1v2,2,2,4,-1,5v-35,22,-62,37,-110,37v-22,0,-38,-13,-36,-37v5,-50,36,-91,64,-140xm30,46v7,-23,38,-42,62,-45v-4,10,-35,13,-36,29v4,14,29,12,29,30v-11,32,-55,51,-84,66v-2,0,-8,-3,-7,-6v19,-12,58,-18,64,-43v-1,-17,-26,-14,-28,-31","w":178},"\u00ad":{"d":"137,-128v43,2,92,-1,137,-1v7,0,10,3,10,7v-25,17,-97,2,-149,8v-6,0,-9,-2,-9,-6v1,-4,5,-8,11,-8","w":284},"\u2219":{"d":"83,-10v0,-25,24,-54,50,-42v19,19,-11,54,-34,56v-9,0,-16,-4,-16,-14","w":207},"\u2215":{"d":"333,-421r-106,106r-224,240r-107,122v-7,9,-24,15,-31,5r442,-472v4,-7,22,-9,26,-1","w":90},"\u03bc":{"d":"137,3v-37,0,-25,-45,-15,-69v-41,82,-102,152,-100,269v0,10,6,15,5,22v-10,-2,-13,-17,-26,-19v-4,-81,40,-140,74,-199r111,-192v7,-10,21,-3,32,-14v4,0,3,2,0,8v-29,51,-73,89,-80,159v-3,27,30,21,47,6v46,-40,83,-100,115,-160v7,-7,24,-10,34,-12v-27,50,-76,107,-85,176v6,26,38,2,47,-7v12,-12,26,-27,36,-41v3,-4,5,-4,5,3v-22,29,-48,71,-94,71v-37,0,-15,-50,-8,-70v-29,23,-50,69,-98,69"},"\u03a9":{"d":"430,6r-124,-6v-5,-5,2,-25,15,-24v115,-22,189,-114,189,-243v0,-81,-45,-127,-130,-125v-151,3,-223,105,-229,252v-2,65,27,103,70,119v-5,36,-74,18,-117,20v-18,1,-33,18,-38,34v-2,0,-4,-1,-4,-4v12,-23,19,-60,57,-58r65,3v8,0,9,-2,2,-6v-33,-30,-69,-68,-66,-132v7,-146,102,-235,260,-235v102,0,169,36,169,133v0,133,-96,195,-191,243v23,3,58,1,87,1v28,0,40,-27,52,-45v2,0,2,2,3,4v-18,28,-22,72,-70,69","w":540},"\u0394":{"d":"416,-25r22,-316v0,-9,-2,-11,-7,-5r-296,311v-3,4,-2,6,5,6xm411,2r-322,2v-6,-1,0,-9,0,-13r334,-345v13,-18,32,-30,49,-44v4,-2,7,0,7,7r-31,391v-5,9,-21,2,-37,2","w":540},"\u02c9":{"d":"149,-288r-79,2r5,-14r77,-2","w":207}}});
;
/*
 * jQuery selectbox plugin
 *
 * Copyright (c) 2007 Sadri Sahraoui (brainfault.com)
 * Licensed under the GPL license and MIT:
 *   http://www.opensource.org/licenses/GPL-license.php
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * The code is inspired from Autocomplete plugin (http://www.dyve.net/jquery/?autocomplete)
 *
 * Revision: $Id$
 * Version: 0.5
 * 
 * Changelog :
 *  Version 0.5 
 *  - separate css style for current selected element and hover element which solve the highlight issue 
 *  Version 0.4
 *  - Fix width when the select is in a hidden div   @Pawel Maziarz
 *  - Add a unique id for generated li to avoid conflict with other selects and empty values @Pawel Maziarz
 */
jQuery.fn.extend({
	selectbox: function(options) {
		return this.each(function() {
			new jQuery.SelectBox(this, options);
		});
	}
});


/* pawel maziarz: work around for ie logging */
if (!window.console) {
	var console = {
		log: function(msg) { 
	 }
	}
}
/* */

jQuery.SelectBox = function(selectobj, options) {
	
	var opt = options || {};
	opt.inputClass = opt.inputClass || "selectbox";
	opt.containerClass = opt.containerClass || "selectbox-wrapper";
	opt.hoverClass = opt.hoverClass || "current";
	opt.currentClass = opt.selectedClass || "selected"
	opt.debug = opt.debug || false;
	
	var elm_id = selectobj.id;
	var active = -1;
	var inFocus = false;
	var hasfocus = 0;
	//jquery object for select element
	var $select = $(selectobj);
	// jquery container object
	var $container = setupContainer(opt);
	//jquery input object 
	var $input = setupInput(opt);
	// hide select and append newly created elements
	$select.hide().before($input).before($container);
	
	
	init();
	
	$input
	.click(function(){
    if (!inFocus) {
		  $container.toggle();
		}
	})
	.focus(function(){
	   if ($container.not(':visible')) {
	       inFocus = true;
	       $container.show();
	   }
	})
	.keydown(function(event) {	   
		switch(event.keyCode) {
			case 38: // up
				event.preventDefault();
				moveSelect(-1);
				break;
			case 40: // down
				event.preventDefault();
				moveSelect(1);
				break;
			//case 9:  // tab 
			case 13: // return
				event.preventDefault(); // seems not working in mac !
				$('li.'+opt.hoverClass).trigger('click');
				break;
			case 27: //escape
			  hideMe();
			  break;
		}
	})
	.blur(function() {
		if ($container.is(':visible') && hasfocus > 0 ) {
			if(opt.debug) console.log('container visible and has focus')
		} else {
			hideMe();	
		}
	});


	function hideMe() { 
		hasfocus = 0;
		$container.hide(); 
	}
	
	function init() {
		$container.append(getSelectOptions($input.attr('id'))).hide();
		var width = $input.css('width');
		$container.width(width);
    }
	
	function setupContainer(options) {
		var container = document.createElement("div");
		$container = $(container);
		$container.attr('id', elm_id+'_container');
		$container.addClass(options.containerClass);
		
		return $container;
	}
	
	function setupInput(options) {
		var input = document.createElement("input");
		var $input = $(input);
		$input.attr("id", elm_id+"_input");
		$input.attr("type", "text");
		$input.addClass(options.inputClass);
		$input.attr("autocomplete", "off");
		$input.attr("readonly", "readonly");
		$input.attr("tabIndex", $select.attr("tabindex")); // "I" capital is important for ie
		
		return $input;	
	}
	
	function moveSelect(step) {
		var lis = $("li", $container);
		if (!lis) return;

		active += step;

		if (active < 0) {
			active = 0;
		} else if (active >= lis.size()) {
			active = lis.size() - 1;
		}

		lis.removeClass(opt.hoverClass);

		$(lis[active]).addClass(opt.hoverClass);
	}
	
	function setCurrent() {	
		var li = $("li."+opt.currentClass, $container).get(0);
		var ar = (''+li.id).split('_');
		var el = ar[ar.length-1];
		$select.val(el);
		$input.val($(li).html());
		return true;
	}
	
	// select value
	function getCurrentSelected() {
		return $select.val();
	}
	
	// input value
	function getCurrentValue() {
		return $input.val();
	}
	
	function getSelectOptions(parentid) {
		var select_options = new Array();
		var ul = document.createElement('ul');
		$select.children('option').each(function() {
			var li = document.createElement('li');
			li.setAttribute('id', parentid + '_' + $(this).val());
			li.innerHTML = $(this).html();
			if ($(this).is(':selected')) {
				$input.val($(this).html());
				$(li).addClass(opt.currentClass);
			}
			ul.appendChild(li);
			$(li)
			.mouseover(function(event) {
				hasfocus = 1;
				if (opt.debug) console.log('over on : '+this.id);
				jQuery(event.target, $container).addClass(opt.hoverClass);
			})
			.mouseout(function(event) {
				hasfocus = -1;
				if (opt.debug) console.log('out on : '+this.id);
				jQuery(event.target, $container).removeClass(opt.hoverClass);
			})
			.click(function(event) {
			  var fl = $('li.'+opt.hoverClass, $container).get(0);
				if (opt.debug) console.log('click on :'+this.id);
				$('li.'+opt.currentClass).removeClass(opt.currentClass); 
				$(this).addClass(opt.currentClass);
				setCurrent();
				hideMe();
			});
		});
		return ul;
	}
	
};
;
/* Slovak initialisation for the jQuery UI date picker plugin. */
/* Written by Vojtech Rinik (vojto@hmm.sk). */
jQuery(function($){
	$.datepicker.regional['sk'] = {
		closeText: 'Zavrieť',
		prevText: '&#x3c;Predchádzajúci',
		nextText: 'Nasledujúci&#x3e;',
		currentText: 'Dnes',
		monthNames: ['Január','Február','Marec','Apríl','Máj','Jún',
		'Júl','August','September','Október','November','December'],
		monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún',
		'Júl','Aug','Sep','Okt','Nov','Dec'],
		dayNames: ['Nedeľa','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota'],
		dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'],
		dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So'],
		weekHeader: 'Ty',
		dateFormat: 'dd.mm.yy',
		firstDay: 1,
		isRTL: false,
		showMonthAfterYear: false,
		yearSuffix: ''};
	$.datepicker.setDefaults($.datepicker.regional['sk']);
});
;

//***** globalne premenne

//aktualny jazyk
//var lang = $('html').attr('lang');

//var slideshow; //.after('<div id="nav">')

function slideshow(){
  $('#header_slideshow_undelayer').css('display','block');
  //slideshow=
  $('#header_slideshow_undelayer').after('<div id="nav">').cycle({
    fx: 'fade',
    speed:  4000,
    timeout: 3000,
    pager: '#nav',
    pagerAnchorBuilder: function(idx, slide) { 
        return '<a href="#"></a>'; 
    }
  });

} 

//aby nemohli zvolit vcerajsi den
function dateCustomRange(elementIdFrom,elementIdTo) {
  return {
    minDate: (input.id == "edit-to" ? ($("#edit-from").datepicker("getDate")==null? 0 : $("#edit-from").datepicker("getDate")) : 0),
    maxDate: (input.id == "edit-from" ? $("#edit-to").datepicker("getDate") : null)
    };
}
    
function dateAddFrom(elementId) {
  $(elementId).datepicker({
    //beforeShow: customRange,
    showOn: "both",
    firstDay: 1,
    changeFirstDay: false,
    dateFormat: "dd.mm.yy",
    buttonImage: "/sites/all/themes/galileo/images/calendar.png",
    buttonImageOnly: true
  });
}

function dateAddTo(elementId) {
  $(elementId).datepicker({
    //beforeShow: customRange,
    showOn: "both",
    firstDay: 1,
    changeFirstDay: false,
    dateFormat: "dd.mm.yy",
    buttonImage: "/sites/all/themes/galileo/images/calendar.png",
    buttonImageOnly: true
  });
}

function dateInit(){
  //na kazdej stranke zapneme kalendar co je v lavom boxe
  dateAddFrom('#edit-to');
  dateAddTo('#edit-from');
  
  // a ak sme na formulari tak zapneme aj kalendar na formulari
  if ($('#activit-reservation-page-form').length > 0){
    dateAddFrom('#edit-date-from');
    dateAddTo('#edit-date-to');
  }
}


function partners_hover(){
  $('#footer_partners div').each(function(){
    $(this).mouseover(function(){
      $(this).css('background-image','url("/sites/all/themes/galileo/images/footer_partners_bg.png")');
    }).mouseout(function(){
      $(this).css('background-image','none');
    });
  });
}

function initPrettyGallery(){
  if ($('#gallery_first_page').length > 0){
    $(window).load(function(){  //az ked sa nacitaju uplne cele obrazky
      $("#gallery_first_page").css('visibility','visible');  //aby sme nevideli obrazok pokym sa nacitavaju
  		$("#gallery_first_page").prettyGallery({
  			itemsPerPage : 3,
  			animationSpeed : 'normal',
  			of_label: ''
    	});
    });
  }
}

function initFont(){
  Cufon.replace('h1#title');
  Cufon.replace('h2.zapfino');
}

function initSelectBox(){
  //$('.form-select').customStyle();
  $('#activit-reservation-page-form .form-select').selectbox();
  $('#activit-reservation-block-form .form-select').selectbox();
} 

function myFunc(elName)
	{
		var obj = document.getElementById(elName);
		
		if (obj){
			obj.playAnim();
		}
		//alert(FlashID);
	}
	
	function flashReady() {
   		//alert('flashReady');
	}    

function hoverFront(){
  var myFlash=new Array("sm_ubytovanie","sm_restauracia","sm_kongresy","sm_wellnes","sm_kaviaren","sm_golf");
  
  $('a.frontLink').each(function(index){
  //$(document).write(myFlash[index]);
  //$(this).css('color','red');
  /*$(this).hover(function(){
    $(this).css('visibility','hidden');
  });*/
  $(this).hover(myFunc("sm_wellnes"));
  });
  
}   

$(document).ready(function() {
  //hoverFront();
  //flashReady();
  slideshow();
  dateInit();
  initSelectBox();
  //partners_hover();
  initFont();
  initPrettyGallery();
});
;

