/*
 * 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>';
  }
};
;

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
// $Id: jquerymenu.js,v 1.7 2010/05/05 07:50:55 aaronhawkins Exp $
Drupal.behaviors.jquerymenu = function(context) {
  jqm_showit = function() {
    $(this).children('.jqm_link_edit').fadeIn();
  }
  jqm_hideit = function() {
    $(this).children('.jqm_link_edit').fadeOut();
  }
  $('ul.jquerymenu li').hover(jqm_showit, jqm_hideit);

  $('ul.jquerymenu .active').parents('li').removeClass('closed').addClass('open');

  $('ul.jquerymenu:not(.jquerymenu-processed)', context).addClass('jquerymenu-processed').each(function(){
    $(this).find("li.parent span.parent").click(function(){
      momma = $(this).parent();
      if ($(momma).hasClass('closed')){
        $($(this).siblings('ul').children()).hide().fadeIn('3000');
        $(momma).children('ul').slideDown('700');
        $(momma).removeClass('closed').addClass('open');
        $(this).removeClass('closed').addClass('open');
      }
      else{
        $(momma).children('ul').slideUp('700');
        $($(this).siblings('ul').children()).fadeOut('3000');
        $(momma).removeClass('open').addClass('closed');
        $(this).removeClass('open').addClass('closed');
      }
    });
  });
};
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

/**
 * 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, allowed_tags) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str,
        'allowed_tags' : allowed_tags
      },
      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');
};

;
$(document).ready(function() {

	var timeout			= 500;
	var sizewait		= 250;
	var hoverwait		= 400;
	var hovertimer		= null;
	var sizetimer		= null;
	var closetimer		= null;
	var hoverParent		= null;
	var hoverBin		= null;
	var hoverSlots		= null;
	var megaSlots		= null;
	var megaParents		= null;
	var hideOffset		= -9000;

	megaParents = $('.megamenu-menu').find('.megamenu-parent');
	var megaParentTitles = $('.megamenu-menu').find('.megamenu-parent-title');
	var megaBins = $('.megamenu-menu').find('.megamenu-bin');
	var oldParentIdx = -1;
	var hoverParentIdx = -2;

	megaBins.css('top', hideOffset);

	function megamenu_open(){
		megamenu_canceltimer();

		if ($(this).hasClass('megamenu-parent-title')) {
			hoverParentIdx = megaParentTitles.index($(this));
		}
		else if ($(this).hasClass('megamenu-bin')) {
			hoverParentIdx = megaParents.index($(this).parents('.megamenu-parent'));
		}

		hoverParent = megaParents.eq(hoverParentIdx);

		if (hoverParentIdx != oldParentIdx) {
			megamenu_close();
			megamenu_hovertimer();
		} else {
			megamenu_display();
		}
	}

	function megamenu_display() {
		if (hoverParent) {
			// If the display doesn't have hover yet - trigger event
			if (!hoverParent.hasClass('hovering')) {
				hoverParent.trigger('megamenu_open');
			}
			hoverParent.addClass('hovering');
			hoverBin = hoverParent.find('.megamenu-bin');
			/* display position */
			hoverBin.css('top', 'auto');
		/* display position end */
		}
	}

	function megamenu_close(){
		if (hoverParent) {
			oldParentIdx = $('.megamenu-parent').index(hoverParent);
		}
		for ( var i=0 ; i < megaParents.length ; i++ ) {
			megaParents.trigger('megamenu_close');
			megaParents.eq(i).removeClass('hovering');
		}
		if(hoverBin) hoverBin.css('top', hideOffset);
	}

	function megamenu_closeAll(){
		if(hoverBin) hoverBin.css('top', hideOffset);
		for ( var i=0 ; i < megaParents.length ; i++ ) {
			megaParents.trigger('megamenu_close');
			megaParents.eq(i).removeClass('hovering');
		}
		oldParentIdx = -1;
	}

	function megamenu_stopPropagation(event){
		event.stopPropagation();
	}

	function megamenu_timer(){
		megamenu_canceltimer();
		megamenu_cancelhovertimer();
		closetimer = window.setTimeout(megamenu_closeAll, timeout);
	}

	function megamenu_canceltimer(){
		if (closetimer) {
			window.clearTimeout(closetimer);
			closetimer = null;
		}
	}

	function megamenu_hovertimer(){
		megamenu_cancelhovertimer();
		hovertimer = window.setTimeout(megamenu_display, hoverwait);
	}

	function megamenu_cancelhovertimer(){
		if (hovertimer) {
			window.clearTimeout(hovertimer);
			hovertimer = null;
		}
	}

	function megamenu_sizetimer(){
		/* waits to resize on initial call to accomodate browser draw */
		sizetimer = window.setTimeout(megamenu_sizer, sizewait);
	}

	function megamenu_sizer(){

		for ( var k=0 ; k < megaBins.length ; k++ ) {

			/* resets to bin sizes and position before sizing */
			megaBins.eq(k).css('left', 0 + 'px');
			megaBins.eq(k).css('width', 0 + 'px');

			var megaSlots = megaBins.eq(k).find('.megamenu-slot');

			/* auto bin width start */

			var i = 0;

			if(megaBins.eq(k).hasClass('megamenu-slots-columnar')) {
				var slotTotalWidth = 0;
				for ( i=0 ; i < megaSlots.length ; i++ ) {

					slotTotalWidth += megaSlots.eq(i).outerWidth(true);

					if (slotTotalWidth > $(window).width()) {
						slotTotalWidth = 0;
						for (var j=0 ; j < i ; j++) {
							slotTotalWidth += megaSlots.eq(i).outerWidth(true);
						}
						break;
					}
				}
				megaBins.eq(k).css( 'width' , slotTotalWidth);
				megaBins.eq(k).width(slotTotalWidth);
			}
			else {
				/* set bin width for vertical slots */
				megaBins.eq(k).css( 'width' , megaSlots.eq(0).outerWidth(true) );
			}
			/* auto bin width end */

			/* off-page shift start */ 
			var edgeOverlap = ($(window).width() - (megaBins.eq(k).offset().left + megaBins.eq(k).outerWidth(true)));

			if (edgeOverlap < 0) {
				megaBins.eq(k).css('left',(edgeOverlap) + 'px');
			}
		/* off-page shift end */
	
		}
	}

	// Open Mega Menu Function - bound
	function megamenu_open_progress() {
		if ($(this).find('ul.megamenu-bin').get(0)) {
			$(this).find('h2').addClass('megamenu-active');
		}
	}
	function megamenu_close_progress() {
		$(this).find('h2').removeClass('megamenu-active');
	}

	$('.megamenu-parent').bind('megamenu_open', megamenu_open_progress);
	$('.megamenu-parent').bind('megamenu_close', megamenu_close_progress);

	$('.megamenu-parent-title').bind('mouseover', megamenu_open);
	$('.megamenu-parent-title').bind('mouseout', megamenu_timer);

	$('.megamenu-bin').bind('mouseover', megamenu_open);
	$('.megamenu-bin').bind('mouseout', megamenu_timer);

	$("body").bind('click', megamenu_closeAll);
	$(".megamenu-menu").bind('click', megamenu_stopPropagation);

	$(window).bind('resize', megamenu_sizer);
	megamenu_sizetimer();
});;
// $Id: mollom.js,v 1.2.2.13 2010/08/07 02:49:44 dries Exp $
(function ($) {

/**
 * Open Mollom privacy policy link in a new window.
 *
 * Required for valid XHTML Strict markup.
 */
Drupal.behaviors.mollomPrivacy = function (context) {
  $('.mollom-privacy a', context).click(function () {
    this.target = '_blank';
  });
};

/**
 * Attach click event handlers for CAPTCHA links.
 */
Drupal.behaviors.mollomCaptcha = function (context) {
  $('a.mollom-switch-captcha', context).click(getMollomCaptcha);
};

/**
 * Fetch a Mollom CAPTCHA and output the image or audio into the form.
 */
function getMollomCaptcha() {
  // Get the current requested CAPTCHA type from the clicked link.
  var newCaptchaType = $(this).hasClass('mollom-audio-captcha') ? 'audio' : 'image';

  var context = $(this).parents('form');

  // Extract the Mollom session id from the form.
  var mollomSessionId = $('input.mollom-session-id', context).val();

  // Retrieve a CAPTCHA:
  $.getJSON(Drupal.settings.basePath + 'mollom/captcha/' + newCaptchaType + '/' + mollomSessionId,
    function (data) {
      if (!(data && data.content)) {
        return;
      }
      // Inject new CAPTCHA.
      $('.mollom-captcha-content', context).parent().html(data.content);
      // Update session id.
      $('input.mollom-session-id', context).val(data.session_id);
      // Add an onclick-event handler for the new link.
      Drupal.attachBehaviors(context);
      // Focus on the CATPCHA input.
      $('input[name="mollom[captcha]"]', context).focus();
    }
  );
  return false;
}

})(jQuery);
;
// $Id: nice_menus.js,v 1.10.2.6 2008/08/04 23:45:51 add1sun Exp $

// We need to do some browser sniffing to weed out IE 6 only
// because only IE6 needs this hover hack.
if (document.all && !window.opera && (navigator.appVersion.search("MSIE 6.0") != -1) && $.browser.msie) {
  function IEHoverPseudo() {
      $("ul.nice-menu li.menuparent").hover(function(){
          $(this).addClass("over").find("> ul").show().addShim();
        },function(){
          $(this).removeClass("over").find("> ul").removeShim().hide();
        }
      );
      // Add a hover class to all li for CSS styling. Silly naming is done
      // so we don't break CSS compatibility for .over class already in use
      // and due to the fact that IE6 doesn't understand multiple selectors.
      $("ul.nice-menu li").hover(function(){
          $(this).addClass("ie-over");
        },function(){
          $(this).removeClass("ie-over");
        }
      );
    }

    // This is the jquery method of adding a function
    // to the BODY onload event.  (See jquery.com)
    $(document).ready(function(){ IEHoverPseudo() });
}

$.fn.addShim = function() {
  return this.each(function(){
	  if(document.all && $("select").size() > 0) {
	    var ifShim = document.createElement('iframe');
	    ifShim.src = "javascript:false";
			ifShim.style.width=$(this).width()+1+"px";
      ifShim.style.height=$(this).find("> li").size()*23+20+"px";
			ifShim.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)";
		  ifShim.style.zIndex="0";
    $(this).prepend(ifShim);
      $(this).css("zIndex","99");
		}
	});
};

$.fn.removeShim = function() {
  return this.each(function(){
	  if (document.all) $("iframe", this).remove();
	});
};
;
// $Id$

/**
 * @file
 * OM Maximenu script
 *
 * @author: Daniel Honrade http://drupal.org/user/351112
 *
 */
  
