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

;
/*
 * jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version 2.25
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function(G){var A="2.25";var B=G.browser.msie&&/MSIE 6.0/.test(navigator.userAgent);function D(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments,""))}}G.fn.cycle=function(I){return this.each(function(){if(I===undefined||I===null){I={}}if(I.constructor==String){switch(I){case"stop":if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;G(this).data("cycle.opts","");return ;case"pause":this.cyclePause=1;return ;case"resume":this.cyclePause=0;return ;default:I={fx:I}}}else{if(I.constructor==Number){var N=I;I=G(this).data("cycle.opts");if(!I){D("options not found, can not advance slide");return }if(N<0||N>=I.elements.length){D("invalid slide index: "+N);return }I.nextSlide=N;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);this.cycleTimeout=0}E(I.elements,I,1,1);return }}if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var Q=G(this);var O=I.slideExpr?G(I.slideExpr,this):Q.children();var K=O.get();if(K.length<2){D("terminating; too few slides: "+K.length);return }var J=G.extend({},G.fn.cycle.defaults,I||{},G.metadata?Q.metadata():G.meta?Q.data():{});if(J.autostop){J.countdown=J.autostopCount||K.length}Q.data("cycle.opts",J);J.container=this;J.elements=K;J.before=J.before?[J.before]:[];J.after=J.after?[J.after]:[];J.after.unshift(function(){J.busy=0});if(J.continuous){J.after.push(function(){E(K,J,0,!J.rev)})}if(B&&J.cleartype&&!J.cleartypeNoBg){C(O)}var S=this.className;J.width=parseInt((S.match(/w:(\d+)/)||[])[1])||J.width;J.height=parseInt((S.match(/h:(\d+)/)||[])[1])||J.height;J.timeout=parseInt((S.match(/t:(\d+)/)||[])[1])||J.timeout;if(Q.css("position")=="static"){Q.css("position","relative")}if(J.width){Q.width(J.width)}if(J.height&&J.height!="auto"){Q.height(J.height)}if(J.random){J.randomMap=[];for(var L=0;L<K.length;L++){J.randomMap.push(L)}J.randomMap.sort(function(U,T){return Math.random()-0.5});J.randomIndex=0;J.startingSlide=J.randomMap[0]}else{if(J.startingSlide>=K.length){J.startingSlide=0}}var M=J.startingSlide||0;O.css({position:"absolute",top:0,left:0}).hide().each(function(T){var U=M?T>=M?K.length-(T-M):M-T:K.length-T;G(this).css("z-index",U)});G(K[M]).css("opacity",1).show();if(G.browser.msie){K[M].style.removeAttribute("filter")}if(J.fit&&J.width){O.width(J.width)}if(J.fit&&J.height&&J.height!="auto"){O.height(J.height)}if(J.pause){Q.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}var R=G.fn.cycle.transitions[J.fx];if(G.isFunction(R)){R(Q,O,J)}else{if(J.fx!="custom"){D("unknown transition: "+J.fx)}}O.each(function(){var T=G(this);this.cycleH=(J.fit&&J.height)?J.height:T.height();this.cycleW=(J.fit&&J.width)?J.width:T.width()});J.cssBefore=J.cssBefore||{};J.animIn=J.animIn||{};J.animOut=J.animOut||{};O.not(":eq("+M+")").css(J.cssBefore);if(J.cssFirst){G(O[M]).css(J.cssFirst)}if(J.timeout){if(J.speed.constructor==String){J.speed={slow:600,fast:200}[J.speed]||400}if(!J.sync){J.speed=J.speed/2}while((J.timeout-J.speed)<250){J.timeout+=J.speed}}if(J.easing){J.easeIn=J.easeOut=J.easing}if(!J.speedIn){J.speedIn=J.speed}if(!J.speedOut){J.speedOut=J.speed}J.slideCount=K.length;J.currSlide=M;if(J.random){J.nextSlide=J.currSlide;if(++J.randomIndex==K.length){J.randomIndex=0}J.nextSlide=J.randomMap[J.randomIndex]}else{J.nextSlide=J.startingSlide>=(K.length-1)?0:J.startingSlide+1}var P=O[M];if(J.before.length){J.before[0].apply(P,[P,P,J,true])}if(J.after.length>1){J.after[1].apply(P,[P,P,J,true])}if(J.click&&!J.next){J.next=J.click}if(J.next){G(J.next).bind("click",function(){return F(K,J,J.rev?-1:1)})}if(J.prev){G(J.prev).bind("click",function(){return F(K,J,J.rev?1:-1)})}if(J.pager){H(K,J)}J.addSlide=function(U){var T=G(U),V=T[0];if(!J.autostopCount){J.countdown++}K.push(V);if(J.els){J.els.push(V)}J.slideCount=K.length;T.css("position","absolute").appendTo(Q);if(B&&J.cleartype&&!J.cleartypeNoBg){C(T)}if(J.fit&&J.width){T.width(J.width)}if(J.fit&&J.height&&J.height!="auto"){O.height(J.height)}V.cycleH=(J.fit&&J.height)?J.height:T.height();V.cycleW=(J.fit&&J.width)?J.width:T.width();T.css(J.cssBefore);if(J.pager){G.fn.cycle.createPagerAnchor(K.length-1,V,G(J.pager),K,J)}if(typeof J.onAddSlide=="function"){J.onAddSlide(T)}};if(J.timeout||J.continuous){this.cycleTimeout=setTimeout(function(){E(K,J,0,!J.rev)},J.continuous?10:J.timeout+(J.delay||0))}})};function E(N,I,M,O){if(I.busy){return }var L=I.container,Q=N[I.currSlide],P=N[I.nextSlide];if(L.cycleTimeout===0&&!M){return }if(!M&&!L.cyclePause&&((I.autostop&&(--I.countdown<=0))||(I.nowrap&&!I.random&&I.nextSlide<I.currSlide))){if(I.end){I.end(I)}return }if(M||!L.cyclePause){if(I.before.length){G.each(I.before,function(R,S){S.apply(P,[Q,P,I,O])})}var J=function(){if(G.browser.msie&&I.cleartype){this.style.removeAttribute("filter")}G.each(I.after,function(R,S){S.apply(P,[Q,P,I,O])})};if(I.nextSlide!=I.currSlide){I.busy=1;if(I.fxFn){I.fxFn(Q,P,I,J,O)}else{if(G.isFunction(G.fn.cycle[I.fx])){G.fn.cycle[I.fx](Q,P,I,J)}else{G.fn.cycle.custom(Q,P,I,J,M&&I.fastOnEvent)}}}if(I.random){I.currSlide=I.nextSlide;if(++I.randomIndex==N.length){I.randomIndex=0}I.nextSlide=I.randomMap[I.randomIndex]}else{var K=(I.nextSlide+1)==N.length;I.nextSlide=K?0:I.nextSlide+1;I.currSlide=K?N.length-1:I.nextSlide-1}if(I.pager){G.fn.cycle.updateActivePagerLink(I.pager,I.currSlide)}}if(I.timeout&&!I.continuous){L.cycleTimeout=setTimeout(function(){E(N,I,0,!I.rev)},I.timeout)}else{if(I.continuous&&L.cyclePause){L.cycleTimeout=setTimeout(function(){E(N,I,0,!I.rev)},10)}}}G.fn.cycle.updateActivePagerLink=function(I,J){G(I).find("a").removeClass("activeSlide").filter("a:eq("+J+")").addClass("activeSlide")};function F(I,J,M){var L=J.container,K=L.cycleTimeout;if(K){clearTimeout(K);L.cycleTimeout=0}if(J.random&&M<0){J.randomIndex--;if(--J.randomIndex==-2){J.randomIndex=I.length-2}else{if(J.randomIndex==-1){J.randomIndex=I.length-1}}J.nextSlide=J.randomMap[J.randomIndex]}else{if(J.random){if(++J.randomIndex==I.length){J.randomIndex=0}J.nextSlide=J.randomMap[J.randomIndex]}else{J.nextSlide=J.currSlide+M;if(J.nextSlide<0){if(J.nowrap){return false}J.nextSlide=I.length-1}else{if(J.nextSlide>=I.length){if(J.nowrap){return false}J.nextSlide=0}}}}if(J.prevNextClick&&typeof J.prevNextClick=="function"){J.prevNextClick(M>0,J.nextSlide,I[J.nextSlide])}E(I,J,1,M>=0);return false}function H(J,K){var I=G(K.pager);G.each(J,function(L,M){G.fn.cycle.createPagerAnchor(L,M,I,J,K)});G.fn.cycle.updateActivePagerLink(K.pager,K.startingSlide)}G.fn.cycle.createPagerAnchor=function(K,L,I,J,M){var N=(typeof M.pagerAnchorBuilder=="function")?G(M.pagerAnchorBuilder(K,L)):G('<a href="#">'+(K+1)+"</a>");if(N.parents("body").length==0){N.appendTo(I)}N.bind(M.pagerEvent,function(){M.nextSlide=K;var P=M.container,O=P.cycleTimeout;if(O){clearTimeout(O);P.cycleTimeout=0}if(typeof M.pagerClick=="function"){M.pagerClick(M.nextSlide,J[M.nextSlide])}E(J,M,1,M.currSlide<K);return false})};function C(K){function J(L){var L=parseInt(L).toString(16);return L.length<2?"0"+L:L}function I(N){for(;N&&N.nodeName.toLowerCase()!="html";N=N.parentNode){var L=G.css(N,"background-color");if(L.indexOf("rgb")>=0){var M=L.match(/\d+/g);return"#"+J(M[0])+J(M[1])+J(M[2])}if(L&&L!="transparent"){return L}}return"#ffffff"}K.each(function(){G(this).css("background-color",I(this))})}G.fn.cycle.custom=function(T,N,I,K,J){var S=G(T),O=G(N);O.css(I.cssBefore);var L=J?1:I.speedIn;var R=J?1:I.speedOut;var M=J?null:I.easeIn;var Q=J?null:I.easeOut;var P=function(){O.animate(I.animIn,L,M,K)};S.animate(I.animOut,R,Q,function(){if(I.cssAfter){S.css(I.cssAfter)}if(!I.sync){P()}});if(I.sync){P()}};G.fn.cycle.transitions={fade:function(J,K,I){K.not(":eq("+I.startingSlide+")").css("opacity",0);I.before.push(function(){G(this).show()});I.animIn={opacity:1};I.animOut={opacity:0};I.cssBefore={opacity:0};I.cssAfter={display:"none"}}};G.fn.cycle.ver=function(){return A};G.fn.cycle.defaults={fx:"fade",timeout:4000,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",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,pause:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:0,nowrap:0,fastOnEvent:0}})(jQuery);

Drupal.behaviors.views_rotator = function(context) {
  $.each(Drupal.settings.views_rotator, function(id) {
    $('#' + id).cycle(this);
    if (this.next != undefined || this.prev != undefined) {
      var settings = this;
      $(settings.prev).addClass('views-rotator-prev');
      $(settings.next).addClass('views-rotator-next');
      $('.' + id).hover(function() {
        $(settings.prev).addClass('views-rotator-prev-hover');
        $(settings.next).addClass('views-rotator-next-hover');
      }, function() {
        $(settings.prev).removeClass('views-rotator-prev-hover');
        $(settings.next).removeClass('views-rotator-next-hover');
      });
    }
    if (this.auto_height == 1) {
      var height = null;
      $('#' + id + ' .views-rotator-item').each(function() {
        var item_height = $(this).height();
        if (item_height > height) height = item_height;
      });
      $('#' + id).height(height);
    }
  });
};;
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

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

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

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

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

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

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

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

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

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

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

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

  var $view = $(target);

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

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

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


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

        return false;
      });

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

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;
/* Copyright (c) 2009 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 *
 * Version: 3.0.2
 * 
 * Requires: 1.2.2+
 */
(function(c){var a=["DOMMouseScroll","mousewheel"];c.event.special.mousewheel={setup:function(){if(this.addEventListener){for(var d=a.length;d;){this.addEventListener(a[--d],b,false)}}else{this.onmousewheel=b}},teardown:function(){if(this.removeEventListener){for(var d=a.length;d;){this.removeEventListener(a[--d],b,false)}}else{this.onmousewheel=null}}};c.fn.extend({mousewheel:function(d){return d?this.bind("mousewheel",d):this.trigger("mousewheel")},unmousewheel:function(d){return this.unbind("mousewheel",d)}});function b(f){var d=[].slice.call(arguments,1),g=0,e=true;f=c.event.fix(f||window.event);f.type="mousewheel";if(f.wheelDelta){g=f.wheelDelta/120}if(f.detail){g=-f.detail/3}d.unshift(f,g);return c.event.handle.apply(this,d)}})(jQuery);;
/* Copyright (c) 2006 Kelvin Luck (kelvin AT kelvinluck DOT com || http://www.kelvinluck.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * 
 * See http://kelvinluck.com/assets/jquery/jScrollPane/
 * $Id: jScrollPane.js 33 2008-12-10 22:55:28Z kelvin.luck $
 */

/**
 * Replace the vertical scroll bars on any matched elements with a fancy
 * styleable (via CSS) version. With JS disabled the elements will
 * gracefully degrade to the browsers own implementation of overflow:auto.
 * If the mousewheel plugin has been included on the page then the scrollable areas will also
 * respond to the mouse wheel.
 *
 * @example jQuery(".scroll-pane").jScrollPane();
 *
 * @name jScrollPane
 * @type jQuery
 * @param Object	settings	hash with options, described below.
 *								scrollbarWidth	-	The width of the generated scrollbar in pixels
 *								scrollbarMargin	-	The amount of space to leave on the side of the scrollbar in pixels
 *								wheelSpeed		-	The speed the pane will scroll in response to the mouse wheel in pixels
 *								showArrows		-	Whether to display arrows for the user to scroll with
 *								arrowSize		-	The height of the arrow buttons if showArrows=true
 *								animateTo		-	Whether to animate when calling scrollTo and scrollBy
 *								dragMinHeight	-	The minimum height to allow the drag bar to be
 *								dragMaxHeight	-	The maximum height to allow the drag bar to be
 *								animateInterval	-	The interval in milliseconds to update an animating scrollPane (default 100)
 *								animateStep		-	The amount to divide the remaining scroll distance by when animating (default 3)
 *								maintainPosition-	Whether you want the contents of the scroll pane to maintain it's position when you re-initialise it - so it doesn't scroll as you add more content (default true)
 *								scrollbarOnLeft	-	Display the scrollbar on the left side?  (needs stylesheet changes, see examples.html)
 *								reinitialiseOnImageLoad - Whether the jScrollPane should automatically re-initialise itself when any contained images are loaded
 * @return jQuery
 * @cat Plugins/jScrollPane
 * @author Kelvin Luck (kelvin AT kelvinluck DOT com || http://www.kelvinluck.com)
 */

(function($) {

$.jScrollPane = {
	active : []
};
$.fn.jScrollPane = function(settings)
{
	settings = $.extend({}, $.fn.jScrollPane.defaults, settings);

	var rf = function() { return false; };
	
	return this.each(
		function()
		{
			var $this = $(this);
			// Switch the element's overflow to hidden to ensure we get the size of the element without the scrollbars [http://plugins.jquery.com/node/1208]
			$this.css('overflow', 'hidden');
			var paneEle = this;
			
			if ($(this).parent().is('.jScrollPaneContainer')) {
				var currentScrollPosition = settings.maintainPosition ? $this.position().top : 0;
				var $c = $(this).parent();
				var paneWidth = $c.innerWidth();
				var paneHeight = $c.outerHeight();
				var trackHeight = paneHeight;
				$('>.jScrollPaneTrack, >.jScrollArrowUp, >.jScrollArrowDown', $c).remove();
				$this.css({'top':0});
			} else {
				var currentScrollPosition = 0;
				this.originalPadding = $this.css('paddingTop') + ' ' + $this.css('paddingRight') + ' ' + $this.css('paddingBottom') + ' ' + $this.css('paddingLeft');
				this.originalSidePaddingTotal = (parseInt($this.css('paddingLeft')) || 0) + (parseInt($this.css('paddingRight')) || 0);
				var paneWidth = $this.innerWidth();
				var paneHeight = $this.innerHeight();
				var trackHeight = paneHeight;
				$this.wrap(
					$('<div></div>').attr(
						{'className':'jScrollPaneContainer'}
					).css(
						{
							'height':paneHeight+'px', 
							'width':paneWidth+'px'
						}
					)
				);
				// deal with text size changes (if the jquery.em plugin is included)
				// and re-initialise the scrollPane so the track maintains the
				// correct size
				$(document).bind(
					'emchange', 
					function(e, cur, prev)
					{
						$this.jScrollPane(settings);
					}
				);
				
			}
			
			if (settings.reinitialiseOnImageLoad) {
				// code inspired by jquery.onImagesLoad: http://plugins.jquery.com/project/onImagesLoad
				// except we re-initialise the scroll pane when each image loads so that the scroll pane is always up to size...
				// TODO: Do I even need to store it in $.data? Is a local variable here the same since I don't pass the reinitialiseOnImageLoad when I re-initialise?
				var $imagesToLoad = $.data(paneEle, 'jScrollPaneImagesToLoad') || $('img', $this);
				var loadedImages = [];
				
				if ($imagesToLoad.length) {
					$imagesToLoad.each(function(i, val)	{
						$(this).bind('load', function() {
							if($.inArray(i, loadedImages) == -1){ //don't double count images
								loadedImages.push(val); //keep a record of images we've seen
								$imagesToLoad = $.grep($imagesToLoad, function(n, i) {
									return n != val;
								});
								$.data(paneEle, 'jScrollPaneImagesToLoad', $imagesToLoad);
								settings.reinitialiseOnImageLoad = false;
								$this.jScrollPane(settings); // re-initialise
							}
						}).each(function(i, val) {
							if(this.complete || this.complete===undefined) { 
								//needed for potential cached images
								this.src = this.src; 
							} 
						});
					});
				};
			}

			var p = this.originalSidePaddingTotal;
			
			var cssToApply = {
				'height':'auto',
				'width':paneWidth - settings.scrollbarWidth - settings.scrollbarMargin - p + 'px'
			}

			if(settings.scrollbarOnLeft) {
				cssToApply.paddingLeft = settings.scrollbarMargin + settings.scrollbarWidth + 'px';
			} else {
				cssToApply.paddingRight = settings.scrollbarMargin + 'px';
			}

			$this.css(cssToApply);

			var contentHeight = $this.outerHeight();
			var percentInView = paneHeight / contentHeight;

			if (percentInView < .99) {
				var $container = $this.parent();
				$container.append(
					$('<div></div>').attr({'className':'jScrollPaneTrack'}).css({'width':settings.scrollbarWidth+'px'}).append(
						$('<div></div>').attr({'className':'jScrollPaneDrag'}).css({'width':settings.scrollbarWidth+'px'}).append(
							$('<div></div>').attr({'className':'jScrollPaneDragTop'}).css({'width':settings.scrollbarWidth+'px'}),
							$('<div></div>').attr({'className':'jScrollPaneDragBottom'}).css({'width':settings.scrollbarWidth+'px'})
						)
					)
				);
				
				var $track = $('>.jScrollPaneTrack', $container);
				var $drag = $('>.jScrollPaneTrack .jScrollPaneDrag', $container);
				
				if (settings.showArrows) {
					
					var currentArrowButton;
					var currentArrowDirection;
					var currentArrowInterval;
					var currentArrowInc;
					var whileArrowButtonDown = function()
					{
						if (currentArrowInc > 4 || currentArrowInc%4==0) {
							positionDrag(dragPosition + currentArrowDirection * mouseWheelMultiplier);
						}
						currentArrowInc ++;
					};
					var onArrowMouseUp = function(event)
					{
						$('html').unbind('mouseup', onArrowMouseUp);
						currentArrowButton.removeClass('jScrollActiveArrowButton');
						clearInterval(currentArrowInterval);
					};
					var onArrowMouseDown = function() {
						$('html').bind('mouseup', onArrowMouseUp);
						currentArrowButton.addClass('jScrollActiveArrowButton');
						currentArrowInc = 0;
						whileArrowButtonDown();
						currentArrowInterval = setInterval(whileArrowButtonDown, 100);
					};
					$container
						.append(
							$('<a></a>')
								.attr({'href':'javascript:;', 'className':'jScrollArrowUp'})
								.css({'width':settings.scrollbarWidth+'px'})
								.html('Scroll up')
								.bind('mousedown', function()
								{
									currentArrowButton = $(this);
									currentArrowDirection = -1;
									onArrowMouseDown();
									this.blur();
									return false;
								})
								.bind('click', rf),
							$('<a></a>')
								.attr({'href':'javascript:;', 'className':'jScrollArrowDown'})
								.css({'width':settings.scrollbarWidth+'px'})
								.html('Scroll down')
								.bind('mousedown', function()
								{
									currentArrowButton = $(this);
									currentArrowDirection = 1;
									onArrowMouseDown();
									this.blur();
									return false;
								})
								.bind('click', rf)
						);
					var $upArrow = $('>.jScrollArrowUp', $container);
					var $downArrow = $('>.jScrollArrowDown', $container);
					if (settings.arrowSize) {
						trackHeight = paneHeight - settings.arrowSize - settings.arrowSize;
						$track
							.css({'height': trackHeight+'px', top:settings.arrowSize+'px'})
					} else {
						var topArrowHeight = $upArrow.height();
						settings.arrowSize = topArrowHeight;
						trackHeight = paneHeight - topArrowHeight - $downArrow.height();
						$track
							.css({'height': trackHeight+'px', top:topArrowHeight+'px'})
					}
				}
				
				var $pane = $(this).css({'position':'absolute', 'overflow':'visible'});
				
				var currentOffset;
				var maxY;
				var mouseWheelMultiplier;
				// store this in a seperate variable so we can keep track more accurately than just updating the css property..
				var dragPosition = 0;
				var dragMiddle = percentInView*paneHeight/2;
				
				// pos function borrowed from tooltip plugin and adapted...
				var getPos = function (event, c) {
					var p = c == 'X' ? 'Left' : 'Top';
					return event['page' + c] || (event['client' + c] + (document.documentElement['scroll' + p] || document.body['scroll' + p])) || 0;
				};
				
				var ignoreNativeDrag = function() {	return false; };
				
				var initDrag = function()
				{
					ceaseAnimation();
					currentOffset = $drag.offset(false);
					currentOffset.top -= dragPosition;
					maxY = trackHeight - $drag[0].offsetHeight;
					mouseWheelMultiplier = 2 * settings.wheelSpeed * maxY / contentHeight;
				};
				
				var onStartDrag = function(event)
				{
					initDrag();
					dragMiddle = getPos(event, 'Y') - dragPosition - currentOffset.top;
					$('html').bind('mouseup', onStopDrag).bind('mousemove', updateScroll);
					if ($.browser.msie) {
						$('html').bind('dragstart', ignoreNativeDrag).bind('selectstart', ignoreNativeDrag);
					}
					return false;
				};
				var onStopDrag = function()
				{
					$('html').unbind('mouseup', onStopDrag).unbind('mousemove', updateScroll);
					dragMiddle = percentInView*paneHeight/2;
					if ($.browser.msie) {
						$('html').unbind('dragstart', ignoreNativeDrag).unbind('selectstart', ignoreNativeDrag);
					}
				};
				var positionDrag = function(destY)
				{
					destY = destY < 0 ? 0 : (destY > maxY ? maxY : destY);
					dragPosition = destY;
					$drag.css({'top':destY+'px'});
					var p = destY / maxY;
					$pane.css({'top':((paneHeight-contentHeight)*p) + 'px'});
					$this.trigger('scroll');
					if (settings.showArrows) {
						$upArrow[destY == 0 ? 'addClass' : 'removeClass']('disabled');
						$downArrow[destY == maxY ? 'addClass' : 'removeClass']('disabled');
					}
				};
				var updateScroll = function(e)
				{
					positionDrag(getPos(e, 'Y') - currentOffset.top - dragMiddle);
				};
				
				var dragH = Math.max(Math.min(percentInView*(paneHeight-settings.arrowSize*2), settings.dragMaxHeight), settings.dragMinHeight);
				
				$drag.css(
					{'height':dragH+'px'}
				).bind('mousedown', onStartDrag);
				
				var trackScrollInterval;
				var trackScrollInc;
				var trackScrollMousePos;
				var doTrackScroll = function()
				{
					if (trackScrollInc > 8 || trackScrollInc%4==0) {
						positionDrag((dragPosition - ((dragPosition - trackScrollMousePos) / 2)));
					}
					trackScrollInc ++;
				};
				var onStopTrackClick = function()
				{
					clearInterval(trackScrollInterval);
					$('html').unbind('mouseup', onStopTrackClick).unbind('mousemove', onTrackMouseMove);
				};
				var onTrackMouseMove = function(event)
				{
					trackScrollMousePos = getPos(event, 'Y') - currentOffset.top - dragMiddle;
				};
				var onTrackClick = function(event)
				{
					initDrag();
					onTrackMouseMove(event);
					trackScrollInc = 0;
					$('html').bind('mouseup', onStopTrackClick).bind('mousemove', onTrackMouseMove);
					trackScrollInterval = setInterval(doTrackScroll, 100);
					doTrackScroll();
				};
				
				$track.bind('mousedown', onTrackClick);
				
				$container.bind(
					'mousewheel',
					function (event, delta) {
						initDrag();
						ceaseAnimation();
						var d = dragPosition;
						positionDrag(dragPosition - delta * mouseWheelMultiplier);
						var dragOccured = d != dragPosition;
						return !dragOccured;
					}
				);

				var _animateToPosition;
				var _animateToInterval;
				function animateToPosition()
				{
					var diff = (_animateToPosition - dragPosition) / settings.animateStep;
					if (diff > 1 || diff < -1) {
						positionDrag(dragPosition + diff);
					} else {
						positionDrag(_animateToPosition);
						ceaseAnimation();
					}
				}
				var ceaseAnimation = function()
				{
					if (_animateToInterval) {
						clearInterval(_animateToInterval);
						delete _animateToPosition;
					}
				};
				var scrollTo = function(pos, preventAni)
				{
					if (typeof pos == "string") {
						$e = $(pos, $this);
						if (!$e.length) return;
						pos = $e.offset().top - $this.offset().top;
					}
					$container.scrollTop(0);
					ceaseAnimation();
					var destDragPosition = -pos/(paneHeight-contentHeight) * maxY;
					if (preventAni || !settings.animateTo) {
						positionDrag(destDragPosition);
					} else {
						_animateToPosition = destDragPosition;
						_animateToInterval = setInterval(animateToPosition, settings.animateInterval);
					}
				};
				$this[0].scrollTo = scrollTo;
				
				$this[0].scrollBy = function(delta)
				{
					var currentPos = -parseInt($pane.css('top')) || 0;
					scrollTo(currentPos + delta);
				};
				
				initDrag();
				
				scrollTo(-currentScrollPosition, true);
			
				// Deal with it when the user tabs to a link or form element within this scrollpane
				$('*', this).bind(
					'focus',
					function(event)
					{
						var $e = $(this);
						
						// loop through parents adding the offset top of any elements that are relatively positioned between
						// the focused element and the jScrollPaneContainer so we can get the true distance from the top
						// of the focused element to the top of the scrollpane...
						var eleTop = 0;
						
						while ($e[0] != $this[0]) {
							eleTop += $e.position().top;
							$e = $e.offsetParent();
						}
						
						var viewportTop = -parseInt($pane.css('top')) || 0;
						var maxVisibleEleTop = viewportTop + paneHeight;
						var eleInView = eleTop > viewportTop && eleTop < maxVisibleEleTop;
						if (!eleInView) {
							var destPos = eleTop - settings.scrollbarMargin;
							if (eleTop > viewportTop) { // element is below viewport - scroll so it is at bottom.
								destPos += $(this).height() + 15 + settings.scrollbarMargin - paneHeight;
							}
							scrollTo(destPos);
						}
					}
				)
				
				
				if (location.hash) {
					scrollTo(location.hash);
				}
				
				// use event delegation to listen for all clicks on links and hijack them if they are links to
				// anchors within our content...
				$(document).bind(
					'click',
					function(e)
					{
						$target = $(e.target);
						if ($target.is('a')) {
							var h = $target.attr('href');
							if (h.substr(0, 1) == '#') {
								scrollTo(h);
							}
						}
					}
				);
				
				$.jScrollPane.active.push($this[0]);
				
			} else {
				$this.css(
					{
						'height':paneHeight+'px',
						'width':paneWidth-this.originalSidePaddingTotal+'px',
						'padding':this.originalPadding
					}
				);
				// remove from active list?
				$this.parent().unbind('mousewheel');
			}
			
		}
	)
};

$.fn.jScrollPane.defaults = {
	scrollbarWidth : 17,
	scrollbarMargin : 5,
	wheelSpeed : 18,
	showArrows : true,
	arrowSize : 0,
	animateTo : false,
	dragMinHeight : 1,
	dragMaxHeight : 99999,
	animateInterval : 100,
	animateStep: 3,
	maintainPosition: true,
	scrollbarOnLeft: false,
	reinitialiseOnImageLoad: false
};

// clean up the scrollTo expandos
$(window)
	.bind('unload', function() {
		var els = $.jScrollPane.active; 
		for (var i=0; i<els.length; i++) {
			els[i].scrollTo = els[i].scrollBy = null;
		}
	}
);

})(jQuery);;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
Cufon.registerFont({"w":172,"face":{"font-family":"HelveticaNeue","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 6 5 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-59 -346 384 80.8161","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":86},"\u00a0":{"w":86},"$":{"d":"125,-137v70,20,55,152,-28,142r0,31r-23,0r0,-31v-50,-3,-73,-28,-71,-81r50,0v-1,22,3,39,21,43r0,-73v-38,-10,-68,-30,-68,-75v0,-45,27,-70,68,-74r0,-25r23,0r0,25v43,4,68,25,66,73r-49,0v-1,-17,-4,-31,-17,-35r0,68xm74,-217v-25,6,-23,48,0,58r0,-58xm97,-33v30,-6,25,-57,0,-64r0,64"},"%":{"d":"197,-261r32,0r-147,272r-32,0xm64,-228v-17,1,-16,19,-16,40v1,23,-3,43,16,43v18,0,16,-21,16,-43v0,-21,0,-38,-16,-40xm64,-117v-43,0,-54,-25,-54,-69v0,-44,10,-69,54,-69v44,0,54,26,54,69v0,44,-12,69,-54,69xm216,5v-44,0,-54,-27,-54,-69v0,-42,10,-68,54,-68v44,0,54,25,54,68v0,44,-10,69,-54,69xm216,-105v-17,0,-15,19,-15,40v1,23,-2,41,15,43v18,-2,16,-20,16,-43v0,-21,2,-40,-16,-40","w":280},"&":{"d":"159,-203v0,34,-20,47,-44,66r38,52v5,-11,10,-22,9,-38r45,0v0,31,-12,56,-26,75r34,48r-56,0r-14,-20v-12,16,-36,24,-62,25v-51,0,-79,-27,-79,-74v0,-37,25,-57,52,-74v-11,-18,-26,-32,-26,-60v0,-37,28,-54,65,-54v39,0,64,16,64,54xm80,-113v-32,16,-37,77,10,78v14,0,24,-5,33,-16xm94,-225v-35,2,-20,42,-3,57v11,-9,25,-18,26,-36v0,-14,-9,-22,-23,-21","w":213},"\u2019":{"d":"23,-167v14,-2,20,-17,19,-34r-19,0r0,-56r48,0v0,53,7,113,-48,116r0,-26","w":93},"(":{"d":"68,66v-64,-86,-64,-237,0,-323r39,0v-54,78,-54,246,0,323r-39,0","w":106},")":{"d":"0,66v54,-79,54,-244,0,-323r38,0v65,86,66,238,0,323r-38,0","w":106},"*":{"d":"85,-257r0,46r44,-14r9,28r-44,14r27,38r-24,17r-27,-38r-27,38r-24,-17r27,-38r-43,-14r9,-28r43,14r0,-46r30,0","w":140},"+":{"d":"86,-69r-69,0r0,-44r69,0r0,-69r44,0r0,69r69,0r0,44r-69,0r0,69r-44,0r0,-69","w":216},",":{"d":"19,34v14,-2,20,-17,19,-34r-19,0r0,-56r48,0v0,53,8,112,-48,115r0,-25","w":86},"-":{"d":"117,-125r0,42r-101,0r0,-42r101,0","w":133},"\u00ad":{"d":"117,-125r0,42r-101,0r0,-42r101,0","w":133},".":{"d":"67,-56r0,56r-48,0r0,-56r48,0","w":86},"\/":{"d":"80,-262r41,0r-82,267r-40,0","w":119},"0":{"d":"86,5v-70,0,-80,-52,-80,-124v0,-72,6,-136,80,-136v70,0,80,51,80,124v0,74,-6,136,-80,136xm86,-221v-39,7,-28,65,-28,113v0,36,-6,76,28,79v41,-5,28,-65,28,-113v0,-37,7,-77,-28,-79"},"1":{"d":"15,-214v36,1,58,-12,64,-41r38,0r0,255r-51,0r0,-180r-51,0r0,-34"},"2":{"d":"86,-255v93,0,93,116,36,151v-20,19,-45,37,-55,64r96,0r0,40r-157,0v0,-85,68,-105,99,-158v11,-19,9,-65,-20,-63v-26,2,-29,24,-29,50r-50,0v-2,-56,24,-84,80,-84"},"3":{"d":"81,5v-50,0,-74,-31,-74,-80r50,0v0,25,3,46,28,46v24,1,29,-17,29,-41v1,-32,-14,-48,-51,-43r0,-34v32,3,47,-11,46,-41v-1,-21,-6,-32,-24,-33v-23,0,-27,18,-27,41r-47,0v-1,-50,27,-74,75,-75v45,0,73,20,73,66v0,31,-17,49,-39,57v32,5,46,27,46,60v0,50,-29,77,-85,77"},"4":{"d":"5,-95r85,-160r53,0r0,162r25,0r0,40r-25,0r0,53r-47,0r0,-53r-91,0r0,-42xm96,-93r-1,-97r-50,97r51,0"},"5":{"d":"82,-135v-15,0,-23,10,-25,24r-46,0r9,-139r133,0r0,40r-94,0r-5,58v10,-13,25,-18,47,-19v47,0,62,35,62,82v0,60,-22,95,-81,94v-52,0,-77,-27,-76,-78r50,0v1,21,3,42,25,42v26,0,31,-21,31,-50v0,-29,-2,-54,-30,-54"},"6":{"d":"88,-127v-25,0,-28,19,-29,48v0,26,4,49,29,50v26,0,28,-24,28,-50v0,-29,-3,-48,-28,-48xm5,-114v-3,-87,18,-158,112,-138v28,7,43,28,45,62r-50,0v-1,-19,-4,-31,-23,-31v-35,-1,-34,44,-31,77v8,-14,25,-22,47,-22v47,0,63,34,63,80v0,57,-25,91,-83,91v-67,0,-78,-53,-80,-119"},"7":{"d":"165,-210v-39,56,-65,126,-75,210r-54,0v10,-82,39,-150,79,-205r-107,0r0,-45r157,0r0,40"},"8":{"d":"86,-117v-23,0,-29,19,-29,44v0,24,5,44,29,44v25,0,30,-19,30,-44v1,-25,-6,-44,-30,-44xm86,-150v18,0,27,-15,26,-36v0,-23,-9,-35,-26,-35v-17,0,-25,12,-25,35v0,21,7,36,25,36xm86,5v-54,0,-80,-27,-81,-77v-1,-33,17,-57,43,-64v-22,-6,-35,-22,-36,-49v0,-49,28,-70,74,-70v47,0,75,21,75,70v0,28,-16,42,-36,50v28,5,43,31,43,63v-1,50,-28,77,-82,77"},"9":{"d":"85,-221v-26,0,-28,24,-28,50v0,30,3,49,28,49v25,0,28,-19,28,-49v0,-26,-2,-50,-28,-50xm168,-136v2,87,-18,160,-112,138v-28,-7,-44,-26,-45,-61r50,0v1,19,4,29,23,30v34,0,33,-44,31,-77v-9,12,-26,23,-48,22v-45,-1,-62,-33,-62,-80v1,-57,24,-91,82,-91v68,-1,79,53,81,119"},":":{"d":"19,-188r48,0r0,57r-48,0r0,-57xm19,-56r48,0r0,56r-48,0r0,-56","w":86},";":{"d":"67,-188r0,57r-48,0r0,-57r48,0xm19,34v14,-2,20,-17,19,-34r-19,0r0,-56r48,0v0,53,8,112,-48,115r0,-25","w":86},"\u037e":{"d":"67,-188r0,57r-48,0r0,-57r48,0xm19,34v14,-2,20,-17,19,-34r-19,0r0,-56r48,0v0,53,8,112,-48,115r0,-25","w":86},"<":{"d":"17,-110r182,-75r0,45r-122,49r122,49r0,45r-182,-75r0,-38","w":216},"=":{"d":"17,-74r182,0r0,44r-182,0r0,-44xm17,-153r182,0r0,45r-182,0r0,-45","w":216},">":{"d":"17,-42r122,-49r-122,-49r0,-45r182,75r0,38r-182,75r0,-45","w":216},"?":{"d":"108,-48r0,48r-50,0r0,-48r50,0xm86,-226v-23,0,-27,23,-26,49r-47,0v-2,-53,22,-79,71,-83v73,-6,97,80,54,126v-16,17,-35,30,-33,63r-44,0v-9,-65,50,-69,50,-124v0,-16,-8,-32,-25,-31","w":173},"@":{"d":"51,-128v-4,92,116,123,180,76r32,0v-24,34,-62,57,-119,57v-81,0,-134,-54,-134,-134v0,-79,53,-133,134,-133v74,0,134,36,134,109v0,61,-37,96,-91,103v-14,2,-21,-9,-24,-19v-30,36,-96,14,-96,-42v0,-68,80,-120,121,-65r5,-19r31,0r-23,105v0,5,2,7,7,7v25,-5,38,-32,38,-62v0,-54,-42,-83,-96,-83v-60,0,-96,40,-99,100xm148,-162v-25,0,-38,20,-40,45v0,15,10,29,25,29v41,0,61,-74,15,-74","w":288},"A":{"d":"75,-97r50,0r-25,-115xm68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0","w":200},"B":{"d":"132,-77v0,-35,-26,-42,-62,-39r0,78v36,2,62,-3,62,-39xm126,-185v0,-32,-23,-35,-56,-34r0,67v32,1,56,-2,56,-33xm186,-75v3,84,-86,77,-168,75r0,-257v75,1,163,-14,160,65v-1,30,-16,48,-39,57v29,4,46,26,47,60","w":200},"C":{"d":"13,-129v0,-76,12,-133,87,-133v59,0,81,35,80,92r-52,0v-2,-32,-3,-54,-31,-54v-39,0,-33,56,-33,99v0,44,-4,92,34,92v31,0,31,-31,32,-65r52,0v0,61,-19,103,-82,103v-76,0,-87,-57,-87,-134","w":193},"D":{"d":"139,-131v0,-55,-5,-97,-67,-88r0,181v65,8,67,-35,67,-93xm190,-132v0,77,-13,132,-88,132r-81,0r0,-257r84,0v72,-1,85,53,85,125","w":206},"E":{"d":"162,-257r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257r144,0","w":173},"F":{"d":"18,-257r144,0r0,42r-92,0r0,61r86,0r0,42r-86,0r0,112r-52,0r0,-257","w":166},"G":{"d":"15,-131v0,-73,13,-131,87,-131v55,0,79,28,80,81r-50,0v-2,-21,-8,-42,-29,-43v-37,5,-36,47,-36,90v0,44,-3,96,36,101v29,-3,35,-32,32,-67r-34,0r0,-39r84,0r0,139r-38,0v-1,-7,2,-18,-1,-24v-11,18,-27,29,-54,29v-71,0,-77,-64,-77,-136","w":200},"H":{"d":"18,-257r52,0r0,98r60,0r0,-98r52,0r0,257r-52,0r0,-114r-60,0r0,114r-52,0r0,-257","w":200},"I":{"d":"21,0r0,-257r51,0r0,257r-51,0","w":92},"J":{"d":"76,-33v21,-1,23,-17,23,-40r0,-184r52,0r0,185v1,54,-25,77,-78,77v-52,0,-70,-33,-68,-86r48,0v0,26,-1,48,23,48","w":166},"K":{"d":"70,-257r1,103r65,-103r56,0r-70,110r78,147r-58,0r-53,-105r-19,29r0,76r-52,0r0,-257r52,0","w":193},"L":{"d":"18,0r0,-257r52,0r0,215r92,0r0,42r-144,0","w":166},"M":{"d":"19,-257r77,0r38,181r37,-181r76,0r0,257r-47,0r-1,-205r-46,205r-40,0r-46,-205r0,205r-48,0r0,-257","w":266},"N":{"d":"78,-257r63,176r0,-176r48,0r0,257r-59,0r-64,-180r0,180r-48,0r0,-257r60,0","w":206},"O":{"d":"100,-224v-41,0,-36,52,-36,95v0,44,-6,96,36,96v42,0,36,-53,36,-96v0,-43,6,-95,-36,-95xm100,5v-76,0,-87,-57,-87,-134v0,-76,12,-133,87,-133v76,0,88,58,88,133v0,75,-11,134,-88,134","w":200},"P":{"d":"127,-179v0,-35,-21,-43,-57,-40r0,78v34,3,57,-4,57,-38xm179,-180v1,62,-42,82,-109,77r0,103r-52,0r0,-257r91,0v47,2,70,29,70,77","w":186},"Q":{"d":"100,-224v-41,0,-36,52,-36,95v0,44,-6,96,36,96v42,0,36,-53,36,-96v0,-43,6,-95,-36,-95xm188,-129v-1,42,-2,80,-20,105r27,28r-30,28r-31,-32v-10,4,-20,5,-34,5v-76,1,-87,-57,-87,-134v0,-76,12,-133,87,-133v76,0,89,58,88,133","w":200},"R":{"d":"139,-127v61,-1,28,95,53,127r-56,0v-19,-29,14,-108,-38,-109r-28,0r0,109r-52,0r0,-257v76,1,164,-15,164,66v0,35,-13,59,-43,64xm70,-145v35,2,60,-3,60,-38v0,-34,-26,-38,-60,-36r0,74","w":200},"S":{"d":"90,5v-58,0,-84,-27,-82,-85r52,0v-2,29,6,47,34,47v28,0,43,-41,21,-58v-36,-29,-103,-26,-103,-95v0,-50,29,-76,79,-76v51,0,82,23,80,76r-50,0v-1,-22,-6,-38,-28,-38v-42,0,-36,60,-3,65v40,19,89,26,89,85v0,54,-34,79,-89,79","w":186},"T":{"d":"168,-257r0,42r-56,0r0,215r-52,0r0,-215r-56,0r0,-42r164,0"},"U":{"d":"97,5v-55,1,-82,-27,-82,-83r0,-179r52,0r0,179v-1,26,6,45,30,45v24,0,31,-19,30,-45r0,-179r52,0r0,179v1,56,-29,82,-82,83","w":193},"V":{"d":"57,-257r37,190r38,-190r54,0r-59,257r-67,0r-59,-257r56,0","w":186},"W":{"d":"3,-257r50,0r29,190r30,-190r50,0r31,190r28,-190r50,0r-47,257r-58,0r-30,-186r-28,186r-58,0","w":273},"X":{"d":"7,-257r57,0r34,83r32,-83r57,0r-60,127r64,130r-58,0r-37,-87r-37,87r-57,0r64,-130","w":193},"Y":{"d":"59,-257r35,99r36,-99r56,0r-66,156r0,101r-52,0r0,-101r-67,-156r58,0","w":187},"Z":{"d":"9,-38r94,-177r-88,0r0,-42r148,0r0,39r-96,176r98,0r0,42r-156,0r0,-38","w":173},"[":{"d":"29,-257r82,0r0,36r-38,0r0,251r38,0r0,36r-82,0r0,-323","w":113},"\\":{"d":"-1,-262r40,0r82,267r-41,0","w":119},"]":{"d":"2,30r38,0r0,-251r-38,0r0,-36r83,0r0,323r-83,0r0,-36","w":113},"^":{"d":"20,-111r68,-139r40,0r68,139r-45,0r-43,-89r-43,89r-45,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"71,-232v-14,2,-20,18,-19,34r19,0r0,57r-48,0v3,-51,-10,-114,48,-116r0,25","w":93},"a":{"d":"76,-29v34,2,32,-34,31,-68v-17,14,-51,9,-49,41v0,14,4,27,18,27xm84,-165v-17,0,-24,13,-23,31r-45,0v-1,-45,25,-65,68,-65v45,1,70,14,70,60v0,46,-6,104,7,139r-48,0v-5,-5,-3,-15,-7,-20v-11,19,-22,24,-49,25v-56,3,-61,-90,-20,-108v19,-15,69,-4,70,-38v0,-15,-6,-25,-23,-24","w":173},"b":{"d":"109,5v-24,1,-33,-12,-45,-26r0,21r-47,0r0,-257r49,0v1,26,-2,57,1,81v9,-14,22,-23,42,-23v49,0,59,42,59,102v0,61,-10,100,-59,102xm93,-161v-28,0,-27,30,-27,64v0,34,-1,64,27,64v28,0,25,-31,25,-64v0,-34,3,-64,-25,-64","w":180},"c":{"d":"9,-97v0,-62,19,-102,79,-102v46,0,70,29,69,75r-47,0v0,-20,-4,-39,-23,-39v-30,0,-28,35,-28,67v0,32,-3,67,27,67v20,0,24,-19,24,-45r47,0v-1,50,-20,79,-73,79v-60,0,-75,-41,-75,-102","w":166},"d":{"d":"71,-199v21,-1,32,11,43,23r0,-81r49,0r0,257r-47,0v-1,-6,2,-16,-1,-21v-11,16,-20,26,-44,26v-49,0,-59,-42,-59,-102v0,-61,10,-100,59,-102xm87,-161v-28,0,-25,31,-25,64v0,34,-3,64,25,64v28,0,27,-30,27,-64v0,-34,1,-64,-27,-64","w":180},"e":{"d":"85,-165v-22,1,-27,22,-26,46r51,0v-2,-22,-1,-47,-25,-46xm86,-199v62,0,73,47,71,110r-98,0v0,28,-1,60,25,60v19,0,24,-16,26,-36r44,0v-3,45,-22,70,-70,70v-63,0,-75,-44,-75,-104v0,-59,17,-100,77,-100","w":166},"f":{"d":"106,-226v-24,-3,-33,6,-29,32r29,0r0,34r-29,0r0,160r-50,0r0,-160r-25,0r0,-34r25,0v-7,-56,23,-75,79,-67r0,35","w":106},"g":{"d":"88,-161v-30,3,-26,37,-26,70v0,24,2,51,25,51v25,0,27,-29,27,-56v-1,-38,1,-61,-26,-65xm73,-199v20,0,31,12,41,27r0,-22r48,0r0,184v-1,54,-24,76,-81,76v-40,1,-65,-15,-66,-52r48,0v-1,13,11,20,24,21v29,2,30,-34,26,-61v-9,13,-22,24,-41,24v-50,0,-60,-43,-59,-98v1,-51,8,-99,60,-99","w":180},"h":{"d":"114,-134v0,-18,-5,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0r0,-257r49,0r1,83v20,-40,96,-32,96,30r0,144r-49,0r0,-134","w":180},"i":{"d":"18,-260r50,0r0,43r-50,0r0,-43xm18,-194r50,0r0,194r-50,0r0,-194","w":86},"j":{"d":"18,-260r50,0r0,43r-50,0r0,-43xm-9,27v24,2,28,-7,27,-31r0,-190r50,0r0,207v4,46,-30,52,-77,50r0,-36","w":86},"k":{"d":"68,-257r1,136r50,-73r55,0r-56,77r64,117r-55,0r-41,-80r-18,23r0,57r-50,0r0,-257r50,0","w":180},"l":{"d":"18,-257r50,0r0,257r-50,0r0,-257","w":86},"m":{"d":"92,-161v-17,0,-27,13,-26,34r0,127r-49,0r0,-194r47,0v1,6,-2,16,1,20v16,-34,86,-33,94,6v7,-19,24,-31,49,-31v35,0,49,22,48,58r0,141r-49,0r0,-135v0,-16,-5,-26,-20,-26v-17,0,-27,13,-26,34r0,127r-49,0r0,-135v0,-16,-5,-26,-20,-26","w":272},"n":{"d":"114,-134v0,-18,-5,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0r0,-194r47,0v1,7,-2,18,1,23v9,-18,26,-28,49,-28v33,0,49,20,49,55r0,144r-49,0r0,-134","w":180},"o":{"d":"86,-165v-36,4,-26,57,-26,96v0,20,6,40,26,40v27,0,27,-32,27,-68v0,-37,0,-64,-27,-68xm86,5v-62,1,-76,-41,-76,-102v-1,-61,17,-101,76,-102v63,-1,77,41,77,102v1,61,-17,101,-77,102"},"p":{"d":"109,5v-21,1,-32,-11,-43,-23r0,81r-49,0r0,-257r47,0v1,6,-2,16,1,21v11,-16,20,-26,44,-26v49,0,59,42,59,102v0,61,-10,100,-59,102xm93,-161v-28,0,-27,30,-27,64v0,34,-1,64,27,64v28,0,25,-31,25,-64v0,-34,3,-64,-25,-64","w":180},"q":{"d":"71,-199v24,-1,33,12,45,26r0,-21r47,0r0,257r-49,0v-1,-26,2,-57,-1,-81v-9,14,-22,23,-42,23v-49,0,-59,-42,-59,-102v0,-61,10,-100,59,-102xm87,-33v28,0,27,-30,27,-64v0,-34,1,-64,-27,-64v-28,0,-25,31,-25,64v0,34,-3,64,25,64","w":180},"r":{"d":"118,-150v-28,-4,-52,5,-52,34r0,116r-49,0r0,-194r47,0v1,8,-2,20,1,26v10,-17,26,-35,53,-30r0,48","w":119},"s":{"d":"80,5v-50,1,-73,-20,-72,-68r45,0v-1,20,8,33,26,34v29,2,33,-38,7,-45v-35,-10,-77,-20,-76,-66v1,-41,28,-58,71,-59v44,0,68,19,66,63r-44,0v-1,-18,-4,-29,-22,-29v-31,-1,-30,37,-2,44v36,9,75,18,73,65v-2,41,-29,60,-72,61","w":159},"t":{"d":"106,0v-45,6,-79,3,-79,-49r0,-111r-25,0r0,-34r25,0r0,-55r50,0r0,55r29,0r0,34r-29,0r0,105v-3,21,11,23,29,20r0,35","w":106},"u":{"d":"66,-60v0,18,4,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0v-1,-7,2,-18,-1,-23v-9,18,-26,28,-49,28v-33,0,-49,-20,-49,-55r0,-144r49,0r0,134","w":180},"v":{"d":"108,-194r50,0r-49,194r-57,0r-50,-194r52,0r28,139","w":159},"w":{"d":"3,-194r49,0r24,138r24,-138r54,0r26,138r23,-138r48,0r-42,194r-56,0r-27,-138r-24,138r-57,0","w":253},"x":{"d":"110,-194r52,0r-51,94r53,100r-52,0r-29,-63r-29,63r-51,0r52,-100r-50,-94r52,0r26,59","w":166},"y":{"d":"17,26v23,5,39,-4,39,-26r-54,-194r52,0r29,134r25,-134r50,0r-59,221v-10,33,-37,39,-82,36r0,-37","w":159},"z":{"d":"9,-38r77,-115r-74,0r0,-41r133,0r0,38r-78,116r78,0r0,40r-136,0r0,-38","w":153},"{":{"d":"72,66v-74,-1,-5,-139,-61,-147r0,-29v57,-7,-13,-146,61,-147r32,0r0,36v-57,-6,6,112,-51,126v34,5,25,59,26,99v0,17,5,30,25,26r0,36r-32,0","w":113},"|":{"d":"18,-262r44,0r0,267r-44,0r0,-267","w":79},"}":{"d":"79,-51v0,49,13,118,-38,117r-32,0r0,-36v58,7,-6,-111,51,-126v-34,-5,-26,-59,-26,-99v0,-19,-5,-29,-25,-26r0,-36v43,-4,70,6,70,48v0,38,-12,97,24,99r0,29v-13,0,-24,15,-24,30","w":113},"~":{"d":"146,-101v16,0,27,-13,32,-25r13,39v-10,15,-20,30,-44,30v-34,0,-47,-24,-77,-24v-15,0,-26,13,-32,24r-13,-38v10,-16,20,-31,44,-31v28,-2,51,25,77,25","w":216},"\u00a1":{"d":"28,-194r50,0r0,48r-50,0r0,-48xm28,63v-1,-65,2,-126,7,-185r36,0r7,102r0,83r-50,0","w":106},"\u00a2":{"d":"161,-75v0,49,-19,74,-62,80r0,32r-19,0r0,-32v-54,-2,-67,-41,-68,-100v-1,-59,15,-100,68,-104r0,-27r19,0r0,27v41,3,63,27,62,74r-48,0v1,-18,-2,-33,-14,-38r0,132v13,-7,14,-24,14,-44r48,0xm80,-163v-27,13,-21,89,-11,123v3,4,6,8,11,9r0,-132"},"\u00a3":{"d":"171,-12v-46,42,-106,-15,-154,14r-15,-31v24,-15,52,-45,38,-81r-37,0r0,-30r24,0v-36,-57,-8,-117,61,-115v49,1,79,25,79,75r-48,0v10,-47,-58,-54,-58,-13v0,20,11,38,19,53r60,0r0,30r-50,0v7,36,-14,53,-30,71v19,-8,38,6,58,8v13,-2,26,-7,37,-15"},"\u2044":{"d":"87,-261r32,0r-146,272r-32,0","w":60},"\u2215":{"d":"87,-261r32,0r-146,272r-32,0","w":60},"\u00a5":{"d":"64,-57r-51,0r0,-30r51,0v1,-10,0,-18,-4,-24r-47,0r0,-29r33,0r-52,-110r54,0r39,97r40,-97r52,0r-52,110r33,0r0,29r-47,0v-4,6,-5,14,-4,24r51,0r0,30r-51,0r0,57r-45,0r0,-57"},"\u0192":{"d":"29,-154r38,0v7,-62,24,-117,104,-102r-7,34v-44,-9,-41,36,-50,68r40,0r-6,29r-40,0r-30,151v-10,31,-48,43,-91,35r8,-33v27,8,38,-9,43,-34r23,-119r-38,0"},"\u00a7":{"d":"67,-144v-18,7,-28,35,-8,46r50,29v23,-15,20,-43,-7,-57xm86,55v-47,1,-73,-23,-72,-68r47,0v-2,20,9,33,25,34v22,2,32,-26,19,-41v-28,-32,-100,-31,-100,-90v-1,-25,14,-44,32,-52v-47,-35,-12,-100,52,-100v43,0,68,17,69,58r-48,0v-1,-16,-7,-24,-25,-24v-32,2,-25,39,1,45v35,19,82,25,82,79v-1,24,-12,41,-28,51v13,10,20,22,20,45v1,45,-30,62,-74,63","w":173},"'":{"d":"24,-257r45,0r0,116r-45,0r0,-116","w":93},"\u201c":{"d":"72,-232v-14,2,-20,18,-19,34r19,0r0,57r-48,0v3,-51,-9,-113,48,-116r0,25xm142,-232v-14,2,-20,18,-19,34r19,0r0,57r-47,0v3,-50,-10,-113,47,-116r0,25","w":166},"\u00ab":{"d":"19,-133r53,-43r0,47r-28,25r28,25r0,47r-53,-43r0,-58xm81,-133r54,-43r0,47r-29,25r29,25r0,47r-54,-43r0,-58","w":153},"\u2039":{"d":"17,-133r53,-43r0,47r-28,25r28,25r0,47r-53,-43r0,-58","w":86},"\u203a":{"d":"17,-79r28,-25r-28,-25r0,-47r53,43r0,58r-53,43r0,-47","w":86},"\u2013":{"d":"0,-124r180,0r0,40r-180,0r0,-40","w":180},"\u2020":{"d":"62,-257r49,0r0,71r61,0r0,41r-61,0r0,195r-49,0r0,-195r-61,0r0,-41r61,0r0,-71"},"\u2021":{"d":"62,-19r-61,0r0,-40r61,0r0,-89r-61,0r0,-41r61,0r0,-68r49,0r0,68r61,0r0,41r-61,0r0,89r61,0r0,40r-61,0r0,69r-49,0r0,-69"},"\u00b7":{"d":"43,-67v-19,0,-35,-16,-35,-35v0,-19,16,-34,35,-34v19,0,35,15,35,34v0,19,-16,35,-35,35","w":86},"\u2219":{"d":"43,-67v-19,0,-35,-16,-35,-35v0,-19,16,-34,35,-34v19,0,35,15,35,34v0,19,-16,35,-35,35","w":86},"\u00b6":{"d":"0,-188v0,-86,89,-68,168,-69r0,307r-38,0r0,-273r-26,0r0,273r-38,0r0,-171v-43,0,-66,-23,-66,-67"},"\u2022":{"d":"90,-64v-39,0,-64,-26,-64,-65v0,-38,26,-64,64,-64v38,0,64,26,64,64v0,39,-25,65,-64,65","w":180},"\u201a":{"d":"23,34v14,-2,20,-17,19,-34r-19,0r0,-56r48,0v0,53,7,112,-48,115r0,-25","w":93},"\u201e":{"d":"24,34v14,-2,21,-17,19,-34r-19,0r0,-56r48,0v0,53,8,112,-48,115r0,-25xm95,34v14,-2,19,-17,18,-34r-18,0r0,-56r47,0v0,53,8,112,-47,115r0,-25","w":166},"\u201d":{"d":"95,-167v14,-2,19,-17,18,-34r-18,0r0,-56r47,0v0,53,8,112,-47,116r0,-26xm24,-167v14,-2,21,-17,19,-34r-19,0r0,-56r48,0v0,53,8,113,-48,116r0,-26","w":166},"\u00bb":{"d":"81,-79r28,-25r-28,-25r0,-47r54,43r0,58r-54,43r0,-47xm19,-79r28,-25r-28,-25r0,-47r53,43r0,58r-53,43r0,-47","w":153},"\u2026":{"d":"324,-56r0,56r-48,0r0,-56r48,0xm204,-56r0,56r-48,0r0,-56r48,0xm84,-56r0,56r-48,0r0,-56r48,0","w":360},"\u2030":{"d":"192,-261r32,0r-146,272r-32,0xm208,-105v-17,0,-16,20,-16,40v0,22,-1,41,16,43v17,-2,16,-21,16,-43v0,-21,1,-40,-16,-40xm208,5v-44,0,-54,-25,-54,-69v0,-44,10,-68,54,-68v44,0,54,24,54,68v0,44,-10,69,-54,69xm64,-228v-17,1,-16,19,-16,40v1,23,-3,43,16,43v18,0,16,-21,16,-43v0,-21,0,-38,-16,-40xm64,-117v-43,0,-54,-25,-54,-69v0,-44,10,-69,54,-69v44,0,54,26,54,69v0,44,-12,69,-54,69xm330,5v-44,0,-54,-25,-54,-69v0,-44,10,-68,54,-68v44,0,54,24,54,68v0,44,-10,69,-54,69xm330,-105v-18,0,-16,19,-16,40v0,23,-2,41,16,43v17,-2,16,-21,16,-43v0,-21,1,-40,-16,-40","w":393},"\u00bf":{"d":"65,-146r0,-48r50,0r0,48r-50,0xm87,32v23,0,27,-23,26,-48r47,0v2,52,-21,78,-71,82v-73,5,-96,-78,-53,-125v16,-17,35,-29,32,-63r44,0v9,65,-46,68,-49,124v-1,16,7,31,24,30","w":173},"`":{"d":"30,-216r-36,-52r50,0r19,52r-33,0","w":79},"\u00b4":{"d":"36,-268r50,0r-36,52r-33,0","w":79},"\u02c6":{"d":"14,-268r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":79},"\u02dc":{"d":"63,-220v-22,2,-45,-30,-54,0r-26,0v0,-38,36,-55,67,-34v10,7,21,-1,21,-11r25,0v-1,23,-12,44,-33,45","w":79},"\u00af":{"d":"93,-257r0,27r-106,0r0,-27r106,0","w":79},"\u02c9":{"d":"93,-257r0,27r-106,0r0,-27r106,0","w":79},"\u02d8":{"d":"90,-268v4,57,-85,67,-98,16v-2,-6,-2,-11,-2,-16r23,0v1,30,53,30,54,0r23,0","w":79},"\u02d9":{"d":"60,-262r0,42r-40,0r0,-42r40,0","w":79},"\u00a8":{"d":"51,-262r40,0r0,42r-40,0r0,-42xm-11,-262r40,0r0,42r-40,0r0,-42","w":79},"\u02da":{"d":"40,-272v-12,0,-21,9,-21,21v0,12,10,21,21,21v11,0,21,-9,21,-21v0,-12,-9,-21,-21,-21xm40,-210v-25,0,-41,-16,-41,-41v0,-25,16,-41,41,-41v25,0,41,16,41,41v0,25,-16,41,-41,41","w":79},"\u00b8":{"d":"32,63v20,1,24,-25,2,-25v-9,3,-16,1,-20,-5r19,-33r20,0r-14,22v20,-5,42,2,42,25v0,38,-52,39,-81,27r7,-17v6,3,16,6,25,6","w":79},"\u02dd":{"d":"66,-268r50,0r-36,52r-34,0xm6,-268r50,0r-35,52r-34,0","w":79},"\u02db":{"d":"40,43v0,18,24,17,36,9r6,20v-24,13,-76,16,-73,-22v3,-33,26,-52,68,-50v-17,13,-33,20,-37,43","w":79},"\u02c7":{"d":"-14,-268r38,0r17,30r17,-30r36,0r-28,52r-52,0","w":79},"\u2014":{"d":"0,-124r360,0r0,40r-360,0r0,-40","w":360},"\u00c6":{"d":"127,-97r0,-120r-3,0r-40,120r43,0xm95,-257r167,0r0,42r-85,0r0,61r79,0r0,42r-79,0r0,70r88,0r0,42r-138,0r0,-54r-57,0r-18,54r-54,0","w":273},"\u00aa":{"d":"51,-155v18,1,20,-18,18,-38v-11,6,-29,5,-29,23v0,8,4,15,11,15xm57,-255v29,0,48,6,48,36v0,28,-3,61,4,84r-36,0r-4,-12v-13,25,-70,18,-65,-18v-4,-40,39,-33,63,-46v5,-9,1,-22,-11,-21v-10,0,-16,7,-15,17r-33,0v-2,-32,20,-40,49,-40","w":113},"\u00d8":{"d":"188,-129v1,75,-11,136,-88,134v-18,0,-32,-3,-43,-9r-10,22r-17,-7r11,-25v-25,-23,-27,-67,-28,-115v-2,-76,12,-134,87,-133v18,0,32,3,44,9r9,-22r17,7r-11,25v26,22,28,67,29,114xm100,-33v53,0,33,-93,33,-149r-58,136v5,9,13,13,25,13xm100,-224v-53,0,-32,92,-33,149r58,-136v-5,-9,-13,-13,-25,-13","w":200},"\u0152":{"d":"100,-224v-43,0,-36,52,-36,95v0,44,-7,96,36,96v52,0,32,-84,32,-141v0,-28,-4,-50,-32,-50xm90,-262v20,-1,39,7,48,19r0,-14r131,0r0,42r-87,0r0,61r82,0r0,42r-82,0r0,70r90,0r0,42r-134,0v-1,-5,2,-12,-1,-15v-6,13,-24,20,-44,20v-73,0,-80,-64,-80,-136v0,-70,10,-130,77,-131","w":280},"\u00ba":{"d":"57,-232v-22,0,-16,33,-16,54v1,13,3,23,16,23v24,0,23,-77,0,-77xm57,-132v-40,0,-53,-22,-53,-61v1,-40,13,-61,53,-62v40,-1,52,24,52,62v0,38,-13,61,-52,61","w":113},"\u00e6":{"d":"84,-165v-18,0,-25,12,-24,31r-44,0v-13,-68,90,-85,118,-42v8,-14,24,-23,46,-23v62,-1,72,48,70,110r-97,0v0,0,-1,60,24,60v19,0,24,-16,26,-36r44,0v-2,45,-23,70,-70,70v-30,0,-49,-12,-58,-33v-12,22,-28,33,-62,33v-56,0,-62,-91,-20,-108v20,-15,70,-5,70,-38v0,-15,-6,-24,-23,-24xm178,-165v-21,0,-26,22,-25,46r50,0v-2,-25,-2,-46,-25,-46xm76,-29v33,1,32,-34,31,-68v-18,13,-51,10,-50,41v1,13,5,27,19,27","w":259},"\u0131":{"d":"18,-194r50,0r0,194r-50,0r0,-194","w":86},"\u00f8":{"d":"140,-181v40,49,38,186,-54,186v-16,0,-29,-2,-39,-8r-12,24r-16,-8r13,-26v-38,-50,-36,-186,54,-186v16,0,30,3,40,8r12,-24r16,9xm86,-29v34,-2,26,-57,26,-97r-45,85v4,8,10,12,19,12xm105,-153v-20,-28,-47,-1,-45,29v1,18,-2,41,1,57"},"\u0153":{"d":"184,-165v-22,1,-27,22,-26,46r51,0v-2,-22,-1,-47,-25,-46xm87,-165v-41,4,-26,76,-23,117v4,11,10,19,23,19v27,0,26,-31,26,-68v0,-37,1,-64,-26,-68xm185,-199v62,-2,73,47,71,110r-98,0v0,28,-1,60,25,60v19,0,24,-16,26,-36r44,0v-1,45,-22,70,-67,70v-26,1,-43,-12,-50,-28v-5,18,-30,29,-54,28v-60,1,-71,-44,-72,-102v-1,-61,17,-102,77,-102v27,1,41,9,51,27v8,-15,26,-27,47,-27","w":266},"\u00df":{"d":"89,-228v-22,0,-24,17,-25,39r0,189r-49,0r0,-190v0,-51,24,-73,76,-72v43,1,70,19,71,61v1,32,-13,43,-32,54v66,18,53,169,-37,149v-5,0,-8,-1,-11,-1r0,-34v32,7,38,-20,38,-51v0,-28,-7,-48,-38,-44r0,-34v24,3,31,-12,30,-34v-1,-17,-5,-32,-23,-32","w":180},"\u00f7":{"d":"108,20v-19,0,-35,-16,-35,-35v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35xm108,-132v-18,0,-35,-16,-35,-35v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-17,35,-35,35xm17,-113r182,0r0,44r-182,0r0,-44","w":216},"\u00ae":{"d":"144,-224v-56,0,-93,38,-93,95v0,57,36,96,93,96v57,0,93,-39,93,-96v0,-57,-37,-95,-93,-95xm144,5v-81,0,-134,-54,-134,-134v0,-79,53,-133,134,-133v81,0,134,54,134,133v0,80,-53,134,-134,134xm172,-158v-1,-21,-27,-17,-49,-17r0,35v22,-1,50,6,49,-18xm148,-201v63,-11,73,80,20,85r35,59r-34,0r-34,-57r-12,0r0,57r-31,0r0,-144r56,0","w":288},"\u00e7":{"d":"80,63v20,1,24,-25,2,-25v-9,3,-16,2,-20,-5r16,-28v-56,-1,-69,-44,-69,-102v0,-62,19,-102,79,-102v46,0,70,29,69,75r-47,0v0,-20,-4,-39,-23,-39v-30,0,-28,35,-28,67v0,32,-3,67,27,67v20,0,24,-19,24,-45r47,0v0,47,-17,72,-59,78r-11,18v20,-5,42,2,42,25v0,38,-52,39,-81,27r7,-17v6,3,16,6,25,6","w":166},"\u00b1":{"d":"17,-45r182,0r0,45r-182,0r0,-45xm86,-182r44,0r0,39r69,0r0,44r-69,0r0,39r-44,0r0,-39r-69,0r0,-44r69,0r0,-39","w":216},"\u00c7":{"d":"113,50v0,-20,-31,-4,-36,-17r17,-28v-71,-1,-81,-60,-81,-134v0,-76,12,-133,87,-133v59,0,81,35,80,92r-52,0v-2,-32,-3,-54,-31,-54v-39,0,-33,56,-33,99v0,44,-4,92,34,92v31,0,31,-31,32,-65r52,0v0,57,-17,98,-69,103r-10,17v20,-5,42,4,42,25v2,38,-52,39,-82,27r7,-17v11,6,43,11,43,-7","w":193},"\u00a9":{"d":"144,5v-81,0,-134,-54,-134,-134v0,-79,53,-133,134,-133v81,0,134,54,134,133v0,80,-53,134,-134,134xm144,-224v-56,0,-93,38,-93,95v0,57,36,96,93,96v57,0,93,-39,93,-96v0,-57,-37,-95,-93,-95xm109,-130v-9,47,60,66,69,23r36,0v-6,33,-28,56,-65,56v-48,0,-69,-32,-74,-79v-8,-86,126,-108,138,-23r-35,0v-15,-44,-75,-22,-69,23","w":288},"\u00ac":{"d":"154,-108r-137,0r0,-45r182,0r0,118r-45,0r0,-73","w":216},"\u2122":{"d":"51,-223r-40,0r0,-34r121,0r0,34r-40,0r0,115r-41,0r0,-115xm303,-108r-1,-102r-34,102r-36,0r-35,-102r0,102r-38,0r0,-149r61,0r31,90r29,-90r61,0r0,149r-38,0","w":356},"\u00b0":{"d":"72,-228v-13,0,-26,13,-26,26v0,14,12,26,26,26v14,0,26,-12,26,-26v0,-13,-13,-26,-26,-26xm72,-148v-32,0,-53,-22,-53,-54v0,-31,21,-53,53,-53v32,0,53,22,53,53v0,32,-21,54,-53,54","w":144},"\u00b5":{"d":"116,-23v-11,16,-28,35,-50,25r0,61r-49,0r0,-257r49,0r0,134v0,18,4,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0r0,-23","w":180},"\u03bc":{"d":"116,-23v-11,16,-28,35,-50,25r0,61r-49,0r0,-257r49,0r0,134v0,18,4,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0r0,-23","w":180},"#":{"d":"66,-103r35,0r6,-44r-35,0xm0,-103r31,0r6,-44r-26,0r0,-40r31,0r8,-63r34,0r-7,63r35,0r8,-63r34,0r-7,63r26,0r0,40r-31,0r-6,44r26,0r0,40r-31,0r-8,63r-34,0r7,-63r-35,0r-7,63r-35,0r8,-63r-27,0r0,-40"},"\u00c1":{"d":"75,-97r50,0r-25,-115xm68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm96,-324r50,0r-36,52r-33,0","w":200},"\u00c2":{"d":"75,-97r50,0r-25,-115xm68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm74,-324r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":200},"\u00c4":{"d":"75,-97r50,0r-25,-115xm68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm111,-318r40,0r0,42r-40,0r0,-42xm49,-318r40,0r0,42r-40,0r0,-42","w":200},"\u00c0":{"d":"75,-97r50,0r-25,-115xm68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm90,-272r-36,-52r50,0r19,52r-33,0","w":200},"\u00c5":{"d":"75,-97r50,0r-25,-115xm68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm100,-326v-12,0,-21,9,-21,21v0,12,10,21,21,21v11,0,21,-9,21,-21v0,-12,-9,-21,-21,-21xm100,-264v-25,0,-41,-16,-41,-41v0,-25,16,-41,41,-41v25,0,41,16,41,41v0,25,-16,41,-41,41","w":200},"\u00c3":{"d":"75,-97r50,0r-25,-115xm68,-257r64,0r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0xm123,-276v-22,2,-45,-30,-54,0r-26,0v0,-38,36,-55,67,-34v10,7,21,-1,21,-11r25,0v-1,23,-12,44,-33,45","w":200},"\u00c9":{"d":"162,-257r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257r144,0xm87,-324r50,0r-36,52r-33,0","w":173},"\u00ca":{"d":"162,-257r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257r144,0xm65,-324r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":173},"\u00cb":{"d":"162,-257r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257r144,0xm102,-318r40,0r0,42r-40,0r0,-42xm40,-318r40,0r0,42r-40,0r0,-42","w":173},"\u00c8":{"d":"162,-257r0,42r-92,0r0,61r86,0r0,42r-86,0r0,70r95,0r0,42r-147,0r0,-257r144,0xm81,-272r-36,-52r50,0r19,52r-33,0","w":173},"\u00cd":{"d":"21,0r0,-257r51,0r0,257r-51,0xm42,-324r50,0r-36,52r-33,0","w":92},"\u00ce":{"d":"21,0r0,-257r51,0r0,257r-51,0xm20,-324r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":92},"\u00cf":{"d":"21,0r0,-257r51,0r0,257r-51,0xm57,-318r40,0r0,42r-40,0r0,-42xm-5,-318r40,0r0,42r-40,0r0,-42","w":92},"\u00cc":{"d":"21,0r0,-257r51,0r0,257r-51,0xm36,-272r-36,-52r50,0r19,52r-33,0","w":92},"\u00d1":{"d":"78,-257r63,176r0,-176r48,0r0,257r-59,0r-64,-180r0,180r-48,0r0,-257r60,0xm126,-276v-22,2,-45,-30,-54,0r-26,0v0,-38,36,-55,67,-34v10,7,21,-1,21,-11r25,0v-1,23,-12,44,-33,45","w":206},"\u00d3":{"d":"100,-224v-41,0,-36,52,-36,95v0,44,-6,96,36,96v42,0,36,-53,36,-96v0,-43,6,-95,-36,-95xm100,5v-76,0,-87,-57,-87,-134v0,-76,12,-133,87,-133v76,0,88,58,88,133v0,75,-11,134,-88,134xm96,-324r50,0r-36,52r-33,0","w":200},"\u00d4":{"d":"100,-224v-41,0,-36,52,-36,95v0,44,-6,96,36,96v42,0,36,-53,36,-96v0,-43,6,-95,-36,-95xm100,5v-76,0,-87,-57,-87,-134v0,-76,12,-133,87,-133v76,0,88,58,88,133v0,75,-11,134,-88,134xm74,-324r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":200},"\u00d6":{"d":"100,-224v-41,0,-36,52,-36,95v0,44,-6,96,36,96v42,0,36,-53,36,-96v0,-43,6,-95,-36,-95xm100,5v-76,0,-87,-57,-87,-134v0,-76,12,-133,87,-133v76,0,88,58,88,133v0,75,-11,134,-88,134xm111,-318r40,0r0,42r-40,0r0,-42xm49,-318r40,0r0,42r-40,0r0,-42","w":200},"\u00d2":{"d":"100,-224v-41,0,-36,52,-36,95v0,44,-6,96,36,96v42,0,36,-53,36,-96v0,-43,6,-95,-36,-95xm100,5v-76,0,-87,-57,-87,-134v0,-76,12,-133,87,-133v76,0,88,58,88,133v0,75,-11,134,-88,134xm90,-272r-36,-52r50,0r19,52r-33,0","w":200},"\u00d5":{"d":"100,-224v-41,0,-36,52,-36,95v0,44,-6,96,36,96v42,0,36,-53,36,-96v0,-43,6,-95,-36,-95xm100,5v-76,0,-87,-57,-87,-134v0,-76,12,-133,87,-133v76,0,88,58,88,133v0,75,-11,134,-88,134xm123,-276v-22,2,-45,-30,-54,0r-26,0v0,-38,36,-55,67,-34v10,7,21,-1,21,-11r25,0v-1,23,-12,44,-33,45","w":200},"\u00da":{"d":"97,5v-55,1,-82,-27,-82,-83r0,-179r52,0r0,179v-1,26,6,45,30,45v24,0,31,-19,30,-45r0,-179r52,0r0,179v1,56,-29,82,-82,83xm93,-324r50,0r-36,52r-33,0","w":193},"\u00db":{"d":"97,5v-55,1,-82,-27,-82,-83r0,-179r52,0r0,179v-1,26,6,45,30,45v24,0,31,-19,30,-45r0,-179r52,0r0,179v1,56,-29,82,-82,83xm71,-324r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":193},"\u00dc":{"d":"97,5v-55,1,-82,-27,-82,-83r0,-179r52,0r0,179v-1,26,6,45,30,45v24,0,31,-19,30,-45r0,-179r52,0r0,179v1,56,-29,82,-82,83xm108,-318r40,0r0,42r-40,0r0,-42xm46,-318r40,0r0,42r-40,0r0,-42","w":193},"\u00d9":{"d":"97,5v-55,1,-82,-27,-82,-83r0,-179r52,0r0,179v-1,26,6,45,30,45v24,0,31,-19,30,-45r0,-179r52,0r0,179v1,56,-29,82,-82,83xm87,-272r-36,-52r50,0r19,52r-33,0","w":193},"\u0178":{"d":"59,-257r35,99r36,-99r56,0r-66,156r0,101r-52,0r0,-101r-67,-156r58,0xm105,-318r40,0r0,42r-40,0r0,-42xm43,-318r40,0r0,42r-40,0r0,-42","w":187},"\u00e1":{"d":"76,-29v34,2,32,-34,31,-68v-17,14,-51,9,-49,41v0,14,4,27,18,27xm84,-165v-17,0,-24,13,-23,31r-45,0v-1,-45,25,-65,68,-65v45,1,70,14,70,60v0,46,-6,104,7,139r-48,0v-5,-5,-3,-15,-7,-20v-11,19,-22,24,-49,25v-56,3,-61,-90,-20,-108v19,-15,69,-4,70,-38v0,-15,-6,-25,-23,-24xm83,-268r50,0r-36,52r-33,0","w":173},"\u00e2":{"d":"76,-29v34,2,32,-34,31,-68v-17,14,-51,9,-49,41v0,14,4,27,18,27xm84,-165v-17,0,-24,13,-23,31r-45,0v-1,-45,25,-65,68,-65v45,1,70,14,70,60v0,46,-6,104,7,139r-48,0v-5,-5,-3,-15,-7,-20v-11,19,-22,24,-49,25v-56,3,-61,-90,-20,-108v19,-15,69,-4,70,-38v0,-15,-6,-25,-23,-24xm61,-268r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":173},"\u00e4":{"d":"76,-29v34,2,32,-34,31,-68v-17,14,-51,9,-49,41v0,14,4,27,18,27xm84,-165v-17,0,-24,13,-23,31r-45,0v-1,-45,25,-65,68,-65v45,1,70,14,70,60v0,46,-6,104,7,139r-48,0v-5,-5,-3,-15,-7,-20v-11,19,-22,24,-49,25v-56,3,-61,-90,-20,-108v19,-15,69,-4,70,-38v0,-15,-6,-25,-23,-24xm98,-262r40,0r0,42r-40,0r0,-42xm36,-262r40,0r0,42r-40,0r0,-42","w":173},"\u00e0":{"d":"76,-29v34,2,32,-34,31,-68v-17,14,-51,9,-49,41v0,14,4,27,18,27xm84,-165v-17,0,-24,13,-23,31r-45,0v-1,-45,25,-65,68,-65v45,1,70,14,70,60v0,46,-6,104,7,139r-48,0v-5,-5,-3,-15,-7,-20v-11,19,-22,24,-49,25v-56,3,-61,-90,-20,-108v19,-15,69,-4,70,-38v0,-15,-6,-25,-23,-24xm77,-216r-36,-52r50,0r19,52r-33,0","w":173},"\u00e5":{"d":"76,-29v34,2,32,-34,31,-68v-17,14,-51,9,-49,41v0,14,4,27,18,27xm84,-165v-17,0,-24,13,-23,31r-45,0v-1,-45,25,-65,68,-65v45,1,70,14,70,60v0,46,-6,104,7,139r-48,0v-5,-5,-3,-15,-7,-20v-11,19,-22,24,-49,25v-56,3,-61,-90,-20,-108v19,-15,69,-4,70,-38v0,-15,-6,-25,-23,-24xm87,-272v-12,0,-21,9,-21,21v0,12,10,21,21,21v11,0,21,-9,21,-21v0,-12,-9,-21,-21,-21xm87,-210v-25,0,-41,-16,-41,-41v0,-25,16,-41,41,-41v25,0,41,16,41,41v0,25,-16,41,-41,41","w":173},"\u00e3":{"d":"76,-29v34,2,32,-34,31,-68v-17,14,-51,9,-49,41v0,14,4,27,18,27xm84,-165v-17,0,-24,13,-23,31r-45,0v-1,-45,25,-65,68,-65v45,1,70,14,70,60v0,46,-6,104,7,139r-48,0v-5,-5,-3,-15,-7,-20v-11,19,-22,24,-49,25v-56,3,-61,-90,-20,-108v19,-15,69,-4,70,-38v0,-15,-6,-25,-23,-24xm110,-220v-22,2,-45,-30,-54,0r-26,0v0,-38,36,-55,67,-34v10,7,21,-1,21,-11r25,0v-1,23,-12,44,-33,45","w":173},"\u00e9":{"d":"85,-165v-22,1,-27,22,-26,46r51,0v-2,-22,-1,-47,-25,-46xm86,-199v62,0,73,47,71,110r-98,0v0,28,-1,60,25,60v19,0,24,-16,26,-36r44,0v-3,45,-22,70,-70,70v-63,0,-75,-44,-75,-104v0,-59,17,-100,77,-100xm80,-268r50,0r-36,52r-33,0","w":166},"\u00ea":{"d":"85,-165v-22,1,-27,22,-26,46r51,0v-2,-22,-1,-47,-25,-46xm86,-199v62,0,73,47,71,110r-98,0v0,28,-1,60,25,60v19,0,24,-16,26,-36r44,0v-3,45,-22,70,-70,70v-63,0,-75,-44,-75,-104v0,-59,17,-100,77,-100xm58,-268r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":166},"\u00eb":{"d":"85,-165v-22,1,-27,22,-26,46r51,0v-2,-22,-1,-47,-25,-46xm86,-199v62,0,73,47,71,110r-98,0v0,28,-1,60,25,60v19,0,24,-16,26,-36r44,0v-3,45,-22,70,-70,70v-63,0,-75,-44,-75,-104v0,-59,17,-100,77,-100xm95,-262r40,0r0,42r-40,0r0,-42xm33,-262r40,0r0,42r-40,0r0,-42","w":166},"\u00e8":{"d":"85,-165v-22,1,-27,22,-26,46r51,0v-2,-22,-1,-47,-25,-46xm86,-199v62,0,73,47,71,110r-98,0v0,28,-1,60,25,60v19,0,24,-16,26,-36r44,0v-3,45,-22,70,-70,70v-63,0,-75,-44,-75,-104v0,-59,17,-100,77,-100xm74,-216r-36,-52r50,0r19,52r-33,0","w":166},"\u00ed":{"d":"18,-194r50,0r0,194r-50,0r0,-194xm39,-268r50,0r-36,52r-33,0","w":86},"\u00ee":{"d":"18,-194r50,0r0,194r-50,0r0,-194xm17,-268r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":86},"\u00ef":{"d":"18,-194r50,0r0,194r-50,0r0,-194xm54,-262r40,0r0,42r-40,0r0,-42xm-8,-262r40,0r0,42r-40,0r0,-42","w":86},"\u00ec":{"d":"18,-194r50,0r0,194r-50,0r0,-194xm33,-216r-36,-52r50,0r19,52r-33,0","w":86},"\u00f1":{"d":"114,-134v0,-18,-5,-27,-21,-27v-18,0,-27,11,-27,32r0,129r-49,0r0,-194r47,0v1,7,-2,18,1,23v9,-18,26,-28,49,-28v33,0,49,20,49,55r0,144r-49,0r0,-134xm113,-220v-22,2,-45,-30,-54,0r-26,0v0,-38,36,-55,67,-34v10,7,21,-1,21,-11r25,0v-1,23,-12,44,-33,45","w":180},"\u00f3":{"d":"86,-165v-36,4,-26,57,-26,96v0,20,6,40,26,40v27,0,27,-32,27,-68v0,-37,0,-64,-27,-68xm86,5v-62,1,-76,-41,-76,-102v-1,-61,17,-101,76,-102v63,-1,77,41,77,102v1,61,-17,101,-77,102xm82,-268r50,0r-36,52r-33,0"},"\u00f4":{"d":"86,-165v-36,4,-26,57,-26,96v0,20,6,40,26,40v27,0,27,-32,27,-68v0,-37,0,-64,-27,-68xm86,5v-62,1,-76,-41,-76,-102v-1,-61,17,-101,76,-102v63,-1,77,41,77,102v1,61,-17,101,-77,102xm60,-268r52,0r28,52r-38,0r-17,-31r-17,31r-36,0"},"\u00f6":{"d":"86,-165v-36,4,-26,57,-26,96v0,20,6,40,26,40v27,0,27,-32,27,-68v0,-37,0,-64,-27,-68xm86,5v-62,1,-76,-41,-76,-102v-1,-61,17,-101,76,-102v63,-1,77,41,77,102v1,61,-17,101,-77,102xm97,-262r40,0r0,42r-40,0r0,-42xm35,-262r40,0r0,42r-40,0r0,-42"},"\u00f2":{"d":"86,-165v-36,4,-26,57,-26,96v0,20,6,40,26,40v27,0,27,-32,27,-68v0,-37,0,-64,-27,-68xm86,5v-62,1,-76,-41,-76,-102v-1,-61,17,-101,76,-102v63,-1,77,41,77,102v1,61,-17,101,-77,102xm76,-216r-36,-52r50,0r19,52r-33,0"},"\u00f5":{"d":"86,-165v-36,4,-26,57,-26,96v0,20,6,40,26,40v27,0,27,-32,27,-68v0,-37,0,-64,-27,-68xm86,5v-62,1,-76,-41,-76,-102v-1,-61,17,-101,76,-102v63,-1,77,41,77,102v1,61,-17,101,-77,102xm109,-220v-22,2,-45,-30,-54,0r-26,0v0,-38,36,-55,67,-34v10,7,21,-1,21,-11r25,0v-1,23,-12,44,-33,45"},"\u00fa":{"d":"66,-60v0,18,4,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0v-1,-7,2,-18,-1,-23v-9,18,-26,28,-49,28v-33,0,-49,-20,-49,-55r0,-144r49,0r0,134xm86,-268r50,0r-36,52r-33,0","w":180},"\u00fb":{"d":"66,-60v0,18,4,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0v-1,-7,2,-18,-1,-23v-9,18,-26,28,-49,28v-33,0,-49,-20,-49,-55r0,-144r49,0r0,134xm64,-268r52,0r28,52r-38,0r-17,-31r-17,31r-36,0","w":180},"\u00fc":{"d":"66,-60v0,18,4,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0v-1,-7,2,-18,-1,-23v-9,18,-26,28,-49,28v-33,0,-49,-20,-49,-55r0,-144r49,0r0,134xm101,-262r40,0r0,42r-40,0r0,-42xm39,-262r40,0r0,42r-40,0r0,-42","w":180},"\u00f9":{"d":"66,-60v0,18,4,27,21,27v18,0,27,-11,27,-32r0,-129r49,0r0,194r-47,0v-1,-7,2,-18,-1,-23v-9,18,-26,28,-49,28v-33,0,-49,-20,-49,-55r0,-144r49,0r0,134xm80,-216r-36,-52r50,0r19,52r-33,0","w":180},"\u00ff":{"d":"17,26v23,5,39,-4,39,-26r-54,-194r52,0r29,134r25,-134r50,0r-59,221v-10,33,-37,39,-82,36r0,-37xm91,-262r40,0r0,42r-40,0r0,-42xm29,-262r40,0r0,42r-40,0r0,-42","w":159},"!":{"d":"78,-48r0,48r-50,0r0,-48r50,0xm35,-72r-7,-102r0,-83r50,0v1,65,-2,126,-7,185r-36,0","w":106},"\"":{"d":"26,-257r45,0r0,116r-45,0r0,-116xm96,-257r45,0r0,116r-45,0r0,-116","w":166},"\u00a4":{"d":"86,-171v-27,0,-44,18,-44,46v0,28,18,47,44,47v27,0,45,-19,45,-47v0,-28,-18,-46,-45,-46xm40,-193v22,-19,72,-18,92,0r19,-18r22,22r-18,18v18,23,18,69,0,92r18,18r-22,22r-19,-18v-22,19,-67,21,-92,0r-18,18r-22,-22r18,-18v-17,-22,-18,-69,0,-92r-18,-18r22,-22"},"\u0141":{"d":"18,-92r-18,11r0,-38r18,-11r0,-127r52,0r0,94r45,-28r0,38r-45,28r0,83r92,0r0,42r-144,0r0,-92","w":166},"\u0142":{"d":"18,-102r-22,16r0,-32r22,-15r0,-124r50,0r0,91r23,-15r0,32r-23,15r0,134r-50,0r0,-102","w":86},"\u00be":{"d":"51,-98v-35,0,-52,-17,-51,-52r38,0v1,13,3,24,18,24v14,0,17,-14,15,-27v-2,-13,-15,-15,-31,-14r0,-26v30,8,41,-35,15,-35v-13,0,-15,10,-16,22r-36,0v-1,-35,18,-49,52,-49v56,-11,70,61,28,74v20,4,29,14,29,36v0,34,-25,47,-61,47xm195,-261r32,0r-146,272r-32,0xm206,-57v-1,-17,2,-37,-1,-52r-31,52r32,0xm144,-60r55,-94r45,0r0,97r16,0r0,29r-16,0r0,28r-38,0r0,-28r-62,0r0,-32","w":259},"\u00bc":{"d":"0,-230v23,1,39,-7,42,-25r31,0r0,154r-40,0r0,-104r-33,0r0,-25xm181,-261r32,0r-146,272r-32,0xm144,-60r55,-94r45,0r0,97r16,0r0,29r-16,0r0,28r-38,0r0,-28r-62,0r0,-32xm206,-57v-1,-17,2,-37,-1,-52r-31,52r32,0","w":259},"\u00b9":{"d":"9,-230v23,1,38,-7,42,-25r31,0r0,154r-41,0r0,-104r-32,0r0,-25","w":112},"\u00d7":{"d":"77,-91r-56,-56r31,-31r56,56r56,-56r31,31r-56,56r56,56r-31,31r-56,-56r-56,56r-31,-31","w":216},"\u00de":{"d":"127,-133v0,-35,-21,-43,-57,-40r0,78v34,3,57,-4,57,-38xm179,-134v0,62,-42,82,-109,77r0,57r-52,0r0,-257r52,0r0,46v67,-6,109,14,109,77","w":186},"\u00a6":{"d":"18,-262r44,0r0,97r-44,0r0,-97xm18,-93r44,0r0,98r-44,0r0,-98","w":79},"\u00d0":{"d":"139,-131v0,-55,-5,-97,-67,-88r0,67r34,0r0,39r-34,0r0,75v65,8,67,-35,67,-93xm190,-132v0,77,-13,132,-88,132r-81,0r0,-113r-21,0r0,-39r21,0r0,-105r84,0v72,-1,85,53,85,125","w":206},"\u00bd":{"d":"205,-154v59,0,71,59,31,86v-15,10,-33,21,-40,38r64,0r0,30r-113,0v-3,-53,44,-66,69,-95v6,-12,3,-33,-12,-32v-15,0,-18,13,-19,27r-38,0v-2,-39,18,-54,58,-54xm0,-230v23,1,39,-7,42,-25r31,0r0,154r-40,0r0,-104r-33,0r0,-25xm172,-261r32,0r-146,272r-32,0","w":259},"\u2212":{"d":"17,-113r182,0r0,44r-182,0r0,-44","w":216},"\u00f0":{"d":"10,-97v-3,-63,37,-114,89,-86v-9,-15,-22,-29,-33,-43r-28,16r-14,-15r27,-16r-24,-23r38,-22r24,22r27,-16r15,15r-27,17v35,37,59,80,59,151v1,61,-17,101,-77,102v-62,1,-73,-42,-76,-102xm86,-158v-35,3,-26,53,-26,90v0,20,6,39,26,39v27,0,27,-29,27,-65v0,-35,0,-61,-27,-64"},"\u00fe":{"d":"109,5v-21,1,-32,-11,-43,-23r0,81r-49,0r0,-320r49,0r1,84v8,-17,20,-26,42,-26v49,0,59,42,59,102v0,61,-10,100,-59,102xm93,-161v-28,0,-27,30,-27,64v0,34,-1,64,27,64v28,0,25,-31,25,-64v0,-34,3,-64,-25,-64","w":180},"\u00b2":{"d":"58,-255v59,0,68,58,31,86v-14,11,-34,21,-40,39r63,0r0,29r-112,0v-3,-53,46,-65,68,-95v8,-10,5,-33,-11,-32v-15,0,-18,13,-19,27r-38,0v-2,-39,17,-54,58,-54","w":112},"\u00b3":{"d":"51,-98v-35,0,-52,-17,-51,-52r38,0v1,13,3,24,18,24v14,0,17,-14,15,-27v-2,-13,-15,-15,-31,-14r0,-26v30,8,41,-35,15,-35v-13,0,-15,10,-16,22r-36,0v-1,-35,18,-49,52,-49v56,-11,70,61,28,74v20,4,29,14,29,36v0,34,-25,47,-61,47","w":112},"\u0160":{"d":"90,5v-58,0,-84,-27,-82,-85r52,0v-2,29,6,47,34,47v28,0,43,-41,21,-58v-36,-29,-103,-26,-103,-95v0,-50,29,-76,79,-76v51,0,82,23,80,76r-50,0v-1,-22,-6,-38,-28,-38v-42,0,-36,60,-3,65v40,19,89,26,89,85v0,54,-34,79,-89,79xm40,-324r38,0r17,30r17,-30r36,0r-28,52r-52,0","w":186},"\u00dd":{"d":"59,-257r35,99r36,-99r56,0r-66,156r0,101r-52,0r0,-101r-67,-156r58,0xm90,-324r50,0r-36,52r-33,0","w":187},"\u017d":{"d":"9,-38r94,-177r-88,0r0,-42r148,0r0,39r-96,176r98,0r0,42r-156,0r0,-38xm33,-324r38,0r17,30r17,-30r36,0r-28,52r-52,0","w":173},"\u0161":{"d":"80,5v-50,1,-73,-20,-72,-68r45,0v-1,20,8,33,26,34v29,2,33,-38,7,-45v-35,-10,-77,-20,-76,-66v1,-41,28,-58,71,-59v44,0,68,19,66,63r-44,0v-1,-18,-4,-29,-22,-29v-31,-1,-30,37,-2,44v36,9,75,18,73,65v-2,41,-29,60,-72,61xm26,-268r38,0r17,30r17,-30r36,0r-28,52r-52,0","w":159},"\u00fd":{"d":"17,26v23,5,39,-4,39,-26r-54,-194r52,0r29,134r25,-134r50,0r-59,221v-10,33,-37,39,-82,36r0,-37xm76,-268r50,0r-36,52r-33,0","w":159},"\u017e":{"d":"9,-38r77,-115r-74,0r0,-41r133,0r0,38r-78,116r78,0r0,40r-136,0r0,-38xm23,-268r38,0r17,30r17,-30r36,0r-28,52r-52,0","w":153}}});;
Cufon.registerFont({"w":200,"face":{"font-family":"HelveticaNeue75","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-60 -351 388 78.4413","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"\u00c2":{"d":"90,-99r66,0r-33,-95xm95,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0xm100,-331r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":246},"\u00c4":{"d":"90,-99r66,0r-33,-95xm95,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0xm62,-328r49,0r0,42r-49,0r0,-42xm136,-328r49,0r0,42r-49,0r0,-42","w":246},"\u00c0":{"d":"90,-99r66,0r-33,-95xm95,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0xm60,-331r56,0r35,51r-36,0","w":246},"\u00c5":{"d":"90,-99r66,0r-33,-95xm95,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0xm123,-263v-26,0,-43,-17,-43,-44v0,-27,16,-44,43,-44v28,0,45,18,45,44v0,26,-18,44,-45,44xm123,-332v-14,0,-22,12,-22,25v0,13,8,25,22,25v14,0,23,-11,23,-25v0,-14,-9,-25,-23,-25","w":246},"\u00c3":{"d":"90,-99r66,0r-33,-95xm95,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0xm150,-315v10,1,15,-5,15,-13r25,0v-6,20,-14,41,-41,41v-25,0,-61,-29,-69,3r-22,0v4,-25,15,-44,45,-44v19,1,28,12,47,13","w":246},"B":{"d":"173,-184v0,-41,-54,-26,-92,-29r0,60v39,-2,92,11,92,-31xm240,-75v0,96,-122,72,-215,75r0,-257v83,6,204,-26,203,64v0,28,-15,43,-35,53v29,9,46,30,47,65xm184,-78v0,-48,-58,-34,-103,-36r0,70v44,-2,103,12,103,-34","w":253},"C":{"d":"14,-127v-11,-129,163,-184,225,-83v7,11,10,24,12,39r-55,0v-5,-27,-26,-45,-56,-45v-50,0,-70,39,-70,89v0,49,21,84,70,86v35,1,55,-25,58,-58r55,0v-7,64,-44,105,-113,105v-81,0,-119,-53,-126,-133","w":266},"\u00c7":{"d":"14,-127v-11,-129,163,-184,225,-83v7,11,10,24,12,39r-55,0v-5,-27,-26,-45,-56,-45v-50,0,-70,39,-70,89v0,49,21,84,70,86v35,1,55,-25,58,-58r55,0v-7,64,-44,105,-113,105v-81,0,-119,-53,-126,-133xm178,42v0,43,-54,41,-87,29r8,-18v11,6,44,15,45,-5v0,-14,-18,-14,-29,-9r-8,-9r21,-31r18,0v-3,6,-12,15,-13,20v18,-5,45,2,45,23","w":266},"D":{"d":"196,-125v3,-70,-40,-92,-115,-85r0,162r51,0v46,0,62,-32,64,-77xm252,-130v0,79,-38,130,-116,130r-111,0r0,-257r111,0v76,3,116,47,116,127","w":266},"E":{"d":"25,-257r192,0r0,47r-136,0r0,56r125,0r0,43r-125,0r0,63r139,0r0,48r-195,0r0,-257","w":233},"\u00c9":{"d":"25,-257r192,0r0,47r-136,0r0,56r125,0r0,43r-125,0r0,63r139,0r0,48r-195,0r0,-257xm125,-280r-36,0r35,-51r57,0","w":233},"\u00ca":{"d":"25,-257r192,0r0,47r-136,0r0,56r125,0r0,43r-125,0r0,63r139,0r0,48r-195,0r0,-257xm93,-331r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":233},"\u00cb":{"d":"25,-257r192,0r0,47r-136,0r0,56r125,0r0,43r-125,0r0,63r139,0r0,48r-195,0r0,-257xm55,-328r49,0r0,42r-49,0r0,-42xm129,-328r49,0r0,42r-49,0r0,-42","w":233},"\u00c8":{"d":"25,-257r192,0r0,47r-136,0r0,56r125,0r0,43r-125,0r0,63r139,0r0,48r-195,0r0,-257xm53,-331r56,0r35,51r-36,0","w":233},"F":{"d":"25,-257r181,0r0,47r-125,0r0,60r108,0r0,44r-108,0r0,106r-56,0r0,-257","w":213},"G":{"d":"70,-127v-10,87,119,123,131,30r-57,0r0,-42r108,0r0,139r-36,0r-5,-29v-17,22,-39,35,-71,35v-81,0,-121,-52,-126,-133v-7,-111,112,-173,198,-113v20,14,34,37,36,68r-54,0v-4,-27,-25,-44,-54,-44v-50,0,-64,40,-70,89","w":273},"H":{"d":"25,-257r56,0r0,99r104,0r0,-99r57,0r0,257r-57,0r0,-111r-104,0r0,111r-56,0r0,-257","w":266},"I":{"d":"25,-257r56,0r0,257r-56,0r0,-257","w":106},"\u00cd":{"d":"25,-257r56,0r0,257r-56,0r0,-257xm61,-280r-36,0r35,-51r57,0","w":106},"\u00ce":{"d":"25,-257r56,0r0,257r-56,0r0,-257xm29,-331r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":106},"\u00cf":{"d":"25,-257r56,0r0,257r-56,0r0,-257xm-9,-328r49,0r0,42r-49,0r0,-42xm65,-328r49,0r0,42r-49,0r0,-42","w":106},"\u00cc":{"d":"25,-257r56,0r0,257r-56,0r0,-257xm-11,-331r56,0r35,51r-36,0","w":106},"J":{"d":"56,-84v-10,46,62,59,62,15r1,-188r56,0v-9,109,38,267,-85,263v-60,-2,-91,-35,-85,-102r51,0r0,12"},"K":{"d":"25,-257r56,0r0,107r101,-107r70,0r-100,101r110,156r-71,0r-77,-116r-33,33r0,83r-56,0r0,-257","w":259},"L":{"d":"25,-257r56,0r0,209r126,0r0,48r-182,0r0,-257","w":213},"M":{"d":"25,-257r79,0r61,177r57,-177r80,0r0,257r-53,0r-1,-182r-63,182r-44,0r-63,-180r0,180r-53,0r0,-257","w":326},"N":{"d":"25,-257r56,0r108,172r0,-172r53,0r0,257r-57,0r-107,-172r0,172r-53,0r0,-257","w":266},"\u00d1":{"d":"25,-257r56,0r108,172r0,-172r53,0r0,257r-57,0r-107,-172r0,172r-53,0r0,-257xm160,-315v10,1,15,-5,15,-13r25,0v-6,20,-14,41,-41,41v-25,0,-61,-29,-69,3r-22,0v4,-25,15,-44,45,-44v19,1,28,12,47,13","w":266},"O":{"d":"140,-216v-50,0,-70,39,-70,89v0,49,21,86,70,86v49,0,70,-37,70,-86v0,-50,-20,-89,-70,-89xm140,6v-81,0,-126,-52,-126,-133v0,-83,44,-136,126,-136v82,0,126,53,126,136v0,81,-45,133,-126,133","w":280},"\u0152":{"d":"137,-41v57,2,60,-59,57,-120v-2,-34,-22,-55,-56,-55v-48,0,-68,39,-68,88v0,48,19,86,67,87xm134,-263v29,-1,47,9,62,24r0,-18r180,0r0,47r-128,0r0,56r117,0r0,43r-117,0r0,63r130,0r0,48r-182,0v-1,-6,2,-15,-1,-19v-13,15,-36,25,-62,25v-78,0,-119,-55,-119,-133v0,-79,41,-133,120,-136","w":393},"\u00d3":{"d":"140,-216v-50,0,-70,39,-70,89v0,49,21,86,70,86v49,0,70,-37,70,-86v0,-50,-20,-89,-70,-89xm140,6v-81,0,-126,-52,-126,-133v0,-83,44,-136,126,-136v82,0,126,53,126,136v0,81,-45,133,-126,133xm149,-280r-36,0r35,-51r57,0","w":280},"\u00d4":{"d":"140,-216v-50,0,-70,39,-70,89v0,49,21,86,70,86v49,0,70,-37,70,-86v0,-50,-20,-89,-70,-89xm140,6v-81,0,-126,-52,-126,-133v0,-83,44,-136,126,-136v82,0,126,53,126,136v0,81,-45,133,-126,133xm117,-331r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":280},"\u00d6":{"d":"140,-216v-50,0,-70,39,-70,89v0,49,21,86,70,86v49,0,70,-37,70,-86v0,-50,-20,-89,-70,-89xm140,6v-81,0,-126,-52,-126,-133v0,-83,44,-136,126,-136v82,0,126,53,126,136v0,81,-45,133,-126,133xm79,-328r49,0r0,42r-49,0r0,-42xm153,-328r49,0r0,42r-49,0r0,-42","w":280},"\u00d2":{"d":"140,-216v-50,0,-70,39,-70,89v0,49,21,86,70,86v49,0,70,-37,70,-86v0,-50,-20,-89,-70,-89xm140,6v-81,0,-126,-52,-126,-133v0,-83,44,-136,126,-136v82,0,126,53,126,136v0,81,-45,133,-126,133xm77,-331r56,0r35,51r-36,0","w":280},"\u00d8":{"d":"140,-41v65,2,84,-79,60,-135r-106,117v11,11,26,17,46,18xm140,-216v-66,-1,-83,80,-60,137r107,-118v-11,-12,-26,-19,-47,-19xm140,6v-35,1,-60,-11,-80,-27r-30,33r-18,-16r31,-34v-18,-22,-29,-51,-29,-89v2,-83,44,-133,126,-136v35,0,62,11,81,28r29,-32r18,15r-30,34v17,23,28,52,28,91v-2,81,-45,131,-126,133","w":280},"\u00d5":{"d":"140,-216v-50,0,-70,39,-70,89v0,49,21,86,70,86v49,0,70,-37,70,-86v0,-50,-20,-89,-70,-89xm140,6v-81,0,-126,-52,-126,-133v0,-83,44,-136,126,-136v82,0,126,53,126,136v0,81,-45,133,-126,133xm167,-315v10,1,15,-5,15,-13r25,0v-6,20,-14,41,-41,41v-25,0,-61,-29,-69,3r-22,0v4,-25,15,-44,45,-44v19,1,28,12,47,13","w":280},"P":{"d":"175,-175v0,-46,-50,-38,-94,-38r0,77v44,-1,94,7,94,-39xm230,-175v2,75,-66,90,-149,83r0,92r-56,0r0,-257r116,0v56,1,88,29,89,82","w":240},"Q":{"d":"70,-127v-1,56,35,98,93,82r-24,-22r26,-28r29,27v32,-47,17,-152,-54,-148v-50,3,-69,39,-70,89xm266,-127v1,41,-13,72,-33,94r32,29r-26,28r-37,-33v-16,9,-37,15,-62,15v-81,-2,-126,-52,-126,-133v0,-83,44,-136,126,-136v82,0,124,53,126,136","w":280},"R":{"d":"182,-177v0,-48,-57,-34,-101,-36r0,72v44,-2,101,13,101,-36xm190,0v-14,-37,4,-100,-52,-100r-57,0r0,100r-56,0r0,-257r138,0v80,-8,102,112,35,135v46,10,30,83,48,122r-56,0","w":259},"S":{"d":"177,-143v86,37,41,161,-59,149v-62,-8,-108,-27,-109,-91r54,0v1,33,24,43,57,47v44,5,71,-45,26,-60v-53,-18,-127,-18,-129,-87v-3,-93,157,-100,191,-33v5,10,8,23,8,38r-54,0v5,-47,-87,-55,-90,-10v9,40,67,30,105,47","w":233},"T":{"d":"82,-210r-77,0r0,-47r210,0r0,47r-77,0r0,210r-56,0r0,-210","w":219},"U":{"d":"133,-41v39,0,53,-17,53,-56r0,-160r57,0r0,160v1,70,-41,103,-110,103v-70,0,-110,-33,-109,-103r0,-160r56,0r0,160v0,36,16,56,53,56","w":266},"\u00da":{"d":"133,-41v39,0,53,-17,53,-56r0,-160r57,0r0,160v1,70,-41,103,-110,103v-70,0,-110,-33,-109,-103r0,-160r56,0r0,160v0,36,16,56,53,56xm142,-280r-36,0r35,-51r57,0","w":266},"\u00db":{"d":"133,-41v39,0,53,-17,53,-56r0,-160r57,0r0,160v1,70,-41,103,-110,103v-70,0,-110,-33,-109,-103r0,-160r56,0r0,160v0,36,16,56,53,56xm110,-331r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":266},"\u00dc":{"d":"133,-41v39,0,53,-17,53,-56r0,-160r57,0r0,160v1,70,-41,103,-110,103v-70,0,-110,-33,-109,-103r0,-160r56,0r0,160v0,36,16,56,53,56xm72,-328r49,0r0,42r-49,0r0,-42xm146,-328r49,0r0,42r-49,0r0,-42","w":266},"\u00d9":{"d":"133,-41v39,0,53,-17,53,-56r0,-160r57,0r0,160v1,70,-41,103,-110,103v-70,0,-110,-33,-109,-103r0,-160r56,0r0,160v0,36,16,56,53,56xm70,-331r56,0r35,51r-36,0","w":266},"V":{"d":"144,0r-63,0r-84,-257r58,0r58,181r58,-181r59,0","w":226},"W":{"d":"270,0r-57,0r-44,-175r-43,175r-57,0r-68,-257r57,0r41,175r45,-175r53,0r44,177r42,-177r56,0","w":339},"X":{"d":"88,-135r-83,-122r66,0r50,82r52,-82r62,0r-82,123r89,134r-67,0r-56,-89r-57,89r-64,0","w":240},"Y":{"d":"91,-100r-94,-157r63,0r61,101r59,-101r63,0r-95,158r0,99r-57,0r0,-100","w":240},"\u0178":{"d":"91,-100r-94,-157r63,0r61,101r59,-101r63,0r-95,158r0,99r-57,0r0,-100xm58,-328r49,0r0,42r-49,0r0,-42xm132,-328r49,0r0,42r-49,0r0,-42","w":240},"Z":{"d":"8,-45r138,-165r-127,0r0,-47r202,0r0,45r-137,164r141,0r0,48r-217,0r0,-45","w":233},"a":{"d":"102,-157v-20,2,-32,9,-34,28r-51,0v3,-46,40,-62,88,-62v42,0,80,10,81,53v1,46,-6,103,7,138r-52,0v-1,-6,-3,-12,-3,-18v-31,35,-126,34,-126,-33v0,-66,76,-47,118,-69v14,-19,-3,-40,-28,-37xm135,-91v-21,16,-72,1,-72,38v0,19,13,24,31,24v36,1,44,-25,41,-62","w":206},"\u00e1":{"d":"102,-157v-20,2,-32,9,-34,28r-51,0v3,-46,40,-62,88,-62v42,0,80,10,81,53v1,46,-6,103,7,138r-52,0v-1,-6,-3,-12,-3,-18v-31,35,-126,34,-126,-33v0,-66,76,-47,118,-69v14,-19,-3,-40,-28,-37xm135,-91v-21,16,-72,1,-72,38v0,19,13,24,31,24v36,1,44,-25,41,-62xm112,-209r-36,0r35,-51r57,0","w":206},"\u00e2":{"d":"102,-157v-20,2,-32,9,-34,28r-51,0v3,-46,40,-62,88,-62v42,0,80,10,81,53v1,46,-6,103,7,138r-52,0v-1,-6,-3,-12,-3,-18v-31,35,-126,34,-126,-33v0,-66,76,-47,118,-69v14,-19,-3,-40,-28,-37xm135,-91v-21,16,-72,1,-72,38v0,19,13,24,31,24v36,1,44,-25,41,-62xm80,-260r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":206},"\u00b4":{"d":"55,-209r-36,0r35,-51r57,0","w":93},"\u00e4":{"d":"102,-157v-20,2,-32,9,-34,28r-51,0v3,-46,40,-62,88,-62v42,0,80,10,81,53v1,46,-6,103,7,138r-52,0v-1,-6,-3,-12,-3,-18v-31,35,-126,34,-126,-33v0,-66,76,-47,118,-69v14,-19,-3,-40,-28,-37xm135,-91v-21,16,-72,1,-72,38v0,19,13,24,31,24v36,1,44,-25,41,-62xm42,-257r49,0r0,42r-49,0r0,-42xm116,-257r49,0r0,42r-49,0r0,-42","w":206},"\u00e6":{"d":"265,-113v5,-48,-66,-58,-79,-17v-2,5,-3,11,-3,17r82,0xm168,-166v25,-36,108,-30,128,8v11,21,19,47,20,77r-133,0v-7,51,72,72,82,23r49,0v-7,65,-121,85,-155,31v-32,54,-178,40,-140,-49v16,-39,83,-25,116,-46v12,-19,-7,-37,-30,-35v-20,2,-35,8,-35,29r-51,0v-4,-70,115,-81,149,-38xm96,-29v34,0,47,-23,43,-62v-20,18,-74,1,-74,38v0,17,13,24,31,24","w":326},"\u00e0":{"d":"102,-157v-20,2,-32,9,-34,28r-51,0v3,-46,40,-62,88,-62v42,0,80,10,81,53v1,46,-6,103,7,138r-52,0v-1,-6,-3,-12,-3,-18v-31,35,-126,34,-126,-33v0,-66,76,-47,118,-69v14,-19,-3,-40,-28,-37xm135,-91v-21,16,-72,1,-72,38v0,19,13,24,31,24v36,1,44,-25,41,-62xm40,-260r56,0r35,51r-36,0","w":206},"&":{"d":"223,-124v-3,25,-12,47,-25,63r53,61r-63,0r-21,-26v-40,50,-155,39,-155,-46v0,-43,30,-59,57,-75v-12,-16,-25,-29,-24,-54v1,-39,29,-59,67,-59v41,0,69,20,70,62v0,34,-23,51,-46,64r34,40v6,-9,7,-19,9,-30r44,0xm60,-71v0,43,65,41,80,11r-44,-53v-17,8,-36,18,-36,42xm111,-165v27,-7,39,-57,3,-61v-35,3,-21,49,-3,61","w":246},"\u00e5":{"d":"102,-157v-20,2,-32,9,-34,28r-51,0v3,-46,40,-62,88,-62v42,0,80,10,81,53v1,46,-6,103,7,138r-52,0v-1,-6,-3,-12,-3,-18v-31,35,-126,34,-126,-33v0,-66,76,-47,118,-69v14,-19,-3,-40,-28,-37xm135,-91v-21,16,-72,1,-72,38v0,19,13,24,31,24v36,1,44,-25,41,-62xm103,-192v-26,0,-43,-17,-43,-44v0,-27,16,-44,43,-44v28,0,45,18,45,44v0,26,-18,44,-45,44xm103,-261v-14,0,-22,12,-22,25v0,13,8,25,22,25v14,0,23,-11,23,-25v0,-14,-9,-25,-23,-25","w":206},"^":{"d":"84,-252r48,0r62,139r-42,0r-44,-99r-44,99r-42,0","w":216},"~":{"d":"69,-122v40,2,86,49,108,-2r15,34v-12,14,-20,31,-45,31v-37,0,-91,-51,-108,1r-15,-33v8,-16,20,-32,45,-31","w":216},"*":{"d":"87,-212r42,-16r10,28r-43,14r27,35r-24,18r-27,-37r-25,37r-24,-18r27,-35r-42,-14r10,-28r40,16r0,-45r29,0r0,45","w":146},"@":{"d":"68,-110v-7,-68,81,-125,121,-67r5,-19r30,0r-26,108v0,3,2,9,6,8v31,-3,43,-33,43,-66v0,-57,-38,-89,-98,-88v-64,1,-101,41,-101,106v0,67,40,103,106,105v32,1,61,-12,77,-29r30,0v-22,34,-58,58,-109,58v-83,0,-139,-52,-139,-135v0,-81,55,-134,137,-134v70,0,125,38,125,110v0,59,-35,97,-85,104v-15,2,-24,-10,-27,-20v-27,42,-101,11,-95,-41xm149,-168v-27,2,-42,25,-44,53v-1,19,11,33,28,32v28,-2,42,-25,44,-54v0,-17,-12,-32,-28,-31","w":288},"\u00e3":{"d":"102,-157v-20,2,-32,9,-34,28r-51,0v3,-46,40,-62,88,-62v42,0,80,10,81,53v1,46,-6,103,7,138r-52,0v-1,-6,-3,-12,-3,-18v-31,35,-126,34,-126,-33v0,-66,76,-47,118,-69v14,-19,-3,-40,-28,-37xm135,-91v-21,16,-72,1,-72,38v0,19,13,24,31,24v36,1,44,-25,41,-62xm130,-244v10,1,15,-5,15,-13r25,0v-6,20,-14,41,-41,41v-25,0,-61,-29,-69,3r-22,0v4,-25,15,-44,45,-44v19,1,28,12,47,13","w":206},"b":{"d":"112,-33v33,0,44,-28,44,-60v0,-32,-11,-60,-44,-60v-31,0,-43,26,-43,60v0,33,12,60,43,60xm130,5v-30,0,-50,-10,-62,-29r0,24r-49,0r0,-257r52,0r0,94v11,-18,34,-28,59,-28v52,0,77,42,77,98v0,56,-25,98,-77,98","w":219},"\\":{"d":"138,6r-42,0r-100,-269r41,0","w":133},"|":{"d":"21,-263r38,0r0,269r-38,0r0,-269","w":80},"{":{"d":"30,-147v0,-54,-6,-114,44,-116r46,0r0,40v-24,-2,-40,2,-39,26v3,47,3,95,-36,99v46,1,37,61,37,106v0,18,19,18,38,17r0,41v-49,4,-89,-4,-90,-49v-2,-42,12,-101,-33,-100r0,-31v19,-2,33,-13,33,-33","w":119},"}":{"d":"90,-53v0,55,6,116,-44,119r-46,0r0,-41v24,2,40,-2,39,-26v-2,-45,-5,-95,36,-98v-45,-1,-35,-61,-37,-107v0,-18,-19,-18,-38,-17r0,-40v49,-4,89,3,90,48v1,43,-11,101,33,101r0,31v-19,1,-33,11,-33,30","w":119},"[":{"d":"24,-263r96,0r0,40r-44,0r0,248r44,0r0,41r-96,0r0,-329","w":119},"]":{"d":"95,66r-95,0r0,-41r44,0r0,-248r-44,0r0,-40r95,0r0,329","w":119},"\u02d8":{"d":"107,-262v1,50,-69,68,-104,40v-11,-8,-16,-23,-17,-40r23,0v4,35,72,34,76,0r22,0","w":93},"\u2022":{"d":"90,-64v-39,0,-64,-26,-64,-65v0,-38,26,-64,64,-64v39,0,64,25,64,64v0,39,-25,65,-64,65","w":180},"c":{"d":"14,-90v-10,-98,124,-136,173,-62v5,9,8,19,9,31r-50,0v-3,-21,-16,-32,-38,-32v-58,0,-58,119,-1,120v24,-1,37,-16,41,-38r49,0v-6,47,-39,76,-89,76v-59,0,-88,-37,-94,-95","w":206},"\u02c7":{"d":"70,-209r-47,0r-40,-51r41,0r23,29r23,-29r40,0","w":93},"\u00e7":{"d":"14,-90v-10,-98,124,-136,173,-62v5,9,8,19,9,31r-50,0v-3,-21,-16,-32,-38,-32v-58,0,-58,119,-1,120v24,-1,37,-16,41,-38r49,0v-6,47,-39,76,-89,76v-59,0,-88,-37,-94,-95xm148,42v0,43,-54,41,-87,29r8,-18v11,6,44,15,45,-5v0,-14,-18,-14,-29,-9r-8,-9r21,-31r18,0v-3,6,-12,15,-13,20v18,-5,45,2,45,23","w":206},"\u00b8":{"d":"91,42v0,43,-54,41,-87,29r8,-18v11,6,44,15,45,-5v0,-14,-18,-14,-29,-9r-8,-9r21,-31r18,0v-3,6,-12,15,-13,20v18,-5,45,2,45,23","w":93},"\u00a2":{"d":"196,-73v-5,47,-33,73,-81,78r0,36r-21,0r0,-36v-53,-5,-86,-38,-86,-95v0,-60,31,-95,86,-101r0,-31r21,0r0,31v45,3,78,25,80,71r-50,0v-1,-18,-14,-31,-30,-33r0,120v17,-5,30,-19,31,-40r50,0xm94,-152v-50,8,-44,110,0,119r0,-119"},"\u02c6":{"d":"23,-260r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":93},":":{"d":"78,-127r-56,0r0,-56r56,0r0,56xm22,-55r56,0r0,55r-56,0r0,-55","w":100},",":{"d":"22,-55r56,0v4,58,-1,110,-56,115r0,-26v17,-3,25,-16,26,-34r-26,0r0,-55","w":100},"\u00a9":{"d":"106,-130v-8,51,69,72,79,24r30,0v-7,33,-28,57,-66,57v-49,0,-72,-32,-77,-80v-9,-88,129,-114,141,-25r-28,0v-18,-50,-84,-25,-79,24xm144,-234v-63,0,-102,42,-102,105v0,64,39,106,102,106v63,0,102,-43,102,-106v0,-62,-39,-105,-102,-105xm144,6v-82,0,-138,-52,-138,-135v0,-84,56,-134,138,-134v82,0,138,50,138,134v0,83,-56,135,-138,135","w":288},"d":{"d":"108,-33v33,0,44,-28,44,-61v0,-32,-11,-59,-44,-59v-33,0,-45,26,-45,60v0,34,13,60,45,60xm94,-191v25,-1,44,14,56,28r0,-94r51,0r0,257r-49,0r0,-24v-11,18,-30,29,-57,29v-58,-1,-83,-43,-83,-100v0,-55,26,-94,82,-96","w":219},"\u2020":{"d":"76,-144r-67,0r0,-42r67,0r0,-71r48,0r0,71r68,0r0,42r-68,0r0,204r-48,0r0,-204"},"\u2021":{"d":"76,-10r-67,0r0,-42r67,0r0,-92r-67,0r0,-42r67,0r0,-71r48,0r0,71r68,0r0,42r-68,0r0,92r68,0r0,42r-68,0r0,70r-48,0r0,-70"},"\u00b0":{"d":"72,-235v-42,0,-36,63,0,63v18,0,30,-14,30,-32v0,-17,-12,-31,-30,-31xm72,-150v-31,0,-53,-21,-53,-54v0,-32,21,-53,53,-53v32,0,53,21,53,53v0,33,-22,54,-53,54","w":144},"\u00a8":{"d":"-15,-257r49,0r0,42r-49,0r0,-42xm59,-257r49,0r0,42r-49,0r0,-42","w":93},"\u00f7":{"d":"109,14v-18,-1,-31,-12,-31,-30v0,-18,12,-29,30,-30v17,-1,32,14,31,30v-2,16,-12,30,-30,30xm109,-135v-17,-2,-31,-12,-31,-31v0,-18,13,-29,30,-30v16,-1,32,14,31,30v-1,17,-13,29,-30,31xm17,-110r182,0r0,38r-182,0r0,-38","w":216},"$":{"d":"170,-135v62,45,20,146,-59,141r0,31r-22,0r0,-31v-55,-4,-84,-35,-89,-90r51,0v0,26,16,44,38,48r0,-75v-39,-11,-84,-22,-83,-75v1,-51,36,-72,83,-77r0,-28r22,0r0,28v46,6,78,28,81,77r-52,0v1,-17,-13,-35,-29,-35r0,64v22,4,47,12,59,22xm111,-36v34,3,55,-50,18,-63v-5,-2,-11,-4,-18,-6r0,69xm89,-221v-26,-3,-42,30,-25,48v5,4,13,8,25,11r0,-59"},"\u02d9":{"d":"22,-257r49,0r0,42r-49,0r0,-42","w":93},"\u0131":{"d":"21,-186r51,0r0,186r-51,0r0,-186","w":92},"e":{"d":"145,-113v1,-47,-70,-52,-81,-12v-1,5,-2,8,-2,12r83,0xm62,-81v-7,54,72,61,86,23r45,0v-13,40,-41,63,-88,63v-61,0,-90,-38,-95,-98v-9,-110,163,-133,182,-29v3,13,5,27,4,41r-134,0","w":206},"\u00e9":{"d":"145,-113v1,-47,-70,-52,-81,-12v-1,5,-2,8,-2,12r83,0xm62,-81v-7,54,72,61,86,23r45,0v-13,40,-41,63,-88,63v-61,0,-90,-38,-95,-98v-9,-110,163,-133,182,-29v3,13,5,27,4,41r-134,0xm112,-209r-36,0r35,-51r57,0","w":206},"\u00ea":{"d":"145,-113v1,-47,-70,-52,-81,-12v-1,5,-2,8,-2,12r83,0xm62,-81v-7,54,72,61,86,23r45,0v-13,40,-41,63,-88,63v-61,0,-90,-38,-95,-98v-9,-110,163,-133,182,-29v3,13,5,27,4,41r-134,0xm80,-260r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":206},"\u00eb":{"d":"145,-113v1,-47,-70,-52,-81,-12v-1,5,-2,8,-2,12r83,0xm62,-81v-7,54,72,61,86,23r45,0v-13,40,-41,63,-88,63v-61,0,-90,-38,-95,-98v-9,-110,163,-133,182,-29v3,13,5,27,4,41r-134,0xm42,-257r49,0r0,42r-49,0r0,-42xm116,-257r49,0r0,42r-49,0r0,-42","w":206},"\u00e8":{"d":"145,-113v1,-47,-70,-52,-81,-12v-1,5,-2,8,-2,12r83,0xm62,-81v-7,54,72,61,86,23r45,0v-13,40,-41,63,-88,63v-61,0,-90,-38,-95,-98v-9,-110,163,-133,182,-29v3,13,5,27,4,41r-134,0xm40,-260r56,0r35,51r-36,0","w":206},"8":{"d":"100,-219v-20,0,-38,13,-38,35v0,24,17,33,38,34v21,1,38,-13,38,-34v0,-23,-14,-35,-38,-35xm53,-136v-72,-29,-28,-129,47,-121v78,-10,116,95,48,121v28,6,47,29,47,62v0,54,-41,79,-94,79v-54,0,-96,-24,-96,-79v0,-33,20,-55,48,-62xm101,-116v-24,0,-46,14,-45,40v1,27,19,43,45,43v25,0,43,-16,43,-43v0,-25,-18,-39,-43,-40"},"\u2026":{"d":"271,-55r57,0r0,55r-57,0r0,-55xm152,-55r56,0r0,55r-56,0r0,-55xm32,-55r56,0r0,55r-56,0r0,-55","w":360},"\u2014":{"d":"0,-120r360,0r0,44r-360,0r0,-44","w":360},"\u2013":{"d":"0,-120r180,0r0,44r-180,0r0,-44","w":180},"=":{"d":"199,-33r-182,0r0,-39r182,0r0,39xm199,-110r-182,0r0,-39r182,0r0,39","w":216},"!":{"d":"22,-55r56,0r0,55r-56,0r0,-55xm77,-257v3,67,-7,123,-14,180r-26,0v-7,-58,-17,-112,-14,-180r54,0","w":100},"\u00a1":{"d":"23,66v-3,-67,7,-123,14,-180r26,0v7,58,17,112,14,180r-54,0xm78,-136r-56,0r0,-55r56,0r0,55","w":100},"f":{"d":"120,-217v-24,-6,-44,0,-38,31r35,0r0,34r-35,0r0,152r-51,0r0,-152r-31,0r0,-34r31,0v-6,-58,30,-76,89,-70r0,39","w":119},"5":{"d":"143,-86v4,-47,-63,-62,-83,-27r-46,0r25,-139r141,0r0,42r-104,0v-2,19,-9,41,-9,58v12,-13,26,-19,49,-19v52,0,75,36,78,85v7,94,-140,122,-179,46v-5,-10,-9,-22,-9,-35r52,0v1,21,19,38,41,38v28,0,42,-21,44,-49"},"\u0192":{"d":"5,22v24,4,36,-4,40,-25r23,-118r-33,0r6,-35r33,0v10,-53,13,-114,83,-107v10,0,19,0,27,2r-7,39v-19,-6,-42,-1,-41,20r-9,46r35,0r-6,35r-36,0r-28,143v-9,35,-47,43,-94,38"},"4":{"d":"112,-100r-1,-88r-65,88r66,0xm112,-58r-106,0r0,-47r109,-147r46,0r0,152r33,0r0,42r-33,0r0,58r-49,0r0,-58"},"\u2044":{"d":"89,-260r31,0r-148,268r-32,0","w":60},"\u2215":{"d":"89,-260r31,0r-148,268r-32,0","w":60},"g":{"d":"65,-100v1,31,10,56,41,56v29,0,44,-22,44,-51v0,-33,-12,-58,-44,-58v-28,0,-42,22,-41,53xm94,-191v28,-1,43,12,56,30r0,-25r48,0r0,174v11,89,-126,108,-169,50v-5,-8,-8,-16,-9,-27r51,0v13,44,86,26,79,-21v-1,-7,2,-18,-1,-24v-10,18,-31,29,-56,29v-55,-2,-79,-38,-79,-94v0,-53,26,-91,80,-92","w":219},"\u00df":{"d":"113,-220v-26,-4,-42,9,-42,34r0,186r-51,0v9,-108,-39,-269,85,-263v47,2,81,21,81,69v1,25,-16,43,-33,51v30,6,47,29,47,64v0,58,-42,93,-108,82r0,-42v31,9,57,-11,57,-42v0,-31,-22,-48,-57,-43r0,-34v45,15,64,-55,21,-62","w":219},"`":{"d":"-17,-260r56,0r35,51r-36,0","w":93},">":{"d":"17,-39r132,-52r-132,-53r0,-41r182,73r0,42r-182,73r0,-42","w":216},"\u00ab":{"d":"15,-74r0,-48r57,-45r0,44r-33,25r33,26r0,43xm88,-74r0,-48r57,-45r0,44r-33,25r33,26r0,43","w":159},"\u00bb":{"d":"72,-122r0,48r-57,45r0,-43r33,-26r-33,-25r0,-44xm145,-122r0,48r-57,45r0,-43r33,-26r-33,-25r0,-44","w":159},"\u2039":{"d":"15,-74r0,-48r57,-45r0,44r-33,25r33,26r0,43","w":86},"\u203a":{"d":"72,-122r0,48r-57,45r0,-43r33,-26r-33,-25r0,-44","w":86},"h":{"d":"110,-151v-62,0,-32,95,-39,151r-52,0r0,-257r52,0r1,97v9,-19,29,-30,54,-31v93,-6,63,108,68,191r-51,0r0,-105v0,-28,-6,-47,-33,-46","w":213},"\u02dd":{"d":"90,-209r-36,0r33,-51r57,0xm15,-209r-35,0r33,-51r56,0","w":93},"-":{"d":"19,-120r108,0r0,44r-108,0r0,-44","w":146},"\u00ad":{"d":"19,-120r108,0r0,44r-108,0r0,-44","w":146},"i":{"d":"72,-215r-51,0r0,-42r51,0r0,42xm21,-186r51,0r0,186r-51,0r0,-186","w":92},"\u00ed":{"d":"21,-186r51,0r0,186r-51,0r0,-186xm55,-209r-36,0r35,-51r57,0","w":92},"\u00ee":{"d":"21,-186r51,0r0,186r-51,0r0,-186xm23,-260r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":92},"\u00ef":{"d":"21,-186r51,0r0,186r-51,0r0,-186xm-15,-257r49,0r0,42r-49,0r0,-42xm59,-257r49,0r0,42r-49,0r0,-42","w":92},"\u00ec":{"d":"21,-186r51,0r0,186r-51,0r0,-186xm-17,-260r56,0r35,51r-36,0","w":92},"j":{"d":"75,-215r-51,0r0,-42r51,0r0,42xm75,9v4,49,-35,62,-82,55r0,-42v13,2,31,2,31,-15r0,-193r51,0r0,195","w":100},"k":{"d":"24,-257r51,0r0,138r65,-67r60,0r-70,68r78,118r-62,0r-51,-83r-20,19r0,64r-51,0r0,-257","w":206},"l":{"d":"21,-257r51,0r0,257r-51,0r0,-257","w":92},"<":{"d":"199,-144r-132,53r132,52r0,42r-182,-73r0,-42r182,-73r0,41","w":216},"\u00ac":{"d":"199,-36r-39,0r0,-72r-143,0r0,-38r182,0r0,110","w":216},"m":{"d":"69,-161v20,-35,96,-43,112,1v12,-15,29,-31,56,-31v93,0,64,109,68,191r-51,0r-1,-123v-1,-18,-11,-28,-30,-28v-58,0,-26,97,-34,151r-51,0r-1,-121v-1,-18,-9,-31,-30,-30v-55,5,-29,95,-35,151r-51,0r0,-186r48,0r0,25","w":326},"\u00af":{"d":"-21,-249r135,0r0,27r-135,0r0,-27","w":93},"\u02c9":{"d":"-21,-249r135,0r0,27r-135,0r0,-27","w":93},"\u00b5":{"d":"145,-26v-12,20,-51,44,-74,22r0,70r-52,0r0,-252r52,0r0,105v0,28,6,46,32,46v63,0,33,-94,40,-151r51,0r0,186r-49,0r0,-26","w":213},"\u03bc":{"d":"145,-26v-12,20,-51,44,-74,22r0,70r-52,0r0,-252r52,0r0,105v0,28,6,46,32,46v63,0,33,-94,40,-151r51,0r0,186r-49,0r0,-26","w":213},"n":{"d":"110,-151v-62,0,-32,95,-39,151r-52,0r0,-186r49,0v1,8,-2,20,1,26v10,-19,31,-29,57,-31v93,-5,63,108,68,191r-51,0r0,-105v0,-28,-6,-47,-33,-46","w":213},"9":{"d":"59,-169v0,27,12,48,38,48v28,0,41,-20,41,-47v0,-26,-14,-47,-41,-47v-25,0,-38,20,-38,46xm193,-127v0,70,-28,130,-99,132v-46,1,-77,-28,-82,-70r48,0v3,25,35,42,57,23v15,-13,27,-43,25,-69v-36,55,-141,22,-134,-54v5,-56,33,-92,88,-92v74,0,97,59,97,130"},"\u00f1":{"d":"110,-151v-62,0,-32,95,-39,151r-52,0r0,-186r49,0v1,8,-2,20,1,26v10,-19,31,-29,57,-31v93,-5,63,108,68,191r-51,0r0,-105v0,-28,-6,-47,-33,-46xm133,-244v10,1,15,-5,15,-13r25,0v-6,20,-14,41,-41,41v-25,0,-61,-29,-69,3r-22,0v4,-25,15,-44,45,-44v19,1,28,12,47,13","w":213},"#":{"d":"87,-148r-6,44r35,0r6,-44r-35,0xm42,-71r-30,0r0,-33r34,0r7,-44r-30,0r0,-33r34,0r10,-71r35,0r-10,71r35,0r9,-71r35,0r-9,71r26,0r0,33r-31,0r-6,44r26,0r0,33r-31,0r-10,71r-34,0r9,-71r-34,0r-10,71r-35,0"},"o":{"d":"110,-153v-33,0,-45,26,-45,60v0,34,12,60,45,60v33,0,45,-26,45,-60v0,-34,-12,-60,-45,-60xm110,5v-62,0,-96,-37,-96,-98v0,-61,34,-98,96,-98v62,0,96,37,96,98v0,61,-34,98,-96,98","w":219},"\u00f3":{"d":"110,-153v-33,0,-45,26,-45,60v0,34,12,60,45,60v33,0,45,-26,45,-60v0,-34,-12,-60,-45,-60xm110,5v-62,0,-96,-37,-96,-98v0,-61,34,-98,96,-98v62,0,96,37,96,98v0,61,-34,98,-96,98xm118,-209r-36,0r35,-51r57,0","w":219},"\u00f4":{"d":"110,-153v-33,0,-45,26,-45,60v0,34,12,60,45,60v33,0,45,-26,45,-60v0,-34,-12,-60,-45,-60xm110,5v-62,0,-96,-37,-96,-98v0,-61,34,-98,96,-98v62,0,96,37,96,98v0,61,-34,98,-96,98xm86,-260r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":219},"\u00f6":{"d":"110,-153v-33,0,-45,26,-45,60v0,34,12,60,45,60v33,0,45,-26,45,-60v0,-34,-12,-60,-45,-60xm110,5v-62,0,-96,-37,-96,-98v0,-61,34,-98,96,-98v62,0,96,37,96,98v0,61,-34,98,-96,98xm48,-257r49,0r0,42r-49,0r0,-42xm122,-257r49,0r0,42r-49,0r0,-42","w":219},"\u0153":{"d":"169,-162v24,-39,110,-35,133,4v12,20,21,45,21,77r-133,0v-7,51,69,64,82,22r49,0v-8,64,-120,88,-154,32v-11,21,-35,32,-66,32v-58,0,-87,-40,-87,-99v0,-58,32,-97,91,-97v30,0,53,10,64,29xm105,-153v-55,0,-55,120,-1,120v33,0,42,-27,41,-61v0,-32,-8,-59,-40,-59xm272,-113v4,-37,-49,-53,-71,-28v-7,8,-11,17,-11,28r82,0","w":333},"\u02db":{"d":"38,45v2,17,30,15,35,1r17,8v-15,31,-95,37,-86,-15v10,-21,26,-43,64,-40v-18,17,-27,23,-30,46","w":93},"\u00f2":{"d":"110,-153v-33,0,-45,26,-45,60v0,34,12,60,45,60v33,0,45,-26,45,-60v0,-34,-12,-60,-45,-60xm110,5v-62,0,-96,-37,-96,-98v0,-61,34,-98,96,-98v62,0,96,37,96,98v0,61,-34,98,-96,98xm46,-260r56,0r35,51r-36,0","w":219},"1":{"d":"27,-202v40,0,69,-13,73,-50r41,0r0,252r-51,0r0,-163r-63,0r0,-39"},"\u00aa":{"d":"62,-234v-8,0,-19,6,-18,16r-37,0v4,-28,25,-38,56,-39v28,0,53,5,54,32v1,29,-4,67,5,87r-37,0v-1,-4,-2,-7,-2,-11v-26,29,-99,11,-76,-38v7,-16,32,-21,53,-21v12,0,22,-2,23,-12v1,-12,-10,-13,-21,-14xm40,-172v9,26,47,12,43,-13r0,-8v-11,9,-40,3,-43,21","w":123},"\u00ba":{"d":"66,-230v-32,0,-31,68,0,68v32,-1,31,-67,0,-68xm66,-135v-38,0,-62,-24,-62,-61v0,-37,24,-61,62,-61v38,0,62,24,62,61v0,37,-24,61,-62,61","w":132},"\u00f8":{"d":"206,-93v0,85,-91,123,-156,80r-21,24r-13,-11r21,-25v-49,-59,-16,-166,73,-166v23,0,42,5,58,17r20,-22r13,12r-20,22v16,15,25,39,25,69xm79,-46v36,33,91,-5,75,-64v-1,-6,-3,-11,-5,-16xm140,-141v-37,-32,-89,7,-74,64v1,5,2,10,4,15","w":219},"\u00f5":{"d":"110,-153v-33,0,-45,26,-45,60v0,34,12,60,45,60v33,0,45,-26,45,-60v0,-34,-12,-60,-45,-60xm110,5v-62,0,-96,-37,-96,-98v0,-61,34,-98,96,-98v62,0,96,37,96,98v0,61,-34,98,-96,98xm136,-244v10,1,15,-5,15,-13r25,0v-6,20,-14,41,-41,41v-25,0,-61,-29,-69,3r-22,0v4,-25,15,-44,45,-44v19,1,28,12,47,13","w":219},"p":{"d":"69,-93v0,34,13,60,44,60v32,0,46,-26,45,-60v-1,-32,-13,-60,-45,-60v-32,0,-44,26,-44,60xm127,5v-25,0,-46,-12,-56,-28r0,89r-52,0r0,-252r49,0v1,7,-2,18,1,24v11,-17,29,-29,55,-29v59,1,85,42,85,100v0,55,-26,94,-82,96","w":219},"\u00b6":{"d":"1,-192v0,-87,110,-61,192,-65r0,317r-37,0r0,-288r-40,0r0,288r-36,0r0,-189v-45,0,-79,-20,-79,-63","w":223},"(":{"d":"66,66v-61,-82,-60,-248,0,-329r43,0v-52,85,-51,244,0,329r-43,0","w":106},")":{"d":"88,-101v0,67,-20,125,-48,167r-43,0v52,-86,51,-241,1,-329r42,0v27,44,48,98,48,162","w":106},"%":{"d":"274,-108v-27,0,-26,31,-24,56v1,17,6,30,23,30v33,0,34,-86,1,-86xm272,5v-42,-1,-59,-28,-59,-71v0,-42,19,-68,61,-69v44,-1,59,29,59,71v0,41,-18,69,-61,69xm240,-260r31,0r-148,268r-32,0xm88,-230v-25,1,-26,30,-24,58v1,15,5,29,23,28v25,-1,25,-30,23,-54v-2,-15,-5,-33,-22,-32xm86,-117v-43,0,-60,-27,-59,-69v1,-41,19,-71,61,-71v43,0,59,30,59,73v0,43,-19,66,-61,67","w":360},".":{"d":"22,-55r56,0r0,55r-56,0r0,-55","w":100},"\u00b7":{"d":"51,-73v-18,0,-31,-12,-31,-30v0,-18,12,-30,30,-31v16,-1,32,15,31,31v-1,17,-13,30,-30,30","w":100},"\u2219":{"d":"51,-73v-18,0,-31,-12,-31,-30v0,-18,12,-30,30,-31v16,-1,32,15,31,31v-1,17,-13,30,-30,30","w":100},"\u2030":{"d":"211,5v-35,0,-53,-26,-53,-61v0,-36,16,-62,53,-63v38,0,53,25,53,63v0,36,-16,61,-53,61xm203,-260r31,0r-149,268r-31,0xm78,-234v-23,0,-22,27,-20,49v1,15,4,28,19,28v25,1,21,-30,20,-52v-1,-14,-5,-25,-19,-25xm77,-133v-34,1,-52,-27,-52,-61v1,-37,16,-63,53,-63v38,0,51,26,52,63v0,37,-17,60,-53,61xm336,-95v-24,0,-21,27,-20,49v0,15,5,28,20,28v23,-1,21,-30,19,-53v-1,-14,-5,-24,-19,-24xm336,5v-35,0,-53,-26,-53,-61v1,-37,16,-63,53,-63v38,0,51,26,52,63v0,37,-16,60,-52,61xm212,-95v-24,0,-22,25,-21,49v1,14,5,28,20,28v24,0,20,-29,20,-53v-1,-14,-5,-24,-19,-24","w":412},"+":{"d":"127,-110r72,0r0,38r-72,0r0,72r-38,0r0,-72r-72,0r0,-38r72,0r0,-72r38,0r0,72","w":216},"\u00b1":{"d":"17,-39r182,0r0,39r-182,0r0,-39xm127,-135r72,0r0,39r-72,0r0,47r-38,0r0,-47r-72,0r0,-39r72,0r0,-47r38,0r0,47","w":216},"q":{"d":"108,-153v-33,0,-45,26,-45,60v0,34,12,60,44,60v33,0,45,-26,45,-59v0,-32,-12,-61,-44,-61xm95,-191v27,0,47,10,57,29r0,-24r49,0r0,252r-51,0r-1,-89v-10,19,-34,28,-59,28v-52,0,-79,-39,-78,-97v1,-57,25,-99,83,-99","w":219},"?":{"d":"69,-55r57,0r0,55r-57,0r0,-55xm102,-221v-27,1,-37,21,-38,47r-52,0v1,-55,33,-84,87,-89v82,-8,118,86,59,130v-17,13,-38,22,-35,56r-48,0v-7,-57,34,-67,55,-99v6,-23,-3,-46,-28,-45"},"\u00bf":{"d":"131,-136r-57,0r0,-55r57,0r0,55xm99,28v26,0,35,-20,36,-46r53,0v-3,54,-33,89,-87,89v-52,0,-85,-23,-89,-70v-5,-68,66,-53,65,-117r49,0v6,56,-34,67,-56,99v-6,24,2,45,29,45"},"\"":{"d":"31,-257r38,0r0,116r-38,0r0,-116xm98,-257r38,0r0,116r-38,0r0,-116","w":166},"\u201e":{"d":"19,-55r52,0v3,56,1,110,-52,115r0,-24v17,-6,23,-16,24,-36r-24,0r0,-55xm96,-55r51,0v3,55,2,109,-51,115r0,-24v17,-6,23,-16,24,-36r-24,0r0,-55","w":166},"\u201c":{"d":"71,-141r-52,0v-3,-56,-1,-110,52,-116r0,24v-17,6,-23,16,-24,36r24,0r0,56xm147,-141r-51,0v-3,-56,-1,-110,51,-116r0,24v-17,6,-22,17,-24,36r24,0r0,56","w":166},"\u201d":{"d":"19,-257r52,0v3,56,1,110,-52,116r0,-24v17,-6,23,-16,24,-37r-24,0r0,-55xm96,-257r51,0v3,55,2,110,-51,116r0,-24v17,-6,23,-16,24,-37r-24,0r0,-55","w":166},"\u2018":{"d":"76,-141r-52,0v-3,-56,0,-110,52,-116r0,24v-17,6,-23,16,-24,36r24,0r0,56","w":100},"\u2019":{"d":"24,-257r52,0v3,56,1,110,-52,116r0,-24v17,-6,23,-16,24,-37r-24,0r0,-55","w":100},"\u201a":{"d":"24,-55r52,0v3,56,1,110,-52,115r0,-24v17,-6,23,-16,24,-36r-24,0r0,-55","w":100},"'":{"d":"31,-257r38,0r0,116r-38,0r0,-116","w":100},"r":{"d":"139,-142v-43,-9,-68,15,-68,58r0,84r-52,0r0,-186r49,0v1,11,-2,25,1,34v9,-25,37,-43,70,-37r0,47","w":140},"\u00ae":{"d":"176,-162v0,-25,-32,-17,-56,-19r0,40v24,-2,56,7,56,-21xm206,-160v0,26,-15,38,-39,40r40,66r-31,0r-37,-64r-19,0r0,64r-30,0r0,-150v52,1,116,-11,116,44xm144,-234v-63,0,-102,42,-102,105v0,64,39,106,102,106v63,0,102,-43,102,-106v0,-62,-39,-105,-102,-105xm144,6v-82,0,-138,-52,-138,-135v0,-83,56,-134,138,-134v82,0,138,51,138,134v0,83,-56,135,-138,135","w":288},"\u02da":{"d":"46,-192v-26,0,-43,-17,-43,-44v0,-27,16,-44,43,-44v28,0,45,18,45,44v0,26,-18,44,-45,44xm46,-261v-14,0,-22,12,-22,25v0,13,8,25,22,25v14,0,23,-11,23,-25v0,-14,-9,-25,-23,-25","w":93},"s":{"d":"165,-96v47,41,-4,107,-67,101v-49,-5,-84,-19,-88,-65r49,0v-3,38,70,43,73,7v-14,-43,-113,-11,-117,-78v-4,-75,125,-75,154,-29v5,8,8,16,9,28r-49,0v0,-23,-22,-24,-44,-24v-26,0,-22,29,-1,34v28,7,61,9,81,26","w":193},"\u00a7":{"d":"42,-165v-44,-50,20,-119,90,-94v26,10,45,30,46,65r-45,0v-1,-18,-11,-31,-30,-31v-19,0,-38,21,-22,37v35,36,116,34,116,98v0,26,-18,45,-38,53v13,9,19,22,20,42v1,74,-130,79,-152,22v-4,-9,-6,-19,-6,-31r45,0v1,21,14,30,35,31v31,2,35,-40,8,-50v-39,-25,-102,-30,-105,-89v-2,-28,16,-45,38,-53xm125,-63v19,9,37,-18,22,-31v-22,-20,-51,-33,-80,-46v-20,0,-24,32,-7,41"},";":{"d":"78,-127r-56,0r0,-56r56,0r0,56xm22,-55r56,0v4,58,-1,110,-56,115r0,-26v17,-3,25,-16,26,-34r-26,0r0,-55","w":100},"\u037e":{"d":"78,-127r-56,0r0,-56r56,0r0,56xm22,-55r56,0v4,58,-1,110,-56,115r0,-26v17,-3,25,-16,26,-34r-26,0r0,-55","w":100},"7":{"d":"49,0v6,-83,41,-153,85,-204r-120,0r0,-48r172,0r0,44v-48,45,-79,118,-82,208r-55,0"},"6":{"d":"141,-83v0,-27,-12,-48,-38,-48v-28,0,-41,20,-41,47v0,26,14,47,41,47v25,0,38,-20,38,-46xm8,-125v0,-72,27,-130,99,-132v45,-1,77,28,81,70r-48,0v-4,-15,-16,-32,-34,-32v-36,0,-46,41,-48,78v37,-56,142,-20,135,54v-5,55,-33,92,-89,92v-74,0,-96,-57,-96,-130"},"\/":{"d":"96,-263r42,0r-101,269r-41,0","w":133},"\u00c1":{"d":"90,-99r66,0r-33,-95xm95,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0xm132,-280r-36,0r35,-51r57,0","w":246},"\u00a3":{"d":"204,-17v-41,53,-126,-15,-172,23r-23,-33v24,-14,54,-49,34,-84r-35,0r0,-31r23,0v-8,-10,-17,-30,-17,-50v0,-73,112,-91,157,-48v16,15,23,38,23,67r-49,0v10,-52,-73,-66,-74,-15v0,21,6,32,15,46r48,0r0,31r-38,0v10,32,-7,59,-27,72v32,-20,89,20,114,-14"},"t":{"d":"122,0v-43,6,-89,3,-89,-42r0,-110r-31,0r0,-34r31,0r0,-56r51,0r0,56r38,0r0,34r-38,0r0,92v-3,25,19,24,38,20r0,40","w":126},"3":{"d":"140,-77v0,-34,-24,-38,-58,-37r0,-36v30,2,52,-5,54,-31v1,-21,-17,-34,-36,-34v-25,-1,-39,20,-39,45r-48,0v3,-53,32,-87,87,-87v47,0,82,24,84,70v1,28,-15,44,-35,52v26,5,44,27,45,57v4,96,-156,110,-181,30v-4,-11,-7,-25,-7,-39r49,0v2,29,15,49,44,50v23,0,41,-16,41,-40"},"\u02dc":{"d":"73,-244v10,1,15,-5,15,-13r25,0v-6,20,-14,41,-41,41v-25,0,-61,-29,-69,3r-22,0v4,-25,15,-44,45,-44v19,1,28,12,47,13","w":93},"\u2122":{"d":"143,-228r-42,0r0,119r-37,0r0,-119r-42,0r0,-29r121,0r0,29xm334,-109r-34,0r-1,-105r-38,105r-25,0r-39,-105r0,105r-35,0r0,-148r49,0r37,98r37,-98r49,0r0,148","w":360},"2":{"d":"102,-213v-30,2,-39,28,-40,58r-49,0v0,-63,31,-98,92,-102v78,-6,113,94,59,141v-29,25,-68,41,-91,72r120,0r0,44r-185,0v0,-93,91,-98,127,-154v16,-25,-3,-61,-33,-59"},"u":{"d":"103,-35v63,0,33,-94,40,-151r51,0r0,186r-49,0v-1,-8,2,-20,-1,-26v-11,19,-32,30,-57,31v-92,5,-64,-108,-68,-191r52,0r0,105v0,28,6,46,32,46","w":213},"\u00fa":{"d":"103,-35v63,0,33,-94,40,-151r51,0r0,186r-49,0v-1,-8,2,-20,-1,-26v-11,19,-32,30,-57,31v-92,5,-64,-108,-68,-191r52,0r0,105v0,28,6,46,32,46xm115,-209r-36,0r35,-51r57,0","w":213},"\u00fb":{"d":"103,-35v63,0,33,-94,40,-151r51,0r0,186r-49,0v-1,-8,2,-20,-1,-26v-11,19,-32,30,-57,31v-92,5,-64,-108,-68,-191r52,0r0,105v0,28,6,46,32,46xm83,-260r47,0r40,51r-42,0r-23,-29r-23,29r-39,0","w":213},"\u00fc":{"d":"103,-35v63,0,33,-94,40,-151r51,0r0,186r-49,0v-1,-8,2,-20,-1,-26v-11,19,-32,30,-57,31v-92,5,-64,-108,-68,-191r52,0r0,105v0,28,6,46,32,46xm45,-257r49,0r0,42r-49,0r0,-42xm119,-257r49,0r0,42r-49,0r0,-42","w":213},"\u00f9":{"d":"103,-35v63,0,33,-94,40,-151r51,0r0,186r-49,0v-1,-8,2,-20,-1,-26v-11,19,-32,30,-57,31v-92,5,-64,-108,-68,-191r52,0r0,105v0,28,6,46,32,46xm43,-260r56,0r35,51r-36,0","w":213},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"v":{"d":"122,0r-56,0r-64,-186r53,0r40,127r40,-127r50,0","w":187},"w":{"d":"232,0r-52,0r-34,-125r-32,125r-53,0r-59,-186r54,0r35,126r31,-126r50,0r32,126r34,-126r53,0","w":293},"x":{"d":"67,-98r-61,-88r58,0r33,48r32,-48r57,0r-61,87r68,99r-58,0r-39,-59r-39,59r-57,0","w":193},"y":{"d":"16,22v28,6,58,-3,47,-34r-65,-174r55,0r42,127r41,-127r53,0r-78,209v-10,36,-46,49,-95,41r0,-42","w":186},"\u00ff":{"d":"16,22v28,6,58,-3,47,-34r-65,-174r55,0r42,127r41,-127r53,0r-78,209v-10,36,-46,49,-95,41r0,-42xm32,-257r49,0r0,42r-49,0r0,-42xm106,-257r49,0r0,42r-49,0r0,-42","w":186},"\u00a5":{"d":"75,0r0,-50r-57,0r0,-34r57,0v1,-12,-1,-21,-6,-27r-51,0r0,-34r34,0r-55,-112r58,0r48,112r46,-112r59,0r-56,112r34,0r0,34r-51,0v-5,6,-7,15,-6,27r57,0r0,34r-57,0r0,50r-54,0"},"z":{"d":"8,-39r97,-109r-90,0r0,-38r157,0r0,38r-97,109r104,0r0,39r-171,0r0,-39","w":186},"0":{"d":"100,-215v-47,0,-41,64,-41,114v0,30,9,64,41,64v45,0,41,-58,41,-106v0,-35,-7,-72,-41,-72xm100,5v-71,0,-92,-56,-92,-132v0,-75,21,-130,92,-130v71,0,93,56,93,130v0,75,-21,132,-93,132"},"A":{"d":"90,-99r66,0r-33,-95xm95,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0","w":246},"\u00c6":{"d":"119,-257r218,0r0,47r-120,0r0,56r113,0r0,43r-113,0r0,63r123,0r0,48r-177,0r0,-57r-81,0r-26,57r-60,0xm101,-99r62,0r0,-111r-13,0","w":353},"\u00d0":{"d":"196,-125v3,-70,-40,-92,-115,-85r0,56r58,0r0,42r-58,0r0,64r51,0v46,0,62,-32,64,-77xm252,-130v0,79,-38,130,-116,130r-111,0r0,-112r-24,0r0,-42r24,0r0,-103r111,0v76,3,116,47,116,127","w":266},"\u0141":{"d":"25,-77r-29,20r0,-40r29,-20r0,-140r56,0r0,100r76,-53r0,40r-76,53r0,69r126,0r0,48r-182,0r0,-77","w":213},"\u0160":{"d":"177,-143v86,37,41,161,-59,149v-62,-8,-108,-27,-109,-91r54,0v1,33,24,43,57,47v44,5,71,-45,26,-60v-53,-18,-127,-18,-129,-87v-3,-93,157,-100,191,-33v5,10,8,23,8,38r-54,0v5,-47,-87,-55,-90,-10v9,40,67,30,105,47xm140,-280r-47,0r-40,-51r41,0r23,29r23,-29r40,0","w":233},"\u00de":{"d":"175,-140v0,-46,-50,-38,-94,-38r0,77v44,-1,94,7,94,-39xm230,-140v0,76,-66,90,-149,83r0,57r-56,0r0,-257r56,0r0,35v82,-6,150,6,149,82","w":240},"\u00dd":{"d":"91,-100r-94,-157r63,0r61,101r59,-101r63,0r-95,158r0,99r-57,0r0,-100xm128,-280r-36,0r35,-51r57,0","w":240},"\u017d":{"d":"8,-45r138,-165r-127,0r0,-47r202,0r0,45r-137,164r141,0r0,48r-217,0r0,-45xm140,-280r-47,0r-40,-51r41,0r23,29r23,-29r40,0","w":233},"\u00a6":{"d":"59,-164r-38,0r0,-99r38,0r0,99xm21,-93r38,0r0,99r-38,0r0,-99","w":80},"\u00a4":{"d":"144,-126v0,-30,-15,-51,-43,-51v-29,0,-46,21,-46,51v0,29,16,51,45,51v28,0,44,-20,44,-51xm152,-55v-20,24,-83,24,-104,1r-21,21r-20,-21r21,-21v-23,-21,-23,-81,0,-102r-21,-21r21,-21r20,20v21,-20,81,-22,102,0r21,-21r22,22r-20,20v21,23,22,82,-1,104r20,20r-20,20"},"\u00f0":{"d":"145,-168v-2,-16,-25,-35,-36,-45r-40,20r-21,-20r38,-20v-11,-7,-20,-13,-30,-18r33,-25v13,7,25,15,36,24r44,-22r19,21r-41,20v34,33,59,72,59,135v0,62,-34,103,-96,103v-60,0,-93,-35,-96,-94v-4,-73,70,-117,131,-79xm65,-93v0,34,12,60,45,60v33,0,45,-26,45,-60v0,-32,-15,-55,-46,-55v-31,0,-43,24,-44,55","w":219},"\u0142":{"d":"21,-103r-24,19r0,-37r24,-19r0,-117r51,0r0,77r24,-19r0,37r-24,19r0,143r-51,0r0,-103","w":92},"\u2212":{"d":"17,-110r182,0r0,38r-182,0r0,-38","w":216},"\u00d7":{"d":"23,-33r58,-58r-57,-58r27,-27r57,58r58,-58r27,27r-58,58r58,58r-27,27r-58,-58r-58,58","w":216},"\u00bd":{"d":"246,-130v-19,0,-25,15,-26,34r-37,0v0,-38,24,-64,65,-63v33,0,57,16,57,49v0,49,-56,50,-77,81r75,0r0,29r-120,0v0,-59,56,-62,81,-95v11,-14,0,-36,-18,-35xm9,-224v24,-1,43,-7,46,-30r30,0r0,156r-37,0r0,-99r-39,0r0,-27xm204,-260r30,0r-148,268r-31,0","w":320},"\u00bc":{"d":"248,-61v-1,-17,2,-37,-1,-52r-41,52r42,0xm248,-32r-69,0r0,-34r68,-85r36,0r0,90r20,0r0,29r-20,0r0,32r-35,0r0,-32xm9,-224v24,-1,43,-7,46,-30r30,0r0,156r-37,0r0,-99r-39,0r0,-27xm204,-260r30,0r-148,268r-31,0","w":321},"\u00b9":{"d":"28,-224v24,-1,43,-7,46,-30r30,0r0,156r-37,0r0,-99r-39,0r0,-27","w":141},"\u0161":{"d":"165,-96v47,41,-4,107,-67,101v-49,-5,-84,-19,-88,-65r49,0v-3,38,70,43,73,7v-14,-43,-113,-11,-117,-78v-4,-75,125,-75,154,-29v5,8,8,16,9,28r-49,0v0,-23,-22,-24,-44,-24v-26,0,-22,29,-1,34v28,7,61,9,81,26xm120,-209r-47,0r-40,-51r41,0r23,29r23,-29r40,0","w":193},"\u00fe":{"d":"113,-33v32,0,46,-26,45,-60v-1,-32,-13,-60,-45,-60v-32,0,-44,26,-44,60v0,34,13,60,44,60xm127,5v-25,0,-46,-12,-56,-28r0,89r-52,0r0,-323r52,0r0,95v11,-17,29,-29,53,-29v59,1,85,42,85,100v0,55,-26,94,-82,96","w":219},"\u00be":{"d":"255,-113r-42,52r42,0r0,-52xm255,-32r-69,0r0,-34r68,-85r36,0r0,90r20,0r0,29r-20,0r0,32r-35,0r0,-32xm103,-147v-1,-18,-18,-21,-38,-20r0,-25v17,0,33,0,34,-17v1,-13,-11,-19,-22,-19v-16,-1,-24,11,-24,26r-35,0v0,-34,24,-55,59,-55v49,0,80,59,33,75v14,6,29,15,29,35v0,54,-74,65,-108,37v-12,-10,-17,-24,-17,-43r35,0v1,16,9,29,27,29v14,0,27,-9,27,-23xm235,-260r31,0r-149,268r-31,0","w":320},"\u00b3":{"d":"96,-147v0,-19,-17,-21,-37,-20r0,-25v17,0,34,0,34,-17v1,-12,-11,-19,-22,-19v-16,-1,-24,11,-24,26r-35,0v0,-34,24,-55,59,-55v49,0,80,59,33,75v54,23,23,87,-33,87v-37,0,-65,-19,-63,-58r34,0v1,15,10,29,28,29v14,0,26,-8,26,-23","w":141},"\u00b2":{"d":"73,-228v-19,0,-26,15,-26,34r-37,0v0,-38,23,-65,65,-63v33,1,56,15,56,49v-1,50,-56,49,-76,81r75,0r0,29r-120,0v-2,-68,70,-59,85,-108v0,-12,-9,-23,-22,-22","w":141},"\u00fd":{"d":"16,22v28,6,58,-3,47,-34r-65,-174r55,0r42,127r41,-127r53,0r-78,209v-10,36,-46,49,-95,41r0,-42xm102,-209r-36,0r35,-51r57,0","w":186},"\u017e":{"d":"8,-39r97,-109r-90,0r0,-38r157,0r0,38r-97,109r104,0r0,39r-171,0r0,-39xm117,-209r-47,0r-40,-51r41,0r23,29r23,-29r40,0","w":186}}});;
Cufon.registerFont({"w":226,"face":{"font-family":"HelveticaNeue85","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 9 3 0 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-61 -343 395 83.7208","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":113},"\u00a0":{"w":113},"\u00c2":{"d":"93,-257r68,0r96,257r-70,0r-16,-46r-89,0r-16,46r-69,0xm97,-96r59,0r-30,-90xm105,-273r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":253},"\u00c4":{"d":"93,-257r68,0r96,257r-70,0r-16,-46r-89,0r-16,46r-69,0xm97,-96r59,0r-30,-90xm61,-323r54,0r0,45r-54,0r0,-45xm138,-278r0,-45r54,0r0,45r-54,0","w":253},"\u00c0":{"d":"93,-257r68,0r96,257r-70,0r-16,-46r-89,0r-16,46r-69,0xm97,-96r59,0r-30,-90xm160,-273r-43,0r-57,-54r65,0","w":253},"\u00c5":{"d":"93,-257r68,0r96,257r-70,0r-16,-46r-89,0r-16,46r-69,0xm97,-96r59,0r-30,-90xm108,-304v0,10,9,19,18,19v9,0,20,-9,19,-19v1,-12,-9,-19,-19,-19v-10,0,-18,7,-18,19xm165,-304v0,23,-16,38,-39,38v-23,0,-38,-16,-38,-38v0,-23,15,-39,38,-39v23,0,39,15,39,39","w":253},"\u00c3":{"d":"93,-257r68,0r96,257r-70,0r-16,-46r-89,0r-16,46r-69,0xm97,-96r59,0r-30,-90xm102,-323v26,-2,57,32,67,0r26,0v-4,25,-15,45,-43,46v-26,1,-59,-30,-68,3r-26,0v5,-24,16,-48,44,-49","w":253},"B":{"d":"169,-180v1,-36,-46,-23,-79,-25r0,49v32,-2,78,10,79,-24xm247,-80v2,103,-126,77,-224,80r0,-257v87,5,210,-26,213,64v0,26,-16,43,-34,52v26,7,45,30,45,61xm180,-82v0,-41,-51,-29,-90,-31r0,59v37,-3,90,12,90,-28","w":259},"C":{"d":"15,-129v-10,-130,172,-177,234,-78v7,12,12,26,12,42r-67,0v-4,-25,-23,-41,-52,-40v-42,2,-60,32,-60,76v0,44,17,77,60,77v32,0,50,-18,52,-48r67,0v-6,67,-47,105,-118,105v-81,0,-122,-53,-128,-134","w":273},"\u00c7":{"d":"15,-129v-10,-130,172,-177,234,-78v7,12,12,26,12,42r-67,0v-4,-25,-23,-41,-52,-40v-42,2,-60,32,-60,76v0,44,17,77,60,77v32,0,50,-18,52,-48r67,0v-6,67,-47,105,-118,105v-81,0,-122,-53,-128,-134xm101,57v16,3,46,16,48,-6v2,-24,-31,-4,-38,-18r21,-33r20,0v-4,7,-13,16,-14,22v24,-4,45,3,45,27v1,44,-61,39,-89,24","w":273},"D":{"d":"193,-130v0,-59,-41,-73,-103,-69r0,141v64,4,103,-9,103,-72xm260,-130v0,83,-43,129,-126,130r-111,0r0,-257r111,0v80,2,126,46,126,127","w":273},"E":{"d":"23,-257r205,0r0,54r-138,0r0,45r126,0r0,51r-126,0r0,49r141,0r0,58r-208,0r0,-257","w":246},"\u00c9":{"d":"23,-257r205,0r0,54r-138,0r0,45r126,0r0,51r-126,0r0,49r141,0r0,58r-208,0r0,-257xm186,-327r-57,54r-43,0r35,-54r65,0","w":246},"\u00ca":{"d":"23,-257r205,0r0,54r-138,0r0,45r126,0r0,51r-126,0r0,49r141,0r0,58r-208,0r0,-257xm102,-273r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":246},"\u00cb":{"d":"23,-257r205,0r0,54r-138,0r0,45r126,0r0,51r-126,0r0,49r141,0r0,58r-208,0r0,-257xm58,-323r54,0r0,45r-54,0r0,-45xm135,-278r0,-45r54,0r0,45r-54,0","w":246},"\u00c8":{"d":"23,-257r205,0r0,54r-138,0r0,45r126,0r0,51r-126,0r0,49r141,0r0,58r-208,0r0,-257xm157,-273r-43,0r-57,-54r65,0","w":246},"F":{"d":"23,-257r189,0r0,54r-122,0r0,52r106,0r0,52r-106,0r0,99r-67,0r0,-257","w":219},"G":{"d":"80,-129v0,43,17,77,60,77v31,0,54,-14,59,-39r-47,0r0,-50r108,0r0,141r-43,0r-4,-28v-14,20,-38,34,-72,33v-81,-3,-122,-53,-128,-134v-10,-128,168,-178,232,-82v8,12,12,25,13,41r-67,0v-3,-23,-25,-35,-51,-35v-43,0,-60,34,-60,76","w":280},"H":{"d":"22,-257r67,0r0,94r88,0r0,-94r67,0r0,257r-67,0r0,-106r-88,0r0,106r-67,0r0,-257","w":266},"I":{"d":"23,-257r67,0r0,257r-67,0r0,-257","w":113},"\u00cd":{"d":"23,-257r67,0r0,257r-67,0r0,-257xm120,-327r-57,54r-43,0r35,-54r65,0","w":113},"\u00ce":{"d":"23,-257r67,0r0,257r-67,0r0,-257xm36,-273r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":113},"\u00cf":{"d":"23,-257r67,0r0,257r-67,0r0,-257xm-8,-323r54,0r0,45r-54,0r0,-45xm69,-278r0,-45r54,0r0,45r-54,0","w":113},"\u00cc":{"d":"23,-257r67,0r0,257r-67,0r0,-257xm91,-273r-43,0r-57,-54r65,0","w":113},"J":{"d":"99,-52v18,-1,24,-12,24,-34r0,-171r67,0r0,176v0,58,-30,86,-90,86v-67,0,-92,-40,-90,-107r63,0v-1,26,0,51,26,50","w":213},"K":{"d":"23,-257r67,0r0,99r85,-99r83,0r-95,101r107,156r-84,0r-69,-108r-27,29r0,79r-67,0r0,-257","w":266},"L":{"d":"23,-257r67,0r0,199r120,0r0,58r-187,0r0,-257","w":219},"M":{"d":"23,-257r99,0r45,171r44,-171r99,0r0,257r-63,0r-1,-195r-54,195r-51,0r-55,-195r0,195r-63,0r0,-257","w":333},"N":{"d":"22,-257r69,0r90,158r0,-158r63,0r0,257r-69,0r-90,-160r0,160r-63,0r0,-257","w":266},"\u00d1":{"d":"22,-257r69,0r90,158r0,-158r63,0r0,257r-69,0r-90,-160r0,160r-63,0r0,-257xm109,-323v26,-2,57,32,67,0r26,0v-4,25,-15,45,-43,46v-26,1,-59,-30,-68,3r-26,0v5,-24,16,-48,44,-49","w":266},"O":{"d":"140,-205v-43,0,-60,34,-60,76v0,43,17,77,60,77v43,0,60,-33,60,-77v0,-44,-18,-76,-60,-76xm140,5v-83,0,-127,-53,-127,-134v0,-80,45,-133,127,-133v82,0,127,53,127,133v0,81,-44,134,-127,134","w":280},"\u0152":{"d":"193,-111v3,-50,-5,-94,-50,-94v-45,0,-63,33,-63,76v0,44,18,77,63,77v33,0,49,-26,50,-59xm135,-262v26,-1,46,7,59,22r0,-17r187,0r0,54r-125,0r0,45r114,0r0,51r-114,0r0,49r128,0r0,58r-190,0r0,-16v-13,13,-33,21,-59,21v-79,-3,-122,-57,-122,-134v0,-77,44,-130,122,-133","w":399},"\u00d3":{"d":"140,-205v-43,0,-60,34,-60,76v0,43,17,77,60,77v43,0,60,-33,60,-77v0,-44,-18,-76,-60,-76xm140,5v-83,0,-127,-53,-127,-134v0,-80,45,-133,127,-133v82,0,127,53,127,133v0,81,-44,134,-127,134xm203,-327r-57,54r-43,0r35,-54r65,0","w":280},"\u00d4":{"d":"140,-205v-43,0,-60,34,-60,76v0,43,17,77,60,77v43,0,60,-33,60,-77v0,-44,-18,-76,-60,-76xm140,5v-83,0,-127,-53,-127,-134v0,-80,45,-133,127,-133v82,0,127,53,127,133v0,81,-44,134,-127,134xm119,-273r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":280},"\u00d6":{"d":"140,-205v-43,0,-60,34,-60,76v0,43,17,77,60,77v43,0,60,-33,60,-77v0,-44,-18,-76,-60,-76xm140,5v-83,0,-127,-53,-127,-134v0,-80,45,-133,127,-133v82,0,127,53,127,133v0,81,-44,134,-127,134xm75,-323r54,0r0,45r-54,0r0,-45xm152,-278r0,-45r54,0r0,45r-54,0","w":280},"\u00d2":{"d":"140,-205v-43,0,-60,34,-60,76v0,43,17,77,60,77v43,0,60,-33,60,-77v0,-44,-18,-76,-60,-76xm140,5v-83,0,-127,-53,-127,-134v0,-80,45,-133,127,-133v82,0,127,53,127,133v0,81,-44,134,-127,134xm174,-273r-43,0r-57,-54r65,0","w":280},"\u00d8":{"d":"140,-262v35,0,59,9,80,25r29,-32r21,18r-31,34v17,22,29,51,28,88v-2,81,-45,132,-127,134v-35,0,-61,-10,-80,-26r-32,35r-20,-18r33,-36v-17,-22,-29,-52,-28,-89v3,-80,45,-131,127,-133xm102,-67v53,46,125,-25,91,-99xm140,-205v-56,0,-70,66,-53,115r91,-100v-9,-9,-20,-15,-38,-15","w":280},"\u00d5":{"d":"140,-205v-43,0,-60,34,-60,76v0,43,17,77,60,77v43,0,60,-33,60,-77v0,-44,-18,-76,-60,-76xm140,5v-83,0,-127,-53,-127,-134v0,-80,45,-133,127,-133v82,0,127,53,127,133v0,81,-44,134,-127,134xm116,-323v26,-2,57,32,67,0r26,0v-4,25,-15,45,-43,46v-26,1,-59,-30,-68,3r-26,0v5,-24,16,-48,44,-49","w":280},"P":{"d":"171,-170v0,-41,-43,-32,-81,-33r0,65v37,-1,81,8,81,-32xm238,-174v0,82,-64,93,-148,88r0,86r-67,0r0,-257v98,1,215,-20,215,83","w":246},"Q":{"d":"80,-129v0,47,23,84,73,75r-20,-19r30,-32r25,25v24,-45,12,-127,-48,-125v-43,1,-60,34,-60,76xm267,-129v0,39,-11,72,-32,94r31,30r-31,32r-35,-35v-94,40,-193,-18,-187,-121v3,-80,45,-133,127,-133v82,0,127,53,127,133","w":280},"R":{"d":"177,-176v0,-38,-51,-25,-87,-27r0,58v38,-2,87,11,87,-31xm186,0v-15,-31,3,-94,-45,-94r-51,0r0,94r-67,0r0,-257v94,4,221,-24,221,72v0,30,-15,57,-40,65v47,10,29,83,48,120r-66,0","w":259},"S":{"d":"185,-145v90,45,33,162,-65,150v-64,-8,-111,-25,-112,-91r67,0v1,30,20,37,49,40v37,4,58,-38,18,-50v-53,-16,-125,-19,-126,-88v-3,-96,165,-99,199,-33v6,10,9,23,9,37r-67,0v3,-37,-70,-43,-74,-9v12,35,69,27,102,44","w":240},"T":{"d":"227,-199r-77,0r0,199r-67,0r0,-199r-77,0r0,-58r221,0r0,58","w":233},"U":{"d":"133,-52v33,0,45,-16,45,-50r0,-155r67,0r0,151v-1,75,-34,111,-112,111v-78,0,-111,-36,-112,-111r0,-151r67,0r0,155v0,34,12,50,45,50","w":266},"\u00da":{"d":"133,-52v33,0,45,-16,45,-50r0,-155r67,0r0,151v-1,75,-34,111,-112,111v-78,0,-111,-36,-112,-111r0,-151r67,0r0,155v0,34,12,50,45,50xm196,-327r-57,54r-43,0r35,-54r65,0","w":266},"\u00db":{"d":"133,-52v33,0,45,-16,45,-50r0,-155r67,0r0,151v-1,75,-34,111,-112,111v-78,0,-111,-36,-112,-111r0,-151r67,0r0,155v0,34,12,50,45,50xm112,-273r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":266},"\u00dc":{"d":"133,-52v33,0,45,-16,45,-50r0,-155r67,0r0,151v-1,75,-34,111,-112,111v-78,0,-111,-36,-112,-111r0,-151r67,0r0,155v0,34,12,50,45,50xm68,-323r54,0r0,45r-54,0r0,-45xm145,-278r0,-45r54,0r0,45r-54,0","w":266},"\u00d9":{"d":"133,-52v33,0,45,-16,45,-50r0,-155r67,0r0,151v-1,75,-34,111,-112,111v-78,0,-111,-36,-112,-111r0,-151r67,0r0,155v0,34,12,50,45,50xm167,-273r-43,0r-57,-54r65,0","w":266},"V":{"d":"154,0r-77,0r-81,-257r70,0r51,191r50,-191r70,0","w":233},"W":{"d":"276,0r-67,0r-36,-177r-35,177r-69,0r-69,-257r67,0r37,188r38,-188r63,0r38,188r37,-188r67,0","w":346},"X":{"d":"89,-135r-84,-122r79,0r43,80r45,-80r77,0r-83,122r90,135r-81,0r-48,-86r-53,86r-77,0","w":253},"Y":{"d":"154,-96r0,96r-67,0r0,-96r-94,-161r76,0r51,104r51,-104r76,0","w":240},"\u0178":{"d":"154,-96r0,96r-67,0r0,-96r-94,-161r76,0r51,104r51,-104r76,0xm55,-323r54,0r0,45r-54,0r0,-45xm132,-278r0,-45r54,0r0,45r-54,0","w":240},"Z":{"d":"9,-55r131,-144r-123,0r0,-58r210,0r0,52r-135,147r139,0r0,58r-222,0r0,-55","w":240},"a":{"d":"131,-121v12,-15,-6,-32,-25,-32v-18,0,-28,8,-31,24r-57,0v3,-47,40,-63,89,-63v50,-1,86,13,87,62v1,44,-6,96,7,130r-62,0v-2,-6,-2,-12,-3,-18v-32,36,-126,33,-126,-33v0,-65,75,-52,121,-70xm135,-87v-20,11,-61,3,-63,33v-2,29,45,26,55,9v5,-9,9,-23,8,-42","w":213},"\u00e1":{"d":"131,-121v12,-15,-6,-32,-25,-32v-18,0,-28,8,-31,24r-57,0v3,-47,40,-63,89,-63v50,-1,86,13,87,62v1,44,-6,96,7,130r-62,0v-2,-6,-2,-12,-3,-18v-32,36,-126,33,-126,-33v0,-65,75,-52,121,-70xm135,-87v-20,11,-61,3,-63,33v-2,29,45,26,55,9v5,-9,9,-23,8,-42xm170,-261r-57,54r-43,0r35,-54r65,0","w":213},"\u00e2":{"d":"131,-121v12,-15,-6,-32,-25,-32v-18,0,-28,8,-31,24r-57,0v3,-47,40,-63,89,-63v50,-1,86,13,87,62v1,44,-6,96,7,130r-62,0v-2,-6,-2,-12,-3,-18v-32,36,-126,33,-126,-33v0,-65,75,-52,121,-70xm135,-87v-20,11,-61,3,-63,33v-2,29,45,26,55,9v5,-9,9,-23,8,-42xm86,-207r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":213},"\u00b4":{"d":"116,-261r-57,54r-43,0r35,-54r65,0","w":106},"\u00e4":{"d":"131,-121v12,-15,-6,-32,-25,-32v-18,0,-28,8,-31,24r-57,0v3,-47,40,-63,89,-63v50,-1,86,13,87,62v1,44,-6,96,7,130r-62,0v-2,-6,-2,-12,-3,-18v-32,36,-126,33,-126,-33v0,-65,75,-52,121,-70xm135,-87v-20,11,-61,3,-63,33v-2,29,45,26,55,9v5,-9,9,-23,8,-42xm42,-257r54,0r0,45r-54,0r0,-45xm119,-212r0,-45r54,0r0,45r-54,0","w":213},"\u00e6":{"d":"325,-57v-10,64,-122,83,-161,34v-39,45,-186,40,-149,-53v16,-43,91,-24,125,-51v3,-23,-14,-26,-34,-26v-18,0,-28,8,-31,24r-57,0v-3,-72,118,-80,157,-40v29,-37,109,-23,131,11v13,20,25,47,22,80r-135,0v-5,43,61,57,74,21r58,0xm72,-53v0,15,14,21,29,21v32,-1,41,-22,39,-55v-19,14,-68,1,-68,34xm266,-113v5,-42,-58,-51,-69,-14v-2,5,-4,9,-4,14r73,0","w":339},"\u00e0":{"d":"131,-121v12,-15,-6,-32,-25,-32v-18,0,-28,8,-31,24r-57,0v3,-47,40,-63,89,-63v50,-1,86,13,87,62v1,44,-6,96,7,130r-62,0v-2,-6,-2,-12,-3,-18v-32,36,-126,33,-126,-33v0,-65,75,-52,121,-70xm135,-87v-20,11,-61,3,-63,33v-2,29,45,26,55,9v5,-9,9,-23,8,-42xm141,-207r-43,0r-57,-54r65,0","w":213},"&":{"d":"122,-219v-31,1,-18,40,-2,51v22,-5,38,-50,2,-51xm239,-125v-2,25,-14,47,-29,62r54,63r-74,0r-18,-22v-46,47,-164,31,-160,-51v2,-41,29,-60,59,-75v-44,-36,-17,-119,50,-114v43,3,73,24,73,66v0,33,-21,52,-44,64r27,32v5,-8,8,-16,9,-25r53,0xm71,-74v0,37,53,35,68,11r-38,-45v-12,8,-30,16,-30,34","w":259},"\u00e5":{"d":"131,-121v12,-15,-6,-32,-25,-32v-18,0,-28,8,-31,24r-57,0v3,-47,40,-63,89,-63v50,-1,86,13,87,62v1,44,-6,96,7,130r-62,0v-2,-6,-2,-12,-3,-18v-32,36,-126,33,-126,-33v0,-65,75,-52,121,-70xm135,-87v-20,11,-61,3,-63,33v-2,29,45,26,55,9v5,-9,9,-23,8,-42xm89,-240v0,10,9,19,18,19v9,0,20,-9,19,-19v1,-12,-9,-19,-19,-19v-10,0,-18,7,-18,19xm146,-240v0,23,-16,38,-39,38v-23,0,-38,-16,-38,-38v0,-23,15,-39,38,-39v23,0,39,15,39,39","w":213},"^":{"d":"17,-120r58,-131r66,0r58,131r-58,0r-33,-85r-34,85r-57,0","w":216},"~":{"d":"70,-129v40,2,86,49,108,-2v17,37,11,78,-32,78v-38,0,-86,-51,-108,2r-13,-47v8,-16,20,-32,45,-31","w":216},"*":{"d":"135,-143r-29,22r-27,-39r-26,39r-29,-21r29,-38r-44,-13r11,-34r42,16r0,-46r36,0r0,46r41,-16r11,34r-43,13","w":159},"@":{"d":"51,-128v-6,92,109,125,172,79r35,0v-23,32,-55,54,-106,54v-84,0,-139,-51,-139,-133v0,-83,55,-134,137,-134v71,0,125,37,125,108v0,62,-33,97,-89,104v-14,1,-20,-7,-23,-17v-30,39,-94,4,-94,-47v0,-64,75,-111,117,-62r3,-17r34,0r-18,98v0,4,2,7,5,8v24,-4,33,-26,33,-55v-1,-58,-35,-87,-94,-87v-63,0,-94,39,-98,101xm112,-120v0,16,10,29,27,29v21,0,38,-17,37,-38v0,-18,-11,-29,-29,-29v-20,0,-35,15,-35,38","w":288},"\u00e3":{"d":"131,-121v12,-15,-6,-32,-25,-32v-18,0,-28,8,-31,24r-57,0v3,-47,40,-63,89,-63v50,-1,86,13,87,62v1,44,-6,96,7,130r-62,0v-2,-6,-2,-12,-3,-18v-32,36,-126,33,-126,-33v0,-65,75,-52,121,-70xm135,-87v-20,11,-61,3,-63,33v-2,29,45,26,55,9v5,-9,9,-23,8,-42xm83,-257v26,-2,57,32,67,0r26,0v-4,25,-15,45,-43,46v-26,1,-59,-30,-68,3r-26,0v5,-24,16,-48,44,-49","w":213},"b":{"d":"117,-41v48,0,51,-105,0,-104v-27,1,-37,20,-37,50v1,30,7,54,37,54xm215,-98v0,58,-24,103,-84,103v-23,1,-38,-11,-52,-27r0,22r-58,0r0,-257r61,0r0,91v13,-17,31,-26,54,-26v53,0,79,41,79,94"},"\\":{"d":"150,5r-56,0r-97,-267r56,0","w":146},"|":{"d":"14,-262r52,0r0,267r-52,0r0,-267","w":79},"{":{"d":"37,-143v1,-55,-11,-124,49,-119r42,0r0,43v-72,-15,5,120,-75,118v53,-5,38,58,42,105v0,15,16,16,33,15r0,44v-52,3,-91,-2,-91,-54v0,-38,13,-90,-32,-87r0,-43v15,-1,32,-5,32,-22","w":133},"}":{"d":"96,-53v0,55,8,118,-48,116r-43,0r0,-44v73,16,-6,-125,75,-121v-22,-2,-41,-10,-41,-35v0,-34,19,-91,-34,-82r0,-43v50,-3,91,0,91,51v0,38,-15,94,32,90r0,43v-17,1,-32,7,-32,25","w":133},"[":{"d":"25,-262r106,0r0,51r-49,0r0,222r49,0r0,52r-106,0r0,-325","w":133},"]":{"d":"108,63r-105,0r0,-52r48,0r0,-222r-48,0r0,-51r105,0r0,325","w":133},"\u02d8":{"d":"116,-262v4,63,-100,72,-121,23v-3,-7,-4,-15,-4,-23r25,0v3,33,71,34,74,0r26,0","w":106},"\u2022":{"d":"90,-64v-39,0,-64,-26,-64,-65v0,-38,26,-64,64,-64v39,0,64,25,64,64v0,39,-25,65,-64,65","w":180},"c":{"d":"12,-90v-12,-117,177,-141,190,-28r-60,0v0,-18,-13,-27,-30,-27v-31,0,-39,24,-39,55v0,52,67,67,71,17r59,0v-6,49,-39,78,-94,78v-60,0,-91,-36,-97,-95","w":213},"\u02c7":{"d":"26,-207r-40,-54r46,0r21,29r22,-29r46,0r-40,54r-55,0","w":106},"\u00e7":{"d":"12,-90v-12,-117,177,-141,190,-28r-60,0v0,-18,-13,-27,-30,-27v-31,0,-39,24,-39,55v0,52,67,67,71,17r59,0v-6,49,-39,78,-94,78v-60,0,-91,-36,-97,-95xm71,57v16,3,46,16,48,-6v2,-24,-31,-4,-38,-18r21,-33r20,0v-4,7,-13,16,-14,22v24,-4,45,3,45,27v1,44,-61,39,-89,24","w":213},"\u00b8":{"d":"17,57v16,3,46,16,48,-6v2,-24,-31,-4,-38,-18r21,-33r20,0v-4,7,-13,16,-14,22v24,-4,45,3,45,27v1,44,-61,39,-89,24","w":106},"\u00a2":{"d":"210,-73v-7,46,-37,74,-86,78r0,33r-16,0r0,-33v-54,-6,-90,-36,-90,-95v0,-61,34,-96,90,-102r0,-28r16,0r0,28v47,4,79,27,84,74r-60,0v1,-14,-12,-25,-24,-26r0,102v16,-3,23,-15,26,-31r60,0xm108,-144v-41,6,-37,97,0,102r0,-102"},"\u02c6":{"d":"32,-207r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":106},":":{"d":"23,-67r67,0r0,67r-67,0r0,-67xm90,-120r-67,0r0,-67r67,0r0,67","w":113},",":{"d":"23,-67r67,0v5,68,-2,127,-67,130r0,-29v20,-6,27,-13,30,-34r-30,0r0,-67","w":113},"\u00a9":{"d":"149,-87v16,-1,31,-6,31,-22r33,0v-5,34,-26,56,-64,56v-48,0,-70,-30,-74,-77v-8,-85,126,-107,137,-22r-32,0v-14,-38,-63,-21,-63,22v0,22,11,43,32,43xm50,-129v0,60,35,100,94,100v59,0,94,-41,94,-100v0,-59,-35,-99,-94,-99v-58,0,-94,39,-94,99xm283,-129v0,84,-56,134,-139,134v-83,0,-139,-50,-139,-134v0,-83,56,-133,139,-133v83,0,139,50,139,133","w":288},"d":{"d":"12,-98v-6,-79,84,-125,132,-69r0,-90r62,0r0,257r-59,0r0,-22v-12,18,-30,27,-52,27v-59,-1,-79,-44,-83,-103xm147,-94v0,-28,-9,-50,-37,-51v-28,0,-37,23,-37,50v0,28,9,54,37,54v28,0,37,-25,37,-53"},"\u2020":{"d":"19,-135r0,-52r65,0r0,-70r59,0r0,70r65,0r0,52r-65,0r0,198r-59,0r0,-198r-65,0"},"\u2021":{"d":"84,63r0,-70r-66,0r0,-52r66,0r0,-76r-66,0r0,-52r66,0r0,-70r59,0r0,70r65,0r0,52r-65,0r0,76r65,0r0,52r-65,0r0,70r-59,0"},"\u00b0":{"d":"43,-197v0,18,11,32,29,32v18,0,29,-14,29,-32v0,-17,-12,-32,-29,-32v-17,0,-29,15,-29,32xm72,-139v-36,0,-58,-24,-58,-58v0,-34,23,-57,58,-57v35,0,58,23,58,57v0,34,-23,58,-58,58","w":144},"\u00a8":{"d":"-12,-257r54,0r0,45r-54,0r0,-45xm65,-212r0,-45r54,0r0,45r-54,0","w":106},"\u00f7":{"d":"108,19v-21,0,-35,-15,-36,-36v-1,-19,17,-35,36,-35v19,0,37,16,36,35v-1,21,-15,36,-36,36xm108,-130v-21,0,-35,-15,-36,-36v-1,-19,17,-35,36,-35v19,0,37,16,36,35v-1,21,-15,36,-36,36xm17,-65r0,-52r182,0r0,52r-182,0","w":216},"$":{"d":"9,-183v0,-55,44,-76,98,-79r0,-33r17,0r0,33v54,4,91,29,93,84r-67,0v0,-19,-11,-27,-26,-31r0,49v48,13,101,22,101,81v0,59,-43,82,-101,84r0,33r-17,0r0,-33v-60,-3,-105,-26,-105,-90r67,0v1,25,15,36,38,39r0,-57v-47,-12,-98,-23,-98,-80xm107,-211v-21,-2,-44,24,-22,37v6,3,13,6,22,9r0,-46xm124,-46v25,2,47,-25,25,-42v-6,-4,-15,-7,-25,-10r0,52"},"\u02d9":{"d":"26,-212r0,-45r54,0r0,45r-54,0","w":106},"\u0131":{"d":"23,0r0,-187r61,0r0,187r-61,0","w":106},"e":{"d":"12,-94v-5,-93,122,-128,175,-65v15,19,25,48,23,81r-137,0v-5,44,62,57,76,21r58,0v-12,39,-42,62,-93,62v-64,-1,-98,-35,-102,-99xm149,-113v-1,-53,-73,-46,-76,0r76,0","w":219},"\u00e9":{"d":"12,-94v-5,-93,122,-128,175,-65v15,19,25,48,23,81r-137,0v-5,44,62,57,76,21r58,0v-12,39,-42,62,-93,62v-64,-1,-98,-35,-102,-99xm149,-113v-1,-53,-73,-46,-76,0r76,0xm173,-261r-57,54r-43,0r35,-54r65,0","w":219},"\u00ea":{"d":"12,-94v-5,-93,122,-128,175,-65v15,19,25,48,23,81r-137,0v-5,44,62,57,76,21r58,0v-12,39,-42,62,-93,62v-64,-1,-98,-35,-102,-99xm149,-113v-1,-53,-73,-46,-76,0r76,0xm89,-207r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":219},"\u00eb":{"d":"12,-94v-5,-93,122,-128,175,-65v15,19,25,48,23,81r-137,0v-5,44,62,57,76,21r58,0v-12,39,-42,62,-93,62v-64,-1,-98,-35,-102,-99xm149,-113v-1,-53,-73,-46,-76,0r76,0xm45,-257r54,0r0,45r-54,0r0,-45xm122,-212r0,-45r54,0r0,45r-54,0","w":219},"\u00e8":{"d":"12,-94v-5,-93,122,-128,175,-65v15,19,25,48,23,81r-137,0v-5,44,62,57,76,21r58,0v-12,39,-42,62,-93,62v-64,-1,-98,-35,-102,-99xm149,-113v-1,-53,-73,-46,-76,0r76,0xm144,-207r-43,0r-57,-54r65,0","w":219},"8":{"d":"152,-180v0,-21,-17,-29,-38,-29v-22,0,-38,8,-38,29v0,22,16,29,38,29v21,0,38,-8,38,-29xm114,3v-57,0,-104,-20,-104,-77v0,-33,22,-52,49,-60v-23,-5,-37,-25,-38,-51v0,-93,186,-93,186,0v-1,28,-17,44,-37,52v26,6,48,26,47,59v-2,56,-47,77,-103,77xm156,-77v0,-23,-19,-36,-42,-36v-25,0,-41,11,-42,36v0,25,18,35,42,35v24,0,42,-11,42,-35"},"\u2026":{"d":"266,0r0,-67r67,0r0,67r-67,0xm147,0r0,-67r66,0r0,67r-66,0xm27,0r0,-67r67,0r0,67r-67,0","w":360},"\u2014":{"d":"0,-124r360,0r0,52r-360,0r0,-52","w":360},"\u2013":{"d":"0,-124r180,0r0,52r-180,0r0,-52","w":180},"=":{"d":"199,-21r-182,0r0,-51r182,0r0,51xm199,-110r-182,0r0,-52r182,0r0,52","w":216},"!":{"d":"20,-67r67,0r0,67r-67,0r0,-67xm85,-257v3,66,-9,117,-17,172r-29,0v-8,-55,-20,-106,-17,-172r63,0","w":106},"\u00a1":{"d":"87,-130r-67,0r0,-67r67,0r0,67xm22,60v-3,-66,9,-117,17,-172r29,0v8,55,20,106,17,172r-63,0","w":106},"f":{"d":"134,-213v-23,-3,-44,-3,-39,26r37,0r0,40r-37,0r0,147r-61,0r0,-147r-30,0r0,-40r30,0v-5,-62,39,-77,100,-69r0,43","w":133},"5":{"d":"212,-90v8,102,-152,123,-194,50v-6,-10,-9,-23,-10,-38r61,0v6,48,86,38,82,-9v6,-44,-62,-54,-79,-22r-56,0r25,-142r158,0r0,52r-111,0v-2,15,-9,33,-9,46v11,-11,27,-18,49,-18v54,0,80,29,84,81"},"\u0192":{"d":"91,-152v7,-68,28,-125,118,-109r-8,45v-44,-12,-39,34,-47,64r35,0r-8,40r-34,0v-21,79,-2,195,-128,174r7,-45v23,4,34,-2,38,-22r20,-107r-35,0r8,-40r34,0"},"4":{"d":"123,-108v-1,-26,2,-57,-1,-81r-63,81r64,0xm215,-108r0,52r-33,0r0,56r-61,0r0,-56r-110,0r0,-57r112,-138r59,0r0,143r33,0"},"\u2044":{"d":"-61,10r148,-271r36,0r-148,271r-36,0","w":60},"\u2215":{"d":"-61,10r148,-271r36,0r-148,271r-36,0","w":60},"g":{"d":"10,-101v-6,-78,91,-123,133,-62r0,-24r58,0r0,164v9,83,-84,107,-153,77v-17,-7,-28,-26,-32,-48r61,0v3,16,14,20,33,20v31,0,35,-31,31,-61v-10,15,-26,27,-49,27v-57,-1,-78,-37,-82,-93xm106,-55v26,0,37,-18,37,-43v0,-26,-9,-47,-36,-47v-26,0,-36,20,-36,46v0,25,9,44,35,44","w":219},"\u00df":{"d":"113,-216v-26,0,-31,18,-31,46r0,170r-61,0r0,-181v2,-54,33,-81,90,-81v50,0,86,21,88,70v1,25,-15,41,-32,50v78,23,48,153,-37,144r-30,-2r0,-46v31,5,52,-9,52,-38v1,-31,-21,-39,-52,-38r0,-36v23,0,41,-5,41,-29v0,-18,-11,-29,-28,-29"},"`":{"d":"87,-207r-43,0r-57,-54r65,0","w":106},">":{"d":"17,-53r110,-38r-110,-39r0,-55r182,68r0,51r-182,69r0,-56","w":216},"\u00ab":{"d":"86,-125r58,-46r0,50r-31,24r31,24r0,49r-58,-46r0,-55xm16,-125r57,-46r0,50r-31,24r31,24r0,49r-57,-46r0,-55","w":159},"\u00bb":{"d":"73,-70r-57,46r0,-49r31,-25r-31,-23r0,-50r57,46r0,55xm144,-70r-58,46r0,-49r31,-25r-31,-23r0,-50r58,46r0,55","w":159},"\u2039":{"d":"15,-125r57,-46r0,50r-31,24r31,24r0,49r-57,-46r0,-55","w":86},"\u203a":{"d":"72,-70r-57,46r0,-49r31,-25r-31,-23r0,-50r57,46r0,55","w":86},"h":{"d":"115,-142v-54,0,-27,90,-33,142r-61,0r0,-257r61,0r0,96v10,-18,29,-30,57,-31v94,-5,63,109,68,192r-62,0r0,-109v1,-22,-9,-33,-30,-33"},"\u02dd":{"d":"127,-261r-43,54r-31,0r29,-54r45,0xm68,-261r-43,54r-31,0r29,-54r45,0","w":106},"-":{"d":"17,-72r0,-52r112,0r0,52r-112,0","w":146},"\u00ad":{"d":"17,-72r0,-52r112,0r0,52r-112,0","w":146},"i":{"d":"84,-210r-61,0r0,-47r61,0r0,47xm23,-187r61,0r0,187r-61,0r0,-187","w":106},"\u00ed":{"d":"23,0r0,-187r61,0r0,187r-61,0xm116,-261r-57,54r-43,0r35,-54r65,0","w":106},"\u00ee":{"d":"23,0r0,-187r61,0r0,187r-61,0xm32,-207r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":106},"\u00ef":{"d":"23,0r0,-187r61,0r0,187r-61,0xm-12,-257r54,0r0,45r-54,0r0,-45xm65,-212r0,-45r54,0r0,45r-54,0","w":106},"\u00ec":{"d":"23,0r0,-187r61,0r0,187r-61,0xm87,-207r-43,0r-57,-54r65,0","w":106},"j":{"d":"84,-210r-61,0r0,-47r61,0r0,47xm-9,13v17,0,33,1,32,-17r0,-183r61,0r0,187v3,56,-36,67,-93,63r0,-50","w":106},"k":{"d":"21,-257r61,0r0,132r56,-62r70,0r-68,71r77,116r-74,0r-45,-75r-16,15r0,60r-61,0r0,-257","w":213},"l":{"d":"23,-257r61,0r0,257r-61,0r0,-257","w":106},"<":{"d":"17,-66r0,-51r182,-68r0,55r-110,39r110,38r0,56","w":216},"\u00ac":{"d":"147,-110r-130,0r0,-52r182,0r0,119r-52,0r0,-67","w":216},"m":{"d":"80,-161v16,-35,93,-45,109,-1v13,-18,28,-30,58,-30v90,0,61,110,66,192r-61,0r0,-110v1,-18,-10,-32,-26,-32v-26,1,-29,23,-29,51r0,91r-61,0r0,-106v0,-21,-4,-36,-23,-36v-53,0,-24,92,-31,142r-61,0r0,-187r59,0r0,26","w":333},"\u00af":{"d":"-5,-217r0,-31r117,0r0,31r-117,0","w":106},"\u02c9":{"d":"-5,-217r0,-31r117,0r0,31r-117,0","w":106},"\u00b5":{"d":"112,-45v53,-3,27,-90,33,-142r61,0r0,187r-59,0v-1,-8,2,-20,-1,-26v-10,19,-38,36,-65,29r0,60r-61,0r0,-250r61,0r0,109v0,23,9,34,31,33"},"\u03bc":{"d":"112,-45v53,-3,27,-90,33,-142r61,0r0,187r-59,0v-1,-8,2,-20,-1,-26v-10,19,-38,36,-65,29r0,60r-61,0r0,-250r61,0r0,109v0,23,9,34,31,33"},"n":{"d":"115,-142v-54,0,-27,90,-33,142r-61,0r0,-187r59,0v1,8,-2,20,1,26v11,-18,30,-30,58,-31v94,-5,63,109,68,192r-62,0r0,-109v1,-22,-9,-33,-30,-33"},"9":{"d":"214,-131v0,78,-31,134,-110,134v-49,0,-80,-24,-87,-68r57,0v4,30,58,28,69,4v5,-11,13,-30,10,-44v-9,18,-33,27,-56,27v-52,0,-84,-34,-84,-86v0,-56,39,-90,96,-90v73,0,105,50,105,123xm111,-204v-37,0,-51,44,-30,68v22,26,75,9,72,-29v-1,-22,-17,-39,-42,-39"},"\u00f1":{"d":"115,-142v-54,0,-27,90,-33,142r-61,0r0,-187r59,0v1,8,-2,20,1,26v11,-18,30,-30,58,-31v94,-5,63,109,68,192r-62,0r0,-109v1,-22,-9,-33,-30,-33xm89,-257v26,-2,57,32,67,0r26,0v-4,25,-15,45,-43,46v-26,1,-59,-30,-68,3r-26,0v5,-24,16,-48,44,-49"},"#":{"d":"104,-146r-6,40r29,0r6,-40r-29,0xm191,-68r-28,0r-9,68r-41,0r9,-68r-29,0r-9,68r-42,0r9,-68r-26,0r0,-38r32,0r5,-40r-26,0r0,-38r32,0r9,-67r41,0r-9,67r29,0r10,-67r41,0r-9,67r22,0r0,38r-28,0r-5,40r22,0r0,38"},"o":{"d":"110,5v-61,0,-98,-38,-98,-98v0,-60,37,-99,98,-99v61,0,98,39,98,99v0,60,-37,98,-98,98xm110,-145v-29,0,-37,25,-37,52v0,27,9,52,37,52v28,0,37,-25,37,-52v0,-27,-8,-52,-37,-52","w":219},"\u00f3":{"d":"110,5v-61,0,-98,-38,-98,-98v0,-60,37,-99,98,-99v61,0,98,39,98,99v0,60,-37,98,-98,98xm110,-145v-29,0,-37,25,-37,52v0,27,9,52,37,52v28,0,37,-25,37,-52v0,-27,-8,-52,-37,-52xm173,-261r-57,54r-43,0r35,-54r65,0","w":219},"\u00f4":{"d":"110,5v-61,0,-98,-38,-98,-98v0,-60,37,-99,98,-99v61,0,98,39,98,99v0,60,-37,98,-98,98xm110,-145v-29,0,-37,25,-37,52v0,27,9,52,37,52v28,0,37,-25,37,-52v0,-27,-8,-52,-37,-52xm89,-207r-46,0r40,-54r55,0r40,54r-46,0r-22,-29","w":219},"\u00f6":{"d":"110,5v-61,0,-98,-38,-98,-98v0,-60,37,-99,98,-99v61,0,98,39,98,99v0,60,-37,98,-98,98xm110,-145v-29,0,-37,25,-37,52v0,27,9,52,37,52v28,0,37,-25,37,-52v0,-27,-8,-52,-37,-52xm45,-257r54,0r0,45r-54,0r0,-45xm122,-212r0,-45r54,0r0,45r-54,0","w":219},"\u0153":{"d":"176,-165v27,-39,114,-31,138,6v13,20,24,47,23,81r-137,0v-5,41,64,59,76,21r59,0v-10,63,-121,84,-162,35v-14,18,-38,27,-67,27v-59,0,-94,-35,-94,-96v1,-64,35,-99,98,-101v31,0,53,9,66,27xm112,-145v-29,0,-38,23,-39,51v-1,31,9,52,39,53v48,0,49,-104,0,-104xm275,-113v2,-34,-42,-50,-64,-27v-7,7,-11,16,-12,27r76,0","w":346},"\u02db":{"d":"10,53v2,-29,21,-38,40,-54r27,0v-15,17,-33,24,-33,46v0,24,27,11,33,0r16,5v-11,18,-24,33,-51,32v-19,-1,-32,-9,-32,-29","w":106},"\u00f2":{"d":"110,5v-61,0,-98,-38,-98,-98v0,-60,37,-99,98,-99v61,0,98,39,98,99v0,60,-37,98,-98,98xm110,-145v-29,0,-37,25,-37,52v0,27,9,52,37,52v28,0,37,-25,37,-52v0,-27,-8,-52,-37,-52xm144,-207r-43,0r-57,-54r65,0","w":219},"1":{"d":"38,-199v41,0,70,-15,74,-52r51,0r0,251r-65,0r0,-154r-60,0r0,-45"},"\u00aa":{"d":"84,-208v8,-10,-6,-17,-17,-17v-11,0,-17,4,-19,12r-43,0v0,-36,28,-40,63,-41v36,-1,63,6,63,41v0,29,-3,60,5,83r-47,0v-1,-3,-2,-7,-2,-11v-22,20,-87,22,-87,-20v0,-46,50,-36,84,-47xm50,-177v-11,6,-3,21,12,21v19,0,25,-11,24,-31v-12,3,-27,4,-36,10","w":135},"\u00ba":{"d":"140,-190v0,40,-29,63,-71,63v-41,0,-70,-25,-70,-63v0,-39,27,-64,70,-64v43,0,71,24,71,64xm44,-190v2,15,7,29,25,29v18,0,26,-12,26,-29v0,-18,-8,-30,-26,-30v-18,0,-23,15,-25,30","w":139},"\u00f8":{"d":"208,-93v0,82,-91,123,-155,81r-21,24r-15,-11r21,-25v-15,-16,-26,-38,-26,-69v0,-82,89,-125,155,-82r19,-22r16,14r-19,22v16,15,25,39,25,68xm87,-51v37,31,73,-18,57,-66xm134,-136v-36,-29,-75,18,-58,67","w":219},"\u00f5":{"d":"110,5v-61,0,-98,-38,-98,-98v0,-60,37,-99,98,-99v61,0,98,39,98,99v0,60,-37,98,-98,98xm110,-145v-29,0,-37,25,-37,52v0,27,9,52,37,52v28,0,37,-25,37,-52v0,-27,-8,-52,-37,-52xm86,-257v26,-2,57,32,67,0r26,0v-4,25,-15,45,-43,46v-26,1,-59,-30,-68,3r-26,0v5,-24,16,-48,44,-49","w":219},"p":{"d":"215,-89v6,77,-84,125,-133,69r0,83r-61,0r0,-250r58,0v1,7,-2,17,1,22v12,-18,29,-27,51,-27v60,0,80,45,84,103xm117,-41v48,0,51,-105,0,-104v-27,1,-37,20,-37,50v1,30,7,54,37,54"},"\u00b6":{"d":"-6,-193v-1,-89,118,-59,201,-64r0,318r-43,0r0,-286r-35,0r0,286r-43,0r0,-192v-46,0,-80,-19,-80,-62","w":223},"(":{"d":"13,-99v0,-70,22,-115,45,-163r52,0v-52,84,-52,240,0,325r-52,0v-23,-48,-45,-93,-45,-162","w":106},")":{"d":"-3,63v50,-86,51,-240,0,-325r52,0v24,47,45,94,45,163v0,68,-21,115,-45,162r-52,0","w":106},"%":{"d":"279,-106v-23,0,-20,28,-20,52v0,15,5,28,20,28v23,-1,19,-29,19,-52v0,-14,-4,-28,-19,-28xm279,3v-43,-1,-63,-25,-62,-69v1,-42,20,-69,62,-69v42,0,61,26,61,69v0,43,-18,69,-61,69xm89,-116v-43,0,-62,-27,-62,-69v0,-42,20,-69,62,-69v42,0,61,26,61,69v0,43,-18,69,-61,69xm94,10r145,-271r36,0r-146,271r-35,0xm89,-225v-23,1,-20,29,-20,52v0,13,4,28,20,28v22,-1,19,-29,19,-52v0,-14,-4,-28,-19,-28","w":366},".":{"d":"23,-67r67,0r0,67r-67,0r0,-67","w":113},"\u00b7":{"d":"57,-69v-20,0,-34,-14,-34,-34v0,-20,13,-33,34,-33v21,1,33,13,33,33v0,21,-13,34,-33,34","w":113},"\u2219":{"d":"57,-69v-20,0,-34,-14,-34,-34v0,-20,13,-33,34,-33v21,1,33,13,33,33v0,21,-13,34,-33,34","w":113},"\u2030":{"d":"78,-229v-24,3,-25,69,-1,74v26,-3,25,-70,1,-74xm342,-94v-17,3,-16,29,-16,48v0,13,3,26,16,26v26,0,25,-70,0,-74xm342,5v-38,0,-52,-25,-52,-62v0,-36,15,-62,52,-62v39,0,53,25,53,62v0,37,-15,62,-53,62xm217,-94v-23,4,-26,70,0,74v24,-4,25,-69,0,-74xm217,5v-39,0,-52,-25,-52,-62v0,-36,15,-62,52,-62v37,0,53,24,52,62v-1,37,-14,62,-52,62xm77,-130v-38,0,-51,-24,-51,-62v0,-37,15,-62,52,-62v38,0,52,25,52,62v0,37,-14,62,-53,62xm58,10r145,-271r36,0r-146,271r-35,0","w":420},"+":{"d":"82,-182r52,0r0,65r65,0r0,52r-65,0r0,65r-52,0r0,-65r-65,0r0,-52r65,0r0,-65","w":216},"\u00b1":{"d":"17,-48r182,0r0,52r-182,0r0,-52xm82,-186r52,0r0,36r65,0r0,52r-65,0r0,36r-52,0r0,-36r-65,0r0,-52r65,0r0,-36","w":216},"q":{"d":"12,-89v0,-59,24,-102,83,-103v22,0,40,9,52,27r0,-22r59,0r0,250r-62,0r0,-84v-12,17,-31,26,-54,26v-53,0,-78,-39,-78,-94xm110,-145v-48,0,-51,104,-1,104v26,0,38,-22,38,-51v0,-27,-8,-53,-37,-53"},"?":{"d":"66,-67r66,0r0,67r-66,0r0,-67xm105,-211v-22,0,-33,14,-31,38r-63,0v1,-58,36,-89,94,-89v51,0,87,22,90,73v4,62,-65,50,-68,104r-56,0v-11,-68,50,-59,58,-104v2,-13,-12,-22,-24,-22","w":206},"\u00bf":{"d":"141,-130r-67,0r0,-67r67,0r0,67xm102,14v21,0,31,-15,30,-38r63,0v-2,58,-35,86,-94,90v-73,5,-121,-79,-64,-126v17,-14,44,-19,42,-52r57,0v10,68,-50,58,-58,104v-2,13,12,22,24,22","w":206},"\"":{"d":"22,-257r52,0r0,130r-52,0r0,-130xm106,-257r52,0r0,130r-52,0r0,-130","w":180},"\u201e":{"d":"20,-67r57,0v2,63,4,123,-57,130r0,-29v15,-2,26,-17,26,-34r-26,0r0,-67xm103,-67r57,0v2,63,4,123,-57,130r0,-29v15,-2,26,-17,26,-34r-26,0r0,-67","w":180},"\u201c":{"d":"160,-127r-57,0v-2,-63,-4,-123,57,-130r0,29v-15,2,-27,17,-26,34r26,0r0,67xm77,-127r-57,0v-2,-63,-4,-123,57,-130r0,29v-15,2,-27,17,-26,34r26,0r0,67","w":180},"\u201d":{"d":"20,-257r57,0v2,63,4,123,-57,130r0,-29v15,-2,26,-17,26,-34r-26,0r0,-67xm103,-257r57,0v2,63,4,123,-57,130r0,-29v15,-2,26,-17,26,-34r-26,0r0,-67","w":180},"\u2018":{"d":"82,-127r-57,0v-2,-63,-4,-123,57,-130r0,29v-15,2,-27,17,-26,34r26,0r0,67","w":106},"\u2019":{"d":"25,-257r57,0v2,63,4,123,-57,130r0,-29v15,-2,26,-17,26,-34r-26,0r0,-67","w":106},"\u201a":{"d":"25,-67r57,0v2,63,4,123,-57,130r0,-29v15,-2,26,-17,26,-34r-26,0r0,-67","w":106},"'":{"d":"27,-257r52,0r0,130r-52,0r0,-130","w":106},"r":{"d":"153,-133v-32,-12,-70,5,-69,40r0,93r-61,0r0,-187r59,0v1,10,-2,25,1,33v9,-26,35,-40,70,-35r0,56","w":153},"\u00ae":{"d":"50,-129v0,60,35,100,94,100v59,0,94,-41,94,-100v0,-59,-35,-99,-94,-99v-58,0,-94,39,-94,99xm283,-129v0,84,-56,134,-139,134v-83,0,-139,-50,-139,-134v0,-83,56,-133,139,-133v83,0,139,50,139,133xm170,-161v-2,-18,-26,-14,-45,-15r0,34v21,-1,47,6,45,-19xm205,-157v0,26,-15,38,-41,38r37,63r-34,0r-33,-61r-9,0r0,61r-36,0r0,-145v52,2,118,-11,116,44","w":288},"\u02da":{"d":"35,-240v0,10,9,19,18,19v9,0,20,-9,19,-19v1,-12,-9,-19,-19,-19v-10,0,-18,7,-18,19xm92,-240v0,23,-16,38,-39,38v-23,0,-38,-16,-38,-38v0,-23,15,-39,38,-39v23,0,39,15,39,39","w":106},"s":{"d":"166,-103v57,42,5,108,-65,108v-51,0,-89,-17,-91,-67r58,0v-3,33,58,38,62,8v-19,-43,-117,-5,-117,-81v0,-79,175,-78,171,3r-56,0v2,-26,-48,-28,-54,-7v11,30,68,18,92,36","w":200},"\u00a7":{"d":"50,-164v-41,-54,25,-118,97,-94v29,10,47,30,49,66r-53,0v4,-28,-49,-35,-49,-7v0,14,16,19,27,25v36,21,94,26,94,78v0,26,-15,49,-38,54v52,53,-18,131,-96,103v-30,-11,-52,-29,-52,-69r53,0v-3,33,56,40,56,6v-23,-52,-122,-34,-125,-107v-1,-29,16,-45,37,-55xm90,-132v-17,-12,-34,11,-22,25v22,17,53,26,79,40v21,-5,18,-30,-3,-40"},";":{"d":"90,-120r-67,0r0,-67r67,0r0,67xm23,-67r67,0v5,68,-2,127,-67,130r0,-29v20,-6,27,-13,30,-34r-30,0r0,-67","w":113},"\u037e":{"d":"90,-120r-67,0r0,-67r67,0r0,67xm23,-67r67,0v5,68,-2,127,-67,130r0,-29v20,-6,27,-13,30,-34r-30,0r0,-67","w":113},"7":{"d":"58,0v8,-82,39,-150,84,-195r-120,0r0,-56r182,0r0,49v-43,47,-79,117,-80,202r-66,0"},"6":{"d":"13,-124v-5,-97,83,-164,168,-113v17,10,26,28,30,51r-58,0v-4,-34,-57,-25,-67,-2v-5,11,-14,29,-12,43v11,-18,30,-28,58,-27v51,1,82,33,82,83v0,60,-41,92,-101,92v-72,0,-96,-56,-100,-127xm114,-127v-25,1,-39,16,-39,42v0,22,17,40,39,39v24,-1,43,-14,43,-39v0,-25,-16,-43,-43,-42"},"\/":{"d":"94,-262r56,0r-97,267r-56,0","w":146},"\u00c1":{"d":"93,-257r68,0r96,257r-70,0r-16,-46r-89,0r-16,46r-69,0xm97,-96r59,0r-30,-90xm189,-327r-57,54r-43,0r35,-54r65,0","w":253},"\u00a3":{"d":"158,5v-40,0,-84,-27,-115,0r-25,-36v22,-13,52,-43,35,-77r-38,0r0,-38r24,0v-48,-65,30,-141,117,-111v35,11,54,38,54,84r-59,0v1,-23,-8,-36,-29,-38v-38,-2,-36,47,-17,65r43,0r0,38r-32,0v9,28,-11,46,-22,60v28,-22,84,19,101,-16r25,44v-17,19,-32,25,-62,25"},"t":{"d":"133,0v-60,7,-99,-1,-99,-64r0,-83r-31,0r0,-40r31,0r0,-56r61,0r0,56r38,0r0,40r-38,0r0,85v-1,21,19,18,38,17r0,45","w":140},"3":{"d":"153,-77v0,-32,-29,-37,-61,-34r0,-42v28,1,56,0,57,-26v1,-18,-18,-25,-36,-25v-23,0,-40,11,-39,35r-57,0v2,-56,38,-85,96,-85v51,1,91,18,93,69v0,28,-14,42,-35,50v27,7,43,25,43,58v0,100,-170,103,-198,28v-5,-12,-7,-26,-6,-42r57,0v-1,30,14,45,45,45v22,0,41,-8,41,-31"},"\u02dc":{"d":"29,-257v26,-2,57,32,67,0r26,0v-4,25,-15,45,-43,46v-26,1,-59,-30,-68,3r-26,0v5,-24,16,-48,44,-49","w":106},"\u2122":{"d":"257,-171r32,-86r56,0r0,148r-39,0r-1,-97r-32,97r-32,0r-33,-97r0,97r-39,0r0,-148r56,0xm139,-223r-40,0r0,114r-45,0r0,-114r-39,0r0,-34r124,0r0,34","w":360},"2":{"d":"116,-254v95,-8,124,112,50,152v-26,14,-52,29,-72,50r119,0r0,52r-201,0v1,-87,82,-104,128,-147v19,-20,6,-56,-23,-54v-30,1,-42,21,-42,51r-57,0v-2,-65,34,-99,98,-104"},"u":{"d":"112,-45v53,-3,27,-90,33,-142r61,0r0,187r-59,0v-1,-8,2,-20,-1,-26v-9,17,-32,31,-57,31v-93,0,-65,-108,-69,-192r61,0r0,109v0,23,9,34,31,33"},"\u00fa":{"d":"112,-45v53,-3,27,-90,33,-142r61,0r0,187r-59,0v-1,-8,2,-20,-1,-26v-9,17,-32,31,-57,31v-93,0,-65,-108,-69,-192r61,0r0,109v0,23,9,34,31,33xm176,-261r-57,54r-43,0r35,-54r65,0"},"\u00fb":{"d":"112,-45v53,-3,27,-90,33,-142r61,0r0,187r-59,0v-1,-8,2,-20,-1,-26v-9,17,-32,31,-57,31v-93,0,-65,-108,-69,-192r61,0r0,109v0,23,9,34,31,33xm92,-207r-46,0r40,-54r55,0r40,54r-46,0r-22,-29"},"\u00fc":{"d":"112,-45v53,-3,27,-90,33,-142r61,0r0,187r-59,0v-1,-8,2,-20,-1,-26v-9,17,-32,31,-57,31v-93,0,-65,-108,-69,-192r61,0r0,109v0,23,9,34,31,33xm48,-257r54,0r0,45r-54,0r0,-45xm125,-212r0,-45r54,0r0,45r-54,0"},"\u00f9":{"d":"112,-45v53,-3,27,-90,33,-142r61,0r0,187r-59,0v-1,-8,2,-20,-1,-26v-9,17,-32,31,-57,31v-93,0,-65,-108,-69,-192r61,0r0,109v0,23,9,34,31,33xm147,-207r-43,0r-57,-54r65,0"},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"v":{"d":"132,0r-71,0r-62,-187r64,0r35,124r34,-124r62,0","w":193},"w":{"d":"242,0r-62,0r-31,-124r-29,124r-62,0r-58,-187r62,0r32,121r27,-121r58,0r28,121r31,-121r62,0","w":299},"x":{"d":"62,-98r-59,-89r68,0r26,45r26,-45r65,0r-58,88r66,99r-68,0r-32,-54r-31,54r-68,0","w":193},"y":{"d":"15,13v54,11,44,-35,31,-70r-49,-130r65,0r36,122r36,-122r62,0r-74,204v-10,43,-52,48,-107,46r0,-50","w":193},"\u00ff":{"d":"15,13v54,11,44,-35,31,-70r-49,-130r65,0r36,122r36,-122r62,0r-74,204v-10,43,-52,48,-107,46r0,-50xm32,-257r54,0r0,45r-54,0r0,-45xm109,-212r0,-45r54,0r0,45r-54,0","w":193},"\u00a5":{"d":"173,-149r37,0r0,38r-56,0v-3,8,-8,14,-7,26r63,0r0,38r-63,0r0,47r-67,0r0,-47r-63,0r0,-38r63,0v1,-12,-4,-18,-7,-26r-56,0r0,-38r37,0r-54,-108r67,0r47,108r46,-108r67,0"},"z":{"d":"8,-48r93,-92r-86,0r0,-47r164,0r0,47r-93,93r100,0r0,47r-178,0r0,-48","w":193},"0":{"d":"214,-126v0,73,-29,129,-102,129v-73,0,-99,-57,-99,-129v0,-71,26,-128,99,-128v74,0,102,56,102,128xm72,-126v0,38,4,80,41,80v47,0,43,-60,41,-106v-1,-27,-10,-53,-41,-52v-38,1,-41,40,-41,78"},"A":{"d":"93,-257r68,0r96,257r-70,0r-16,-46r-89,0r-16,46r-69,0xm97,-96r59,0r-30,-90","w":253},"\u00c6":{"d":"115,-257r233,0r0,54r-118,0r0,45r111,0r0,51r-111,0r0,49r122,0r0,58r-186,0r0,-46r-79,0r-21,46r-71,0xm107,-96r59,0r0,-107r-12,0","w":366},"\u00d0":{"d":"260,-130v0,83,-43,129,-126,130r-111,0r0,-107r-26,0r0,-51r26,0r0,-99r111,0v80,2,126,46,126,127xm193,-130v0,-59,-41,-73,-103,-69r0,41r57,0r0,51r-57,0r0,49v64,4,103,-9,103,-72","w":273},"\u0141":{"d":"23,-68r-24,16r0,-43r24,-16r0,-146r67,0r0,99r65,-44r0,43r-65,44r0,57r120,0r0,58r-187,0r0,-68","w":219},"\u0160":{"d":"185,-145v90,45,33,162,-65,150v-64,-8,-111,-25,-112,-91r67,0v1,30,20,37,49,40v37,4,58,-38,18,-50v-53,-16,-125,-19,-126,-88v-3,-96,165,-99,199,-33v6,10,9,23,9,37r-67,0v3,-37,-70,-43,-74,-9v12,35,69,27,102,44xm93,-273r-40,-54r46,0r21,29r22,-29r46,0r-40,54r-55,0","w":240},"\u00de":{"d":"171,-136v0,-41,-42,-34,-81,-34r0,66v37,-1,81,7,81,-32xm238,-141v0,82,-63,94,-148,88r0,53r-67,0r0,-257r67,0r0,33v81,-5,148,5,148,83","w":246},"\u00dd":{"d":"154,-96r0,96r-67,0r0,-96r-94,-161r76,0r51,104r51,-104r76,0xm183,-327r-57,54r-43,0r35,-54r65,0","w":240},"\u017d":{"d":"9,-55r131,-144r-123,0r0,-58r210,0r0,52r-135,147r139,0r0,58r-222,0r0,-55xm93,-273r-40,-54r46,0r21,29r22,-29r46,0r-40,54r-55,0","w":240},"\u00a6":{"d":"66,-162r-52,0r0,-100r52,0r0,100xm14,-95r52,0r0,100r-52,0r0,-100","w":79},"\u00a4":{"d":"113,-175v-27,0,-43,20,-43,49v0,29,16,49,43,49v27,0,44,-19,44,-49v0,-30,-17,-49,-44,-49xm169,-49v-24,24,-84,24,-110,1r-17,16r-21,-21r16,-16v-24,-27,-25,-84,-1,-112r-17,-16r22,-22r16,16v25,-24,88,-24,113,0r15,-16r22,22r-16,16v23,26,23,84,0,110r16,16r-22,22"},"\u00f0":{"d":"134,-172v-2,-14,-21,-30,-31,-41r-46,25r-24,-22r44,-23v-12,-9,-24,-14,-37,-19r41,-28v13,5,32,14,40,22r45,-25r24,22r-42,24v34,30,60,73,60,135v0,66,-34,107,-98,107v-59,0,-97,-33,-98,-92v-1,-65,59,-110,122,-85xm110,-133v-26,0,-37,21,-37,46v0,25,11,46,37,46v26,0,37,-21,37,-46v0,-25,-11,-46,-37,-46","w":219},"\u0142":{"d":"23,-97r-28,21r0,-40r28,-22r0,-119r61,0r0,73r28,-22r0,41r-28,21r0,144r-61,0r0,-97","w":106},"\u2212":{"d":"17,-65r0,-52r182,0r0,52r-182,0","w":216},"\u00d7":{"d":"19,-143r37,-37r52,52r52,-52r37,37r-52,52r52,52r-37,36r-52,-51r-52,51r-37,-36r52,-52","w":216},"\u00bd":{"d":"335,-104v0,45,-53,44,-73,70r70,0r0,34r-131,0v-1,-57,53,-64,83,-90v13,-11,2,-30,-14,-30v-18,0,-24,14,-25,30r-45,0v0,-43,26,-64,69,-64v37,0,66,14,66,50xm5,-221v26,0,47,-6,49,-30r36,0r0,151r-45,0r0,-88r-40,0r0,-33xm63,10r148,-271r35,0r-148,271r-35,0","w":340},"\u00bc":{"d":"263,-64r0,-45r-38,45r38,0xm331,-64r0,32r-23,0r0,32r-46,0r0,-32r-71,0r0,-36r73,-83r44,0r0,87r23,0xm9,-221v26,0,47,-6,49,-30r36,0r0,151r-45,0r0,-88r-40,0r0,-33xm72,10r148,-271r35,0r-148,271r-35,0","w":340},"\u00b9":{"d":"19,-221v26,0,47,-6,49,-30r36,0r0,151r-45,0r0,-88r-40,0r0,-33","w":136},"\u0161":{"d":"166,-103v57,42,5,108,-65,108v-51,0,-89,-17,-91,-67r58,0v-3,33,58,38,62,8v-19,-43,-117,-5,-117,-81v0,-79,175,-78,171,3r-56,0v2,-26,-48,-28,-54,-7v11,30,68,18,92,36xm73,-207r-40,-54r46,0r21,29r22,-29r46,0r-40,54r-55,0","w":200},"\u00fe":{"d":"117,-41v48,0,51,-105,0,-104v-27,1,-37,20,-37,50v1,30,7,54,37,54xm215,-89v6,77,-84,125,-133,69r0,83r-61,0r0,-320r61,0r0,91v13,-17,31,-26,54,-26v57,1,75,47,79,103"},"\u00be":{"d":"267,-64r0,-45r-38,45r38,0xm335,-64r0,32r-23,0r0,32r-46,0r0,-32r-71,0r0,-36r73,-83r44,0r0,87r23,0xm91,10r148,-271r36,0r-148,271r-36,0xm50,-156v-4,28,46,34,51,10v-1,-18,-19,-18,-37,-17r0,-30v15,2,34,1,34,-13v0,-8,-12,-14,-21,-14v-14,0,-22,8,-22,20r-45,0v0,-37,28,-55,67,-54v35,0,64,10,66,44v1,16,-12,27,-25,30v17,2,28,14,28,34v-1,37,-32,49,-69,49v-42,0,-74,-15,-72,-59r45,0","w":340},"\u00b3":{"d":"97,-146v0,-17,-19,-19,-37,-18r0,-29v14,-1,33,1,34,-13v-3,-22,-46,-17,-43,6r-45,0v1,-36,28,-54,67,-54v35,1,66,9,66,44v1,16,-12,27,-25,30v17,2,28,14,28,34v-1,37,-32,49,-69,49v-41,0,-73,-15,-71,-59r45,0v-4,28,45,34,50,10","w":136},"\u00b2":{"d":"136,-204v0,45,-53,44,-72,70r70,0r0,34r-132,0v1,-55,54,-64,84,-90v13,-11,1,-30,-15,-30v-18,0,-23,14,-24,30r-45,0v0,-43,26,-63,69,-64v37,0,65,14,65,50","w":136},"\u00fd":{"d":"15,13v54,11,44,-35,31,-70r-49,-130r65,0r36,122r36,-122r62,0r-74,204v-10,43,-52,48,-107,46r0,-50xm160,-261r-57,54r-43,0r35,-54r65,0","w":193},"\u017e":{"d":"8,-48r93,-92r-86,0r0,-47r164,0r0,47r-93,93r100,0r0,47r-178,0r0,-48xm70,-207r-40,-54r46,0r21,29r22,-29r46,0r-40,54r-55,0","w":193}}});;
/*
 * 	Easy Slider 1.7 - jQuery plugin
 *	written by Alen Grakalic	
 *	http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding
 *
 *	Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */
 
/*
 *	markup example for $("#slider").easySlider();
 *	
 * 	<div id="slider">
 *		<ul>
 *			<li><img src="images/01.jpg" alt="" /></li>
 *			<li><img src="images/02.jpg" alt="" /></li>
 *			<li><img src="images/03.jpg" alt="" /></li>
 *			<li><img src="images/04.jpg" alt="" /></li>
 *			<li><img src="images/05.jpg" alt="" /></li>
 *		</ul>
 *	</div>
 *
 */

(function($) {

	$.fn.easySlider = function(options){
	  
		// default configuration properties
		var defaults = {			
			prevId: 		'prevBtn',
			prevText: 		'Previous',
			nextId: 		'nextBtn',	
			nextText: 		'Next',
			controlsShow:	true,
			controlsBefore:	'',
			controlsAfter:	'',	
			controlsFade:	true,
			firstId: 		'firstBtn',
			firstText: 		'First',
			firstShow:		false,
			lastId: 		'lastBtn',	
			lastText: 		'Last',
			lastShow:		false,				
			vertical:		false,
			speed: 			800,
			auto:			false,
			pause:			2000,
			continuous:		true, 
			numeric: 		true,
			numericId: 		'controls'
		}; 
		
		var options = $.extend(defaults, options);  
				
		this.each(function() {  
			var obj = $(this); 				
			var s = $("li", obj).length;
			var w = $("li", obj).width(); 
			var h = $("li", obj).height(); 
			var clickable = true;
			obj.width(w); 
			obj.height(h); 
			obj.css("overflow","hidden");
			var ts = s-1;
			var t = 0;
			$("ul", obj).css('width',s*w);			
			
			if(options.continuous){
				$("ul", obj).prepend($("ul li:last-child", obj).clone().css("margin-left","-"+ w +"px"));
				$("ul", obj).append($("ul li:nth-child(2)", obj).clone());
				$("ul", obj).css('width',(s+1)*w);
			};				
			
			if(!options.vertical) $("li", obj).css('float','left');
								
			if(options.controlsShow){
				var html = options.controlsBefore;				
				if(options.numeric){
					html += '<ol id="'+ options.numericId +'"></ol>';
				} else {
					if(options.firstShow) html += '<span id="'+ options.firstId +'"><a href=\"javascript:void(0);\">'+ options.firstText +'</a></span>';
					html += ' <span id="'+ options.prevId +'"><a href=\"javascript:void(0);\">'+ options.prevText +'</a></span>';
					html += ' <span id="'+ options.nextId +'"><a href=\"javascript:void(0);\">'+ options.nextText +'</a></span>';
					if(options.lastShow) html += ' <span id="'+ options.lastId +'"><a href=\"javascript:void(0);\">'+ options.lastText +'</a></span>';				
				};
				
				html += options.controlsAfter;						
				$(obj).after(html);										
			};
			
			if(options.numeric){									
				for(var i=0;i<s;i++){						
					$(document.createElement("li"))
						.attr('id',options.numericId + (i+1))
						.html('<a rel='+ i +' href=\"javascript:void(0);\">'+ (i+1) +'</a>')
						.appendTo($("#"+ options.numericId))
						.click(function(){							
							animate($("a",$(this)).attr('rel'),true);
						}); 												
				};							
			} else {
				$("a","#"+options.nextId).click(function(){		
					animate("next",true);
				});
				$("a","#"+options.prevId).click(function(){		
					animate("prev",true);				
				});	
				$("a","#"+options.firstId).click(function(){		
					animate("first",true);
				});				
				$("a","#"+options.lastId).click(function(){		
					animate("last",true);				
				});				
			};
			
			function setCurrent(i){
				i = parseInt(i)+1;
				$("li", "#" + options.numericId).removeClass("current");
				$("li#" + options.numericId + i).addClass("current");
			};
			
			function adjust(){
				if(t>ts) t=0;		
				if(t<0) t=ts;	
				if(!options.vertical) {
					$("ul",obj).css("margin-left",(t*w*-1));
				} else {
					$("ul",obj).css("margin-left",(t*h*-1));
				}
				clickable = true;
				if(options.numeric) setCurrent(t);
			};
			
			function animate(dir,clicked){
				if (clickable){
					clickable = false;
					var ot = t;				
					switch(dir){
						case "next":
							t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1;						
							break; 
						case "prev":
							t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1;
							break; 
						case "first":
							t = 0;
							break; 
						case "last":
							t = ts;
							break; 
						default:
							t = dir;
							break; 
					};	
					var diff = Math.abs(ot-t);
					var speed = diff*options.speed;						
					if(!options.vertical) {
						p = (t*w*-1);
						$("ul",obj).animate(
							{ marginLeft: p }, 
							{ queue:false, duration:speed, complete:adjust }
						);				
					} else {
						p = (t*h*-1);
						$("ul",obj).animate(
							{ marginTop: p }, 
							{ queue:false, duration:speed, complete:adjust }
						);					
					};
					
					if(!options.continuous && options.controlsFade){					
						if(t==ts){
							$("a","#"+options.nextId).hide();
							$("a","#"+options.lastId).hide();
						} else {
							$("a","#"+options.nextId).show();
							$("a","#"+options.lastId).show();					
						};
						if(t==0){
							$("a","#"+options.prevId).hide();
							$("a","#"+options.firstId).hide();
						} else {
							$("a","#"+options.prevId).show();
							$("a","#"+options.firstId).show();
						};					
					};				
					
					if(clicked) clearTimeout(timeout);
					if(options.auto && dir=="next" && !clicked){;
						timeout = setTimeout(function(){
							animate("next",false);
						},diff*options.speed+options.pause);
					};
			
				};
				
			};
			// init
			var timeout;
			if(options.auto){;
				timeout = setTimeout(function(){
					animate("next",false);
				},options.pause);
			};		
			
			if(options.numeric) setCurrent(0);
		
			if(!options.continuous && options.controlsFade){					
				$("a","#"+options.prevId).hide();
				$("a","#"+options.firstId).hide();				
			};				
			
		});
	  
	};

})(jQuery);



;
// JavaScript Document

$(document).ready(function() {

  Cufon.replace($('#topnav div.content').children('ul').children('li').children('a'),{ fontFamily: 'HelveticaNeue', hover: true });
//  Cufon.replace($('#topnav div.content').children('ul').children('li').children('ul').children('li').children('a'),{ fontFamily: 'HelveticaNeue', hover: true });  //
  //Cufon.replace('.menu li a',{ fontFamily: 'HelveticaNeue', hover: true });
  Cufon.replace('#homepage-left .view-front-page-service-blocks .views-field-title',{ fontFamily: 'HelveticaNeue75', hover:true });
  Cufon.replace('#block-views-news-block_1 h2',{ fontFamily: 'HelveticaNeue85' });
  Cufon.replace('#block-views-masthead_gallery-block_1 .views-field-body, #block-views-masthead_gallery-block_1 .views-field-title',{ fontFamily: 'HelveticaNeue75' });
  Cufon.replace('#homepage-right #block-block-6 h2, #block-block-10 h2',{ fontFamily: 'HelveticaNeue85' });
  Cufon.replace('#homepage-right-inside #block-block-6 h2',{ fontFamily: 'HelveticaNeue85' });
  Cufon.replace('#homepage-right-inside #block-views-05a4ef49491a2b40141d9b2bb974faa8 h2',{ fontFamily: 'HelveticaNeue85' });
  Cufon.replace('#homepage-left h2',{ fontFamily: 'HelveticaNeue85' });
  Cufon.replace('#block-block-7 h2',{ fontFamily: 'HelveticaNeue85' });
  Cufon.replace('h1',{ fontFamily: 'HelveticaNeue85' });
  $('#homepage-right .view-id-news .view-content').jScrollPane();
  $('#edit-search-block-form-1').bind("click focus blur", function(){
    if($(this).val() == 'Search' || $(this).val() == 'Søg')
      $(this).val('');
  });
  $('.view-masthead-gallery .item-list').easySlider({ prevId: 'masthead-prev',
                                                      prevText: '',
                                                      nextId: 'masthead-next',	
                                                      nextText: '',
                                                      controlsShow: false,
                                                      controlsBefore: '',
                                                      controlsAfter: '',	
                                                      controlsFade: true,
                                                      firstId: 'masthead-first',
                                                      firstText: '',
                                                      firstShow: false,
                                                      lastId: 'masthead-last',	
                                                      lastText: '',
                                                      lastShow: false,				
                                                      vertical: false,
                                                      speed: 400,
                                                      auto: true,
                                                      pause: 8000,
                                                      	numeric: 		true,
                                                      continuous: true});
});



;