$(document).ready(function(){
	//back to top scroll function. Any link with a hash (#) will scroll to that id on the page
	$('.om-maximenu li.om-leaf a').addClass('om-autoscroll');

	$('a.om-autoscroll[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var $target = $(this.hash);
			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
			if ($target.length) {
			  var targetOffset = $target.offset().top;
				  //targetOffset = targetOffset - 90;
				$('html,body').animate({scrollTop: targetOffset - 0}, 500);
				return false;
			}
		}
	});
	// stay open
	$('.om-maximenu-open input').each(function() {
		//alert($(this).attr('checked'));
		// jQuery 1.7 has changed it's value checking for checkbox to checked instead of true
	  if(($(this).attr('checked') == true) || ($(this).attr('checked') == 'checked')) {
	    $(this).parent().parent().addClass('open');
	    $(this).parent().parent().parent().addClass('open');			
	    $(this).parent().parent().removeClass('closed');
	  }
	  else {
	    $(this).parent().parent().removeClass('open');
	    $(this).parent().parent().parent().removeClass('open');			
	    $(this).parent().parent().addClass('closed');
	  }
	});
	$('.om-maximenu-open input').click(function() {
		//alert($(this).attr('checked'));
	  if(($(this).attr('checked') == true) || ($(this).attr('checked') == 'checked')) {
	    $(this).parent().parent().addClass('open');
	    $(this).parent().parent().parent().addClass('open');			
	    $(this).parent().parent().removeClass('closed');
	  }
	  else {
	    $(this).parent().parent().removeClass('open');
	    $(this).parent().parent().parent().removeClass('open');			
	    $(this).parent().parent().addClass('closed');
	  }
	});	
	// image hover replacement
  $('.om-maximenu img.om-hover').hover(function () {
    var src = $(this).attr('src');
    var altsrc = src.replace(/([^.]+)(\.[^.]+$)/, '$1_hover$2');
    $(this).attr({ src: altsrc, altsrc: src });
  },function () {
    var src = $(this).attr('src');
    var altsrc = src.replace(/_hover/, '');
    $(this).attr({ src: altsrc, altsrc: src });
  });
});	
;
/*
 * 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);;
// $Id: views_slideshow.js,v 1.1.2.1.2.39 2010/07/01 03:29:08 redndahead Exp $

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowSingleFramePause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(slide).find('img').attr('src') + '" /></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.2.2.35 2010/07/01 03:29:08 redndahead Exp $

/**
 * @file
 * A simple jQuery ThumbnailHover Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
        
        var currId = (currId=$(current).attr('id')).substring(currId.lastIndexOf('_')+1)
        var nextId = (nextId=$(next).attr('id')).substring(nextId.lastIndexOf('_')+1)
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + currId).removeClass('activeSlide');
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + nextId).addClass('activeSlide');
      },
      pagerEvent: (settings.pager_event == 'hoverIntent') ? null : settings.pager_event,
      prev:(settings.controls > 0)?'#views_slideshow_thumbnailhover_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_thumbnailhover_next_' + settings.vss_id:null,
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    };

    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.view_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowThumbnailHoverPause(settings);
      });
    }
    
    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }

    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowThumbnailHoverIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowThumbnailHoverPause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id).show();
    
    if (settings.pager_event == 'hoverIntent') {
      $('#views_slideshow_thumbnailhover_breakout_teasers_' + settings.vss_id + ' .views_slideshow_thumbnailhover_div_breakout_teaser').each(function(i,obj) {
        $(obj).hoverIntent(
          function() {
            $('.views_slideshow_thumbnailhover_div_breakout_teaser').removeClass('activeSlide');
            var id = $(this).attr('id');
            id = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(id);
            $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + id).addClass('activeSlide');
            $(settings.targetId).cycle('stop');
          },
          function() {
            var id = $(this).attr('id');
            settings.opts.startingSlide = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(settings.opts);
          }
        );
      });
    }

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_thumbnailhover_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id).click(function(e) {
        if (settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else {
          viewsSlideshowThumbnailHoverPause(settings);
        }
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowThumbnailHoverResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_thumbnailhover_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowThumbnailHoverIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}
;
// $Id: jquery.autofill.js,v 1.1.4.1 2009/08/05 18:55:54 add1sun Exp $

// Auto-Fill Plugin
// Written by Joe Sak http://www.joesak.com/2008/11/19/a-jquery-function-to-auto-fill-input-fields-and-clear-them-on-click/
(function($){
  $.fn.autofill = function(options){
    var defaults = {
      value:'',
      defaultTextColor:"#ccc",
      activeTextColor:"#000",
      password: false
    };
    var options = $.extend(defaults,options);
    return this.each(function(){
      var obj=$(this);
      obj.css({color:options.defaultTextColor})
        .val(options.value)
        .focus(function(){
          if(obj.val()==options.value){
            obj.val("").css({color:options.activeTextColor});
            if (options.password && obj.attr('type') == 'text') {
              obj.attr('type', 'password');
            }
          }
        })
        .blur(function(){
          if(obj.val()==""){
            obj.css({color:options.defaultTextColor}).val(options.value);
            if (options.password && obj.attr('type') == 'password') {
              obj.attr('type', 'text');
            }
          }
        });
    });
  };
})(jQuery);;
$(function() {
    var pathname = window.location;
    var myRegExp = /field_search_index/;
    var string1 = new String(pathname);
	if (! string1.match(myRegExp)) {
	  $('div.view-hideme').hide();
	  $('input#edit-submit-Directory').one('click', function(e){
		$('div.view-hideme').slideDown();
	  });
	}	  
});;
// $Id: javascript.js,v 1.1.4.2 2009/08/12 23:29:56 add1sun Exp $

// Prefill the search box with Search... text.
$(document).ready(function(){
  $('#search input:text').autofill({
    value: "Search..."
  });
});

// expand/collapse menu
$(document).ready(function(){

	$('.sidebar .item-list ul').hide();
	$('.collapse').hide();
	
	$('.expand').click( function(){
		$(this).parent('div').children('ul').slideToggle("fast");
		$(this).parent('div').children('.expand').hide();
		$(this).parent('div').children('.collapse').show();
	});
	
	$('.collapse').click( function(){
		$(this).parent('div').children('ul').slideToggle("fast");
		$(this).parent('div').children('.expand').show();
		$(this).parent('div').children('.collapse').hide();
	});
		
});;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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("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}})());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}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) OurType, 2006. All rights reserved. Parry is a design by Artur
 * Schmal.
 * 
 * Trademark:
 * Parry is a trademark of OurType.
 * 
 * Manufacturer:
 * OurType
 * 
 * Designer:
 * Artur Schmal
 * 
 * Vendor URL:
 * www.ourtype.be
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Parry","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 4 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"3","bbox":"-14 -349 453 79","underline-thickness":"7.2","underline-position":"-39.6","stemh":"25","stemv":"29","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":78},"\u00d0":{"d":"20,-120r0,-21r38,0r0,-91v-17,0,-33,-3,-38,-6r0,-15r116,0v75,0,128,35,128,125v0,86,-53,128,-128,128r-116,0r0,-15v5,-3,21,-6,38,-6r0,-99r-38,0xm150,-120r-63,0r0,99r49,0v60,0,96,-37,96,-107v0,-71,-37,-104,-96,-104r-49,0r0,91r63,0r0,21","w":279,"k":{",":24,".":24,"\u2026":24}},"\u00f0":{"d":"79,-211r0,-17r69,0r0,-4r-3,-41r34,0r-3,41r0,4r29,0r0,17r-29,0r0,188v10,-3,30,-1,39,2r0,15v-7,3,-22,6,-39,6v-14,0,-22,-2,-28,-3r0,-24v-9,18,-29,30,-58,30v-48,0,-76,-36,-76,-86v0,-65,40,-100,89,-100v21,0,36,7,45,17r0,-45r-69,0xm98,-21v24,0,41,-7,50,-20r0,-108v-11,-8,-27,-13,-43,-13v-38,0,-61,30,-61,75v0,45,22,66,54,66","w":215},"\u00dd":{"d":"75,0r0,-17v6,-3,23,-6,40,-6r0,-76r-81,-133v-15,0,-29,-3,-34,-6r0,-15r103,0r0,15v-5,3,-20,6,-36,6r69,111r69,-111v-16,0,-31,-3,-36,-6r0,-15r88,0r0,15v-5,3,-16,5,-29,6r-83,133r0,76v17,0,35,3,41,6r0,17r-111,0xm112,-279r-8,-8r41,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-5,13,-16,20","w":257,"k":{"\u00ad":17,"\u2013":17,"\u2014":17,",":43,".":43,"\u2026":43,"\/":22,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"u":7,"\u00fa":7,"\u00f9":7,"\u00fb":7,"\u00fc":7,"C":9,"G":9,"\u00c7":9,"O":4,"Q":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u00ab":12,"\u00bb":12,"a":22,"\u00e1":22,"\u00e0":22,"\u00e2":22,"\u00e4":22,"\u00e3":22,"\u00e5":22,"\u00e6":22,"\u00f0":17,"c":17,"d":17,"e":17,"o":17,"q":17,"\u00e7":17,"\u00e9":17,"\u00e8":17,"\u00ea":17,"\u00eb":17,"\u00f3":17,"\u00f2":17,"\u00f4":17,"\u00f6":17,"\u00f5":17,"g":22,"s":24}},"\u00fd":{"d":"34,79v-20,0,-33,-12,-33,-27v0,-13,10,-21,20,-21v11,0,20,7,20,20v0,8,-6,14,-6,14v14,-1,25,-18,34,-38r14,-32r-64,-153v-11,-1,-19,-3,-23,-5r0,-14r83,0r0,14v-5,3,-16,5,-30,5r49,118r47,-118v-15,0,-26,-2,-31,-5r0,-14r77,0r0,14v-4,2,-12,4,-23,5r-78,183v-14,34,-29,54,-56,54xm78,-203r-8,-8r41,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-5,13,-16,20","w":192,"k":{",":43,".":43,"\u2026":43}},"\u00de":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,25r56,0v55,0,88,20,88,72v0,51,-38,83,-103,83v-19,0,-32,-2,-41,-4r0,35r6,0v17,0,37,3,43,6r0,15r-116,0xm142,-186r-55,0r0,109v8,3,18,4,40,4v46,0,73,-22,73,-61v0,-34,-19,-52,-58,-52","w":233},"\u00fe":{"d":"6,79r0,-14v5,-3,19,-6,36,-6r0,-309v-10,3,-31,1,-39,-2r0,-15v7,-3,22,-6,39,-6v14,0,23,2,28,3r0,120v8,-18,27,-33,59,-33v45,0,75,36,75,86v0,63,-34,100,-86,100v-21,0,-41,-7,-48,-17r0,73r3,0v17,0,36,3,41,6r0,14r-108,0xm120,-159v-23,0,-41,11,-50,23r0,103v11,9,28,15,44,15v40,0,60,-29,60,-75v0,-46,-22,-66,-54,-66"},"\u00bd":{"d":"195,0r0,-14r60,-38v24,-15,42,-25,42,-45v0,-17,-16,-27,-41,-27v-14,0,-23,3,-30,6v3,1,10,6,10,13v0,10,-8,15,-17,15v-11,0,-16,-7,-16,-17v0,-15,27,-35,60,-35v40,0,60,18,60,44v0,31,-30,46,-63,63r-27,14r83,0v1,-10,4,-26,10,-32r14,0r0,53r-145,0xm35,-113r0,-12v4,-3,23,-6,37,-6r10,0r0,-100v-9,7,-26,15,-45,12r-7,-19v25,-1,52,-10,64,-15r13,0r0,122r4,0v14,0,32,3,38,6r0,12r-114,0xm120,3r-17,-9r137,-256r17,9","w":360},"\u00b9":{"d":"35,-113r0,-12v4,-3,23,-6,37,-6r10,0r0,-100v-9,7,-26,15,-45,12r-7,-19v25,-1,52,-10,64,-15r13,0r0,122r4,0v14,0,32,3,38,6r0,12r-114,0","w":178},"\u00b3":{"d":"86,-110v-33,0,-56,-14,-56,-29v0,-10,5,-17,16,-17v10,0,17,6,17,14v0,4,-3,8,-7,11v7,1,17,3,28,3v28,0,47,-9,47,-24v0,-18,-17,-24,-52,-24r-20,0r0,-18r17,0v37,0,51,-10,51,-24v0,-15,-16,-20,-40,-20v-11,0,-20,2,-27,5v4,3,8,7,8,11v0,8,-6,14,-17,14v-12,0,-16,-8,-16,-16v0,-15,26,-31,58,-31v32,0,60,12,60,36v0,14,-12,27,-29,32v21,4,34,17,34,35v0,27,-32,42,-72,42","w":178},"\u00b2":{"d":"14,-113r0,-14r59,-38v24,-16,42,-25,42,-45v0,-17,-15,-26,-40,-26v-14,0,-23,2,-30,5v3,1,10,6,10,13v0,10,-8,15,-17,15v-11,0,-17,-6,-17,-16v0,-15,27,-36,61,-36v39,0,60,19,60,44v0,31,-29,46,-63,63r-28,14r84,0v1,-10,4,-26,10,-32r14,0r0,53r-145,0","w":178},"\u00a6":{"d":"39,-146r0,-135r20,0r0,135r-20,0xm39,79r0,-135r20,0r0,135r-20,0","w":98},"\u00d7":{"d":"53,-58r-13,-14r54,-54r-54,-55r13,-14r55,55r55,-55r14,14r-55,55r55,54r-14,14r-55,-55"},"!":{"d":"44,-75v-4,-17,-9,-83,-9,-116r0,-62r31,0r0,62v0,33,-4,99,-8,116r-14,0xm51,3v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21","w":101},"\"":{"d":"79,-186v-3,-11,-9,-37,-9,-57r0,-10r28,0r0,10v0,20,-5,46,-8,57r-11,0xm27,-186v-3,-11,-9,-37,-9,-57r0,-10r28,0r0,10v0,20,-5,46,-8,57r-11,0","w":113},"#":{"d":"25,-162r0,-19r37,0r7,-75r21,3r-7,72r60,0r7,-75r22,3r-7,72r32,0r0,19r-34,0r-7,71r35,0r0,19r-37,0r-6,75r-21,-3r6,-72r-60,0r-7,75r-21,-3r6,-72r-31,0r0,-19r33,0r7,-71r-35,0xm81,-162r-6,71r60,0r6,-71r-60,0"},"$":{"d":"25,3r-2,-96r14,0v7,13,14,35,15,51v12,14,30,23,52,25r0,-98r-11,-5v-35,-13,-62,-27,-62,-67v0,-41,31,-69,73,-70r0,-24r14,0r0,24v17,2,30,9,40,20v3,-8,6,-15,12,-20r11,0r0,92r-14,0v-9,-14,-12,-40,-12,-56v-8,-8,-20,-14,-37,-15r0,93r16,5v36,13,61,29,61,70v0,45,-33,71,-77,72r0,30r-14,0r0,-30v-22,-3,-42,-12,-54,-26v-3,9,-7,19,-13,25r-12,0xm120,-110r-2,0r0,93v27,-2,47,-19,47,-45v0,-24,-13,-36,-45,-48xm62,-194v0,27,17,36,42,45r0,-87v-27,2,-42,19,-42,42"},"%":{"d":"90,-110v-46,0,-72,-32,-72,-74v0,-42,28,-72,72,-72v46,0,72,30,72,72v0,42,-28,74,-72,74xm120,3r-17,-9r137,-256r17,9xm271,3v-46,0,-71,-33,-71,-75v0,-42,27,-71,71,-71v46,0,72,29,72,71v0,42,-28,75,-72,75xm90,-128v32,0,46,-24,46,-56v0,-31,-14,-54,-46,-54v-32,0,-46,23,-46,54v0,31,14,56,46,56xm271,-15v32,0,47,-25,47,-57v0,-31,-15,-53,-47,-53v-32,0,-46,22,-46,53v0,31,14,57,46,57","w":360},"&":{"d":"110,4v-54,0,-93,-27,-93,-72v0,-43,31,-64,58,-74v-15,-19,-23,-35,-23,-53v0,-41,25,-62,66,-62v34,0,54,19,54,49v0,33,-31,52,-62,66r4,4r76,82r0,1v11,-17,16,-38,15,-59v-15,0,-30,-3,-35,-6r0,-14r99,0r0,14v-6,3,-22,6,-38,6r-2,0v-1,27,-8,53,-23,74v15,14,29,25,54,25v6,0,15,-2,20,-5r-3,17v-7,6,-18,7,-28,7v-25,0,-42,-7,-62,-25v-19,15,-45,25,-77,25xm114,-15v24,0,43,-8,58,-20v-1,-1,-2,-3,-3,-4r-75,-81v-3,-3,-5,-6,-8,-9v-24,12,-40,28,-40,57v0,36,29,57,68,57xm80,-198v0,19,6,30,18,44v19,-10,48,-27,48,-54v0,-20,-10,-30,-31,-30v-24,0,-35,16,-35,40","w":286},"'":{"d":"27,-186v-3,-11,-9,-37,-9,-57r0,-10r28,0r0,10v0,20,-5,46,-8,57r-11,0","w":64},"(":{"d":"77,45v-32,-22,-67,-68,-67,-153v0,-84,35,-131,67,-154r17,6v-35,30,-57,76,-57,148v0,72,22,117,57,147","w":95,"k":{"j":-12}},")":{"d":"18,45r-17,-6v35,-30,58,-75,58,-147v0,-72,-23,-118,-58,-148r17,-6v32,23,68,70,68,154v0,85,-36,131,-68,153","w":95},"*":{"d":"127,-145v-10,-6,-41,-33,-41,-33r-2,-1r0,2v0,0,9,41,9,52v0,8,-3,15,-11,15v-9,0,-12,-7,-12,-15v0,-11,9,-52,9,-52r0,-2r-2,1v0,0,-32,27,-41,33v-6,4,-15,5,-19,-2v-4,-8,2,-14,8,-18v10,-6,49,-18,49,-18r2,-1r-2,-1v0,0,-39,-14,-49,-19v-6,-4,-12,-10,-8,-17v4,-8,13,-7,19,-3v9,6,41,34,41,34r2,1r0,-2v0,0,-9,-41,-9,-52v0,-7,3,-16,12,-16v8,0,11,9,11,16v0,11,-9,52,-9,52r0,2r2,-1v0,0,31,-28,41,-34v6,-4,15,-5,19,3v4,7,-2,13,-8,17v-10,5,-49,19,-49,19r-2,1r2,1v0,0,39,12,49,18v6,4,12,10,8,18v-4,7,-13,6,-19,2","w":163,"k":{",":17,".":17,"\u2026":17}},"+":{"d":"34,-117r0,-19r64,0r0,-78r20,0r0,78r65,0r0,19r-65,0r0,78r-20,0r0,-78r-64,0"},",":{"d":"38,48r-11,-6v15,-10,24,-28,24,-41v-13,0,-20,-8,-20,-19v0,-11,8,-21,21,-21v13,0,21,9,21,26v0,30,-18,54,-35,61","w":101,"k":{"*":17,"\u00aa":50,"\u00ba":50,"\u201c":43,"\u2018":43,"\u201d":43,"\u2019":43}},"-":{"d":"14,-100r0,-21r104,0r0,21r-104,0","w":132},"\u00ad":{"d":"14,-100r0,-21r104,0r0,21r-104,0","w":132,"k":{"T":12,"V":13,"\u00dd":17,"Y":17,"A":13,"\u00c4":13,"\u00c5":13,"\u00c6":13,"\u00c0":13,"\u00c3":13,"X":13}},".":{"d":"51,3v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21","w":101,"k":{"*":17,"\u00aa":50,"\u00ba":50,"\u201c":43,"\u2018":43,"\u201d":43,"\u2019":43}},"\/":{"d":"28,3r-17,-9r110,-256r17,9","w":149},"0":{"d":"108,4v-55,0,-87,-46,-87,-132v0,-79,35,-128,87,-128v56,0,87,45,87,128v0,77,-35,132,-87,132xm108,-17v42,0,58,-51,58,-111v0,-60,-14,-107,-58,-107v-42,0,-57,47,-57,107v0,59,13,111,57,111"},"1":{"d":"42,0r0,-15v6,-3,25,-6,42,-6r14,0r0,-201v-7,7,-32,17,-56,14r-7,-16v30,-3,65,-18,79,-29r14,0r0,232r14,0v17,0,36,3,42,6r0,15r-142,0"},"2":{"d":"14,0r0,-15r72,-72v30,-30,53,-59,53,-96v0,-31,-17,-52,-52,-52v-22,0,-34,9,-43,16v7,3,15,13,15,24v0,14,-10,19,-20,19v-13,0,-19,-9,-19,-22v0,-30,33,-58,73,-58v46,0,76,27,76,73v0,48,-41,86,-80,121r-41,37r112,0v0,-16,5,-44,13,-57r15,0r0,82r-174,0"},"3":{"d":"104,4v-41,-1,-70,-18,-70,-48v0,-13,8,-24,21,-24v10,0,20,6,20,20v0,11,-9,21,-16,24v11,4,22,7,41,7v40,0,62,-18,62,-49v0,-39,-24,-52,-66,-52r-24,0r0,-23r17,0v45,0,66,-22,66,-52v0,-31,-20,-42,-50,-42v-18,0,-29,4,-40,11v7,3,15,13,15,24v0,14,-10,20,-20,20v-13,0,-19,-10,-19,-23v0,-30,32,-53,72,-53v39,0,71,18,71,62v0,35,-27,56,-53,62v37,4,60,26,60,64v0,51,-48,73,-87,72"},"4":{"d":"89,0r0,-15v6,-3,21,-6,38,-6r0,-41r-112,0r0,-17r124,-174r17,0r0,170r42,0r-4,21r-38,0r0,41v17,0,32,3,38,6r0,15r-105,0xm127,-204r-86,121r86,0r0,-121"},"5":{"d":"98,4v-42,0,-75,-18,-75,-50v0,-13,8,-24,21,-24v10,0,19,5,19,19v0,12,-8,21,-15,24v10,5,20,12,46,12v41,0,62,-29,62,-64v0,-39,-22,-59,-67,-59v-17,0,-31,3,-44,7r-4,0r5,-122r127,0r0,25r-106,0r-4,75v13,-3,19,-5,34,-5v58,0,89,32,89,78v0,54,-43,84,-88,84"},"6":{"d":"104,4v-58,0,-81,-46,-81,-109v0,-100,42,-151,101,-151v32,0,57,19,57,44v0,15,-8,26,-21,26v-10,0,-19,-5,-19,-19v0,-12,8,-21,15,-24v-7,-4,-17,-7,-31,-7v-43,0,-67,35,-72,107v10,-17,32,-30,60,-30v45,0,74,31,74,80v0,42,-28,83,-83,83xm103,-135v-24,0,-42,11,-51,24r0,10v0,58,18,86,52,86v38,0,54,-27,54,-62v0,-42,-23,-58,-55,-58"},"7":{"d":"27,-228r0,-25r163,0r0,25v-50,55,-106,131,-106,204v0,7,2,17,3,24r-28,0v-3,-6,-6,-14,-6,-25v0,-71,72,-162,114,-203r-140,0"},"8":{"d":"104,4v-46,0,-80,-19,-80,-64v0,-33,21,-54,46,-67v-24,-13,-40,-31,-40,-60v0,-42,34,-69,80,-69v44,0,73,23,73,61v0,31,-25,53,-47,63v31,13,52,32,52,66v0,45,-36,70,-84,70xm91,-118r0,0v-21,9,-40,27,-40,56v0,31,19,47,53,47v35,0,55,-17,55,-45v0,-30,-21,-41,-48,-51xm59,-191v0,27,22,38,44,46r13,5v19,-9,40,-28,40,-55v0,-28,-20,-41,-48,-41v-32,0,-49,18,-49,45"},"9":{"d":"90,4v-32,0,-58,-18,-58,-43v0,-15,8,-27,21,-27v10,0,20,6,20,20v0,11,-8,20,-15,23v7,4,17,8,31,8v42,0,67,-36,72,-108v-10,16,-32,30,-60,30v-45,0,-74,-31,-74,-80v0,-42,28,-83,83,-83v58,0,81,47,81,110v0,100,-42,150,-101,150xm111,-117v24,0,42,-11,51,-24r0,-9v0,-58,-19,-86,-52,-86v-38,0,-54,27,-54,62v0,42,23,57,55,57"},":":{"d":"51,-138v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21xm51,3v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21","w":101},";":{"d":"51,-138v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21xm38,48r-11,-6v15,-10,24,-28,24,-41v-13,0,-20,-8,-20,-19v0,-11,8,-21,21,-21v13,0,21,9,21,26v0,30,-18,54,-35,61","w":101},"<":{"d":"169,-39r-135,-79r0,-17r135,-79r10,19r-120,68r120,69"},"=":{"d":"34,-148r0,-19r149,0r0,19r-149,0xm34,-84r0,-20r149,0r0,20r-149,0"},">":{"d":"48,-39r-10,-19r120,-69r-120,-68r10,-19r135,79r0,17"},"?":{"d":"62,-70v-13,-7,-21,-21,-21,-35v0,-20,15,-30,32,-43r13,-10v15,-12,24,-22,24,-46v0,-23,-16,-32,-40,-32v-10,0,-17,1,-22,4v7,4,12,12,12,22v0,11,-7,20,-19,20v-10,0,-18,-8,-18,-21v0,-28,29,-45,57,-45v39,0,62,20,62,53v0,28,-20,46,-41,60r-12,8v-10,7,-27,15,-27,30v0,14,10,22,17,29xm68,3v-13,0,-22,-8,-22,-21v0,-13,9,-21,22,-21v13,0,21,8,21,21v0,13,-8,21,-21,21","w":156},"@":{"d":"145,3v-32,0,-56,-17,-56,-48v0,-37,32,-53,83,-53v12,0,24,1,32,4r1,-27v0,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v44,0,67,22,66,64v0,0,-1,66,-1,81v0,17,5,23,18,23v26,0,48,-36,48,-100v0,-76,-48,-117,-125,-117v-77,0,-135,52,-135,139v0,87,42,141,131,141v34,0,45,-6,56,-11r-1,17v-11,10,-34,17,-62,17v-97,0,-155,-67,-155,-164v0,-91,61,-161,166,-161v97,0,155,52,155,139v0,75,-38,121,-83,121v-21,0,-37,-8,-41,-26v-10,15,-32,26,-59,26xm152,-21v21,0,43,-8,52,-18r0,-39v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,34,27","w":329},"A":{"d":"-1,0r0,-15v5,-3,18,-5,32,-6r90,-232r25,0r84,232v15,1,28,3,33,6r0,15r-98,0r0,-15v5,-3,18,-6,33,-6r-20,-56r-102,0r-21,56r1,0v17,0,32,3,38,6r0,15r-95,0xm128,-215r-44,118r87,0","w":261},"B":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r116,0v51,0,89,12,89,63v0,30,-18,48,-41,56v21,5,54,21,54,64v0,45,-32,70,-90,70r-128,0xm207,-72v0,-33,-22,-47,-57,-48r-63,0r0,99r59,0v37,0,61,-16,61,-51xm135,-232r-48,0r0,91r48,0v35,0,59,-12,59,-47v0,-34,-24,-44,-59,-44","w":247},"C":{"d":"128,4v-66,0,-111,-45,-111,-131v0,-76,45,-130,111,-130v28,0,51,10,65,24v3,-9,8,-18,14,-24r11,0r0,94r-14,0v-7,-12,-11,-34,-12,-50v-12,-13,-32,-22,-57,-22v-53,0,-86,42,-86,108v0,69,28,107,83,107v41,0,67,-28,80,-62r10,12v-8,41,-42,74,-94,74","w":240},"D":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r116,0v75,0,128,35,128,125v0,86,-53,128,-128,128r-116,0xm136,-232r-49,0r0,211r49,0v60,0,96,-37,96,-107v0,-71,-37,-104,-96,-104","w":279,"k":{",":24,".":24,"\u2026":24}},"E":{"d":"20,0r0,-15v5,-3,18,-6,35,-6r3,0r0,-211v-17,0,-33,-3,-38,-6r0,-15r208,0r0,79r-16,0v-9,-14,-12,-43,-12,-58r-113,0r0,96r61,0v0,-16,5,-32,8,-37r16,0r0,93r-16,0v-3,-5,-8,-20,-8,-37r-61,0r0,96r118,0v0,-15,5,-47,13,-61r15,0r0,82r-213,0","w":248},"F":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r208,0r0,79r-16,0v-9,-14,-12,-43,-12,-58r-113,0r0,97r62,0v0,-17,6,-33,9,-38r15,0r0,96r-15,0v-3,-5,-9,-21,-9,-38r-62,0r0,94r4,0v17,0,39,3,45,6r0,15r-116,0","w":229,"k":{",":27,".":27,"\u2026":27,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\/":20,"m":-7,"n":-7,"p":-7,"r":-7,"\u00f1":-7,"u":-13,"\u00fa":-13,"\u00f9":-13,"\u00fb":-13,"\u00fc":-13}},"G":{"d":"127,4v-63,0,-110,-48,-110,-131v0,-76,45,-130,117,-130v30,0,52,10,67,24v3,-9,6,-19,13,-24r11,0r0,94r-14,0v-7,-12,-11,-34,-12,-50v-12,-13,-33,-22,-61,-22v-55,0,-89,42,-89,108v0,69,33,107,83,107v27,0,48,-10,63,-27r0,-39v-15,0,-28,-2,-33,-5r0,-16r97,0r0,16v-5,3,-19,5,-35,5r0,90r-16,0v-4,-7,-7,-16,-10,-26v-17,17,-41,26,-71,26","w":261},"H":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,91r135,0r0,-91v-17,0,-33,-3,-38,-6r0,-15r106,0r0,15v-6,3,-21,6,-38,6r0,211v17,0,32,3,38,6r0,15r-106,0r0,-15v5,-3,21,-6,38,-6r0,-99r-135,0r0,99v17,0,32,3,38,6r0,15r-105,0","w":309},"I":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,211v17,0,32,3,38,6r0,15r-105,0","w":144},"J":{"d":"66,-232v-17,0,-32,-3,-38,-6r0,-15r107,0r0,15v-6,3,-21,6,-38,6r0,173v0,56,-33,73,-65,73v-18,0,-35,-11,-35,-29v0,-13,8,-23,21,-23v13,0,20,10,20,23v0,11,-6,15,-6,15v20,0,36,-16,36,-58r0,-174r-2,0","w":146},"K":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,104r125,-104v-16,0,-30,-3,-35,-6r0,-15r96,0r0,15v-5,3,-17,5,-30,6r-104,86r110,125v14,1,27,3,32,6r0,15r-105,0r0,-15v5,-3,20,-6,36,-6r-95,-108r-30,26r0,82v17,0,32,3,38,6r0,15r-105,0","w":282,"k":{"\u00ad":26,"\u2013":26,"\u2014":26,"u":9,"\u00fa":9,"\u00f9":9,"\u00fb":9,"\u00fc":9,"C":4,"G":4,"\u00c7":4,"O":4,"Q":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u00fd":13,"v":13,"w":13,"y":13,"\u00ff":13}},"L":{"d":"20,0r0,-15v5,-3,18,-6,35,-6r3,0r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,211r116,0v0,-15,3,-47,12,-61r16,0r0,82r-211,0","w":236,"k":{"T":23,"V":22,"W":22,"\u00dd":19,"Y":19,"*":35,"\\":24,"\u201c":43,"\u2018":43,"\u201d":43,"\u2019":43}},"M":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r70,0r84,204r82,-204r67,0r0,15v-5,3,-21,6,-38,6r0,211v17,0,33,3,38,6r0,15r-105,0r0,-15v6,-3,21,-6,38,-6r0,-176r-80,200r-13,0r-81,-197r0,173v17,0,32,3,38,6r0,15r-100,0","w":343},"N":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r66,0r139,198r0,-177v-17,0,-33,-3,-38,-6r0,-15r100,0r0,15v-6,3,-21,6,-38,6r0,235r-21,0r-146,-207r0,183v17,0,32,3,38,6r0,15r-100,0","w":298},"O":{"d":"134,4v-73,0,-117,-52,-117,-131v0,-78,44,-130,117,-130v73,0,116,52,116,130v0,79,-43,131,-116,131xm134,-18v54,0,84,-41,84,-109v0,-67,-30,-108,-84,-108v-53,0,-85,41,-85,108v0,68,32,109,85,109","w":265,"k":{",":22,".":22,"\u2026":22}},"P":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r123,0v55,0,88,20,88,72v0,51,-38,83,-103,83v-19,0,-32,-2,-41,-4r0,81r6,0v17,0,37,3,43,6r0,15r-116,0xm142,-232r-55,0r0,108v8,3,18,4,40,4v46,0,73,-21,73,-60v0,-34,-19,-52,-58,-52","w":233,"k":{",":43,".":43,"\u2026":43,"A":16,"\u00c4":16,"\u00c5":16,"\u00c6":16,"\u00c0":16,"\u00c3":16,"\/":17,"u":-12,"\u00fa":-12,"\u00f9":-12,"\u00fb":-12,"\u00fc":-12}},"Q":{"d":"134,4v-73,0,-117,-52,-117,-131v0,-78,44,-130,117,-130v73,0,116,52,116,130v0,66,-30,113,-83,127v14,1,26,10,33,25r4,10v6,15,14,21,27,21v7,0,13,-1,18,-4r-3,17v-7,6,-15,10,-29,10v-24,0,-38,-19,-44,-38r-4,-13v-5,-15,-14,-24,-34,-24r-1,0xm134,-18v54,0,84,-41,84,-109v0,-67,-30,-108,-84,-108v-53,0,-85,41,-85,108v0,68,32,109,85,109","w":265,"k":{",":22,".":22,"\u2026":22}},"R":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r119,0v53,0,89,16,89,66v0,35,-21,60,-61,69v16,4,36,15,36,50r0,16v0,23,6,34,30,34v7,0,15,-2,20,-5r-3,17v-5,7,-16,10,-29,10v-30,0,-48,-14,-48,-56r0,-18v0,-30,-15,-45,-51,-45r-35,0r0,94r6,0v17,0,37,3,43,6r0,15r-116,0xm138,-232r-51,0r0,97r48,0v39,0,62,-17,62,-52v0,-33,-21,-45,-59,-45","w":257},"S":{"d":"24,3r-3,-96r14,0v7,13,14,35,15,51v14,16,37,25,63,25v31,0,54,-17,54,-45v0,-24,-13,-38,-45,-48r-32,-10v-36,-11,-62,-27,-62,-67v0,-42,29,-70,73,-70v25,0,43,8,56,23v3,-9,6,-18,13,-23r11,0r0,92r-14,0v-8,-13,-12,-38,-12,-54v-10,-11,-24,-17,-47,-17v-31,0,-49,17,-49,42v0,28,18,38,45,46r32,10v37,11,62,29,62,70v0,45,-35,72,-80,72v-27,0,-54,-9,-69,-27v-3,10,-8,20,-14,26r-11,0","w":220},"T":{"d":"8,-174r0,-79r221,0r0,79r-15,0v-9,-14,-13,-43,-13,-58r0,-3r-67,0r0,214r2,0v17,0,33,3,38,6r0,15r-111,0r0,-15v5,-3,21,-6,38,-6r3,0r0,-214r-67,0r0,3v0,15,-4,44,-13,58r-16,0","w":237,"k":{"\u00ad":12,"\u2013":12,"\u2014":12,",":43,".":43,"\u2026":43,"A":17,"\u00c4":17,"\u00c5":17,"\u00c6":17,"\u00c0":17,"\u00c3":17,"\/":12,":":12,";":12,"\u00ab":4,"\u00bb":4,"a":13,"\u00e1":13,"\u00e0":13,"\u00e2":13,"\u00e4":13,"\u00e3":13,"\u00e5":13,"\u00e6":13,"\u00f0":9,"c":9,"d":9,"e":9,"o":9,"q":9,"\u00e7":9,"\u00e9":9,"\u00e8":9,"\u00ea":9,"\u00eb":9,"\u00f3":9,"\u00f2":9,"\u00f4":9,"\u00f6":9,"\u00f5":9,"g":9,"s":12,"z":7}},"U":{"d":"156,4v-71,0,-98,-38,-98,-102r0,-134v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,135v0,55,25,77,71,77v48,0,70,-29,70,-81r0,-131v-17,0,-32,-3,-38,-6r0,-15r100,0r0,15v-6,3,-21,6,-38,6r0,131v0,56,-29,105,-96,105","w":307,"k":{",":36,".":36,"\u2026":36,"A":17,"\u00c4":17,"\u00c5":17,"\u00c6":17,"\u00c0":17,"\u00c3":17}},"V":{"d":"210,-232v-17,0,-33,-3,-38,-6r0,-15r97,0r0,15v-5,3,-18,6,-33,6r-93,235r-19,0r-87,-235v-15,0,-29,-3,-34,-6r0,-15r101,0r0,15v-6,3,-20,6,-36,6r71,192r74,-192r-3,0","w":271,"k":{"\u00ad":13,"\u2013":13,"\u2014":13,",":59,".":59,"\u2026":59,"A":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u00c0":32,"\u00c3":32,"m":17,"n":17,"p":17,"r":17,"\u00f1":17,"u":12,"\u00fa":12,"\u00f9":12,"\u00fb":12,"\u00fc":12,"a":24,"\u00e1":24,"\u00e0":24,"\u00e2":24,"\u00e4":24,"\u00e3":24,"\u00e5":24,"\u00e6":24,"\u00f0":24,"c":24,"d":24,"e":24,"o":24,"q":24,"\u00e7":24,"\u00e9":24,"\u00e8":24,"\u00ea":24,"\u00eb":24,"\u00f3":24,"\u00f2":24,"\u00f4":24,"\u00f6":24,"\u00f5":24,"g":24,"s":27}},"W":{"d":"338,-232v-17,0,-32,-3,-38,-6r0,-15r98,0r0,15v-5,3,-18,5,-32,6r-83,235r-21,0r-64,-204r-66,204r-21,0r-75,-235v-15,0,-28,-3,-33,-6r0,-15r102,0r0,15v-6,3,-20,6,-37,6r-1,0r59,185r67,-209r21,0r62,212r67,-188r-5,0","w":400,"k":{"\u00ad":13,"\u2013":13,"\u2014":13,",":59,".":59,"\u2026":59,"A":27,"\u00c4":27,"\u00c5":27,"\u00c6":27,"\u00c0":27,"\u00c3":27,"m":14,"n":14,"p":14,"r":14,"\u00f1":14,"u":9,"\u00fa":9,"\u00f9":9,"\u00fb":9,"\u00fc":9,"a":24,"\u00e1":24,"\u00e0":24,"\u00e2":24,"\u00e4":24,"\u00e3":24,"\u00e5":24,"\u00e6":24,"\u00f0":24,"c":24,"d":24,"e":24,"o":24,"q":24,"\u00e7":24,"\u00e9":24,"\u00e8":24,"\u00ea":24,"\u00eb":24,"\u00f3":24,"\u00f2":24,"\u00f4":24,"\u00f6":24,"\u00f5":24,"g":24,"s":26}},"X":{"d":"3,0r0,-17v5,-3,17,-5,32,-6r79,-100r-76,-109v-16,0,-30,-3,-35,-6r0,-15r107,0r0,15v-5,3,-19,6,-35,6r59,84r65,-84v-17,0,-31,-3,-37,-6r0,-15r95,0r0,15v-5,3,-17,5,-31,6r-80,102r76,107v16,0,30,3,35,6r0,17r-105,0r0,-17v5,-3,17,-5,32,-6r-57,-82r-64,82v16,0,32,3,37,6r0,17r-97,0","w":260,"k":{"\u00ad":13,"\u2013":13,"\u2014":13}},"Y":{"d":"75,0r0,-17v6,-3,23,-6,40,-6r0,-76r-81,-133v-15,0,-29,-3,-34,-6r0,-15r103,0r0,15v-5,3,-20,6,-36,6r69,111r69,-111v-16,0,-31,-3,-36,-6r0,-15r88,0r0,15v-5,3,-16,5,-29,6r-83,133r0,76v17,0,35,3,41,6r0,17r-111,0","w":257,"k":{"\u00ad":17,"\u2013":17,"\u2014":17,",":43,".":43,"\u2026":43,"\/":22,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"u":7,"\u00fa":7,"\u00f9":7,"\u00fb":7,"\u00fc":7,"C":9,"G":9,"\u00c7":9,"O":4,"Q":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u00ab":12,"\u00bb":12,"a":22,"\u00e1":22,"\u00e0":22,"\u00e2":22,"\u00e4":22,"\u00e3":22,"\u00e5":22,"\u00e6":22,"\u00f0":17,"c":17,"d":17,"e":17,"o":17,"q":17,"\u00e7":17,"\u00e9":17,"\u00e8":17,"\u00ea":17,"\u00eb":17,"\u00f3":17,"\u00f2":17,"\u00f4":17,"\u00f6":17,"\u00f5":17,"g":22,"s":24}},"Z":{"d":"18,0r0,-15r155,-217r-117,0v0,15,-3,44,-12,58r-16,0r0,-79r187,0r0,14r-156,218r134,0v0,-15,4,-47,12,-61r16,0r0,82r-203,0","w":244},"[":{"d":"23,45r0,-309r63,0r0,21r-40,0r0,267r40,0r0,21r-63,0","w":94,"k":{"j":-12}},"\\":{"d":"121,3r-110,-256r17,-9r110,256","w":149,"k":{"T":12,"\u00dd":22,"Y":22}},"]":{"d":"8,45r0,-21r40,0r0,-267r-40,0r0,-21r64,0r0,309r-64,0","w":94},"^":{"d":"25,-46r-18,-9r70,-142r17,0r71,142r-19,9r-60,-126","w":171},"_":{"d":"6,38r0,-21r164,0r0,21r-164,0","w":175},"`":{"d":"52,-203r-51,-30v-11,-7,-15,-13,-15,-20v0,-9,7,-13,14,-13v7,0,13,6,20,13r40,42","w":67},"a":{"d":"72,3v-32,0,-57,-17,-57,-48v0,-37,33,-53,83,-53v12,0,25,1,33,4r1,-27v0,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v44,0,67,22,66,64v0,0,-1,66,-1,81v0,17,5,23,18,23v11,0,18,-5,24,-9r-1,14v-4,8,-17,16,-31,16v-20,0,-33,-9,-37,-27v-10,15,-33,27,-60,27xm79,-21v21,0,43,-8,52,-18r0,-39v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,34,27","w":199},"b":{"d":"115,3v-23,0,-43,-11,-50,-24v-3,12,-9,22,-17,27r-14,-3v5,-14,5,-35,5,-55r0,-198v-10,3,-31,1,-39,-2r0,-15v7,-3,22,-6,39,-6v14,0,23,2,29,3r0,119v9,-17,28,-32,59,-32v45,0,74,36,74,86v0,63,-34,100,-86,100xm68,-49v0,5,-1,9,-1,13v11,9,27,18,44,18v39,0,61,-29,61,-75v0,-46,-23,-66,-55,-66v-23,0,-40,11,-49,23r0,87","w":215},"c":{"d":"97,3v-52,0,-83,-36,-83,-92v0,-54,34,-94,89,-94v35,0,63,21,63,49v0,13,-8,23,-20,23v-11,0,-19,-7,-19,-18v0,-13,8,-18,16,-21v-7,-6,-16,-13,-39,-13v-42,0,-60,31,-60,73v0,49,27,69,59,69v27,0,45,-13,56,-30r6,10v-4,18,-26,44,-68,44","w":172},"d":{"d":"90,3v-48,0,-76,-36,-76,-86v0,-65,40,-100,89,-100v21,0,36,7,45,17r0,-84v-10,3,-32,1,-40,-2r0,-15v7,-3,23,-6,40,-6v14,0,23,2,28,3r0,247v10,-3,30,-1,39,2r0,15v-7,3,-22,6,-39,6v-14,0,-22,-2,-28,-3r0,-24v-9,18,-29,30,-58,30xm148,-41r0,-108v-11,-8,-27,-13,-43,-13v-38,0,-61,30,-61,75v0,45,22,66,54,66v24,0,41,-7,50,-20","w":215},"e":{"d":"97,3v-52,0,-83,-36,-83,-92v0,-49,28,-94,84,-94v44,0,69,29,69,63v0,17,-4,30,-4,30r-119,0r0,3v0,44,23,66,59,66v27,0,45,-13,56,-30r6,10v-4,18,-26,44,-68,44xm97,-162v-33,0,-48,23,-52,55r94,0r0,-10v0,-15,-4,-45,-42,-45","w":182},"f":{"d":"17,-158r0,-14v8,-4,22,-8,31,-8r0,-6v0,-62,34,-87,70,-87v24,0,37,13,37,27v0,10,-7,18,-17,18v-11,0,-18,-7,-18,-17v0,-9,5,-13,6,-14r-2,0v-27,0,-48,20,-48,73r0,9r52,0r0,19r-52,0r0,138r1,0v17,0,37,3,43,6r0,14r-109,0r0,-14v6,-3,20,-6,37,-6r0,-138r-31,0","w":132},"g":{"d":"94,76v-51,0,-81,-13,-81,-45v0,-25,20,-36,38,-39v-9,-5,-16,-13,-16,-26v0,-15,15,-28,31,-32v-27,-8,-45,-26,-45,-56v0,-39,31,-61,75,-61v27,0,49,8,62,24v3,-18,17,-31,32,-31v12,0,20,7,20,18v0,12,-6,19,-16,19v-13,0,-16,-7,-17,-14v-6,1,-11,10,-12,19v4,7,5,17,5,26v0,40,-30,60,-74,60r-7,0v-18,1,-29,10,-29,20v0,13,9,15,26,15r43,0v35,0,57,14,57,44v0,36,-39,59,-92,59xm96,-79v30,0,45,-16,45,-43v0,-27,-17,-44,-45,-44v-28,0,-45,17,-45,44v0,27,17,43,45,43xm84,-1v-6,0,-13,-1,-21,-3v-14,4,-22,14,-22,29v0,24,23,34,53,34v44,0,64,-17,64,-38v0,-15,-14,-22,-36,-22r-38,0","w":205},"h":{"d":"6,0r0,-14v5,-3,19,-6,36,-6r0,-230v-10,3,-31,1,-39,-2r0,-15v7,-3,22,-6,39,-6v14,0,23,2,28,3r0,124v9,-22,27,-37,58,-37v46,0,63,33,63,79r0,84v17,0,31,3,37,6r0,14r-101,0r0,-14v5,-3,19,-6,36,-6r0,-84v0,-38,-13,-55,-45,-55v-23,0,-41,15,-48,27r0,112v17,0,31,3,37,6r0,14r-101,0","w":227},"i":{"d":"14,0r0,-14v6,-3,18,-6,35,-6r2,0r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,157r1,0v17,0,30,3,35,6r0,14r-101,0xm63,-218v-11,0,-19,-7,-19,-20v0,-11,8,-19,19,-19v13,0,20,8,20,19v0,13,-9,20,-20,20","w":118},"j":{"d":"21,79v-17,0,-34,-9,-34,-27v0,-13,10,-21,19,-21v11,0,19,7,19,20v0,7,-2,12,-5,15v19,-1,26,-19,26,-53r0,-171v-10,3,-31,2,-39,-1r0,-15v5,-3,22,-6,39,-6v14,0,23,2,29,3r0,188v0,49,-24,68,-54,68xm59,-218v-11,0,-20,-7,-20,-20v0,-11,9,-19,20,-19v13,0,20,8,20,19v0,13,-9,20,-20,20","w":112},"k":{"d":"6,0r0,-14v5,-3,19,-6,36,-6r0,-230v-10,3,-31,1,-39,-2r0,-15v5,-3,22,-6,39,-6v14,0,23,2,28,3r0,184r85,-72v-13,-1,-22,-2,-27,-5r0,-14r86,0r0,14v-5,3,-16,4,-30,5r-63,55r69,84v13,1,23,3,28,5r0,14r-91,0r0,-14v4,-2,14,-4,27,-5r-54,-66r-30,25r0,40v13,0,28,3,33,6r0,14r-97,0","w":217},"l":{"d":"6,0r0,-14v5,-3,19,-6,36,-6r0,-230v-10,3,-31,1,-39,-2r0,-15v5,-3,22,-6,39,-6v14,0,23,2,28,3r0,250v17,0,31,3,37,6r0,14r-101,0","w":119},"m":{"d":"14,0r0,-14v6,-3,20,-6,37,-6r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,30v9,-21,26,-36,56,-36v30,0,47,15,55,37v10,-21,30,-37,60,-37v46,0,64,34,64,79r0,84v17,0,30,3,36,6r0,14r-98,0r0,-14v6,-3,16,-6,33,-6r0,-84v0,-37,-13,-55,-45,-55v-22,0,-38,13,-46,25v2,9,3,19,3,30r0,84v17,0,28,3,34,6r0,14r-96,0r0,-14v6,-3,17,-6,34,-6r0,-84v0,-37,-12,-55,-44,-55v-24,0,-40,14,-46,27r0,112v17,0,28,3,34,6r0,14r-99,0","w":351},"n":{"d":"14,0r0,-14v6,-3,20,-6,37,-6r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,30v9,-21,26,-36,57,-36v46,0,64,33,64,79r0,84v17,0,31,3,36,6r0,14r-101,0r0,-14v6,-3,20,-6,37,-6r0,-84v0,-38,-13,-55,-45,-55v-24,0,-41,14,-48,27r0,112v17,0,31,3,36,6r0,14r-101,0","w":236},"o":{"d":"98,3v-50,0,-84,-33,-84,-93v0,-58,34,-93,84,-93v51,0,85,33,85,93v0,58,-33,93,-85,93xm98,-18v35,0,55,-27,55,-72v0,-45,-20,-72,-55,-72v-35,0,-54,27,-54,72v0,45,19,72,54,72","w":196},"p":{"d":"6,79r0,-14v5,-3,19,-6,36,-6r0,-217v-10,3,-31,2,-39,-1r0,-15v7,-3,22,-6,39,-6v14,0,23,2,28,3r0,27v8,-18,27,-33,59,-33v45,0,75,36,75,86v0,63,-34,100,-86,100v-21,0,-41,-7,-48,-17r0,73r3,0v17,0,36,3,41,6r0,14r-108,0xm120,-159v-23,0,-41,11,-50,23r0,103v11,9,28,15,44,15v40,0,60,-29,60,-75v0,-46,-22,-66,-54,-66"},"q":{"d":"111,79r0,-14v5,-3,18,-6,35,-6r2,0r0,-86v-9,18,-30,30,-61,30v-45,0,-73,-38,-73,-87v0,-65,39,-99,89,-99v24,0,41,8,49,19v4,-10,9,-18,17,-23r12,4v-6,14,-5,34,-5,54r0,188r1,0v17,0,29,3,35,6r0,14r-101,0xm98,-21v24,0,41,-7,50,-20r0,-90v0,-6,0,-13,1,-18v-11,-8,-27,-13,-44,-13v-38,0,-61,27,-61,73v0,45,23,68,54,68","w":209},"r":{"d":"14,0r0,-14v6,-3,20,-6,37,-6r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,34v9,-23,28,-40,53,-40v14,0,26,9,26,23v0,13,-9,21,-20,21v-13,0,-19,-9,-20,-20v-14,1,-34,16,-39,39r0,100r1,0v17,0,36,3,42,6r0,14r-108,0","w":157,"k":{"y":-9}},"s":{"d":"24,3r0,-75r14,0v3,7,7,20,8,33v9,12,25,22,52,22v26,0,40,-11,40,-29v0,-20,-16,-25,-37,-30r-22,-6v-32,-8,-49,-22,-49,-49v0,-30,22,-53,60,-53v19,0,34,6,42,14v2,-9,7,-15,9,-17r12,1r0,69r-14,0v-4,-8,-8,-21,-8,-35v-7,-7,-19,-13,-37,-13v-24,0,-36,13,-36,31v0,20,18,25,35,29r22,5v33,8,51,23,51,51v0,32,-27,53,-68,53v-22,0,-42,-9,-52,-23v-1,12,-5,18,-8,22r-14,0","w":185},"t":{"d":"7,-158r0,-14v8,-4,23,-7,31,-8v0,-13,0,-39,8,-53r20,-3r0,59r59,0r0,19r-59,0r0,105v0,25,8,33,28,33v18,0,33,-14,41,-28r6,13v-4,15,-19,38,-54,38v-31,0,-49,-15,-49,-55r0,-106r-31,0","w":139},"u":{"d":"100,3v-46,0,-63,-33,-63,-79r0,-82v-10,3,-29,2,-37,-1r0,-15v6,-3,22,-6,37,-6v14,0,22,2,28,3r0,101v0,38,13,55,45,55v24,0,42,-14,48,-27r0,-110v-10,3,-31,2,-40,-1r0,-15v6,-3,23,-6,40,-6v14,0,22,2,28,3r0,154v10,-3,31,-1,39,2r0,15v-6,3,-22,6,-39,6v-14,0,-23,-2,-28,-3r0,-31v-9,22,-27,37,-58,37","w":232},"v":{"d":"84,3r-65,-161v-11,-1,-19,-3,-23,-5r0,-14r83,0r0,14v-5,3,-16,5,-30,5r48,119r48,-119v-15,0,-26,-2,-31,-5r0,-14r77,0r0,14v-4,2,-12,4,-23,5r-68,161r-16,0","w":191,"k":{",":43,".":43,"\u2026":43}},"w":{"d":"80,3r-61,-161v-11,-1,-19,-3,-23,-5r0,-14r83,0r0,14v-5,3,-16,5,-30,5r44,117r49,-139r16,0r51,138r40,-116v-15,0,-27,-2,-32,-5r0,-14r77,0r0,14v-4,2,-12,4,-22,5r-60,161r-17,0r-50,-133r-49,133r-16,0","w":296,"k":{",":43,".":43,"\u2026":43}},"x":{"d":"4,0r0,-14v5,-3,16,-5,28,-6r55,-65r-57,-73v-13,-1,-23,-2,-27,-5r0,-14r84,0r0,14v-4,2,-12,4,-23,5r40,51r41,-51v-11,0,-22,-2,-27,-5r0,-14r77,0r0,14v-5,3,-14,4,-24,5r-55,66r57,73v12,1,20,3,25,5r0,14r-84,0r0,-14v4,-2,12,-4,24,-5r-40,-51r-41,51v10,1,20,3,25,5r0,14r-78,0","w":201},"y":{"d":"34,79v-20,0,-33,-12,-33,-27v0,-13,10,-21,20,-21v11,0,20,7,20,20v0,8,-6,14,-6,14v14,-1,25,-18,34,-38r14,-32r-64,-153v-11,-1,-19,-3,-23,-5r0,-14r83,0r0,14v-5,3,-16,5,-30,5r49,118r47,-118v-15,0,-26,-2,-31,-5r0,-14r77,0r0,14v-4,2,-12,4,-23,5r-78,183v-14,34,-29,54,-56,54","w":191,"k":{",":43,".":43,"\u2026":43}},"z":{"d":"18,0r0,-11r110,-148r-82,0v0,15,-2,35,-8,45r-15,0r0,-63r143,0r0,10r-110,149r86,0v0,-15,5,-39,10,-50r15,0r0,68r-149,0","w":185},"{":{"d":"113,45v-34,0,-64,-21,-61,-59r3,-46v1,-22,-10,-43,-47,-43r0,-17v37,0,48,-20,47,-42r-3,-43v-3,-40,27,-59,61,-59v8,0,15,1,19,2r3,16v-6,-1,-11,-2,-20,-2v-24,0,-40,15,-38,43r3,43v2,28,-16,48,-42,51v26,3,44,20,42,51r-3,46v-2,27,14,42,38,42v9,0,14,0,20,-1r-3,15v-4,1,-11,3,-19,3","w":143,"k":{"j":-12}},"|":{"d":"39,79r0,-360r20,0r0,360r-20,0","w":98},"}":{"d":"31,45v-8,0,-16,-2,-20,-3r-3,-15v6,1,12,1,20,1v24,0,39,-15,38,-42r-3,-46v-2,-31,17,-48,42,-51v-25,-3,-44,-23,-42,-51r3,-43v1,-28,-14,-43,-38,-43v-8,0,-14,1,-20,2r3,-16v4,-1,12,-2,20,-2v34,0,63,19,60,59r-2,43v-1,22,9,42,46,42r0,17v-37,0,-47,21,-46,43r2,46v3,38,-26,59,-60,59","w":143},"~":{"d":"23,-103r0,-24v4,-5,16,-23,40,-23v31,0,62,28,92,28v22,0,39,-28,39,-28r0,23v-4,6,-17,24,-41,24v-31,0,-61,-28,-91,-28v-23,0,-39,28,-39,28"},"\u00c4":{"d":"-1,0r0,-15v5,-3,18,-5,32,-6r90,-232r25,0r84,232v15,1,28,3,33,6r0,15r-98,0r0,-15v5,-3,18,-6,33,-6r-20,-56r-102,0r-21,56r1,0v17,0,32,3,38,6r0,15r-95,0xm128,-215r-44,118r87,0xm164,-291v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm91,-291v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":261},"\u00c5":{"d":"-1,0r0,-15v5,-3,18,-5,32,-6r90,-232r25,0r84,232v15,1,28,3,33,6r0,15r-98,0r0,-15v5,-3,18,-6,33,-6r-20,-56r-102,0r-21,56r1,0v17,0,32,3,38,6r0,15r-95,0xm128,-215r-44,118r87,0xm131,-279v-24,0,-40,-15,-40,-35v0,-20,16,-35,40,-35v24,0,39,15,39,35v0,20,-15,35,-39,35xm131,-293v14,0,22,-10,22,-21v0,-11,-8,-21,-22,-21v-14,0,-23,10,-23,21v0,11,9,21,23,21","w":261},"\u00c7":{"d":"116,79v-9,0,-19,-3,-25,-6r-2,-17v0,0,15,4,25,4v10,0,16,-4,16,-12v0,-11,-13,-17,-27,-21r0,-3r15,-20v-60,-4,-101,-49,-101,-131v0,-76,45,-130,111,-130v28,0,51,10,65,24v3,-9,8,-18,14,-24r11,0r0,94r-14,0v-7,-12,-11,-34,-12,-50v-12,-13,-32,-22,-57,-22v-53,0,-86,42,-86,108v0,69,28,107,83,107v41,0,67,-28,80,-62r10,12v-8,39,-38,70,-85,74r-10,13v15,6,25,17,25,31v0,18,-12,31,-36,31","w":240},"\u00c9":{"d":"20,0r0,-15v5,-3,18,-6,35,-6r3,0r0,-211v-17,0,-33,-3,-38,-6r0,-15r208,0r0,79r-16,0v-9,-14,-12,-43,-12,-58r-113,0r0,96r61,0v0,-16,5,-32,8,-37r16,0r0,93r-16,0v-3,-5,-8,-20,-8,-37r-61,0r0,96r118,0v0,-15,5,-47,13,-61r15,0r0,82r-213,0xm115,-279r-8,-8r40,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-4,13,-15,20","w":248},"\u00d1":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r66,0r139,198r0,-177v-17,0,-33,-3,-38,-6r0,-15r100,0r0,15v-6,3,-21,6,-38,6r0,235r-21,0r-146,-207r0,183v17,0,32,3,38,6r0,15r-100,0xm102,-279r-11,-9v4,-21,17,-30,31,-30v21,0,37,17,58,17v9,0,16,-10,17,-17r10,10v-4,21,-17,29,-31,29v-21,0,-43,-16,-58,-16v-9,0,-15,9,-16,16","w":298},"\u00d6":{"d":"134,4v-73,0,-117,-52,-117,-131v0,-78,44,-130,117,-130v73,0,116,52,116,130v0,79,-43,131,-116,131xm134,-18v54,0,84,-41,84,-109v0,-67,-30,-108,-84,-108v-53,0,-85,41,-85,108v0,68,32,109,85,109xm170,-291v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,19,8,19,21v0,13,-8,21,-19,21xm96,-291v-11,0,-19,-8,-19,-21v0,-13,8,-21,19,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":265,"k":{",":22,".":22,"\u2026":22}},"\u00dc":{"d":"156,4v-71,0,-98,-38,-98,-102r0,-134v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,135v0,55,25,77,71,77v48,0,70,-29,70,-81r0,-131v-17,0,-32,-3,-38,-6r0,-15r100,0r0,15v-6,3,-21,6,-38,6r0,131v0,56,-29,105,-96,105xm190,-291v-11,0,-19,-8,-19,-21v0,-13,8,-21,19,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm117,-291v-11,0,-19,-8,-19,-21v0,-13,8,-21,19,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":307,"k":{",":36,".":36,"\u2026":36,"A":17,"\u00c4":17,"\u00c5":17,"\u00c6":17,"\u00c0":17,"\u00c3":17}},"\u00e1":{"d":"72,3v-32,0,-57,-17,-57,-48v0,-37,33,-53,83,-53v12,0,25,1,33,4r1,-27v0,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v44,0,67,22,66,64v0,0,-1,66,-1,81v0,17,5,23,18,23v11,0,18,-5,24,-9r-1,14v-4,8,-17,16,-31,16v-20,0,-33,-9,-37,-27v-10,15,-33,27,-60,27xm79,-21v21,0,43,-8,52,-18r0,-39v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,34,27xm78,-203r-8,-8r41,-42v6,-7,12,-13,19,-13v7,0,14,4,14,13v0,7,-4,13,-15,20","w":199},"\u00e0":{"d":"72,3v-32,0,-57,-17,-57,-48v0,-37,33,-53,83,-53v12,0,25,1,33,4r1,-27v0,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v44,0,67,22,66,64v0,0,-1,66,-1,81v0,17,5,23,18,23v11,0,18,-5,24,-9r-1,14v-4,8,-17,16,-31,16v-20,0,-33,-9,-37,-27v-10,15,-33,27,-60,27xm79,-21v21,0,43,-8,52,-18r0,-39v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,34,27xm117,-203r-50,-30v-11,-7,-16,-13,-16,-20v0,-9,7,-13,14,-13v7,0,13,6,20,13r41,42","w":199},"\u00e2":{"d":"72,3v-32,0,-57,-17,-57,-48v0,-37,33,-53,83,-53v12,0,25,1,33,4r1,-27v0,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v44,0,67,22,66,64v0,0,-1,66,-1,81v0,17,5,23,18,23v11,0,18,-5,24,-9r-1,14v-4,8,-17,16,-31,16v-20,0,-33,-9,-37,-27v-10,15,-33,27,-60,27xm79,-21v21,0,43,-8,52,-18r0,-39v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,34,27xm55,-203r-14,-5r44,-56r23,0r43,56r-14,5r-41,-39","w":199},"\u00e4":{"d":"72,3v-32,0,-57,-17,-57,-48v0,-37,33,-53,83,-53v12,0,25,1,33,4r1,-27v0,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v44,0,67,22,66,64v0,0,-1,66,-1,81v0,17,5,23,18,23v11,0,18,-5,24,-9r-1,14v-4,8,-17,16,-31,16v-20,0,-33,-9,-37,-27v-10,15,-33,27,-60,27xm79,-21v21,0,43,-8,52,-18r0,-39v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,34,27xm129,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm56,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":199},"\u00e3":{"d":"72,3v-32,0,-57,-17,-57,-48v0,-37,33,-53,83,-53v12,0,25,1,33,4r1,-27v0,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v44,0,67,22,66,64v0,0,-1,66,-1,81v0,17,5,23,18,23v11,0,18,-5,24,-9r-1,14v-4,8,-17,16,-31,16v-20,0,-33,-9,-37,-27v-10,15,-33,27,-60,27xm79,-21v21,0,43,-8,52,-18r0,-39v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,34,27xm45,-203r-10,-9v4,-21,17,-30,31,-30v21,0,36,17,57,17v9,0,16,-10,17,-17r10,10v-4,21,-16,29,-30,29v-21,0,-43,-16,-58,-16v-9,0,-16,9,-17,16","w":199},"\u00e5":{"d":"72,3v-32,0,-57,-17,-57,-48v0,-37,33,-53,83,-53v12,0,25,1,33,4r1,-27v0,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v44,0,67,22,66,64v0,0,-1,66,-1,81v0,17,5,23,18,23v11,0,18,-5,24,-9r-1,14v-4,8,-17,16,-31,16v-20,0,-33,-9,-37,-27v-10,15,-33,27,-60,27xm79,-21v21,0,43,-8,52,-18r0,-39v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,34,27xm96,-203v-24,0,-39,-15,-39,-35v0,-20,15,-35,39,-35v24,0,40,15,40,35v0,20,-16,35,-40,35xm96,-217v14,0,23,-10,23,-21v0,-11,-9,-21,-23,-21v-14,0,-22,10,-22,21v0,11,8,21,22,21","w":199},"\u00e7":{"d":"82,79v-9,0,-18,-3,-24,-6r-3,-17v0,0,15,4,25,4v10,0,16,-4,16,-12v0,-11,-13,-17,-27,-21r0,-3r16,-22v-45,-5,-71,-39,-71,-91v0,-54,34,-94,89,-94v35,0,63,21,63,49v0,13,-8,23,-20,23v-11,0,-19,-7,-19,-18v0,-13,8,-18,16,-21v-7,-6,-16,-13,-39,-13v-42,0,-60,31,-60,73v0,49,27,69,59,69v27,0,45,-13,56,-30r6,10v-4,17,-24,41,-61,44r-11,14v15,6,25,17,25,31v0,18,-12,31,-36,31","w":172},"\u00e9":{"d":"97,3v-52,0,-83,-36,-83,-92v0,-49,28,-94,84,-94v44,0,69,29,69,63v0,17,-4,30,-4,30r-119,0r0,3v0,44,23,66,59,66v27,0,45,-13,56,-30r6,10v-4,18,-26,44,-68,44xm97,-162v-33,0,-48,23,-52,55r94,0r0,-10v0,-15,-4,-45,-42,-45xm66,-203r-8,-8r41,-42v6,-7,12,-13,19,-13v7,0,14,4,14,13v0,7,-4,13,-15,20","w":182},"\u00e8":{"d":"97,3v-52,0,-83,-36,-83,-92v0,-49,28,-94,84,-94v44,0,69,29,69,63v0,17,-4,30,-4,30r-119,0r0,3v0,44,23,66,59,66v27,0,45,-13,56,-30r6,10v-4,18,-26,44,-68,44xm97,-162v-33,0,-48,23,-52,55r94,0r0,-10v0,-15,-4,-45,-42,-45xm119,-203r-51,-30v-11,-7,-15,-13,-15,-20v0,-9,7,-13,14,-13v7,0,12,6,19,13r41,42","w":182},"\u00ea":{"d":"97,3v-52,0,-83,-36,-83,-92v0,-49,28,-94,84,-94v44,0,69,29,69,63v0,17,-4,30,-4,30r-119,0r0,3v0,44,23,66,59,66v27,0,45,-13,56,-30r6,10v-4,18,-26,44,-68,44xm97,-162v-33,0,-48,23,-52,55r94,0r0,-10v0,-15,-4,-45,-42,-45xm50,-203r-14,-5r44,-56r23,0r43,56r-14,5r-41,-39","w":182},"\u00eb":{"d":"97,3v-52,0,-83,-36,-83,-92v0,-49,28,-94,84,-94v44,0,69,29,69,63v0,17,-4,30,-4,30r-119,0r0,3v0,44,23,66,59,66v27,0,45,-13,56,-30r6,10v-4,18,-26,44,-68,44xm97,-162v-33,0,-48,23,-52,55r94,0r0,-10v0,-15,-4,-45,-42,-45xm128,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm55,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":182},"\u00ed":{"d":"14,0r0,-14v6,-3,18,-6,35,-6r2,0r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,157r1,0v17,0,30,3,35,6r0,14r-101,0xm30,-203r-8,-8r41,-42v6,-7,12,-13,19,-13v7,0,14,4,14,13v0,7,-4,13,-15,20","w":118},"\u00ec":{"d":"14,0r0,-14v6,-3,18,-6,35,-6r2,0r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,157r1,0v17,0,30,3,35,6r0,14r-101,0xm72,-203r-51,-30v-11,-7,-15,-13,-15,-20v0,-9,7,-13,14,-13v7,0,13,6,20,13r40,42","w":118},"\u00ee":{"d":"14,0r0,-14v6,-3,18,-6,35,-6r2,0r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,157r1,0v17,0,30,3,35,6r0,14r-101,0xm14,-203r-14,-5r44,-56r23,0r43,56r-14,5r-41,-39","w":118},"\u00ef":{"d":"14,0r0,-14v6,-3,18,-6,35,-6r2,0r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,157r1,0v17,0,30,3,35,6r0,14r-101,0xm88,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm15,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":118},"\u00f1":{"d":"14,0r0,-14v6,-3,20,-6,37,-6r0,-138v-10,3,-31,2,-40,-1r0,-15v7,-3,23,-6,40,-6v14,0,22,2,28,3r0,30v9,-21,26,-36,57,-36v46,0,64,33,64,79r0,84v17,0,31,3,36,6r0,14r-101,0r0,-14v6,-3,20,-6,37,-6r0,-84v0,-38,-13,-55,-45,-55v-24,0,-41,14,-48,27r0,112v17,0,31,3,36,6r0,14r-101,0xm71,-203r-11,-9v4,-21,17,-30,31,-30v21,0,37,17,58,17v9,0,16,-10,17,-17r10,10v-4,21,-17,29,-31,29v-21,0,-43,-16,-58,-16v-9,0,-15,9,-16,16","w":236},"\u00f3":{"d":"98,3v-50,0,-84,-33,-84,-93v0,-58,34,-93,84,-93v51,0,85,33,85,93v0,58,-33,93,-85,93xm98,-18v35,0,55,-27,55,-72v0,-45,-20,-72,-55,-72v-35,0,-54,27,-54,72v0,45,19,72,54,72xm69,-203r-8,-8r41,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-5,13,-16,20","w":196},"\u00f2":{"d":"98,3v-50,0,-84,-33,-84,-93v0,-58,34,-93,84,-93v51,0,85,33,85,93v0,58,-33,93,-85,93xm98,-18v35,0,55,-27,55,-72v0,-45,-20,-72,-55,-72v-35,0,-54,27,-54,72v0,45,19,72,54,72xm120,-203r-51,-30v-11,-7,-15,-13,-15,-20v0,-9,7,-13,14,-13v7,0,13,6,20,13r41,42","w":196},"\u00f4":{"d":"98,3v-50,0,-84,-33,-84,-93v0,-58,34,-93,84,-93v51,0,85,33,85,93v0,58,-33,93,-85,93xm98,-18v35,0,55,-27,55,-72v0,-45,-20,-72,-55,-72v-35,0,-54,27,-54,72v0,45,19,72,54,72xm58,-203r-14,-5r43,-56r23,0r43,56r-14,5r-40,-39","w":196},"\u00f6":{"d":"98,3v-50,0,-84,-33,-84,-93v0,-58,34,-93,84,-93v51,0,85,33,85,93v0,58,-33,93,-85,93xm98,-18v35,0,55,-27,55,-72v0,-45,-20,-72,-55,-72v-35,0,-54,27,-54,72v0,45,19,72,54,72xm135,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm62,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":196},"\u00f5":{"d":"98,3v-50,0,-84,-33,-84,-93v0,-58,34,-93,84,-93v51,0,85,33,85,93v0,58,-33,93,-85,93xm98,-18v35,0,55,-27,55,-72v0,-45,-20,-72,-55,-72v-35,0,-54,27,-54,72v0,45,19,72,54,72xm51,-203r-10,-9v4,-21,17,-30,31,-30v21,0,36,17,57,17v9,0,16,-10,17,-17r10,10v-4,21,-17,29,-31,29v-21,0,-42,-16,-57,-16v-9,0,-16,9,-17,16","w":196},"\u00fa":{"d":"100,3v-46,0,-63,-33,-63,-79r0,-82v-10,3,-29,2,-37,-1r0,-15v6,-3,22,-6,37,-6v14,0,22,2,28,3r0,101v0,38,13,55,45,55v24,0,42,-14,48,-27r0,-110v-10,3,-31,2,-40,-1r0,-15v6,-3,23,-6,40,-6v14,0,22,2,28,3r0,154v10,-3,31,-1,39,2r0,15v-6,3,-22,6,-39,6v-14,0,-23,-2,-28,-3r0,-31v-9,22,-27,37,-58,37xm87,-203r-8,-8r41,-42v6,-7,12,-13,19,-13v7,0,14,4,14,13v0,7,-4,13,-15,20","w":232},"\u00f9":{"d":"100,3v-46,0,-63,-33,-63,-79r0,-82v-10,3,-29,2,-37,-1r0,-15v6,-3,22,-6,37,-6v14,0,22,2,28,3r0,101v0,38,13,55,45,55v24,0,42,-14,48,-27r0,-110v-10,3,-31,2,-40,-1r0,-15v6,-3,23,-6,40,-6v14,0,22,2,28,3r0,154v10,-3,31,-1,39,2r0,15v-6,3,-22,6,-39,6v-14,0,-23,-2,-28,-3r0,-31v-9,22,-27,37,-58,37xm120,-203r-51,-30v-11,-7,-15,-13,-15,-20v0,-9,7,-13,14,-13v7,0,12,6,19,13r41,42","w":232},"\u00fb":{"d":"100,3v-46,0,-63,-33,-63,-79r0,-82v-10,3,-29,2,-37,-1r0,-15v6,-3,22,-6,37,-6v14,0,22,2,28,3r0,101v0,38,13,55,45,55v24,0,42,-14,48,-27r0,-110v-10,3,-31,2,-40,-1r0,-15v6,-3,23,-6,40,-6v14,0,22,2,28,3r0,154v10,-3,31,-1,39,2r0,15v-6,3,-22,6,-39,6v-14,0,-23,-2,-28,-3r0,-31v-9,22,-27,37,-58,37xm66,-203r-15,-5r44,-56r23,0r43,56r-14,5r-40,-39","w":232},"\u00fc":{"d":"100,3v-46,0,-63,-33,-63,-79r0,-82v-10,3,-29,2,-37,-1r0,-15v6,-3,22,-6,37,-6v14,0,22,2,28,3r0,101v0,38,13,55,45,55v24,0,42,-14,48,-27r0,-110v-10,3,-31,2,-40,-1r0,-15v6,-3,23,-6,40,-6v14,0,22,2,28,3r0,154v10,-3,31,-1,39,2r0,15v-6,3,-22,6,-39,6v-14,0,-23,-2,-28,-3r0,-31v-9,22,-27,37,-58,37xm138,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm65,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":232},"\u00b0":{"d":"53,-177v-24,0,-43,-17,-43,-40v0,-22,19,-39,43,-39v24,0,44,17,44,39v0,23,-20,40,-44,40xm53,-193v15,0,26,-10,26,-24v0,-14,-11,-23,-26,-23v-15,0,-25,9,-25,23v0,14,10,24,25,24","w":106},"\u00a2":{"d":"105,34r0,-30v-57,-3,-92,-48,-92,-131v0,-72,36,-125,92,-130r0,-24r15,0r0,24v24,1,39,10,51,23v3,-9,7,-18,13,-23r11,0r0,94r-14,0v-8,-12,-11,-37,-12,-53v-12,-12,-27,-19,-49,-19r0,215v36,-1,58,-29,70,-62r10,12v-8,39,-35,71,-80,74r0,30r-15,0xm44,-127v0,64,20,101,61,106r0,-212v-39,8,-61,47,-61,106"},"\u00a3":{"d":"15,-121r0,-17r35,0r2,-25v4,-69,43,-93,82,-93v41,0,57,30,57,44v0,13,-8,21,-18,21v-11,0,-17,-7,-17,-17v0,-10,9,-17,13,-18v-4,-4,-14,-12,-34,-12v-27,0,-51,16,-55,75r-2,25r68,0r0,17r-69,0r-2,48v-1,20,-8,36,-18,48v32,1,59,10,93,10v28,0,38,-11,45,-15r-2,24v-5,6,-18,16,-43,16v-37,0,-76,-10,-104,-10v-21,0,-36,3,-36,3r0,-18v5,-3,16,-7,27,-9v6,-13,8,-28,9,-49r3,-48r-34,0"},"\u00a7":{"d":"24,79r-3,-90r14,0v8,14,16,34,16,49v11,11,27,20,50,20v30,0,47,-14,47,-38v0,-24,-17,-34,-43,-44r-30,-13v-36,-15,-52,-29,-52,-59v0,-26,16,-42,34,-51v-13,-11,-22,-25,-22,-46v0,-37,27,-64,68,-64v25,0,41,8,53,22v3,-9,7,-17,13,-22r11,0r0,87r-14,0v-8,-13,-13,-33,-13,-48v-10,-10,-22,-18,-45,-18v-27,0,-42,15,-42,39v0,24,15,34,41,44r31,12v36,15,55,32,55,64v0,21,-17,39,-36,47v13,11,22,24,22,45v0,37,-28,64,-72,64v-25,0,-46,-9,-59,-24v-3,9,-7,19,-13,24r-11,0xm93,-127v-8,-3,-15,-6,-22,-10v-12,8,-19,20,-19,34v0,21,15,31,37,40r31,12v8,4,16,7,23,11v15,-9,20,-20,20,-35v0,-21,-17,-30,-39,-39","w":220},"\u00b6":{"d":"111,79r0,-130r-7,0v-52,0,-98,-31,-98,-101v0,-69,49,-101,102,-101r121,0r0,15v-6,3,-20,6,-36,6r0,311r-30,0r0,-311r-31,0r0,311r-21,0","w":237},"\u00df":{"d":"17,-160r0,-14v8,-4,22,-7,31,-7r0,-5v0,-62,36,-87,77,-87v35,0,72,18,72,63v0,41,-29,67,-52,67v32,1,66,22,66,68v0,55,-30,79,-76,79v-13,0,-22,-2,-28,-5r-4,-16v6,1,18,4,28,4v32,0,50,-20,50,-62v0,-42,-25,-56,-60,-56r-13,0r0,-19r13,0v28,0,46,-21,46,-60v0,-28,-12,-46,-42,-46v-31,0,-49,21,-49,70r0,186r-65,0r0,-14v6,-3,20,-6,37,-6r0,-140r-31,0","w":220},"\u00ae":{"d":"162,4v-73,0,-144,-41,-144,-131v0,-90,71,-130,144,-130v73,0,143,40,143,130v0,90,-70,131,-143,131xm162,-18v59,0,118,-30,118,-109v0,-78,-59,-108,-118,-108v-59,0,-118,30,-118,108v0,79,59,109,118,109xm77,-56r0,-13v4,-3,17,-6,31,-6r0,-104v-14,0,-26,-3,-31,-4r0,-14r90,0v45,0,68,11,68,38v0,16,-11,31,-36,37v9,4,16,13,16,25r0,10v0,11,5,14,17,14v5,0,13,-2,17,-3r-3,16v-4,4,-12,7,-22,7v-22,0,-34,-13,-34,-34r0,-10v0,-15,-7,-20,-27,-21r-29,0r0,43v14,0,27,3,31,6r0,13r-88,0xm166,-179r-32,0r0,45r29,0v32,0,47,-9,47,-24v0,-15,-13,-21,-44,-21","w":323},"\u00a9":{"d":"162,4v-73,0,-144,-41,-144,-131v0,-90,71,-130,144,-130v73,0,143,40,143,130v0,90,-70,131,-143,131xm162,-18v59,0,118,-30,118,-109v0,-78,-59,-108,-118,-108v-59,0,-118,30,-118,108v0,79,59,109,118,109xm162,-53v-55,0,-89,-28,-89,-72v0,-42,34,-75,89,-75v23,0,39,7,51,15v2,-6,7,-12,12,-15r10,0r0,58r-13,0v-5,-5,-8,-18,-9,-27v-9,-7,-25,-11,-46,-11v-44,0,-67,18,-67,53v0,34,21,54,66,54v34,0,53,-14,65,-31r5,14v-8,18,-30,37,-74,37","w":323},"\u2122":{"d":"207,-113r0,-12v4,-3,17,-6,31,-6r0,-104v-14,0,-26,-3,-31,-4r0,-14r59,0r66,107r65,-107r56,0r0,14v-6,1,-17,4,-31,4r0,104v14,0,27,3,31,6r0,12r-87,0r0,-12v4,-3,17,-6,31,-6r0,-86r-64,106r-10,0r-64,-103r0,83v14,0,27,3,31,6r0,12r-83,0xm8,-203r0,-50r173,0r0,50r-14,0v-7,-8,-9,-26,-9,-35r-50,0r0,107v14,0,27,3,31,6r0,12r-87,0r0,-12v4,-3,17,-6,31,-6r0,-107r-51,0v0,9,-5,27,-11,35r-13,0","w":468},"\u00b4":{"d":"15,-203r-8,-8r41,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-5,13,-16,20","w":67},"\u00a8":{"d":"104,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm31,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":135},"\u00c6":{"d":"-1,0r0,-15v5,-3,19,-6,34,-6r129,-212v-11,-1,-20,-3,-24,-5r0,-15r211,0r0,79r-16,0v-9,-14,-12,-43,-12,-58r-107,0r0,96r55,0v0,-16,5,-32,8,-37r16,0r0,93r-16,0v-3,-5,-8,-20,-8,-37r-55,0r0,96r112,0v0,-15,5,-47,13,-61r15,0r0,82r-208,0r0,-15v6,-3,18,-6,35,-6r3,0r0,-69r-82,0r-42,69v15,0,29,3,34,6r0,15r-95,0xm114,-110r70,0r0,-116","w":369},"\u00d8":{"d":"37,3r-14,-11r22,-27v-18,-23,-28,-55,-28,-92v0,-78,44,-130,117,-130v29,0,53,8,72,23r23,-28r16,12r-25,30v19,23,30,54,30,93v0,79,-43,131,-116,131v-31,0,-58,-9,-77,-26xm134,-18v54,0,84,-41,84,-109v0,-29,-6,-52,-16,-70r-127,154v14,16,34,25,59,25xm49,-127v0,27,6,50,15,68r125,-154v-14,-14,-32,-22,-55,-22v-53,0,-85,41,-85,108","w":265,"k":{",":22,".":22,"\u2026":22}},"\u00b1":{"d":"34,-117r0,-19r64,0r0,-78r20,0r0,78r65,0r0,19r-65,0r0,78r-20,0r0,-78r-64,0xm34,0r0,-20r149,0r0,20r-149,0"},"\u00a5":{"d":"48,-94r0,-17r44,0r-64,-121v-15,0,-29,-3,-34,-6r0,-15r103,0r0,15v-6,3,-20,6,-37,6r56,106r58,-106v-17,0,-32,-3,-38,-6r0,-15r89,0r0,15v-5,3,-17,5,-30,6r-68,121r46,0r0,17r-48,0r0,24r48,0r0,17r-48,0r0,30v17,0,35,3,41,6r0,17r-111,0r0,-17v6,-3,24,-6,41,-6r0,-30r-48,0r0,-17r48,0r0,-24r-48,0"},"\u00b5":{"d":"32,79r5,-51r0,-186v-10,3,-29,2,-37,-1r0,-15v6,-3,22,-6,37,-6v14,0,22,2,28,3r0,101v0,38,13,55,45,55v24,0,42,-14,48,-27r0,-110v-10,3,-31,2,-40,-1r0,-15v6,-3,23,-6,40,-6v14,0,22,2,28,3r0,154v10,-3,31,-1,39,2r0,15v-6,3,-22,6,-39,6v-14,0,-23,-2,-28,-3r0,-31v-9,22,-27,37,-58,37v-14,0,-26,-3,-35,-9r0,85r-33,0","w":232},"\u03bc":{"d":"32,79r5,-51r0,-186v-10,3,-29,2,-37,-1r0,-15v6,-3,22,-6,37,-6v14,0,22,2,28,3r0,101v0,38,13,55,45,55v24,0,42,-14,48,-27r0,-110v-10,3,-31,2,-40,-1r0,-15v6,-3,23,-6,40,-6v14,0,22,2,28,3r0,154v10,-3,31,-1,39,2r0,15v-6,3,-22,6,-39,6v-14,0,-23,-2,-28,-3r0,-31v-9,22,-27,37,-58,37v-14,0,-26,-3,-35,-9r0,85r-33,0","w":232},"\u00aa":{"d":"162,-120v-3,6,-13,10,-24,10v-16,0,-26,-6,-30,-19v-9,12,-27,19,-48,19v-30,0,-47,-14,-47,-38v0,-28,27,-43,69,-43v9,0,20,1,26,3r0,-20v0,-23,-10,-32,-36,-32v-13,0,-21,3,-28,7v4,1,9,7,9,14v0,10,-5,15,-15,15v-8,0,-15,-7,-15,-17v0,-20,25,-39,56,-39v36,0,56,16,55,50v0,0,-2,51,-2,64v0,14,3,17,14,17v10,0,15,-3,19,-6xm66,-131v17,0,33,-6,41,-13r0,-28v-7,-1,-16,-2,-24,-2v-30,0,-45,6,-45,24v0,13,10,19,28,19","w":164},"\u00ba":{"d":"82,-257v42,0,70,25,70,73v0,45,-26,74,-70,74v-42,0,-71,-26,-71,-74v0,-45,29,-73,71,-73xm82,-239v-28,0,-44,20,-44,55v0,35,16,55,44,55v28,0,43,-20,43,-55v0,-35,-15,-55,-43,-55","w":163},"\u00e6":{"d":"75,3v-35,0,-60,-17,-60,-48v0,-37,33,-53,83,-53v11,0,25,2,33,4r0,-6r1,-21v1,-28,-14,-42,-45,-42v-15,0,-30,4,-38,11v5,1,14,6,14,17v0,11,-7,17,-18,17v-10,0,-17,-7,-17,-18v0,-24,28,-50,66,-50v30,0,50,10,59,30v14,-17,35,-27,62,-27v44,0,69,27,69,61v0,20,-4,29,-4,29r-120,0r0,6v0,44,23,66,59,66v27,0,45,-13,57,-30r5,10v-4,18,-25,44,-67,44v-31,0,-54,-12,-68,-33v-8,18,-32,33,-71,33xm140,-41v-5,-11,-8,-23,-9,-37v-8,-1,-18,-2,-27,-2v-35,0,-59,5,-59,32v0,17,13,27,37,27v26,0,47,-10,58,-20xm214,-162v-32,0,-47,21,-52,52r94,0r0,-12v0,-11,-4,-40,-42,-40","w":299},"\u00f8":{"d":"30,3r-13,-11r15,-18v-12,-15,-18,-37,-18,-64v0,-58,34,-93,84,-93v22,0,40,6,54,17r15,-17r13,11r-16,19v12,15,19,36,19,63v0,58,-33,93,-85,93v-22,0,-40,-5,-54,-17xm98,-18v35,0,55,-27,55,-72v0,-17,-3,-31,-8,-42r-84,99v9,10,21,15,37,15xm44,-90v0,17,2,31,7,42r85,-98v-9,-10,-22,-16,-38,-16v-35,0,-54,27,-54,72","w":196},"\u00bf":{"d":"89,-214v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21xm76,3v-39,0,-62,-20,-62,-54v0,-28,20,-45,41,-59r13,-8v10,-7,26,-15,26,-30v0,-14,-10,-22,-17,-29r17,-6v13,7,21,21,21,35v0,20,-15,30,-32,43r-13,9v-14,12,-24,23,-24,47v0,23,16,32,40,32v10,0,16,-1,22,-4v-7,-4,-12,-13,-12,-23v0,-11,8,-19,19,-19v10,0,19,8,19,21v0,28,-30,45,-58,45","w":156},"\u00a1":{"d":"51,-214v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21xm35,0r0,-62v0,-34,5,-100,9,-117r14,0v4,17,8,83,8,117r0,62r-31,0","w":101},"\u00ac":{"d":"34,-117r0,-19r149,0r0,19r0,0r0,78r-20,0r0,-78r-129,0"},"\u00ab":{"d":"169,-37r-80,-61r0,-6r80,-62r15,4r-60,61r60,60xm86,-37r-80,-61r0,-6r80,-62r15,4r-60,61r60,60","w":202,"k":{"T":4,"\u00dd":12,"Y":12}},"\u00bb":{"d":"117,-37r-16,-4r61,-60r-61,-61r16,-4r80,62r0,6xm34,-37r-16,-4r61,-60r-61,-61r16,-4r80,62r0,6","w":202,"k":{"T":4,"\u00dd":12,"Y":12}},"\u2026":{"d":"253,3v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21xm152,3v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21xm51,3v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21","w":303,"k":{"*":17,"\u00aa":50,"\u00ba":50,"\u201c":43,"\u2018":43,"\u201d":43,"\u2019":43}},"\u00c0":{"d":"-1,0r0,-15v5,-3,18,-5,32,-6r90,-232r25,0r84,232v15,1,28,3,33,6r0,15r-98,0r0,-15v5,-3,18,-6,33,-6r-20,-56r-102,0r-21,56r1,0v17,0,32,3,38,6r0,15r-95,0xm128,-215r-44,118r87,0xm144,-279r-51,-30v-11,-7,-16,-13,-16,-20v0,-9,7,-13,14,-13v7,0,13,6,20,13r41,42","w":261},"\u00c3":{"d":"-1,0r0,-15v5,-3,18,-5,32,-6r90,-232r25,0r84,232v15,1,28,3,33,6r0,15r-98,0r0,-15v5,-3,18,-6,33,-6r-20,-56r-102,0r-21,56r1,0v17,0,32,3,38,6r0,15r-95,0xm128,-215r-44,118r87,0xm83,-279r-10,-9v4,-21,17,-30,31,-30v21,0,37,17,58,17v9,0,16,-10,17,-17r10,10v-4,21,-17,29,-31,29v-21,0,-43,-16,-58,-16v-9,0,-16,9,-17,16","w":261},"\u00d5":{"d":"134,4v-73,0,-117,-52,-117,-131v0,-78,44,-130,117,-130v73,0,116,52,116,130v0,79,-43,131,-116,131xm134,-18v54,0,84,-41,84,-109v0,-67,-30,-108,-84,-108v-53,0,-85,41,-85,108v0,68,32,109,85,109xm85,-279r-10,-9v4,-21,17,-30,31,-30v21,0,37,17,58,17v9,0,16,-10,17,-17r10,10v-4,21,-17,29,-31,29v-21,0,-43,-16,-58,-16v-9,0,-16,9,-17,16","w":265,"k":{",":22,".":22,"\u2026":22}},"\u2013":{"d":"6,-100r0,-21r164,0r0,21r-164,0","w":175,"k":{"T":12,"V":13,"\u00dd":17,"Y":17,"A":13,"\u00c4":13,"\u00c5":13,"\u00c6":13,"\u00c0":13,"\u00c3":13,"X":13}},"\u2014":{"d":"6,-100r0,-21r340,0r0,21r-340,0","w":351,"k":{"T":12,"V":13,"\u00dd":17,"Y":17,"A":13,"\u00c4":13,"\u00c5":13,"\u00c6":13,"\u00c0":13,"\u00c3":13,"X":13}},"\u201c":{"d":"103,-172v-13,0,-21,-9,-21,-26v0,-30,18,-54,35,-61r11,6v-15,10,-24,28,-24,41v13,0,20,8,20,19v0,11,-8,21,-21,21xm39,-172v-13,0,-21,-9,-21,-26v0,-30,18,-54,35,-61r12,6v-15,10,-24,28,-24,41v13,0,19,8,19,19v0,11,-8,21,-21,21","w":147,"k":{",":43,".":43,"\u2026":43,"A":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u00c0":32,"\u00c3":32}},"\u201d":{"d":"94,-169r-11,-5v15,-10,24,-28,24,-41v-13,0,-20,-9,-20,-20v0,-12,8,-21,21,-21v13,0,21,10,21,27v0,30,-18,53,-35,60xm31,-169r-11,-5v15,-10,24,-28,24,-41v-13,0,-20,-9,-20,-20v0,-12,8,-21,21,-21v13,0,21,10,21,27v0,30,-18,53,-35,60","w":147,"k":{",":43,".":43,"\u2026":43,"A":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u00c0":32,"\u00c3":32}},"\u2018":{"d":"39,-172v-13,0,-21,-9,-21,-26v0,-30,18,-54,35,-61r12,6v-15,10,-24,28,-24,41v13,0,19,8,19,19v0,11,-8,21,-21,21","w":84,"k":{",":43,".":43,"\u2026":43,"A":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u00c0":32,"\u00c3":32}},"\u2019":{"d":"31,-169r-11,-5v15,-10,24,-28,24,-41v-13,0,-20,-9,-20,-20v0,-12,8,-21,21,-21v13,0,21,10,21,27v0,30,-18,53,-35,60","w":84,"k":{",":43,".":43,"\u2026":43,"A":32,"\u00c4":32,"\u00c5":32,"\u00c6":32,"\u00c0":32,"\u00c3":32}},"\u00f7":{"d":"108,-162v-11,0,-18,-8,-18,-18v0,-10,7,-18,18,-18v13,0,19,8,19,18v0,10,-8,18,-19,18xm34,-117r0,-19r149,0r0,19r-149,0xm108,-55v-11,0,-18,-8,-18,-18v0,-10,7,-18,18,-18v13,0,19,8,19,18v0,10,-8,18,-19,18"},"\u00ff":{"d":"34,79v-20,0,-33,-12,-33,-27v0,-13,10,-21,20,-21v11,0,20,7,20,20v0,8,-6,14,-6,14v14,-1,25,-18,34,-38r14,-32r-64,-153v-11,-1,-19,-3,-23,-5r0,-14r83,0r0,14v-5,3,-16,5,-30,5r49,118r47,-118v-15,0,-26,-2,-31,-5r0,-14r77,0r0,14v-4,2,-12,4,-23,5r-78,183v-14,34,-29,54,-56,54xm133,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm60,-215v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":192,"k":{",":43,".":43,"\u2026":43}},"\u00b7":{"d":"51,-89v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21","w":101},"\u2219":{"d":"51,-89v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,21,8,21,21v0,13,-8,21,-21,21","w":101},"\u00c2":{"d":"-1,0r0,-15v5,-3,18,-5,32,-6r90,-232r25,0r84,232v15,1,28,3,33,6r0,15r-98,0r0,-15v5,-3,18,-6,33,-6r-20,-56r-102,0r-21,56r1,0v17,0,32,3,38,6r0,15r-95,0xm128,-215r-44,118r87,0xm90,-279r-14,-5r44,-56r22,0r44,56r-14,5r-41,-39","w":261},"\u00ca":{"d":"20,0r0,-15v5,-3,18,-6,35,-6r3,0r0,-211v-17,0,-33,-3,-38,-6r0,-15r208,0r0,79r-16,0v-9,-14,-12,-43,-12,-58r-113,0r0,96r61,0v0,-16,5,-32,8,-37r16,0r0,93r-16,0v-3,-5,-8,-20,-8,-37r-61,0r0,96r118,0v0,-15,5,-47,13,-61r15,0r0,82r-213,0xm87,-279r-14,-5r44,-56r22,0r44,56r-14,5r-41,-39","w":248},"\u00c1":{"d":"-1,0r0,-15v5,-3,18,-5,32,-6r90,-232r25,0r84,232v15,1,28,3,33,6r0,15r-98,0r0,-15v5,-3,18,-6,33,-6r-20,-56r-102,0r-21,56r1,0v17,0,32,3,38,6r0,15r-95,0xm128,-215r-44,118r87,0xm105,-279r-8,-8r41,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-5,13,-16,20","w":261},"\u00cb":{"d":"20,0r0,-15v5,-3,18,-6,35,-6r3,0r0,-211v-17,0,-33,-3,-38,-6r0,-15r208,0r0,79r-16,0v-9,-14,-12,-43,-12,-58r-113,0r0,96r61,0v0,-16,5,-32,8,-37r16,0r0,93r-16,0v-3,-5,-8,-20,-8,-37r-61,0r0,96r118,0v0,-15,5,-47,13,-61r15,0r0,82r-213,0xm165,-291v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,19,8,19,21v0,13,-8,21,-19,21xm91,-291v-11,0,-19,-8,-19,-21v0,-13,8,-21,19,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":248},"\u00c8":{"d":"20,0r0,-15v5,-3,18,-6,35,-6r3,0r0,-211v-17,0,-33,-3,-38,-6r0,-15r208,0r0,79r-16,0v-9,-14,-12,-43,-12,-58r-113,0r0,96r61,0v0,-16,5,-32,8,-37r16,0r0,93r-16,0v-3,-5,-8,-20,-8,-37r-61,0r0,96r118,0v0,-15,5,-47,13,-61r15,0r0,82r-213,0xm153,-279r-50,-30v-11,-7,-16,-13,-16,-20v0,-9,7,-13,14,-13v7,0,13,6,20,13r41,42","w":248},"\u00cd":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,211v17,0,32,3,38,6r0,15r-105,0xm44,-279r-9,-8r41,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-5,13,-16,20","w":144},"\u00ce":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,211v17,0,32,3,38,6r0,15r-105,0xm32,-279r-14,-5r43,-56r23,0r43,56r-14,5r-40,-39","w":144},"\u00cf":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,211v17,0,32,3,38,6r0,15r-105,0xm109,-291v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21xm36,-291v-11,0,-20,-8,-20,-21v0,-13,9,-21,20,-21v11,0,20,8,20,21v0,13,-9,21,-20,21","w":144},"\u00cc":{"d":"20,0r0,-15v5,-3,21,-6,38,-6r0,-211v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,211v17,0,32,3,38,6r0,15r-105,0xm94,-279r-50,-30v-11,-7,-16,-13,-16,-20v0,-9,7,-13,14,-13v7,0,13,6,20,13r41,42","w":144},"\u00d3":{"d":"134,4v-73,0,-117,-52,-117,-131v0,-78,44,-130,117,-130v73,0,116,52,116,130v0,79,-43,131,-116,131xm134,-18v54,0,84,-41,84,-109v0,-67,-30,-108,-84,-108v-53,0,-85,41,-85,108v0,68,32,109,85,109xm108,-279r-9,-8r41,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-5,13,-16,20","w":265,"k":{",":22,".":22,"\u2026":22}},"\u00d4":{"d":"134,4v-73,0,-117,-52,-117,-131v0,-78,44,-130,117,-130v73,0,116,52,116,130v0,79,-43,131,-116,131xm134,-18v54,0,84,-41,84,-109v0,-67,-30,-108,-84,-108v-53,0,-85,41,-85,108v0,68,32,109,85,109xm92,-279r-14,-5r44,-56r22,0r44,56r-14,5r-41,-39","w":265,"k":{",":22,".":22,"\u2026":22}},"\u00d2":{"d":"134,4v-73,0,-117,-52,-117,-131v0,-78,44,-130,117,-130v73,0,116,52,116,130v0,79,-43,131,-116,131xm134,-18v54,0,84,-41,84,-109v0,-67,-30,-108,-84,-108v-53,0,-85,41,-85,108v0,68,32,109,85,109xm155,-279r-51,-30v-11,-7,-15,-13,-15,-20v0,-9,7,-13,14,-13v7,0,12,6,19,13r41,42","w":265,"k":{",":22,".":22,"\u2026":22}},"\u00da":{"d":"156,4v-71,0,-98,-38,-98,-102r0,-134v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,135v0,55,25,77,71,77v48,0,70,-29,70,-81r0,-131v-17,0,-32,-3,-38,-6r0,-15r100,0r0,15v-6,3,-21,6,-38,6r0,131v0,56,-29,105,-96,105xm139,-279r-8,-8r41,-42v6,-7,13,-13,20,-13v7,0,14,4,14,13v0,7,-5,13,-16,20","w":307,"k":{",":36,".":36,"\u2026":36,"A":17,"\u00c4":17,"\u00c5":17,"\u00c6":17,"\u00c0":17,"\u00c3":17}},"\u00db":{"d":"156,4v-71,0,-98,-38,-98,-102r0,-134v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,135v0,55,25,77,71,77v48,0,70,-29,70,-81r0,-131v-17,0,-32,-3,-38,-6r0,-15r100,0r0,15v-6,3,-21,6,-38,6r0,131v0,56,-29,105,-96,105xm117,-279r-14,-5r43,-56r23,0r43,56r-14,5r-40,-39","w":307,"k":{",":36,".":36,"\u2026":36,"A":17,"\u00c4":17,"\u00c5":17,"\u00c6":17,"\u00c0":17,"\u00c3":17}},"\u00d9":{"d":"156,4v-71,0,-98,-38,-98,-102r0,-134v-17,0,-33,-3,-38,-6r0,-15r105,0r0,15v-6,3,-21,6,-38,6r0,135v0,55,25,77,71,77v48,0,70,-29,70,-81r0,-131v-17,0,-32,-3,-38,-6r0,-15r100,0r0,15v-6,3,-21,6,-38,6r0,131v0,56,-29,105,-96,105xm165,-279r-51,-30v-11,-7,-15,-13,-15,-20v0,-9,7,-13,14,-13v7,0,13,6,20,13r41,42","w":307,"k":{",":36,".":36,"\u2026":36,"A":17,"\u00c4":17,"\u00c5":17,"\u00c6":17,"\u00c0":17,"\u00c3":17}},"\u00af":{"d":"17,-208r0,-21r101,0r0,21r-101,0","w":135},"\u02c9":{"d":"17,-208r0,-21r101,0r0,21r-101,0","w":135},"\u00b8":{"d":"34,79v-9,0,-18,-3,-24,-6r-3,-17v0,0,15,4,25,4v10,0,16,-4,16,-12v0,-11,-13,-17,-27,-21r0,-3r21,-28r20,0r-17,21v15,6,25,17,25,31v0,18,-12,31,-36,31","w":90},"\u00a4":{"d":"35,-60r-14,-15r17,-16v-6,-10,-10,-23,-10,-37v0,-15,5,-27,11,-37r-18,-18r14,-14r17,17v9,-6,20,-10,32,-10v13,0,24,4,33,10r17,-17r14,14r-18,17v7,10,11,23,11,38v0,14,-4,27,-10,37v8,8,17,16,17,16r-14,15r-16,-16v-9,6,-21,10,-34,10v-13,0,-24,-4,-33,-11xm84,-83v23,0,38,-18,38,-45v0,-27,-15,-45,-38,-45v-22,0,-38,18,-38,45v0,25,16,45,38,45","w":170},"\u00bc":{"d":"256,0r0,-13v4,-3,15,-5,29,-5r0,-16r-88,0r0,-14r100,-93r14,0r0,90r34,0r-3,17r-31,0r0,16v13,0,25,2,29,5r0,13r-84,0xm35,-113r0,-12v4,-3,23,-6,37,-6r10,0r0,-100v-9,7,-26,15,-45,12r-7,-19v25,-1,52,-10,64,-15r13,0r0,122r4,0v14,0,32,3,38,6r0,12r-114,0xm120,3r-17,-9r137,-256r17,9xm285,-108r-61,57r61,0r0,-57","w":360},"\u00be":{"d":"256,0r0,-13v4,-3,15,-5,29,-5r0,-16r-88,0r0,-14r100,-93r14,0r0,90r34,0r-3,17r-31,0r0,16v13,0,25,2,29,5r0,13r-84,0xm86,-110v-33,0,-56,-14,-56,-29v0,-10,5,-17,16,-17v10,0,17,6,17,14v0,4,-3,8,-7,11v7,1,17,3,28,3v28,0,47,-9,47,-24v0,-18,-17,-24,-52,-24r-20,0r0,-18r17,0v37,0,51,-10,51,-24v0,-15,-16,-20,-40,-20v-11,0,-20,2,-27,5v4,3,8,7,8,11v0,8,-6,14,-17,14v-12,0,-16,-8,-16,-16v0,-15,26,-31,58,-31v32,0,60,12,60,36v0,14,-12,27,-29,32v21,4,34,17,34,35v0,27,-32,42,-72,42xm120,3r-17,-9r137,-256r17,9xm285,-108r-61,57r61,0r0,-57","w":360},"\u00a0":{"w":78}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Copyright (c) 2006. All rights reserved. Parry is a design by Artur Schmal,
 * published by OurType. www.ourtype.com
 * 
 * Trademark:
 * Parry is a trademark of OurType.
 * 
 * Full name:
 * Parry-NormalItalic
 * 
 * Manufacturer:
 * OurType
 * 
 * Designer:
 * Artur Schmal
 * 
 * Vendor URL:
 * http://www.ourtype.com
 * 
 * License information:
 * http://www.ourtype.com
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Parry","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 6 0 0 2 0 4","ascent":"275","descent":"-85","x-height":"3","bbox":"-60 -349 433 79","underline-thickness":"17.64","underline-position":"-18","slope":"-12","stemh":"20","stemv":"30","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":78},"!":{"d":"37,-75v0,-20,8,-83,15,-116r13,-62r31,0r-13,62v-7,33,-23,91,-34,116r-12,0xm13,-11v0,-14,11,-30,25,-30v10,0,15,6,15,16v0,14,-11,29,-25,29v-11,0,-15,-5,-15,-15","w":101},"\"":{"d":"94,-186v-1,-7,-2,-33,3,-54r3,-13r28,0r-3,13v-5,22,-13,41,-20,54r-11,0xm42,-186v-1,-7,-2,-33,3,-54r3,-13r28,0r-3,13v-5,22,-13,41,-20,54r-11,0","w":113},"#":{"d":"31,-162r0,-19r36,0r8,-75r21,3r-7,72r60,0r7,-75r21,3r-6,72r31,0r0,19r-34,0r-6,71r35,0r0,19r-37,0r-7,75r-21,-3r7,-72r-60,0r-7,75r-21,-3r6,-72r-32,0r0,-19r34,0r7,-71r-35,0xm87,-162r-6,71r60,0r6,-71r-60,0"},"$":{"d":"181,-163v-6,-14,-5,-43,0,-58v-6,-6,-19,-11,-33,-14r-21,93r12,6v30,15,52,33,52,64v0,39,-26,76,-88,76r-7,0r-6,30r-14,0r6,-31v-18,-4,-32,-14,-42,-29v-4,10,-11,23,-20,29r-13,0r18,-96r14,0v5,12,5,32,4,48v8,13,25,23,44,27r22,-102r-8,-4v-27,-14,-50,-30,-50,-62v0,-45,32,-71,80,-71r7,0r5,-24r14,0r-5,26v15,4,26,10,34,19v4,-8,11,-17,16,-21r13,0r-20,94r-14,0xm124,-113r-2,-1r-21,97r3,0v35,0,56,-21,56,-49v0,-25,-14,-36,-36,-47xm80,-191v0,23,16,33,35,43r19,-88v-32,0,-54,18,-54,45"},"%":{"d":"77,-7r192,-256r14,10r-192,256xm82,-110v-40,0,-59,-24,-59,-56v0,-46,34,-90,88,-90v39,0,59,24,59,56v0,46,-35,90,-88,90xm84,-128v39,0,61,-38,61,-72v0,-21,-12,-38,-37,-38v-40,0,-60,38,-60,72v0,21,11,38,36,38xm181,-53v0,-46,36,-90,89,-90v39,0,59,24,59,56v0,46,-36,90,-89,90v-39,0,-59,-24,-59,-56xm207,-53v0,21,10,38,36,38v39,0,61,-38,61,-72v0,-21,-11,-38,-37,-38v-39,0,-60,38,-60,72","w":360},"&":{"d":"181,-120r0,-15r97,0r0,15v-7,3,-22,6,-39,6r-1,0v-7,26,-22,55,-45,77v11,13,24,22,47,22v7,0,16,-2,22,-5r-6,17v-9,6,-21,7,-31,7v-24,0,-39,-6,-54,-23v-24,15,-52,23,-84,23v-50,0,-80,-25,-80,-60v0,-45,35,-73,75,-87v-8,-15,-12,-27,-12,-41v0,-44,33,-73,78,-73v29,0,46,16,46,39v0,33,-36,63,-77,77r3,3r59,82r2,3v18,-18,31,-41,35,-61v-15,0,-29,-3,-35,-6xm94,-15v23,0,45,-7,64,-20r-3,-4r-58,-81v-3,-3,-4,-6,-6,-9v-31,14,-53,38,-53,69v0,28,22,45,56,45xm98,-188v0,12,4,21,10,33v25,-10,59,-33,59,-60v0,-14,-8,-23,-25,-23v-28,0,-44,24,-44,50","w":272,"k":{"T":18,"W":23,"V":25,"Y":17,"\u00dd":17}},"\u2019":{"d":"45,-170r-11,-6v18,-10,30,-26,33,-38v-10,-1,-12,-10,-12,-17v0,-13,11,-26,24,-26v11,0,17,7,17,17v0,32,-26,62,-51,70","w":101,"k":{"a":21,"\u00e1":21,"\u00e2":21,"\u00e4":21,"\u00e0":21,"\u00e5":21,"\u00e3":21,"c":21,"d":21,"e":21,"o":21,"q":21,"\u00f8":21,"\u00f0":21,"\u00e7":21,"\u00e9":21,"\u00ea":21,"\u00eb":21,"\u00e8":21,"\u00f3":21,"\u00f4":21,"\u00f6":21,"\u00f2":21,"\u00f5":21,"A":42,"\u00c1":42,"\u00c2":42,"\u00c4":42,"\u00c0":42,"\u00c5":42,"\u00c3":42,"g":27,",":36,".":36,"\u2026":36,"s":10,"J":34,":":6,";":6,"\u00bf":39}},"(":{"d":"59,45v-22,-18,-43,-50,-43,-104v0,-112,63,-178,103,-203r16,6v-47,34,-92,103,-92,200v0,43,12,73,34,95","w":110,"k":{"f":-21,"\u00df":-21,"j":-25}},")":{"d":"-21,39v47,-34,91,-102,91,-200v0,-43,-12,-73,-34,-95r18,-6v22,18,42,50,42,104v0,76,-33,159,-101,203","w":110},"*":{"d":"144,-145v-9,-6,-41,-33,-41,-33r-2,-1r0,2v0,0,9,41,9,52v0,8,-3,15,-12,15v-8,0,-11,-7,-11,-15v0,-11,9,-52,9,-52r0,-2r-2,1v0,0,-31,27,-41,33v-6,4,-15,5,-19,-2v-4,-8,2,-14,8,-18v10,-6,49,-18,49,-18r2,-1r-2,-1v0,0,-39,-14,-49,-19v-6,-4,-12,-10,-8,-17v4,-8,13,-7,19,-3v10,6,41,34,41,34r2,1r0,-2v0,0,-9,-41,-9,-52v0,-7,3,-16,11,-16v9,0,12,9,12,16v0,11,-9,52,-9,52r0,2r2,-1v0,0,32,-28,41,-34v6,-4,15,-5,19,3v4,7,-2,13,-8,17v-10,5,-49,19,-49,19r-2,1r2,1v0,0,39,12,49,18v6,4,12,10,8,18v-4,7,-13,6,-19,2","w":163,"k":{",":28,".":28,"\u2026":28}},"+":{"d":"33,-82r0,-19r56,0r0,-55r19,0r0,55r55,0r0,19r-55,0r0,54r-19,0r0,-54r-56,0","w":196},",":{"d":"13,-14v0,-13,11,-27,24,-27v11,0,16,7,16,17v0,32,-25,61,-50,70r-11,-5v17,-10,30,-25,33,-38v-10,-1,-12,-10,-12,-17","w":101,"k":{"C":17,"G":17,"O":17,"Q":17,"\u00d8":17,"\u00c7":17,"\u00d3":17,"\u00d4":17,"\u00d6":17,"\u00d2":17,"\u00d5":17,"*":42,"\u2018":42,"\u201c":42,"\u2019":42,"\u201d":42,"U":35,"\u00da":35,"\u00db":35,"\u00dc":35,"\u00d9":35,"T":35,"W":46,"V":42,"Y":43,"\u00dd":43,"v":21,"w":21,"t":27,"\u00ab":21,"u":34,"y":34,"\u00fd":34}},"-":{"d":"17,-100r0,-21r104,0r0,21r-104,0","w":132,"k":{"C":-18,"G":-18,"O":-18,"Q":-18,"\u00d8":-18,"\u00c7":-18,"\u00d3":-18,"\u00d4":-18,"\u00d6":-18,"\u00d2":-18,"\u00d5":-18,"T":21,"W":28,"V":28,"Y":35,"\u00dd":35,"A":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":17,"Z":7}},".":{"d":"14,-11v0,-14,11,-30,25,-30v10,0,16,6,16,16v0,14,-11,29,-25,29v-11,0,-16,-5,-16,-15","w":101,"k":{"C":17,"G":17,"O":17,"Q":17,"\u00d8":17,"\u00c7":17,"\u00d3":17,"\u00d4":17,"\u00d6":17,"\u00d2":17,"\u00d5":17,"*":42,"\u2018":42,"\u201c":42,"\u2019":42,"\u201d":42,"U":35,"\u00da":35,"\u00db":35,"\u00dc":35,"\u00d9":35,"T":35,"W":46,"V":42,"Y":43,"\u00dd":43,"v":21,"w":21,"t":27,"\u00ab":21,"u":34,"y":34,"\u00fd":34}},"\/":{"d":"7,3r-14,-10r164,-256r15,10","w":149,"k":{"A":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31}},"0":{"d":"21,-75v0,-98,51,-181,120,-181v42,0,66,28,66,79v0,98,-51,181,-120,181v-42,0,-66,-28,-66,-79xm90,-17v56,0,87,-92,87,-159v0,-35,-9,-59,-39,-59v-56,0,-87,92,-87,159v0,35,9,59,39,59"},"1":{"d":"26,0r0,-15v7,-3,29,-6,46,-6r8,0r41,-197v-10,10,-36,19,-54,15r-9,-21v31,-1,66,-16,84,-29r15,0r-48,232r7,0v17,0,39,3,46,6r0,15r-136,0"},"2":{"d":"-1,0r0,-18r85,-69v47,-38,79,-66,79,-104v0,-26,-13,-44,-48,-44v-21,0,-33,7,-43,14v6,3,12,13,12,23v0,15,-10,22,-22,22v-11,0,-18,-8,-18,-19v0,-31,36,-61,78,-61v44,0,71,24,71,61v0,55,-52,92,-104,130r-54,40r112,0v4,-16,13,-44,24,-57r16,0r-17,82r-171,0"},"3":{"d":"35,-24v10,4,21,7,41,7v46,0,72,-28,72,-60v0,-27,-18,-41,-54,-41r-12,0r0,-23r7,0v52,0,78,-29,78,-59v0,-22,-13,-35,-43,-35v-20,0,-32,5,-41,11v6,3,11,11,11,21v0,15,-11,23,-22,23v-11,0,-19,-8,-19,-20v0,-28,37,-56,79,-56v38,0,66,22,66,55v0,38,-32,63,-66,70v27,4,47,24,47,52v0,55,-49,83,-99,83v-40,0,-67,-16,-67,-43v0,-17,8,-29,22,-29v9,0,17,6,17,16v0,15,-8,22,-17,28"},"4":{"d":"11,-62r0,-17r162,-174r17,0r-36,170r36,0r-7,21r-33,0r-9,41v16,0,32,3,39,6r0,15r-108,0r0,-15v7,-3,22,-6,39,-6r1,0r9,-41r-110,0xm150,-204r-111,121r86,0"},"5":{"d":"32,-24v10,4,23,7,43,7v49,0,77,-34,77,-73v0,-30,-15,-48,-56,-48v-17,0,-30,3,-44,7r-4,0r28,-122r131,0r-7,25r-107,0r-18,75v13,-3,19,-5,33,-5v52,0,75,31,75,67v0,56,-47,95,-106,95v-37,0,-67,-16,-67,-43v0,-17,8,-29,22,-29v9,0,17,6,17,16v0,15,-8,22,-17,28"},"6":{"d":"28,-77v0,-98,51,-179,132,-179v35,0,54,18,54,39v0,18,-11,31,-26,31v-8,0,-16,-5,-16,-15v0,-14,9,-26,19,-30v-6,-4,-14,-5,-28,-5v-52,0,-88,48,-100,110v13,-18,33,-33,64,-33v41,0,66,28,66,66v0,49,-34,97,-93,97v-44,0,-72,-30,-72,-81xm115,-135v-23,0,-43,13,-55,26v-1,12,-2,22,-2,34v0,41,15,60,45,60v41,0,60,-40,60,-75v0,-31,-20,-45,-48,-45"},"7":{"d":"58,-228r5,-25r166,0r-5,24v-66,60,-154,149,-154,229r-26,0v-1,-3,-2,-7,-2,-11v0,-68,101,-171,156,-217r-140,0"},"8":{"d":"21,-51v0,-38,28,-67,64,-80v-19,-13,-32,-27,-32,-50v0,-44,36,-75,85,-75v36,0,62,18,62,52v0,36,-33,66,-60,75v24,15,40,32,40,57v0,46,-37,76,-90,76v-41,0,-69,-20,-69,-55xm114,-114r-12,-7v-28,11,-53,35,-53,68v0,24,15,38,45,38v35,0,56,-23,56,-53v0,-22,-16,-34,-36,-46xm82,-188v0,24,17,36,32,45r9,5v29,-13,49,-39,49,-65v0,-21,-13,-33,-37,-33v-37,0,-53,25,-53,48"},"9":{"d":"15,-35v0,-17,11,-31,26,-31v9,0,17,5,17,15v0,14,-10,26,-20,30v6,4,14,6,28,6v52,0,88,-49,101,-111v-13,18,-33,33,-64,33v-41,0,-66,-28,-66,-66v0,-49,33,-97,92,-97v44,0,72,31,72,82v0,101,-52,178,-131,178v-32,0,-55,-15,-55,-39xm114,-117v23,0,44,-13,55,-26v1,-11,3,-22,3,-34v0,-41,-15,-59,-45,-59v-41,0,-61,39,-61,74v0,31,20,45,48,45"},":":{"d":"58,-135v-11,0,-16,-5,-16,-15v0,-14,11,-30,26,-30v10,0,15,5,15,15v0,14,-11,30,-25,30xm13,-11v0,-14,11,-30,25,-30v10,0,15,6,15,16v0,14,-11,29,-25,29v-11,0,-15,-5,-15,-15","w":101,"k":{"\u00ab":11}},";":{"d":"58,-135v-11,0,-16,-5,-16,-15v0,-14,11,-30,26,-30v10,0,15,5,15,15v0,14,-11,30,-25,30xm13,-14v0,-13,11,-27,24,-27v11,0,16,7,16,17v0,32,-25,61,-50,70r-11,-5v17,-10,30,-25,33,-38v-10,-1,-12,-10,-12,-17","w":101,"k":{"\u00ab":11}},"<":{"d":"33,-85r0,-15r120,-67r8,18r-102,56r102,56r-8,18","w":196},"=":{"d":"33,-110r0,-19r130,0r0,19r-130,0xm33,-54r0,-19r130,0r0,19r-130,0","w":196},">":{"d":"44,-19r-8,-18r102,-56r-102,-56r8,-18r119,67r0,15","w":196},"?":{"d":"49,-70v-9,-7,-14,-17,-14,-27v0,-22,14,-34,41,-51r15,-10v20,-13,34,-28,34,-50v0,-17,-11,-28,-32,-28v-10,0,-17,1,-24,4v4,4,8,11,8,18v0,13,-8,23,-21,23v-11,0,-17,-10,-17,-19v0,-25,31,-46,65,-46v35,0,52,20,52,45v0,30,-22,51,-53,69r-14,8v-16,10,-33,21,-33,36v0,11,6,17,10,23xm23,-11v0,-14,11,-30,25,-30v10,0,15,6,15,16v0,14,-10,29,-25,29v-11,0,-15,-5,-15,-15","w":156,"k":{"\u00ab":24,"\u00bb":7}},"@":{"d":"89,-66v0,-69,41,-117,95,-117v25,0,38,11,44,18v4,-8,8,-14,14,-18r15,0r-26,124v-1,6,-5,17,-5,25v0,9,2,14,16,14v35,0,70,-57,70,-121v0,-60,-39,-94,-107,-94v-88,0,-166,66,-166,173v0,64,31,107,106,107v30,0,46,-6,58,-11r-5,18v-13,10,-37,16,-64,16v-81,0,-126,-54,-126,-126v0,-113,78,-199,200,-199v83,0,134,46,134,114v0,74,-46,146,-106,146v-22,0,-34,-11,-37,-27v-8,13,-25,27,-53,27v-33,0,-57,-24,-57,-69xm218,-131v1,-7,2,-13,4,-19v-8,-6,-18,-10,-34,-10v-52,0,-70,52,-70,94v0,32,16,46,37,46v20,0,34,-9,44,-20v1,-8,3,-14,4,-19","w":350},"A":{"d":"143,0r0,-15v8,-3,23,-6,40,-6r-9,-56r-103,0r-34,56v16,0,31,3,38,6r0,15r-98,0r0,-15v7,-3,22,-6,37,-6r138,-232r25,0r36,232v13,1,24,4,30,6r0,15r-100,0xm153,-217r-71,120r89,0","w":258},"B":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r120,0v49,0,78,18,78,56v0,35,-27,60,-60,68v19,3,48,17,48,52v0,45,-34,77,-100,77r-131,0xm200,-77v0,-24,-15,-40,-50,-40r-60,0r-21,96r62,0v49,0,69,-24,69,-56xm165,-232r-52,0r-19,94r59,0v35,0,59,-26,59,-57v0,-25,-16,-37,-47,-37","w":250,"k":{"-":-11,"\u2013":-11,"\u2014":-11,"W":7,"V":7,"Y":7,"\u00dd":7}},"C":{"d":"17,-89v0,-87,59,-168,143,-168v28,0,48,10,60,24v3,-8,12,-20,18,-24r12,0r-19,94r-14,0v-5,-12,-5,-34,-2,-50v-9,-13,-27,-22,-53,-22v-67,0,-114,70,-114,146v0,45,22,71,60,71v45,0,73,-32,93,-65r7,15v-13,38,-50,72,-103,72v-55,0,-88,-37,-88,-93","w":240},"D":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r120,0v66,0,106,32,106,95v0,85,-56,158,-150,158r-121,0xm165,-232r-52,0r-44,211r52,0v75,0,119,-61,119,-137v0,-56,-31,-74,-75,-74","w":277,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"E":{"d":"45,-238r0,-15r214,0r-17,79r-17,0v-3,-15,-3,-43,1,-58r-113,0r-19,96r64,0v3,-13,12,-32,16,-37r16,0r-20,93r-15,0v-1,-9,-3,-25,-1,-37r-64,0r-21,96r118,0v3,-15,13,-47,24,-61r17,0r-17,82r-211,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6","w":258,"k":{"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u00f0":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"F":{"d":"45,-238r0,-15r214,0r-17,79r-17,0v-3,-15,-3,-43,1,-58r-113,0r-20,98r65,0v3,-13,12,-31,16,-36r16,0r-20,93r-15,0v-1,-9,-3,-25,-1,-37r-65,0r-20,93r8,0v17,0,33,3,40,6r0,15r-117,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6","w":239,"k":{"a":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u00f0":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"A":28,"\u00c1":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,"\u00c5":28,"\u00c3":28,"g":8,",":34,".":34,"\u2026":34,"s":8,"\/":21,"J":21,"\u00c6":35,"u":-7,"y":-7,"\u00fd":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"\u00ff":-7}},"G":{"d":"17,-89v0,-87,59,-168,143,-168v28,0,48,10,60,24v3,-8,12,-20,18,-24r12,0r-19,94r-14,0v-5,-12,-5,-34,-2,-50v-9,-13,-27,-22,-53,-22v-67,0,-114,70,-114,146v0,45,21,71,59,71v31,0,53,-12,70,-33r8,-35v-14,-1,-27,-2,-32,-5r0,-16r92,0r0,16v-6,3,-18,4,-32,5r-20,90r-16,0v-3,-7,-5,-19,-5,-31v-15,19,-37,31,-68,31v-55,0,-87,-37,-87,-93","w":253},"H":{"d":"45,-238r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-1,0r-19,93r128,0r20,-93v-17,0,-33,-3,-40,-6r0,-15r109,0r0,15v-7,3,-23,6,-40,6r0,0r-44,211v17,0,32,3,39,6r0,15r-109,0r0,-15v7,-3,23,-6,40,-6r1,0r20,-99r-128,0r-21,99v17,0,32,3,39,6r0,15r-108,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6","w":299},"I":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-1,0r-44,211v17,0,32,3,39,6r0,15r-108,0","w":142},"J":{"d":"-6,-13v0,-14,10,-25,24,-25v11,0,19,7,19,17v0,13,-10,21,-10,21v18,0,39,-19,47,-58r37,-174v-17,0,-32,-3,-39,-6r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-1,0r-36,173v-12,57,-39,73,-76,73v-18,0,-34,-11,-34,-27","w":163,"k":{"a":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"c":8,"d":8,"e":8,"o":8,"q":8,"\u00f8":8,"\u00f0":8,"\u00e7":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00e8":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"A":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,",":21,".":21,"\u2026":21,"J":8}},"K":{"d":"45,-238r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-1,0r-22,107r151,-107v-14,0,-26,-3,-32,-6r0,-15r92,0r0,15v-6,2,-16,5,-28,5r-125,90r85,122v17,0,32,3,39,6r0,15r-106,0r0,-15v6,-3,18,-5,32,-6r-72,-106r-42,29r-16,77v17,0,32,3,39,6r0,15r-108,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6","w":288,"k":{"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"-":23,"\u2013":23,"\u2014":23,"v":6,"w":6,"a":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u00f0":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"J":-4,"u":6,"y":6,"\u00fd":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u00ff":6}},"L":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-1,0r-44,211r114,0v3,-15,13,-47,24,-61r17,0r-17,82r-207,0","w":223,"k":{"C":-11,"G":-11,"O":-11,"Q":-11,"\u00d8":-11,"\u00c7":-11,"\u00d3":-11,"\u00d4":-11,"\u00d6":-11,"\u00d2":-11,"\u00d5":-11,"*":20,"\\":13,"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"T":20,"W":23,"V":23,"Y":20,"\u00dd":20,"v":-11,"w":-11,"a":-15,"\u00b0":25,"\u2122":41,"\u00e1":-15,"\u00e2":-15,"\u00e4":-15,"\u00e0":-15,"\u00e5":-15,"\u00e3":-15,"\u00aa":14,"\u00ba":14,"c":-15,"d":-15,"e":-15,"o":-15,"q":-15,"\u00f8":-15,"\u00f0":-15,"\u00e7":-15,"\u00e9":-15,"\u00ea":-15,"\u00eb":-15,"\u00e8":-15,"\u00f3":-15,"\u00f4":-15,"\u00f6":-15,"\u00f2":-15,"\u00f5":-15,"J":-7,"u":-8,"y":-8,"\u00fd":-8,"\u00fa":-8,"\u00fb":-8,"\u00fc":-8,"\u00f9":-8,"\u00ff":-8,"&":-15}},"M":{"d":"44,-238r0,-15r73,0r48,202r124,-202r64,0r0,15v-7,3,-22,6,-39,6r-1,0r-44,211v17,0,32,3,39,6r0,15r-108,0r0,-15v7,-3,22,-6,39,-6r1,0r36,-173r-120,197r-8,0r-49,-200r-36,176v17,0,31,3,38,6r0,15r-102,0r0,-15v7,-3,22,-6,39,-6r2,0r44,-211r-1,0v-17,0,-32,-3,-39,-6","w":341},"N":{"d":"45,-238r0,-15r67,0r101,206r40,-185v-15,0,-29,-3,-35,-6r0,-15r94,0r0,15v-6,3,-21,6,-37,6r-50,235r-20,0r-103,-212r-39,188v17,0,31,3,38,6r0,15r-101,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6","w":289},"O":{"d":"17,-89v0,-84,57,-168,143,-168v63,0,95,34,95,92v0,84,-58,169,-144,169v-63,0,-94,-35,-94,-93xm48,-89v0,45,20,71,64,71v65,0,112,-71,112,-147v0,-45,-21,-70,-65,-70v-64,0,-111,70,-111,146","w":260,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"P":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r121,0v49,0,80,21,80,62v0,52,-39,93,-118,93v-16,0,-32,-2,-42,-4r-17,81r8,0v17,0,33,3,40,6r0,15r-117,0xm166,-232r-53,0r-22,109v8,2,22,3,40,3v62,0,84,-37,84,-70v0,-28,-18,-42,-49,-42","w":229,"k":{"C":-14,"G":-14,"O":-14,"Q":-14,"\u00d8":-14,"\u00c7":-14,"\u00d3":-14,"\u00d4":-14,"\u00d6":-14,"\u00d2":-14,"\u00d5":-14,"-":-18,"\u2013":-18,"\u2014":-18,"v":-24,"w":-24,"a":-8,"b":-20,"h":-20,"k":-20,"l":-20,"\u00fe":-20,"\u00ab":-10,"\u00e1":-8,"\u00e2":-8,"\u00e4":-8,"\u00e0":-8,"\u00e5":-8,"\u00e3":-8,"c":-8,"d":-8,"e":-8,"o":-8,"q":-8,"\u00f8":-8,"\u00f0":-8,"\u00e7":-8,"\u00e9":-8,"\u00ea":-8,"\u00eb":-8,"\u00e8":-8,"\u00f3":-8,"\u00f4":-8,"\u00f6":-8,"\u00f2":-8,"\u00f5":-8,"A":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":21,".":21,"\u2026":21,"\/":10,"J":14,"\u00c6":21,"u":-18,"y":-18,"\u00fd":-18,"\u00fa":-18,"\u00fb":-18,"\u00fc":-18,"\u00f9":-18,"\u00ff":-18,"\u00bb":-14,"i":-11,"\u00ed":-11}},"Q":{"d":"17,-89v0,-84,57,-168,143,-168v63,0,95,34,95,92v0,73,-44,147,-112,165v14,1,25,10,29,25r2,10v4,14,11,21,23,21v7,0,11,-1,18,-4r-5,18v-8,6,-16,9,-30,9v-24,0,-34,-19,-37,-38r-2,-10v-3,-15,-9,-27,-30,-27v-63,0,-94,-35,-94,-93xm48,-89v0,45,20,71,64,71v65,0,112,-71,112,-147v0,-45,-21,-70,-65,-70v-64,0,-111,70,-111,146","w":260,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"R":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r120,0v49,0,80,20,80,59v0,32,-27,71,-79,77v15,3,37,15,29,48r-4,17v-5,23,0,34,23,34v7,0,15,-2,21,-5r-6,17v-7,6,-17,10,-28,10v-30,0,-48,-18,-39,-56r4,-17v6,-25,-1,-42,-30,-43r-47,0r-20,91v17,0,32,3,39,6r0,15r-108,0xm165,-232r-52,0r-20,100r47,0v48,0,74,-30,74,-61v0,-28,-18,-39,-49,-39","w":250,"k":{"W":8,"V":8,"Y":8,"\u00dd":8}},"S":{"d":"3,3r18,-96r14,0v4,12,5,32,4,48v10,17,34,28,61,28v35,0,56,-21,56,-49v0,-25,-14,-34,-36,-45r-23,-11v-28,-14,-52,-29,-52,-64v0,-45,34,-71,82,-71v25,0,44,9,55,21v4,-8,10,-17,16,-21r13,0r-20,94r-14,0v-5,-14,-5,-43,0,-58v-8,-8,-28,-15,-48,-15v-32,0,-53,18,-53,45v0,24,17,32,36,42r23,11v30,15,53,31,53,65v0,41,-28,77,-90,77v-28,0,-49,-9,-62,-30v-4,10,-12,23,-21,29r-12,0","w":209,"k":{"A":-4,"\u00c1":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u00c5":-4,"\u00c3":-4}},"T":{"d":"28,-174r17,-79r215,0r-17,79r-17,0v-3,-15,-1,-43,2,-58r0,-3r-65,0r-45,214v17,0,32,3,39,6r0,15r-108,0r0,-15v7,-3,22,-6,39,-6r1,0r45,-214r-65,0r-1,3v-3,15,-13,44,-23,58r-17,0","w":243,"k":{"-":14,"\u2013":14,"\u2014":14,"a":25,"\u00ab":21,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"c":23,"d":23,"e":23,"o":23,"q":23,"\u00f8":23,"\u00f0":23,"\u00e7":23,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"g":8,",":35,".":35,"\u2026":35,"s":4,"\/":17,"J":15,"\u00c6":28,"&":8,"\u00bb":17,"z":6}},"U":{"d":"37,-238r0,-15r108,0r0,15v-7,3,-23,6,-40,6r0,0r-29,139v-2,10,-3,19,-3,27v0,34,20,48,58,48v51,0,76,-28,87,-80r28,-134v-17,0,-32,-3,-39,-6r0,-15r102,0r0,15v-7,3,-22,6,-39,6r0,0r-28,134v-12,58,-45,102,-115,102v-57,0,-83,-23,-83,-64v0,-10,0,-21,3,-34r29,-138v-17,0,-32,-3,-39,-6","w":292,"k":{"a":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u00f0":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"A":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,",":35,".":35,"\u2026":35,"J":15,"\u00c6":14,"&":8,"m":4,"n":4,"p":4,"r":4,"\u00f1":4}},"V":{"d":"32,-238r0,-15r102,0r0,15v-7,3,-23,6,-40,6r0,0r29,193r117,-193v-17,0,-32,-3,-39,-6r0,-15r94,0r0,15v-6,3,-17,6,-30,6r-144,235r-21,0r-36,-235v-14,0,-26,-3,-32,-6","w":271,"k":{"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"-":25,"\u2013":25,"\u2014":25,"v":10,"w":10,"a":32,"\u00ab":25,"\u00e1":21,"\u00e2":21,"\u00e4":21,"\u00e0":21,"\u00e5":21,"\u00e3":21,"c":32,"d":32,"e":32,"o":32,"q":32,"\u00f8":32,"\u00f0":32,"\u00e7":32,"\u00e9":15,"\u00ea":15,"\u00eb":15,"\u00e8":15,"\u00f3":15,"\u00f4":15,"\u00f6":15,"\u00f2":15,"\u00f5":15,"A":42,"\u00c1":42,"\u00c2":42,"\u00c4":42,"\u00c0":42,"\u00c5":42,"\u00c3":42,"g":21,",":49,".":49,"\u2026":49,"s":15,"J":17,"\u00c6":42,"u":13,"y":13,"\u00fd":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"\u00ff":13,"&":15,"\u00bb":21,"z":11,"m":7,"n":7,"p":7,"r":7,"\u00f1":7,":":13,";":13}},"W":{"d":"339,-238r0,-15r94,0r0,15v-6,3,-18,6,-31,6r-140,235r-19,0r-20,-202r-102,202r-21,0r-36,-235v-14,0,-26,-3,-32,-6r0,-15r102,0r0,15v-7,3,-23,6,-40,6r0,0r28,187r107,-211r19,0r19,210r112,-186r-1,0v-17,0,-32,-3,-39,-6","w":405,"k":{"C":11,"G":11,"O":11,"Q":11,"\u00d8":11,"\u00c7":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"-":21,"\u2013":21,"\u2014":21,"v":10,"w":10,"a":31,"\u00ab":24,"\u00e1":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"c":25,"d":25,"e":25,"o":25,"q":25,"\u00f8":25,"\u00f0":25,"\u00e7":25,"\u00e9":15,"\u00ea":15,"\u00eb":15,"\u00e8":15,"\u00f3":15,"\u00f4":15,"\u00f6":15,"\u00f2":15,"\u00f5":15,"A":39,"\u00c1":39,"\u00c2":39,"\u00c4":39,"\u00c0":39,"\u00c5":39,"\u00c3":39,"g":21,",":46,".":46,"\u2026":46,"s":13,"J":17,"\u00c6":41,"u":7,"y":7,"\u00fd":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u00ff":7,"&":13,"\u00bb":21,"z":10,"m":8,"n":8,"p":8,"r":8,"\u00f1":8,":":13,";":13,"x":10}},"X":{"d":"32,-238r0,-15r107,0r0,15v-6,3,-19,6,-34,6r45,86r89,-86v-15,0,-28,-3,-34,-6r0,-15r97,0r0,15v-7,3,-20,6,-35,6r-108,103r58,108v15,0,29,3,36,6r0,15r-107,0r0,-15v6,-3,19,-5,34,-6r-45,-85r-86,85v14,1,27,3,33,6r0,15r-97,0r0,-15v7,-3,20,-6,35,-6r106,-102r-58,-109v-15,0,-30,-3,-36,-6","w":271,"k":{"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"-":17,"\u2013":17,"\u2014":17}},"Y":{"d":"34,-238r0,-15r94,0r0,15v-6,3,-18,6,-32,6r42,111r89,-111v-15,0,-28,-3,-34,-6r0,-15r87,0r0,15v-5,2,-17,5,-29,5r-107,134r-17,78v16,0,32,3,39,6r0,15r-108,0r0,-15v7,-3,22,-6,39,-6r1,0r16,-79r-50,-132v-13,0,-24,-3,-30,-6","w":257,"k":{"C":11,"G":11,"O":11,"Q":11,"\u00d8":11,"\u00c7":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"-":35,"\u2013":35,"\u2014":35,"v":13,"w":13,"a":41,"\u00ab":35,"\u00e1":25,"\u00e2":25,"\u00e4":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"c":46,"d":46,"e":46,"o":46,"q":46,"\u00f8":46,"\u00f0":46,"\u00e7":46,"\u00e9":17,"\u00ea":17,"\u00eb":17,"\u00e8":17,"\u00f3":17,"\u00f4":17,"\u00f6":17,"\u00f2":17,"\u00f5":17,"A":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,"g":27,",":42,".":42,"\u2026":42,"s":21,"\/":21,"J":17,"\u00c6":28,"u":24,"y":24,"\u00fd":24,"\u00fa":24,"\u00fb":24,"\u00fc":24,"\u00f9":24,"\u00ff":24,"&":21,"\u00bb":23,"z":20,"m":18,"n":18,"p":18,"r":18,"\u00f1":18,":":21,";":21,"x":14}},"Z":{"d":"38,-174r17,-79r190,0r0,13r-203,219r132,0v3,-15,14,-47,25,-61r16,0r-17,82r-198,0r0,-15r200,-217r-121,0v-3,15,-14,44,-24,58r-17,0","w":244,"k":{"-":14,"\u2013":14,"\u2014":14}},"[":{"d":"32,24r38,0r0,21r-67,0r66,-309r62,0r0,21r-42,0","w":116,"k":{"f":-21,"\u00df":-21,"j":-25}},"\\":{"d":"89,3r-57,-259r17,-4r56,259","w":123,"k":{"T":17,"Y":21,"\u00dd":21}},"]":{"d":"-14,24r42,0r58,-267r-38,0r0,-21r66,0r-66,309r-62,0r0,-21","w":116},"^":{"d":"23,-72r0,-22v5,-6,15,-20,36,-20v29,0,53,23,79,23v21,0,32,-17,36,-23r0,22v-4,7,-15,20,-36,20v-29,0,-54,-23,-80,-23v-21,0,-30,17,-35,23","w":196},"_":{"d":"-20,17r165,0r0,21r-165,0r0,-21","w":175},"\u2018":{"d":"65,-173v-12,0,-17,-7,-17,-17v0,-32,25,-61,50,-70r12,5v-18,10,-31,25,-34,38v10,1,13,10,13,17v0,13,-11,27,-24,27","w":101,"k":{"a":21,"\u00e1":21,"\u00e2":21,"\u00e4":21,"\u00e0":21,"\u00e5":21,"\u00e3":21,"c":14,"d":14,"e":14,"o":14,"q":14,"\u00f8":14,"\u00f0":14,"\u00e7":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00e8":14,"\u00f3":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u00f5":14,"A":42,"\u00c1":42,"\u00c2":42,"\u00c4":42,"\u00c0":42,"\u00c5":42,"\u00c3":42,"g":24,",":42,".":42,"\u2026":42,"J":32,"\u00bf":30}},"a":{"d":"15,-66v0,-75,48,-117,97,-117v24,0,37,11,43,18v3,-8,8,-14,14,-18r15,0r-27,123v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-20,0,-31,-11,-33,-27v-8,13,-26,27,-53,27v-34,0,-58,-24,-58,-69xm145,-131v1,-7,3,-14,5,-20v-8,-6,-17,-11,-33,-11v-44,0,-72,37,-72,96v0,32,16,46,37,46v20,0,34,-9,44,-20v1,-8,2,-15,3,-20","w":210,"k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"b":{"d":"11,3v7,-11,11,-27,14,-41r44,-212v-10,3,-33,1,-42,-2r0,-15v7,-3,23,-6,40,-6v14,0,29,2,34,3r-24,116v9,-14,26,-29,52,-29v34,0,58,24,58,69v0,66,-44,117,-96,117v-28,0,-40,-13,-44,-20v-5,12,-13,19,-22,24xm53,-38r-1,7v8,7,16,13,35,13v48,0,70,-54,70,-96v0,-32,-14,-46,-36,-46v-24,0,-41,16,-48,26","w":202,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"c":{"d":"13,-66v0,-69,42,-117,99,-117v23,0,50,14,50,40v0,13,-9,23,-23,23v-13,0,-18,-7,-18,-18v0,-8,6,-17,11,-20v-4,-3,-10,-5,-20,-5v-52,0,-70,55,-70,97v0,32,16,46,40,46v30,0,45,-18,54,-31r5,14v-9,21,-29,40,-66,40v-38,0,-62,-24,-62,-69","w":164,"k":{"v":-7,"w":-7,"b":4,"h":4,"k":4,"l":4,"\u00fe":4}},"d":{"d":"15,-66v0,-75,48,-117,97,-117v21,0,33,9,40,15r17,-82v-10,3,-34,1,-42,-2r0,-15v7,-3,23,-6,40,-6v14,0,29,2,35,3r-45,210v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-20,0,-31,-11,-33,-27v-8,13,-26,27,-53,27v-34,0,-58,-24,-58,-69xm126,-40v1,-8,2,-15,3,-20r19,-92v-7,-5,-16,-10,-31,-10v-44,0,-72,37,-72,96v0,32,16,46,37,46v20,0,34,-9,44,-20","w":210,"k":{"v":-7,"w":-7,"x":-12}},"e":{"d":"15,-66v0,-63,44,-117,97,-117v32,0,48,17,48,42v0,37,-38,65,-115,65r0,10v0,32,14,46,38,46v30,0,47,-18,56,-31r4,14v-8,21,-31,40,-67,40v-35,0,-61,-24,-61,-69xm110,-162v-30,0,-54,30,-62,66v60,-1,84,-20,84,-45v0,-11,-5,-21,-22,-21","w":171,"k":{"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"f":{"d":"21,-157r0,-15v8,-3,26,-6,35,-7r2,-8v11,-56,36,-86,74,-86v23,0,38,10,38,25v0,12,-7,19,-17,19v-11,0,-19,-10,-22,-23r-1,-7v-14,0,-33,19,-44,72r-2,10r38,0r0,20r-42,0r-29,150v-10,53,-31,86,-72,86v-22,0,-39,-11,-39,-26v0,-11,8,-18,18,-18v11,0,19,10,22,23r1,7v17,-3,32,-23,41,-72r30,-150r-31,0","w":116,"k":{"*":-28,"\\":-42,"\u2018":-21,"\u201c":-21,"\u2019":-25,"\u201d":-25,"v":-11,"w":-11,"\u00b0":-30,"\u2122":-32,"\u00e1":-7,"\u00e2":-7,"\u00e4":-7,"\u00e0":-7,"\u00e5":-7,"\u00e3":-7,"\u00aa":-14,"\u00ba":-14,"\u00e9":-8,"\u00ea":-8,"\u00eb":-8,"\u00e8":-8,"\u00f3":-8,"\u00f4":-8,"\u00f6":-8,"\u00f2":-8,"\u00f5":-8,",":7,".":7,"\u2026":7,"u":-4,"y":-4,"\u00fd":-4,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"\u00ff":-7,"m":-4,"n":-4,"p":-4,"r":-4,"\u00f1":-4,"?":-21,"!":-8,")":-21,"]":-21,"}":-21,"\"":-24,"'":-24}},"g":{"d":"86,-59r-6,0v-20,0,-36,9,-36,18v0,11,9,12,23,13r41,1v32,1,51,13,51,40v0,31,-35,63,-101,63v-45,0,-73,-14,-73,-39v0,-27,23,-42,45,-45v-8,-4,-13,-11,-13,-23v0,-16,18,-29,36,-33v-19,-7,-31,-22,-31,-44v0,-48,42,-75,88,-75v23,0,42,10,53,26v9,-22,23,-34,39,-34v11,0,17,6,17,18v0,14,-8,21,-17,21v-9,0,-16,-5,-16,-15v-5,1,-15,15,-17,22v2,5,3,10,3,16v0,47,-40,70,-86,70xm87,-75v31,0,55,-22,55,-56v0,-21,-12,-35,-34,-35v-35,0,-56,24,-56,59v0,21,13,32,35,32xm13,31v0,18,16,28,47,28v46,0,71,-23,71,-41v0,-11,-5,-17,-28,-18r-43,-1v-5,0,-9,-1,-13,-2v-20,5,-34,19,-34,34","w":198,"k":{"t":-10,"u":-25,"y":-25,"\u00fd":-25,"\u00fa":-21,"\u00fb":-21,"\u00fc":-21,"\u00f9":-21,"\u00ff":-21,"i":-18,"\u00ed":-18,"m":-14,"n":-14,"p":-14,"r":-14,"\u00f1":-14,"f":-17,"\u00df":-17,"j":-21}},"h":{"d":"17,0r52,-251v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,33,3r-27,132v13,-26,33,-45,61,-45v32,0,45,20,45,48v0,13,-3,26,-7,39r-10,37v-1,5,-4,17,-4,25v0,11,4,16,13,16v15,0,28,-18,33,-31r6,11v-3,15,-15,41,-46,41v-22,0,-34,-14,-34,-34v0,-10,2,-22,4,-28r10,-37v4,-14,7,-27,7,-38v0,-17,-8,-25,-27,-25v-24,0,-44,23,-56,43r-24,116r-28,0","w":215,"k":{"\u2018":38,"\u201c":38,"\u2019":35,"\u201d":35,",":-11,".":-11,"\u2026":-11,"s":-3,"\u00bb":-10,":":-10,";":-10,"x":-12}},"i":{"d":"77,-218v-11,0,-19,-7,-19,-20v0,-11,8,-19,19,-19v13,0,20,8,20,19v0,13,-9,20,-20,20xm28,-31v0,-10,3,-22,4,-29r21,-98v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,29,2,34,3r-26,117v-1,6,-4,18,-4,26v0,11,5,16,13,16v15,0,29,-18,34,-31r5,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34","w":113,"k":{"v":-7,"w":-7,"x":-12}},"j":{"d":"80,-218v-12,0,-20,-7,-20,-20v0,-11,8,-19,20,-19v13,0,20,8,20,19v0,13,-9,20,-20,20xm24,-7r32,-151v-10,3,-34,2,-42,-1r0,-15v8,-3,24,-6,41,-6v14,0,28,2,34,3r-37,170v-12,54,-31,86,-72,86v-22,0,-39,-11,-39,-26v0,-11,8,-18,18,-18v11,0,19,10,22,23r2,7v17,-3,31,-24,41,-72","w":104,"k":{"v":-7,"w":-7,"x":-12}},"k":{"d":"112,-163r0,-14r90,0r0,14v-5,3,-19,5,-36,5r-60,51v20,0,35,12,35,37v0,3,-1,5,-2,11r-1,7v-1,6,-3,13,-3,18v0,11,5,16,13,16v15,0,27,-18,33,-31r6,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34v0,-10,2,-13,3,-21r2,-7r0,-11v0,-15,-7,-20,-25,-20r-23,0r-19,90r-28,0r52,-251v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,33,3r-34,163r15,-2r57,-49v-12,-1,-22,-2,-27,-5","w":199,"k":{"v":-6,"w":-6,"u":-7,"y":-7,"\u00fd":-7,"\u00fa":-6,"\u00fb":-6,"\u00fc":-6,"\u00f9":-6,"\u00ff":-6}},"l":{"d":"25,-31v0,-10,4,-24,5,-31r39,-188v-10,3,-33,1,-42,-2r0,-15v7,-3,23,-6,40,-6v14,0,29,2,34,3r-43,208v-1,6,-5,20,-5,28v0,11,5,16,14,16v15,0,28,-18,33,-31r5,11v-3,15,-15,41,-46,41v-22,0,-34,-14,-34,-34","w":111,"k":{"v":-7,"w":-7,"x":-12}},"m":{"d":"22,0r34,-158v-10,3,-34,2,-42,-1r0,-15v8,-3,24,-6,41,-6v14,0,28,2,34,3r-8,36v13,-24,31,-42,58,-42v29,0,42,16,44,40v12,-24,30,-40,57,-40v32,0,45,20,45,48v0,13,-3,26,-7,39r-9,37v-1,5,-5,17,-5,25v0,11,4,16,13,16v15,0,29,-18,34,-31r5,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34v0,-10,2,-22,4,-28r10,-37v4,-14,7,-27,7,-38v0,-17,-7,-25,-26,-25v-20,0,-37,16,-49,33v-1,10,-4,21,-6,30r-23,96r-28,0r23,-96v3,-14,7,-27,7,-38v0,-17,-6,-25,-26,-25v-23,0,-42,23,-53,42r-25,117r-29,0","w":320,"k":{"\u2018":38,"\u201c":38,"\u2019":35,"\u201d":35,",":-11,".":-11,"\u2026":-11,"s":-3,"\u00bb":-10,":":-10,";":-10,"x":-12}},"n":{"d":"22,0r33,-158v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,33,3r-7,36v13,-24,32,-42,59,-42v32,0,45,20,45,48v0,13,-3,26,-7,39r-10,37v-1,5,-4,17,-4,25v0,11,5,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34v0,-10,2,-22,4,-28r10,-37v4,-14,8,-27,8,-38v0,-17,-8,-25,-28,-25v-23,0,-44,23,-55,42r-25,117r-27,0","w":219,"k":{"\u2018":38,"\u201c":38,"\u2019":35,"\u201d":35,",":-11,".":-11,"\u2026":-11,"s":-3,"\u00bb":-10,":":-10,";":-10,"x":-12}},"o":{"d":"14,-68v0,-64,39,-115,98,-115v40,0,65,22,65,70v0,65,-42,116,-98,116v-40,0,-65,-23,-65,-71xm44,-68v0,37,15,50,39,50v37,0,65,-43,65,-95v0,-36,-16,-49,-40,-49v-40,0,-64,39,-64,94","w":194,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"p":{"d":"11,59r45,-217v-10,3,-34,2,-42,-1r0,-15v8,-3,24,-6,41,-6v14,0,28,2,34,3r-5,23v9,-14,25,-29,51,-29v34,0,58,24,58,69v0,69,-44,117,-96,117v-25,0,-37,-10,-43,-17r-15,73r1,0v17,0,30,3,36,6r0,14r-101,0r0,-14v5,-3,19,-6,36,-6xm127,-160v-25,0,-40,17,-47,27r-22,102v8,7,16,13,35,13v50,0,70,-54,70,-96v0,-32,-14,-46,-36,-46","w":208,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"q":{"d":"15,-66v0,-75,48,-117,97,-117v24,0,37,11,43,18v3,-8,8,-14,14,-18r15,0r-50,242r0,0v17,0,30,3,36,6r0,14r-103,0r0,-14v5,-3,19,-6,36,-6r2,0r17,-77v-9,11,-25,21,-49,21v-34,0,-58,-24,-58,-69xm145,-131v1,-7,3,-14,5,-20v-8,-6,-17,-11,-33,-11v-44,0,-72,37,-72,96v0,32,16,46,37,46v21,0,34,-9,44,-20","w":202},"r":{"d":"22,0r33,-158v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,33,3r-9,43v12,-26,30,-49,51,-49v13,0,23,6,23,23v0,14,-9,22,-20,22v-10,0,-16,-7,-18,-15r-2,-6v-13,8,-29,32,-40,51r-23,108r-27,0","w":137,"k":{"\u2019":-8,"\u201d":-8,"v":-21,"w":-21,"t":-9,",":21,".":21,"\u2026":21,"u":-24,"y":-24,"\u00fd":-24,"\u00fa":-15,"\u00fb":-15,"\u00fc":-15,"\u00f9":-15,"\u00ff":-15,"i":-11,"\u00ed":-11,"m":-7,"n":-7,"p":-7,"r":-7,"\u00f1":-7,"x":-7,"f":-12,"\u00df":-12,"j":-10}},"s":{"d":"6,-34v0,-11,6,-22,21,-22v11,0,17,7,17,17v0,8,-5,14,-12,18v4,4,16,7,30,7v21,0,36,-11,36,-31v0,-17,-9,-24,-19,-31r-16,-11v-15,-10,-32,-23,-32,-47v0,-30,25,-49,57,-49v30,0,51,8,51,25v0,12,-7,19,-17,19v-11,0,-19,-7,-22,-20r-2,-7v-3,-1,-6,-1,-9,-1v-18,0,-30,11,-30,28v0,13,8,20,21,29r16,12v15,10,32,24,32,49v0,34,-29,52,-69,52v-30,0,-53,-16,-53,-37","w":156,"k":{"\u2018":17,"\u201c":17,"\u2019":14,"\u201d":14,"t":7,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u00f0":4,"\u00e7":4,"s":6}},"t":{"d":"22,-158r0,-14v8,-4,28,-7,37,-7v3,-13,9,-40,21,-57r20,0r-13,59r45,0r0,19r-49,0r-21,99v-1,6,-4,17,-4,25v0,9,3,16,14,16v21,0,33,-24,43,-47r7,12v-3,24,-20,56,-55,56v-24,0,-37,-13,-37,-34v0,-10,3,-21,4,-28r20,-99r-32,0","w":136,"k":{"\u2018":15,"\u201c":15,"\u2019":14,"\u201d":14,"b":3,"h":3,"k":3,"l":3,"\u00fe":3,"u":-7,"y":-7,"\u00fd":-7}},"u":{"d":"27,-45v0,-13,4,-31,7,-42r17,-71v-10,3,-34,2,-43,-1r0,-15v7,-3,25,-6,42,-6v14,0,28,2,33,3r-21,90v-2,9,-7,30,-7,41v0,17,7,25,27,25v23,0,39,-14,51,-30r2,-9r25,-120r28,0r-25,120v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,33,-31r6,11v-3,15,-15,41,-46,41v-22,0,-34,-14,-34,-33v-13,22,-33,33,-59,33v-34,0,-45,-20,-45,-48","k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"v":{"d":"28,-45v0,-13,3,-26,7,-39r10,-37v1,-5,4,-17,4,-25v0,-9,-2,-14,-11,-14v-13,0,-26,18,-30,24r-5,-12v3,-13,18,-35,43,-35v22,0,31,14,31,34v0,10,-2,22,-4,28r-10,37v-4,14,-7,27,-7,38v0,17,8,25,23,25v22,0,36,-14,48,-32v15,-26,21,-61,19,-82v-13,0,-24,-11,-24,-25v0,-14,10,-23,23,-23v14,0,27,11,27,35v0,38,-9,82,-33,116v-16,23,-41,35,-64,35v-34,0,-47,-20,-47,-48","w":188,"k":{"*":23,"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00b0":25,"\u2122":23,",":13,".":13,"\u2026":13}},"w":{"d":"28,-45v0,-13,3,-26,7,-39r10,-37v1,-5,4,-17,4,-25v0,-9,-2,-14,-11,-14v-13,0,-26,18,-30,24r-5,-12v3,-13,18,-35,43,-35v22,0,31,14,31,34v0,10,-2,22,-4,28r-10,37v-4,14,-7,27,-7,38v0,15,6,25,21,25v27,0,42,-35,51,-69v0,0,3,-10,4,-15r4,-16r12,-59r32,0r-25,96v-4,14,-7,27,-7,38v0,17,7,25,22,25v21,0,37,-14,48,-32v15,-26,23,-61,21,-82v-13,0,-24,-11,-24,-25v0,-14,10,-23,23,-23v14,0,26,11,26,35v0,38,-8,82,-32,116v-16,23,-43,35,-66,35v-24,0,-38,-10,-43,-26v-12,17,-30,26,-48,26v-34,0,-47,-20,-47,-48","w":281,"k":{"*":23,"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00b0":25,"\u2122":23,",":13,".":13,"\u2026":13}},"x":{"d":"96,-27r-14,-40v-7,12,-15,26,-24,39v-11,17,-23,31,-41,31v-13,0,-23,-8,-23,-21v0,-14,9,-23,23,-23v8,0,16,5,20,11r38,-54r-22,-62v-4,-13,-8,-16,-18,-16v-4,0,-13,3,-18,7r3,-15v5,-7,14,-13,28,-13v17,0,25,11,32,30r14,39r27,-44v8,-13,20,-25,36,-25v11,0,22,7,22,20v0,14,-9,24,-22,24v-9,0,-17,-5,-21,-11r-36,53r22,63v4,13,9,16,19,16v4,0,14,-3,18,-7r-2,15v-6,7,-15,13,-29,13v-16,0,-26,-11,-32,-30","w":175,"k":{"a":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u00f0":4,"\u00e7":4,"u":-7,"y":-7,"\u00fd":-7,"i":-7,"\u00ed":-7,"m":-7,"n":-7,"p":-7,"r":-7,"\u00f1":-7}},"y":{"d":"24,-53v0,-13,4,-28,7,-41r15,-64v-10,3,-34,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,34,3r-20,83v-3,14,-7,27,-7,39v0,15,8,24,25,24v17,0,35,-8,47,-22r25,-127r30,0r-30,135r-6,35v-8,50,-31,86,-84,86v-24,0,-55,-11,-55,-38v0,-13,9,-25,23,-25v14,0,21,6,21,19v0,8,-6,17,-13,20v4,3,13,6,23,6v30,0,48,-19,57,-65r5,-24v-10,17,-29,24,-47,24v-34,0,-49,-18,-49,-46","w":192,"k":{"\u2018":18,"\u201c":18,"\u2019":18,"\u201d":18,"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"z":{"d":"21,-114r13,-63r138,0r0,10r-133,149r79,0v4,-15,11,-38,20,-50r17,0r-14,68r-144,0r0,-11r131,-148r-73,0v-2,15,-8,35,-17,45r-17,0","w":180,"k":{"\u2018":13,"\u201c":13,"z":6}},"{":{"d":"27,-14r12,-49v7,-27,-2,-42,-35,-42r0,-17v38,0,54,-20,58,-44r6,-39v5,-40,35,-59,73,-59v8,0,14,1,18,2r3,16v-5,-1,-16,-2,-21,-2v-24,0,-44,15,-48,43r-6,39v-4,28,-25,49,-53,52v24,3,39,20,31,51r-13,49v-8,28,6,42,30,42v5,0,11,0,19,-1r-5,15v-4,1,-11,3,-21,3v-34,0,-58,-21,-48,-59","w":143,"k":{"f":-21,"\u00df":-21,"j":-25}},"|":{"d":"4,79r70,-360r20,0r-70,360r-20,0","w":98},"}":{"d":"0,28v24,0,44,-14,48,-42r5,-39v4,-29,24,-49,54,-52v-24,-3,-39,-20,-31,-51r13,-49v8,-28,-3,-43,-30,-43v-6,0,-11,1,-20,2r6,-16v4,-1,11,-2,21,-2v35,0,58,21,48,59r-13,49v-6,26,1,42,35,42r0,17v-38,0,-53,17,-57,44r-6,39v-5,40,-35,59,-73,59v-8,0,-14,-2,-18,-3r-3,-15v5,1,15,1,21,1","w":143},"~":{"d":"23,-96r0,-22v5,-7,15,-21,36,-21v29,0,53,24,79,24v21,0,32,-17,36,-24r0,23v-4,6,-15,20,-36,20v-29,0,-54,-24,-80,-24v-21,0,-30,18,-35,24xm23,-45r0,-23v5,-7,15,-20,36,-20v29,0,53,24,79,24v21,0,32,-17,36,-23r0,21v-4,7,-15,21,-36,21v-29,0,-54,-24,-80,-24v-21,0,-30,18,-35,24","w":196},"\u00a1":{"d":"59,-145v-10,0,-15,-5,-15,-15v0,-14,11,-30,25,-30v12,0,15,6,15,16v0,14,-11,29,-25,29xm1,68r13,-62v7,-34,23,-91,34,-117r12,0v0,20,-8,83,-15,117r-13,62r-31,0","w":101},"\u00a2":{"d":"200,-163v-5,-12,-6,-36,-2,-52v-9,-12,-23,-20,-45,-20r-1,0r-47,217v41,0,66,-31,85,-64r7,16v-13,37,-45,70,-96,70r-1,0r-6,30r-14,0r6,-31v-45,-6,-68,-41,-68,-92v0,-81,51,-162,125,-168r5,-24r14,0r-5,24v22,1,38,10,47,23v3,-8,11,-19,17,-23r12,0r-19,94r-14,0xm48,-89v0,39,13,65,43,70r46,-214v-53,11,-89,77,-89,144"},"\u00a3":{"d":"31,-120r0,-18r36,0r6,-25v18,-68,58,-93,98,-93v37,0,51,26,51,41v0,13,-8,24,-21,24v-10,0,-14,-6,-14,-14v0,-12,10,-19,15,-21v-3,-4,-14,-12,-33,-12v-27,0,-51,17,-66,75r-7,25r66,0r0,18r-71,0r-12,47v-5,20,-14,35,-27,48v30,2,56,10,89,10v28,0,39,-11,47,-15r-8,24v-7,7,-20,16,-45,16v-37,0,-73,-10,-101,-10v-21,0,-34,3,-34,3r0,-18v6,-3,17,-7,29,-9v9,-13,15,-29,20,-49r13,-47r-31,0"},"\u00a5":{"d":"45,-93r0,-18r45,0r-44,-121v-14,0,-25,-3,-31,-6r0,-15r95,0r0,15v-6,3,-19,6,-33,6r39,110r87,-110v-15,0,-28,-3,-34,-6r0,-15r87,0r0,15v-6,3,-16,5,-29,5r-96,122r42,0r0,18r-52,0r-5,24r50,0r0,18r-54,0r-6,30v17,0,32,3,39,6r0,15r-108,0r0,-15v7,-3,22,-6,39,-6r1,0r6,-30r-45,0r0,-18r49,0r5,-24r-47,0"},"\u00a7":{"d":"8,-11r15,0v5,14,6,35,4,51v9,9,25,18,49,18v37,0,53,-21,53,-43v0,-23,-14,-30,-35,-40r-26,-13v-26,-12,-41,-27,-41,-51v0,-30,19,-48,47,-59v-9,-10,-15,-22,-15,-38v0,-36,31,-71,80,-71v22,0,40,8,50,21v4,-8,13,-17,18,-21r12,0r-18,87r-14,0v-4,-14,-7,-37,-3,-51r0,0v-9,-9,-22,-15,-42,-15v-31,0,-51,19,-51,45v0,21,14,30,34,39r27,13v28,13,43,28,43,55v0,26,-22,48,-46,58v8,9,13,20,13,34v0,44,-34,71,-82,71v-26,0,-45,-9,-58,-24v-4,9,-11,19,-18,24r-12,0xm105,-127v-7,-3,-13,-7,-19,-11v-17,9,-28,24,-28,40v0,18,11,27,29,35r27,12v9,4,16,9,23,14v19,-12,28,-23,28,-40v0,-18,-15,-29,-33,-37","w":220},"\u00a4":{"d":"111,-59v-16,0,-30,-5,-40,-12r-16,16r-14,-14r17,-17v-6,-11,-10,-24,-10,-39v0,-15,4,-29,10,-40r-17,-17r14,-14r16,17v10,-8,24,-12,40,-12v16,0,29,4,39,12r18,-17r14,14r-19,19v6,10,10,24,10,38v0,15,-4,28,-10,38r19,18r-14,14r-18,-17v-10,8,-22,13,-39,13xm111,-80v26,0,39,-17,39,-45v0,-27,-13,-46,-39,-46v-26,0,-41,19,-41,46v0,28,15,45,41,45"},"'":{"d":"42,-186v-1,-7,-2,-33,3,-54r3,-13r28,0r-3,13v-5,22,-13,41,-20,54r-11,0","w":64},"\u201c":{"d":"128,-173v-11,0,-17,-7,-17,-17v0,-32,25,-61,50,-70r12,5v-17,10,-31,25,-34,38v10,1,13,10,13,17v0,13,-11,27,-24,27xm65,-173v-12,0,-17,-7,-17,-17v0,-32,25,-61,50,-70r12,5v-18,10,-31,25,-34,38v10,1,13,10,13,17v0,13,-11,27,-24,27","w":164,"k":{"a":21,"\u00e1":21,"\u00e2":21,"\u00e4":21,"\u00e0":21,"\u00e5":21,"\u00e3":21,"c":14,"d":14,"e":14,"o":14,"q":14,"\u00f8":14,"\u00f0":14,"\u00e7":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00e8":14,"\u00f3":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u00f5":14,"A":42,"\u00c1":42,"\u00c2":42,"\u00c4":42,"\u00c0":42,"\u00c5":42,"\u00c3":42,"g":24,",":42,".":42,"\u2026":42,"J":32,"\u00bf":30}},"\u00ab":{"d":"94,-98r0,-6r94,-62r16,7r-76,59r48,59r-16,4xm77,-37r-66,-61r0,-6r94,-62r16,7r-76,59r48,59","w":202,"k":{"T":17,"W":21,"V":21,"Y":23,"\u00dd":23}},"\u2013":{"d":"8,-100r0,-21r165,0r0,21r-165,0","w":175,"k":{"C":-18,"G":-18,"O":-18,"Q":-18,"\u00d8":-18,"\u00c7":-18,"\u00d3":-18,"\u00d4":-18,"\u00d6":-18,"\u00d2":-18,"\u00d5":-18,"T":21,"W":28,"V":28,"Y":35,"\u00dd":35,"A":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":17,"Z":7}},"\u00b7":{"d":"53,-89v-13,0,-21,-8,-21,-21v0,-13,8,-21,21,-21v13,0,22,8,22,21v0,13,-9,21,-22,21","w":101},"\u00b6":{"d":"89,-51v-44,0,-81,-28,-81,-83v0,-72,54,-119,127,-119r120,0r0,15v-7,3,-23,6,-40,6r0,0r-66,311r-29,0r65,-311r-31,0r-65,311r-21,0r28,-130r-7,0","w":237},"\u201d":{"d":"97,-176v17,-10,31,-26,34,-38v-10,-1,-13,-10,-13,-17v0,-13,11,-26,24,-26v11,0,17,7,17,17v0,32,-25,62,-50,70xm45,-170r-11,-6v18,-10,30,-26,33,-38v-10,-1,-12,-10,-12,-17v0,-13,11,-26,24,-26v11,0,17,7,17,17v0,32,-26,62,-51,70","w":164,"k":{"a":21,"\u00e1":21,"\u00e2":21,"\u00e4":21,"\u00e0":21,"\u00e5":21,"\u00e3":21,"c":21,"d":21,"e":21,"o":21,"q":21,"\u00f8":21,"\u00f0":21,"\u00e7":21,"\u00e9":21,"\u00ea":21,"\u00eb":21,"\u00e8":21,"\u00f3":21,"\u00f4":21,"\u00f6":21,"\u00f2":21,"\u00f5":21,"A":42,"\u00c1":42,"\u00c2":42,"\u00c4":42,"\u00c0":42,"\u00c5":42,"\u00c3":42,"g":27,",":36,".":36,"\u2026":36,"s":10,"J":34,":":6,";":6,"\u00bf":39}},"\u00bb":{"d":"82,-44r76,-59r-48,-59r15,-4r66,62r0,6r-94,61xm14,-37r-15,-7r76,-59r-48,-59r15,-4r66,62r0,6","w":202,"k":{"C":-8,"G":-8,"O":-8,"Q":-8,"\u00d8":-8,"\u00c7":-8,"\u00d3":-8,"\u00d4":-8,"\u00d6":-8,"\u00d2":-8,"\u00d5":-8,"T":24,"W":31,"V":27,"Y":35,"\u00dd":35,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u00f8":-6,"\u00f0":-6,"\u00e7":-6,"A":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":14,".":14,"\u2026":14,"J":13,":":11,";":11,"\u00bf":17}},"\u2026":{"d":"14,-11v0,-14,11,-30,25,-30v10,0,16,6,16,16v0,14,-11,29,-25,29v-11,0,-16,-5,-16,-15xm115,-11v0,-14,11,-30,25,-30v10,0,16,6,16,16v0,14,-11,29,-25,29v-11,0,-16,-5,-16,-15xm216,-11v0,-14,12,-30,26,-30v10,0,15,6,15,16v0,14,-11,29,-25,29v-11,0,-16,-5,-16,-15","w":303,"k":{"C":17,"G":17,"O":17,"Q":17,"\u00d8":17,"\u00c7":17,"\u00d3":17,"\u00d4":17,"\u00d6":17,"\u00d2":17,"\u00d5":17,"*":42,"\u2018":42,"\u201c":42,"\u2019":42,"\u201d":42,"U":35,"\u00da":35,"\u00db":35,"\u00dc":35,"\u00d9":35,"T":35,"W":46,"V":42,"Y":43,"\u00dd":43,"v":21,"w":21,"t":27,"\u00ab":21,"u":34,"y":34,"\u00fd":34}},"\u00bf":{"d":"103,-145v-10,0,-16,-5,-16,-15v0,-14,11,-30,25,-30v12,0,16,6,16,16v0,14,-11,29,-25,29xm-6,25v0,-30,24,-51,54,-69r14,-8v16,-10,32,-20,32,-35v0,-11,-6,-18,-10,-24r17,-4v9,7,14,16,14,26v0,22,-13,34,-40,51r-16,10v-20,13,-34,28,-34,51v0,17,12,28,33,28v10,0,17,-2,24,-5v-4,-4,-9,-10,-9,-18v0,-13,8,-22,21,-22v11,0,17,9,17,18v0,26,-31,46,-65,46v-35,0,-52,-19,-52,-45","w":156},"`":{"d":"142,-203r-45,-30v-9,-6,-11,-12,-11,-17v0,-10,7,-16,15,-16v7,0,13,5,19,13r32,42","w":194},"\u00b4":{"d":"93,-203r-11,-8r47,-42v8,-7,14,-13,21,-13v7,0,15,4,15,13v0,7,-5,14,-16,20","w":194},"\u00af":{"d":"67,-208r0,-21r102,0r0,21r-102,0","w":194},"\u00a8":{"d":"156,-217v-12,0,-18,-8,-18,-19v0,-11,6,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm89,-217v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","w":194},"\u00b8":{"d":"48,24r21,-24r21,0r-17,18v11,4,18,16,18,27v0,17,-14,34,-42,34v-9,0,-16,-3,-22,-6r-3,-17v7,3,14,4,24,4v14,0,21,-6,21,-15v0,-10,-10,-15,-21,-18r0,-3","w":194},"\u2014":{"d":"8,-100r0,-21r341,0r0,21r-341,0","w":351,"k":{"C":-18,"G":-18,"O":-18,"Q":-18,"\u00d8":-18,"\u00c7":-18,"\u00d3":-18,"\u00d4":-18,"\u00d6":-18,"\u00d2":-18,"\u00d5":-18,"T":21,"W":28,"V":28,"Y":35,"\u00dd":35,"A":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":17,"Z":7}},"\u00c6":{"d":"151,-238r0,-15r225,0r-17,79r-17,0v-3,-15,-2,-43,1,-58r-101,0r-20,96r53,0v3,-13,12,-32,16,-37r16,0r-20,93r-16,0v-1,-9,-2,-25,0,-37r-53,0r-20,96r106,0v3,-15,13,-47,24,-61r17,0r-17,82r-200,0r0,-15v7,-3,22,-6,39,-6r1,0r16,-76r-80,0r-63,76v14,1,28,3,34,6r0,15r-98,0r0,-15v7,-3,22,-6,38,-6r174,-211v-17,0,-32,-3,-38,-6xm121,-117r67,0r23,-109","w":375,"k":{"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u00f0":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"\u00aa":{"d":"71,-132v-24,0,-41,-18,-41,-48v0,-49,33,-77,68,-77v17,0,25,7,29,11v3,-5,6,-8,10,-11r14,0r-20,82v-1,5,-2,11,-2,17v0,7,2,9,8,9v11,0,17,-11,21,-20r7,7v-3,12,-12,30,-34,30v-13,0,-21,-7,-23,-17v-7,10,-20,17,-37,17xm120,-223r3,-12v-5,-4,-10,-7,-22,-7v-30,0,-49,24,-49,62v0,22,10,31,25,31v14,0,23,-7,30,-13v1,-6,1,-10,2,-14","w":148},"\u00d8":{"d":"17,-89v0,-84,57,-168,143,-168v24,0,43,5,58,14r15,-19r16,12r-16,19v15,16,22,38,22,66v0,84,-58,169,-144,169v-27,0,-47,-6,-62,-17r-17,20r-14,-11r18,-21v-13,-16,-19,-38,-19,-64xm224,-165v0,-18,-5,-32,-11,-43r-146,174v11,10,25,16,45,16v65,0,112,-71,112,-147xm48,-89v0,16,2,30,7,40r146,-173v-10,-8,-24,-13,-42,-13v-64,0,-111,70,-111,146","w":260,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"\u00ba":{"d":"76,-132v-28,0,-46,-16,-46,-48v0,-43,28,-77,70,-77v27,0,47,15,47,47v0,43,-32,78,-71,78xm80,-149v26,0,45,-26,45,-61v0,-24,-12,-32,-29,-32v-27,0,-44,25,-44,62v0,24,11,31,28,31","w":136},"\u00e6":{"d":"48,-115v-10,0,-16,-9,-16,-17v0,-28,40,-51,71,-51v28,0,44,10,48,31v15,-19,35,-31,60,-31v32,0,48,17,48,42v0,38,-38,65,-115,65v0,4,-1,7,-1,10v0,32,15,46,38,46v30,0,49,-18,57,-31r4,14v-8,21,-31,40,-68,40v-21,0,-38,-8,-48,-25v-12,13,-30,25,-63,25v-35,0,-53,-17,-53,-42v0,-52,64,-59,108,-58r4,-17v1,-5,3,-15,3,-21v0,-19,-12,-27,-31,-27v-15,0,-27,5,-38,12v5,1,11,7,11,15v0,12,-6,20,-19,20xm115,-66v0,-4,1,-9,1,-13v-29,0,-79,1,-79,37v0,17,12,24,30,24v24,0,40,-9,52,-19v-3,-9,-4,-18,-4,-29xm208,-162v-32,0,-53,32,-61,66v60,-1,84,-20,84,-45v0,-11,-6,-21,-23,-21","w":270,"k":{"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"\u00f8":{"d":"14,-68v0,-64,39,-115,98,-115v15,0,30,4,40,11r11,-14r13,12r-12,14v9,12,13,26,13,47v0,65,-42,116,-98,116v-16,0,-30,-3,-41,-11r-11,14r-13,-12r12,-15v-8,-12,-12,-27,-12,-47xm148,-113v0,-10,-2,-17,-4,-24r-89,109v7,7,16,10,28,10v37,0,65,-43,65,-95xm44,-68v0,9,0,18,2,24r89,-108v-7,-6,-16,-10,-27,-10v-40,0,-64,39,-64,94","w":194,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"\u00df":{"d":"22,-160r0,-14v9,-4,27,-7,36,-7r1,-6v11,-56,41,-86,90,-86v38,0,65,20,65,56v0,44,-39,74,-66,75v28,3,52,21,52,56v0,58,-41,90,-93,90v-13,0,-23,-2,-27,-5r-3,-17v5,3,18,4,28,4v37,0,65,-30,65,-72v0,-30,-20,-45,-50,-45r-10,0r0,-19r14,0v33,0,60,-32,60,-68v0,-24,-11,-38,-37,-38v-28,0,-50,16,-60,69r-35,180v-10,53,-31,86,-72,86v-22,0,-35,-13,-35,-28v0,-12,7,-21,20,-21v10,0,17,5,17,15v0,8,-3,16,-10,20v25,-1,43,-23,52,-72r30,-153r-32,0","w":220,"k":{"t":8}},"\u00ac":{"d":"33,-82r0,-20r130,0r0,85r-19,0r0,-65r-111,0","w":196},"\u00b5":{"d":"10,23r42,-181v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,33,3r-25,110v-1,8,-3,16,-3,21v0,17,8,25,27,25v24,0,40,-14,52,-30v0,-3,0,-5,1,-8r26,-121r28,0r-25,121v-1,6,-5,17,-5,25v0,9,3,14,13,14v17,0,30,-22,34,-29r5,11v-1,13,-12,41,-45,41v-24,0,-35,-14,-35,-33v-13,22,-33,33,-59,33v-13,0,-22,-5,-28,-11r-20,87r-33,0"},"\u2122":{"d":"329,-136r-72,0r0,-12v6,-2,17,-2,26,-2r18,-72r-62,86r-13,0r-20,-88r-16,74v9,0,18,0,24,2r0,12r-65,0r0,-12v7,-2,18,-2,27,-2r19,-89v-9,0,-17,0,-23,-3r0,-11r47,0r22,92r66,-92r45,0r0,11v-7,2,-16,3,-25,3r-21,89v8,0,17,0,23,2r0,12xm34,-211r10,-42r118,0r-10,42r-13,0v-2,-8,0,-16,2,-25r1,-6r-31,0r-19,92v9,0,19,0,25,2r0,12r-76,0r0,-12v7,-3,17,-2,26,-2r2,0r20,-92r-31,0r-2,6v-2,9,-5,18,-11,25r-11,0","w":333},"\u00d0":{"d":"30,-116r0,-21r34,0r20,-95v-17,0,-32,-3,-39,-6r0,-15r120,0v66,0,106,32,106,95v0,85,-56,158,-150,158r-121,0r0,-15v7,-3,22,-6,39,-6r1,0r20,-95r-30,0xm165,-232r-52,0r-19,95r66,0r0,21r-70,0r-21,95r52,0v75,0,119,-61,119,-137v0,-56,-31,-74,-75,-74","w":277,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"\u00bd":{"d":"197,0r0,-11r59,-40v30,-20,48,-34,48,-52v0,-12,-7,-20,-31,-20v-14,0,-24,3,-30,7v5,2,11,7,11,13v0,9,-7,13,-16,13v-8,0,-15,-5,-15,-13v0,-17,23,-38,56,-38v30,0,50,14,50,38v0,28,-32,49,-68,67r-28,14r71,0v3,-10,9,-24,15,-30r14,0r-10,52r-126,0xm41,-114r0,-13v5,-2,22,-4,34,-4r5,0r21,-97v-6,5,-23,10,-36,8r-8,-18v23,0,48,-9,61,-15r14,0r-26,122r3,0v12,0,29,2,34,4r0,13r-102,0xm101,3r-14,-10r191,-256r14,10","w":371},"\u00b1":{"d":"33,-82r0,-19r56,0r0,-55r19,0r0,55r55,0r0,19r-55,0r0,54r-19,0r0,-54r-56,0xm33,0r130,0r0,19r-130,0r0,-19","w":196},"\u00de":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-1,0r-5,27r48,0v49,0,80,21,80,62v0,52,-40,92,-118,92v-17,0,-31,-1,-41,-3r-8,33r8,0v17,0,33,3,40,6r0,15r-117,0xm156,-184r-52,0r-23,109v9,2,21,3,40,3v62,0,84,-36,84,-70v0,-28,-18,-42,-49,-42","w":227},"\u00bc":{"d":"196,-37r0,-9r110,-93r15,0r-19,86r26,0r-5,16r-24,0r-4,20v12,0,23,2,28,4r0,13r-82,0r0,-13v5,-2,16,-4,28,-4r1,0r4,-20r-78,0xm41,-114r0,-13v5,-2,22,-4,34,-4r5,0r21,-97v-6,5,-23,10,-36,8r-8,-18v23,0,48,-9,61,-15r14,0r-26,122r3,0v12,0,29,2,34,4r0,13r-102,0xm110,3r-14,-10r191,-256r14,10xm289,-108r-64,55r53,0","w":371},"\u00f7":{"d":"98,-123v-9,0,-14,-7,-14,-16v0,-9,5,-15,14,-15v8,0,14,6,14,15v0,9,-6,16,-14,16xm33,-82r0,-19r130,0r0,19r-130,0xm84,-45v0,-9,5,-16,14,-16v8,0,14,7,14,16v0,9,-6,15,-14,15v-9,0,-14,-6,-14,-15","w":196},"\u00a6":{"d":"48,-146r26,-135r20,0r-27,135r-19,0xm31,-56r19,0r-26,135r-20,0","w":98},"\u00b0":{"d":"76,-177v-24,0,-44,-17,-44,-40v0,-22,20,-39,44,-39v24,0,44,17,44,39v0,23,-20,40,-44,40xm76,-193v15,0,25,-10,25,-24v0,-14,-10,-23,-25,-23v-15,0,-25,9,-25,23v0,14,10,24,25,24","w":106},"\u00fe":{"d":"11,59r65,-310v-9,3,-34,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,27,2,33,3r-24,115v10,-14,25,-28,51,-28v34,0,58,24,58,69v0,69,-44,117,-96,117v-25,0,-36,-10,-42,-17r-16,73r1,0v17,0,30,3,36,6r0,14r-101,0r0,-14v5,-3,19,-6,36,-6xm127,-160v-24,0,-40,16,-47,26r-22,104v8,7,17,12,35,12v50,0,70,-54,70,-96v0,-32,-14,-46,-36,-46","w":208,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"\u00be":{"d":"201,-37r0,-9r109,-93r15,0r-18,86r25,0r-5,16r-24,0r-4,20v12,0,23,2,28,4r0,13r-82,0r0,-13v5,-2,16,-4,28,-4r1,0r4,-20r-77,0xm49,-131v7,2,11,3,25,3v31,0,48,-12,48,-27v0,-14,-13,-21,-39,-21r-8,0r0,-15r5,0v35,0,52,-14,52,-28v0,-12,-11,-18,-32,-18v-13,0,-21,1,-27,4v4,1,9,7,9,13v0,10,-6,14,-15,14v-8,0,-15,-6,-15,-14v0,-17,23,-35,56,-35v29,0,50,14,50,34v0,19,-22,31,-45,35v21,3,35,13,35,30v0,28,-32,44,-67,44v-32,0,-49,-12,-49,-29v0,-10,6,-17,16,-17v6,0,14,3,14,10v0,8,-6,14,-13,17xm110,3r-14,-10r191,-256r14,10xm293,-108r-64,55r53,0","w":371},"\u00ae":{"d":"26,-98v0,-90,75,-160,171,-160v66,0,119,29,119,103v0,90,-74,160,-170,160v-67,0,-120,-29,-120,-103xm43,-99v0,65,48,90,103,90v83,0,154,-61,154,-145v0,-65,-48,-90,-104,-90v-82,0,-153,61,-153,145xm76,-56r0,-13v6,-2,17,-3,31,-3r23,-108v-10,0,-17,-2,-22,-5r0,-12r85,0v34,0,48,12,48,36v0,22,-14,37,-38,44v10,2,15,8,14,23r0,8v-1,11,4,15,16,15v2,0,7,0,12,-2r-6,15v-5,3,-12,5,-22,5v-19,0,-30,-10,-28,-31r1,-7v2,-15,-1,-22,-24,-22r-23,0r-9,41v12,0,24,1,28,3r0,13r-86,0xm189,-179r-32,0r-12,51r34,0v19,0,35,-11,35,-30v0,-14,-7,-21,-25,-21","w":333},"\u00f0":{"d":"105,-193r-11,-14r47,-33v-10,-6,-22,-10,-37,-10v-18,0,-32,4,-45,10r6,-19v13,-8,33,-11,47,-11v19,0,36,5,50,14r33,-24r12,14r-31,22v13,15,21,38,21,68v0,69,-41,180,-121,180v-40,0,-59,-28,-59,-63v0,-52,41,-106,95,-106v26,0,47,12,52,29v2,-13,3,-25,3,-37v0,-23,-4,-42,-13,-55xm79,-15v39,0,68,-52,81,-104v-6,-13,-18,-22,-40,-22v-46,0,-74,44,-74,89v0,23,10,37,33,37","k":{"v":-7,"w":-7,"x":-12}},"\u00d7":{"d":"46,-130r13,-14r39,39r39,-39r13,14r-38,38r38,39r-12,13r-40,-39r-39,39r-13,-13r39,-39","w":196},"\u00a9":{"d":"26,-98v0,-90,75,-160,171,-160v66,0,119,29,119,103v0,90,-74,160,-170,160v-67,0,-120,-29,-120,-103xm43,-99v0,65,49,90,104,90v83,0,153,-61,153,-145v0,-65,-48,-90,-104,-90v-82,0,-153,61,-153,145xm82,-111v0,-50,46,-89,103,-89v27,0,41,6,50,15v3,-5,6,-11,10,-15r13,0r-12,57r-14,0v-3,-8,-3,-19,-1,-29v-9,-6,-20,-11,-43,-11v-43,0,-76,30,-76,69v0,29,17,42,53,42v34,0,58,-17,71,-32r4,13v-13,19,-40,38,-84,38v-49,0,-74,-20,-74,-58","w":332},"\u00c1":{"d":"143,0r0,-15v8,-3,23,-6,40,-6r-9,-56r-103,0r-33,56v16,0,30,3,37,6r0,15r-98,0r0,-15v7,-3,21,-6,37,-6r138,-232r25,0r36,232v13,1,24,4,30,6r0,15r-100,0xm153,-217r-71,120r89,0xm142,-279r-11,-8r48,-42v8,-7,14,-13,21,-13v7,0,14,4,14,13v0,7,-5,14,-16,20","w":258},"\u00c2":{"d":"143,0r0,-15v8,-3,23,-6,40,-6r-9,-56r-103,0r-33,56v16,0,30,3,37,6r0,15r-98,0r0,-15v7,-3,21,-6,37,-6r138,-232r25,0r36,232v13,1,24,4,30,6r0,15r-100,0xm153,-217r-71,120r89,0xm110,-283r57,-57r23,0r32,56r-15,5r-32,-39r-48,39","w":258},"\u00c4":{"d":"143,0r0,-15v8,-3,23,-6,40,-6r-9,-56r-103,0r-33,56v16,0,30,3,37,6r0,15r-98,0r0,-15v7,-3,21,-6,37,-6r138,-232r25,0r36,232v13,1,24,4,30,6r0,15r-100,0xm153,-217r-71,120r89,0xm206,-293v-12,0,-19,-8,-19,-19v0,-11,7,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm138,-293v-11,0,-18,-8,-18,-19v0,-11,7,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","w":258},"\u00c0":{"d":"143,0r0,-15v8,-3,23,-6,40,-6r-9,-56r-103,0r-33,56v16,0,30,3,37,6r0,15r-98,0r0,-15v7,-3,21,-6,37,-6r138,-232r25,0r36,232v13,1,24,4,30,6r0,15r-100,0xm153,-217r-71,120r89,0xm192,-279r-45,-30v-9,-6,-12,-12,-12,-17v0,-10,7,-16,15,-16v7,0,13,5,19,13r32,42","w":258},"\u00c5":{"d":"143,0r0,-15v8,-3,23,-6,40,-6r-9,-56r-103,0r-33,56v16,0,30,3,37,6r0,15r-98,0r0,-15v7,-3,21,-6,37,-6r138,-232r25,0r36,232v13,1,24,4,30,6r0,15r-100,0xm153,-217r-71,120r89,0xm167,-279v-21,0,-32,-11,-32,-28v0,-19,16,-42,46,-42v21,0,33,13,33,28v0,20,-16,42,-47,42xm169,-293v17,0,28,-13,28,-26v0,-9,-4,-16,-17,-16v-15,0,-28,14,-28,27v0,9,4,15,17,15","w":258},"\u00c3":{"d":"143,0r0,-15v8,-3,23,-6,40,-6r-9,-56r-103,0r-33,56v16,0,30,3,37,6r0,15r-98,0r0,-15v7,-3,21,-6,37,-6r138,-232r25,0r36,232v13,1,24,4,30,6r0,15r-100,0xm153,-217r-71,120r89,0xm121,-279r-8,-9v8,-21,21,-30,35,-30v21,0,30,17,47,17v11,0,19,-8,23,-17r8,10v-8,21,-20,29,-34,29v-21,0,-31,-16,-48,-16v-12,0,-19,8,-23,16","w":258},"\u00c7":{"d":"76,24r18,-20v-48,-5,-77,-41,-77,-93v0,-87,59,-168,143,-168v28,0,48,10,60,24v3,-8,12,-20,18,-24r12,0r-19,94r-14,0v-5,-12,-5,-34,-2,-50v-9,-13,-27,-22,-53,-22v-67,0,-114,70,-114,146v0,45,22,71,60,71v45,0,73,-32,93,-65r7,15v-12,36,-45,68,-94,72r-13,14v11,4,19,16,19,27v0,17,-15,34,-43,34v-9,0,-16,-3,-22,-6r-3,-17v7,3,14,4,24,4v14,0,21,-6,21,-15v0,-10,-10,-15,-21,-18r0,-3","w":240},"\u00c9":{"d":"45,-238r0,-15r214,0r-17,79r-17,0v-3,-15,-3,-43,1,-58r-112,0r-20,96r64,0v4,-13,12,-32,16,-37r16,0r-20,93r-15,0v-1,-9,-3,-25,-1,-37r-64,0r-21,96r118,0v3,-15,13,-47,24,-61r17,0r-17,82r-211,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6xm142,-279r-11,-8r48,-42v8,-7,14,-13,21,-13v7,0,14,4,14,13v0,7,-5,14,-16,20","w":258,"k":{"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u00f0":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"\u00ca":{"d":"45,-238r0,-15r214,0r-17,79r-17,0v-3,-15,-3,-43,1,-58r-112,0r-20,96r64,0v4,-13,12,-32,16,-37r16,0r-20,93r-15,0v-1,-9,-3,-25,-1,-37r-64,0r-21,96r118,0v3,-15,13,-47,24,-61r17,0r-17,82r-211,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6xm110,-283r57,-57r23,0r32,56r-15,5r-32,-39r-48,39","w":258,"k":{"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u00f0":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"\u00cb":{"d":"45,-238r0,-15r214,0r-17,79r-17,0v-3,-15,-3,-43,1,-58r-112,0r-20,96r64,0v4,-13,12,-32,16,-37r16,0r-20,93r-15,0v-1,-9,-3,-25,-1,-37r-64,0r-21,96r118,0v3,-15,13,-47,24,-61r17,0r-17,82r-211,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6xm206,-293v-12,0,-19,-8,-19,-19v0,-11,7,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm138,-293v-11,0,-18,-8,-18,-19v0,-11,7,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","w":258,"k":{"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u00f0":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"\u00c8":{"d":"45,-238r0,-15r214,0r-17,79r-17,0v-3,-15,-3,-43,1,-58r-112,0r-20,96r64,0v4,-13,12,-32,16,-37r16,0r-20,93r-15,0v-1,-9,-3,-25,-1,-37r-64,0r-21,96r118,0v3,-15,13,-47,24,-61r17,0r-17,82r-211,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6xm192,-279r-45,-30v-9,-6,-12,-12,-12,-17v0,-10,7,-16,15,-16v7,0,13,5,19,13r32,42","w":258,"k":{"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u00f0":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"\u00cd":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-45,211v17,0,32,3,39,6r0,15r-108,0xm83,-279r-11,-8r48,-42v8,-7,14,-13,21,-13v7,0,14,4,14,13v0,7,-5,14,-16,20","w":142},"\u00ce":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-45,211v17,0,32,3,39,6r0,15r-108,0xm51,-283r57,-57r23,0r32,56r-15,5r-32,-39r-48,39","w":142},"\u00cf":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-45,211v17,0,32,3,39,6r0,15r-108,0xm147,-293v-12,0,-19,-8,-19,-19v0,-11,7,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm79,-293v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","w":142},"\u00cc":{"d":"0,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6r0,-15r108,0r0,15v-7,3,-22,6,-39,6r-45,211v17,0,32,3,39,6r0,15r-108,0xm132,-279r-45,-30v-9,-6,-11,-12,-11,-17v0,-10,7,-16,15,-16v7,0,13,5,19,13r32,42","w":142},"\u00d1":{"d":"45,-238r0,-15r67,0r101,206r40,-185v-15,0,-29,-3,-35,-6r0,-15r94,0r0,15v-6,3,-21,6,-37,6r-50,235r-20,0r-103,-212r-39,188v17,0,31,3,38,6r0,15r-101,0r0,-15v7,-3,22,-6,39,-6r1,0r44,-211v-17,0,-32,-3,-39,-6xm145,-279r-8,-9v8,-21,20,-30,34,-30v21,0,31,17,48,17v11,0,19,-8,23,-17r8,10v-8,21,-21,29,-35,29v-21,0,-31,-16,-48,-16v-12,0,-18,8,-22,16","w":289},"\u00d3":{"d":"17,-89v0,-84,57,-168,143,-168v63,0,95,34,95,92v0,84,-58,169,-144,169v-63,0,-94,-35,-94,-93xm48,-89v0,45,20,71,64,71v65,0,112,-71,112,-147v0,-45,-21,-70,-65,-70v-64,0,-111,70,-111,146xm141,-279r-11,-8r47,-42v8,-7,14,-13,21,-13v7,0,14,4,14,13v0,7,-4,14,-15,20","w":260,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"\u00d4":{"d":"17,-89v0,-84,57,-168,143,-168v63,0,95,34,95,92v0,84,-58,169,-144,169v-63,0,-94,-35,-94,-93xm48,-89v0,45,20,71,64,71v65,0,112,-71,112,-147v0,-45,-21,-70,-65,-70v-64,0,-111,70,-111,146xm108,-283r58,-57r23,0r32,56r-16,5r-32,-39r-48,39","w":260,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"\u00d6":{"d":"17,-89v0,-84,57,-168,143,-168v63,0,95,34,95,92v0,84,-58,169,-144,169v-63,0,-94,-35,-94,-93xm48,-89v0,45,20,71,64,71v65,0,112,-71,112,-147v0,-45,-21,-70,-65,-70v-64,0,-111,70,-111,146xm204,-293v-12,0,-18,-8,-18,-19v0,-11,6,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm136,-293v-11,0,-18,-8,-18,-19v0,-11,7,-20,18,-20v11,0,19,9,19,20v0,11,-8,19,-19,19","w":260,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"\u00d2":{"d":"17,-89v0,-84,57,-168,143,-168v63,0,95,34,95,92v0,84,-58,169,-144,169v-63,0,-94,-35,-94,-93xm48,-89v0,45,20,71,64,71v65,0,112,-71,112,-147v0,-45,-21,-70,-65,-70v-64,0,-111,70,-111,146xm190,-279r-45,-30v-9,-6,-11,-12,-11,-17v0,-10,7,-16,15,-16v7,0,12,5,18,13r33,42","w":260,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"\u00d5":{"d":"17,-89v0,-84,57,-168,143,-168v63,0,95,34,95,92v0,84,-58,169,-144,169v-63,0,-94,-35,-94,-93xm48,-89v0,45,20,71,64,71v65,0,112,-71,112,-147v0,-45,-21,-70,-65,-70v-64,0,-111,70,-111,146xm120,-279r-8,-9v8,-21,20,-30,34,-30v21,0,31,17,48,17v11,0,19,-8,23,-17r8,10v-8,21,-21,29,-35,29v-21,0,-31,-16,-48,-16v-12,0,-18,8,-22,16","w":260,"k":{"-":-18,"\u2013":-18,"\u2014":-18,"W":11,"V":10,"Y":11,"\u00dd":11,"\u00ab":-8,"A":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,",":12,".":12,"\u2026":12,"X":4}},"\u00da":{"d":"37,-238r0,-15r108,0r0,15v-7,3,-23,6,-40,6r-29,139v-2,10,-3,19,-3,27v0,34,20,48,58,48v51,0,76,-28,87,-80r28,-134v-17,0,-32,-3,-39,-6r0,-15r102,0r0,15v-7,3,-22,6,-39,6r-28,134v-12,58,-45,102,-115,102v-57,0,-83,-23,-83,-64v0,-10,0,-21,3,-34r29,-138v-17,0,-32,-3,-39,-6xm156,-279r-11,-8r48,-42v8,-7,14,-13,21,-13v7,0,14,4,14,13v0,7,-5,14,-16,20","w":292,"k":{"a":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u00f0":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"A":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,",":35,".":35,"\u2026":35,"J":15,"\u00c6":14,"&":8,"m":4,"n":4,"p":4,"r":4,"\u00f1":4}},"\u00db":{"d":"37,-238r0,-15r108,0r0,15v-7,3,-23,6,-40,6r-29,139v-2,10,-3,19,-3,27v0,34,20,48,58,48v51,0,76,-28,87,-80r28,-134v-17,0,-32,-3,-39,-6r0,-15r102,0r0,15v-7,3,-22,6,-39,6r-28,134v-12,58,-45,102,-115,102v-57,0,-83,-23,-83,-64v0,-10,0,-21,3,-34r29,-138v-17,0,-32,-3,-39,-6xm124,-283r57,-57r23,0r32,56r-15,5r-32,-39r-48,39","w":292,"k":{"a":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u00f0":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"A":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,",":35,".":35,"\u2026":35,"J":15,"\u00c6":14,"&":8,"m":4,"n":4,"p":4,"r":4,"\u00f1":4}},"\u00dc":{"d":"37,-238r0,-15r108,0r0,15v-7,3,-23,6,-40,6r-29,139v-2,10,-3,19,-3,27v0,34,20,48,58,48v51,0,76,-28,87,-80r28,-134v-17,0,-32,-3,-39,-6r0,-15r102,0r0,15v-7,3,-22,6,-39,6r-28,134v-12,58,-45,102,-115,102v-57,0,-83,-23,-83,-64v0,-10,0,-21,3,-34r29,-138v-17,0,-32,-3,-39,-6xm220,-293v-12,0,-19,-8,-19,-19v0,-11,7,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm152,-293v-11,0,-18,-8,-18,-19v0,-11,7,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","w":292,"k":{"a":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u00f0":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"A":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,",":35,".":35,"\u2026":35,"J":15,"\u00c6":14,"&":8,"m":4,"n":4,"p":4,"r":4,"\u00f1":4}},"\u00d9":{"d":"37,-238r0,-15r108,0r0,15v-7,3,-23,6,-40,6r-29,139v-2,10,-3,19,-3,27v0,34,20,48,58,48v51,0,76,-28,87,-80r28,-134v-17,0,-32,-3,-39,-6r0,-15r102,0r0,15v-7,3,-22,6,-39,6r-28,134v-12,58,-45,102,-115,102v-57,0,-83,-23,-83,-64v0,-10,0,-21,3,-34r29,-138v-17,0,-32,-3,-39,-6xm206,-279r-45,-30v-9,-6,-12,-12,-12,-17v0,-10,8,-16,16,-16v7,0,12,5,18,13r32,42","w":292,"k":{"a":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u00f0":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"A":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,",":35,".":35,"\u2026":35,"J":15,"\u00c6":14,"&":8,"m":4,"n":4,"p":4,"r":4,"\u00f1":4}},"\u00dd":{"d":"34,-238r0,-15r94,0r0,15v-6,3,-18,5,-32,6r42,111r89,-111v-15,0,-28,-3,-34,-6r0,-15r87,0r0,15v-5,2,-16,4,-28,5r-108,134r-17,78v16,0,32,3,39,6r0,15r-108,0r0,-15v7,-3,22,-6,39,-6r1,0r16,-80r-50,-131v-14,-1,-24,-3,-30,-6xm141,-279r-11,-8r47,-42v8,-7,14,-13,21,-13v7,0,14,4,14,13v0,7,-4,14,-15,20","w":257,"k":{"C":11,"G":11,"O":11,"Q":11,"\u00d8":11,"\u00c7":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"-":35,"\u2013":35,"\u2014":35,"v":13,"w":13,"a":41,"\u00ab":35,"\u00e1":25,"\u00e2":25,"\u00e4":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"c":46,"d":46,"e":46,"o":46,"q":46,"\u00f8":46,"\u00f0":46,"\u00e7":46,"\u00e9":17,"\u00ea":17,"\u00eb":17,"\u00e8":17,"\u00f3":17,"\u00f4":17,"\u00f6":17,"\u00f2":17,"\u00f5":17,"A":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,"g":27,",":42,".":42,"\u2026":42,"s":21,"\/":21,"J":17,"\u00c6":28,"u":24,"y":24,"\u00fd":24,"\u00fa":24,"\u00fb":24,"\u00fc":24,"\u00f9":24,"\u00ff":24,"&":21,"\u00bb":23,"z":20,"m":18,"n":18,"p":18,"r":18,"\u00f1":18,":":21,";":21,"x":14}},"\u00e1":{"d":"15,-66v0,-75,48,-117,97,-117v24,0,38,11,43,18v4,-8,8,-14,14,-18r15,0r-27,123v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-20,0,-30,-11,-33,-27v-8,13,-26,27,-53,27v-34,0,-58,-24,-58,-69xm145,-131v1,-7,3,-14,5,-20v-8,-6,-17,-11,-33,-11v-44,0,-72,37,-72,96v0,32,16,46,37,46v20,0,34,-9,44,-19v1,-8,2,-16,3,-21xm93,-203r-11,-8r47,-42v8,-7,14,-13,21,-13v7,0,15,4,15,13v0,7,-5,14,-16,20","w":210,"k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00e2":{"d":"15,-66v0,-75,48,-117,97,-117v24,0,38,11,43,18v4,-8,8,-14,14,-18r15,0r-27,123v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-20,0,-30,-11,-33,-27v-8,13,-26,27,-53,27v-34,0,-58,-24,-58,-69xm145,-131v1,-7,3,-14,5,-20v-8,-6,-17,-11,-33,-11v-44,0,-72,37,-72,96v0,32,16,46,37,46v20,0,34,-9,44,-19v1,-8,2,-16,3,-21xm60,-207r58,-57r23,0r32,56r-16,5r-32,-39r-48,39","w":210,"k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00e4":{"d":"15,-66v0,-75,48,-117,97,-117v24,0,38,11,43,18v4,-8,8,-14,14,-18r15,0r-27,123v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-20,0,-30,-11,-33,-27v-8,13,-26,27,-53,27v-34,0,-58,-24,-58,-69xm145,-131v1,-7,3,-14,5,-20v-8,-6,-17,-11,-33,-11v-44,0,-72,37,-72,96v0,32,16,46,37,46v20,0,34,-9,44,-19v1,-8,2,-16,3,-21xm156,-217v-12,0,-18,-8,-18,-19v0,-11,6,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm89,-217v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","w":210,"k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00e0":{"d":"15,-66v0,-75,48,-117,97,-117v24,0,38,11,43,18v4,-8,8,-14,14,-18r15,0r-27,123v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-20,0,-30,-11,-33,-27v-8,13,-26,27,-53,27v-34,0,-58,-24,-58,-69xm145,-131v1,-7,3,-14,5,-20v-8,-6,-17,-11,-33,-11v-44,0,-72,37,-72,96v0,32,16,46,37,46v20,0,34,-9,44,-19v1,-8,2,-16,3,-21xm142,-203r-45,-30v-9,-6,-11,-12,-11,-17v0,-10,7,-16,15,-16v7,0,13,5,19,13r32,42","w":210,"k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00e5":{"d":"15,-66v0,-75,48,-117,97,-117v24,0,38,11,43,18v4,-8,8,-14,14,-18r15,0r-27,123v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-20,0,-30,-11,-33,-27v-8,13,-26,27,-53,27v-34,0,-58,-24,-58,-69xm145,-131v1,-7,3,-14,5,-20v-8,-6,-17,-11,-33,-11v-44,0,-72,37,-72,96v0,32,16,46,37,46v20,0,34,-9,44,-19v1,-8,2,-16,3,-21xm118,-203v-21,0,-32,-11,-32,-28v0,-19,16,-42,46,-42v21,0,33,13,33,28v0,20,-16,42,-47,42xm120,-217v17,0,28,-13,28,-26v0,-9,-4,-16,-17,-16v-15,0,-28,14,-28,27v0,9,4,15,17,15","w":210,"k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00e3":{"d":"15,-66v0,-75,48,-117,97,-117v24,0,38,11,43,18v4,-8,8,-14,14,-18r15,0r-27,123v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-20,0,-30,-11,-33,-27v-8,13,-26,27,-53,27v-34,0,-58,-24,-58,-69xm145,-131v1,-7,3,-14,5,-20v-8,-6,-17,-11,-33,-11v-44,0,-72,37,-72,96v0,32,16,46,37,46v20,0,34,-9,44,-19v1,-8,2,-16,3,-21xm72,-203r-8,-9v8,-21,20,-30,34,-30v21,0,31,17,48,17v11,0,19,-8,23,-17r8,10v-8,21,-21,29,-35,29v-21,0,-31,-16,-48,-16v-12,0,-18,8,-22,16","w":210,"k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00e7":{"d":"44,24r19,-22v-31,-4,-50,-28,-50,-68v0,-69,42,-117,99,-117v23,0,50,14,50,40v0,13,-9,23,-23,23v-13,0,-18,-7,-18,-18v0,-8,6,-17,11,-20v-4,-3,-10,-5,-20,-5v-52,0,-70,55,-70,97v0,32,16,46,40,46v30,0,45,-18,54,-31r5,14v-8,19,-26,37,-58,40r-14,15v11,4,18,16,18,27v0,17,-14,34,-42,34v-9,0,-17,-3,-23,-6r-3,-17v7,3,15,4,25,4v14,0,20,-6,20,-15v0,-10,-9,-15,-20,-18r0,-3","w":164,"k":{"v":-7,"w":-7,"b":4,"h":4,"k":4,"l":4,"\u00fe":4}},"\u00e9":{"d":"15,-66v0,-63,44,-117,97,-117v32,0,48,17,48,42v0,37,-38,65,-115,65r0,10v0,32,14,46,38,46v30,0,47,-18,56,-31r4,14v-8,21,-31,40,-67,40v-35,0,-61,-24,-61,-69xm110,-162v-30,0,-54,30,-62,66v60,-1,84,-20,84,-45v0,-11,-5,-21,-22,-21xm93,-203r-11,-8r47,-42v8,-7,14,-13,21,-13v7,0,15,4,15,13v0,7,-5,14,-16,20","w":171,"k":{"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"\u00ea":{"d":"15,-66v0,-63,44,-117,97,-117v32,0,48,17,48,42v0,37,-38,65,-115,65r0,10v0,32,14,46,38,46v30,0,47,-18,56,-31r4,14v-8,21,-31,40,-67,40v-35,0,-61,-24,-61,-69xm110,-162v-30,0,-54,30,-62,66v60,-1,84,-20,84,-45v0,-11,-5,-21,-22,-21xm60,-207r58,-57r23,0r32,56r-16,5r-32,-39r-48,39","w":171,"k":{"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"\u00eb":{"d":"15,-66v0,-63,44,-117,97,-117v32,0,48,17,48,42v0,37,-38,65,-115,65r0,10v0,32,14,46,38,46v30,0,47,-18,56,-31r4,14v-8,21,-31,40,-67,40v-35,0,-61,-24,-61,-69xm110,-162v-30,0,-54,30,-62,66v60,-1,84,-20,84,-45v0,-11,-5,-21,-22,-21xm156,-217v-12,0,-18,-8,-18,-19v0,-11,6,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm89,-217v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","w":171,"k":{"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"\u00e8":{"d":"15,-66v0,-63,44,-117,97,-117v32,0,48,17,48,42v0,37,-38,65,-115,65r0,10v0,32,14,46,38,46v30,0,47,-18,56,-31r4,14v-8,21,-31,40,-67,40v-35,0,-61,-24,-61,-69xm110,-162v-30,0,-54,30,-62,66v60,-1,84,-20,84,-45v0,-11,-5,-21,-22,-21xm142,-203r-45,-30v-9,-6,-11,-12,-11,-17v0,-10,7,-16,15,-16v7,0,13,5,19,13r32,42","w":171,"k":{"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"\u00ed":{"d":"28,-31v0,-10,3,-22,4,-29r21,-98v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,29,2,34,3r-26,117v-1,6,-4,18,-4,26v0,11,5,16,13,16v15,0,29,-18,34,-31r5,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34xm54,-203r-12,-8r48,-42v8,-7,14,-13,21,-13v7,0,14,4,14,13v0,7,-4,14,-15,20","w":113,"k":{"v":-7,"w":-7,"x":-12}},"\u00ee":{"d":"28,-31v0,-10,3,-22,4,-29r21,-98v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,29,2,34,3r-26,117v-1,6,-4,18,-4,26v0,11,5,16,13,16v15,0,29,-18,34,-31r5,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34xm21,-207r58,-57r23,0r32,56r-16,5r-32,-39r-48,39","w":113,"k":{"v":-7,"w":-7,"x":-12}},"\u00ef":{"d":"28,-31v0,-10,3,-22,4,-29r21,-98v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,29,2,34,3r-26,117v-1,6,-4,18,-4,26v0,11,5,16,13,16v15,0,29,-18,34,-31r5,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34xm117,-217v-12,0,-18,-8,-18,-19v0,-11,6,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm49,-217v-11,0,-18,-8,-18,-19v0,-11,7,-20,18,-20v11,0,19,9,19,20v0,11,-8,19,-19,19","w":113,"k":{"v":-7,"w":-7,"x":-12}},"\u00ec":{"d":"28,-31v0,-10,3,-22,4,-29r21,-98v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,29,2,34,3r-26,117v-1,6,-4,18,-4,26v0,11,5,16,13,16v15,0,29,-18,34,-31r5,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34xm103,-203r-45,-30v-9,-6,-12,-12,-12,-17v0,-10,8,-16,16,-16v7,0,12,5,18,13r33,42","w":113,"k":{"v":-7,"w":-7,"x":-12}},"\u00f1":{"d":"22,0r33,-158v-10,3,-33,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,33,3r-7,36v13,-24,32,-42,59,-42v32,0,45,20,45,48v0,13,-3,26,-7,39r-10,37v-1,5,-4,17,-4,25v0,11,5,16,13,16v15,0,28,-18,34,-31r5,11v-3,15,-15,41,-46,41v-23,0,-34,-14,-34,-34v0,-10,2,-22,4,-28r10,-37v4,-14,8,-27,8,-38v0,-17,-8,-25,-28,-25v-23,0,-44,23,-55,42r-25,117r-27,0xm83,-203r-8,-9v8,-21,20,-30,34,-30v21,0,31,17,48,17v11,0,19,-8,23,-17r8,10v-8,21,-21,29,-35,29v-21,0,-31,-16,-48,-16v-12,0,-18,8,-22,16","w":219,"k":{"\u2018":38,"\u201c":38,"\u2019":35,"\u201d":35,",":-11,".":-11,"\u2026":-11,"s":-3,"\u00bb":-10,":":-10,";":-10,"x":-12}},"\u00f3":{"d":"14,-68v0,-64,39,-115,98,-115v40,0,65,22,65,70v0,65,-42,116,-98,116v-40,0,-65,-23,-65,-71xm44,-68v0,37,15,50,39,50v37,0,65,-43,65,-95v0,-36,-16,-49,-40,-49v-40,0,-64,39,-64,94xm90,-203r-11,-8r47,-42v8,-7,15,-13,22,-13v7,0,14,4,14,13v0,7,-5,14,-16,20","w":194,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"\u00f4":{"d":"14,-68v0,-64,39,-115,98,-115v40,0,65,22,65,70v0,65,-42,116,-98,116v-40,0,-65,-23,-65,-71xm44,-68v0,37,15,50,39,50v37,0,65,-43,65,-95v0,-36,-16,-49,-40,-49v-40,0,-64,39,-64,94xm58,-207r57,-57r23,0r32,56r-16,5r-32,-39r-47,39","w":194,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"\u00f6":{"d":"14,-68v0,-64,39,-115,98,-115v40,0,65,22,65,70v0,65,-42,116,-98,116v-40,0,-65,-23,-65,-71xm44,-68v0,37,15,50,39,50v37,0,65,-43,65,-95v0,-36,-16,-49,-40,-49v-40,0,-64,39,-64,94xm153,-217v-12,0,-18,-8,-18,-19v0,-11,6,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm86,-217v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","w":194,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"\u00f2":{"d":"14,-68v0,-64,39,-115,98,-115v40,0,65,22,65,70v0,65,-42,116,-98,116v-40,0,-65,-23,-65,-71xm44,-68v0,37,15,50,39,50v37,0,65,-43,65,-95v0,-36,-16,-49,-40,-49v-40,0,-64,39,-64,94xm139,-203r-45,-30v-9,-6,-11,-12,-11,-17v0,-10,7,-16,15,-16v7,0,13,5,19,13r32,42","w":194,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"\u00f5":{"d":"14,-68v0,-64,39,-115,98,-115v40,0,65,22,65,70v0,65,-42,116,-98,116v-40,0,-65,-23,-65,-71xm44,-68v0,37,15,50,39,50v37,0,65,-43,65,-95v0,-36,-16,-49,-40,-49v-40,0,-64,39,-64,94xm69,-203r-8,-9v8,-21,20,-30,34,-30v21,0,31,17,48,17v11,0,19,-8,23,-17r8,10v-8,21,-21,29,-35,29v-21,0,-31,-16,-48,-16v-12,0,-18,8,-22,16","w":194,"k":{"\u2018":21,"\u201c":21,"\u2019":21,"\u201d":21,"\u00ab":-6,"m":6,"n":6,"p":6,"r":6,"\u00f1":6,"x":4}},"\u00fa":{"d":"27,-45v0,-13,4,-31,7,-42r17,-71v-10,3,-34,2,-43,-1r0,-15v7,-3,25,-6,42,-6v14,0,28,2,33,3r-21,90v-2,9,-7,30,-7,41v0,17,7,25,27,25v23,0,39,-13,51,-29r2,-10r25,-120r28,0r-25,120v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,33,-31r6,11v-3,15,-15,41,-46,41v-22,0,-33,-13,-34,-32v-13,22,-33,32,-59,32v-34,0,-45,-20,-45,-48xm100,-203r-11,-8r47,-42v8,-7,15,-13,22,-13v7,0,14,4,14,13v0,7,-5,14,-16,20","k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00fb":{"d":"27,-45v0,-13,4,-31,7,-42r17,-71v-10,3,-34,2,-43,-1r0,-15v7,-3,25,-6,42,-6v14,0,28,2,33,3r-21,90v-2,9,-7,30,-7,41v0,17,7,25,27,25v23,0,39,-13,51,-29r2,-10r25,-120r28,0r-25,120v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,33,-31r6,11v-3,15,-15,41,-46,41v-22,0,-33,-13,-34,-32v-13,22,-33,32,-59,32v-34,0,-45,-20,-45,-48xm68,-207r57,-57r23,0r32,56r-15,5r-33,-39r-47,39","k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00fc":{"d":"27,-45v0,-13,4,-31,7,-42r17,-71v-10,3,-34,2,-43,-1r0,-15v7,-3,25,-6,42,-6v14,0,28,2,33,3r-21,90v-2,9,-7,30,-7,41v0,17,7,25,27,25v23,0,39,-13,51,-29r2,-10r25,-120r28,0r-25,120v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,33,-31r6,11v-3,15,-15,41,-46,41v-22,0,-33,-13,-34,-32v-13,22,-33,32,-59,32v-34,0,-45,-20,-45,-48xm163,-217v-12,0,-18,-8,-18,-19v0,-11,6,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm96,-217v-11,0,-19,-8,-19,-19v0,-11,8,-20,19,-20v11,0,18,9,18,20v0,11,-7,19,-18,19","k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00f9":{"d":"27,-45v0,-13,4,-31,7,-42r17,-71v-10,3,-34,2,-43,-1r0,-15v7,-3,25,-6,42,-6v14,0,28,2,33,3r-21,90v-2,9,-7,30,-7,41v0,17,7,25,27,25v23,0,39,-13,51,-29r2,-10r25,-120r28,0r-25,120v-1,6,-4,18,-4,26v0,11,4,16,13,16v15,0,28,-18,33,-31r6,11v-3,15,-15,41,-46,41v-22,0,-33,-13,-34,-32v-13,22,-33,32,-59,32v-34,0,-45,-20,-45,-48xm149,-203r-45,-30v-9,-6,-11,-12,-11,-17v0,-10,7,-16,15,-16v7,0,13,5,19,13r32,42","k":{"\u2018":37,"\u201c":37,"\u2019":32,"\u201d":32,"x":-10}},"\u00fd":{"d":"24,-53v0,-13,4,-28,7,-41r15,-64v-10,3,-34,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,34,3r-20,83v-3,14,-7,27,-7,39v0,15,8,24,25,24v17,0,34,-8,47,-22r25,-127r30,0r-30,135r-6,35v-8,50,-31,86,-84,86v-24,0,-55,-11,-55,-38v0,-13,9,-25,23,-25v14,0,21,6,21,19v0,8,-6,17,-13,20v4,3,13,6,23,6v30,0,48,-19,57,-65r5,-24v-10,17,-29,24,-47,24v-34,0,-49,-18,-49,-46xm89,-203r-12,-8r48,-42v8,-7,14,-13,21,-13v7,0,14,4,14,13v0,7,-4,14,-15,20","w":192,"k":{"\u2018":18,"\u201c":18,"\u2019":18,"\u201d":18,"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"\u00ff":{"d":"24,-53v0,-13,4,-28,7,-41r15,-64v-10,3,-34,2,-42,-1r0,-15v7,-3,24,-6,41,-6v14,0,28,2,34,3r-20,83v-3,14,-7,27,-7,39v0,15,8,24,25,24v17,0,34,-8,47,-22r25,-127r30,0r-30,135r-6,35v-8,50,-31,86,-84,86v-24,0,-55,-11,-55,-38v0,-13,9,-25,23,-25v14,0,21,6,21,19v0,8,-6,17,-13,20v4,3,13,6,23,6v30,0,48,-19,57,-65r5,-24v-10,17,-29,24,-47,24v-34,0,-49,-18,-49,-46xm152,-217v-12,0,-18,-8,-18,-19v0,-11,6,-20,18,-20v11,0,18,9,18,20v0,11,-7,19,-18,19xm84,-217v-11,0,-18,-8,-18,-19v0,-11,7,-20,18,-20v11,0,19,9,19,20v0,11,-8,19,-19,19","w":192,"k":{"\u2018":18,"\u201c":18,"\u2019":18,"\u201d":18,"b":10,"h":10,"k":10,"l":10,"\u00fe":10}},"\u00a0":{"w":78}}});
;
// $Id $

/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

/**
 * Create a cookie with the given name and value and other optional parameters.
 *
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
 *       used when the cookie was set.
 *
 * @param String name The name of the cookie.
 * @param String value The value of the cookie.
 * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
 * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
 *                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
 *                             If set to null or omitted, the cookie will be a session cookie and will not be retained
 *                             when the the browser exits.
 * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
 * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
 *                        require a secure protocol (like HTTPS).
 * @type undefined
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

/**
 * Get the value of a cookie with the given name.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String name The name of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // CAUTION: Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};;
// $Id $
Drupal.behaviors.textResize = function(context) {
  // Which div or page element are we resizing?
  if (text_resize_scope) { // Admin-specified scope takes precedence.
    if ($('#'+text_resize_scope).length > 0) {
      var element_to_resize = $('#'+text_resize_scope); // ID specified by admin
    }
    else if ($('.'+text_resize_scope).length > 0) {
      var element_to_resize = $('.'+text_resize_scope); // CLASS specified by admin
    }
    else {
      var element_to_resize = $(text_resize_scope); // It's just a tag specified by admin
    }
	}
	else { // Look for some default scopes that might exist.
    if ($('DIV.left-corner').length > 0) {
      var element_to_resize = $('DIV.left-corner'); // Main body div for Garland
    }
    else if ($('#content-inner').length > 0) {
      var element_to_resize = $('#content-inner'); // Main body div for Zen-based themes
    }
    else if ($('#squeeze > #content').length > 0) {
      var element_to_resize = $('#squeeze > #content'); // Main body div for Zen Classic
    }
	}
  // Set the initial font size if necessary
  if ($.cookie('text_resize') != null) {
    element_to_resize.css('font-size', parseFloat($.cookie('text_resize')) + 'px');
    //alert( "Should be size: " + $.cookie('text_resize'));
  }
  else {
    //alert('Couldn\'t find text_resize cookie.');
  }
  if (text_resize_line_height_allow) {
    //alert('line height adjustment allowed! The current line-height is '+parseFloat(element_to_resize.css('line-height'), 10));
		// Set the initial line height if necessary
    if ($.cookie('text_resize_line_height') != null) {
      element_to_resize.css('line-height', parseFloat($.cookie('text_resize_line_height')) + 'px');
    }
	}
  // Changer links will change the text size when clicked
  $('a.changer').click(function() {
    // Set the current font size of the specified section as a variable
    var currentFontSize = parseFloat(element_to_resize.css('font-size'), 10);
		//alert('currentFontSize = '+currentFontSize);
		// Set the current line-height
		var current_line_height = parseFloat(element_to_resize.css('line-height'), 10);
		//alert('current_line_height = '+current_line_height);
    // javascript lets us choose which link was clicked, by ID
    if (this.id == 'text_resize_increase') {
      var new_font_size = currentFontSize * 1.2;
      if (text_resize_line_height_allow) { var new_line_height = current_line_height * 1.2; }
      // Allow resizing as long as font size doesn't go above text_resize_maximum.
      if (new_font_size <= text_resize_maximum) {
        $.cookie('text_resize', new_font_size, { path: '/' });
        if (text_resize_line_height_allow) { $.cookie('text_resize_line_height', new_line_height, { path: '/' }); }
        var allow_change = true;
      }
      else {
				$.cookie('text_resize', text_resize_maximum, { path: '/' });
        if (text_resize_line_height_allow) { $.cookie('text_resize_line_height', text_resize_line_height_max, { path: '/' }); }
        var reset_size_max = true;
			}
    }
    else if (this.id == 'text_resize_decrease') {
      var new_font_size = currentFontSize / 1.2;
      if (text_resize_line_height_allow) { var new_line_height = current_line_height / 1.2; }
      if (new_font_size >= text_resize_minimum) {
        // Allow resizing as long as font size doesn't go below text_resize_minimum.
        $.cookie('text_resize', new_font_size, { path: '/' });
        if (text_resize_line_height_allow) { $.cookie('text_resize_line_height', new_line_height, { path: '/' }); }
        var allow_change = true;
      }
      else {
        // If it goes below text_resize_minimum, just leave it at text_resize_minimum.
        $.cookie('text_resize', text_resize_minimum, { path: '/' });
				if (text_resize_line_height_allow) { $.cookie('text_resize_line_height', text_resize_line_height_min, { path: '/' }); }
        var reset_size_min = true;
      }
    }
    else if (this.id == 'text_resize_reset') {
      $.cookie('text_resize', text_resize_minimum, { path: '/' });
			if (text_resize_line_height_allow) { $.cookie('text_resize_line_height', text_resize_line_height_min, { path: '/' }); }
      var reset_size_min = true;
    }
    // jQuery lets us set the font size value of the main text div
    if (allow_change == true) {
      element_to_resize.css('font-size', new_font_size + 'px'); // Add 'px' onto the end, otherwise ems are used as units by default
			if (text_resize_line_height_allow) { element_to_resize.css('line-height', new_line_height + 'px'); }
      return false;
    }
    else if (reset_size_min == true) {
      element_to_resize.css('font-size', text_resize_minimum + 'px');
			if (text_resize_line_height_allow) { element_to_resize.css('line-height', text_resize_line_height_min + 'px'); }
      return false;
    }
    else if (reset_size_max == true) {
      element_to_resize.css('font-size', text_resize_maximum + 'px');
			if (text_resize_line_height_allow) { element_to_resize.css('line-height', text_resize_line_height_max + 'px'); }
      return false;
    }
  });
};

